/* mobile first */
/* desktop first */
/*
@mixin breakpoint($point) {
    @if $point == desktop {
        @media screen and (max-width: $largedesktop) { @content; }
    }
    @else if $point == tablet {
        @media screen and (max-width: $desktop) { @content; }
    }
    @else if $point == mobile {
        @media screen and (max-width: $tablet) { @content; }
    }
    
} 
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;500;600;700;800;900&display=swap");
.myButton {
  background-color: #EEA004;
  border-radius: 50px;
  display: inline-block;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 21px;
  font-weight: 600;
  padding: 18px 40px;
  text-decoration: none;
  text-transform: uppercase; }

.myButton:hover {
  background-color: rgba(238, 160, 4, 0.9); }

.myButton:active {
  position: relative;
  top: 1px; }

/* button go to top */
.btn-go-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #E83867;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px; }

.btn-go-top:hover {
  background-color: rgba(1, 31, 55, 0.9); }

.btn {
  display: flex;
  text-decoration: none;
  border: none;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1.2px; }
  @media (min-width: 568px) {
    .btn {
      font-size: 15px; } }
  .btn::after {
    border-bottom: 2px solid #6A0FF3;
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    margin-bottom: 5px; }

.btn-text-white, .btn-text {
  padding: 18px 0px;
  line-height: 20px;
  color: #FFFFFF; }

.btn-icon {
  position: relative;
  margin-left: 1px;
  padding: 10px; }
  @media (min-width: 992px) {
    .btn-icon {
      padding: 18px; } }

.btn-icon-white {
  position: relative;
  margin-left: 0px;
  padding: 10px; }
  @media (min-width: 992px) {
    .btn-icon-white {
      padding: 18px 0px 18px 8px; } }

.svg-arrow {
  height: 100%;
  animation: nudge 1s linear infinite alternate;
  fill: #ffffff; }

.svg-arrow-blue {
  height: 100%;
  animation: nudge 1s linear infinite alternate;
  fill: #FFFFFF; }

.btn:hover .btn-text {
  border-left: 3px solid blue;
  background-color: blue; }

.btn:hover .btn-icon {
  background-color: blue; }

@keyframes nudge {
  0% {
    transform: translateX(4px); }
  100% {
    transform: translateX(-2px); } }

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif; }

.container {
  max-width: 100%;
  padding: 0 1.4rem;
  margin: 0 auto; }
  @media (min-width: 992px) {
    .container {
      max-width: 800px; } }
  @media (min-width: 1440px) {
    .container {
      max-width: 1000px; } }

.link-in-text {
  color: #FFFFFF;
  font-weight: 300;
  text-decoration: none; }

/*===  page  ===*/
.page {
  display: flex;
  flex-direction: column;
  background-color: #011F37; }

/*===  Main  ===*/
.main {
  background-color: #011F37;
  position: relative;
  padding-bottom: 50px; }

.logo-link {
  position: relative;
  padding: 50px 0 30px;
  text-align: center; }

.main-content {
  text-align: center;
  height: 100%; }

.main-content-title {
  font-size: 27px;
  font-weight: 500;
  color: #FFFFFF;
  padding: 0 20px; }
  @media (min-width: 992px) {
    .main-content-title {
      font-size: 47px; } }
  @media (min-width: 1440px) {
    .main-content-title {
      font-size: 57px; } }

.main-content-subtitle {
  font-size: 13px;
  font-weight: 100;
  color: #FFFFFF;
  line-height: 1.5;
  margin: 0 auto; }
  @media (min-width: 992px) {
    .main-content-subtitle {
      font-size: 16px;
      width: 50%; } }
  @media (min-width: 1440px) {
    .main-content-subtitle {
      width: 35%; } }

.main-content-link {
  margin-top: 25px; }

.link-explore {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 100;
  margin-top: 30px;
  text-decoration: underline; }

.logo-link .logo {
  width: 200px; }

/*===  Header  ===*/
.navbar {
  padding: 20px 0 0; }
  @media (min-width: 992px) {
    .navbar {
      padding: 15px 0 0; } }

.navbar-container {
  display: flex;
  flex-direction: row;
  align-items: center; }
  @media (min-width: 992px) {
    .navbar-container {
      flex-direction: column; } }

.navbar-item {
  margin: 0 0 0 35px;
  width: 100%;
  white-space: nowrap; }

.navbar-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.4em 0;
  font-weight: 100;
  font-size: 18px;
  letter-spacing: 1.2px;
  position: relative; }

.navbar-link:focus,
.navbar-link:hover {
  color: #FFFFFF; }

.navbar-toggle {
  cursor: pointer;
  border: none;
  background-color: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: auto; }
  @media (min-width: 992px) {
    .navbar-toggle {
      display: none; } }

.navbar-toggle-wrapper {
  width: 100%; }

.icon-bar {
  display: block;
  width: 25px;
  height: 4px;
  margin: 2px;
  transition: background-color 0.2s ease-in-out,  transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF; }

.navbar-toggle:focus .icon-bar,
.navbar-toggle:hover .icon-bar {
  background-color: #FFFFFF;
  border: none;
  outline: none; }

.navbar.opened .navbar-toggle .icon-bar:first-child,
.navbar.opened .navbar-toggle .icon-bar:last-child {
  position: absolute;
  margin: 0;
  width: 30px; }

.navbar.opened .navbar-toggle .icon-bar:first-child {
  transform: rotate(45deg); }

.navbar.opened .navbar-toggle .icon-bar:nth-child(2) {
  opacity: 0; }

.navbar.opened .navbar-toggle .icon-bar:last-child {
  transform: rotate(-45deg); }

.navbar .navbar-menu,
.navbar.opened .navbar-menu {
  opacity: 1;
  visibility: visible; }
  @media (min-width: 992px) {
    .navbar .navbar-menu,
    .navbar.opened .navbar-menu {
      margin-top: 40px;
      position: static;
      display: block;
      height: 100%; } }

.navbar-links {
  list-style-type: none;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 0;
  right: 0;
  margin: 1.4rem;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  z-index: 99; }
  @media (min-width: 992px) {
    .navbar-links {
      margin: 0;
      padding: 0;
      box-shadow: none;
      position: static;
      flex-direction: row;
      list-style-type: none;
      max-height: max-content;
      width: 100%;
      height: 100%; } }

.navbar.opened .navbar-links {
  padding: 1em;
  max-height: none;
  background-color: #EEA004; }
  @media (min-width: 992px) {
    .navbar.opened .navbar-links {
      margin: 0;
      padding: 0;
      box-shadow: none;
      position: static;
      flex-direction: row;
      list-style-type: none;
      max-height: max-content;
      width: 100%;
      height: 100%; } }

.navbar.opened .navbar-link {
  color: #FFFFFF; }

.navbar.opened .navbar-item {
  margin: 0; }

.navbar .navbar-toggle:focus,
.navbar.opened .navbar-toggle:focus {
  outline: none; }

/*===  Service  ===*/
.section-service {
  background-color: #009CDC;
  padding: 70px 20px; }
  @media (min-width: 992px) {
    .section-service {
      padding: 70px 0; } }

.service-content {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  grid-gap: 30px; }
  @media (min-width: 992px) {
    .service-content {
      grid-template-columns: repeat(3, 1fr); } }

.service-content-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px; }
  @media (min-width: 992px) {
    .service-content-item {
      padding: 30px; } }

.service-content-item-img {
  position: relative; }

.icon-img {
  width: 100%; }

.services-content-item-text {
  margin-top: 20px;
  color: #FFFFFF;
  text-align: center; }

.service-item-title {
  font-size: 18px;
  font-weight: 100;
  line-height: 1.1; }
  @media (min-width: 992px) {
    .service-item-title {
      font-size: 18px; } }
  @media (min-width: 1440px) {
    .service-item-title {
      font-size: 36px; } }

.service-content-item:nth-child(4) .service-item-title {
  padding: 0 20px; }

.service-item-subtitle {
  padding-top: 20px;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 100; }

/*===  About us  ===*/
.section-aboutus {
  padding: 80px 0; }

.aboutus-content {
  border: 2px solid #009CDC;
  border-radius: 80px;
  color: #FFFFFF;
  padding: 20px;
  text-align: center; }
  @media (min-width: 992px) {
    .aboutus-content {
      padding: 100px; } }

.aboutus-title {
  font-size: 36px;
  font-weight: 100; }

.aboutus-text {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 100; }

.aboutus-des {
  line-height: 1.5; }

.aboutus-des:nth-child(2) {
  margin-top: 20px; }

/*===  FAQ  ===*/
.section-faq {
  background-color: #009CDC;
  color: #FFFFFF;
  text-align: center;
  padding: 50px 0; }
  @media (min-width: 992px) {
    .section-faq {
      padding: 100px 0; } }

.faq-title {
  font-size: 36px;
  font-weight: 100;
  margin-top: 20px; }

.faq-content {
  padding: 0 10px; }
  @media (min-width: 992px) {
    .faq-content {
      padding: 0 50px; } }

.faq-content-item {
  padding: 40px 0 0; }

.faq-content-item-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px; }

.faq-content-item-des {
  font-size: 14px;
  font-weight: 100;
  line-height: 1.5; }

/*===  Contact  ===*/
.section-contact {
  padding: 80px 0; }

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  grid-gap: 30px; }
  @media (min-width: 992px) {
    .contact-content {
      grid-template-columns: repeat(2, 1fr); } }

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px; }

.contact-content-item-img {
  position: relative; }

.contact-content-item-text {
  margin-top: 20px;
  color: #FFFFFF;
  text-align: center; }

.contact-item-title {
  font-size: 36px;
  font-weight: 100;
  line-height: 1.1; }

.contact-content-item:nth-child(4) .service-item-title {
  padding: 0 20px; }

.contact-item-subtitle {
  padding-top: 20px;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 100; }

.contact-item-email-link {
  border: 2px solid #009CDC;
  border-radius: 20px;
  color: #FFFFFF;
  padding: 30px;
  margin-top: 20px;
  text-align: center; }

.contact-link {
  color: #FFFFFF;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none; }
  @media (min-width: 992px) {
    .contact-link {
      font-size: 15px; } }
  @media (min-width: 1440px) {
    .contact-link {
      font-size: 18px; } }

/**************************************
******** section - Footer *************
***************************************/
.section-footer {
  background-color: #009CDC;
  padding: 35px 0; }

.footer-content {
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 100;
  letter-spacing: 0.5px; }
