@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraLight.woff2") format("woff2"), url("../fonts/Montserrat-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Thin.woff2") format("woff2"), url("../fonts/Montserrat-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary-color: #082345;
  --secondary-color: #00AEEF;
  --light-grey: #F5F5F5;
}

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

html {
  font-size: 62.5%;
  overflow-x: hidden;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat";
  overflow-x: hidden;
  margin: 0;
  box-sizing: border-box;
  font-size: 16px;
  padding: 0;
  color: var(--primary-color);
  position: relative;
}

.page-width {
  max-width: 1400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1600px) {
  .page-width {
    max-width: 80%;
  }
}
@media screen and (max-width: 991px) {
  .page-width {
    max-width: 90%;
  }
}

.page-padding {
  padding: 70px 0;
}
@media screen and (max-width: 575px) {
  .page-padding {
    padding: 50px 0;
  }
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

.no-scroll {
  overflow: hidden;
}

.d-none {
  display: none !important;
}

.image2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

p, ul li {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.35px;
  color: var(--primary-color);
}

.text p {
  margin: 20px 0;
}
.text p:first-child {
  margin-top: 0;
}
.text p:last-child {
  margin-bottom: 0;
}

h1, h2 {
  font-family: "Montserrat";
  font-size: 45px;
  line-height: 130%;
  letter-spacing: 1px;
  color: var(--primary-color);
}
@media screen and (max-width: 991px) {
  h1, h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  h1, h2 {
    font-size: 30px;
  }
}

h1 {
  font-weight: 400;
}
h1 span {
  display: block;
  font-weight: 700;
}

h2 {
  font-weight: 600;
}
h2 span {
  font-weight: 800;
}

.small-h2 h2 {
  font-size: 32px;
  letter-spacing: 0.75px;
}
@media screen and (max-width: 991px) {
  .small-h2 h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 575px) {
  .small-h2 h2 {
    font-size: 24px;
  }
}

.title > span {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 2.5px;
  color: var(--secondary-color);
  position: relative;
  text-transform: uppercase;
  padding-left: 13px;
}
.title > span::after, .title > span::before {
  position: absolute;
  content: "";
  background-color: var(--secondary-color);
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.title > span::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
}
.title > span::before {
  width: 50vw;
  height: 1px;
  right: calc(100% + 5px);
  transform: translateY(-1px);
}

.btn {
  color: #fff;
  font-family: "Montserrat";
  font-weight: 800;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.35px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50vh;
  padding-right: 35px;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
}
.btn::before {
  content: url("../images/white-arrow.svg");
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.5s;
}
@media screen and (max-width: 575px) {
  .btn {
    padding-right: 20px;
    font-size: 14px;
  }
  .btn::before {
    margin-right: 10px;
  }
}

.btn2::before {
  background-color: #fff;
  content: url("../images/blue-arrow.svg");
}

.btn:hover::before {
  transform: rotate(45deg);
}

.light-bg {
  background-color: var(--light-grey);
}

.white-bg {
  background-color: #fff;
}

.dark-bg {
  background-color: var(--primary-color);
}

.custom-radius {
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
}
@media screen and (max-width: 575px) {
  .custom-radius {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }
}

.mt {
  margin-top: 50px;
}

.mb {
  margin-bottom: 50px;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

header {
  position: fixed;
  z-index: 99;
  top: 0;
  width: 100%;
  background-color: var(--primary-color);
  height: 100px;
  transition: all 0.5s;
}
header .page-width {
  height: 100%;
  display: flex;
  align-items: center;
}
header .page-width .logo {
  margin-right: auto;
  display: flex;
  align-items: center;
  width: 217px;
  height: 44px;
}
header .page-width .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}
header .page-width p {
  color: #fff;
}
header .page-width .header-btn {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: var(--primary-color);
  background-color: #fff;
  border-radius: 15px;
  padding: 17px 45px;
  transition: all 0.5s;
}
header .page-width .header-btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}
header .page-width .lang {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0 50px;
}
@media screen and (max-width: 1399px) {
  header .page-width .lang {
    margin: 0 30px;
  }
}
header .page-width .lang li {
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
}
header .page-width .lang .active span {
  font-weight: 700;
}
header .page-width .lang li + li::before {
  content: "|";
  transform: translateY(-1px);
  margin: 0 5px;
}
@media screen and (max-width: 1299px) {
  header .page-width p {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header {
    height: 80px;
  }
  header .page-width .logo {
    width: 170px;
  }
  header .page-width .header-btn {
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 16px;
  }
  header .page-width .lang {
    margin: 0 20px 0 0;
  }
}
@media screen and (max-width: 575px) {
  header {
    height: 60px;
  }
  header .page-width .logo {
    width: 120px;
  }
  header .page-width .header-btn {
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 14px;
  }
  header .page-width .lang {
    margin: 0 10px 0 0;
  }
  header .page-width .lang li {
    font-size: 14px;
  }
  header .page-width .lang li + li::before {
    margin: 0 3px;
  }
}

.margin-top {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .margin-top {
    margin-top: 80px;
  }
}
@media screen and (max-width: 575px) {
  .margin-top {
    margin-top: 60px;
  }
}

.foot1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.foot1 a {
  font-weight: 500;
  font-size: 16px;
  color: var(--primary-color);
  transition: all 0.5s;
  display: flex;
  align-items: start;
}
.foot1 a svg {
  margin-right: 10px;
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.foot1 a svg path {
  transition: all 0.5s;
}
.foot1 a:hover {
  color: var(--secondary-color);
}
.foot1 a + a {
  margin-top: 30px;
}
@media screen and (max-width: 991px) {
  .foot1 {
    flex-direction: column;
    align-items: start;
  }
}

.foot-left {
  display: flex;
  flex-direction: column;
}
.foot-left img {
  width: 360px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
  margin-bottom: 50px;
}
.foot-left a:hover svg path {
  stroke: var(--secondary-color);
}
@media screen and (max-width: 991px) {
  .foot-left {
    margin-bottom: 50px;
  }
  .foot-left img {
    width: 100%;
    max-width: 300px;
  }
}

.foot-right p {
  font-size: 25px;
  letter-spacing: 0;
  margin-bottom: 50px;
  font-weight: 500;
}
.foot-right a:hover svg path {
  fill: var(--secondary-color);
}

.foot2 {
  padding: 20px 0;
}
.foot2 p, .foot2 a {
  text-align: center;
  font-size: 15px;
  line-height: normal;
  letter-spacing: 0;
  color: var(--primary-color);
}
@keyframes kenburns-bottom-left {
  0% {
    transform: scale(0.8) translate(0, 0);
    transform-origin: 16% 84%;
  }
  100% {
    transform: scale(1) translate(0, 0);
    transform-origin: left bottom;
  }
}
.kenburns-bottom-left {
  animation: kenburns-bottom-left 2s ease-out both;
}

.main-section {
  height: -moz-fit-content;
  height: fit-content;
  padding: 200px 0;
  position: relative;
}
.main-section .main-content {
  position: relative;
  z-index: 2;
}
.main-section .main-content p {
  margin: 40px 0 50px;
  max-width: 520px;
}
.main-section .main-bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 60%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
@media screen and (max-width: 1399px) {
  .main-section {
    padding: 150px 0;
  }
}
@media screen and (max-width: 767px) {
  .main-section {
    padding: 100px 0;
  }
}
@media screen and (max-width: 575px) {
  .main-section {
    padding: 80px 0;
  }
  .main-section .main-bg {
    width: 100%;
    opacity: 0.6;
  }
}

.spec-wrap {
  background-color: var(--primary-color);
  border-radius: 15px;
  padding: 30px 50px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: -80px;
  position: relative;
  z-index: 3;
}
.spec-wrap div {
  max-width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.spec-wrap div p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-top: 5px;
}
@media screen and (max-width: 1199px) {
  .spec-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .spec-wrap div {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .spec-wrap {
    margin-top: 0;
    margin-bottom: 0;
    max-width: 100%;
    border-radius: 0;
    padding: 50px 5%;
  }
}
@media screen and (max-width: 575px) {
  .spec-wrap {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
  .spec-wrap div p {
    font-size: 14px;
  }
}

.first-section-wrap {
  padding-top: 150px;
}
@media screen and (max-width: 767px) {
  .first-section-wrap {
    padding-top: 70px;
  }
}
@media screen and (max-width: 575px) {
  .first-section-wrap {
    padding-top: 50px;
  }
}

.first-section {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: calc(50% + 70px);
  padding-right: calc(50% - 700px);
  position: relative;
  margin-top: 70px;
}
.first-section img {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-bottom-right-radius: 35px;
  border-top-right-radius: 35px;
}
@media only screen and (max-width: 1600px) {
  .first-section {
    padding-right: 10%;
  }
}
@media screen and (max-width: 1199px) {
  .first-section {
    padding-left: 10%;
    padding-top: 0;
    padding-bottom: 0;
  }
  .first-section img {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .first-section {
    padding-right: 5%;
    padding-left: 5%;
  }
}
@media screen and (max-width: 575px) {
  .first-section {
    margin-top: 30px;
  }
}

.bg-span-wrap {
  position: relative;
}
.bg-span-wrap .bg-span {
  position: absolute;
  top: -40px;
  left: 0;
  font-weight: 700;
  font-size: 200px;
  line-height: 150px;
  letter-spacing: 0.35px;
  color: rgba(8, 35, 69, 0.05);
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 575px) {
  .bg-span-wrap .bg-span {
    font-size: 70px;
    line-height: 50px;
    top: -30px;
  }
}

.clients {
  margin-top: 50px;
}
.clients .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients .swiper-slide img {
  width: 100%;
  height: 100%;
  max-width: 300px;
  max-height: 65px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.reveal {
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.second-section {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 50px;
}
.second-section h2 {
  margin-bottom: 40px;
}
.second-section p {
  opacity: 0.7;
}
.second-section ul {
  list-style: none;
}
.second-section ul li {
  font-size: 18px;
  margin-top: 15px;
}
.second-section ul li::before {
  content: "➔";
  display: inline;
  margin-right: 20px;
}
.second-section div {
  position: relative;
}
.second-section div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
}
@media screen and (max-width: 1199px) {
  .second-section {
    grid-template-columns: 1fr;
  }
  .second-section div img {
    max-height: 400px;
  }
}
@media screen and (max-width: 575px) {
  .second-section ul li {
    font-size: 16px;
  }
  .second-section ul li::before {
    margin-right: 10px;
  }
}

.section3 {
  display: grid;
  grid-template-columns: 40% 60%;
  padding: 0 9% 0 5%;
}
@media screen and (max-width: 1399px) {
  .section3 {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .section3 {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.section3-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1199px) {
  .section3-icons {
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
  }
}
.section3-icons div p {
  max-width: 210px;
}

.section3-icons div, .section3-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section3-icons div p, .section3-icon p {
  font-size: 24px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 1399px) {
  .section3-icons div p, .section3-icon p {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .section3-icons div svg, .section3-icon svg {
    max-height: 60px;
  }
  .section3-icons div p, .section3-icon p {
    font-size: 16px;
    margin-top: 20px;
  }
}

.section3-text {
  background-color: var(--light-grey);
  padding: 20px 30px;
  border-radius: 35px;
}
.section3-text ul {
  list-style: none;
}
.section3-text ul li + li {
  margin-top: 20px;
}
.section3-text ul li {
  font-weight: 600;
}
.section3-text ul li::before {
  content: url("../images/check.svg");
  margin-right: 7px;
  display: inline-block;
  transform: translateY(5px);
}
@media screen and (max-width: 575px) {
  .section3-text {
    padding: 15px;
    border-radius: 25px;
  }
}

.section4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.section4 img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.section4 .section4-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section4 .section4-1 img {
  width: 90%;
  height: auto;
  margin-left: auto;
  display: flex;
}
.section4 .section4-1 h3 {
  font-size: 24px;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}
.section4 .section4-1 h3::after {
  content: "";
  height: 35px;
  width: 1px;
  background-color: var(--primary-color);
  margin: 20px 0;
}
.section4 .section4-2 {
  position: relative;
}
.section4 .section4-2 .text {
  margin-right: calc(50vw - 700px);
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1600px) {
  .section4 .section4-2 .text {
    margin-right: 10vw;
  }
}
@media screen and (max-width: 991px) {
  .section4 .section4-2 .text {
    margin-right: 5vw;
  }
}
.section4 .section4-2 img {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 1199px) {
  .section4 {
    grid-template-columns: 1fr;
  }
  .section4 img {
    max-height: 400px;
  }
  .section4 .section4-2 {
    order: 1;
  }
  .section4 .section4-2 img {
    bottom: -450px;
    right: 10%;
    width: 50%;
  }
  .section4 .section4-2 .text {
    margin-left: 10vw;
  }
  .section4 .section4-1 {
    order: 2;
    position: relative;
    z-index: 3;
  }
  .section4 .section4-1 picture {
    width: 50%;
    margin-right: auto;
  }
}
@media screen and (max-width: 991px) {
  .section4 .section4-2 img {
    position: static;
    width: 90%;
    margin-top: 50px;
  }
  .section4 .section4-2 .text {
    margin-left: 5vw;
  }
  .section4 .section4-1 picture {
    width: 100%;
  }
  .section4 .section4-1 img {
    margin: 0 auto;
  }
}

.text-box {
  padding: 30px 20px;
  border-radius: 35px;
}
@media screen and (max-width: 575px) {
  .text-box {
    padding: 20px 15px;
    border-radius: 25px;
  }
}

.results {
  padding: 50px 0;
}
.results .page-width {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.results .page-width h2 {
  text-align: center;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 50px;
}

.section5 {
  padding-left: 50%;
  padding-right: calc(50% - 700px);
  position: relative;
  margin-top: 50px;
}
.section5 img {
  position: absolute;
  width: 50%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  left: 0;
  top: 0;
}
.section5 .section5-specifics {
  margin: 50px 0;
}
.section5 .section5-specifics div + div {
  margin-top: 25px;
}
.section5 .section5-specifics div {
  position: relative;
  padding-left: 90px;
  min-height: 77px;
  display: flex;
  align-items: center;
}
.section5 .section5-specifics div svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section5 .section5-specifics div::after {
  content: "";
  height: 100%;
  width: 1px;
  background-color: rgba(8, 35, 69, 0.2);
  position: absolute;
  left: 70px;
  top: 0;
}
@media only screen and (max-width: 1600px) {
  .section5 {
    padding-right: 10vw;
  }
}
@media screen and (max-width: 1199px) {
  .section5 {
    padding-left: 10vw;
  }
  .section5 img {
    width: 100%;
    position: static;
    max-height: 400px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .section5 {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}

.section6 {
  padding-left: calc(50% - 700px);
  padding-right: calc(50% + 70px);
  position: relative;
}
.section6 img {
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: 0;
  right: 0;
}
.section6 .meta-img {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section6 .meta-img svg {
  max-width: 45%;
}
@media only screen and (max-width: 1600px) {
  .section6 {
    padding-left: 10vw;
  }
}
@media screen and (max-width: 1199px) {
  .section6 {
    padding-right: 10vw;
  }
  .section6 img {
    position: static;
    width: 100%;
    max-height: 400px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 991px) {
  .section6 {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media screen and (max-width: 575px) {
  .section6 .meta-img svg {
    max-height: 80px;
  }
}

.page-padding:has(.section7) {
  padding-bottom: 0;
}

.section7 {
  position: relative;
  padding: 150px 0 250px;
  margin-top: 50px;
}
.section7 .text {
  max-width: 45%;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.section7 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1399px) {
  .section7 {
    padding: 100px 0 150px;
  }
}
@media screen and (max-width: 1199px) {
  .section7 {
    padding: 0;
    padding-bottom: 50px;
  }
  .section7 .text {
    max-width: unset;
  }
  .section7 img {
    display: none;
  }
}

.section8 {
  padding: 50px calc(50% + 70px) 50px calc(50% - 700px);
  position: relative;
}
.section8 img {
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: 0;
  right: 0;
  border-bottom-left-radius: 35px;
  border-top-left-radius: 35px;
}
@media only screen and (max-width: 1600px) {
  .section8 {
    padding-left: 10%;
  }
}
@media screen and (max-width: 1199px) {
  .section8 {
    padding: 0 10%;
  }
  .section8 img {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .section8 {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.results-table {
  display: grid;
  grid-template-columns: 45% 45% 10%;
}
.results-table div {
  padding: 20px;
  border-bottom: 1px solid rgba(8, 35, 69, 0.2);
  border-right: 1px solid rgba(8, 35, 69, 0.2);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.results-table p {
  font-size: 24px;
  font-weight: 600;
}
.results-table a {
  font-size: 18px;
  letter-spacing: 0.35px;
  color: var(--secondary-color);
  font-weight: 500;
}
.results-table span {
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.35px;
  color: var(--secondary-color);
}
.results-table div:first-child, .results-table div:nth-child(2) {
  flex-direction: row;
  align-items: center;
  justify-content: start;
}
.results-table div:first-child p, .results-table div:nth-child(2) p {
  font-weight: 500;
}
.results-table div:first-child svg, .results-table div:nth-child(2) svg {
  margin-right: 10px;
}
.results-table div:nth-child(3n+1) {
  padding-left: 0;
}
.results-table div:nth-child(3n) {
  border-right: none;
}
@media screen and (max-width: 1399px) {
  .results-table p {
    font-size: 20px;
  }
  .results-table span {
    font-size: 26px;
  }
}
@media screen and (max-width: 575px) {
  .results-table div {
    padding: 10px;
  }
  .results-table p {
    font-size: 14px;
  }
  .results-table a {
    font-size: 12px;
  }
  .results-table span {
    font-size: 16px;
  }
  .results-table svg {
    max-width: 25px;
    max-height: 25px;
  }
  .results-table div:first-child svg, .results-table div:nth-child(2) svg {
    margin-right: 5px;
  }
}

.results-wrap {
  position: relative;
}
.results-wrap::after {
  position: absolute;
  content: "";
  display: block;
  width: 300px;
  height: 260px;
  background-image: url("../images/results.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -100px;
  left: -80px;
  z-index: -1;
}
@media screen and (max-width: 575px) {
  .results-wrap::after {
    width: 150px;
    height: 120px;
    bottom: -20px;
    left: -20px;
  }
}

.section9 {
  padding: 0 calc(50% - 700px) 0 calc(50% + 70px);
  position: relative;
}
.section9 img {
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom-right-radius: 35px;
  border-top-right-radius: 35px;
}
@media only screen and (max-width: 1600px) {
  .section9 {
    padding-right: 10%;
  }
}
@media screen and (max-width: 1199px) {
  .section9 {
    padding-left: 10%;
  }
  .section9 img {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .section9 {
    padding-right: 5%;
    padding-left: 5%;
  }
}

.contact-section {
  position: relative;
  background-position: 0% 65%;
  background-repeat: no-repeat;
  background-size: 60%;
  padding: 150px 0 200px;
  overflow: hidden;
}
.contact-section * {
  color: #fff !important;
}
.contact-section .title span {
  text-transform: none;
}
.contact-section h2 {
  letter-spacing: 1px;
  font-weight: 700;
}
.contact-section .page-width {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  position: relative;
  z-index: 2;
}
.contact-section .contact-form {
  padding: 50px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.contact-section .contact-form h2 {
  margin-bottom: 50px;
}
.contact-section .contact-form form {
  display: grid;
  gap: 25px;
}
.contact-section .contact-form input, .contact-section .contact-form textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #fff;
  padding: 10px 0;
}
.contact-section .contact-form input::-moz-placeholder, .contact-section .contact-form textarea::-moz-placeholder {
  color: #fff;
  font-family: "Montserrat";
  font-size: 18px;
  letter-spacing: 4px;
  font-weight: 700;
}
.contact-section .contact-form input, .contact-section .contact-form textarea, .contact-section .contact-form input::placeholder, .contact-section .contact-form textarea::placeholder {
  color: #fff;
  font-family: "Montserrat";
  font-size: 18px;
  letter-spacing: 4px;
  font-weight: 700;
}
.contact-section .contact-form textarea {
  resize: none;
  height: 150px;
}
.contact-section .contact-form button {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  /* background-color: var(--secondary-color); */
  background-color: #007ED1;
  color: #fff;
  border: Mixed solid;
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px 50px;
  border-radius: 50vh;
  border: none;
  display: flex;
  align-items: center;
}
.contact-section .contact-form button svg {
  margin-left: 10px;
}
.contact-section .contact-span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  position: absolute;
  z-index: 0;
  bottom: 5px;
  right: 0;
  font-family: "Montserrat";
  font-weight: 800;
  font-size: 220px;
  line-height: 160px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media screen and (max-width: 1399px) {
  .contact-section {
    padding: 100px 0 150px;
  }
}
@media screen and (max-width: 1299px) {
  .contact-section {
    padding: 70px 0 100px;
  }
  .contact-section .page-width {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media screen and (max-width: 575px) {
  .contact-section {
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 70%;
    padding: 50px 0 100px;
  }
  .contact-section .contact-form {
    padding: 40px 20px;
    border-radius: 25px;
  }
  .contact-section .contact-form input::-moz-placeholder, .contact-section .contact-form textarea::-moz-placeholder {
    font-size: 16px;
    letter-spacing: 2px;
  }
  .contact-section .contact-form input, .contact-section .contact-form textarea, .contact-section .contact-form input::placeholder, .contact-section .contact-form textarea::placeholder {
    font-size: 16px;
    letter-spacing: 2px;
  }
  .contact-section .contact-form button {
    font-size: 16px;
    padding: 15px 30px;
  }
  .contact-section .contact-span {
    font-size: 100px;
    line-height: 70px;
  }
}/*# sourceMappingURL=main.css.map */
.message-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.message-section * {
  text-align: center;
  color: #fff;
}
.clutch-widget {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1000;
}
.stamp-widget_top {
  background-color: var(--light-grey) !important;
}
@media screen and (max-width: 575px) {
  .clutch-widget {
    left: unset;
    right: 0;
    bottom: 92px;
    max-width: 120px;
  }
}
