* {
  font-family: "Poppins", serif;
  margin: 0;
  padding: 0;
}
::selection {
  background: #130d32;
  color: #fff;
}

.fl-page {
  overflow: hidden;
}
.main-navigation.active{
    z-index: 99;
}
html {
  scroll-behavior: smooth !important;
}

img {
  max-width: 100%;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
body {
  background-color: #f6f7f9;
}
.container {
  max-width: 1240px;
}
h1 {
  font-size: 81px;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
}
h2 {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
}
h3 {
  font-size: 42px;
  font-weight: 500;
  line-height: 2.61;
  color: #fff;
}
h4 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
}
p {
  font-size: 16px;
  font-weight: 400;
  color: #5f6774;
}
a {
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-blue {
  font-size: 16px;
  font-weight: 500;
  color: #130d32;
  background-color: #68cfeb;
  padding: 13px 60px;
  display: inline-block;
  border: 1px solid #68cfeb;
  border-radius: 25px;
}
.btn-blue:hover {
  background-color: transparent;
  color: #130d32;
}
.btn-red {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #fc5a5c;
  padding: 13px 46px;
  display: inline-block;
  border: 1px solid #fc5a5c;
  border-radius: 25px;
}
.btn-red:hover {
  background-color: transparent;
  color: #fc5a5c;
}
.btn-dark {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #130d32;
  padding: 19px 25px;
  display: inline-block;
  border: 1px solid #130d32;
  border-radius: 25px;
  transition: all 0.2s ease;
}
.btn-dark:hover {
  background-color: #68cfeb;
  color: #000;
}
.mobile-hamburger {
  display: none;
}
/* header */
header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #130d32;
}
.main-navigation-wrapper {
  padding: 19px 0;
}
.logo-wrapper {
  display: flex;
  justify-content: flex-start;
}
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
.main-navigation a:hover:not(:last-of-type) {
  opacity: 0.6;
}
.main-navigation a {
  color: #fff;
}
.main-navigation a:last-of-type {
  border: 1px solid rgba(228, 228, 228, 0.25);
  border-radius: 25px;
  padding: 12px 25px;
}

.main-navigation a:last-of-type:hover {
  background: #fff;
  color: #130d32;
}
.mobile-hamburger {
  display: none;
}

/* footer */
footer {
  border-top: 1px solid #d3d9df;
  padding-bottom: 54px;
}
.footer-logo {
  text-align: center;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding-top: 38px;
  padding-bottom: 54px;
}
.footer-nav a {
  color: #5f6774;
}
.footer-copyright {
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  padding-top: 34px;
  padding-bottom: 34px;
  border: 1px solid #d3d9df;
}
.footer-copyright span {
  color: #5f6774;
}
.footer-logo img {
  width: 152px;
  margin-top: -87px;
}

@media (max-width: 1300px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 46px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 20px;
  }
  .footer-nav {
    padding-top: 35px;
    padding-bottom: 40px;
    gap: 55px;
  }
  .footer-copyright {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 16px;
  }
  a,
  p {
    font-size: 14px;
  }
  .footer-logo img {
    width: 110px;
    margin-top: -70px;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mobile-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
    position: relative;
    z-index: 999;
  }
  .main-navigation {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #130d32;
    left: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    gap: 30px;
  }
  .main-navigation.active {
    opacity: 1;
    pointer-events: all;
  }
  .mobile-hamburger span {
    width: 35px;
    height: 1px;
    transition: all 0.2s ease;
    background: #fff;
  }
  .mobile-hamburger.active .line-1 {
    transform: rotate(45deg);
  }
  .mobile-hamburger.active .line-2 {
    transform: rotate(-45deg);
    margin-top: -6px;
  }
  .main-navigation a {
    font-size: 18px;
  }
  .footer-nav {
    gap: 37px;
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .footer-copyright {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .btn-blue {
    font-size: 14px;
    padding: 12px 50px;
  }
  .footer-copyright span {
    font-size: 14px;
  }
}
