@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Roboto';
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

header{
    background: white;

}

.container{
    width: 86%;
    margin: 0 auto;
}

.w84{
    width: 84%;
    margin: 0 auto;
}
.header_desktop_wrapper{
    display: flex;
    justify-content: space-between;
    padding: 2vw 0 2vw 0;
    align-items: center;
    
}

.header_desktop_logo{
    width: 7.2vw;
}

.header_desktop_logo img{
    width: 100%;
    height: 100%;
}

.header_desktop_links ul{
    display: flex;
    gap: 7vw;
}

.header_desktop_links ul li{
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 1vw;
    color: rgba(82, 82, 82, 1);
    transition: color 0.2s ease-in-out;
    cursor: pointer;
}

.header_desktop_links ul li:hover{
    color: rgba(73, 190, 235, 1);
}
.header_desktop_mp{
    display: flex;
    justify-content: right;
    gap: 3vw;
}
.header_desktop_mp_item{
    display: flex;
    align-items: center;
    gap: 1vw;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 1vw;

}

.header_desktop_mp_item img{
    width: 1.2vw;
}


.service-item-decor img{
    width: 100%;
}



.service-item-decor{
    padding: 0;
    padding-bottom: 0;
    position: relative;
    min-height: 17vw;
    width: 33vw;
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.hero {
    position: relative;
    height: 51vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; 
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270.06deg, rgba(20, 27, 40, 0) 9.1%, rgba(6, 37, 83, 0.65) 101.07%);
    z-index: 0; 
}

.hero-content {
    color: white;
    z-index: 1; 
    position: relative; 
}

.hero-title {
    font-size: 3vw;
    font-weight: bold;
    line-height: 1.2;
    
}

.hero-subtitle {
    font-size: 1.2vw;
    font-weight: 300;
    opacity: 0.9;
    font-style: italic;
    margin-top: 0.5vw;
}

.cta-button {
    background: rgba(52, 186, 236, 1);
    color: white;
    padding: 0.9vw 1.7vw;
    border: none;
    border-radius: 0.6vw;
    font-size: 1.1vw;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 5vw;

}

.cta-button:hover {
    background: rgba(32, 145, 187, 1);
   
}


.services-container {
    margin: 0 auto;
    background: white;
    overflow: hidden;
}

.services-header {
    padding: 40px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
}

.services-title {
    font-size: 3vw;
    font-weight: 700;
    color: rgba(82, 82, 82, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 5vw;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
}

.service-item {
    padding: 2vw;
    padding-bottom: 4vw;
    position: relative;
    /* Улучшенная анимация перехода */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 17vw;
    background: rgba(245, 245, 245, 0.72);
    transform: scale(1);
    /* Добавляем начальную тень */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* Убираем границы, так как они мешают эффекту */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Добавляем transform-origin для более естественного масштабирования */
    transform-origin: center;
  }

.service-item:nth-child(3n) {
    border-right: none;
}

.service-item:nth-child(n+7) {
    border-bottom: none;
}

.service-item:hover {
    background: #ffffff;
    /* Увеличиваем масштаб и поднимаем карточку */
    transform: scale(1.05) translateY(-8px);
    /* Более выраженная тень */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    /* Поднимаем z-index для отображения поверх других карточек */
    z-index: 10;
    /* Добавляем границу при наведении */
  }

.service-header {
    display: flex;
    gap: 6vw;
    align-items: center;
}

.service-icon {
    width: 8.5vw;
    flex-shrink: 0;
}

.service-icon img{
    width: 100%;
}

.service-title {
    font-size: 1.3vw;
    font-weight: 600;
    color: rgba(52, 186, 236, 1);
    line-height: 1.3;
    margin: 0;
}

.service-description {
    list-style: none;
    padding: 0;
}

.service-description li {
    color: #64748b;
    font-size: 0.9vw;
    line-height: 1.5;
    margin-bottom: 0.5vw;
    padding-left: 0.7vw;
    position: relative;
}

.service-description li::before {
    content: '•';
    color: #000000;
    font-weight: bold;
    position: absolute;
    left: 0;
}


.about-section {
    margin-top: 2vw;
}

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


.about-title {
    font-size: 2.2vw;
    font-weight: 500;
    color: #525252;
    margin-bottom: 30px;
    text-transform: uppercase;
}


.about-text p {
    font-size: 1vw;
    color: #64748b;
    margin-bottom: 1.2vw;
    line-height: 1.7;
}

.stats-container {
    display: flex;
    gap: 4vw;
    margin-bottom: 5vw;
    justify-content: space-between;
    margin-left: 4vw;
}

.stat-circle {
    text-align: center;
    position: relative;
    width: 10vw;
    height: 10vw;
}

.circle_img{
    z-index: -1;
    position: absolute;
    width: 10vw;
}

.circle_img img{
    width: 100%;
}



.circle-progress{
    color: rgba(82, 82, 82, 1);
    font-size: 3vw;
    font-weight: 700;
    margin-top: 2.5vw;
}

.stat-label {
    font-size: 0.8vw;
    color: #64748b;
    font-weight: 500;
}

.mission-section {
    margin-bottom: 40px;
}

.mission-section h3 {
    font-size: 1.3rem;
    color: #525252;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-section p {
    color: #64748b;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(73, 190, 235, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h4 {
    font-size: 1rem;
    color: #49BEEB;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-content p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
}

.about-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.map{
    width: 47vw;
}

.map img{
    width: 100%;
}

.mission {
    padding: 4vw 0;

}

.mission-content {
    display: flex;
    gap: 4vw;
    justify-content: space-between;
}

.mission-icons {
    display: flex;
    gap: 0.8vw;
}

.mission-icons-block{
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.mission-icons-item {
    margin-bottom: 0.8vw;
    width: 14vw;
    display: flex;
    flex-direction: column;
    gap: 0.8vw;
}

.mission-icons-item_wrapper {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    padding: 0 2vw 0 2vw;
    background: white;
    border-radius: 0.5vw;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding-bottom: 3vw;
}

.mission-icons-item-icon {
    width: 4vw;
    padding-top: 1vw;
}

.mission-icons-item-icon img {
    width: 100%;
    height: 100%;
}

.mission-icons-item-text {
    font-size: 0.75vw;
    color: #525252;
    font-weight: 300;
    line-height: 1.4;
}

.mission_info {
    width: 50vw;
    margin-left: 4vw;
}

.mission_info-title {
    margin-bottom: 3vw;
}

.mission_info-head {
    font-size: 1.2vw;
    font-weight: 400;
    color: rgba(82, 82, 82, 1);
    margin-bottom: 1vw;
}

.mission_info-text {
    font-size: 1vw;
    color: rgba(82, 82, 82, 1);
    line-height: 1.6;
    font-weight: 400;
}

.mission_info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 0vw;
}

.mission_info-grid-item {
    padding-bottom: 3vw;
}



.mission_info-grid-item-head {
    font-size: 1vw;
    font-weight: 400;
    color: rgba(52, 186, 236, 1);
    margin-bottom: 0.8vw;
}

.mission_info-grid-item-text {
    font-size: 0.9vw;
    color: rgba(82, 82, 82, 1);
    line-height: 1.5;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 1vw;
    margin-left: -1.3vw;
}

.mission_info-grid-item-text img{
    width: 0.3vw;
    height: 0.3vw;
}
.partners{
    position: relative;
    margin-top: 5vw;
    overflow: hidden;
    padding-bottom: 4vw;
}

.partners_img{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 44vw;
}

.partners_img img{
    width: 100%;
    height: 100%;
}

.partners_wrapper{
    display: flex;
    flex-direction: column;
    width: 65%;
    margin: 0 auto;
    padding-top: 3vw;
    gap: 1vw;
}

.partners_line{
    display: flex;
    gap: 1vw;
    align-items: center;
    justify-content: space-between;
}

.partners_item{
    width: 10vw;
}

.partners_item img{
    width: 100%;
}

.partners_head{

    text-align: center;
    font-size: 1.7vw;
    font-weight: 400;
    color: rgba(82, 82, 82, 1);
    text-transform: uppercase;
    padding-bottom: 3vw;
}
footer{
    background: rgba(55, 55, 55, 1);
    display: flex;
    flex-direction: column;
    padding-bottom: 2vw;
}
.footer_wrapper{
    display: flex;
    gap: 2vw;
    padding: 3.5vw 0 2vw 0;
    justify-content: space-between;
}

.footer_right{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.footer_left{
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.footer_links{
    margin-top: 2vw;
}

.footer_info{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 1vw;
    padding-top: 0;
    margin-top: -3vw;
    width: 20vw;
}

.policy, .c2025{
    font-size: 0.8vw;
    font-weight: 400;
    color: rgba(255, 253, 253, 1);
}

.c2025{
    font-size: 0.9vw;
}


.footer_logo_company{
    
    width: 86%;
    margin: 0 auto;
    
}
.footer_logo_company img{
    width: 3.5vw;
}

.policy_block{
    display: flex;
    flex-direction: column;
    gap: 2vw;
    padding: 4vw 0 4vw 0;
}

@keyframes fadeInDot {
    to {
        opacity: 1;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item:nth-child(3n) {
        border-right: 1px solid #e2e8f0;
    }

    .service-item:nth-child(2n) {
        border-right: none;
    }
    
}



.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }
.service-item:nth-child(7) { animation-delay: 0.7s; }
.service-item:nth-child(8) { animation-delay: 0.8s; }
.service-item:nth-child(9) { animation-delay: 0.9s; }
.desktop{
    display: block;
}
.mobile{
    display: none;
}
@media (max-width: 768px) {
    .desktop{
        display: none;
    }
    .mobile{
        display: block;
    }
    .container{
        width: 86%;
    }
    header{
        position: fixed;
        background: white;
        width: 100%;
        z-index: 50;
    }
    .header_mobile{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4vw 0 4vw 0;
        
    }

    .header_mobile_logo{
        width: 20vw;
    }
    .header_mobile_open{
        width: 9vw;
    }
    .header_mobile_logo img, .header_mobile_open img{
        width: 100%;
    }
    .hero_mobile img{
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    .policy_block{
        display: flex;
        flex-direction: column;
        gap: 2vw;
        padding: 25vw 0 4vw 0;
    }
    
    .hero_mobile {
        position: relative;
        height: 123vw;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        overflow: hidden;
        padding-top: 10vw;
    }

    .hero_mobile::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(270.06deg, rgba(20, 27, 40, 0) -93.9%, rgba(6, 37, 83, 0.65) 101.07%);
        z-index: 0; 
    }

    .hero-content {
        color: white;
        z-index: 1; 
        position: relative; 
    }
    
    .hero-title {
        font-size: 7vw;
        font-weight: bold;
        line-height: 1.2;
        
    }
    
    .hero-subtitle {
        font-size: 5.5vw;
        font-weight: 300;
        opacity: 0.9;
        font-style: italic;
        margin-top: 5vw;
    }
    
    .cta-button {
        background: rgba(52, 186, 236, 1);
        color: white;
        padding: 4vw 5vw;
        border: none;
        border-radius: 4vw;
        font-size: 5vw;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        margin-top: 10vw;
    
    }
    
    .cta-button:hover {
        background: rgba(32, 145, 187, 1);
    }

    .services-container {
        margin: 0 auto;
        background: rgba(245, 245, 245, 0.72);
        overflow: hidden;
        padding-top: 15vw;
    }
    
    .services-header {
        padding: 10vw 0 10vw 0;
        background: unset;
    }
    
    .services-title {
        font-size: 8vw;
        font-weight: 700;
        color: rgba(82, 82, 82, 1);
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .services-grid {
        display: flex;
        flex-direction: column;
        width: 88%;
        margin: 0 auto;
        gap: 5vw;
    }

    .service-item-decor{
        padding: unset;
        padding-bottom: unset;
        position: unset;
        min-height: unset;
        width: unset;
        display: flex;
        flex-direction: column;
        gap: unset;
    }
    
    .service-item {
        width: 100%;
        padding: 2vw;
        padding-bottom: unset;
        position: unset;
        transition: none;
        min-height: unset;
        background: rgba(245, 245, 245, 0.72);
        transform: unset;
        box-shadow: none;
        border: none;
        transform-origin: unset;
      }

      .service-item:hover {
        background: unset;
        /* Увеличиваем масштаб и поднимаем карточку */
        transform:unset;
        /* Более выраженная тень */
        box-shadow: unset;
        /* Поднимаем z-index для отображения поверх других карточек */
        z-index: unset;
        /* Добавляем границу при наведении */
      }
    
    .service-header {
        display: flex;
        gap: 6vw;
        align-items: center;
        justify-content: space-between;
        width: 92%;
        margin: 0 auto;
    }

    .service-item:nth-child(3n) {
        border-right: none;
    }
    
    .service-item:nth-child(n+7) {
        border-bottom: none;
    }
    
    
    .service-icon {
        width: 20vw;
        flex-shrink: unset;
    }
    
    .service-icon img{
        width: 100%;
    }
    
    .service-title {
        font-size: 6vw;
        font-weight: 600;
        color: rgba(52, 186, 236, 1);
        line-height: 1.3;
        margin: 0;
    }
    
    .service-description {
        list-style: none;
        padding: 0;
        padding-top: 4vw;
        
    }
    
    .service-description li {
        color: #64748b;
        font-size: 4.3vw;
        line-height: 1.5;
        margin-bottom: 3vw;
        padding-left: 3vw;
        position: relative;
        font-weight: 300;
    }
    
    .service-description li::before {
        content: '•';
        color: #000000;
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    .about-section {
        padding-top: 18vw;
    }
    
    .about-content {
        flex-direction: column;
    }

    .about-left{
        display: flex;
        flex-direction: column;
        gap: 6vw;
    }
    
    
    .about-title {
        font-size: 6vw;
        font-weight: 500;
        margin-bottom: unset;
        text-align: center;
        text-transform:capitalize ;
    }
    
    
    .about-text p:first-child {
        font-size:4.4vw;
        color: rgba(82, 82, 82, 1);
        margin-bottom: 4vw;
        line-height: unset;
        font-weight: 400;
    }
    .about-text p:last-child {
        font-size:4.4vw;
        color: #64748b;
        margin-bottom: 4vw;
        line-height: unset;
        font-weight: 300;
    }
    
    .stats-container {
        display: flex;
        gap: 8vw;
        margin-bottom: 5vw;
        justify-content: space-between;
        margin-left: 4vw;
    }
    
    .stat-circle {
        text-align: center;
        position: relative;
        width: 25vw;
        height: 25vw;
    }
    
    .circle_img{
        z-index: -1;
        position: absolute;
        width: 25vw;
    }
    
    .circle_img img{
        width: 100%;
    }
    
    
    
    .circle-progress{
        color: rgba(82, 82, 82, 1);
        font-size: 7vw;
        font-weight: 700;
        margin-top: 5.5vw;
    }
    
    .stat-label {
        font-size: 2.6vw;
        color: #64748b;
        font-weight: 500;
    }.about-right {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .map{
        width: 100%;
    }
    
    .map img{
        width: 100%;
    }
    
    
    .mission {
        padding: 4vw 0;
    
    }
    
    .mission-content {
        display: flex;
        gap: 4vw;
        justify-content: space-between;
    }
    
    .mission-icons {
        display: flex;
        gap: 0.8vw;
    }
    
    .mission-icons-block{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    
    .mission-icons-item {
        margin-bottom: 0.8vw;
        width: 14vw;
        display: flex;
        flex-direction: column;
        gap: 0.8vw;
    }
    
    .mission-icons-item_wrapper {
        display: flex;
        flex-direction: column;
        gap: 2vw;
        padding: 0 2vw 0 2vw;
        background: white;
        border-radius: 0.5vw;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding-bottom: 3vw;
    }
    
    .mission-icons-item-icon {
        width: 4vw;
        padding-top: 1vw;
    }
    
    .mission-icons-item-icon img {
        width: 100%;
        height: 100%;
    }
    
    .mission-icons-item-text {
        font-size: 0.75vw;
        color: #525252;
        font-weight: 300;
        line-height: 1.4;
    }
    
    .mission_info {
        width: 50vw;
        margin-left: 4vw;
    }
    
    .mission_info-title {
        margin-bottom: 3vw;
    }
    
    .mission_info-head {
        font-size: 1.2vw;
        font-weight: 400;
        color: rgba(82, 82, 82, 1);
        margin-bottom: 1vw;
    }
    
    .mission_info-text {
        font-size: 1vw;
        color: rgba(82, 82, 82, 1);
        line-height: 1.6;
        font-weight: 400;
    }
    
    .mission_info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 0vw;
    }
    
    .mission_info-grid-item {
        padding-bottom: 3vw;
    }
    
    
    
    .mission_info-grid-item-head {
        font-size: 1vw;
        font-weight: 400;
        color: rgba(52, 186, 236, 1);
        margin-bottom: 0.8vw;
    }
    
    .mission_info-grid-item-text {
        font-size: 0.9vw;
        color: rgba(82, 82, 82, 1);
        line-height: 1.5;
        font-weight: 300;
        display: flex;
        align-items: center;
        gap: 1vw;
        margin-left: -1.3vw;
    }
    
    .mission_info-grid-item-text img{
        width: 0.3vw;
        height: 0.3vw;
    }

    .marquee-container {
        width: 100%;
        overflow: hidden;
        background: #f5f5f5;
        padding: 20px 0;
        position: relative;
        
        padding-bottom: 10vw;
      }
      
      .marquee-track {
        padding-top: 8vw;
        display: flex;
        width: max-content;
        animation: scroll 30s linear infinite;
        will-change: transform;
      }
      
      .marquee-track:hover {
        animation-play-state: running !important;
      }
      
      .logo_marquee {
        height: 10vw;
        width: auto;
        margin: 0 5vw;
        object-fit: contain;
        pointer-events: none;
        user-select: none;
      }
      
      @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
      }

      .partners_head{
        text-align: center;
        font-size:4.5vw;
        font-weight: 500;
        color: rgba(82, 82, 82, 1);
        text-transform: unset;
        padding-bottom: 6vw;
    }
    .hero{
        display: none;
    }

    .mission_info{
        width: 100%;
        margin-left: unset;
    }
    .mission_info-text{
        font-size: 4.2vw;
        margin-top: 5vw;
    }
    .mission_info-head{
        font-size: 6vw;
        text-align: center;
        font-weight: 500;
    }

    .mission_info-grid{
        display: flex;
        flex-direction: column;
        gap: 5vw;
        margin-top: 5vw;
    }
    .mission_info-grid-item{
        padding-bottom: unset;
        gap: 2vw;
        display: flex;
        flex-direction: column;
    }
    .mission_info-grid-item-head{
        font-size: 4.2vw;
        margin-left: 2vw;
    }
    .mission_info-grid-item-text{
        font-size: 3.6vw;
        gap: 2vw;
        align-items: baseline;
    }
    .mission_info-grid-item-text img{
        width: 1.5vw;
        height: unset;
        
    }

    .footer_mobile{
        display: flex;
        flex-direction: column;
        gap: 2vw;
        padding-top: 10vw;
    }
    .policy{
        font-size: 3.5vw;
    }
    .footer_links{
        display: flex;
        flex-direction: column;
        gap: 5vw;
        margin-top: 5vw;
    }

    .header_desktop_mp_item{
        font-size: 4.2vw;
        gap: 2vw;
    }

    .header_desktop_mp_item img{
        width: 5vw;
    }

    .footer_info{
        display: flex;
        flex-direction: column;
        gap: 1vw;
        padding-top: 5vw;
        padding-bottom: 5vw;
        width: unset;
    }
    .c2025{
        font-size: 4vw;
        font-weight: 400;
    }

    .footer_info .policy{
        font-size: 4.2vw;
        font-weight: 400;
    }
    
}

