@font-face {
    font-family: 'Poppins';
    src: local('Poppins Regular'), local('Poppins-Regular'), url('/access/fonts/Poppins-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins Medium'), local('Poppins-Medium'), url('/access/fonts/Poppins-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins Bold'), local('Poppins-Bold'), url('/access/fonts/Poppins-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins Black'), local('Poppins-Black'), url('/access/fonts/Poppins-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


:root {
    --black: #000;
    --white: #FFF;
    --main: #22B573;
    --opacity-text: #5A6570;
    --block-color: #F5F7FB;
    --footer-bg: #181818;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    width: 100%;
    height: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--main) transparent;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main);
    border-radius: 10px;
    border: 3px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #1a945d;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}











.top-bar {
    width: 100%;
    display: flex;
    height: 33px;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 1002;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar.header-hidden {
    transform: translateY(-100%);
}

.top-bar span {
    color: var(--white);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}


.container-header {
    display: flex;
    height: 80px;
    padding: 0 40px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.main-header {
    background-color: var(--white);
    position: sticky;
    top: 33px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img {
    display: block;
    max-height: 50px; 
    min-height: 50px; 
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--main);
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn svg {
    transition: transform 0.3s ease;
}

.search-btn:hover svg {
    transform: scale(1.1);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.main-header.header-hidden {
    transform: translateY(calc(-100% - 33px));
}

@media (max-width: 900px) {
    .burger {
        display: flex;
        margin-left: 20px;
    }

    .search-btn {
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background-color: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: block;
        padding: 100px 14px 14px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        text-align: center;
        width: 100%;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.4s ease;
        width: 100%;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.6s; }

    .nav-menu a {
        position: relative;
        font-size: 32px;
        font-weight: 500;
        letter-spacing: -1px;
        font-style: normal;
        line-height: 100%;
        display: block;
        padding: 25px 0;
        color: var(--black);
        text-align: left;
        transition: color 0.3s ease;
        border-bottom: 1px solid #00000050;
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--main);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--main);
    }

    .nav-menu a:hover::after,
    .nav-menu a.active::after {
        transform: scaleX(1);
        transform-origin: left;
    }
    
    .main-header {
        height: 70px;
    }

    .container-header {
        height: 70px;
        padding: 0 14px;
    }

    .logo img {
        max-height: 40px;
        min-height: 40px;
    }

    .logo {
        position: relative;
        z-index: 1001;
    }
}






.footer {
    display: flex;
    padding: 40px 100px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    background: var(--footer-bg);
    width: 100%;
}
.top-footer {
    width: 100%;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.container-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    width: 100%;
}

img.logo-footer {
    width: 149.916px;
    height: 48.679px;
    aspect-ratio: 149.92 / 48.68;
}

p.top-logo-p {
    color: var(--white);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.container-bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    width: 100%;
}

ul.footer-links-private {
    display: flex;
    align-items: center;
    gap: 40px;
}

.social-media-icons {
    display: flex;
    align-items: center;
    gap: 30px;
}

span.info-ul {
    color: var(--white);
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    opacity: 0.5;
    padding-bottom: 8px;
}

.footer-links li a {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    position: relative;
    transition: color 0.3s ease;
}

.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--main);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
    opacity: 0;
}

.footer-links li a:hover {
    color: var(--main);
}

.footer-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    opacity: 1;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}
ul.footer-links-private a {
    color: var(--white);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-decoration: none;
    opacity: 0.5;
    position: relative;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid rgb(255 255 255 / 50%);
}

ul.footer-links-private a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
    opacity: 0;
}

ul.footer-links-private a:hover {
    opacity: 1;
}

ul.footer-links-private a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    opacity: 1;
}
.social-media-icons a svg {
    width: 28px;
    height: 28px;
    aspect-ratio: 1 / 1;
    transition: filter 0.3s ease;
}

.social-media-icons a {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.social-media-icons a:hover svg {
    filter: drop-shadow(0 5px 15px rgba(34, 181, 115, 0.4));
}

.social-media-icons a svg path {
    transition: fill 0.3s ease;
}

.social-media-icons a:hover svg path[fill="white"] {
    fill: var(--main);
}

@media (max-width: 900px) {
    .footer {
        padding: 30px 14px;
        gap: 30px;
        flex-direction: row;
    }

    .container-footer {
        flex-direction: column;
        gap: 30px;
    }

    .container-bottom-footer {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px;
        justify-content: flex-start;
    }

    ul.footer-links-private {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 20px;
    }
}









.hero-section {
    display: flex;
    padding: 0 40px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}
.botom-hero-conteiner {
    padding-top: 16px;
}
.container-hero {
    position: absolute;
    display: flex;
    padding: 80px 60px;
    align-items: center;
    z-index: 2;
}
img.hero-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: brightness(60%);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 40%;
}

h1.hero-title {
    color: var(--white);
    font-size: 60px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
}

p.hero-subtitle {
    color: var(--white);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.hero-button {
    border-radius: 100px;
    background: var(--main);
    display: flex;
    height: 58px;
    padding: 0 45px;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: all 0.6s;
    z-index: 1;
}

.hero-button:hover::before {
    left: 100%;
}

.hero-button span {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        padding: 14px 14px;
        gap: 14px;
    }

    .container-hero {
        position: relative;
        padding: 0;
        width: 100%;
        order: 1;
    }
    .botom-hero-conteiner {
        padding-top: 0px;
    }
    .hero-content {
        width: 100%;
        gap: 15px;
    }
    h1.hero-title,
    p.hero-subtitle {
        color: var(--black);
    }

    h1.hero-title {
        font-size: 32px;
    }

    .hero-image-wrapper {
        order: 2;
    }
    .botom-hero-conteiner .hero-button {
        height: 50px;
        padding: 0 40px;
    }
    .botom-hero-conteiner .hero-button span {
        font-size: 14px;
    }

    img.hero-image {
        height: auto;
    }
}


.latest-video-section {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}

.container-latest-video {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}
.latest-video-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

h2.latest-video-title {
    color: #1B2025;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

.latest-video-text p {
    color: #5A6570;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}


.latest-video-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.latest-video-cover {
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    display: block;
    position: relative;
}

.latest-video-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.latest-video-item:hover .latest-video-cover img {
    transform: scale(1.05);
}
.latest-video-item {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    display: flex;
    padding: 14px;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
}

.date-video {
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    padding-top: 4px;
}

.date-video span {
    color: #5A6570;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; 
}

.play-btn {
  width: 46.26px;
  height: 46.26px; 
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px); 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;  
  padding-left: 2px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}

.play-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 70px;  
  height: 70px; 
  border-radius: 50%;
  border: 0.609px solid rgba(255, 255, 255, 0.50);
  pointer-events: none; 
  opacity: 1;
  transition: all 0.3s ease;
}

.latest-video-item:hover .play-btn {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.35);
}

.latest-video-item:hover .play-btn::after {
    animation: playBtnPulse 2s infinite;
}

@keyframes playBtnPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
        border-width: 1px;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
        border-width: 0px;
    }
}

.position-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}


h3.latest-video-item-title {
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 900px) {
    .latest-video-section {
        padding: 30px 14px;
    }
    .date-video span {
        font-size: 12px;
    }

    .container-latest-video {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
        min-width: 0;
    }
    .container-latest-video .hero-button {
        height: 50px;
        padding: 0 40px;
    }
    .container-latest-video .hero-button span {
        font-size: 14px;
    }

    h2.latest-video-title {
        font-size: 32px;
    }

    .latest-video-wrapper {
        flex-direction: row;
        align-items: stretch;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        width: calc(100% + 28px);
        margin-left: -14px;
        margin-right: -14px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .latest-video-wrapper::-webkit-scrollbar {
        display: none;
    }

    .latest-video-item {
        min-width: 85vw;
        scroll-snap-align: center;
    }
}



.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}
.video-modal.open {
    opacity: 1;
    visibility: visible;
}
.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: transparent;
    transform: scale(0.9) translateY(40px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.video-modal.open .video-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.video-modal-close:hover {
    background: var(--main);
    border-color: var(--main);
    transform: rotate(90deg);
}
.video-modal-close svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}









.featured-section {
    display: flex;
    padding: 40px 40px 80px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}
.container-featured {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.featured-text {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

h2.featured-title {
    color: var(--black);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

a.featured-span-link {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
a.featured-span-link span {
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    transition: color 0.3s ease;
}

a.featured-span-link svg {
    width: 14px;
    height: 14px;
    transition: all 0.3s ease;
}

a.featured-span-link svg path {
    transition: stroke 0.3s ease;
}

a.featured-span-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--main);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
    opacity: 0;
}

a.featured-span-link:hover span {
    color: var(--main);
}

a.featured-span-link:hover svg path {
    stroke: var(--main);
}

a.featured-span-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    opacity: 1;
}

.featured-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

a.featured-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

a.featured-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

a.featured-item:first-child .featured-item-title {
    color: var(--black);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

a.featured-item:not(:first-child) .featured-item-title {
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.featured-cover {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.featured-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

a.featured-item:hover .featured-cover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .featured-section {
        padding: 30px 14px;
    }
    a.featured-span-link span {
        font-size: 14px;
    }
    .container-featured {
        gap: 20px;
        width: 100%;
        min-width: 0;
    }

    h2.featured-title {
        font-size: 32px;
    }

    .featured-wrapper {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        width: calc(100% + 28px);
        margin-left: -14px;
        margin-right: -14px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .featured-wrapper::-webkit-scrollbar {
        display: none;
    }

    a.featured-item {
        min-width: 85vw;
        scroll-snap-align: center;
        gap: 12px;
    }

    a.featured-item:first-child .featured-item-title {
        font-size: 16px;
        line-height: 120%;
    }
}













.offer-section {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    align-self: stretch;
    background: var(--block-color);
}

.offer-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    align-self: stretch;
}

h2.offer-title {
    color: #1B2025;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: capitalize;
}

.offer-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.offer-toggle {
    position: relative;
    display: flex;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 50px;
    padding: 4px;
    width: 326px;
    height: 54px;
}

.toggle-glider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 50%;
    height: calc(100% - 8px);
    background-color: var(--main);
    border-radius: 40px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.toggle-btn {
    flex: 1;
    z-index: 2;
    cursor: pointer;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    color: var(--black);
    background: transparent;
    border: none;
    transition: color 0.3s ease;
    font-family: Poppins;
}

.toggle-btn.active {
    color: var(--white);
}

.offer-content-wrapper {
    width: 75%;
    position: relative;
    height: auto;
    overflow: hidden;
    box-sizing: border-box; 
    will-change: height;
    transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.offer-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.offer-grid.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

.offer-card {
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 181, 115, 0.2);
}

.offer-card h3 {
    color: var(--black);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: capitalize;
}

.offer-card ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.offer-card li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: capitalize;
}

.icon-check {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    min-height: 18px;
}


@media (max-width: 1250px) {
    .offer-content-wrapper {
        width: 95%;
    }
}

@media (max-width: 900px) {
    .offer-card li {
        font-size: 14px;
        gap: 10px;
    }
    .offer-content-wrapper {
        width: 100%;
    }
    .offer-section {
        padding: 40px 14px;
    }
    
    h2.offer-title {
        font-size: 32px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }
}

.offer-grid.active .offer-card:nth-child(1) { animation: fadeUp 0.5s ease forwards 0.1s; opacity: 0; }
.offer-grid.active .offer-card:nth-child(2) { animation: fadeUp 0.5s ease forwards 0.2s; opacity: 0; }
.offer-grid.active .offer-card:nth-child(3) { animation: fadeUp 0.5s ease forwards 0.3s; opacity: 0; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}











.ticker-section {
    width: 100%;
    padding: 40px 0;
    background-color: #ffffff;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.ticker-title {
    text-align: center;
    color: #1B2025;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 40px;
}

.ticker-wrapper-outer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.ticker-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.ticker-container:active {
    cursor: grabbing;
}

.ticker-track {
    display: flex;
    gap: 12px;
    width: max-content;
    will-change: transform;
}

.ticker-item {
    display: flex;
    width: 170px;
    height: 87px;
    padding: 1.002px 26.407px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}



.ticker-item img {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    aspect-ratio: 117.19/85.00;
    object-fit: contain;
    transition: filter 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}



@media (max-width: 768px) {
    .ticker-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .ticker-wrapper-outer {
        gap: 12px;
    }

    .ticker-track {
        gap: 16px;
    }

    .ticker-item {
        width: 140px;
        height: 70px;
        padding: 15px;
    }
}
















.meet-companies-section {
    padding: 40px 40px;
    background-color: var(--block-color);
    width: 100%;
}

.meet-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
    margin: 0 auto;
}

.meet-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meet-title {
    color: var(--black);
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
}

.meet-subtitle {
    color: var(--opacity-text);
    font-size: 16px;
    font-weight: 400;
}

.meet-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 32px;
    align-items: start;
    width: 100%;
}

.meet-videos-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
}

.meet-video-item {
    border-radius: 12px;
    display: flex;
    padding: 14px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    background: transparent;
    cursor: pointer;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.meet-video-cover {
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    display: block;
    position: relative;
    aspect-ratio: 16/9;
}

.meet-video-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.meet-video-item:hover .meet-video-cover img {
    transform: scale(1.05);
}

.meet-position-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.meet-play-btn {
    width: 46.26px;
    height: 46.26px;
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(7.3px);
    -webkit-backdrop-filter: blur(7.3px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    padding-left: 2px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}

.meet-play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 0.609px solid rgba(255, 255, 255, 0.50);
    pointer-events: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.meet-video-item:hover .meet-play-btn {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.35);
}

.meet-video-item:hover .meet-play-btn::after {
    animation: meetPlayBtnPulse 2s infinite;
}

@keyframes meetPlayBtnPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
        border-width: 1px;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
        border-width: 0px;
    }
}

.meet-video-title {
    color: var(--black);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meet-video-date {
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    padding-top: 4px;
    margin-top: auto;
}

.meet-video-date span {
    color: #5A6570;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.meet-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.market-widget {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    padding: 15px 20px 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow: hidden;
}

.market-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    gap: 10px;
}

.market-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30%; 
    min-width: 100px;
}

.market-info h4 {
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.market-price {
    display: block;
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.market-change {
    font-size: 13px;
    font-weight: 500;
    margin-top: 2px;
    white-space: nowrap;
}

.positive .indicator, .positive .market-change, .positive .company-change { color: #22B573; }
.negative .indicator, .negative .market-change, .negative .company-change { color: #FF4D4D; }

.market-chart-container {
    width: 70%; 
    height: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.market-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 10px;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}

.company-item {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

.company-name {
    font-size: 12px;
    color: #5A6570;
    font-weight: 500;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.company-data {
    display: flex;
    align-items: center;
    gap: 6px;
}

.company-change {
    font-size: 12px;
    font-weight: 500;
}

.market-map-widget {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    padding: 24px;
}

.market-map-widget h4 {
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sector-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sector-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

.sector-name {
    color: #5A6570;
}

.sector-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    min-width: 65px;
    text-align: center;
}

.sector-badge.positive {
    background-color: rgba(34, 181, 115, 0.1);
    color: var(--main);
}

.sector-badge.negative {
    background-color: rgba(255, 77, 77, 0.1);
    color: #FF4D4D;
}

.sector-badge.neutral {
    background-color: rgba(90, 101, 112, 0.1);
    color: #5A6570;
}

@media (max-width: 1100px) {
    .meet-layout {
        grid-template-columns: 1fr;
    }
    .meet-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 900px) {
    .meet-companies-section {
        padding: 40px 14px;
    }
    .meet-video-date span {
        font-size: 12px;
    }
    .market-chart-container {
        width: 100%;
    }
    .market-top {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 15px;
    }
    .meet-title {
        font-size: 32px;
    }

    .meet-videos-wrapper {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        width: calc(100% + 28px);
        margin-left: -14px;
        margin-right: -14px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .meet-videos-wrapper::-webkit-scrollbar {
        display: none;
    }

    .meet-video-item {
        min-width: 85vw;
        scroll-snap-align: center;
    }

    .meet-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}









.bio-section {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    align-self: stretch;
}

.title-bio {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 100%;
}

h2.title-bio-text {
    color: #1B2025;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
}


.team-card {
    display: flex;
    width: 70%;
    margin: auto;
    padding: 14px 40px 14px 14px;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.team-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin: auto;
}

.team-title h2 {
    color: var(--black);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.team-title p {
    color:#5A6570;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.team-image img {
    border-radius: 6px;
}

@media (max-width: 900px) {
    .bio-section {
        padding: 40px 14px;
    }

    h2.title-bio-text {
        font-size: 32px;
    }
    .team-title p {
        font-size: 14px;
    }
    .team-title h2 {
        font-size: 20px;
    }
    .bio-section {
        gap: 20px;
    }
    .team-card {
        width: 100%;
        flex-direction: column;
        padding: 14px;
    }

    .team-image,
    .team-image img {
        width: 100%;
    }
}




section.hero-video-page {
    display: flex;
    padding: 40px 40px 80px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    background: var(--black);
}

.hero-video-title h2 {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
}

.video-hero-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    align-items: stretch;
    gap: 32px;
}


.video-hero-left .video-hero-cards h3 {
    color: var(--white);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}
.video-hero-left .video-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.video-hero-cover {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.video-hero-left .video-hero-cover {
    height: auto;
    aspect-ratio: 1 / 0.9;
}
.video-hero-left .video-hero-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.4s ease;
}
.video-hero-cards h3 {
    overflow: hidden;
    color: var(--white);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; 
}

.video-hero-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 24px;
    min-height: 0;
}

.video-hero-right .video-hero-cards {
    display: grid;
    grid-template-columns: 60% 1fr;
    grid-template-rows: 100%;
    align-items: stretch;
    gap: 20px;
    flex: 1;
    min-height: 0;
}

.video-hero-right .video-hero-cover {
    height: 100%;
}

.video-hero-right .video-hero-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.4s ease;
}

.video-hero-cards {
    cursor: pointer;
}

.video-hero-cards:hover .video-hero-cover img {
    transform: scale(1.05);
}

.hero-position-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.hero-play-btn {
    width: 46.26px;
    height: 46.26px;
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(7.3px);
    -webkit-backdrop-filter: blur(7.3px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    padding-left: 2px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}

.hero-play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 0.609px solid rgba(255, 255, 255, 0.50);
    pointer-events: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.video-hero-cards:hover .hero-play-btn {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.35);
}

.video-hero-cards:hover .hero-play-btn::after {
    animation: heroPlayBtnPulse 2s infinite;
}

@keyframes heroPlayBtnPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
        border-width: 1px;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
        border-width: 0px;
    }
}

@media (max-width: 1200px) {
    .video-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-hero-left .video-hero-cover {
        aspect-ratio: 16/9;
    }

    .video-hero-right {
        height: auto;
    }
    
    .video-hero-right .video-hero-cards {
        grid-template-columns: 45% 1fr;
    }
    .video-hero-right .video-hero-cover img {
        position: relative;
    }
}

@media (max-width: 900px) {
    section.hero-video-page {
        padding: 30px 14px;
    }

    .video-hero-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        width: calc(100% + 28px);
        margin-left: -14px;
        margin-right: -14px;
        padding-left: 14px;
        padding-right: 14px;
        padding-bottom: 20px;
    }
    
    .video-hero-grid::-webkit-scrollbar {
        display: none;
    }

    .video-hero-left,
    .video-hero-right {
        display: contents;
    }

    .video-hero-cards {
        min-width: 85vw;
        scroll-snap-align: center;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .video-hero-left .video-hero-cards,
    .video-hero-right .video-hero-cards {
        display: flex;
        min-height: auto;
        gap: 12px;
    }

    .video-hero-left .video-hero-cover {
        aspect-ratio: 16/9;
    }

    .video-hero-right .video-hero-cover {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .video-hero-right .video-hero-cover img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .video-hero-left .video-hero-cards h3,
    .video-hero-cards h3 {
        font-size: 16px;
        line-height: 120%;
    }
}






.all-video-section {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}

.container-all-video {
    display: flex;
    align-items: flex-start;
    align-self: stretch;
    flex-direction: column;
    gap: 32px;
}
.all-video-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
h2.all-video-title {
    color: #1B2025;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

.all-video-text p {
    color: #5A6570;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.all-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}
.pagination-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
}

.pagination-btn {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #F1F1F1;
    background: var(--white);
    color: var(--black);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: all 0.3s ease;
}

.pagination-btn.active {
    background: var(--main);
    color: var(--white);
    border-color: var(--main);
}

.pagination-btn svg path {
    transition: fill 0.3s ease;
}

.pagination-btn:hover:not(.active) {
    border-color: var(--main);
    color: var(--main);
}

.pagination-btn:hover:not(.active) svg path {
    fill: var(--main);
}

.pagination-btn.rotate-icon svg {
    transform: rotate(180deg);
}

.pagination-dots {
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    padding: 0 4px;
}
@media (max-width: 1200px) {
    .all-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .all-video-grid {
        grid-template-columns: 1fr;
    }
    .pagination-wrapper {
        justify-content: center;
    }
    .all-video-section {
        padding: 40px 14px;
    }
    .all-video-title {
        font-size: 32px;
    }
}






.contact-section {
    display: flex;
    padding: 80px 0;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 50%;
    margin: auto;
}

.title-contact-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.container-contact-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    align-self: stretch;
}

.contact-info {
    display: flex;
    padding: 8px 0;
    align-items: center;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-item svg {
    display: flex;
    width: 34px;
    height: 34px;
    padding: 4.547px 5px 5.453px 5px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
}

h2.contact-title {
    color: var(--black);
    text-align: center;
    font-size:40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: capitalize;
}

p.contact-subtitle {
    color: #5E606F;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.contact-item span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--main);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
    opacity: 0;
}

.contact-item:hover span {
    color: var(--main);
}

.contact-item:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
    opacity: 1;
}

.contact-item span {
    color:#5A6570;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    position: relative;
    transition: color 0.3s ease;
}

.container-contact {
    display: flex;
    padding: 40px 40px 32px 40px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-radius: 12px;
    border: 1px solid rgba(18, 32, 73, 0.10);
    background: var(--white);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
    width: 100%;
}


.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
    width: 100%;
}

.contact-grid label {
    color:#141414;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
}

.contact-grid input {
    display: flex;
    padding: 18px 14px;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid #CBCEE5;
    background: #FFF;
    outline: none;
    color:#141414;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; 
}

.contact-grid textarea {
    display: flex;
    padding: 18px 14px;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid #CBCEE5;
    background: #FFF;
    outline: none;
    color:#141414;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

@media (max-width: 1200px) {
    .contact-section {
        width: 80%;
    }
}

@media (max-width: 900px) {
    .contact-section {
        width: 100%;
        padding: 40px 14px;
        gap: 30px;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .container-contact {
        padding: 30px 14px;
    }

    h2.contact-title {
        font-size: 32px;
    }
}