body {
  line-height: 1.4;
  font-family: 'Montserrat';
  color: #ebebeb;
}
/* grid */
.center-box {
  margin: 0 auto;
  overflow: hidden;
  width: 1400px;
}
.one-third {
  width: 33.33%;
  float: left;
}
.two-third {
  width: 66.66%;
  float: left;
}
.align-center {
  text-align: center;
}
.align-justify {
  text-align: justify;
}
.upper {
  text-transform: uppercase;
}
.magenta {
  color: #DB2D8D;
}
.green {
  color: #3BBFAD;
}
h4 {
font-size: 39px;
margin-bottom: 30px;
font-family: 'Montserrat';
font-weight: bold;
}

/* parallax */
.parallax {
z-index: 1;
}
#rect-6 {
  position: absolute;
  width: 45px;
  height: 45px;
  top: 0px;
  left: 316px;
}
#polygon-1 {
  position: absolute;
  width: 183px;
  height: 200px;
  top: 35px;
  left: 80px;
}
#ellipse-2 {
  position: absolute;
  width: 46px;
  height: 93px;
  top: 172px;
  right: 0px;
}
#ellipse-1 {
  position: absolute;
  width: 200px;
  height: 323px;
  bottom: 382px;
  left: 0px;
}
#rect-1 {
  position: absolute;
  width: 68px;
  height: 68px;
  bottom: 370px;
  right: 300px;
}
#polygon-2 {
  position: absolute;
  width: 183px;
  height: 200px;
  bottom: 508px;
  right: -50px;
}
#ellipse-3 {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -153px;
  right: 268px;
}
/* banner */
#banner {
  background-image: url(../img/back1.png);
  background-repeat: no-repeat;
  background-color: #010f1d;
}
.top-menu {
  display: flex;
  justify-content: space-between;
}
#logo {
  margin: 30px 0 60px 75px;
  float: left;
}
#logo img {
  height: 95px;
  width: 142px;
}
nav {
  float: left;
  margin-top: 70px;
}
nav ul li {
  padding-right: 35px;
  float: left;
}
nav ul li:last-of-type {
  padding-right: 0px;
}
nav a {
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}
nav a::after {
  content: url(../img/underline.png);
  position: absolute;
  height: 6px;
  width: 57px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
nav a:hover:after {
  opacity: 1;
}
.social {
  margin: 68px 60px 0 0;
  float: right;
}
.social li {
  float: left;
  padding-right: 17px;
}
.social li a {
  height: 22px;
  width: 24px;
  display: inline-block;
  background-size: auto 16px;
}
.social li:last-of-type {
  padding-right: 0px;
}
.facebook a {
  background: url(../img/face.svg) center center no-repeat;
}
.twitter a {
  background: url(../img/twitter.svg) center center no-repeat;
}
.insta a {
  background: url(../img/insta.svg) center center no-repeat;
}
.snapchat a {
  background: url(../img/snapchat.svg) center center no-repeat;
}
.cloud a {
  background: url(../img/cloud.svg) center center no-repeat;
}
#welcome {
  width: 48%;
  margin: auto;
  position: relative;
}
#title {
  margin-bottom: 35px;
}
#welcome p {
 font-size: 24px;
 padding: 33px 0 154px 0;
}
.button {
  font-size: 18px;
  color: white;
  background-color: #3BBFAD;
  display: inline-block;
  border-radius: 25px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  padding: 16px;
  height: 50px;
}
.button:hover {
  color: #3BBFAD;
  background-color: white;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(51, 48, 50, 0.75);
  -moz-box-shadow:    5px 5px 5px 0px rgba(51, 48, 50, 0.75);
  box-shadow:         5px 5px 5px 0px rgba(51, 48, 50, 0.75);
}
#join {
  background-image: url(../img/back2.png);
  background-color: #010f1d;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 180px;
}
.join-text {
position: relative;
}
.join-content {
  width: 40%;
  margin: 0 auto;
  margin-top: 90px;
  font-weight: bold;
}
.join-content p:first-of-type, .join-content p:last-of-type {
  font-size: 18px;
  line-height: 1.4;
  padding-top: 0;
}
.join-content p {
  font-size: 14px;
  padding-top: 36px;
  line-height: 1.7;
  word-spacing: 2.5px;
  letter-spacing: 0.6px;
}
form {
  margin: 20px 0 58px 0;
}
/* for hiding dropdown arrow in IE and FF */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
   appearance: none;
}
/*for IE10*/
select::-ms-expand {
    display: none;
}
.shortfield {
  width: 50%;
  float: left;
  padding: 12px 9px;
}
.longfield {
  width: 100%;
  clear: both;
  padding: 12px 9px;
}
.dropdown {
    position: relative;
}
.dropdown:after {
  content: url(../img/dropdown.png);
  position: absolute;
  height: 10px;
  width: 14px;
  top: 30px;
  right: 22px;
  opacity: 1;
}
input[type=text], select {
  font-family: 'Montserrat';
  font-weight: bold;
  font-size: 14px;
  padding-left: 30px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  width: 100%;
  height: 50px;
}
/* day-night pictures */
.days-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
}
#day-night-pics {
  display: block;
  text-align: center;
  margin-top: 80px;
}
.day {
  position: relative;
  float: left;
  margin-left: 70px;
}
.day::before {
  content: url(../img/day_act.png);
  position: absolute;
  height: 79px;
  width: 184px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.day::after {
  content: url(../img/day_hover.png);
  position: absolute;
  height: 13px;
  width: 196px;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.day:hover:after {
  opacity: 1;
}
.night {
  position: relative;
  float: left;
  margin-left: 0;
}
.night::before {
  content: url(../img/night_act.png);
  position: absolute;
  height: 79px;
  width: 184px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.night::after {
  content: url(../img/night_hover.png);
  position: absolute;
  height: 13px;
  width: 196px;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.night:hover:after {
  opacity: 1;
}
/* gallery */
#gallery-text {
  margin: 285px 0 73px 0;
}
 #gallery-text img {
   margin: 0 auto;
}
#gallery img {
  display: block;
}
.video {
  position: relative;
}
.video::after {
  content: url(../img/play.png);
  position: absolute;
  height: 94px;
  width: 94px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer {
  background: black;
  color: #ebebeb;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}
.copyright {
  margin: 152px 0 0 57px;
}
.copyright img {
  width: 150px;
  height: 30px;
  margin-bottom: 31px;
}
.logos {
  margin: 147px 50px 55px 0;
}
.logos img {
  padding-right: 37px;
}
@media only screen and (max-width: 1400px) {
    .center-box {
        width: 100%!important;
        padding-left: 20px;
        padding-right: 20px;
    }
