@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@100;200;300;400;500;600;700;800;900&display=swap");
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html[lang="ru"] * {
    font-family: "Manrope", sans-serif;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    max-height: max-content;
    position: relative;
    overflow-x: hidden;
}

.p-rel {
    position: relative;
}

.container {
    /* max-width: 1352px; */
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.container-sm {
    max-width: 848px;
    margin: 0 auto;
    width: 100%;
}

.container-lg {
    max-width: 1328px;
    margin: 0 auto;
    width: 100%;
}

.container-xl {
    max-width: 1384px;
    margin: 0 auto;
    width: 100%;
}

.container-header {
    max-width: 1352px;
    margin: 0 auto;
    width: 100%;
}

.pagination {
    margin-top: 64px;
}

.pagination ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.pagination li a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination li {
    color: #1d3c75;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    display: flex;
    cursor: pointer;
    justify-content: center;
    width: 40px;
    height: 40px;
    align-items: center;
}
.pagination li:hover {
    color: #2323f4;
}
.pagination li.active {
    color: #2323f4;
    font-weight: 600;
}
.pagination li.disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: not-allowed;
}

.border-gradient {
    border: 1px solid;
    border-image-slice: 1;
    border-width: 1px;
}

.border-gradient-blue {
    border-image-source: linear-gradient(to left, #90c7f7b8, #163ccb00);
}

@media (min-width: 1540px) and (max-width: 1980px) {
    .container-header {
        max-width: 1600px;
    }

    .container-lg {
        max-width: 1500px;
    }

    .container-xl {
        max-width: 1600px;
    }

    .container {
        max-width: 1500px;
    }
}

/* Tablet (768px - 1024px) üçün */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }

    .container-sm {
        padding: 0 16px;
    }

    .container-lg {
        padding: 0 16px;
    }

    .container-xl {
        padding: 0 16px;
    }
}

/* Mobil (0 - 767px) üçün */
@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .container-sm {
        padding: 0 16px;
    }

    .container-lg {
        padding: 0 16px;
    }

    .container-xl {
        padding: 0 16px;
    }
}

main {
    position: relative;
    /* overflow-x: hidden; */
}

header {
    color: white;
    /* padding: 40px; */
    /* padding: 24px 44px; */
    padding: 24px 44px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    background: #ffffff0f;
    backdrop-filter: blur(14.199999809265137px);
    border: 1px solid #fff6f68f;
    padding: 10px 80px 10px 36px;
    z-index: 10;
    position: relative;
    cursor: pointer;
}

.logo {
    height: 80px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 52px;
}

.nav-links .active > a {
    color: #3f82ff;
}

.nav-links li a {
    color: #1d3c75;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
}

.nav-links li a img {
    margin-left: 12px;
}

.nav-links li a:hover {
    background: linear-gradient(
        90deg,
        #3535ee -34.37%,
        #292ef4 -10.02%,
        #3c52f6 65.95%,
        #5581f9 168.23%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: white;
}

/* Responsiv (mobil) menyu */
@media (max-width: 992px) {
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #222;
        width: 200px;
        padding: 10px;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    #hamburger {
        display: block;
    }

    .navbar-wrapper {
        padding: 8px 16px;
    }
}

/* DROPDOWN STIL */
.dropdown {
    position: relative;
}

.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 72px;
    /* boşluğu doldurur */
    pointer-events: auto;
}

@media (max-width: 992px) {
    .dropdown::after {
        content: none;
    }
}

.dropdown-menu {
    list-style: none;
    position: absolute;
    top: 72px;
    left: 0px;
    display: none;
    flex-direction: column;
    min-width: 184px;
    z-index: 999;
    padding: 16px 20px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    border-radius: 8px;
    background: transparent;
}
.dropdown-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    backdrop-filter: blur(100px);
    /* background: rgba(255, 255, 255, 0.17); */
    background: rgb(226 237 250);
    border: 0.5px solid #ffffff;
    border-radius: 8px;
}
.dropdown-menu > li > a {
    color: #1e54b8;
}
html[lang="ru"] .dropdown-menu > li > a {
    font-size: 15px;
}
.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown.active img {
    filter: brightness(0) saturate(100%) invert(28%) sepia(94%) saturate(6723%)
        hue-rotate(243deg) brightness(93%) contrast(101%);
}

.dropdown:hover img {
    transform: rotate(180deg);
    filter: brightness(0) saturate(100%) invert(28%) sepia(94%) saturate(6723%)
        hue-rotate(243deg) brightness(93%) contrast(101%);
}

.dropdown:hover > a {
    background-image: linear-gradient(
        to right,
        #2f3af4,
        #3344f5,
        #374df6,
        #3c55f7,
        #425df7
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dropdown-menu li {
    margin-bottom: 12px;
}

.dropdown-menu li:nth-last-child(1) {
    margin-bottom: 0px;
}

.dropdown-menu li:hover {
    background-image: linear-gradient(
        to right,
        #2f3af4,
        #3344f5,
        #374df6,
        #3c55f7,
        #425df7
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop hover üçün açılır */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: flex;
    }
}

/* Mobil açılma üçün JS istifadə olunur */
.nav-links.show .dropdown-menu {
    position: static;
}

.navbar-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-right img {
    margin-left: 48px;
    height: 18px;
}

.current-lang {
    color: #1d3c75;
    font-size: 16px;
}

.lang-options {
    list-style: none;
    display: none;
    position: absolute;
    top: 72px;
    right: -16px;
    border-radius: 8px;
    z-index: 10;
    padding: 16px 20px;
    background: transparent;
}
.lang-options::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    backdrop-filter: blur(100px);
    /* background: rgba(255, 255, 255, 0.17); */
    background: rgb(226 237 250);
    border: 0.5px solid #ffffff;
    border-radius: inherit;
}
.lang-options li {
    margin-bottom: 12px;
}

.lang-options li:last-child,
.lang-options li:only-child {
    margin-bottom: 0;
}

.lang-options li a {
    color: #1e54b8;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.lang-options li a:hover {
    background-image: linear-gradient(
        to right,
        #2f3af4,
        #3344f5,
        #374df6,
        #3c55f7,
        #425df7
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dropdown-lang {
    position: relative;
    z-index: 1000;
}

/* Açıq halda göstərmək üçün */
.dropdown-lang.open .lang-options {
    display: block;
}

@media (min-width: 992px) {
    .dropdown-lang:hover .lang-options {
        display: block;
    }

    .dropdown-lang::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 72px;
        pointer-events: auto;
    }
}

/* Drawer əsas konteyneri */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    /* Tam genişlik */
    height: 100%;
    background: linear-gradient(189.17deg, #e0ecfb 1.35%, #dbe9f3 57.53%);
    transform: translateX(-100%);
    /* Soldan gizlənmiş vəziyyət */
    transition: transform 0.4s ease;
    z-index: 9999;
    padding: 40px 24px;
    flex-direction: column;
    display: none;
}

/* Açıldıqda (soldan görünür) */
.mobile-drawer.open {
    display: flex;
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-drawer .dropdown-menu {
    display: none;
}

.mobile-drawer .dropdown-menu.open {
    display: flex;
}

.mobile-drawer .dropdown:hover .dropdown-menu {
    display: none;
}

.mobile-drawer .dropdown:hover .dropdown-menu.open {
    display: flex;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.dropdown-icon.open {
    transform: rotate(180deg);
}

/* Close ikonu */
.drawer-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

/* Nav içindəkilər */
.mobile-drawer .drawer-nav-links {
    align-items: center;
    margin-top: 56px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    list-style: none;
}

.mobile-drawer .drawer-nav-links li {
    margin-top: 44px;
}

.mobile-drawer .drawer-nav-links li:nth-last-child(1) {
    margin-top: 44px;
}

.mobile-drawer .drawer-nav-links li a {
    color: #1e54b8;
    display: flex;
    align-items: center;
}

.mobile-drawer .drawer-nav-links li a img {
    margin-left: 4px;
    filter: brightness(0) saturate(100%) invert(21%) sepia(99%) saturate(1986%)
        hue-rotate(212deg) brightness(88%) contrast(87%);
}
.drawer-header img {
    filter: brightness(0) saturate(100%) invert(21%) sepia(99%) saturate(1986%)
        hue-rotate(212deg) brightness(88%) contrast(87%);
}
.mobile-drawer .divider {
    margin-top: 56px;
    margin-bottom: 56px;
}

.mobile-drawer .dropdown-menu {
    background: unset;
    position: static;
}

.drawer-page-links {
    list-style: none;
    margin-top: 116px;
}

.drawer-page-links li:nth-last-child(1) {
    margin-top: 9px;
}

.drawer-page-links a {
    color: #1e54b8;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
}

.drawer-footer .copyright {
    margin-top: 28px;
    margin-bottom: 40px;
    color: #1e54b8;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

.drawer-footer .social-icons a {
    background-color: #1e54b8;
}

/* common */
.section-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-header {
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    background: var(
        --Gradient-Button-Default,
        linear-gradient(208deg, #2563eb -23.91%, #002b7a 88%)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
html[lang="en"] .section-header {
    line-height: 58px;
}

.section-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #00467a;
    margin-top: 20px;
}

.color-gradient-more {
    font-size: 72px;
    background: linear-gradient(90.36deg, #1919ff -163.56%, #6593ff 93.08%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #ffffff;
}

.color-gradient-info {
    font-size: 72px;
    color: #2979d9;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    transition: background 0.5s ease;
}

.color-gradient-info span {
    margin-right: 8px;
    /* sabit qalsın */
}

.color-gradient-info.details img {
    transition: transform 0.3s ease;
    /* yalnız hərəkət */
}

.color-gradient-info.details:hover {
    background: linear-gradient(64.16deg, #2323f4 -8.92%, #5581f9 68.15%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.color-gradient-info.details:hover img {
    transform: translateX(6px);
    /* şəkil sağa hərəkət */
}

.search-box {
    display: none;
    position: absolute;
    right: 80px;
    bottom: -72px;
    align-items: center;
    justify-content: space-between;
    width: 450px;
    height: 50px;
    border-radius: 12px;
    padding: 12px 20px;
    background: transparent;
    border: 0.5px solid #ffffff;
}
.search-box::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    backdrop-filter: blur(100px);
    background: rgba(255, 255, 255, 0.17);
    border-radius: inherit;
    border-radius: inherit;
}
.search-box.active {
    display: flex;
}

.search-box button {
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.input-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-box img {
    margin-right: 16px;
}

.search-box input {
    color: #020923;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    background: transparent;
    width: 100%;
    min-width: 320px;
    border: 0;
    outline: 0;
}

.search-box input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    /* bg şəffaf qalsın */
    -webkit-text-fill-color: #fff !important;
    /* text ağ */
    caret-color: #fff !important;
    transition: background-color 9999s ease-in-out 0s;
    background-color: transparent !important;
    box-shadow: 0 0 0px 1000px transparent inset !important;
}

.search-box input:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.search-box input::placeholder {
    color: #4c4c6e80;
    opacity: 1;
}
.drawer-search-image {
    display: none;
}
@media (max-width: 992px) {
    .drawer-search-box {
        display: none;
        position: unset;
        margin-top: 24px;
        padding: 20px 16px;
        width: 100%;
        border: 1px solid rgb(101 147 255 / 30%);
        background-image: unset;
    }
    .drawer-search-box .search_close {
        filter: invert(0.5);
    }
    .drawer-search-image {
        display: none;
        margin: auto;
        margin-top: 204px;
    }
    .drawer-search-box input {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .section-header {
        font-size: 32px;
        line-height: 40px;
    }

    .section-description {
        font-size: 18px;
        line-height: 26px;
    }
}

/* HERO SECTION BEGIN */
.hero {
    margin-top: 140px;
}

.hero-content {
    color: #1d3c75;
}

.hero-content-title {
    width: 648px;
}

.hero-content-subtitle {
    width: 648px;
    margin-bottom: 89px;
}

@media (max-width: 768px) {
    .hero-content-subtitle {
        margin-bottom: 38px;
    }
}

.hero-content-subtitle strong {
    font-weight: 500;
}
.hero-content h1 {
    color: #1d3c75;
    font-size: 64px;
    font-weight: 300;
    line-height: 65px;
    z-index: 88;
    position: relative;
}

.hero-content p {
    font-size: 24px;
    font-weight: 300;
    line-height: 34px;
    margin-top: 28px;
    position: relative;
    z-index: 88;
}

.hero-image {
    z-index: -1;
}

.hero-image img {
    position: absolute;
    top: 0;
    right: 0;
}

.hero-video video {
    width: 100%;
}

.hero-video img {
    width: 100%;
    height: 100%;
}

.hero-content .more {
    border-radius: 80px;
    background: none;
    /* artıq background istifadə etmirik */
    padding: 3px;
    box-shadow: 0 0 7.9px 0 #4659d2;
    display: inline-block;
    overflow: hidden;
    /* radius üçün vacibdir */
    z-index: 2;
    transition: background 0.3s ease, color 0.3s ease;
}
.hero-content .more:hover .image {
    background: linear-gradient(
        180deg,
        rgba(25, 33, 95, 0.3) -20.97%,
        rgba(13, 39, 224, 0.3) 107.26%
    );
}

.hero-video {
    width: 90%;
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 768px) {
    .hero-video {
        width: 700px;
        top: -120px;
        right: -60px;
    }
}

/* HERO SECTION END */

/* ABOUT SECTION BEGIN */
.about {
    /* margin-top: 290px; */
    margin-top: 250px;
    position: relative;
}

.about-texture {
    position: absolute;
    top: 80%;
    right: 0;
    opacity: 54%;
}

@media (max-width: 768px) {
    .about-texture {
        top: 15%;
        right: -100px;
    }
}

.about .section-header {
    margin-top: 12px;
}

.about .texture {
    top: -100%;
    width: 504px;
    height: 528px;
}

.about-content {
    width: 588px;
}

.about-video {
    width: 596px;
    height: 406px;
}

.about-video video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-overlay {
    position: relative;
    height: 100%;
}

.video-overlay-color {
    position: absolute;
    top: 0px;
    border-radius: 8px;
    left: 0;
    background: linear-gradient(
        0deg,
        rgba(72, 88, 230, 0.2) 0%,
        rgba(72, 88, 230, 0.2) 100%
    );
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.program-content-header .section-header,
.speakers .section-header {
    margin-top: 12px;
    background: linear-gradient(208deg, #2563eb -23.91%, #002b7a 88%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 1540px) and (max-width: 1980px) {
    .about {
        margin-top: 400px;
    }
}

@media (max-width: 1024px) {
    main {
        overflow-x: hidden;
    }
    .about .section-wrapper {
        display: block;
    }

    .about-content {
        width: 100%;
    }

    .about-video {
        margin-top: 48px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about {
        margin-top: 56px;
    }

    .about-content {
        width: 80%;
    }

    .about .section-wrapper {
        display: block;
    }

    .about-video {
        margin-top: 48px;
    }

    .about-video video {
        width: 100%;
        height: 100%;
    }
}

.section-info-text span {
    margin-left: 8px;
}

.about-more {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.about-more-second {
    display: none;
}

@media (max-width: 768px) {
    .about-content .about-more {
        display: none;
    }

    .about-more-second {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        font-size: 20px;
        color: #3f82ff;
    }
}

/* ABOUT SECTION END */

/* TARGET BEGIN */
.target {
    margin-top: 137px;
    min-height: 836px;
}

@media (max-width: 768px) {
    .target {
        margin-top: 60px;
    }
}

.target .texture-left {
    top: 30%;
    left: -5%;
    width: 635px;
    height: 635px;
}

.target .section-header {
    margin-top: 12px;
}

.target-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-shrink: 0;
    color: #ffffff;
    margin-top: 40px;
    flex-wrap: wrap;
}

.target-box {
    gap: 10px;
    flex: 1 0 0;
    padding: 32px 26px 44px 26px;
    border: 1px solid transparent;
    /* Şəffaf border — gradyan üçün zəruri */
    background: rgba(255, 255, 255, 0.38);
    border-radius: 16px;
    border: 1px solid #fff;
    backdrop-filter: blur(4.150000095367432px);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    /* min-height: 448px; */
}

.target-title span {
    margin-left: 12px;
}

.target-title {
    margin-top: 40px;
    color: #1d3c75;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.target-subtitle {
    color: #1d3c75;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin-top: 20px;
    height: 64px;
    max-width: 236px;
}

.target-content {
    color: #1d3c75;
    margin-top: 32px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    overflow: hidden;
}

/* gizli hissə bağlı olur */
.target-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
}

/* hover edilən box aşağı açılır */
.target-box:hover .target-hidden {
    max-height: 500px;
    opacity: 1;
    margin-top: 20px;
}

/* .target-hidden .divider {
    margin-top: 16px;
    margin-bottom: 12px;
    background: linear-gradient(45deg,
            rgba(53, 53, 238, 1) 0%,
            rgba(60, 82, 246, 1) 27%,
            rgba(85, 129, 249, 0.36) 100%);
    width: 100%;
    height: 0.5px;
} */

.target-description {
    color: #1e54b8;
    font-size: 16px;
    font-weight: 200;
    line-height: 24px;
}

.target-wrapper {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE və Edge */
}

.target-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari və Opera */
}

@media (min-width: 1540px) and (max-width: 1980px) {
    .target-hidden .divider {
        height: 0.8px;
    }
}

@media (max-width: 512px) {
    .target-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 30px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .target-box {
        flex: 0 0 85%;
        /* 1.2 box effekti */
        scroll-snap-align: start;
    }
    .about-content {
        width: 100%;
    }
}

@media (min-width: 513px) and (max-width: 768px) {
    .target-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 30px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .target-box {
        flex: 0 0 80%;
        /* 1.5 box effekti */
        scroll-snap-align: start;
        max-height: unset;
        min-height: 418px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .target-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 30px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .target-box {
        flex: 0 0 45%;
        /* 2.5 box effekti */
        scroll-snap-align: start;
    }
}

/* TARGET END */

/* PROGRAM BEGIN */
.program {
    margin-top: 64px;
}

.program .texture-left {
    width: 996px;
    height: 996px;
}

/* .program .texture {
    border-radius: 776px;
    background: rgba(20, 40, 118, 0.55);
    filter: blur(195.39999389648438px);
    width: 714px;
} */
.program .texture-left {
    top: -8%;
    left: -18%;
}

.program .texture-right {
    bottom: -58%;
    right: -70%;
    width: 1500px;
    height: 1500px;
}

.program-wrapper {
    border-radius: 16px;
    background: linear-gradient(
        170deg,
        rgba(160, 211, 255, 0.22) 5.1%,
        rgba(100, 183, 253, 0.22) 37.46%,
        rgba(0, 135, 250, 0.08) 94.69%
    );
    backdrop-filter: blur(2.6500000953674316px);
    border: 1px solid #fff;
    padding: 64px 84px 80px 84px;
    position: relative;
}

.program-content-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.pdf-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.pdf-download.mobile {
    justify-content: center;
    margin-top: 32px;
    display: none;
}

.show-all {
    display: none;
}

@media (max-width: 767px) {
    .program {
        margin-top: 72px;
    }

    .program-content-header {
        display: block;
    }

    .pdf-download.mobile {
        display: flex;
    }

    .show-all {
        display: flex;
        justify-content: center;
        color: #3f82ff;
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
        margin-top: 20px;
    }

    .show-all img {
        margin-left: 16px;
    }

    .program .texture {
        width: 100%;
    }
    .program-content-header .pdf-download.details {
        display: none;
    }
}

.pdf-download span {
    color: #3f82ff;
    margin-left: 16px;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.row {
    display: flex;
    border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
}

.row:hover > .time,
.row:hover > .event {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.42);
}

.time,
.event {
    background: rgba(255, 255, 255, 0.57);
    backdrop-filter: blur(4px);
    color: #3c4a7d;
    padding: 20px 66px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: start;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.time {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    flex: 0.24;
    justify-content: center;
}

.event {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin-left: 12px;
}

.event strong {
    font-weight: 500;
}

.event.bold {
    font-weight: 600;
}

@media (max-width: 768px) {
    .schedule .row {
        display: block;
        text-align: center;
    }

    .event {
        margin-left: 0;
        margin-top: 8px;
        margin-bottom: 16px;
        font-weight: 500;
        font-size: 18px;
    }

    .time,
    .event {
        display: block;
    }
}

/* PROGRAM END */

/* speakerS BEGIN */
.speakers {
    /* margin-top: 104px; */
    margin-top: 0px;
}
.speakers.page {
    margin-top: 104px;
}

.speaker-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
    color: #ffffff;
}

.speaker-box {
    flex: 0 0 calc(25% - 12px);
    position: relative;
    border-radius: 12px;
    max-height: 386px;
    overflow: hidden;
    border: 1px solid #fff;
}

.speaker-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    /* smooth effect */
}

.speaker-box .speaker-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.speaker-box .speaker-box-image {
    position: relative;
    z-index: 2;
}

.speaker-box:hover .speaker-box-image {
    cursor: pointer;
    transform: scale(1.1);
    /* zoom 10% */
}

.speaker-content-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
}

@media (max-width: 768px) {
    .speaker-content-title {
        font-size: 14px;
    }
}

.speaker-content-position,
.speaker-content-country {
    font-weight: 300;
    font-size: 12px;
    line-height: 20px;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .speaker-content-position,
    .speaker-content-country {
        font-size: 10px;
    }
}

.speaker-content-organization {
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    margin-top: 4px;
    color: #3f82ff;
}

@media (max-width: 768px) {
    .speaker-content-organization {
        font-size: 10px;
    }
}

.speaker-content {
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 99;
    background: linear-gradient(
        180deg,
        rgba(100, 100, 100, 0) 19.94%,
        rgba(14, 29, 46, 0.47) 99.92%
    );
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    width: 100%;
    padding: 24px;
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000000b3 15%,
        black 35%,
        black 100%
    );
}

@media (max-width: 768px) {
    .speaker-content {
        padding: 12px;
        padding-top: 40px;
    }
}

/* SPİKER RESPONSIVE SCROLL */
@media (max-width: 512px) {
    .speaker-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 30px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .speaker-wrapper::-webkit-scrollbar {
        display: none;
    }

    .speaker-box {
        flex: 0 0 85%;
        /* 1.2 box effekti */
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .speaker-box {
        outline: unset;
        max-height: unset;
    }

    .speakers {
        margin-top: -100px;
    }
    .speakers.page {
        margin-top: 68px;
    }

    .speakers .section-header {
        margin-top: 12px;
    }

    .speakers .section-description {
        font-size: 14px;
        line-height: 22px;
        margin-top: 8px;
    }
}

@media (min-width: 513px) and (max-width: 768px) {
    .speaker-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 30px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .speaker-wrapper::-webkit-scrollbar {
        display: none;
    }

    .speaker-box {
        flex: 0 0 80%;
        /* 1.5 box effekti */
        scroll-snap-align: start;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .speaker-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 30px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .speaker-wrapper::-webkit-scrollbar {
        display: none;
    }

    .speaker-box {
        flex: 0 0 45%;
        /* 2.5 box effekti */
        scroll-snap-align: start;
        outline: unset;
    }
}

/* speakerS END */

/* LINKS BEGIN */
.links {
    margin-top: 32px;
    position: relative;
    overflow: hidden;
}

.links::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(2, 11, 46, 0) 0%,
        rgba(50, 103, 203, 0.12) 0%,
        rgba(38, 78, 153, 0) 100%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.useful .links-text {
    margin-top: 112px;
    color: #254683;
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
}

.useful.media {
    margin-top: 86px;
}

.links .img-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: 5;
    left: -10%;
    top: -50%;
}

.links .divider {
    margin: 0;
}

.links-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
}

.link-item {
    padding: 55px 74px 48px 52px;
    border-radius: 12px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(3px);
    text-align: center;
}
.link-item img {
    height: 70px;
}
@media (max-width: 768px) {
    .links-wrapper {
        flex-direction: column;
    }

    .link-item {
        width: 100%;
    }
}

.link-item:hover {
    cursor: pointer;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(1.7999999523162842px);
}
.media .link-item {
    height: auto;
}

@media (max-width: 512px) {
    .links .img-bg {
        display: none;
    }

    .time,
    .event {
        padding: 20px;
    }
}

/* LINKS END */

/* AIM BEGIN */
.aim {
    margin-top: 208px;
    min-height: 544px;
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(181, 217, 248, 0.2) 12.58%,
        rgba(219, 233, 243, 0.048) 100%
    );
    padding-top: 56px;
    border-radius: 32px 32px 0 0;
}

.aim .aim-texture {
    position: absolute;
    top: 40%;
    right: 0;
    opacity: 50%;
}

@media (max-width: 768px) {
    .aim {
        margin-top: 55px;
    }

    .aim .aim-texture {
        top: 60%;
    }
}

.aim .texture {
    top: -54%;
    left: -30%;
}

.timeline-bar {
    background: rgba(190, 210, 247, 0.32);
    backdrop-filter: blur(2px);
    width: 100%;
    height: 8px;
    border-radius: 8px;
    margin-top: 36px;
    position: relative;
    border: 1px solid #fff;
}

.timeline-bar-fill {
    position: absolute;
    background: #2072d7;
    height: 8px;
    border-radius: 8px;
    width: calc(29% + 6px);
}

.timeline-content {
    display: flex;
    align-items: flex-start;
    /* Elementləri yuxarıdan hizala */
    gap: 42px;
    flex-shrink: 0;
    margin: 54px 20px 0px 20px;
    flex-wrap: wrap;
}

.timeline-content .timeline-item {
    flex: 0 1 calc(20% - 37px);
    position: relative;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(193, 215, 255, 0.37);
    outline: 6px solid #e4eff7;
    box-shadow: 0 0 0 0 rgba(123, 169, 255, 0.99);
    backdrop-filter: blur(1.149999976158142px);
    transition: background-color 0.2s ease;
    position: absolute;
    left: 48%;
    top: -62px;
}
.timeline-item .timeline-dot {
    display: none;
}

.timeline-dot:nth-child(1) {
    width: 12px;
    height: 12px;
    background-color: #bbcdff;
    top: -64px;
}

.timeline-bar .timeline-dot:nth-child(2),
.timeline-bar .timeline-dot:nth-child(3) {
    top: -2px;
    left: 9.5%;
    width: 12px;
    height: 12px;
    background-color: #bbcdff;
    outline: 6px solid #3f82ff94;
}

.timeline-bar .timeline-dot:nth-child(3) {
    left: 29%;
    /* top: 0px; */
}

.timeline-bar .timeline-dot:nth-child(4) {
    left: 49%;
    top: 0px;
}

.timeline-bar .timeline-dot:nth-child(5) {
    left: 68.5%;
    top: 0px;
}

.timeline-bar .timeline-dot:nth-child(6) {
    left: 88.5%;
    top: 0px;
}

.timeline-box {
    color: #15213d;
}

.timeline-box {
    padding: 16px;
    border-radius: 16px;
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #fff;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    backdrop-filter: blur(3px);
    color: #96a6b8;
}

.timeline-item.active .timeline-box {
    border: 1.5px solid #ffffff;
}
.timeline-item.current .timeline-box {
    border: 2px solid #fff;
    background: #2171d7;
    color: white;
}
.timeline-box .hidden-text {
    display: block;
    /* display: none əvəzinə */
    max-height: 0;
    /* Başlanğıcda gizli */
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 0;
    /* Başlanğıc margin sıfır */
    color: #3f82ff;
    transition: max-height 0.6s ease, margin-top 0.6s ease;
    /* həm height, həm margin smooth */
}
.timeline-item.active .timeline-box .hidden-text {
    text-decoration: underline;
}
.timeline-item.current .timeline-box .hidden-text {
    color: white;
}

.timeline-item.active .timeline-box:hover .hidden-text,
.timeline-item.current .timeline-box:hover .hidden-text {
    max-height: 100px;
    margin-top: 30px;
}

.timeline-box:hover {
    border: 1px solid #fff;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.58) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    backdrop-filter: blur(3px);
    color: #435c77;
    cursor: pointer;
}

.timeline-item.active .timeline-box {
    background: linear-gradient(
        180deg,
        rgba(224, 235, 255, 0.16) 37.64%,
        rgba(25, 100, 241, 0.16) 97.47%
    );
    color: #44597a;
}

.timeline-box span {
    font-size: 32px;
    font-weight: 600;
}

.timeline-box p {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    line-height: 24px;
}

.timeline-bar-mobile {
    display: none;
}

.timeline-bar-mobile-fill {
    display: none;
}

.timeline-item .timeline-box .timeline-box-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 992px) {
    .timeline-content {
        flex-direction: column;
        margin-left: 36px;
        flex-wrap: nowrap;
    }

    .timeline-item .timeline-dot {
        display: block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(193, 215, 255, 0.37);
        outline: 6px solid #e4eff7;
        box-shadow: 0 0 0 0 rgba(123, 169, 255, 0.99);
        backdrop-filter: blur(1.149999976158142px);
        transition: background-color 0.2s ease;
        position: absolute;
        left: -45px;
        top: 50%;
    }

    .timeline-item.active .timeline-dot {
        width: 12px;
        height: 12px;
        background-color: #bbcdff;
        top: 50%;
    }

    .timeline-wrapper {
        display: flex;
        margin-left: 16px;
        margin-top: 60px;
    }

    .timeline-bar {
        display: none;
    }

    .timeline-bar-mobile {
        width: 5px;
        height: -webkit-fill-available;
        display: block;
        position: relative;
        border-radius: 8px;
        background: linear-gradient(
            90deg,
            rgba(63, 130, 255, 0.17) 0%,
            rgba(6, 29, 71, 0.17) 100%
        );
    }

    .timeline-bar-mobile-fill {
        width: 5px;
        height: 33%;
        left: 0;
        display: block;
        background: linear-gradient(90deg, #8db5ff 0%, #395a99 129.28%);
        position: absolute;
    }

    .timeline-content .timeline-item {
        width: 214px;
    }
}

/* AIM END */
@media (max-width: 768px) {
    header {
        padding: 8px 16px;
        margin-top: 20px;
    }
    .hero-content .more {
        color: #c9c9ff;
    }
    .timeline-box {
        color: rgb(28 46 77 / 70%);
    }
    /* .timeline-content .timeline-item {
        outline: 6px solid #0f1f5a;
    } */
    .color-gradient-more {
        font-size: 20px;
    }
}
/* NEWS BEGIN */
.news {
    margin-top: 160px;
}

.news .texture-left {
    top: 40%;
    left: -24%;
    opacity: 0.55;
    width: 756px;
    height: 756px;
}

.news .texture-right {
    bottom: 32%;
    right: -12%;
    opacity: 0.34;
    width: 756px;
    height: 756px;
}

.news-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}

.news-wrapper .news-card {
    flex: 0 0 calc(25% - 18px);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: white;
    position: relative;
    transition: flex 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #fff;
    background: #f2f7fd;
    backdrop-filter: blur(2px);
}

.news-wrapper .news-card.first {
    flex: 0 0 calc(50% - 24px);
    /* First card is larger initially */
}
.news-card-img-wrapper {
    height: 208px;
}
.news-card-img-wrapper img {
    min-height: 208px;
}
.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Əlavə et */
    height: 100%; /* Əlavə et, card tam hündürlüyü alsın */
}

.news-content-inner {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-content .date {
    color: #4197ff;
    font-size: 10px;
    font-weight: 400;
    line-height: 24px;
    background: rgba(255, 255, 255, 0.65);
    width: max-content;
    padding-inline: 12px;
    border-radius: 16px;
    border: 0.8px solid #d9d9d929;
}

.news-content h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 16px;
    background: var(
        --Gradient-Button-Default,
        linear-gradient(208deg, #2563eb -23.91%, #002b7a 88%)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-content p,
.news-content .news-content-inner {
    background: var(
        --Gradient-Button-Default,
        linear-gradient(208deg, #2563eb -23.91%, #002b7a 88%)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    margin-top: 8px;
}

.news-content a {
    display: flex;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    align-items: center;
    margin-top: 20px;
    /* margin-top: auto; */
    z-index: 2;
    gap: 8px;
}

.news-content .color-gradient-info {
    color: #3f82ff;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}
.news-content .color-gradient-info img {
    width: 16px;
    height: 11px;
}

.news .all-news-button {
    display: none;
}

@media (max-width: 768px) {
    .news .all-news-button {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-top: 28px;
    }
    .news-content h3 {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
}

/* 1024px - 2 cards layout */
@media (max-width: 1024px) {
    .news-wrapper {
        flex-wrap: wrap;
    }

    .news-wrapper .news-card.first {
        flex: 0 0 calc(100% - 24px);
    }

    .news-wrapper .news-card {
        flex: 0 0 calc(50% - 15px);
    }

    .news-wrapper:hover .news-card {
        flex: 0 0 calc(50% - 15px);
        /* Maintain size on hover */
    }

    .news-wrapper .news-card:hover {
        flex: 0 0 calc(100% - 24px);
        /* Hovered card takes full width */
    }
    .timeline-bar-fill {
        width: 104px;
    }
}

/* 1540px–1980px - Adjust text truncation */
@media (min-width: 1540px) and (max-width: 1980px) {
    .news-card.first .news-content-inner {
        -webkit-line-clamp: 4;
        min-height: 88px;
    }

    /* .news-wrapper .news-card:hover .news-content-inner {
        -webkit-line-clamp: 4;
    } */

    /* .news-wrapper .news-card.first:hover .news-content-inner {
        -webkit-line-clamp: 4;
    } */
}

/* 768px - Scrollable cards */
@media (max-width: 768px) {
    .news {
        margin-top: 72px;
    }
    .news-wrapper {
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 30px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .news-wrapper .news-card,
    .news-wrapper .news-card.first {
        flex: 0 0 80%;
        scroll-snap-align: start;
        min-width: 280px;
    }

    .news-wrapper:hover .news-card,
    .news-wrapper .news-card:hover {
        flex: 0 0 80%;
        /* No size change on hover for scrollable layout */
        transform: scale(1.05);
        /* Optional: slight scale for hover feedback */
    }

    .news-wrapper::-webkit-scrollbar {
        display: none;
    }

    .news-wrapper {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .news-content {
        padding: 20px 32px;
    }

    .news-content .date {
        margin-top: 0;
    }

    .pagination {
        margin-top: 40px;
    }
}

/* 512px - Narrower scroll */
@media (max-width: 512px) {
    .news-wrapper .news-card,
    .news-wrapper .news-card.first {
        flex: 0 0 90%;
        min-width: 260px;
    }

    .news-wrapper:hover .news-card,
    .news-wrapper .news-card:hover {
        flex: 0 0 90%;
        /* No size change on hover */
        transform: scale(1.05);
        /* Optional: slight scale for hover feedback */
    }
    .color-gradient-more {
        font-size: 14px;
    }
    .counter-wrapper {
        flex-wrap: nowrap;
    }
    .counter-wrapper span {
        margin: 0 0 32px 0;
    }
    .target-box {
        flex: 0 0 80%;
        /* 1.5 box effekti */
        scroll-snap-align: start;
        outline: unset;
        max-height: unset;
        min-height: 442px;
    }
}

/* NEWS END */

/* COUNTER BEGIN */
.counter {
    margin-top: 130px;
    position: relative;
}

.counter .texture {
    height: 640px;
    width: 507px;
    top: 0;
    left: 32%;
    filter: blur(120px);
}

/* .counter .img-bg {
    position: absolute;
    height: 596px;
    width: 100%;
    top: 0px;
    z-index: -1;
} */
.counter .program-content-header {
    justify-content: center;
}

.counter .about-content {
    width: unset;
    text-align: center;
}

.counter-wrapper {
    border-radius: 16px;
    padding: 55px 112px;
    max-width: 1052px;
    margin: 70px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    /* gap: 30px; */
    justify-content: center;
    align-items: center;
    position: relative;
    height: 284px;
    background-image: url("../images/textures/counter-bg.svg");
    background-repeat: no-repeat;
}

.counter-block {
    text-align: center;
    width: 74px;
    justify-items: center;
}

.counter-wrapper span {
    margin: 0 72px 32px 72px;
    color: #1263c4;
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
}

.counter-block h1 {
    color: #1263c4;
    font-size: 60px;
    font-weight: 300;
    line-height: 68px;
}

.counter-block .color-gradient-info {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 8px;
    color: #4197ff;
}

.counter-block #seconds {
    display: flex;
}

.counter-block #seconds .digit-container {
    width: 38px;
    height: var(--digit-height, 68px);
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.counter-block #seconds .digit-slider {
    display: flex;
    flex-direction: column;
}

.counter-block #seconds .digit {
    margin: 0;
    color: #1263c4;
    font-size: 60px;
    font-weight: 300;
    line-height: 68px;
    display: inline-flex;
    justify-content: center;
    width: 100%;
}

.counter-block #seconds .color-gradient-info {
    display: inline-flex;
    margin: 0;
    color: #1263c4;
    font-size: 60px;
    font-weight: 300;
    line-height: 68px;
    justify-content: center;
    width: 100%;
}

.flip {
    position: relative;
    height: 60px;
    overflow: hidden;
}

.flip-inner {
    display: block;
    font-size: 48px;
    font-weight: bold;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.flip-inner.animate {
    transform: translateY(-100%);
}

@media (max-width: 512px) {
    .counter-wrapper {
        gap: 10px;
    }

    .counter-block {
        display: inline-block;
    }

    .counter-block h1 {
        font-size: 28px;
    }

    .counter-wrapper span {
        font-size: 28px;
    }
}

/* COUNTER END */

/* FOOTER BEGIN */
footer {
    margin-top: 82px;
    margin-bottom: 28px;
    position: relative;
    color: #fff;
}

@media (max-width: 768px) {
    footer {
        color: #c8dbf3;
    }
}

@media (max-width: 768px) {
    footer .container-xl {
        padding: 0 8px;
    }
}

footer .texture {
    position: absolute;
    top: -46%;
    left: -46%;
}

.footer-wrapper {
    border-radius: 16px;
    background-color: #061142;
    padding: 54px 48px 32px 48px;
    overflow: hidden;
    background-image: url(assets/images/textures/footer-desktop.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    /* border qalınlığı */
    border-radius: 16px;
    background: linear-gradient(
        145deg,
        rgba(63, 130, 255, 1) 13%,
        rgba(216, 216, 216, 0.08) 19%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    top: 0.5px;
    left: -1.2px;
}

.footer-logo {
    width: 324px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .footer-top {
        gap: 40px;
    }
}

.footer-menu-wrapper {
    display: flex;
    gap: 80px;
}

@media (max-width: 768px) {
    .footer-menu-wrapper {
        gap: 24px;
    }
}

.footer-menu-content {
    list-style: none;
}

.footer-menu-header {
    color: #91d7ff;
    font-size: 13px;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 32px;
    letter-spacing: 3px;
}

@media (max-width: 768px) {
    .footer-menu-header {
        margin-bottom: 14px;
    }
}

.footer-menu-content li {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 12px;
}

.footer-menu-content li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: inherit;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .footer-menu-content li a {
        font-size: 12px;
    }
}

.footer-menu-content li a:hover {
    /* background: linear-gradient(90deg, #3535ee -34.37%, #292ef4 -10.02%, #3c52f6 65.95%, #5581f9 168.23%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: #91d7ff;
}

.footer-menu-content li:nth-last-child(1) {
    margin-bottom: 0px;
}

.footer-subscribe p {
    color: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    width: 372px;
    max-width: 372px;
}

.subscribe-input-wrapper {
    color: #ffffff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    position: relative;
    margin-top: 40px;
}

.subscribe-input-wrapper input {
    border-radius: 55px;
    border: 1px solid #ffffff80;
    background: var(--base-color-white-5, rgba(255, 255, 255, 0.05));
    padding: 16px 20px;
    width: 100%;
    color: inherit;
    font: inherit;
    padding-right: 160px;
    width: 417px;
}

@media (max-width: 768px) {
    .subscribe-input-wrapper input {
        padding: 16px 20px;
        margin-bottom: 10px;
        width: 100%;
    }
}

.subscribe-input-wrapper input::placeholder {
    color: inherit;
    opacity: 1;
    /* Firefox */
}

.subscribe-input-wrapper input:focus,
.subscribe-input-wrapper input:focus-visible {
    border: 1px solid var(--Blue-300, #2c52bb);
    outline: 1px solid var(--Blue-300, #2c52bb);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(153, 153, 153, 0.06) 100%
    );
}

.subscribe-input-wrapper input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    /* bg transparent */
    -webkit-text-fill-color: #000 !important;
    /* text rəngi */
    transition: background-color 9999s ease-in-out 0s;
    /* chrome hack */
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
}

.subscribe-input-wrapper button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffffd4;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    padding: 12.5px 24px;
    border-radius: 42px;
    background: #0444bcbd;
    border: 1px solid #ffffffa3;
    width: 138px;
}

.subscribe-input-wrapper button:hover {
    cursor: pointer;
    background: linear-gradient(180deg, #5581f9 0%, #0832a5 100%);
}

@media (max-width: 768px) {
    .subscribe-input-wrapper button {
        position: static;
        width: 100%;
        padding: 17px 20px;
        font-size: 16px;
        transform: unset;
    }
}

.footer-middle {
    margin-top: 42px;
}

.footer-middle-2 {
    display: none;
    margin-top: 0;
}

@media (max-width: 768px) {
    .footer-middle {
        display: none;
    }

    .footer-middle-2 {
        display: block;
    }
}

.footer-middle a {
    display: flex;
    align-items: center;
    color: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    max-width: fit-content;
}

@media (max-width: 768px) {
    .footer-middle a {
        font-size: 12px;
    }
}

.footer-middle a > img {
    margin-right: 16px;
}

.footer-middle a:nth-last-child(1) {
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .footer-middle a:nth-last-child(1) {
        font-size: 12px;
    }
}

.footer-texture {
    position: absolute;
    bottom: 105%;
    left: 0;
    z-index: -100;
}

.divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(240, 251, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.5) 24.34%,
        #fff 50%,
        rgba(255, 255, 255, 0.44) 78.69%,
        rgba(255, 255, 255, 0.03) 100%
    );
    margin-top: 36px;
    margin-bottom: 36px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #b5b8c7;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    z-index: 1;
    position: relative;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: unset;
        justify-content: unset;
        font-size: 12px;
        gap: 33px;
    }
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    padding: 12px;
    background: #ffffff26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 42px;
}

.social-icons a:hover img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(54%) saturate(5356%)
        hue-rotate(224deg) brightness(100%) contrast(90%);
}

.social-icons a:nth-last-child(1) {
    margin-right: 0px;
}

/* 768px üçün */
@media (max-width: 768px) {
    .footer-wrapper {
        /* background-image: url(../footer-mobile.png); */
        height: 100%;
    }

    .footer-wrapper {
        padding: 12px 24px 20px;
    }

    .footer-menu-header {
        font-size: 12px;
        font-weight: 600;
        line-height: 22px;
    }

    .footer-menu-content li {
        font-size: 12px;
        line-height: 20px;
    }

    .footer-logo {
        width: 243px;
    }
    .lang-options {
        padding: 12px;
        top: 64px;
    }
}

/* 512px üçün - daha dar*/
@media (max-width: 512px) {
    .footer-subscribe p {
        width: 100%;
    }

    .footer-bottom .social-icons {
        margin-top: 32px;
    }
}

/* FOOTER END */

/* NEWS PAGE BEGIN */
.subheader {
    margin-top: 36px;
}
.subheader-wrapper {
    border-radius: 16px;
    background-image: url("/site/assets26/images/textures/desktop-top.png");
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 302px;
    padding: 33px 38px;
}

.subheader-wrapper h1 {
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    background: linear-gradient(207.64deg, #2563eb -23.91%, #002b7a 88%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.subheader-wrapper .ai-info {
    font-weight: 500;
}

.subheader-wrapper p {
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    margin-top: 8px;
    background: linear-gradient(207.64deg, #2563eb -23.91%, #002b7a 88%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news.page {
    margin-top: 72px;
}

.news.page .texture-left {
    width: 1159px;
    height: 1180px;
    left: -26%;
    top: -80%;
}

.news.page .texture-right {
    width: 996px;
    height: 996px;
    bottom: 8%;
    right: -8%;
}

.news.page .news-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap-column: 16px;
    gap-row: 24px;
    overflow-x: unset;
}

.news.page .news-wrapper .news-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.news.page .news-card-img-wrapper {
    min-height: 208px;
}
.news.page .news-wrapper .news-card .news-card-img-wrapper img {
    transition: transform 0.3s ease;
}

/* Birinci kart böyük olacaq */
.news.page .news-wrapper .news-card.first {
    grid-column: span 2;
    /* 2 sütun yer tutur */
}

.news-wrapper .news-card:hover .news-card-img-wrapper img {
    transform: scale(1.05);
    /* şəkili 5% böyüdür */
}

/* Responsive düzəlişlər */
@media (max-width: 1024px) {
    .news.page .news-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .news.page .news-wrapper .news-card.first {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .news.page .news-wrapper {
        grid-template-columns: 1fr;
    }

    .news.page .news-wrapper .news-card.first {
        grid-column: span 1;
    }

    .subheader-wrapper {
        padding: 36px 24px;
        /* background-image: url("assets/images/textures/desktop-top.svg"); */
        background-image: url("/site/assets26/images/textures/desktop-top.png");
        background-position: right;
        background-size: cover;
    }

    .subheader-wrapper h1 {
        font-size: 32px;
        line-height: 40px;
        margin-top: 106px;
    }

    .subheader-wrapper p {
        font-size: 14px;
        font-weight: 300;
        line-height: 22px;
        width: 100%;
    }

    .subheader-wrapper-img {
        top: -120%;
        left: -140%;
        width: 2000px;
    }
}

@media (max-width: 512px) {
    .subheader-wrapper-img {
        top: -120%;
        left: -140%;
        width: 1400px;
    }
}

.news-wrapper-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-wrapper-bottom .news-card {
    outline: 6px solid #0f173a;
}

/* NEWS PAGE END */

/* SPEAKERS PAGE BEGIN */
.speaker-bottom {
    margin-top: 80px;
}

.speakers.page h1 {
    color: #ffffff;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
}

.speakers.page .texture-left {
    width: 996px;
    height: 996px;
    left: -32%;
    top: -27%;
}

.speakers.page .texture-right {
    width: 996px;
    height: 996px;
    right: -32%;
    bottom: 0;
}

.speakers.page .speaker-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 sütunlu grid */
    gap: 30px 40px;
    overflow-x: unset;
}

@media (max-width: 768px) {
    .speakers.page .speaker-wrapper {
        gap: 8px 16px;
    }
}

.speakers.page .speaker-item {
    position: relative;
    border-radius: 16px;
    height: 397px;
    cursor: pointer;
    background: lightgray -26px -17.458px / 116.906% 109.302% no-repeat;
    overflow: hidden;
    border: 1px solid white;
}

@media (max-width: 512px) {
    .speakers.page .speaker-item {
        height: 242px;
    }
}

.speakers.page .speaker-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 16px;
    position: relative;
    z-index: 2;
}

.speakers.page .speaker-item .speaker-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.speakers.page .speaker-item .speaker-item-image {
    position: relative;
    z-index: 2;
}

.speaker-item:hover .speaker-item-image {
    cursor: pointer;
    transform: scale(1.1);
}

/* Modal arxa fon */
.speaker-modal {
    display: none;
    /* başlanğıcda gizli */
    position: fixed;
    top: 0;
    left: 16px;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    /* arxa blur effekti */
    /* background: rgba(0, 0, 0, 0.5); */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    justify-items: center;
}

@media (max-width: 768px) {
    .speaker-modal {
        left: 0;
    }
}

/* Modalın içi */
.modal-content {
    border-radius: 20px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    padding: 20px;
    max-width: 1280px;
    height: 484px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    padding: 48px;
    top: 0;
}

.modal-info-title-right {
    margin-left: 12px;
}

.modal-info-title-left {
    color: #1d3c75;
}
.modal-info-title-left-inner {
    display: flex;
    align-items: center;
}
.modal-info-title-left-inner #linkedin {
    padding: 8px 11px 6px 11px;
    border-radius: 50%;
    background: linear-gradient(0deg, #1263c4 0%, #1263c4 100%),
        rgba(193, 219, 248, 0);
    margin-left: 26px;
}
.modal-info-right .modal-detail {
    margin-top: 30px;
    color: #1d3c75;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    max-height: 264px;
    overflow: auto;
}
.modal-info-right .modal-detail p,
.modal-info-right .modal-detail span,
.modal-info-right .modal-detail strong {
    font-size: 16px !important;
    color: #1d3c75;
    line-height: 24px;
    font-weight: 500;
}
.modal-info-right .modal-detail strong {
    font-weight: 600;
}
.modal-info-title-left p {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

.modal-content .modal-info .profile-img {
    border-radius: 16px;
    width: 308px;
    height: 398px;
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
    aspect-ratio: 308/398;
    flex-shrink: 0;
}

.modal-content .modal-info .profile-img .modal-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.modal-content .modal-info .profile-img #modalImage {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-title {
    display: flex;
}

.modal-info-right h1 {
    color: #163ccb;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}

.close-btn {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 12px;
    /* to 16px hover */
    height: 12px;
    cursor: pointer;
}

.modal-info {
    display: flex;
    align-items: center;
    gap: 88px;
}

.modal-info-right {
    text-align: left;
}

/* Responsive düzəlişlər */
@media (max-width: 1024px) {
    .speakers.page .speaker-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .speakers.page .speaker-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-info {
        display: block;
    }

    .modal-content {
        height: 90%;
        width: 90%;
        top: 0;
        left: 0;
        padding: 20px;
        margin: unset;
        overflow-y: scroll;
    }

    .close-btn {
        fill: var(--base-color-white-7, rgba(255, 255, 255, 0.08));
        backdrop-filter: blur(6px);
        border-radius: 50%;
        padding: 8px;
        top: -4px;
        right: 0;
        width: 36px;
        height: 36px;
    }

    .modal-content .modal-info .profile-img {
        height: auto;
    }
    .speakers.page .speaker-item {
        max-height: 100%;
    }
}

/* SPEAKERS PAGE END */

/* NOT FOUND BEGIN */
.not-found {
    margin-top: 40px;
    margin-bottom: 228px;
}

.not-found-wrapper {
    text-align: center;
    color: #ffffff;
}

.not-found-descrition h1 {
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    line-height: 56px;
    background: linear-gradient(207.64deg, #2563eb -23.91%, #002b7a 88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.not-found-descrition p {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    margin-top: 32px;
    color: #1d3c75;
}

.not-found-number h1 {
    color: #005ed11c;
    text-align: center;
    font-size: 360px;
    font-weight: 500;
}

.not-found-button a {
    color: #ffffff;
    border-radius: 6px;
    background: linear-gradient(183.68deg, #2979d9 3.02%, #1d5eaf 99.19%);
    padding: 16px;
    width: 540px;
    text-align: center;
    display: block;
    margin: auto;
}

@media (max-width: 768px) {
    .not-found-number h1 {
        font-size: 176px;
    }

    .not-found-button a {
        width: 342px;
    }
}

/* NOT FOUND END */

/* ABOUT PAGE BEGIN */
.about.page {
    margin-top: 108px;
}

@media (max-width: 768px) {
    .about.page {
        margin-top: 60px;
    }
}

.about.page .texture {
    top: -100%;
    width: 1496px;
    height: 1508px;
    left: -56%;
}

.about-img {
    width: 540px;
    margin-right: 50px;
}

.about-img.mobile {
    display: none;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info.page {
    margin-top: 78px;
}

@media (max-width: 768px) {
    .info.page {
        margin-top: 46px;
    }
}

.info.page .texture {
    top: -90%;
    width: 996px;
    height: 996px;
    left: 54%;
}

.info-video {
    position: relative;
    border-radius: 20px;
    height: 583px;
}

.info-video video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 20px;
}

.info-video img {
    width: 84px;
    height: 84px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.info-text {
    margin-top: 56px;
    color: #ffffff;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
}
.info-text-header {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #0f37c8;
    margin-bottom: 24px;
}
.statistics {
    margin-top: 88px;
}
.statistics .texture {
    filter: blur(120px);
}
.statistics .texture-left {
    height: 756px;
    width: 752px;
    top: 0;
    left: 23%;
}

.statistics-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 64px;
}

.statistics-item {
    border-radius: 12px;
    padding: 36px 44px;
    border: 3px solid #ffffff;
    border-radius: 12px;
    color: #00467a;
    text-align: center;
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.54) 0%,
        rgba(255, 255, 255, 0.54) 100%
    );
    transition: background-color 0.3s ease, color 0.3s ease;
}

.statistics-item:hover {
    cursor: pointer;
    background: #1f84ff;
    color: white;
}
.statistics-item:hover::before {
    background: linear-gradient(
        148deg,
        rgba(42, 123, 155, 1) 34%,
        rgba(0, 0, 255, 0.83) 100%
    );
}
.statistics-item h1 {
    text-align: center;
    font-size: 76px;
    font-style: normal;
    font-weight: 600;
    line-height: 84px;
}

.statistics-item span {
    color: #415bf6;
    font-weight: 600;
}

.statistics-item p {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 20px;
}

/* Responsive düzəlişlər */
@media (max-width: 1024px) {
    .statistics-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .statistics-wrapper {
        grid-template-columns: 1fr;
    }

    .about-img {
        display: none;
    }

    .about-img.mobile {
        display: block;
        height: 178px;
        width: 343px;
        margin-top: 12px;
    }
    .info-video {
        height: auto;
    }
}

/* ABOUT PAGE END */

/* NEWS PAGE DETAIL BEGIN*/
.breadcrumb-wrapper {
    margin-top: 32px;
}

.breadcrumb-wrapper a {
    color: #163ccb;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.breadcrumb-wrapper a.active {
    background: var(
        --Gradient-Button-Disabled,
        linear-gradient(191deg, #979797 -0.83%, #313131 84.22%)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumb-wrapper a::after {
    content: "/";
    margin: 0 8px;
}

.breadcrumb-wrapper a.active::after {
    content: "";
    margin: 0;
}

.news-detail {
    margin-top: 44px;
    border-radius: 12px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.4);
    padding: 96px 128px 63px 128px;
}
.news-detail .color-gradient-info {
    color: #0d77f9;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    margin-top: 4px;
}

.news-detail h1 {
    color: #02215a;
    font-size: 32px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.352px;
}

.news-detail-slider {
    margin-top: 32px;
}
.news-detail-video {
    margin-top: 12px;
}
.news-detail-video iframe {
    width: 100%;
    height: 480px;
    border-radius: 20px;
}
.swiper {
    padding-bottom: 56px !important;
}

.news-detail-slider .swiper-slide {
    height: 480px;
}

.news-detail-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.swiper-button-prev.custom-prev,
.swiper-button-next.custom-next {
    width: 24px;
    height: 24px;
    color: #ffffff;
    font-size: 24px;
}

.swiper-button-prev.custom-prev {
    margin-left: 30px;
}

.swiper-button-next.custom-prev {
    margin-left: 30px;
}

.custom-pagination {
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 16px;
    width: unset !important;
    left: 43% !important;
}

.custom-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background-color: #d9d9d9;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.custom-pagination .swiper-pagination-bullet-active {
    background-color: #163ccb;
    transform: scale(1.2);
}

.news-detail-text {
    margin-top: 36px;
    max-width: 940px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.news-detail-text p {
    color: #02215a;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 12px;
}
.news-detail-text strong {
    font-weight: 500;
}
.news-detail .social-icons {
    margin-top: 32px;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    border-radius: 8px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.34);
    padding: 16px;
}
.news-detail .social-icons img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(67%) saturate(2316%)
        hue-rotate(187deg) brightness(99%) contrast(101%);
}

.news-detail .color-gradient-info.mobile {
    display: none;
}

@media (max-width: 768px) {
    .news-detail .social-icons {
        font-size: 16px;
    }
    .news-detail .social-icons a {
        margin-right: 0;
    }
    .swiper {
        padding: 0 !important;
    }

    .swiper-wrapper {
        height: 177px !important;
    }

    .swiper-fade .swiper-slide {
        height: 177px;
    }

    .swiper-button-prev:after,
    .swiper-rtl .swiper-button-next:after,
    .custom-next,
    .custom-next {
        display: none !important;
    }

    .custom-pagination {
        display: none;
    }

    .breadcrumb-wrapper {
        margin-top: 20px;
    }
    .news-detail {
        padding: 20px 16px 16px 16px;
    }

    .news-detail-text {
        margin-top: 28px;
    }

    .news-detail h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .news-detail-text p {
        font-size: 16px;
    }

    .news-detail .color-gradient-info {
        display: none;
    }

    .news-detail .color-gradient-info.mobile {
        margin-top: 32px;
        display: block;
    }
}
@media (max-width: 512px) {
    .news-detail-video iframe {
        height: 360px;
    }
}
/* NEWS PAGE DETAIL END*/

/* CONTACT PAGE BEGIN */
.contact-wrapper {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 28px;
    padding: 64px;
    background: #ffffff26;
    border-radius: 12px;
    border: 1px solid #fff;
    gap: 12px;
}

.contact-box {
    width: 524px;
    max-width: 524px;
}

.contact.page .texture-left {
    width: 1159px;
    height: 1180px;
    top: 11%;
    left: -38%;
    opacity: 0.59;
}

.contact.page .texture-right {
    width: 996px;
    height: 996px;
    bottom: 20%;
    right: -50%;
    opacity: 0.59;
}

.contact-box h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
}

.contact-box p {
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
    margin-top: 24px;
    color: #000000;
}

@media (max-width: 768px) {
    .contact-box p {
        font-size: 14px;
    }
}

.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.contact-header span {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #232937;
}

.contact-info-content-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.contact-info-content-item:nth-last-child(1) {
    margin-bottom: 0px;
}

.contact-info-content-item span {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .contact-info-content-item span {
        font-size: 14px;
    }
}

.contact-info-content-item a {
    color: #0f80dd;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

@media (max-width: 768px) {
    .contact-info-content-item a {
        font-size: 14px;
    }
}

.contact-location {
    margin-top: 37px;
}

.contact-location a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}

.contact-form {
    padding: 48px;
    border-radius: 20px;
    border: 1px solid rgba(63, 130, 255, 0.41);
    background: #eff5fb;
    width: 632px;
    max-width: 632px;
    border: 1px solid #ffffff;
}

@media (max-width: 768px) {
    .contact-form {
        margin-top: 37px;
        background: none;
        border: none;
    }
    .contact-form .texture-page-left {
        right: 0%;
        left: 58%;
        top: -6%;
        height: 710px;
        z-index: -1;
        width: auto;
        opacity: 0.54;
    }
    .contact-wrapper {
        background: none;
        border: none;
    }
}

.contact-form .input-wrapper {
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    position: relative;
    margin-bottom: 14px;
}
.contact-form .input-area {
    padding: 8px 12px 0px;
}
.contact-form .input-area textarea {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    height: 65px;
}
.contact-form .input-wrapper input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    /* bg transparent */
    -webkit-text-fill-color: #000 !important;
    /* text rəngi */
    transition: background-color 9999s ease-in-out 0s;
    caret-color: #fff;
}

.contact-form
    .input-wrapper:has(input:focus)
    .contact-form
    .input-wrapper:has(textarea:focus-visible),
.contact-form .input-wrapper:has(input:focus-visible),
.contact-form .input-wrapper:has(textarea:focus) {
    outline: 1px solid #2c52bb;
}

.contact-form .input-wrapper.area {
    padding-top: 8px;
}

.contact-form .input-wrapper.area textarea {
    color: #ffffff;
}

.contact-form .input-wrapper img {
    position: absolute;
    top: 16px;
    right: 16px;
}

.contact-form .input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    font-family: "Poppins", sans-serif;
    color: rgb(0 0 0 / 25%);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px !important;
}

.contact-form .input-wrapper input {
    font-size: 16px;
    background: transparent;
    border: 0;
    width: 100%;
}

.contact-form .input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    box-shadow: none;
    border: none;
    background-color: transparent;
}

.input-wrapper textarea {
    background: transparent;
    border: none;
    width: 100%;
    max-width: 500px;
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:focus {
    transition: background-color 6000s 0s, color 600000s 0s;
}

.contact-form input[data-autocompleted] {
    background-color: transparent !important;
}

.contact-form p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    margin-top: 43px;
    color: #333333;
}

.contact-form p > a {
    color: #3f82ff;
    text-decoration: underline;
}

.contact-form button {
    padding: 16px;
    width: 100%;
    margin-top: 30px;
    border-radius: 6px;
    /* border: 3px solid rgba(65, 151, 255, 0.12); */
    border: 0;
    background: linear-gradient(180deg, #2d72c8 0%, #1d5eaf 100%);
    color: var(--Base-color-White, #fff);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.contact-form button:hover {
    cursor: pointer;
    background: #2349d5;
}

@media (max-width: 992px) {
    .contact-wrapper {
        display: block;
        padding: 0px;
        border: none;
    }

    .contact-box {
        width: 100%;
    }

    .contact-form {
        width: 100%;
        padding: 24px 20px;
    }
}

#map iframe {
    width: 100%;
    border-radius: 1px;
    border: 1px solid #3f82ff;
    background: lightgray 50% / cover no-repeat;
    background-blend-mode: screen;
}

#map {
    margin-top: 80px;
    height: 378px;
    border-radius: 16px;
    border: 1px solid #fff;
    background: lightgray 50% / cover no-repeat;
    background-blend-mode: screen;
}

#map .leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: #ffffff;
    backdrop-filter: blur(36.70000076293945px);
    box-shadow: 0px 4px 4px 0px #0000001c;
}

#map .leaflet-popup-content {
    width: 340px !important;
    margin: 0;
    padding: 8px;
}

#map .leaflet-popup-content p {
    margin: 0;
    display: flex;
}

#map .leaflet-popup-close-button {
    display: none;
}

.custom-popup {
    display: flex;
    align-items: center;
    color: #020923;
}

.custom-popup img {
    width: 92px;
    height: 105px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 12px;
}

.custom-popup-content-header {
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
}
.custom-popup-content-header strong {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.custom-popup-content-description {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
}

.custom-popup-content a {
    color: #3f82ff;
    display: flex;
    gap: 4px;
}
.custom-popup-content a img {
    width: 16px;
    height: 16px;
    margin-right: 0;
}

.custom-popup-content-header a {
    color: #020923;
    margin-left: 6px;
    font-weight: 400;
}

.leaflet-tile {
    border: none !important;
    background: #0a1f44;
    /* xəritənin fon rəngi ilə eyni */
}

.texture {
    position: absolute;
    z-index: -1;
}

.texture-left {
    top: 0;
    left: 0;
}

.texture-right {
    bottom: 0;
    right: 0;
}

@media (max-width: 992px) {
    .texture {
        width: 100%;
    }

    .texture-left {
        width: 100%;
    }

    .texture-right {
        width: 100%;
    }
}

/* CONTACT PAGE END */

/* PRIVACY PAGE BEGIN */
.privacy {
    margin-top: 80px;
}
.privacy.page ul {
    list-style: unset;
    padding-left: 40px;
}

.privacy .info-text {
    color: #102e64;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    padding: 0px 16px;
}
.privacy .info-text p {
    margin-bottom: 12px;
    line-height: 32px;
}
.privacy .info-text strong {
    color: #0f37c8;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #0f37c8;
    margin-bottom: 24px;
}
.privacy .info-text a {
    color: #ccfa00;
}
.privacy .info-text p:nth-last-child(1) {
    margin-bottom: 0px;
}
/* PRIVACY PAGE END */

/* REGISTRATION PAGE BEGIN */
.registration {
    position: relative;
}

.registration.page .texture-left {
    left: -27%;
    top: -26%;
    width: 1026px;
    height: 1045px;
}

.registration.page .texture-right {
    width: 996px;
    height: 996px;
    bottom: -46%;
    right: -34%;
}

.registration-texture {
    position: absolute;
    top: 0;
    left: 0;
    height: 600px;
    border-radius: 20px;
    background-color: #0c299996;
    filter: blur(213.10000610351562px);
    z-index: -1;
}

.registration-wrapper {
    border-radius: 12px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(2px);
    padding: 48px;
    margin-top: 56px;
}

.registration-row {
    display: flex;
    column-gap: 88px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.registration-input-left {
    display: flex;
    gap: 95px;
    color: #1d3c75;
    line-height: 24px;
    font-size: 16px;
}

.registration-input-left .radio-options {
    display: flex;
    gap: 38px;
    align-items: center;
}

.registration-input-left .radio-options input[type="radio"] {
    margin-right: 8px;
}

.radio-options label {
    display: flex;
    align-items: center;
}

.radio-options input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 22px;
    height: 22px;
    border: 4px solid #174f9c42;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.radio-options input[type="radio"]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #163ccb;
    /* iç dairə rəngi */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

.radio-options input[type="radio"]:checked::before {
    transform: translate(-50%, -50%) scale(1);
}

.registration-input-left p {
    font-weight: 500;
    max-width: 288px;
}

.registration-row .term-text {
    max-width: 457px;
    color: #013d79;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    margin-top: 24px;
}

.registration-row .term-text a {
    color: #3f82ff;
    font-weight: 300;
}

.registration-input-left input {
    font-weight: 400;
}

.registration-input-left.last {
    margin-top: 40px;
}

.registration-input {
    flex: 1 1 calc(50% - 88px);
    margin-bottom: 22px;
}

.registration-input:nth-last-child(1) {
    margin-top: 0;
}

.registration-input label {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
}

.registration-input label::after {
    content: "*";
    color: #3f82ff;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    margin-left: 4px;
}

.registration-input input {
    height: 56px;
}

.registration-input input,
.registration-input select,
.registration-input textarea {
    padding: 16px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #344e6d;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(153, 153, 153, 0.06) 100%
    );
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.registration-input input:focus,
.registration-input select:focus,
.registration-input textarea:focus,
.registration-input input:focus-visible,
.registration-input select:focus-visible,
.registration-input textarea:focus-visible {
    outline: 1px solid #2c52bb;
}

.registration-input input.is-invalid,
.registration-input select.is-invalid,
.registration-input textarea.is-invalid,
.registration-input input.is-invalid:focus,
.registration-input select.is-invalid:focus,
.registration-input textarea.is-invalid:focus,
.contact-form .input-wrapper.is-invalid {
    border-color: #e74c3c;
    box-shadow: none;
}

.registration-input input:-webkit-autofill,
.registration-input select:-webkit-autofill,
.registration-input textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    /* bg transparent */
    -webkit-text-fill-color: #ffffff !important;
    /* text rəngi */
    transition: background-color 9999s ease-in-out 0s;
    /* chrome hack */
    color: #fff !important;
    caret-color: #fff;
}

.registration-input input:-webkit-autofill:active,
.registration-input input:-webkit-autofill:hover,
.registration-input input:-webkit-autofill:focus,
.registration-input input:-webkit-autofill:focus-visible {
    -webkit-text-fill-color: #ffffff !important;
}

.registration-input input:-webkit-autofill,
.registration-input input:-webkit-autofill:focus {
    transition: background-color 6000s 0s, color 600000s 0s;
}

.registration-input input[data-autocompleted] {
    background-color: transparent !important;
}

.contact-form .register-invalid-feedback {
    margin-bottom: 8px;
}

.register-invalid-feedback {
    display: flex;
    align-items: center;
    margin-top: 8px !important;
}

.register-invalid-feedback img {
    margin-right: 5px;
}

.register-invalid-feedback span {
    color: #c83532;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.registration-input select {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    -webkit-appearance: none;
    appearance: none;
    background-image: url(assets/images/icons/select-down.svg);
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    height: 56px;
}

.registration-input select option[disabled][selected] {
    color: rgba(153, 153, 153, 0.34);
}

.registration-input select option {
    border-radius: 8px;
    border: 1px solid #344e6d;
    background-color: #1c2431;
    backdrop-filter: blur(20px);
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 16px 20px;
}

.registration-input select option:hover {
    color: red;
    background: rgba(101, 147, 255, 0.14);
}

.registration-input textarea {
    max-width: 560px;
}

.registration-input input::placeholder {
    color: rgba(153, 153, 153, 0.34);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}

.registration-row button {
    padding: 20px;
    width: 100%;
    margin-top: 20px;
    border-radius: 6px;
    border: 0;
    background: linear-gradient(
        180deg,
        #2979d9 0%,
        #2066bb 72.12%,
        #1d5eaf 100%
    );
    color: var(--Base-color-White, #fff);
    font-size: 16px;
    font-weight: 400;
}

.registration-row button:hover {
    cursor: pointer;
    background: linear-gradient(180deg, #2a6cfb 0%, #003697 100%);
}

@media (max-width: 768px) {
    .registration-input {
        flex: 1 1 100%;
    }

    .registration-input textarea {
        max-width: 600px;
    }

    .registration-input-left {
        display: block;
    }

    .radio-options {
        margin-top: 16px;
    }
}

/* REGISTRATION PAGE END */

/* subscribe modal begin */
.success-custom-modal {
    display: none;
    /* JS ilə açılacaq */
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 9, 35, 0.58);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-modal .success-custom-modal-content p {
    width: 100%;
}

.success-custom-modal-content {
    padding: 92px 62px 68px;
    border-radius: 16px;
    border: 3px solid #ffffff;
    max-width: 514px;
    background: #ffffffe0;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
}

.success-close-btn {
    position: absolute;
    top: 32px;
    right: 32px;
    cursor: pointer;
    color: #fff;
    height: 12px;
}

.modal-icon {
    margin-bottom: 40px;
}

.success-custom-modal-content h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    background: linear-gradient(207.64deg, #2563eb -23.91%, #002b7a 88%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 68px;
}

.success-custom-modal-content p {
    margin-top: 28px;
    font-size: 24px;
    font-weight: 300;
    line-height: 32px;
    color: #1e54b8;
    margin-top: 40px;
    /* max-width: 318px; */
}
.success-custom-modal-content button {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #3f82ff;
    background: transparent;
    border: 0;
    text-decoration: underline;
    margin-top: 54px;
    cursor: pointer;
}
.success-custom-modal-content button:hover {
    background: none;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .success-custom-modal-content {
        padding: 60px 48px;
        max-width: 310px;
    }

    .success-custom-modal-content h1 {
        font-size: 24px;
    }
}

/* subscribe modal end */
.circle-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: transparent;
    border: 4px solid transparent;
    background-image: linear-gradient(#000, #000),
        linear-gradient(45deg, #ff00cc, #3333ff, #00ffcc);
    background-origin: border-box;
    background-clip: content-box, border-box;
    color: white;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.circle-box:hover {
    transform: scale(1.05);
    color: #ff00cc;
    background-image: linear-gradient(#000, #000),
        linear-gradient(135deg, #00ffcc, #3333ff, #ff00cc);
}

@media (min-width: 340px) and (max-width: 767px) {
    .program .texture {
        width: 100%;
        height: auto;
        right: 0;
    }

    .news .texture-right {
        width: 100%;
        height: auto;
        right: 0;
    }

    .news .texture-left {
        width: 100%;
    }

    .counter .texture {
        width: 100%;
        left: 0;
    }

    .target .texture {
        width: 100%;
        left: 0;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .program .texture {
        width: 100%;
        height: auto;
        right: 0;
    }

    .news .texture-right {
        width: 100%;
        height: auto;
        right: 0;
    }

    .news .texture-left {
        width: 100%;
    }

    .counter .texture {
        width: 100%;
        left: 0;
    }

    .counter-wrapper {
        flex-wrap: nowrap;
    }

    .counter-wrapper span {
        margin: 0 40px 32px 40px;
    }
}

@media (max-width: 576px) {
    .navbar-wrapper {
        background: rgb(50 50 201 / 20%);
        backdrop-filter: blur(44px);
    }

    .hero {
        margin-top: 52px;
    }

    .hero-content {
        /* overflow-x: hidden; */
        position: unset;
        width: 100%;
    }

    .hero-content-title {
        width: 100%;
    }

    .hero-content-subtitle {
        width: 100%;
    }

    .hero-content {
        /* overflow-x: hidden; */
        width: 100%;
        margin-top: 32%;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 34px;
    }

    .hero-content p {
        font-weight: 300;
        line-height: 28px;
        font-weight: 200;
        font-size: 20px;
    }

    .hero-content .more {
        width: 100%;
        padding: 16px 0px;
        margin-top: 140px;
    }
    .counter-wrapper {
        flex-wrap: nowrap;
    }

    .counter-wrapper span {
        margin: 0 4px 32px 4px;
    }

    .counter-block {
        justify-items: center;
    }

    .counter-block #seconds .digit-container {
        width: 18px;
    }

    .counter-block #seconds .digit {
        font-size: 28px;
    }

    .counter-block #seconds .color-gradient-info {
        font-size: 28px;
    }

    .footer-wrapper::before {
        top: -2px;
        left: 10.8px;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    main {
        position: relative;
    }

    .hero {
        margin-top: 52px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-content .more {
        width: 100%;
        padding: 16px 0px;
    }

    .hero-image img {
        width: 100%;
    }

    .hero-content-title {
        width: 100%;
    }

    .hero-content-subtitle {
        width: 100%;
    }

    .hero-content .more {
        margin-top: 400px;
    }

    .footer-wrapper::before {
        top: -2px;
        left: 14px;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .hero-content {
        /* position: relative; */
        height: 1200px;
    }
}

@media (min-width: 1540px) and (max-width: 1919px) {
    .timeline-bar .timeline-dot:nth-child(2) {
        left: 8.5%;
    }
    .target .texture-left {
        top: 21%;
    }

    .target-content {
        max-height: 160px;
    }

    .program .texture-right {
        right: -56%;
    }

    .speaker-box {
        max-height: 448px;
    }

    .timeline-box p {
        font-size: 16px;
    }

    .timeline-box .hidden-text {
        font-size: 16px;
    }

    .aim .texture {
        left: -12%;
        width: 760px;
        height: 760px;
    }

    .news {
        margin-top: 155px;
    }

    .news .texture-left {
        top: 25%;
        left: -20%;
    }

    .news-content-inner {
        min-height: 32px;
    }

    .counter-wrapper {
        max-width: 1068px;
        height: 300px;
    }

    .counter .texture {
        height: 644px;
        width: 510px;
    }

    footer .texture {
        left: -24%;
    }

    .footer-wrapper::before {
        top: -1px;
        left: -1px;
    }

    .target-content {
        margin-top: 32px;
    }

    .contact.page .texture-left {
        left: -20%;
    }
}

@media (min-width: 1920px) {
    .timeline-bar .timeline-dot:nth-child(2) {
        left: 8.5%;
    }

    .target-content {
        max-height: 160px;
    }

    .target .texture-left {
        top: 21%;
    }

    .program .texture-right {
        right: -56%;
    }

    .speaker-box {
        max-height: 448px;
    }
    .speakers.page .speaker-item {
        max-height: 416px;
    }
    .timeline-box p {
        font-size: 16px;
    }

    .timeline-box .hidden-text {
        font-size: 16px;
    }

    .aim .texture {
        left: -12%;
        width: 760px;
        height: 760px;
    }

    .news {
        margin-top: 155px;
    }

    .news .texture-left {
        top: 25%;
        left: -20%;
    }

    .news-content-inner {
        min-height: 32px;
    }

    .counter-wrapper {
        max-width: 1068px;
        height: 300px;
    }

    .counter .texture {
        height: 644px;
        width: 510px;
    }

    footer .texture {
        left: -24%;
    }

    .footer-wrapper::before {
        top: -1px;
        left: -1px;
    }

    .target-content {
        margin-top: 32px;
    }

    .contact.page .texture-left {
        left: -20%;
    }
}
@media (max-width: 512px) {
    .counter-wrapper {
        flex-wrap: nowrap;
    }
    .counter-block {
        justify-items: center;
    }
    .counter-wrapper span {
        margin: 0 0 32px 0;
    }
    .counter-block #seconds .digit-container {
        width: 18px;
    }

    .counter-block #seconds .digit {
        font-size: 28px;
    }

    .counter-block #seconds .color-gradient-info {
        font-size: 28px;
    }
}
.application-header {
    text-align: center;
}
.application-survey.registration-wrapper {
    padding: 64px 48px;
}
.application-survey.registration-wrapper .form-textarea {
    min-height: 88px;
}
.radio-row {
    margin-top: 80px;
}
body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(189.17deg, #e0ecfb 1.35%, #dbe9f3 57.53%);
    min-height: 100vh;
    line-height: 1.5;
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
}

.container-grid {
    width: 100%;
    max-width: 1158px;
    margin-inline: auto;
}

.container-media {
    width: 100%;
    max-width: 1084px;
    margin-inline: auto;
}

.container-md {
    width: 100%;
    max-width: 1064px;
    margin-inline: auto;
}

.container-sm {
    width: 100%;
    max-width: 684px;
    margin-inline: auto;
}

.grid-template-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

footer .texture {
    left: 0;
    max-height: 700px;
    width: 520px;
}
footer .footer-wrapper {
    background: linear-gradient(
        98.77deg,
        rgba(0, 89, 200, 0.87) 35.11%,
        rgba(33, 113, 215, 0.87) 98.34%
    );
    position: relative;
}
footer .footer-wrapper .image-right {
    position: absolute;
    right: 0;
    top: 0;
    height: auto;
}
@media (max-width: 900px) {
    footer .footer-wrapper .image-right {
        right: unset;
        top: unset;
        bottom: 0;
        left: 0;
    }
    .container-media {
        padding: 0 16px;
    }
}

footer .footer-bottom .copyright {
    color: white;
    display: flex;
    gap: 6px;
}

footer .footer-bottom .copyright span {
    font-weight: 200;
    font-size: 14px;
    line-height: 22px;
}
@media (max-width: 600px) {
    footer .footer-bottom .copyright span {
        font-size: 12px;
    }
}
.info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    justify-items: center;
}
.info-modal--wrapper {
    padding: 48px 60px;
    background-color: #ffffff;
    border-radius: 20px;
    backdrop-filter: blur(30px);
    max-width: 868px;
    border-radius: 20px;
    position: relative;
    top: 172px;
}
.info-modal--wrapper .close-btn {
    top: 48px;
    right: 54px;
}
.info-modal--title {
    font-size: 24px;
    line-height: 32px;
    color: #163ccb;
    margin-bottom: 30px;
    font-weight: 500;
}
.info-modal--description {
    font-size: 16px;
    line-height: 24px;
    color: #1d3c75;
}
.info-modal--link {
    margin-top: 36px;
    display: inline-block;
    padding: 12px;
    font-size: 16px;
    line-height: 24px;
    background-color: #4090ed;
    border-radius: 8px;
    color: #fff;
}

.hero-actions--btn {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    padding: 18px 36px;
    border-radius: 100px;
    border: 1px solid #fff;
    backdrop-filter: blur(2.9000000954px);
    transition: background 0.3s ease;
    text-align: center;
}
@media (max-width: 600px) {
    .hero-actions--btn {
        width: 100%;
        display: block;
    }
}
.hero-actions--primary {
    background: #47a2f2;
    color: #f5fdff;
}
.hero-actions--primary:hover {
    background: #2171d7;
}
.hero-actions--secondary {
    background: rgba(255, 255, 255, 0.38);
    color: #1d3c75;
    margin-left: 12px;
}
.hero-actions--secondary:hover {
    background: rgba(255, 255, 255, 0.96);
}
@media (max-width: 900px) {
    .hero-actions--secondary {
        margin-top: 12px;
        margin-left: 0;
    }
}

.competition {
    margin-top: 152px;
}
.competition-wrapper .section-texture--dark {
    display: none;
}
.competition-wrapper {
    color: #fff;
    border-radius: 12px;
    padding: 56px 72px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: border-color 0.5s ease, color 0.5s ease;
    background: linear-gradient(99deg, #1d6cce -0.98%, #1c4e8b 109.09%);
}

@media (max-width: 900px) {
    .competition {
        margin-top: 62px;
    }

    .competition-wrapper {
        padding: 20px 16px;
    }
}

/* .competition-wrapper:hover {
    background: linear-gradient(
        97deg,
        rgba(255, 255, 255, 0.28) -11.63%,
        rgba(16, 112, 231, 0.28) 95.59%
    );
    border: 1px solid #fff;
    backdrop-filter: blur(2px);
} */

/* .competition-wrapper:hover .section-texture--light {
    display: none;
}
.competition-wrapper:hover .section-texture--dark {
    display: block;
}
.competition-wrapper:hover .color-gradient-info {
    color: #3f82ff;
}
.competition-wrapper:hover .competition-title {
    color: #00467a;
}
.competition-wrapper:hover .competition-description {
    color: #013d79;
} */

.competition-wrapper {
    position: relative;
}
.competition .color-gradient-info {
    color: #91d7ff;
}

.competition-content {
    width: 515px;
}

@media (max-width: 900px) {
    .competition-content {
        width: 100%;
    }
}

.competition-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    margin-top: 12px;
}
.competition-description {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 20px;
}
.competition-description p:first-child {
    margin-bottom: 24px;
}

.competition-link {
    margin-top: 42px;
    display: flex;
    width: 370px;
    height: 64px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.81);
    backdrop-filter: blur(2.9000000954px);
    color: #1d3c75;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    transition: all 0.2s ease;
}

@media (max-width: 900px) {
    .competition-link {
        width: 100%;
        padding: 18px;
        font-size: 16px;
    }
}

.competition-link:hover {
    background: #4197ff;
    color: white;
}

.competition-link-icon {
    width: 38px;
    height: 38px;
    margin-left: 20px;
    transition: transform 0.2s ease;
}

.competition-link:hover .competition-link-icon {
    transform: translateX(4px);
}

.competition-texture {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 50%;
}

.target-box:first-child:hover svg path:first-child {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:first-child:hover svg path:nth-child(3) {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:first-child:hover svg path:nth-child(4) {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:first-child:hover svg path:nth-child(8) {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:first-child:hover svg path:nth-child(9) {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:first-child:hover svg path:nth-child(13) {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:first-child:hover svg path:nth-child(14) {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:first-child:hover svg path:nth-child(15) {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:nth-child(2):hover svg path:first-child {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:nth-child(2):hover svg path:nth-child(2) {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:nth-child(3):hover svg path:first-child {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:nth-child(3):hover svg path:nth-child(2) {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:nth-child(3):hover svg path:nth-child(3) {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:nth-child(3):hover svg path:nth-child(4) {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:last-child:hover svg path:first-child {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:last-child:hover svg path:nth-child(2) {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:last-child:hover svg path:nth-child(3) {
    stroke-width: 1px;
    stroke: #79fdff;
}
.target-box:last-child:hover svg path:nth-child(4) {
    stroke-width: 1px;
    stroke: #79fdff;
}

.home .about-content {
    width: 524px;
}

@media (max-width: 900px) {
    .home .about-content {
        width: 100%;
    }
}

.home .about .section-wrapper {
    padding: 32px 32px 32px 40px;
    border-radius: 12px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(2px);
    gap: 44px;
}
@media (max-width: 900px) {
    .home .about .section-wrapper {
        padding: 20px 16px 16px 16px;
    }
}
.home .about .section-description {
    color: #02215a;
}
.home .about .section-description p:first-child {
    margin-bottom: 28px;
}
.home .speakers .about-content {
    width: 608px;
}

.home .speakers .section-description {
    width: 524px;
}

@media (max-width: 900px) {
    .home .speakers .about-content {
        width: 100%;
    }

    .home .speakers .section-description {
        width: 100%;
    }
}

.home .counter .about-content {
    place-items: center;
    width: unset;
}
.home .news .news-wrapper .news-card .news-card-img-wrapper img {
    transition: transform 0.3s ease;
}
.home .media .links-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .home .media .links-wrapper {
        grid-template-columns: 1fr;
    }
}

.home .media {
    max-width: 1054px;
    margin: auto;
}
.home .media .link-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.home .media .link-item img {
    height: 87px;
    object-fit: contain;
    width: 100%;
}

.single .texture-main {
    display: none;
}
.single .texture-single {
    position: absolute;
    width: 720px;
    height: 450px;
    top: -46%;
    z-index: -1;
}
.single-form .texture-one {
    display: none;
}
.single-form .texture {
    width: auto;
    height: 914px;
    position: absolute;
    bottom: 237px;
    top: unset;
}
.single-form .texture-left-side {
    right: unset;
    left: 0;
}
.single-form .texture-right-side {
    left: unset;
    right: 0;
}
@media (max-width: 600px) {
    .single .texture-single {
        top: -30%;
    }
}
.single .texture-left {
    right: unset;
    left: 0;
}
.single .texture-right {
    left: unset;
    right: 0;
}
.single .competition {
    margin-top: 80px;
}

.program .color-gradient-info {
    color: #4197ff;
}
.program .section-description {
    color: #3c4a7d;
}

.social-links {
    display: flex;
    gap: 4px;
}
@media (max-width: 600px) {
    .social-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Creates a 4-column grid */
        gap: 10px;
    }
    .social-links > *:last-child {
        grid-column: 1/-1; /* Makes the last element span all 4 columns */
    }
}
.social-links button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 6px;
    border: 1px solid #c8d5e4;
    background: rgba(255, 255, 255, 0.34);
    padding: 8px 12px;
    color: #00467a;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    width: max-content;
    position: relative;
}
.social-links button:hover {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.01);
}
.social-links button .tooltip-text {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background-color: #1e293b;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 10;
}
.social-links button .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #1e293b transparent transparent transparent;
}
.social-links button.show-tooltip .tooltip-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.faq {
    margin-top: 160px;
}
.faq .all-news-button {
    display: none;
}

@media (max-width: 768px) {
    .faq {
        margin-top: 60px;
    }
    .faq .all-news-button {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-top: 28px;
    }
}

.faq-wrapper {
    padding: 80px 108px 92px 108px;
    border-radius: 16px;
    border: 1px solid #fff;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.15) 100%
    );
    backdrop-filter: blur(2.6px);
}

@media (max-width: 768px) {
    .faq-wrapper {
        padding: 16px 16px 24px;
    }
}

.faq-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
}

@media (max-width: 768px) {
    .faq-tab {
        margin-top: 29px;
    }
}

.faq-tab--item {
    padding: 10px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.35);
    color: #1d3c75;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    outline: 1px solid #fff;
    border: 3px solid rgba(255, 255, 255, 0.3803921569);
    transition: background 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .faq-tab--item {
        font-size: 12px;
        padding: 12px 20px;
    }
}
@media (max-width: 394px) {
    .faq-tab--item {
        font-size: 10px;
    }
}

.faq-tab--item.active,
.faq-tab--item:hover {
    background: #d5e8ff;
}
.faq-content {
    margin-top: 20px;
}
.faq-item {
    padding: 24px 32px;
    border-radius: 16px;
    border: 1.5px solid #fff;
    background: #f2f7fd;
    color: #375b9f;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}

@media (max-width: 768px) {
    .faq-item {
        font-size: 18px;
        padding: 16px;
    }
}

.faq-item:hover {
    cursor: pointer;
}
.faq-item:hover .faq-question--text {
    color: #3f82ff;
}

.faq-item:hover .faq-right {
    background-color: #3f82ff;
}

.faq-item:not(:last-child) {
    margin-bottom: 16px;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.faq-right {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.54);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
}
.faq-right img {
    display: block;
}
.faq-answer {
    max-width: 702px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    color: #1d3c75;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease,
        margin-top 0.3s ease;
}
.faq-answer p {
    font-size: 16px;
    line-height: 24px;
    color: #475569;
    font-weight: 400;
    margin: 0;
}
.faq-answer p:not(:last-child) {
    margin-bottom: 12px;
}
.faq-item.active {
    background: #e8f0fb;
}
.faq-item.active .faq-right {
    transform: rotate(90deg);
    background: #3f82ff;
}
.faq-item.active .faq-right img,
.faq-item:hover .faq-right img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(44%)
        hue-rotate(132deg) brightness(120%) contrast(100%);
}
.faq-item.active .faq-question--text {
    color: #3f82ff;
}
.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    margin-top: 16px;
}
.faq.page .faq-tab {
    margin-bottom: 26px;
}
.faq.page .faq-content {
    margin-top: 0;
}

.contact-form h1 {
    background: linear-gradient(208deg, #2563eb -23.91%, #002b7a 88%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
}
.contact-form .contact-form--mobile,
.contact-form .contact-form--description {
    display: none;
}
.contact-box--wrapper {
    padding: 20px;
    border: 1px solid #ffffff;
    background: #eff5fb;
    border-radius: 12px;
    height: 175px;
}
.contact-box--wrapper:not(:first-child) {
    margin-top: 12px;
}
.contact-box .contact-header {
    gap: 14px;
}
.contact-box .contact-header--img {
    background: #fff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.contact-box .contact-header--img img {
    width: 26px;
    height: 26px;
}

.section-info-text {
    display: flex;
    align-items: center;
}

/* .tab-content .custom-accordion {
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #fff;
    border-radius: 16px;
}
.tab-content .custom-accordion .accordion-img {
    position: absolute;
    top: 0;
    right: 0;
}
@media (max-width: 600px) {
    .tab-content .custom-accordion .accordion-img {
        display: none;
    }
}
.tab-content .custom-accordion .accordion-item {
    max-height: 118px;
}
.tab-content .custom-accordion .accordion-item .accordion-content {
    width: 505px;
}
.tab-content .custom-accordion .accordion-item:first-child {
    background: rgba(255, 255, 255, 0.28);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.tab-content .custom-accordion .accordion-item:first-child .accordion-content {
    color: #02215a;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}
.tab-content
    .custom-accordion
    .accordion-item:first-child
    .accordion-content
    strong {
    font-weight: 500;
    margin-bottom: 16px;
}
.tab-content .custom-accordion .accordion-item:nth-child(2) {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background: white;
    margin-top: -8px;
}
.tab-content .custom-accordion .accordion-item:nth-child(2) .accordion-content {
    color: #02215a;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}
.tab-content .custom-accordion .accordion-item:last-child {
    background: linear-gradient(180deg, #2587ff 0%, #0869b9 100%);
}
.tab-content .custom-accordion .accordion-item {
    padding: 39px 119px 39px 88px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}
.tab-content .custom-accordion .accordion-item .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    cursor: pointer;
}
.tab-content .custom-accordion .accordion-item .accordion-header h2 {
    background: linear-gradient(0deg, #002b7a 0%, #002b7a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 28px;
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    transition: color 0.3s ease;
}
.tab-content .custom-accordion .accordion-item .accordion-body {
    max-height: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
    margin-top: 0;
}
.tab-content .custom-accordion .accordion-item .accordion-body p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 60%;
    margin: 0;
}
.tab-content .custom-accordion .accordion-item.active {
    border: 1px solid #fff;
    border-radius: 16px;
    margin-top: -8px;
}
.tab-content .custom-accordion .accordion-item.active .accordion-header h2 {
    color: white;
    -webkit-text-fill-color: unset;
}
.tab-content .custom-accordion .accordion-item.active .accordion-content {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    width: 585px;
}
.tab-content .custom-accordion .accordion-item:hover,
.tab-content .custom-accordion .accordion-item.active {
    max-height: unset !important;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3);
}
.tab-content .custom-accordion .accordion-item:hover .accordion-body,
.tab-content .custom-accordion .accordion-item.active .accordion-body {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 20px;
}
.tab-content .custom-accordion .accordion-item:hover::after,
.tab-content .custom-accordion .accordion-item.active::after {
    opacity: 0.8;
    transform: scale(1.05);
} */
/* Ana konteyner və şəkil tənzimləmələri */
.tab-content .custom-accordion {
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #fff;
    border-radius: 16px;
}

.tab-content .custom-accordion .accordion-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    pointer-events: none; /* Şəkilə klik edəndə hover effektinin itməməsi üçün */
}

@media (max-width: 600px) {
    .tab-content .custom-accordion .accordion-img {
        display: none;
    }
}

/* Ümumi Accordion Item tənzimləmələri */
.tab-content .custom-accordion .accordion-item {
    padding: 39px 119px 39px 88px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;

    max-height: 118px;
    transition: max-height 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.6s ease, margin 0.6s ease, border-radius 0.5s ease;
}

@media (max-width: 900px) {
    .tab-content .custom-accordion .accordion-item {
        padding: 28px 16px;
    }
}

.tab-content .custom-accordion .accordion-item .accordion-content {
    width: 505px;
    transition: color 0.4s ease, width 0.4s ease;
}

/* Xüsusi vəziyyətlər üçün fon və radiuslar */
.tab-content .custom-accordion .accordion-item:first-child {
    background: rgba(255, 255, 255, 0.28);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.tab-content
    .custom-accordion
    .accordion-item:nth-child(2)
    .accordion-content
    span {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 26px !important;
    font-family: "Poppins", sans-serif !important;
}
.tab-content .custom-accordion .accordion-item:first-child .accordion-content {
    color: #02215a;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}
.tab-content
    .custom-accordion
    .accordion-item:first-child
    .accordion-header
    img {
    height: 247px;
}
.tab-content
    .custom-accordion
    .accordion-item:first-child
    .accordion-content
    strong {
    font-weight: 500;
    margin-bottom: 16px;
}

.tab-content .custom-accordion .accordion-item:nth-child(2) {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background: white;
    margin-top: -8px;
}

.tab-content .custom-accordion .accordion-item:nth-child(2) .accordion-content {
    color: #02215a;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.tab-content .custom-accordion .accordion-item:last-child {
    background: linear-gradient(180deg, #2587ff 0%, #0869b9 100%);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

/* Header və Başlıq hissəsi */
.tab-content .custom-accordion .accordion-item .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    cursor: pointer;
}

.tab-content .custom-accordion .accordion-item .accordion-header h2 {
    background: linear-gradient(0deg, #002b7a 0%, #002b7a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 28px;
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    transition: color 0.5s ease, -webkit-text-fill-color 0.5s ease;
}

@media (max-width: 900px) {
    .tab-content .custom-accordion .accordion-item .accordion-header h2 {
        font-size: 32px;
    }
}

/* Daxili mətn / Body hissəsi animasiyası */
.tab-content .custom-accordion .accordion-item .accordion-body,
.tab-content .custom-accordion .accordion-item .accordion-content > div,
.tab-content .custom-accordion .accordion-item .accordion-content > p,
.tab-content .custom-accordion .accordion-item .accordion-content > span,
.tab-content .custom-accordion .accordion-item .accordion-content > strong,
.tab-content .custom-accordion .accordion-item .accordion-content > ul {
    max-height: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: max-height 0.8s ease, opacity 0.6s ease,
        transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), margin 0.6s ease;
    margin-top: 0;
}

.tab-content .custom-accordion .accordion-item .accordion-body p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 60%;
    margin: 0;
}

/* --- AKORDİON AKTİV VƏZİYYƏTİ --- */
.tab-content .custom-accordion .accordion-item.active {
    border: 1px solid #fff;
    border-radius: 16px;
    margin-top: -8px;
    z-index: 3;
}

.tab-content .custom-accordion .accordion-item.active .accordion-header h2 {
    color: white;
    -webkit-text-fill-color: unset;
}

.tab-content .custom-accordion .accordion-item.active .accordion-content {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    width: 585px;
}

@media (max-width: 900px) {
    .tab-content .custom-accordion .accordion-item.active .accordion-content {
        font-size: 18px;
    }
}
.tab-content
    .custom-accordion
    .accordion-item.active
    .accordion-img
    .accordion-img--mobile {
    display: none;
}
/* --- HOVER VƏ AKTİV ZAMANI SMOOTH AÇILIŞ --- */
.tab-content .custom-accordion .accordion-item:hover,
.tab-content .custom-accordion .accordion-item.active {
    max-height: 500px; /* UNSET YERİNƏ RƏQƏM YAZILDI - Animasiyanı smooth edən əsas sətir */
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3);
}

/* Hover və ya Active olanda daxili mətnlərin yumşaq şəkildə üzə çıxması */
.tab-content .custom-accordion .accordion-item:hover .accordion-body,
.tab-content .custom-accordion .accordion-item.active .accordion-body,
.tab-content .custom-accordion .accordion-item:hover .accordion-content > div,
.tab-content .custom-accordion .accordion-item.active .accordion-content > div,
.tab-content .custom-accordion .accordion-item:hover .accordion-content > p,
.tab-content .custom-accordion .accordion-item.active .accordion-content > p,
.tab-content .custom-accordion .accordion-item:hover .accordion-content > span,
.tab-content .custom-accordion .accordion-item.active .accordion-content > span,
.tab-content
    .custom-accordion
    .accordion-item:hover
    .accordion-content
    > strong,
.tab-content
    .custom-accordion
    .accordion-item.active
    .accordion-content
    > strong,
.tab-content .custom-accordion .accordion-item:hover .accordion-content > ul,
.tab-content .custom-accordion .accordion-item.active .accordion-content > ul {
    max-height: 350px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 20px;
}

/* After elementinin animasiyası */
.tab-content .custom-accordion .accordion-item:hover::after,
.tab-content .custom-accordion .accordion-item.active::after {
    opacity: 0.8;
    transform: scale(1.05);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (max-width: 900px) {
    .tab-content .custom-accordion .accordion-item:first-child img {
        display: none;
    }
    .tab-content .custom-accordion .accordion-item.active img {
        display: block;
    }
    .tab-content .custom-accordion .accordion-item .accordion-header {
        display: block;
    }
    .tab-content .custom-accordion .accordion-item.active {
        min-height: 640px;
    }
    .tab-content
        .custom-accordion
        .accordion-item.active
        .accordion-img
        .accordion-img--desktop {
        display: none;
    }
    .tab-content .custom-accordion .accordion-item.active .accordion-img {
        display: block;
        top: unset;
        bottom: 0;
    }
    .tab-content
        .custom-accordion
        .accordion-item.active
        .accordion-img
        .accordion-img--mobile {
        display: block;
        height: auto;
    }
    .tab-content .custom-accordion .accordion-item.active .accordion-content,
    .tab-content .custom-accordion .accordion-item .accordion-content {
        width: 100%;
    }
    .tab-content .custom-accordion .accordion-img img {
        width: 360px;
    }
    .info-modal--wrapper {
        max-height: 496px;
        overflow: auto;
    }
    .info-modal--wrapper .close-btn {
        top: 12px;
        right: 16px;
    }
}

.application {
    width: 1216px;
    margin: auto;
    text-align: center;
}
@media (max-width: 900px) {
    .application {
        width: auto;
    }
}
@media (max-width: 600px) {
    .application {
        width: auto;
    }
}
.application-wrapper {
    padding: 33px 32px 40px 32px;
    border-radius: 12px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(3.2000000477px);
}
.application-title {
    text-align: center;
    font-size: 64px;
    font-weight: 500;
    line-height: 72px;
    background: var(
        --Gradient-Button-Default,
        linear-gradient(208deg, #2563eb -23.91%, #002b7a 88%)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.application-subtitle {
    color: #1e3a8a;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    margin-top: 20px;
}
.application-description {
    color: #1d3c75;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-top: 16px;
}
.application-list {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
    .application-list {
        grid-template-columns: repeat(1, 1fr);
    }
}
.application-list {
    gap: 24px;
    align-items: center;
    align-self: stretch;
}
.application-item {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #fff;
    background: #eef5fa;
    width: 558px;
    height: 370px;
    transition: background 0.5s ease, border-color 0.5s ease;
    text-align: center;
}
.application-item:hover {
    cursor: pointer;
    border-color: #0ea5e9;
    background: rgba(255, 255, 255, 0.86);
}
@media (max-width: 900px) {
    .application-item {
        width: auto;
        height: auto;
    }
}
.application-item--content {
    margin-top: 24px;
}
.application-item--title {
    color: #1e3a8a;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}
.application-item--subtitle {
    color: #0ea5e9;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 12px;
}
.application-item--subtitle.international {
    color: #10b981;
}
.application-item--description {
    color: #475569;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 8px;
}
.application-item--summary {
    color: #1e3a8a;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    margin-top: 16px;
    height: 54px;
}
.application-item--footer {
    margin-top: 24px;
    display: flex;
    color: #10b981;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    justify-content: center;
}
.application-item--footer.international {
    color: #0ea5e9;
}
.application-footer {
    margin-top: 22px;
    color: #475569;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    background: #eef5fa;
    height: 94px;
    padding: 24px 25px 25px 25px;
    transition: background 0.5s ease, border-color 0.5s ease;
}
@media (max-width: 900px) {
    .application-footer {
        height: auto;
    }
}
.application-footer:hover {
    border-color: #0f80dd;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.review-wrapper {
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.04);
}

.review-info {
    border-radius: 12px;
    border: 1px solid #f5c16c;
    background: #fef3cd;
    padding: 24px;
    color: #7c4a03;
    margin-bottom: 28px;
}
.review-info--title {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 8px;
}
.review-info--description {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.review-title {
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    margin-bottom: 26px;
}

.review-card {
    border-radius: 12px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.19);
    margin-bottom: 24px;
    overflow: hidden;
}
.review-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.22);
}
.review-card__heading {
    color: #1d3c75;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}
.review-card__edit {
    color: #0444bc;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    border: none;
    transition: background 0.18s, color 0.18s;
}
.review-card__edit:hover {
    cursor: pointer;
}
.review-card__body {
    padding: 24px;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
}
@media (max-width: 540px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
}

.review-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.review-field__label {
    color: #9ea6af;
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 0.275px;
    text-transform: uppercase;
}
.review-field__value {
    color: #1d3c75;
    font-size: 15px;
    font-weight: 500;
    line-height: 22.5px;
}

.review-confirm {
    border-radius: 12px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.19);
    padding: 24px;
    margin-bottom: 48px;
}
.review-confirm__label {
    color: #1d3c75;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    display: flex;
    gap: 4px;
    cursor: pointer;
}
.review-confirm__checkbox {
    flex-shrink: 0;
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: #0444bc;
    cursor: pointer;
}

.review-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
@media (max-width: 600px) {
    .review-actions {
        display: block;
    }
    .review-actions :not(:first-child) {
        margin-top: 16px;
    }
}
.review-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 32px;
    color: #1d3c75;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    border-radius: 42px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    background: #0444bc;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s, opacity 0.18s;
    white-space: nowrap;
}
@media (max-width: 900px) {
    .review-actions .btn {
        width: 100%;
    }
}
.review-actions .btn--ghost {
    background: rgba(255, 255, 255, 0.08);
}
.review-actions .btn--ghost:hover {
    background: rgba(15, 31, 61, 0.06);
}
.review-actions .btn--outline {
    background: transparent;
    border-color: #0444bc;
}
.review-actions .btn--outline:hover {
    background: rgba(26, 77, 179, 0.06);
}
.review-actions .btn--primary {
    background: #0444bc;
    border-color: rgba(255, 255, 255, 0.64);
    color: #ffffff;
}
.review-actions .btn--primary:hover {
    background: #153e96;
    border-color: #153e96;
}
.review-actions .btn--primary:active {
    opacity: 0.9;
    transform: scale(0.98);
}

.application-success {
    width: 800px;
    height: 608px;
    margin: auto;
    border-radius: 12px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.19);
    backdrop-filter: blur(2px);
}
@media (max-width: 900px) {
    .application-success {
        width: 100%;
        height: auto;
        border: none;
        background: none;
    }
}

.application-success {
    padding: 48px;
}

@media (max-width: 900px) {
    .application-success {
        padding: 0px;
    }
}

.application-success .application-image {
    display: flex;
    width: 96px;
    height: 96px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(4, 68, 188, 0.1);
    margin-bottom: 24px;
    margin-inline: auto;
}
.application-success--title {
    font-size: 36px;
    font-weight: 500;
    line-height: 48px;
    margin-bottom: 16px;
    text-align: center;
}
.application-success--description {
    text-align: center;
    color: #1d3c75;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 32px;
}
.application-success--info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.74);
    width: 702px;
    padding: 24px;
    /* justify-items: start; */
    justify-items: center;
}
@media (max-width: 900px) {
    .application-success--info {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
        height: auto;
    }
}
.application-success--header {
    color: #9ea6af;
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    margin-bottom: 4px;
}
.application-success--value {
    color: #1d3c75;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.application-success--actions {
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

@media (max-width: 900px) {
    .application-success--actions {
        flex-direction: column;
        align-items: unset;
    }
}

.application-success--btn {
    padding: 16px 32px;
    border-radius: 42px;
    transition: background 0.18s;
}
.application-success--primary {
    background: #0444bc;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.64);
}
.application-success--primary:hover {
    background: #2a6cfb;
}
.application-success--secondary {
    background: transparent;
    color: #1d3c75;
    border: 1px solid #0444bc;
}
.application-success--secondary:hover {
    background: white;
    border-color: #8bc7f8;
}

.application-survey {
    border-radius: 12px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.16);
    padding: 32px;
}

@media (max-width: 900px) {
    .application-survey {
        padding: 16px;
    }
}

.application-survey .page-header {
    margin-bottom: 36px;
}
.application-survey .page-header__title {
    font-size: 36px;
    font-weight: 500;
    line-height: 48px;
    background: linear-gradient(208deg, #2563eb -23.91%, #002b7a 88%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.application-survey .page-header__subtitle {
    color: #1d3c75;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}
.application-survey .review-actions {
    margin-top: 32px;
}
.application-survey .criteria-panel {
    border-radius: 12px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.19);
    padding: 25px 20px;
    position: sticky;
    top: 24px;
}
.application-survey .criteria-panel__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 16px;
}
.application-survey .criteria-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.application-survey .criteria-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    padding: 16px 12px 16px 8px;
    border-radius: 8px;
    transition: background 0.15s;
}
.application-survey .criteria-list__item--active,
.application-survey .criteria-list__item:hover {
    border-radius: 8px;
    border-left: 4px solid #a8c0e2;
    background: rgba(4, 68, 188, 0.09);
}
.application-survey .criteria-list__item--active .criteria-list__number,
.application-survey .criteria-list__item--active .criteria-list__text,
.application-survey .criteria-list__item--active .criteria-list__pts,
.application-survey .criteria-list__item:hover .criteria-list__number,
.application-survey .criteria-list__item:hover .criteria-list__text,
.application-survey .criteria-list__item:hover .criteria-list__pts {
    color: #0444bc;
}
.application-survey .criteria-list__number {
    color: #1d3c75;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}
.application-survey .criteria-list__text {
    color: #1d3c75;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    flex: 1;
}
.application-survey .criteria-list__pts {
    font-size: 14px;
    font-weight: 400;
    color: #8a9bb5;
    white-space: nowrap;
}
.application-survey .form {
    padding: 33px;
    border-radius: 12px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.28);
}
.application-survey .form:not(:first-child) {
    margin-top: 26px;
}
.application-survey .form-header {
    color: #1d3c75;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 24px;
}
.application-survey .form-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
}
@media (max-width: 600px) {
    .application-survey .form-wrapper {
        grid-template-columns: 1fr;
    }
}
.application-survey .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.application-survey .form-label {
    color: #1d3c75;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}
.application-survey .form-label__required {
    color: #3f82ff;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-left: 2px;
}
.application-survey .form-input {
    width: 100%;
    height: 56px;
    padding: 16px;
    font-size: 16px;
    font-family: inherit;
    color: #1d3c75;
    background: rgba(255, 255, 255, 0.57);
    border: 1px solid #fff;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
}
.application-survey .form-input::placeholder {
    color: #9ea6af;
    font-size: 16px;
    font-weight: 400;
}
.application-survey .form-input:hover:not(:focus):not(:disabled) {
    border-color: #c8d8ee;
}
.application-survey .form-input:focus {
    border-color: #1a4db3;
}
.application-survey .form-input--error {
    border-color: #e24b4a;
}
.application-survey .form-input--error:focus {
    box-shadow: 0 0 0 3px rgba(226, 75, 74, 0.12);
}
.application-survey .form-input:disabled {
    background: #f0f4fa;
    color: #a0b0c8;
    cursor: not-allowed;
    border-color: #c8d8ee;
}
.application-survey .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a0b0c8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}
.application-survey .form-select option {
    color: #1d3c75;
}
.application-survey .form-hint {
    color: #013d79;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    margin-top: 2px;
}
.application-survey .form-hint strong {
    font-weight: 600;
}
.application-survey .form-error-msg {
    font-size: 11px;
    color: #e24b4a;
    margin-top: 2px;
}
.application-survey .form-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.application-survey .form-counter {
    font-size: 11px;
    color: #a0b0c8;
    white-space: nowrap;
    flex-shrink: 0;
}
.application-survey .form-counter__current {
    color: #2e7cd6;
    font-weight: 500;
}
.application-survey .form-textarea {
    height: auto;
    min-height: 152px;
    resize: vertical;
    line-height: 1.6;
}
.application-survey .form-group--full {
    grid-column: 1/-1;
}

.welcome-list {
    padding: 24px;
    border-radius: 4px;
    border-left: 4px solid #0444bc;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 32px;
}
.welcome-list--header {
    color: #1d3c75;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 16px;
}
.welcome-list--content {
    color: #1d3c75;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}
.welcome-list--content :not(:last-child) {
    margin-bottom: 14px;
}
.welcome-list--content li::before {
    content: "";
    width: 15px;
    height: 24px;
    display: inline-block;
    background-image: url(/site/assets26/images/icons/success-blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 6px;
    vertical-align: text-top;
}

.welcome-page .page-header__title {
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
    color: #0a0a0a;
    -webkit-text-fill-color: unset;
    margin-bottom: 16px;
}
@media (max-width: 900px) {
    .welcome-page .page-header__title {
        font-size: 32px;
        line-height: 32px;
    }
}
.welcome-page .page-header__subtitle {
    color: #1d3c75;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.welcome-page .welcome-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
@media (max-width: 900px) {
    .welcome-page .welcome-info {
        grid-template-columns: repeat(1, 1fr);
    }
}
.welcome-page .welcome-info--item {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.08);
    padding: 17px;
}
.welcome-page .welcome-link {
    display: flex;
    align-items: center;
    gap: 15px;
}
@media (max-width: 900px) {
    .welcome-page .welcome-link {
        display: block;
        text-align: center;
    }
}
.welcome-page .welcome-link--item {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}
.welcome-page .welcome-link--dot {
    background-color: #cbd5e1;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}
@media (max-width: 900px) {
    .welcome-page .welcome-link--dot {
        margin: auto;
    }
}
.welcome-page .welcome-link--primary {
    color: #0ea5e9;
}
.welcome-page .welcome-link--primary::after {
    content: "→";
    margin-left: 2px;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.welcome-page .welcome-link--primary:hover::after {
    transform: translateX(5px);
}
.welcome-page .welcome-link--secondary {
    color: #64748b;
}
.welcome-page .welcome-link--secondary::before {
    content: "←";
    margin-right: 2px;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.welcome-page .welcome-link--secondary:hover::before {
    transform: translateX(-5px);
}

.category-page .category-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.category-page .category-item {
    cursor: pointer;
}
.category-page .category-item__input {
    display: none;
}
.category-page .category-item__card {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    border-radius: 16px;
    padding: 28px 30px;
    transition: border-color 0.2s, background 0.2s;
}
.category-page .category-item__card--active,
.category-page .category-item__card:hover {
    border: 1px solid #163ccb;
    background: #ccddef;
}
.category-page
    .category-item:hover
    .category-page
    .category-item__card:not(.category-item__card--active) {
    border-color: rgba(26, 77, 179, 0.4);
    background: rgba(26, 77, 179, 0.02);
}
.category-page .category-item__header {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 10px;
}
.category-page .category-item__radio-dot {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 2px solid #7f93b7;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s;
}
.category-page .category-item__radio-dot::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: white;
    opacity: 0;
    inset: 0;
    transition: opacity 0.2s;
}
.category-page .category-item__radio-dot--active {
    border: 4px solid #0444bc;
}
.category-page .category-item__radio-dot--active::after {
    opacity: 1;
}
.category-page .category-item__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 10px;
    background: var(
        --Gradient-Button-Default,
        linear-gradient(208deg, #2563eb -23.91%, #002b7a 88%)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.category-page .category-item__desc {
    color: #1d3c75;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding-left: 30px;
}
.category-page .category-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 30px;
    margin-top: 40px;
}
.category-page .category-item__tag {
    color: #013d79;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    background: rgba(193, 215, 242, 0.18);
    border-radius: 50px;
    padding: 5px 13px;
    white-space: nowrap;
}
@media (max-width: 900px) {
    .category-page .category-item__tag {
        white-space: wrap;
    }
}

.documents-layout {
    display: grid;
    grid-template-columns: 1fr 355px;
    gap: 20px;
    align-items: start;
}
@media (max-width: 680px) {
    .documents-layout {
        grid-template-columns: 1fr;
    }
}

.documents-page .documents-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.documents-page .upload-card {
    padding: 20px 36px;
    border-radius: 12px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.19);
}
.documents-page .upload-card__header {
    margin-bottom: 24px;
}
.documents-page .upload-card__title {
    color: #1d3c75;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 12px;
    display: block;
}
.documents-page .upload-card__hint {
    display: block;
    color: #0f80dd;
    font-size: 16px;
}
.documents-page .upload-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 42px;
    border-radius: 12px;
    border: 1px dashed #9ea6af;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.documents-page .upload-dropzone:hover,
.documents-page .upload-dropzone:focus-visible {
    border-color: #1a4db3;
    background: #e3ecfa;
    outline: none;
}
.documents-page .upload-dropzone__icon {
    margin-bottom: 16px;
    transition: border-color 0.2s, color 0.2s;
}
.upload-dropzone:hover .documents-page .upload-dropzone__icon {
    border-color: #1a4db3;
    color: #1a4db3;
}
.documents-page .upload-dropzone__primary {
    color: #1d3c75;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 4px;
}
.documents-page .upload-dropzone__secondary {
    color: #9ea6af;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.summary-page .criteria-panel__title {
    color: #0a0a0a;
}
.summary-page .criteria-list__item {
    border-radius: 4px;
    border-left: 4px solid #0444bc;
    background: rgba(255, 255, 255, 0.4);
    padding: 12px 12px 12px 16px;
    color: #013d79;
}
.summary-page .welcome-list {
    color: #013d79;
    padding: 16px 16px 16px 20px;
    margin-top: 28px;
}
.application-survey .welcome-list {
    text-align: left;
}
.summary-page .welcome-list .welcome-list--content li::before {
    content: "•";
    background-image: unset;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.312px;
}

.steps {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-bottom: 0;
    margin-bottom: 36px;
}
@media (max-width: 900px) {
    .steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}
.steps::after {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
    height: 24px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
}
.steps__progress {
    position: absolute;
    bottom: -24px;
    left: 0;
    height: 24px;
    background: linear-gradient(
        90deg,
        #0444bc 0%,
        #0746c0 7.69%,
        #0a49c3 15.38%,
        #0d4bc7 23.08%,
        #104dca 30.77%,
        #1250ce 38.46%,
        #1552d1 46.15%,
        #1755d5 53.85%,
        #1a57d9 61.54%,
        #1c59dc 69.23%,
        #1e5ce0 76.92%,
        #215ee4 84.62%,
        #2361e7 92.31%,
        #2563eb 100%
    );
    border-radius: 16px;
    transition: width 0.3s ease;
    z-index: 1;
}
.steps__progress::after {
    content: attr(data-pct);
    position: absolute;
    left: 50%;
    bottom: 2px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    transform: translateX(-50%);
    white-space: nowrap;
}
.steps__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.steps__bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 400;
    transition: background 0.2s;
    border: 2px solid #e0ebf5;
    background: #fff;
    color: #9ea6af;
}
.steps__item--done .steps__bubble,
.steps__item--active .steps__bubble {
    background: #1a4db3;
    color: #fff;
    border-color: #1a4db3;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.steps__label {
    font-size: 11px;
    color: #8a9bb5;
}
.steps__item--done .steps__label,
.steps__item--active .steps__label {
    color: #1a4db3;
    font-weight: 400;
}

.survey-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 4px;
    border-left: 4px solid #0444bc;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 24px;
}
.survey-info img {
    width: 20px;
    height: 20px;
}
.survey-info span {
    color: #1e3a8a;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
}

.tabs-container {
    display: flex;
    margin-top: 80px;
    width: 100%;
}
.tabs-container .tabs-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 4px;
    gap: 4px;
    margin: 0;
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid #fff;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.tabs-container .tab-item {
    display: flex;
    align-items: center;
}
.tabs-container .tab-item .tab-btn {
    background: transparent;
    border: none;
    outline: none;
    color: #1d3c75;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    padding: 10px 53px;
    border-radius: 100px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.tabs-container .tab-item.active .tab-btn,
.tabs-container .tab-item:hover .tab-btn {
    background: #fff;
}

@media (max-width: 992px) {
    .tabs-container {
        margin-top: 40px;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    .tabs-container::-webkit-scrollbar {
        display: none;
    }
    .tabs-container {
        scrollbar-width: none;
    }
    .tabs-container .tabs-list {
        width: max-content;
        display: flex;
        background: none;
        border: 0;
        gap: 4px;
    }
    .tabs-container .tab-item {
        border-radius: 100px;
        border: 1px solid #fff;
        background: #f4f8fd;
    }
    .tabs-container .tab-item.active .tab-btn {
        background: #c1d6fe;
    }
    .tabs-container .tab-item .tab-btn {
        font-size: 9px;
        padding: 4px 8px;
    }
}
.juries {
    margin-top: 40px;
}

.nomination {
    margin-top: 18px;
}
.nomination-wrapper {
    padding: 60px 68px;
    backdrop-filter: blur(4px);
    border: 1px solid #ffffff;
    background: rgba(255, 255, 255, 0.3215686275);
    border-radius: 12px;
}
.nomination-wrapper:not(:first-child) {
    margin-top: 20px;
}
.nomination-wrapper:hover {
    background: rgba(255, 255, 255, 0.96);
}
@media (max-width: 900px) {
    .nomination-wrapper {
        padding: 28px 22px;
    }
}
.nomination-box {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 900px) {
    .nomination-box {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 32px;
    }
}
.nomination-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    background: linear-gradient(207.64deg, #2563eb -23.91%, #002b7a 88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .nomination-title {
        font-size: 20px;
        line-height: 28px;
    }
}

.nomination-item {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    padding: 24px 30px 26px 32px;
    background-color: #4090ed;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease,
        border-color 0.4s ease-in-out;
}
.nomination-item:hover {
    color: #4090ed;
    background-color: #fff;
    border-color: #4090ed;
    cursor: pointer;
}
@media (max-width: 768px) {
    .nomination-item {
        font-size: 16px;
        padding: 14px;
    }
}

.evaluation-section {
    padding: 20px;
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.3803921569);
    border-radius: 16px;
}

@media (max-width: 768px) {
    .evaluation-section {
        display: none;
    }
}

.evaluation-section .table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 20px;
    background: #ffffff;
}
.evaluation-section .criteria-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: system-ui, -apple-system, sans-serif;
}
.evaluation-section .criteria-table thead tr th {
    background-color: #3b82f6;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    padding-inline: 32px;
    text-align: left;
    height: 76px;
    border-bottom: 4px solid rgb(234, 242, 249);
    border-right: 4px solid rgb(234, 242, 249);
}
.evaluation-section .criteria-table thead tr th:first-child {
    border-top-left-radius: 12px;
}
.evaluation-section .criteria-table thead tr th:last-child {
    border-top-right-radius: 12px;
    border-right: 0;
}
.evaluation-section .criteria-table tbody tr {
    transition: background-color 0.2s ease;
}
.evaluation-section .criteria-table tbody tr:hover {
    background-color: #f8fafc;
}
.evaluation-section .criteria-table tbody tr td {
    padding: 20px 32px;
    font-size: 16px;
    color: #1e293b;
    line-height: 22px;
    border-bottom: 4px solid rgb(234, 242, 250);
    vertical-align: middle;
    background-color: white;
}
.evaluation-section .criteria-table tbody tr td:first-child {
    border-right: 4px solid rgb(234, 242, 250);
}
.evaluation-section .criteria-table tbody tr td:nth-child(2) {
    border-right: 4px solid rgb(234, 242, 250);
}
.evaluation-section .criteria-table tbody tr:last-child td {
    border-bottom: none;
}
.evaluation-section .criteria-table .font-medium {
    font-weight: 600;
    color: #1d3c75;
}
.evaluation-section .criteria-table .score-cell {
    text-align: center;
    font-weight: 700;
    color: #2563eb;
    font-size: 16px;
}
.evaluation-section .criteria-table .description-text {
    color: #4b5563;
    font-weight: 400;
}

.evaluation-mobile {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .evaluation-mobile {
        display: flex;
    }
}

.evaluation-mobile__top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.evaluation-mobile__top-left {
    flex: 1;
    background: linear-gradient(
        90deg,
        #2563eb 0%,
        #2461e9 11.11%,
        #235ee7 22.22%,
        #225ce5 33.33%,
        #215ae3 44.44%,
        #2057e0 55.56%,
        #1f55de 66.67%,
        #1f53dc 77.78%,
        #1e50da 88.89%,
        #1d4ed8 100%
    );
    border-radius: 10px;
    padding: 16px;
}

.evaluation-mobile__top-right {
    background: linear-gradient(
        90deg,
        #2563eb 0%,
        #2461e9 11.11%,
        #235ee7 22.22%,
        #225ce5 33.33%,
        #215ae3 44.44%,
        #2057e0 55.56%,
        #1f55de 66.67%,
        #1f53dc 77.78%,
        #1e50da 88.89%,
        #1d4ed8 100%
    );
    border-radius: 10px;
    padding: 16px;
    width: 80px;
}

.evaluation-mobile__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.evaluation-mobile-item {
    background-color: #fff;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.evaluation-mobile-item__top {
    display: flex;
    gap: 20px;
}

.evaluation-mobile-item-title {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.evaluation-mobile-item-score {
    padding: 10px;
    background: linear-gradient(
        135deg,
        #2563eb 0%,
        #2461e9 11.11%,
        #235ee7 22.22%,
        #225ce5 33.33%,
        #215ae3 44.44%,
        #2057e0 55.56%,
        #1f55de 66.67%,
        #1f53dc 77.78%,
        #1e50da 88.89%,
        #1d4ed8 100%
    );
    color: #fff;
    font-weight: 500;
    height: 36px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.evaluation-mobile-item__content {
    font-size: 14px;
    width: 247px;
    line-height: 22.4px;
}

.upload-card button {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 12px;
    border-radius: 100px;
    border: 1px solid #fff;
    backdrop-filter: blur(2.9000000954px);
    transition: background 0.3s ease;
    background: #2171d7;
    color: #fff;
}
.upload-card button:hover {
    background-color: #153e96;
}
.result--title {
    font-weight: 500;
    font-size: 40px;
    line-height: 56px;
    background: linear-gradient(184.87deg, #2563eb 25.78%, #002b7a 85.27%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.result .welcome-list {
    margin-top: 56px;
    padding: 45px 28px 80px 28px;
}
.result .welcome-list--content li {
    font-weight: 500;
    font-size: 24px;
    line-height: 27px;
    letter-spacing: 0px;
    color: #1d3c75;
    margin-bottom: 56px;
}
.result .welcome-list--content li:nth-last-child(1) {
    margin-bottom: 0px;
}
.result .welcome-list--content li::before {
    content: unset;
}
.result .welcome-list--content li a:hover {
    background: linear-gradient(
        90deg,
        #3535ee -34.37%,
        #292ef4 -10.02%,
        #3c52f6 65.95%,
        #5581f9 168.23%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.texture-page-left {
    display: none;
}
.contact-form-wrapper .form-counter {
    position: absolute;
    bottom: -28px;
    right: 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #a8a8a8;
}
/* mobile edits*/
@media (max-width: 768px) {
    .application-survey.registration-wrapper {
        padding: 24px 20px;
        margin-top: 40px;
        background: rgba(255, 255, 255, 0.23);
    }
    .application-survey .form-input::placeholder {
        font-weight: 300;
    }
    .application-survey.registration-wrapper .form-input {
        background-color: #ffffff7d;
    }
    .application-survey.registration-wrapper .form-label {
        color: #00243e;
    }
    .application-survey.registration-wrapper .form-select {
        background-image: url("/site/assets26/images/icons/mobile-select.svg");
        font-weight: 300;
        color: #999999;
    }
    .application-survey.registration-wrapper
        .form-wrapper
        .form-group:nth-child(5)
        > .form-input::placeholder {
        font-size: 12px;
    }
    .application-survey.registration-wrapper .form-textarea {
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.06) 0%,
            rgba(153, 153, 153, 0.054) 100%
        );
        border: 1px solid #5ca5ff59;
    }
    .application-survey.registration-wrapper
        .radio-options
        input[type="radio"] {
        border-color: #35a0f9;
    }
    .application-survey.registration-wrapper
        .radio-options
        input[type="radio"]::before {
        color: #163ccb;
    }
    .application-survey.registration-wrapper .registration-row button {
        background: #2349d5;
        transition: background 0.5s ease;
    }
    .application-survey.registration-wrapper .registration-row button:hover {
        background: linear-gradient(180deg, #2a6cfb 0%, #003697 100%);
    }
    .application-survey.registration-wrapper .registration-row .term-text {
        color: #00243e;
    }
    .texture-page-left {
        position: absolute;
        left: -25%;
        top: -15%;
        width: 386px;
        height: 700px;
        display: block;
        z-index: -1;
    }
    .program-wrapper {
        background: #cce3f9;
        padding: 32px 18px 20px;
    }
    .program .pdf-download {
        display: flex;
        justify-content: start;
        color: #3f82ff;
        margin-top: 16px;
    }
    .pdf-download span {
        font-size: 20px;
    }
    .schedule {
        margin-top: 16px;
    }
    .time {
        font-weight: 600;
        font-size: 20px;
        line-height: 28px;
    }
    .contact-form .contact-form--mobile,
    .contact-form .contact-form--description {
        display: block;
    }
    .contact-form .contact-form--description {
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        color: #00467a;
        margin-block: 24px;
    }
    .contact-form h1 {
        display: none;
    }
    .contact-form .input-wrapper input::placeholder,
    .input-wrapper textarea::placeholder {
        font-weight: 400;
        color: #00467a;
    }
    .contact-form-wrapper {
        background: #ffffff6b;
        border: 1px solid #ffffff;
        border-radius: 16px;
        padding: 24px 20px;
    }
    .contact-form-wrapper .form-counter {
        color: #00467a;
    }
    .contact-form-wrapper textarea {
        max-width: 100%;
    }
    .contact-form p {
        font-weight: 400;
        font-size: 12px;
        line-height: 20px;
        color: #1d3c75;
    }
    .contact-form p > a {
        font-weight: 300;
    }
    .contact-form button {
        background: #2349d5;
        transition: background 0.5s ease;
    }
    .contact-form button:hover {
        background: linear-gradient(180deg, #2d72c8 0%, #1d5eaf 100%);
    }
    .contact-page .footer-texture {
        display: none;
    }

    .contact-page #map {
        margin-top: 60px;
    }
    .contact-box--wrapper {
        height: auto;
    }
}
