@font-face {
  font-family: madeTommyBold;
  src: url('../fonts/MADE-TOMMY-Bold.otf');
}
 
@font-face {
  font-family: madeTommyExtraBold;
  src: url('../fonts/MADE-TOMMY-ExtraBold.otf');
}

@font-face {
  font-family: madeTommyLight;
  src: url('../fonts/MADE-TOMMY-Light.otf');
}

@font-face {
  font-family: madeTommyMedium;
  src: url('../fonts/MADE-TOMMY-Medium.otf');
}
 
 html {
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
 }
 
 body {
  height: 0;
  padding: 0;
  margin: 0;
 }
 
 header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 160px;
  max-height: 160px;
  background-color: white;
  box-shadow: 10px 0 30px #363e53;
  z-index: 2;
 }
 
 header img {
  padding-left: 50px;
  height: 140px;
 }

 @media screen and (max-width: 390px) {
   header img {
    padding-left: 10px;
    height: 60px;
   }
 }
 
 header ul {
  display: inline-flex;
  position: relative;
  list-style: none;
  margin-right: 50px;
 }
 
 header .nav-menu {
  visibility: hidden;
  position: absolute;
 }
 
 @media screen and (max-width: 900px) {
  header ul {
   visibility: hidden;
   position: absolute;
  }
 
  @keyframes verticalSlide {
   from {max-height: 0;}
   to {max-height: 500px;}
  }
  
  header .nav-menu.visible {
   visibility: visible;
   position: absolute;
   top: 160px;
   padding-left: 20px;
   width: 100vw;
   background-color: white;
   opacity: 80%;
   animation-name: verticalSlide;
   animation-duration: 1s;
  }
 
  @keyframes fadeIn {
   from {opacity: 0%;}
   to {opacity: 100%;}
  }
 
  header .nav-menu .nav-content.visible {
    visibility: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    list-style: circle;
    animation-name: fadeIn;
    animation-duration: 1s;
  }
}
 
header li {
  margin: 0 8px 0 8px;
}
 
header .nav-link {
  text-decoration: none;
  color: #486c98;
  padding: 3px;
  font-family: madeTommyBold;
  white-space: nowrap;
}
 
header .nav-link:hover {
  border-bottom: 2px #f8f082 solid;
  opacity: 70%;
}
 
header .menu {
  visibility: hidden;
  position: absolute;
}
 
@media screen and (max-width: 900px) {
  header .menu {
   visibility: visible;
   position: relative;
   background-color: white;
   border: none;
   margin-right: 40px;
  }
  
  header .menu:hover {
   cursor: pointer;
   opacity: 60%;
  }
 
  header .menu:active {
   height: 32px;
  }
  
  header .menu .icon {
   height: 20px;
  }
}
 
 header .top-button {
   position: fixed;
   bottom: 30px;
   right: 30px;
 }
 
 header .top-button .icon {
   height: 50px;
 }
 
#main {
  z-index: -1;
}
 
#main #sectionOne {
  background-color: #486c98;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 800px;
  font-family: madeTommyBold;
  color: white;
}

#main #sectionOne .row-one {
  color: #f8f082;
  font-size: 70px;
  margin: 0;
}

#main #sectionOne .row-two {
  font-size: 80px;
  margin: 0;
  margin-top: -25px;
}

@media screen and (max-width: 390px) {
  #main #sectionOne .row-one {
    font-size: 40px;    
  }
  #main #sectionOne .row-two {
    font-size: 50px;
    margin-top: -20px;
  }
}
 
#main #sectionTwo {
  background-color: #486c98;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#main #sectionTwo img {
  height: 200px;
}
 
#main #sectionThree {
  background-image: url('../images/bg-sectionThree.jpg');
  background-size: cover;
  min-height: 700px;  
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  #main #sectionThree {
    background-size: 1200px;
    background-repeat: no-repeat;
    background-position: right;
  }
}

#main #sectionThree .content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 555px;
  max-width: 90vw;
  padding-right: 100px;
}

@media screen and (max-width: 670px) {
  #main #sectionThree .content {
    padding-right: 20px;
  }
}

#main #sectionThree h1 {
  font-family: madeTommyBold;
  color: #486c98;
  font-size: 60px;
  margin: 0;
  white-space: nowrap;
}

@media screen and (max-width: 380px) {
  #main #sectionThree h1 {
    font-size: 50px;
  }
}

#main #sectionThree h1 span {
  color: #f3d610;
}

#main #sectionThree p {
  color: #486c98;
  font-family: madeTommyLight;
  text-align: right;
}

@media screen and (max-width: 670px) {
  #main #sectionThree p {
    text-align: left;
  }
}

#main #sectionFour {
  background-image: url('../images/bg-sectionFour.jpg');
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  min-height: 700px;  
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

#main #sectionFour .logo {
  width: 400px;
}

#main #sectionFour h1 {
  font-family: madeTommyBold;
  color: #f3d610;
  font-size: 60px;
  margin: 0;
  white-space: nowrap;
}

@media screen and (max-width: 330px) {
  #main #sectionFour h1 {
    font-size: 50px;
  }
}

#main #sectionFour h1 span {
  color: #486c98;
}

#main #sectionFour .services {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#main #sectionFour .services img {
  height: 200px;
  padding: 25px;
  border-radius: 140px;
}

@media screen and (max-width: 300px) {
  #main #sectionFour .services img {
    height: 100px;
  }
}

#main #sectionFour .services img.yellow {
  border: #f8f082 solid 15px;
}

#main #sectionFour .services img.blue {
  border: #486c98 solid 15px;
}

#main #sectionFour .services .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#main #sectionFour .services .service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 600px;
  margin-bottom: 100px;
}

#main #sectionFour .services .service h1 {
  color: #486c98;
}

@media screen and (max-width: 530px) {
  #main #sectionFour .services .service h1 {
    font-size: 20px;
  }
}

#main #sectionFour .services .service p {
  color: #486c98;
  font-family: madeTommyLight;
  font-size: 20px;
  width: 280px;
  max-width: 90vw;
}

@media screen and (max-width: 530) {
  #main #sectionFour .services .service p {
    font-size: 15px;
    text-align: center;
  }
}

#main #sectionFour .services .service a {
  text-decoration: none;
  background-color: #f8f082;
  color: #486c98;
  font-family: madeTommyBold;
  padding: 5px 10px 5px 10px;
  border-radius: 10px;
}

#main #sectionFour .services .service a:hover {
  background-color: #486c98;
  color: white;
}

#main #sectionFive {
  background-image: url('../images/bg-sectionFive.jpg');
  background-size: cover;
  min-height: 700px;  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wpforms-container.wpforms-container-full {
  margin: 0 !important;
}

.wpforms-form input {
  max-width: none !important;
}

#main #sectionFive .form .header h1 {
  font-family: madeTommyBold;
  color: #f8f082;
  font-size: 60px;
  margin: 0;
  white-space: nowrap;
}

@media screen and (max-width: 350px) {
  #main #sectionFive .form .header h1 {
    font-size: 40px;
  }
}

#main #sectionFive .form .header h1 span {
  color: white;
}

#main #sectionFive .form {
  display: flex;
  flex-direction: column;
  width: 500px;
  max-width: 90vw;
}

#main #sectionFive .form form {
  display: flex;
  flex-direction: column;
}

#main #sectionFive .form form label {
  font-family: madeTommyLight;
  color: white;
  margin-top: 5px;
  margin-bottom: 5px;
}

#main #sectionFive .form form input {
  height: 40px;
  width: 450px;
  max-width: 90vw !important;
  border: #486c98 solid 2px;
  border-radius: 10px;
}

#main #sectionFive .form form textarea {
  height: 100px;
  width: 450px;
  resize: none;
  border: #486c98 solid 2px;
  border-radius: 10px;
}

#main #sectionFive .form form button {
  text-decoration: none;
  background-color: #f8f082;
  color: #486c98;
  font-family: madeTommyBold;
  font-size: 20px;
  padding: 5px 10px 5px 10px;
  border-radius: 15px;
  width: 100px;
  height: 40px;
  margin-top: 5px;
  position: relative;
  align-self: flex-end;
}
 
footer {
  background-color: #486c98;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

footer .row-one {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 500px;
  max-width: 90vw;
  margin-bottom: 20px;
}

footer .row-one .logo {
  height: 100px;
}

footer .row-one .asset {
  height: 150px;
}

footer .row-one .item {
  display: flex;
  align-items: center;
}

footer .row-one .item img {
  height: 20px;
  margin-right: 10px;
}

footer .row-one .item p {
  font-family: madeTommyLight;
  color: white;
}

@media screen and (max-width: 390px) {
  footer .row-one {
    flex-direction: column;
    margin-bottom: 0;
  }
  footer .row-one .asset {
    display: none;
  }
}

footer .row-two p {
  font-family: madeTommyLight;
  color: white;
}