:root {
    --font-2: "Montserrat", sans-serif;
    --color1: #00b0d9;
    --color2: #008bbd;
}
body {
    font-family: "Roboto", sans-serif;
}


.section-1 {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
.section-1 .menu {
    margin-top: clamp(25px, 3.57vw, 50px);
    margin-bottom: clamp(25px, 3.57vw, 50px);
}
.section-1 .menu button {
    display: none;
    border: 0;
    background: none;
    color: #fff;
    padding: 0;
}
.section-1 .menu button svg {
    width: 36px;
    height: 36px;
}
.section-1 .menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.section-1 .menu ul li {}
.section-1 .menu ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}
.section-1 .menu ul li a:hover {
    text-decoration: underline;
}
.section-1 .menu ul li a.active {
    font-weight: 800;
}
.section-1 .text {
    text-align: center;
    color: #fff;
    margin-top: auto;
    margin-bottom: auto;
}
.section-1 .text .title {
    font-size: clamp(35px, 10vw, 60px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: clamp(40px, 10vw, 140px);
}
.section-1 .text .desc {
    font-size: clamp(20px, 2.29vw, 18px);
    padding: 0 clamp(0px, 7.14vw, 130px);
}

@media (max-width: 768px) {
    .section-1 {
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .section-1 .menu button {
        display: block;
    }
    .section-1 .menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        gap: 10px;
        position: relative;
        z-index: 2;
    }
    .section-1 .menu ul {
        display: none;
    }
    .section-1 .menu.active ul {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, .9);
        padding: 15px;
        top: 100%;
    }
    .section-1 .menu ul li a {
        color: #000;
    }
}


.section-2 {}
.section-2 .text {
    background-color: #232323;
    color: #ededed;
    padding: clamp(25px, 5.71vw, 80px);
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.section-2 .text .title {
    font-size: clamp(36px, 4.71vw, 36px);
    font-weight: 900;
    line-height: 1;
}
.section-2 .text .desc {
    font-size: clamp(20px, 2.14vw, 20px);
    font-style: italic;
}
.section-2 a {
    display: block;
    position: relative;
}
.section-2 a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.section-2 a img {
    width: 100%;
    height: clamp(300px, 32.14vw, 450px);
    object-fit: cover;
    display: block;
}
.section-2 a svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    width: clamp(50px, 5.71vw, 100px);
    height: clamp(50px, 5.71vw, 100px);
}


.section-3 {}
.section-3 .item {
    display: block;
    position: relative;
    background-color: #232323;
    transition: .4s;
}
.section-3 .item:hover {
    background-color: #fff;
}
.section-3 .item:hover .text {
    color: #434343;
}
.section-3 .item img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    opacity: .4;
}
.section-3 .item .text {
    position: absolute;
    inset: clamp(16px, 1.71vw, 24px);
    z-index: 3;
    color: #fff;
    font-family: var(--font-2);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.section-3 .item .text .title {
    margin-bottom: auto;
    font-size: clamp(24px, 3.29vw, 30px);
    font-weight: 900;  
}
.section-3 .item .text .bottom {
    display: flex;
    align-items: self-end;
    gap: 15px;
}
.section-3 .item .text .bottom .left {}
.section-3 .item .text .bottom .left .small-title {
    font-size: clamp(18px, 1.5vw, 24px);
    font-style: italic;
    font-weight: bold;
    margin-bottom: 5px;
}
.section-3 .item .text .bottom .left .desc{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: clamp(14px, 1.14vw, 16px);
}
.section-3 .item .text .bottom svg {
    background-color: var(--color1);
    color: #000;
    width: clamp(36px, 5vw, 70px);
    height: clamp(36px, 5vw, 70px);
    padding: clamp(5px, 1.43vw, 20px);
    flex-shrink: 0;
}


.section-4 {
    background-color: var(--color1);
    padding: clamp(50px, 17.86vw, 250px) 0;
}
.section-4 .big-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1;
    font-size: clamp(80px, 10vw, 60px);
    font-weight: 900;
}
.section-4 .swiper {}
.section-4 .swiper .item {}
.section-4 .swiper .item .video {
    position: relative;
}
.section-4 .swiper .item .video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.section-4 .swiper .item .video img,
.section-4 .swiper .item .images img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.section-4 .swiper .item .video a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.section-4 .swiper .item .video a svg { 
        color: #fff;
        width: clamp(50px, 5.71vw, 100px);
        height: clamp(50px, 5.71vw, 100px);
} 
.section-4 .swiper .item .images {}
.section-4 .swiper .item .text {}
.section-4 .swiper .item .text .title {
    font-size: 20px;
    font-weight: bold;
    margin: clamp(10px, 1.43vw, 20px) 0;
    line-height: 1.2;
}
.section-4 .swiper .item .text .desc {
    font-size: 15px;
    margin-bottom: clamp(30px, 4.71vw, 80px);
}
.section-4 .swiper-arrow {
    display: flex;
} 
.section-4 .swiper-arrow div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(40px, 4.29vw, 60px);
    height: clamp(50px, 5vw, 70px);
    background-color: #fff;
    color: #000;
}
.section-4 .swiper-arrow div:first-child {
    background-color: #353535;
    color: #fff;
}



.section-5 {
    background-color: #f7f7f8;
    padding: clamp(50px, 10.71vw, 150px) 0;
}
.section-5 .title-1 {
    font-size: clamp(40px, 10.71vw, 40px);
    color: #292929;
    font-weight: 900;
    line-height: 1;
}
.section-5 .title-2 {
    font-size: clamp(120px, 21.43vw, 45px);
    color: #292929;
    font-weight: 900;
    line-height: .6;
}
.section-5 .text {}
.section-5 .text .title {
    font-size: 24px;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 10px;
}
.section-5 .text .desc {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 80px;
}



.section-6 {
    position: relative;
    background: url(../images/hero-2.webp) no-repeat center top;
    padding-top: clamp(30px, 6.43vw, 90px);
   padding-bottom: clamp(30px, 8.57vw, 50px);
}
.section-6::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, #000);
    opacity: .2;
    z-index: 1;
}
.section-6 .container {
    position: relative;
    z-index: 2; 
}
.section-6 .item {
    margin-bottom: 80px;
    display: flex;
}
.section-6 .item.item-1 {max-width: calc(100% - 15px);}
.section-6 .item.item-1 .item-text {
    max-width: 210px;
}
.section-6 .item.item-2 {
    max-width: 470px;
}
.section-6 .item.item-2 .item-text {
    max-width: clamp(270px, 20.71vw, 290px);
}
.section-6 .item.item-3 {
    flex-direction: row-reverse;
    text-align: right;
    max-width: 480px;
    margin-left: auto;
}
.section-6 .item.item-3 .item-text {
    max-width: clamp(290px, 22.5vw, 315px);
}
.section-6 .item.item-4 {
    flex-direction: row-reverse;
    text-align: right;
    max-width: 560px;
    margin-left: auto;
    padding-right: 50px;
}
.section-6 .item.item-4 .item-text {
    max-width: clamp(290px, 23.93vw, 335px);
} 
.section-6 .item .item-text {
    color: #fff;
    line-height: 1.2;
    font-family: var(--font-2);
    flex-shrink: 0;
}
.section-6 .item .item-text .title {
    font-size: clamp(30px, 2.86vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}
.section-6 .item .item-text .desc {
    font-size: 17px;
}
.section-6 .item .pulse-container {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
}
.section-6 .item .pulse-container {
    position: relative;
}
.section-6 .item .pulse-container .line {}
.section-6 .item .pulse-container .line::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
}
.section-6 .item .pulse-container .line::after {content: "";}

.section-6 .item.item-1 .pulse-container {
    align-items: flex-end;
}
.section-6 .item.item-1 .pulse-container .line {}
.section-6 .item.item-1 .pulse-container .pulse-box { transform: translate(7px, 7px);}
.section-6 .item.item-1 .pulse-container .line::before {left: 0;right: 0;top: 0;}
.section-6 .item.item-1 .pulse-container .line::after {width: 1px;height: 100%;background-color: #fff;position: absolute;right: 0;top: 0;bottom: 0;}

.section-6 .item.item-2 .pulse-container {}
.section-6 .item.item-2 .pulse-container .pulse-box {
    transform: translateY(23px);
}
.section-6 .item.item-2 .pulse-container .line {}
.section-6 .item.item-2 .pulse-container .line::before {left: 0;right: 0;top: 30px;}

.section-6 .item.item-3 .pulse-container {
    flex-direction: row;
}
.section-6 .item.item-3 .pulse-container .pulse-box {
    transform: translate(-4px, 18px);
}
.section-6 .item.item-3 .pulse-container .line {}
.section-6 .item.item-3 .pulse-container .line::before {left: 0;right: 0;top: 25px;}

.section-6 .item.item-4 .pulse-container {
    flex-direction: row;
}
.section-6 .item.item-4 .pulse-container .pulse-box {
    transform: translate(-4px, 17px);
}
.section-6 .item.item-4 .pulse-container .line {}
.section-6 .item.item-4 .pulse-container .line::before {left: 0;right: 0;top: 24px;}

.section-6 .left-text {
    display: flex;
    flex-direction: column;
    color: #1e454e;
    font-size: clamp(50px, 5vw, 70px);
    line-height: 1;
    margin-top: clamp(80px, 17.86vw, 250px);
}
.section-6 .left-text span {}
.section-6 .left-text strong {}
.section-6 .text {
    color: #fff;
    font-family: var(--font-2);
    display: flex;
    flex-direction: column;
    padding: 0 50px;
}
.section-6 .text .title {
    font-size: clamp(30px, 4.71vw, 66px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
}
.section-6 .text .desc {
    font-size: 17px;
}
.section-6 .text a {
      display: inline-block;
    margin-left: auto;
    background-color: var(--color1);
    color: #fff;
    font-weight: 800;
    border-radius: 50px;
    padding: 13px 15px;
    text-decoration: none;
    margin-top: 15px;
    
}
.section-6 .text a:hover {
    background-color: var(--color2);
}


.section-7 {
    background-color: #c9effa;
    padding-bottom: 50px;
}
.section-7 .container {
    transform: translateY(-90px);
    margin-bottom: -90px;
}
.section-7 .text {
    font-family: var(--font-2);
}
.section-7 .text .title {
    font-size: clamp(32px, 4.29vw, 30px);
    font-weight: 900;
    color: #1e454e;
    line-height: 1.1;
    position: relative;
}
.section-7 .text .title span {
    color: #303030;
}

.section-7 .text .title.title-before:before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    background-color: var(--color1);
    border-radius: 100%;
    left: -35px;
    top: 30px;
}
.section-7 .text .small-title {
    font-size: 18px;
    margin-top: clamp(40px, 5.71vw, 80px);
    margin-bottom: 15px;
}
.section-7 .text .desc {
    font-size: 17px;
    color: #1e454e;
}
.section-7 .text a {
    display: inline-block;
    margin-left: auto;
    background-color: var(--color1);
    color: #fff;
    font-weight: 800;
    border-radius: 50px;
    padding: 13px 15px;
    text-decoration: none;
    margin-top: 15px;
}
.section-7 .text a:hover {
    background-color: var(--color2);
}
.section-7 .images {
    display: flex;
    gap: 60px;
}
.section-7 .images img {
    border: 20px solid #00b0d952;
    border-radius: 50px;
    display: block;
    width: calc(50% - 30px);
}


.section-8 {
    background-color: #232323;
    padding-top: 100px;
    padding-bottom: 30px;
}
.section-8 {}
.section-8 .text {
    font-family: var(--font-2);
    color: #c9effa;
}
.section-8 .text .title {
    font-size: clamp(36px, 5.71vw, 30px);
    font-weight: 800;
}
.section-8 .text .desc {
    font-size: clamp(24px, 2.86vw, 40px);
    line-height: 1.2;
}
.section-8 ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: var(--font-2);
    color: #1e454e;
}
.section-8 ul li {
    background-color: #c9effa;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    padding-left: clamp(100px, 8.93vw, 125px);
    position: relative;
} 
.section-8 ul li::before {
    content: "";
    width: clamp(40px, 4.29vw, 60px);
    height: clamp(40px, 4.29vw, 60px);
    position: absolute;
    top: 30px;
    left: 30px;
    border-radius: 10px;
    background-color: var(--color1);
    transition: .5s;
}
.section-8 ul li:hover::before {
    transform: scale(1.1);
    border-radius: 100%;
    background-color: var(--color2);
}
.section-8 ul li strong {
    font-size: clamp(24px, 2vw, 20px);
    font-style: italic;
    margin-bottom: 15px;
}
.section-8 ul li span {
    font-size: 15px;
}
.section-8 .bottom-title {
    font-family: var(--font-2);
    font-size: clamp(36px, 5.71vw, 30px);
    text-align: center;
    font-weight: 900;
    color: #c9effa;
}





.section-9 {
    background-color: #c9effa;
    padding-bottom: 40px;
}
.section-9 .top-text {
    color: #1e454e;
    font-family: var(--font-2);
}
.section-9 .top-text .title {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(40px, 4.29vw, 30px);
    line-height: 1.2;
}
.section-9 .top-text .title strong {
    font-weight: 900;
}
.section-9 .top-text .desc {
    font-size: 17px;
    text-align: center;
}
.section-9 .item {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: .4s;
}
.section-9 .item:hover {
    transform: translateY(-10px);
}
.section-9 .item .images {}
.section-9 .item .images img {
    padding: 0 50px;
    width: 100%;
}
.section-9 .item .text {
    background-color: rgba(0, 176, 217, 0.15);
    padding: 30px 40px;
    border-radius: 30px;
    color: #1e454e;
    font-family: var(--font-2);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.section-9 .item .text .title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}
.section-9 .item .text .small-title {
    font-size: 15px;
    margin-bottom: 10px;
    font-style: italic;
}
.section-9 .item .text .small-title span {
    font-weight: 600;
}
.section-9 .item .text .desc {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}
.section-9 .item .text ul {padding: 0;margin: 0;font-size: 17px;}
.section-9 .item .text ul li {
    margin-bottom: 20px;
    font-size:15px;
} 
.section-9 .item .text a {
    display: inline-block;
    margin-top: auto;
    background-color: var(--color1);
    color: #fff;
    font-weight: 800;
    border-radius: 50px;
    padding: 13px 15px;
    text-decoration: none;
}
.section-9 .item .text a:hover {
    background-color: var(--color2);
}


.section-10 {
    padding-top: 30px;
    background-color: #232323;
    color: #fff;
    font-family: var(--font-2);
    padding-bottom: clamp(50px, 8.57vw, 120px);
}
.section-10 .top {
    margin-bottom: 40px;
}
.section-10 .top .title {
    font-size: clamp(40px, 4.64vw, 30px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
}
.section-10 .top .small-title {
    font-weight: 300;
    font-size: 18px;
}
.section-10 .top .desc {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}
.section-10 .top a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 900;
    background-color: #2d2d2d;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
}
.section-10 .item {
    position: relative;
    transition: .4s;
}
.section-10 .item:hover img {
    opacity: .5;
}
.section-10 .item:hover {
    transform: translateY(-10px);
}
.section-10 .item img {
    width: 100%;
    display: block;
    transition: .4s;
}
.section-10 .item .title {
    position: absolute;
    inset: 0;
    padding: 20px 27px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}
.section-10 .bottom {
    margin-top: clamp(50px, 8.57vw, 120px);
}
.section-10 .bottom .title {
    font-size: clamp(35px, 3.57vw, 30px);
    font-weight: 900;
    color: #c9effa;
    line-height: 1.2;
}
.section-10 .bottom .title-2 {
    font-size: clamp(50px, 4.57vw, 34px);
    font-weight: 900;
    color: #c9effa;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}
.section-10 .bottom .title-2 a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    background-color: var(--color1);
    padding: 15px 25px;
    display: inline-block;
    border-radius: 50px;
}
.section-10 .bottom .title-2 a:hover {
    background-color: var(--color2);
}
.section-10 .bottom .desc {
    font-size: 17px;
    font-weight: 800;
    color: #c9effa;
    opacity: .9;
}



 
@media (max-width: 1200px) {
    .section-7 .images {
        gap: 30px;
    }
    .section-7 .images img {
        border: 15px solid #00b0d952;
        width: calc(50% - 15px);
    }
    .section-6 {
        background-size: cover;
    }
}
@media (max-width: 992px) {
    .section-6 .text {
        padding: 0;
    }
    .section-6 .item.item-3,
    .section-6 .item.item-4 {
        padding-right: 0;
        padding-left: 20px;
    }
    .section-6 .item.item-2,
    .section-6 .item.item-1 {
        max-width: 100%;
        padding-right: 20px;
    }
}
@media (max-width: 768px) {
    .section-7 .container {
        transform: none;
        margin-bottom: 0;
        padding-top: 30px;
    }
}









 

/* pulse in CSS */
.pulse-css {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background: var(--color1);
  position: relative;
}
.pulse-css:before, .pulse-css:after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background-color: var(--color1);;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: scale(0.5);
  transform-origin: center center;
  animation: pulse-me 3s linear infinite;
}
.pulse-css:after {
  animation-delay: 2s;
}

@keyframes pulse-me {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 0.4;
  }
  70% {
    opacity: 0.3;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

