* {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
}
.fl-page {
  overflow: hidden;
}
h1 {
  font-size: 64px;
  line-height: 1.3;
  color: #030303;
  font-weight: 700;
}
h2 {
  font-size: 44px;
  color: #030303;
  line-height: 1.3;
  font-weight: 600;
}
h3 {
  font-size: 36px;
  color: #030303;
  line-height: 1.3;
  font-weight: 500;
}
h4 {
  font-size: 20px;
  color: #030303;
  line-height: 1.3;
  font-weight: 500;
}
h5 {
  font-size: 18px;
  color: #030303;
  line-height: 1.3;
}
p {
  color: #59718e;
  line-height: 1.5;
}
a {
  text-decoration: none;
  transition: all 0.3s ease;
}
::selection {
  background-color: #006dcb;
  color: #fff;
}
.container {
  max-width: 1240px !important;
}
.btn-arrow-dark {
  background-color: #030303;
}
.btn-arrow-blue {
  background-color: #006dcb;
  box-shadow: 0 10px 20px rgba(0, 109, 203, 0.2);
}
.btn-arrow {
  color: #fff;
  display: inline-flex;
  padding: 12px 13px 12px 30px;
  border-radius: 50px;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}
.btn-arrow:hover {
  transform: translateY(-3px);
}
.main-nav {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d4dfed;
  padding-top: 14px;
  padding-bottom: 10px;
  position: relative;
  isolation: isolate;
}
.main-nav__items {
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: 50px;
  gap: 40px;
}
.main-nav__items a:last-of-type {
  margin-left: auto;
  width: 162px;
  height: 54px;
  background-color: #e6f0fd;
  border-radius: 50px;
  align-items: center;
  display: flex;
  justify-content: center;
  color: #030303;
  font-weight: 600;
  border: 1px solid #e6f0fd;
}
.main-nav__items a:last-of-type:hover {
  background-color: transparent;
  border: 1px solid #030303;
}
.main-nav__items a {
  color: #59718e;
}
.main-nav__items a:hover {
  color: #030303;
}
.main-nav__hamburger {
  display: none;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.footer-links a {
  color: #cad0da;
  padding-left: 16px;
  position: relative;
}
.footer-links a::before {
  content: "";
  position: absolute;
  background-image: url(../images/footer-arrow.svg);
  width: 7px;
  height: 7px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer-links a:hover {
  color: #006dcb;
}
#footer {
  background-color: #030e24;
  padding: 87px 0 95px;
}
#footer h5 {
  color: #fff;
  margin-bottom: 38px;
}
.footer-content-wrapper p {
  color: #cad0da;
  max-width: 347px;
}
.footer-content-wrapper p:first-of-type {
  margin-bottom: 75px;
  margin-top: 33px;
}
.follow-us-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px 32px 9px;
}
.follow-us-wrapper a {
  color: #cad0da;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 21px;
}
.follow-us-wrapper a:hover div {
  background: #006dcb;
}
.follow-us-wrapper a div {
  background: #fff;
  flex-basis: 35px;
  max-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  height: 35px;
  transition: all 0.2s ease;
}
.follow-us-wrapper a div svg path {
  transition: all 0.2s ease;
}
.follow-us-wrapper a:hover div svg path {
  fill: #fff;
}
.follow-us-wrapper a:hover {
  color: #fff;
}
.footer-links-wrapper {
  padding-top: 32px;
}
.copyright-text {
  display: none;
}
@media (max-width: 1200px) {
  .container {
    padding-left: 38px;
    padding-right: 38px;
  }
  h1 {
    font-size: 52px;
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 30px;
  }
  .main-nav__hamburger {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .main-nav__hamburger span {
    width: 30px;
    height: 1px;
    background-color: #030303;
    transition: all 0.3s ease;
  }
  .main-nav.open .main-nav__hamburger .span-line-1 {
    transform: translateY(2px) rotate(45deg);
  }
  .main-nav.open .main-nav__hamburger .span-line-2 {
    transform: translateY(-2px) rotate(-45deg);
  }
  .main-nav__items {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
    opacity: 0;
    transform: scale(0.6);
    transform-origin: top right;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .main-nav.open .main-nav__items{
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
    z-index: -1;
  }
  .main-nav__items a:last-of-type {
    margin-left: 0;
  }
  .main-nav__items a {
    font-size: 18px;
  }
  .main-nav__logo img {
    position: relative;
    z-index: 9;
  }
  .main-nav {
    justify-content: space-between;
  }
  .footer-content-wrapper p:last-of-type {
    display: none;
  }
  .copyright-text {
    text-align: center;
    display: block;
    color: #cad0da;
    margin-top: 60px;
  }
  .footer-content-wrapper p:first-of-type {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 28px;
  }
  p {
    font-size: 14px;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .main-nav__items {
    gap: 20px;
  }
  .main-nav__logo img {
    width: 145px;
  }
  .btn-arrow {
    font-size: 14px;
    padding: 10px 12px 10px 25px;
    gap: 12px;
  }
  #footer {
    padding: 50px 0 30px;
  }
  .footer-content-wrapper p:first-of-type {
    margin-bottom: 10px;
    margin-top: 15px;
  }
  #footer h5 {
    margin-bottom: 20px;
  }
  .footer-links {
    gap: 12px;
  }
  .follow-us-wrapper a {
    margin-bottom: 15px;
  }
  .follow-us-wrapper {
    margin-top: 30px;
    border-radius: 15px;
    padding: 25px 20px 16px;
  }
  .copyright-text {
    margin-top: 40px;
  }
}
