/*--- RESET--- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "FiraGO-Regular";
    src: url("../fonts/FiraGO-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FiraGO-Bold";
    src: url("../fonts/FiraGO-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FiraGO-Medium";
    src: url("../fonts/FiraGO-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DM Giorgi";
    src: url("../fonts/dm-giorgi-khorguashvili.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    background: linear-gradient(
        323.83deg,
        #17389d 20.41%,
        #08267f 57.38%,
        #051c5e 86.4%
    );
    font-family: "FiraGO-Regular", sans-serif;
}

/*--- UTILITIES--- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---CONTAINER ---*/
.container {
    width: min(1200px, 100% - 40px);
    margin-inline: auto;
    padding: 0 20px;
}

/* ---HEADER--- */
.header {
    padding-top: 20px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    width: 328px;
    height: 85px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LOGO LINK */

.logo-link {
    display: flex;
    align-items: center;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

/* LOGO IMAGE */

.logo {
    width: 328.83px;
    height: 84.82px;

    object-fit: contain;

    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.socials {
    display: flex;
    align-items: center;
    width: 163px;
    height: 40px;
    gap: 14px;
    padding: 0 12px;
    border-radius: 16px;
    border: 1px solid rgba(7, 174, 230, 0.3);
    background: linear-gradient(
        90deg,
        rgba(9, 90, 187, 0.83) 0%,
        rgba(4, 41, 85, 0.2) 100%
    );

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        color 0.3s ease;
}

.socials a:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.lang {
    display: flex;
    align-items: center;
    gap: 2px;
    width: 86px;
    height: 25px;
    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.lang-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 25px;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.01);
    box-shadow:
        inset 0 4px 4px rgba(0, 0, 0, 0.15),
        0 4px 4px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.lang-link.active {
    color: #00b8e1;
    background: rgba(255, 255, 255, 0.01);
    box-shadow:
        inset 0 4px 4px rgba(0, 0, 0, 0.15),
        0 4px 4px rgba(0, 0, 0, 0.15);
}

.lang-divider {
    color: #ffffff;
    opacity: 0.9;
}
/* BURGER */

.burger {
    display: none;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 10000;
}

.burger span {
    width: 24px;
    height: 2px;

    border-radius: 2px;

    background: #ffffff;

    transition: 0.3s ease;
}
/* =========================
   MOBILE MENU
========================= */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;

    display: none;

    justify-content: flex-end;
    align-items: flex-start;

    overflow: hidden;

    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);

    z-index: 9999;
}
.mobile-menu-overlay.active {
    display: flex;
}

/* MENU */

.mobile-menu {
    box-sizing: border-box;
    width: 320px;
    max-width: calc(100vw - 32px);

    height: 861px;
    overflow-y: auto;
    padding: 40px 24px;

    background: #ffffff;

    backdrop-filter: blur(35px);

    border-radius: 16px 0 0 16px;

    box-shadow: 0 3px 13px rgba(3, 48, 53, 0.17);

    display: flex;
    flex-direction: column;
    align-items: center;
}
/* TOP */

.mobile-menu-top {
    width: 272px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 32px;
}

.mobile-menu-logo {
    width: 46px;
    height: auto;
}

.mobile-menu-close {
    border: none;
    background: transparent;

    font-size: 32px;
    line-height: 1;

    cursor: pointer;

    color: #1f2a37;
}

/* SOCIALS */

.mobile-menu-socials {
    width: 163px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    border-radius: 16px;
    background: #0069b5;
    margin-bottom: 32px;
}

.mobile-menu-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

/* NAV */

.mobile-menu-nav {
    width: 272px;

    display: flex;
    flex-direction: column;

    gap: 24px;

    margin-bottom: 24px;
}

.mobile-menu-nav a {
    width: 272px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    border-radius: 16px;

    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 500;

    color: #1f2a37;
}

.mobile-menu-nav a.active {
    background: #ffffff;

    box-shadow:
        0 0 12px rgba(0, 145, 226, 0.25),
        0 0 4px rgba(0, 145, 226, 0.15);
}

/* SEARCH */

.mobile-menu-search {
    width: 272px;
    height: 56px;

    display: flex;
    align-items: center;

    padding: 0 20px;

    border-radius: 16px;

    background: #ffffff;

    box-shadow: 0 2px 9px rgba(34, 60, 110, 0.12);
}

.mobile-menu-search img {
    width: 20px;
    height: 20px;
}

.mobile-menu-search input {
    flex: 1;

    margin-left: 12px;

    border: none;
    outline: none;

    background: transparent;

    font-family: "FiraGO", sans-serif;
}

/*footer mobile*/
.footer-mobile {
    display: none;

    position: relative;

    width: 100%;

    padding: 22px 19px;

    background-image: url("../images/mobile-footer-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    box-sizing: border-box;

    color: #ffffff;
}
.footer-mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 24px;
}

.footer-mobile-logo {
    width: 59px;
    height: 59px;

    display: block;

    margin-bottom: 20px;
}

.footer-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-bottom: 24px;
}

.footer-mobile-nav a {
    text-decoration: none;

    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;

    color: #0091e2;
}
.footer-mobile-contact-title {
    text-align: center;

    margin-bottom: 20px;

    font-family: "FiraGO", sans-serif;
    font-size: 20px;
    font-weight: 500;

    color: #00a8ff;
}
.footer-mobile-contact {
    margin-bottom: 24px;
}

.footer-mobile-item {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 14px;
}

.footer-mobile-item a {
    color: #0091e2;
    text-decoration: none;
}

.footer-mobile-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 163px;
    height: 40px;

    border: 1px solid #0091e2;
    border-radius: 16px;

    margin: 0 auto 20px;
}

.footer-mobile-form {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin-bottom: 20px;
}

.footer-mobile-form input {
    width: 100%;
    height: 40px;

    border: 1px solid #0091e2;
    border-radius: 8px;

    background: transparent;

    padding: 0 16px;

    color: #ffffff;
}

.footer-mobile-form button {
    width: 167px;
    height: 40px;
    font-family: "FiraGO", sans-serif;
    margin: 0 auto;

    border: none;
    border-radius: 8px;

    background: #0091e2;

    color: #ffffff;
}

.footer-mobile-quote {
    text-align: center;

    font-family: "DM Giorgi", sans-serif;
    font-size: 16px;
    line-height: 150%;

    margin-bottom: 20px;
    background: linear-gradient(
        90deg,
        #048fc4 0%,
        #26a7d9 35%,
        #7fd4f2 60%,
        #ffffff 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}

.footer-mobile-line {
    width: 157px;
    height: 1px;

    margin: 0 auto 14px;

    background: rgba(255, 255, 255, 0.3);
}

.footer-mobile-bottom {
    text-align: center;

    font-family: "FiraGO", sans-serif;
    font-size: 12px;
}
.nav {
    margin: 21px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(996px, 100%);
    flex-wrap: wrap;
    height: auto;
    min-height: 57px;
    padding-inline: clamp(20px, 4vw, 60px);
    border-radius: 16px;
    background: rgba(11, 44, 139, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow:
        inset 0 4px 12px rgba(21, 101, 255, 0.5),
        0 7px 14px rgba(0, 125, 195, 0.15);
}

.nav a {
    color: white;
    text-decoration: none !important;
    padding: 8px 18px;
    border-radius: 8px;
    transition: 0.3s;
    font-family: "FiraGO", sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        color 0.35s ease;
}

.nav a:hover {
    background: rgba(9, 42, 131, 0.9);
    box-shadow:
        inset 0 4px 10px rgba(0, 184, 225, 0.28),
        0 0 12px rgba(0, 184, 225, 0.18);
    color: #ffffff;
    text-decoration: none !important;
}
/* 
.nav a:hover::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -1px;
    height: 1px;
    background: rgba(0, 184, 225, 0.8);
    box-shadow: 0 0 8px rgba(0, 184, 225, 0.8);
} */

.nav a.active {
    background: rgba(18, 69, 199, 0.2);
    border: 1px solid rgba(0, 184, 225, 0.25);
    box-shadow:
        inset 0 2px 8px rgba(41, 134, 255, 0.35),
        0 1px 10px rgba(153, 227, 255, 0.3);
    color: #ffffff;
    text-decoration: none !important;
}

.main-title {
    max-width: 656px;
    width: 90%;
    margin: 39px auto 0;
    font-family: "FiraGO", sans-serif;

    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    text-align: center;
    color: #ffffff;
}
.uppercase {
    font-family: "FiraGO", sans-serif;
    text-transform: uppercase;
    font-feature-settings:
        "case" 1,
        "c2sc" 1,
        "smcp" 1;
    letter-spacing: 0.02em;
}

.cards {
    margin-top: clamp(30px, 4vw, 44px);
    display: flex;
    justify-content: center;
    gap: clamp(20px, 3vw, 52px);
    flex-wrap: wrap;
}

.card {
    background: #f8fbff;
    border-radius: 16px;
    padding: 33px;
    border: 7px solid transparent;
    background-image:
        linear-gradient(#f5f7fb, #f5f7fb),
        linear-gradient(180deg, #b7caf3 0%, #e6eeff 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 18px rgba(147, 174, 228, 0.4);
}

/*left card*/
.card-left {
    width: min(630px, 100%);
    height: 309px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search {
    width: min(496px, 100%);
    height: 61px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 1px 12px rgba(64, 113, 255, 0.3);
}

.search input {
    flex: 1;
    border: none;
    outline: none;
    margin-left: 12px;
    width: 100%;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #02103a;
    height: 61px;
}

.search img {
    width: 28px;
    height: 28px;
}

.icon {
    position: relative;
    padding-right: 15px;
}

.icon::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: #e3ebf5;
}

.search input::placeholder {
    color: #02103a;
}

.tags {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 507px;
    margin-top: 40px;
}

.tags-label {
    color: #02103a;
    font-family: "FiraGO", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.tags-list {
    display: flex;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 9px 12px;
    border-radius: 20px;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #223c6e;
    background: rgba(0, 145, 226, 0.3);
    box-shadow: 0 2px 4px rgba(34, 60, 110, 0.2);
}

.divider-line {
    width: 260px;
    height: 1px;
    background: #e3ebf5;
    margin-top: 42px;
}

.icons {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 41px;
}

.icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.icons a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* RIGHT CARD */
.card-right {
    position: relative;
    width: min(517px, 100%);
    height: 311px;
    display: flex;
    flex-direction: column;
    padding: 0 26px;
}

.card-title {
    width: 178px;
    display: flex;
    align-items: center;
    gap: 27px;
    margin-top: 26px;
    font-family: "FiraGO", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #223c6e;
}

.card-right::after {
    content: "";
    position: absolute;
    margin-top: 41px;
    right: 20px;
    width: 260px;
    height: 1px;
    background: #e3ebf5;
}

.slashes {
    display: flex;
    gap: 4px;
    align-items: center;
    transform: translateY(2px);
}

.slashes::before,
.slashes::after {
    content: "";
    width: 7px;
    height: 31px;
    background: #ffb901;
    transform: rotate(29deg);
    display: block;
}

.highlight {
    width: 325px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 27px auto;
    font-family: "DM Giorgi", sans-serif;
    background-image: url("../images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #193f59;
}

.card-text {
    width: 436px;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    margin-top: 20px;
}

.bottom-row {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 35px;
}

.more {
    font-family: "FiraGO-Bold", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #232323;
}

.btn {
    width: 145px;
    height: 35px;
    border: none;
    border-radius: 16px;
    background: rgba(64, 120, 190, 0.15);
    box-shadow: 0 2px 9px rgba(35, 60, 110, 0.1);
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/*--- BLUE SECTION ---*/
.blue-section {
    position: relative;
    overflow: hidden;
}

.blue-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 380px;
    background-image: url("../images/gradient2.png");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.handwritten-text {
    font-family: "DM Giorgi", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    background: linear-gradient(
        90deg,
        #07aee6 0%,
        #5fd3f5 35%,
        #dff7ff 70%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 50px auto;
    max-width: 643px;
    padding-top: 6px;
    padding-bottom: 4px;
}

.subscribe-btn {
    position: absolute;
    top: 60px;
    right: -12px;
    width: 120px;
    height: 40px;
    border: none;
    border-radius: 16px 0 0 16px;
    background: #0091e2;
    color: #ffffff;
    font-family: "FiraGO", sans-serif;
    font-weight: 500;
    font-size: 16px;
    z-index: 10;
}

.user-options {
    max-width: 996px;
    width: 100%;
    margin: 104px auto 28px;
    position: relative;
    z-index: 2;
}

.handwritten-text,
.user-options {
    position: relative;
    z-index: 2;
}

.question-title {
    position: relative;
    width: fit-content;
    margin: 0 auto 52px;
    font-family: "FiraGO-Medium", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
    line-height: 100%;
}

.question-title::before,
.question-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 203px;
    height: 1px;
    background: #ffffff;
}

.question-title::before {
    left: -;
}

.question-title::before {
    right: calc(100% + 27px);
}

.question-title::after {
    left: calc(100% + 27px);
}

.options {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 3vw, 40px);
    flex-wrap: wrap;
}

.option {
    width: min(256px, 100%);
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border-radius: 16px;
    background: rgba(218, 234, 246, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0px 11px 16px rgba(34, 60, 110, 0.25),
        inset 0px 4px 7px rgba(253, 254, 255, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #ffffff;
    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 500;
}

/*--- ARTICLES SECTION სიახლეები---*/
.articles-section {
    width: 100%;
    padding: 40px 120px;
    background: #ffffff;
}

.articles-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 51px;
}

.articles-header h2 {
    font-family: "FiraGO-Medium", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1f2a37;
}

.line {
    width: 203px;
    height: 2px;
    background: #e4e5e9;
}

.articles-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.article-card {
    display: block;
    text-decoration: none;
    color: inherit;

    width: 281px;
    height: 308px;

    padding: 1px;

    border-radius: 16px;

    background: linear-gradient(180deg, #f3f3f4 0%, #e9eaec 100%);

    overflow: hidden;

    transition: height 0.4s ease;
}
.article-card-inner {
    width: 100%;
    height: 100%;

    padding: 7px;

    background: #f8f8f9;
    border: 1px solid #ececef;

    border-radius: 15px;

    box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.06);

    overflow: hidden;
}

.article-image {
    position: relative;
    width: 100%;
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
    background: #ebebed;
}
.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-date {
    width: 87px;
    height: 21px;
    position: absolute;
    top: 19px;
    right: 14px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    font-family: "FiraGO", sans-serif;
}

.article-content {
    padding: 16px;
}

.article-content p {
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #232323;

    max-height: 72px; /* 3 ხაზი */

    overflow: hidden;

    transition: max-height 0.4s ease;
}

.view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: calc(100% - 410px);
    margin-top: 28px;
    width: 183px;
    height: 48px;
    border: none;
    border-radius: 16px;
    background: rgba(64, 120, 190, 0.15);
    box-shadow: 0 2px 9px rgba(34, 60, 110, 0.1);
    backdrop-filter: blur(4px);
    color: #000000;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.3s ease;
}

.article-full-btn {
    width: 90px;
    height: 34px;
    display: block;
    margin: 10px auto 0;
    border: none;
    border-radius: 10px;

    background: rgba(64, 120, 190, 0.15);

    font-family: "FiraGO", sans-serif;
    font-size: 16px;

    opacity: 0;
    visibility: hidden;

    margin-top: 10px;

    cursor: pointer;

    transition: 0.3s ease;
}
.article-card:hover {
    height: 430px;
}
.article-card:hover .article-content p {
    max-height: 150px;
}
.article-card:hover .article-full-btn {
    opacity: 1;
    visibility: visible;
}

.article-full-btn:hover {
    transform: translateY(-2px);
}

/* --- learn section--- */
.learn-section {
    position: relative;
    padding: 48px 0;
    background: #dde9fa;
    overflow: hidden;
}

.learn-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    margin-bottom: 70px;
}

.learn-line {
    width: 203px;
    height: 2px;
    background: #ffffff;
}

.learn-title {
    font-family: "FiraGO-Medium", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #1f2a37;
}

.learn-content {
    position: relative;
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.learn-left {
    position: absolute;
    left: -120px;
    top: -50px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.learn-label {
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.learn-bottom-line {
    width: 185px;
    height: 1px;
    background: #cdcdcd;
    position: absolute;
    left: -100px;
    bottom: -12px;
}

.learn-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.learn-question {
    max-width: 572px;
    height: 19px;
    margin-bottom: 46px;
    text-align: center;
    font-family: "FiraGO", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #000000;
}

.learn-options {
    display: flex;
    align-items: center;
    gap: 71px;
    width: 893px;
}

.learn-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 70px;
    border-radius: 16px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 13px rgba(34, 60, 110, 0.25);
    backdrop-filter: blur(8px);
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #223c6e;
    cursor: pointer;
    transition: 0.25s ease;
}

/* CIRCLE */
.circle {
    position: absolute;
    border-radius: 50%;
}

/* დიდი */

.circle-lg {
    position: absolute;
    width: 92px;
    height: 92px;
    left: 530px;
    top: 150px;
    border-radius: 50%;
    opacity: 0.21;
    background: linear-gradient(
        180deg,
        rgba(64, 120, 190, 0.55) 0%,
        rgba(64, 120, 190, 0.35) 100% transparent
    );

    box-shadow: inset 20px -8px 27px #4078be80;

    backdrop-filter: blur(27px);
}

/* საშუალო */

.circle-md {
    position: absolute;
    width: 83px;
    height: 83px;
    left: 820px;
    top: 265px;
    border-radius: 50%;
    opacity: 0.41;

    background: linear-gradient(
        180deg,
        rgba(0, 184, 225, 1) 0%,
        rgba(69, 174, 197, 0.67) 100% transparent
    );

    box-shadow: inset 20px -8px 27px rgba(0, 155, 186, 0.5);
}

/* პატარა */

.circle-sm {
    position: absolute;
    width: 42px;
    height: 42px;
    left: 1136px;
    top: 168px;
    border-radius: 50%;
    opacity: 0.21;

    background: linear-gradient(
        180deg,
        rgba(64, 120, 190, 1) 0%,
        rgba(64, 120, 190, 0.67) 100% transparent
    );

    box-shadow: inset 20px -8px 27px rgba(64, 120, 190, 0.5);
}
/* --- EVENT SECTION --- */
.event-section {
    padding: 70px 0 85px;
    background: #ffffff;
}

.event-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    margin-bottom: 32px;
}

.event-line {
    width: 203px;
    height: 2px;
    background: #e4e5e9;
}

.event-title {
    font-family: "FiraGO-Medium", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #1f2a37;
}

/* --- CARDS --- */

.event-cards {
    width: 1202px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 41px;
}

.event-card {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 387px;
    height: 234px;
}

.event-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(36, 60, 110, 0.12);
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.event-overlay {
    position: absolute;
    inset: 0;
}

.event-badge {
    position: absolute;
    top: -10px;
    z-index: 2;
    min-width: 77px;
    height: 32px;
    padding: 0 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: black;
    background: #ebeef4b2;
    backdrop-filter: blur(6px);
}

.event-badge.online {
    background: #bbe2f9b2;
    color: black;
}

.event-date {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.event-card-title {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 60px;
    z-index: 2;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    color: #ffffff;
    text-align: center;
}

.event-button {
    width: 183px;
    height: 48px;
    display: block;
    margin-left: calc(100% - 140px);
    border: none;
    border-radius: 16px;
    background: #4078be26;
    box-shadow: 0 4px 10px rgba(36, 60, 110, 0.08);
    color: #000000;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.25s ease;
    margin-bottom: 64px;
}

/* --- FOOTER --- */

.footer {
    position: relative;
    padding-top: 20px;
    background: linear-gradient(135deg, #10225d 0%, #16348a 50%, #1d3f9c 100%);
    color: #ffffff;
}

/* ფონის ხაზები */
.footer-overlay {
    position: absolute;
    inset: 0;
    background-image: url("../images/footer.png");
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* --- COLUMNS --- */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    margin-bottom: 18px;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #0091e2;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
}

.footer-links a {
    font-family: "FiraGO", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: #07aee6;
}

.footer-modules {
    min-width: 212px;
}

.footer-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 90px;
}

/* --- CENTER --- */
.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 100px;
}

.footer-logo {
    width: 75px;
    margin-bottom: 28px;
}

.footer .socials {
    display: flex;
    align-items: center;
    width: 163px;
    height: 40px;
    gap: 14px;
    padding: 0 12px;
    border-radius: 16px;
    border: 1px solid#0091E2;
    background: transparent;
    margin-top: 64px;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        color 0.3s ease;
}

.socials a:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.footer-quote {
    position: relative;
    z-index: 2;

    margin-top: 24px;
    margin-left: 150px;

    padding-top: 4px;
    padding-bottom: 4px;

    font-family: "DM Giorgi", sans-serif;
    font-size: 16px;
    font-weight: 400;

    line-height: 150%;

    background: linear-gradient(90deg, #048fc4 0%, #ffffff 30%);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* --- CONTACT --- */
.footer-contact {
    min-width: 290px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item img {
    width: 20px;
    height: 16px;
}

.contact-label {
    font-family: "FiraGO", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
}

.contact-link {
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #0091e2;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-form {
    margin-top: 18px;
}

.footer-form input {
    width: 296px;
    height: 40px;
    padding: 0 16px;
    border: 1px solid #0091e2;
    border-radius: 8px;
    background: transparent;
    outline: none;
    color: #c5cad9;
    margin-bottom: 12px;
}

.footer-form input::placeholder {
    color: #c5cad9;
}

.footer-form button {
    width: 167px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 6px 20px;
    margin-left: 130px;
    border: none;
    border-radius: 8px;
    background: #0091e2;
    color: #ffffff;
    font-family: "FiraGO", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    cursor: pointer;
    transition: 0.25s ease;
}

.footer-form button img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    flex-shrink: 0;
}

/* --- BOTTOM --- */
.footer-line {
    position: relative;
    z-index: 2;
    width: 796px;
    height: 1px;
    margin: 22px auto 12px;
    background: #ffffff;
    opacity: 0.3;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 18px 0;
    text-align: center;
    font-family: "FiraGO", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
}

/* =========================
   EVENTS PAGE
========================= */
/*   TITLE */

.events-page-title {
    margin-bottom: 31px;
    margin-top: 25px;
    text-align: center;
    font-family: "FiraGO-Bold", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 100%;
    color: #30cbff;
}

/* TABS */
.events-page-tabs {
    position: relative;
    z-index: 3;
    width: 1201px;
    height: 70px;
    margin: 0 auto -16px;
    display: flex;
    justify-content: center;
    gap: 47px;
}

.events-page-tab {
    position: relative;
    top: 10px;
    width: 577px;
    height: 60px;
    border: 1px solid #69aeff;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(180deg, #0f4fc6 0%, #123b92 100%);
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    text-transform: uppercase;
}

/* ACTIVE TAB */
.events-page-tab--active {
    background: linear-gradient(180deg, #1167d9 0%, #0a4697 100%);
    height: 70px;
    margin: 0 auto -20px;
    margin-top: -10px;
}

/* CONTENT AREA */
.events-page-section {
    margin-top: 14px;
}

.events-page-content {
    position: relative;
    z-index: 2;
    width: 100%;
    background: #ffffff;
    border-radius: 16px 16px 0 0;
    padding-top: 14px;
    padding-bottom: 70px;
}

/* FILTERS */
.events-page-filters {
    width: 1201px;
    margin: 0 auto 73px;
    display: flex;
    align-items: center;
    gap: 47px;
}

/* -FIELDS- */
/*  SELECT */
.events-page-field1 {
    position: relative;
    width: 579px;
    height: 42px;
    top: 35px;
}

.events-page-select {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    border: 1px solid #cbd2e2;
    border-radius: 8px;
    background: #ffffff;
    appearance: none;
    outline: none;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #47536e;
    cursor: pointer;
}

/* CUSTOM ARROW */
.events-page-field1::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #1d1d1d;
    border-bottom: 2px solid #1d1d1d;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

/* SEARCH FIELD */
.events-page-field2 {
    position: relative;
    width: 578px;
    height: 42px;
}

.events-page-search-field {
    display: flex;
    align-items: center;
    gap: 23px;
    top: 35px;
}

.events-page-search-icon {
    position: absolute;
    left: 18px;
    width: 20px;
    height: 20px;
    object-fit: contain;
    z-index: 2;
}

/* SEARCH INPUT */
.events-page-search-input {
    flex: 1;
    height: 100%;
    padding: 0 20px 0 180px;
    border: 1px solid #cbd2e2;
    border-radius: 8px;
    background: #ffffff;
    outline: none;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #a1afcf;
}

.events-page-search-input::placeholder {
    color: #a1afcf;
}

.events-search-btn {
    width: 83px;
    height: 41px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(180deg, #0c3ba5 0%, #07aee6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: #ffffff;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease,
        box-shadow 0.25s ease;
}

/* cards */
.events-grid-section {
    padding: 30px 0;
}

/* GRID */
.events-grid {
    width: 1195px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

/* CARD */
.events-grid-item {
    position: relative;
}

.events-grid-card {
    position: relative;
    width: 387px;
    height: 233px;
    overflow: hidden;
    border-radius: 16px;
}

.events-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.events-grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(31, 42, 55, 0.6) 0%,
        rgba(31, 42, 55, 0.2) 100%
    );

    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

/* BADGE */
.events-grid-badge {
    position: absolute;
    top: -12px;
    z-index: 5;
    width: 77px;
    height: 32px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #ebeef4b2;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.events-grid-badge.offline {
    background: #ebeef4b2;
    color: #000000;
}

.events-grid-badge.online {
    background: #bbe2f9b2;
    color: #000000;
}

/* DATE */
.events-grid-date {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

/* TITLE */
.events-grid-title {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 70px;
    z-index: 3;
    text-align: center;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    color: #ffffff;
}

/* PAGINATION */
.events-pagination {
    width: 1200px;
    height: 48px;
    margin: 49px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* LINES */
.events-pagination-line {
    flex: 1;
    width: 411px;
    height: 1px;
    background: #cce9f9;
}

/* BUTTON */
.events-pagination-btn {
    width: 303px;
    height: 48px;
    border: none;
    border-radius: 16px;
    background: #4078be26;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    cursor: pointer;
    transition: 0.25s ease;
}

.events-pagination-btn:hover {
    width: 100%;
    padding: 70px 0 80px;
    background: #ffffff;
}

/* =========================
   EVENTS  INNER PAGE
========================= */
/*blue section*/
.event-inner-blue-section {
    padding: 40px 0 100px;
    background: #0d2d83;
}

.event-inner-page-title {
    margin-bottom: 27px;
    margin-top: 25px;
    text-align: center;
    font-family: "FiraGO", sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 100%;
    color: #30cbff;
}

.event-inner-title {
    width: 930px;
    margin: 0 auto 29px;
    text-align: center;
    font-family: "FiraGO", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #ffffff;
    word-break: break-word;
}

.event-inner-line {
    width: 411px;
    height: 1px;
    margin: 0 auto 32px;
    background: #cce9f9;
}

.event-inner-meta {
    width: 1200px;
    margin: 0 auto 53px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-inner-location,
.event-inner-date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "FiraGO", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.event-inner-location img,
.event-inner-date img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.event-inner-badge {
    position: relative;
    height: 28px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #ffb901;
    background: #113190;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

/*white section*/
.event-inner-white-section {
    background: #ffffff;
    padding: 0 0 80px;
    position: relative;
}
.correct {
    background: #a9c2af;
}
.incorrect {
    background: rgba(255, 0, 0, 0.2);
}
.learn-result {
    display: none;
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 13px rgba(34, 60, 110, 0.25);
    backdrop-filter: blur(8px);
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #223c6e;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    border-radius: 15px;
    padding: 25px;
}
/* OVERLAP CARD */
.event-inner-card {
    width: 1200px;
    top: -80px;
    padding: 23px 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 27px rgba(202, 221, 240, 0.3);
    position: relative;
    z-index: 2;
    text-align: justify;
}

.event-inner-card p {
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #000000;
    text-align: justify;
}

.event-inner-divider {
    width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 37px;
}

.event-inner-divider-line {
    width: 100%;
    height: 1px;
    background: #cce9f9;
}

.event-inner-btn {
    width: 303px;
    height: 48px;
    border: 1px solid rgba(79, 151, 255, 0.6);
    border-radius: 16px;
    background: #143496;
    box-shadow: 0 2px 9px rgba(34, 60, 110, 0.1);
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
    transition: 0.25s ease;
}

.event-inner-btn:hover {
    transform: translateY(-2px);
}

/* =========================
   NEWS PAGE
========================= */
.news-page-section {
    position: relative;
    height: 170px;
}
.news-page-wrapper {
    position: absolute;
    top: 207px;
    width: 100%;
}

.news-page-grid-section {
    width: 100%;
    padding-top: 70px;
    background: #ffffff;
}

/*  GRID SECTION */
.news-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 281px);
    justify-content: center;
    gap: 25px;
    margin-top: 32px;
    margin-bottom: 40px;
}
.news-page-grid a {
    text-decoration: none;
    color: inherit;
}

/* CARD */
.news-page-card {
    display: flex;
    flex-direction: column;

    width: 281px;
    height: 235px;

    background: linear-gradient(
        167.98deg,
        rgba(31, 42, 55, 0.2) 3.73%,
        rgba(31, 42, 55, 0.1) 37.68%,
        rgba(31, 42, 55, 0.02) 91.22%
    );

    border-radius: 16px;
    overflow: hidden;

    box-shadow: 0 4px 18px rgba(202, 221, 240, 0.35);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.news-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(202, 221, 240, 0.45);
}

/* IMAGE */

.news-page-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 146px;
}

.news-page-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*  DATE */

.news-page-card-date {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

/* CONTENT */
.news-page-card-content {
    padding: 14px 14px 18px;
    flex: 1;
}

.news-page-card-text {
    font-family: "FiraGO", sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: #1f2937;
}

/* MORE WRAPPER */
.news-page-more-wrapper {
    width: 1200px;
    padding-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* LINES */
.news-page-more-line {
    flex: 1;
    height: 1px;
    background: #cce9f9;
}

/* BUTTON */
.news-page-more-btn {
    width: 303px;
    height: 48px;
    border: none;
    border-radius: 16px;
    background: rgba(64, 120, 190, 0.15);
    box-shadow: 0 2px 9px rgba(34, 60, 110, 0.1);
    color: #10225d;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    cursor: pointer;
    flex-shrink: 0;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.news-page-more-btn:hover {
    transform: translateY(-2px);
}

/* =========================
   NEWS INNER PAGE
========================= */
.news-inner-main-title {
    margin-top: 32px;
    margin-bottom: 32px;
    text-align: center;
    font-family: "FiraGO-Bold", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 100%;
    color: #30cbff;
}
.news-inner-section {
    padding: 34px 0 30px;
    background: #ffffff;
}

/* TOP TITLE */
.news-inner-top {
    width: 1200px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 37px;
}

.news-inner-line {
    height: 1px;
    width: 108px;
    background: #cce9f9;
}

.news-inner-title {
    max-width: 910px;
    text-align: center;
    font-family: "FiraGO-Medium", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    color: #02103a;
}

/* GALLERY WRAPPER */
.news-inner-gallery-wrapper {
    position: relative;
    width: 1304px;
    margin: 0 auto 32px;
    padding: 18px 28px 28px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

/*META*/
.news-inner-meta {
    position: absolute;
    top: 52px;
    left: 68px;
    right: 68px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* DATE */
.news-inner-date {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    color: #072375;
}

.news-inner-date img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* BADGE */
.news-inner-badge {
    height: 32px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffb901;
    border-radius: 8px;
    background: #ffffff;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    color: #072375;
}

/* =========================
   GALLERY
========================= */

.news-inner-gallery {
    width: 100%;

    margin-top: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;
}

/* IMAGES ROW */

.news-inner-gallery-grid {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ALL IMAGES */

.news-inner-gallery-item img {
    display: block;

    object-fit: cover;

    border-radius: 8px;

    transition:
        width 0.35s ease,
        height 0.35s ease,
        transform 0.35s ease,
        opacity 0.35s ease;
}

/* SIDE IMAGES */

.news-inner-gallery-item:not(.active) img {
    width: 183px;
    height: 268px;

    opacity: 0.95;
}

/* ACTIVE IMAGE */

.news-inner-gallery-item.active img {
    width: 386px;
    height: 430px;
}

/* =========================
   ARROWS
========================= */

.news-inner-arrow {
    width: 42px;
    height: 42px;

    border: none;
    background: transparent;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.news-inner-arrow img {
    width: 42px;
    height: 42px;

    object-fit: contain;

    display: block;
}

.left-arrow img {
    transform: rotate(180deg);
}

.news-inner-arrow:hover {
    transform: scale(1.08);
    opacity: 0.85;
}
/* =========================
   CONTENT CARD
========================= */

.news-inner-content-card {
    width: 1140px;

    margin: 0 auto 48px;

    padding: 22px 18px 26px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.92);
    line-height: 26px;
    text-align: justify;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    color: #000000;
    box-shadow: 0 4px 27px rgba(202, 221, 240, 0.3);
}

/* PARAGRAPHS */

.news-inner-content-card p {
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;

    color: #000000;

    text-align: justify;
}

/* SPACE BETWEEN PARAGRAPHS */

.news-inner-content-card p + p {
    margin-top: 18px;
}
/* =========================
   SOCIAL
========================= */

.news-inner-social-wrapper {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.news-inner-socials {
    display: flex;
    align-items: center;
    gap: 26px;
}

.news-inner-socials a img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.news-inner-line2 {
    height: 1px;
    width: 518px;
    background: #cce9f9;
}

/* =========================
   DICTIONARY PAGE
========================= */

.dictionary-page-section {
    padding: 39px 0 137px;
    position: relative;
    overflow: hidden;
}

.dictionary-page-container {
    width: 1280px;
    margin: 0 auto;
}

/* TITLE */

.dictionary-page-title {
    margin-bottom: 22px;
    text-align: center;
    font-family: "FiraGO", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    color: #30cbff;
}

/* DESCRIPTION */

.dictionary-page-description {
    margin-bottom: 39px;
    text-align: left;
    margin-left: 40px;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    font-style: italic;
    color: #eef6ff;
}

/* CARD */

/* OUTER CARD */
.dictionary-page-card {
    position: relative;
    width: 1211px;
    margin: 0 auto;
}

/* TABS */

.dictionary-page-tabs {
    display: flex;
    align-items: center;
    gap: 40px;
}

.dictionary-page-tab {
    flex: 1;
    height: 56px;
    border: none;
    border-radius: 16px 16px 0 0;
    background: rgba(255, 255, 255, 0.08);
    font-family: "FiraGO", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}

.dictionary-page-tab.active {
    background: linear-gradient(
        180deg,
        rgba(58, 174, 255, 0.95) 0%,
        rgba(37, 117, 255, 0.92) 100%
    );

    box-shadow:
        inset 0 2px 14px rgba(255, 255, 255, 0.28),
        0 0 18px rgba(73, 181, 255, 0.35),
        0 6px 18px rgba(0, 0, 0, 0.2);

    color: #ffffff;
}

/* INNER CARD */
.dictionary-page-inner {
    position: relative;
    width: 1213px;
    min-height: 311px;
    margin: -2px auto 0;
    padding: 22px 28px 26px;
    border-radius: 0px 0px 16px 16px;
    background: linear-gradient(180deg, #061d61 0%, #0c3da8 100%);
    box-shadow:
        0 4px 27px rgba(202, 221, 240, 0.3),
        inset 0 0 24px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* CONTENT */
.dictionary-page-content {
    width: 842px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* TOPBAR */
.dictionary-page-topbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3cqb;
}
/* ALL BTN */
.dictionary-page-all-btn {
    min-width: 131px;
    height: 39px;
    padding: 0 10px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #0c3ba5 0%, rgba(7, 174, 230, 0.6) 100%);
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.15);
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: #ffffff;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
/* FONT CONTROLS */

.dictionary-page-font-controls {
    display: flex;
    align-items: center;
    width: 178px;
    gap: 14px;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
}

.dictionary-page-font-controls button {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 4px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
}

/* LETTERS */

.dictionary-page-letters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 1136px;
    gap: 4px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.dictionary-page-letters button {
    width: 30px;
    height: 39px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.dictionary-page-letters button:hover {
    background: rgba(48, 203, 255, 0.4);
    transform: translateY(-2px);
}

/* SEARCH */

.dictionary-page-search {
    width: 842px;
    height: 67px;
    margin: 0 auto 32px;
    position: relative;
}

.dictionary-page-search input {
    width: 100%;
    height: 100%;
    padding: 0 68px 0 18px;
    border: none;
    border-radius: 15px;
    background: #ffffff;
    outline: none;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #00000099;
}

.dictionary-page-search input::placeholder {
    color: #8a97b8;
}

/* SEARCH BTN */
.dictionary-page-search-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 58px;
    height: 41px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(90deg, #0c3ba5 0%, #07aee6 100%);
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.dictionary-page-search-btn img {
    width: 31px;
    height: 31px;
    object-fit: contain;
}

/* ACTIONS */

.dictionary-page-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.dictionary-page-actions button {
    border: none;
    background: transparent;
    cursor: pointer;
}

.dictionary-page-actions img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* =========================
   DICTIONARY INNER PAGE
========================= */

.dictionary-inner-page {
    padding: 41px 0;
}

/* CONTAINER */
.dictionary-inner-container {
    width: 1200px;
    margin: 0 auto;
}

/* SEARCH WRAPPER */
.dictionary-inner-search-wrapper {
    width: 860px;
    margin: 0 auto;
}

.dictionary-inner-top-row {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-bottom: 38px;
}

.dictionary-inner-categories {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* CATEGORY BUTTON */
.dictionary-inner-category-btn {
    height: 39px;
    padding: 0 22px;
    border: #ffffff03;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
}

.dictionary-inner-category-btn.active {
    border: 1px solid #1163d399;
}

/* LETTERS */
.dictionary-inner-letters {
    width: 645px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dictionary-inner-letters button {
    border: none;
    background: transparent;
    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #07aee6;
    cursor: pointer;
}

/* SEARCH */
.dictionary-inner-search {
    position: relative;
    width: 842px;
    height: 67px;
    margin-bottom: 48px;
}

.dictionary-inner-search input {
    width: 100%;
    height: 100%;
    padding: 0 50px 0 22px;
    border: none;
    border-radius: 15px;
    background: #ffffff;
    outline: none;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #00000099;
}

.dictionary-inner-search input::placeholder {
    color: #00000099;
}

/* SEARCH BTN */
.dictionary-inner-search-btn {
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    width: 58px;
    height: 41px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(90deg, #0c3ba5 0%, #07aee6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.dictionary-inner-search-btn img {
    width: 31px;
    height: 31px;
}

/* CARD */
.dictionary-inner-card {
    width: 1200px;
    padding: 40px 38px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.15);
}

/* CARD TOP */
.dictionary-inner-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.dictionary-inner-back-btn,
.dictionary-inner-close-btn {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.dictionary-inner-back-btn img,
.dictionary-inner-close-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.dictionary-inner-back-btn:hover,
.dictionary-inner-close-btn:hover {
    transform: scale(1.08);
    opacity: 0.8;
}
/* TITLE */

.dictionary-inner-title {
    width: 470px;
    height: 45px;
    background-image: url("../images/dictionary-inner-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: "DM Giorgi", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #155fad;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*content*/
.dictionary-inner-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* SECTION */

.dictionary-inner-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    min-width: 0;
}
/*text*/
.dictionary-inner-section-text {
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: justify;
    color: #1f2a37;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
}
/* HEAD */

.dictionary-inner-section-head {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* TITLE */

.dictionary-inner-section-title {
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    color: #155fad;
    white-space: nowrap;
}

/* DIVIDER */

.dictionary-inner-divider {
    flex: 1;
    height: 1px;
    background: #cce9f9;
}

/* FOOTER */
.dictionary-inner-footer {
    margin-top: 40px;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* SOURCE */
.dictionary-inner-source-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.dictionary-inner-source {
    position: relative;
    margin-bottom: 16px;
    gap: 37px;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    color: #1f2a37;
}

/* LINES */

.dictionary-inner-source::before,
.dictionary-inner-source::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 537px;
    height: 1px;
    background: #cce9f9;
}

.dictionary-inner-source::before {
    right: calc(100% + 38px);
}

.dictionary-inner-source::after {
    left: calc(100% + 38px);
}

/* LINK */

.dictionary-inner-source-block a {
    width: 1200px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #cce9f9;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #1f2a37;
    text-decoration: underline;
}

/* =========================
   ACTIONS
========================= */

.dictionary-inner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.dictionary-inner-actions button {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.dictionary-inner-actions button img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.dictionary-inner-actions button:hover {
    transform: scale(1.08);
    opacity: 0.8;
}

/* =========================
   TAGS TITLE
========================= */

.dictionary-inner-tags-title {
    position: relative;
    margin-bottom: 40px;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: #02103a;
}

.dictionary-inner-tags-title::before,
.dictionary-inner-tags-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 468px;
    height: 1px;

    background: #cce9f9;
}

.dictionary-inner-tags-title::before {
    right: calc(100% + 37px);
}

.dictionary-inner-tags-title::after {
    left: calc(100% + 37px);
}

/* =========================
   TAGS
========================= */

.dictionary-inner-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 94px;
}

.dictionary-inner-tags button {
    height: 46px;
    padding: 0 26px;
    border: none;
    border-radius: 16px;
    background: #c8e6fd80;
    box-shadow: #223c6e33;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: #1f2a37;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}
.dictionary-inner-tags button a {
    text-decoration: none;
}

.dictionary-inner-tags button:hover {
    background: #dfeefe;
    transform: translateY(-1px);
}

/* =========================================
   DICTIONARY-ALL-PAGE
========================================= */
.dictionary-all {
    padding: 42px 0 120px;
    background: #07257a;
}

.dictionary-all-container {
    width: 1199px;
    margin: 0 auto;
}

.dictionary-all-search-text {
    margin-bottom: 34px;
    text-align: center;
    font-family: "FiraGO", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #30cbff;
}

/* SEARCH AREA */

.dictionary-all-search-wrapper {
    width: 1200px;
    height: 246px;
    padding: 28px 24px 30px;
    border-radius: 16px;
    background: rgba(16, 96, 206, 0.15);
    box-shadow: 0 4px 26px rgba(7, 174, 230, 0.5);
    backdrop-filter: blur(32px);
    margin-bottom: 22px;
}

.dictionary-all-search-box {
    width: 842px;
    height: 67px;
    margin: 0 auto 24px;
    padding: 0 12px 0 24px;
    border-radius: 14px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dictionary-all-search-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;

    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #00000099;
}

.dictionary-all-search-input::placeholder {
    color: #00000099;
}

.dictionary-all-search-btn {
    width: 58px;
    height: 41px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(180deg, #07aee6 0%, #0c3ba5 100%);

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.dictionary-all-search-btn:hover {
    transform: scale(1.05);
}

.dictionary-all-search-btn img {
    width: 31px;
    height: 31px;
}

/* LETTERS */
.dictionary-all-letters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 24px;
}

.dictionary-all-letters button {
    width: 30px;
    height: 39px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: 0.25s ease;
}

.dictionary-all-letters button:hover {
    background: #0a6dff;
    transform: translateY(-2px);
}

/* SHOW BTN */
.dictionary-all-show-btn {
    display: block;
    margin: 0 auto;
    width: 131px;
    height: 39px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #0c3ba5 0%, #07aee6 100%);
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.15);
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}

.dictionary-all-show-btn:hover {
    transform: scale(1.03);
}

/* BIG CARD */
.dictionary-all-card {
    width: 100%;
    padding: 26px 34px 34px;
    border-radius: 16px;
    background: rgba(16, 96, 206, 0.12);
    border: 1px solid rgba(48, 203, 255, 0.18);
    box-shadow:
        0 4px 26px rgba(7, 174, 230, 0.28),
        inset 0 0 12px rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    margin-bottom: 59px;
}

/* TITLE */

.dictionary-all-card-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    margin-bottom: 67px;
}

.dictionary-all-card-title span {
    width: 203px;
    height: 1px;
    background: #ffffff;
}

.dictionary-all-card-title h2 {
    font-family: "FiraGO", sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
}

/* GRID */
.dictionary-all-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 24px;
}

/* ITEM */
.dictionary-all-item {
    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #eff1f2;
    transition: 0.25s ease;
    cursor: pointer;
}

.dictionary-all-item:hover {
    color: #30cbff;
    transform: translateX(4px);
}

/* =========================================
   RESOURCES
========================================= */

.resources {
    padding: 70px 0 110px;
    background: #ffffff;
}

.resources-container {
    width: 1204px;
    margin: 0 auto;
}

.recources-text {
    margin-bottom: 24px;
    text-align: center;
    font-family: "FiraGO", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #30cbff;
}

/* TABS */
.resources-tabs {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.resources-tab-btn {
    width: 50%;
    height: 67px;

    border: 1px solid rgba(48, 203, 255, 0.35);
    border-radius: 16px 16px 0 0;

    background: rgba(16, 96, 206, 0.12);

    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;

    color: #ffffff;

    cursor: pointer;
}

.resources-tab-btn.active {
    background: linear-gradient(90deg, #0c3ba5 0%, #07aee6 100%);
}

/* FILTERS */

.resources-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.resources-select-wrap {
    position: relative;
    width: 576px;
}

.resources-select {
    width: 100%;
    height: 42px;
    padding: 0 16px;
    border: 1px solid #cbd2e2;
    border-radius: 8px;
    background: #ffffff;
    outline: none;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #47536e;
}

.resources-search-wrap {
    display: flex;
    align-items: center;
    gap: 23px;
}

.resources-search-input {
    width: 472px;
    height: 42px;
    padding: 0 16px;
    border: 1px solid #cbd2e2;
    border-radius: 8px;
    background: #ffffff;
    outline: none;
}

.resources-search-btn {
    width: 83px;
    height: 40px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(90deg, #0c3ba5 0%, #07aee6 100%);
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
    gap: 23px;
}

/* GRID */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 576px);
    gap: 34px 48px;
    margin-bottom: 32px;
}

/* CARD */

.resources-card {
    min-height: 308px;
    padding: 16px 32px;
    border-radius: 16px;
    background: #e3ebf5;
}

/* TITLE */

.resources-card-title {
    width: 100%;
    max-width: 380px;
    margin: 0 auto 22px;
    text-align: center;
    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-style: uppercase;
    line-height: 1.4;
    color: #224596;
}

/* META */

.resources-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.resources-card-meta img {
    width: 24px;
    height: 24px;
}

.resources-card-meta p {
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1f2a37;
}

.resources-card-meta span {
    color: #1f2a37;
    font-family: "FiraGO", sans-serif;
    font-weight: 500;
    font-size: 16px;
}

/* BOTTOM */
.resources-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.resources-card-source,
.resources-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.resources-card-source img {
    width: 28px;
    height: 28px;
}
.resources-card-date img {
    width: 24px;
    height: 24px;
}

.resources-card-source p,
.resources-card-date span {
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1f2a37;
}

/* DOWNLOAD BTN */
.resources-card-btn {
    display: block;
    margin: 0 auto 18px;
    width: 137px;
    height: 40px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(90deg, #0c3ba5 0%, #07aee6 100%);
    box-shadow: 0 4px 9px rgba(7, 174, 230, 0.35);
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
}

/* ACTIONS */
.resources-card-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.resources-card-actions button {
    border: none;
    background: transparent;
    cursor: pointer;
}

.resources-card-actions img {
    width: 24px;
    height: 24px;
}

/* MORE */
.resources-more-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 37px;
    margin-bottom: 44px;
}

.resources-more-wrap span {
    width: 413px;
    height: 1px;
    background: #cce9f9;
}

.resources-more-btn {
    width: 303px;
    height: 48px;
    border: none;
    border-radius: 16px;
    background: #4078be26;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    cursor: pointer;
}
/* =========================
   ANALYZE PAGE
========================= */

.analyze-section {
    padding: 48px 0 80px;
    background: #ffffff;
}

.analyze-container {
    width: 1203px;
    margin: 0 auto;
}

/* TABS */

.analyze-tabs {
    display: flex;
    align-items: center;
    gap: 47px;
    margin-bottom: 22px;
}

.analyze-tab-btn {
    width: 577px;
    height: 60px;

    border-radius: 16px 16px 0 0;
    border: 1px solid #69aeff;
    background: #0a4697;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}

.analyze-tab-btn.active {
    background: #deeafa;
    color: #0a4697;
    height: 70px;
}

/* FILTER BOX */

.analyze-filters-box {
    padding: 16px 18px 20px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 18px #00000026;
    margin-bottom: 24px;
}

.analyze-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 47px;
}

/* SELECT */

.analyze-select-wrap {
    position: relative;
    width: 576px;
    height: 42px;
}

.analyze-select {
    width: 100%;
    height: 100%;
    padding: 0 18px;
    border: 1px solid #cbd2e2;
    border-radius: 8px;
    background: #ffffff;
    outline: none;
    appearance: none;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #47536e;
    cursor: pointer;
}

.analyze-select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

/* SEARCH */

.analyze-search-wrap {
    display: flex;
    align-items: center;
    gap: 23px;
}

.analyze-search-input {
    width: 472px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #cbd2e2;
    border-radius: 8px;
    background: #ffffff;
    outline: none;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #47536e;
}

.analyze-search-btn {
    width: 83px;
    height: 40px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(90deg, #0c3ba5 0%, #07aee6 100%);
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}

.analyze-search-btn:hover {
    opacity: 0.9;
}

/* DESCRIPTION */
.analyze-title-wrap {
    height: 84px;
    padding: 16px 18px 20px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 18px #00000026;
    margin-bottom: 24px;
}

/* LINKS GRID */
.analyze-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 591px);
    justify-content: space-between;
    gap: 9px 21px;
    margin-bottom: 40px;
}

/* LINK CARD */

.analyze-link-card {
    min-height: 80px;
    padding: 14px 20px;
    border-radius: 14px;
    background: #e3ebf5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #224596;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.analyze-link-card:hover {
    background: #dcecff;
    color: #0c3ba5;
    transform: translateY(-2px);
}

.analyze-link-card--long {
    min-height: 80px;
}

/* MORE */

.analyze-more-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 37px;
}

.analyze-more-wrap span {
    width: 417px;
    height: 1px;
    background: #cce9f9;
}

.analyze-more-btn {
    width: 303px;
    height: 48px;
    border: none;
    border-radius: 16px;
    background: #4078be26;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    cursor: pointer;
    transition: 0.3s ease;
}

.analyze-more-btn:hover {
    background: #dcecff;
}
/* =========================
   ANALYZE INNER
========================= */

.analyze-inner-section {
    padding-bottom: 55px;
}

/* TOP CARD */
.analyze-inner-card {
    padding: 18px 26px 20px;
    border-radius: 16px;
    background: #e3ebf5;
    margin-bottom: 40px;
}

/* TITLE */

.analyze-inner-title {
    margin-bottom: 8px;
    text-align: center;
    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #224596;
}

/* INFO */

.analyze-inner-info {
    margin-bottom: 8px;
}

.analyze-inner-info-row {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #ffffff;
}

.analyze-inner-info-row img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.analyze-inner-info-row span {
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1f2a37;
}

/* FILE */

.analyze-inner-file {
    margin-bottom: 8px;
}

.analyze-inner-file-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.analyze-inner-file-left img {
    width: 28px;
    height: 2cap;
    object-fit: contain;
}

.analyze-inner-file-left p {
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #1f2a37;
}

.analyze-inner-file-left a {
    color: #1f2a37;
    text-decoration: none;
    word-break: break-all;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* DOWNLOAD */

.analyze-inner-download-btn {
    display: block;
    width: 137px;
    height: 40px;
    margin: 0 auto 8px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(97deg, #0c3ba5 0%, #07aee6 100%);
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}

.analyze-inner-download-btn:hover {
    opacity: 0.9;
}

/* ACTIONS */

.analyze-inner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.analyze-inner-action-btn {
    border: none;
    background: transparent;
    cursor: pointer;
}

.analyze-inner-action-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* SMALL CARDS */

.analyze-inner-small-card {
    min-height: 48px;
    padding: 14px 20px;
    border-radius: 14px;
    background: #e3ebf5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    margin-bottom: 40px;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #224596;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.analyze-inner-small-card:hover {
    background: #dcecff;
    transform: translateY(-2px);
}

.analyze-inner-small-card--long {
    min-height: 68px;
}

/* MORE */

.analyze-inner-more-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 37px;
}

.analyze-inner-more-wrap span {
    width: 418px;
    height: 1px;
    background: #cce9f9;
}

.analyze-inner-more-btn {
    width: 303px;
    height: 48px;
    border: none;
    border-radius: 16px;
    background: #4078be26;
    box-shadow: 0 2px 9px rgba(34, 60, 110, 0.1);
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    cursor: pointer;
    transition: 0.3s ease;
}

.analyze-inner-more-btn:hover {
    background: #dcecff;
}

/* =========================
   EDUCATIONAL-RESOURCES PAGE
========================= */
.educational-resources-section {
    padding: 48px 0 80px;
    background: #ffffff;
}

.educational-resources-container {
    width: 1200px;
    margin: 0 auto;
}
.educational-recources-text {
    margin-bottom: 24px;
    text-align: center;
    font-family: "FiraGO", sans-serif;
    font-style: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: #30cbff;
}
/* TOP */

.educational-resources-top {
    margin-bottom: 22px;
}

.educational-resources-tabs {
    display: flex;
    gap: 47px;
    margin-bottom: 22px;
}

.educational-resources-tab {
    width: 577px;
    height: 60px;
    border: 1px solid #69aeff;
    border-radius: 16px;
    background: #0a4697;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
}

.educational-resources-tab.active {
    background: #deeafa;
    height: 70px;
    color: #0a4697;
}
.educational-resources-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 47px;
}

/* SELECT*/

.educational-resources-select-wrap {
    position: relative;
    width: 576px;
}

.educational-resources-select {
    width: 100%;
    height: 42px;
    padding: 0 40px 0 16px;
    border: 1px solid #cbd2e2;
    border-radius: 8px;
    background: #ffffff;
    appearance: none;
    outline: none;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #47536e;
    cursor: pointer;
}
.educational-resources-select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #47536e;
    border-bottom: 2px solid #47536e;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
}
/* SEARCH */

.educational-resources-search-wrap {
    position: relative;
    width: 576px;
    display: flex;
    align-items: center;
    gap: 23px;
}

.educational-resources-search-wrap img {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    object-fit: contain;
    pointer-events: none;
}

.educational-resources-search-input {
    width: 100%;
    height: 42px;
    padding: 0 16px 0 40px;
    border: 1px solid #cbd2e2;
    border-radius: 8px;
    background: #ffffff;
    outline: none;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #47536e;
}

.educational-resources-search-btn {
    flex-shrink: 0;
    width: 83px;
    height: 40px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(90deg, #0c3ba5 0%, #07aee6 100%);
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}

.educational-resources-search-btn:hover {
    opacity: 0.9;
}
/*  CARDS  */

.educational-resources-card {
    width: 1198px;
    padding: 8px 32px;
    border-radius: 16px;
    background: #e3ebf5;
    margin-bottom: 46px;
}

.educational-resources-card--big {
    min-height: 499px;
}

.educational-resources-card--small {
    min-height: 140px;
}

/* CARD TOP  */

.educational-resources-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 8px;
}

.educational-resources-card-title {
    max-width: 930px;
    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    color: #224596;
}

/* DATE */

.educational-resources-card-date {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: #1f2a37;
}

.educational-resources-card-date img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* CONTENT */

.educational-resources-card-content {
    width: 100%;
    min-height: 336px;
    padding: 24px;
    border-radius: 16px;
    background: #ffffff;
    margin-bottom: 8px;
}

.educational-resources-card-content p {
    margin-bottom: 18px;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    color: #000000;
}

.educational-resources-card-content p:last-child {
    margin-bottom: 0;
}

/*  COMMON BOTTOM */

.educational-resources-card-bottom {
    display: flex;
    align-items: center;
    min-height: 40px;
}

/* AUTHOR */

.educational-resources-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: #1f2a37;
}

.educational-resources-card-author img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.8;
}

/* BUTTON */

.educational-resources-download-btn {
    width: 137px;
    height: 40px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(90deg, #0c3ba5 0%, #07aee6 100%);
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: #ffffff;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease,
        box-shadow 0.25s ease;
}

.educational-resources-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(12, 59, 165, 0.22);
}

/* ACTIONS */

.educational-resources-card-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.educational-resources-card-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.educational-resources-card-actions a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.educational-resources-card-actions img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* BIG CARD BOTTOM */

.educational-resources-card-bottom--big {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.educational-resources-card-bottom--big .educational-resources-download-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.educational-resources-card-bottom--big
    .educational-resources-download-btn:hover {
    transform: translateX(-50%) translateY(-2px);
}
/*  SMALL CARD BOTTOM */

.educational-resources-card-bottom--small {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 40px;
}

/* AUTHOR */
.educational-resources-card-bottom--small .educational-resources-card-author {
    margin-right: auto;
}

/* BUTTON */
.educational-resources-card-bottom--small .educational-resources-download-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.educational-resources-card-bottom--small
    .educational-resources-download-btn:hover {
    transform: translateX(-50%) translateY(-2px);
}

/* ACTIONS */
.educational-resources-card-bottom--small .educational-resources-card-actions {
    margin-left: auto;
    gap: 18px;
}
/* VIDEOS */

.educational-resources-videos {
    width: 100%;
    margin: 80px 0 0;
    padding: 24px 0;
    background: #e3ebf5;
}

/* TITLE */

.educational-resources-videos-title-wrap {
    width: 590px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.educational-resources-line {
    flex: 1;
    width: 203px;
    height: 1px;
    background: #ffffff;
}

.educational-resources-videos-title {
    flex-shrink: 0;
    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    color: #1f2a37;
}

/*  GRID */

.educational-resources-video-grid {
    width: 1238px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(3, 386px);
    column-gap: 40px;
    row-gap: 21px;
}

/* CARD */

.educational-resources-video-card {
    width: 386px;
    min-height: 297px;
    padding: 16px 10px;
    border-radius: 14px;
    border: 1px solid #0091e21a;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.educational-resources-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* TITLE */

.educational-resources-video-title {
    margin-bottom: 31px;
    text-align: center;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: #000000;
}

/* DATE */
.educational-resources-video-date {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    color: #ffffff;
    z-index: 2;
}

/* VIDEO WRAP */

.educational-resources-video-wrap {
    position: relative;
}

/*  VIDEO */

.educational-resources-video {
    width: 100%;
    height: 196px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    background: #dfe7f3; /*დროებით იყოს სანამ დაემატება ვიდეო*/
}

/* PLAY BUTTON */

.educational-resources-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40x;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.educational-resources-video-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 0.9;
}

/* MORE BUTTON */

.educational-resources-more-btn {
    display: block;
    width: 303px;
    height: 48px;
    margin: 0 auto;
    border: none;
    border-radius: 16px;
    background: #4078be26;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.educational-resources-more-btn:hover {
    transform: translateY(-2px);
    background: #cfdbea;
}

/* FAQ */

.educational-resources-faq {
    width: 1200px;
    margin: 40px auto 0;
    padding: 16px 32px;
    border-radius: 16px;
    background: #e3ebf5;
}
.educational-resources-faq-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.educational-resources-line {
    width: 203px;
    height: 1px;
    background: #ffffff;
}

.educational-resources-faq-title {
    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    color: #1f2a37;
}
.educational-resources-faq-list {
    margin-bottom: 16px;
}

.educational-resources-faq-item {
    height: 52px;
    border-bottom: 2px solid #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
}
.educational-resources-faq-item button {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.educational-resources-faq-item span {
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1f2a37;
}

/* =========================
   ABOUT PAGE
========================= */

.about-section {
    padding: 32px 0 69px;
}

.about-container {
    width: 1098px;
    margin: 0 auto;
}

/* TITLE */

.about-title {
    margin-bottom: 40px;
    font-family: "FiraGO", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #30cbff;
}

/* CARD */

.about-card {
    width: 1098px;
    padding: 24px;
    border-radius: 16px;
    background: #ffffff;
    border: 7px solid transparent;
    background-image:
        linear-gradient(#ffffff, #ffffff),
        linear-gradient(180deg, #b7cdf3 0%, #eef4ff 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow:
        0 4px 14px rgba(34, 69, 150, 0.1),
        0 0 10px rgba(48, 203, 255, 0.12);
    margin-bottom: 40px;
}

/* SIZES */

.about-card-small {
    min-height: 166px;
}

.about-card-big {
    min-height: 335px;
}

/* TOP */

.about-card-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.about-card-top-right {
    justify-content: flex-end;
}

/* LINE */

.about-card-line {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.about-card-line::before,
.about-card-line::after {
    content: "";
    position: absolute;
    top: 0;
    width: 8px;
    height: 31px;
    background: #ffb901;
}

.about-card-line::before {
    left: 2px;
    transform: rotate(18deg);
}

.about-card-line::after {
    left: 15px;
    transform: rotate(18deg);
}

/* TITLE */
.about-card-title {
    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    color: #223c6e;

    white-space: nowrap;
}

.about-card-top::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e3ebf5;
}

/* TEXT */

.about-card-text,
.about-card p,
.about-card li {
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
    color: #02103a;
    text-align: justify;
}
.about-card ul {
    margin-left: 40px;
}

/* CONTENT */

.about-card-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* LIST */

.about-list {
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-list li {
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
    color: #02103a;
}
.about-card:nth-child(3) {
    margin-left: 97px;
}
.about-card-top-right::after {
    order: -1;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-section {
    padding: 32px 0 126px;
    background-image: url("../images/contact-background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-container {
    width: 1098px;
    margin: 0 auto;
}

/* TITLE */

.contact-title {
    margin-bottom: 43px;
    font-family: "FiraGO", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
}

/* CONTENT */
.contact-content {
    display: flex;
    align-items: stretch;
    gap: 130px;
}

/* LEFT */
.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 488px;
}
.contact-left,
.contact-form-card {
    min-height: 520px;
}

/* INFO CARDS */

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border-radius: 14px;
    border: 1px solid #ffffff;
    background: #ffffff;
    padding: 6px;
    margin-bottom: 5px;
}

.contact-info-card-small {
    height: 64px;
}

.contact-info-card-big {
    margin-bottom: 0;
    border-radius: 14px;
}

/* ICON */

.contact-info-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.contact-hotline-number {
    width: 142px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../images/contact-1520.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: "DM Giorgi", sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 2px;
    color: #173b67;
    text-decoration: none;
}

/* TEXT */
.contact-info-label {
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1f2a37;
}

.contact-info-link,
.contact-info-text {
    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #1f2a37;
    text-decoration: none;
}
/* MAP WRAPPER */

.contact-location-wrapper {
    width: 488px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);

    background: transparent;
    overflow: hidden;
}

/* ADDRESS CARD */

.contact-info-card-big {
    margin-bottom: 17px;
}

/* MAP */

.contact-map-card {
    width: 428px;
    height: 184px;
    margin: 17px auto 25px;
    overflow: hidden;
    border-radius: 14px;
}

.contact-map-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* SOCIAL */

.contact-socials {
    width: 485px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 21px;
    margin-top: 22px;
    border-radius: 16px;
    border-bottom: 1px solid #ffffff;
}

.contact-socials-title {
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.contact-social-icons {
    display: flex;
    align-items: center;
    gap: 26px;
}

/* FORM CARD */

.contact-form-card {
    position: relative;
    width: 582px;
    min-height: 520px;
    padding: 24px;
    border-radius: 16px;
    background: transparent;
    backdrop-filter: blur(10px);
    overflow: hidden;
}
.contact-form-card:hover {
    background: #fff;
}
.contact-form-card:hover .contact-form-title {
    color: #224596;
}
.contact-form-card:hover input,
.contact-form-card:hover textarea {
    border: 1px solid #cbd2e2;
}
.contact-form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 4px;
    background: linear-gradient(180deg, #93aee4 0%, #c4d4f3 45%, #e1ebff 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* FORM TOP */
.contact-form-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 21px;
}

.contact-form-line {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.contact-form-line::before,
.contact-form-line::after {
    content: "";
    position: absolute;
    top: 0;
    width: 8px;
    height: 31px;
    background: #ffb901;
    transform: rotate(18deg);
}

.contact-form-line::before {
    left: 2px;
}

.contact-form-line::after {
    left: 12px;
}

.contact-form-title {
    font-family: "FiraGO", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
}

.contact-form-divider {
    flex: 1;
    height: 1px;
    background: #e3ebf5;
}

/* FORM */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 7px;
    background: #ffffff;
    padding: 20px 11px;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #454545;
}

.contact-form input {
    height: 48px;
}

.contact-form textarea {
    height: 120px;
    resize: none;
    padding-top: 11px;
}

/* BUTTON */

.contact-form button {
    width: 382px;
    height: 40px;
    margin: 0 auto;
    border: none;
    border-radius: 10px;
    background: #143496;
    font-family: "FiraGO", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* === NAV SUBMENU DROPDOWN === */
.nav-item-wrapper {
    position: relative;
}
.nav-item-wrapper a:hover {
    text-decoration: none !important;
}
.submenu {
    position: absolute;
    left: 0;
    top: 47px;
    min-width: 100%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
        opacity 0.3s,
        transform 0.3s;
    z-index: 100;
}
.nav-item-wrapper .open > .submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.submenu a {
    display: block;
    padding: 12px 20px;
    color: rgba(2, 16, 58, 1) !important;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s;
}
.submenu a:hover {
    color: #437bba !important;
    background: #fff !important;
    box-shadow: none !important;
    border: none !important;
}

@media (max-width: 576px) {
    body {
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        padding: 0 16px;
    }

    /* HEADER */

    .header {
        padding-top: 48px;
    }

    .header-top {
        position: relative;
    }

    .header-left {
        width: auto;
        height: auto;
    }

    .logo {
        width: 270px;
        height: auto;
    }

    .header-right {
        display: none;
    }

    .nav {
        display: none;
    }

    /* BURGER */

    .burger {
        display: flex;
        position: absolute;
        top: 85px;
        right: 16px;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
    }

    .burger span {
        width: 20px;
        height: 2px;
    }

    /* TOP */

    .mobile-menu-top {
        width: 272px;
        margin-bottom: 32px;
    }

    .mobile-menu-logo {
        width: 46px;
    }

    .mobile-menu-close {
        font-size: 24px;
    }

    /* SOCIALS */

    .mobile-menu-socials {
        width: 163px;
        height: 40px;
        padding: 12px;

        margin-bottom: 32px;
    }

    /* NAV */

    .mobile-menu-nav {
        width: 272px;

        gap: 24px;

        margin-bottom: 24px;
    }

    .mobile-menu-nav a {
        width: 272px;
        height: 56px;

        font-size: 18px;
    }

    .mobile-menu-nav a.active {
        background: #ffffff;

        box-shadow: 0 2px 9px rgba(34, 60, 110, 0.1);
    }

    /* SEARCH */

    .mobile-menu-search {
        width: 272px;
        height: 56px;
    }

    .main-title {
        max-width: 300px;
        margin: 24px auto 0;
        font-size: 22px;
        line-height: 130%;
        text-align: center;
    }
    .card-left,
    .card-right {
        width: 366px;
        height: auto;
        padding: 16px;

        border-radius: 16px;
    }
    .card-left {
        justify-content: flex-start;
    }
    .icon::after {
        height: 40px;
    }
    /* SEARCH */

    .search {
        width: 334px;
        height: 41px;
        margin-top: 24px;
    }

    .search input {
        width: 100%;
        height: 100%;
    }

    /* TAGS */
    .tags {
        margin-top: 16px;
        height: 54px;
    }

    .tags-list {
        width: 334px;

        display: flex;
        align-items: center;

        gap: 10px;

        margin-bottom: 12px;
    }

    .tags-list .tag:nth-child(2) {
        display: none;
    }

    .tag {
        width: 106px;
        height: 24px;

        display: flex;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        border-radius: 16px;

        font-size: 12px;
        line-height: 1;

        white-space: nowrap;
    }

    /* DIVIDER */

    .divider-line {
        width: 100%;
        margin-top: 16px;
    }

    /* ICONS */

    .icons {
        width: 122px;
        height: 24px;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 25px;
        margin-top: 16px;
        margin-bottom: 24px;
    }

    .icons a {
        width: 24px;
        height: 24px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icons img {
        width: 24px;
        height: 24px;

        object-fit: contain;
    }

    /* RIGHT CARD */

    .card-right .highlight {
        display: none;
    }

    .card-title {
        width: 100%;
        gap: 16px;
        font-size: 16px;
        margin-top: 24px;
    }

    .card-right::after {
        width: 140px;
    }

    .card-text {
        width: 100%;
        font-size: 14px;
        line-height: 150%;
        margin-top: 16px;
    }

    .bottom-row {
        margin-top: 32px;
        margin-bottom: 24px;
        gap: 14px;
        flex-wrap: wrap;
    }

    .btn {
        width: 120px;
        font-size: 14px;
    }

    /* ABOUT */

    .about-container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-card {
        width: 100%;
    }

    .about-card:nth-child(3) {
        margin-left: 0;
    }
    /* BLUE SECTION */

    .blue-section {
        padding-bottom: 50px;
    }

    .subscribe-btn {
        position: static;
        display: block;
        margin: 0 auto 30px;
        border-radius: 16px;
    }

    .handwritten-text {
        max-width: 302px;
        font-size: 18px;
        line-height: 140%;
        text-align: center;
        margin-bottom: 48px;
    }

    .question-title {
        margin-bottom: 30px;
    }

    .question-title::before,
    .question-title::after {
        width: 150px;
    }

    .options {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .option {
        width: 183px;
        height: 83px;
        flex: 0 0 183px;
    }
    .option:nth-child(3) {
        margin: 0 auto;
    }

    /* ARTICLES */

    .articles-section {
        padding: 32px 16px;
    }

    .articles-header {
        gap: 12px;
        margin-bottom: 28px;
    }

    .line {
        width: 150px;
    }

    .articles-cards {
        display: flex;
        flex-wrap: nowrap;

        overflow-x: auto;
        overflow-y: hidden;

        gap: 16px;

        padding-left: 20px;

        scroll-snap-type: x mandatory;

        -webkit-overflow-scrolling: touch;
    }

    .articles-cards::-webkit-scrollbar {
        display: none;
    }

    .article-card {
        flex: 0 0 334px;

        min-width: 334px;
        width: 334px;

        scroll-snap-align: start;
    }

    .article-card-inner {
        width: 100%;
    }
    .article-content p {
        max-height: none;
        font-size: 14px;
        line-height: 22px;
    }

    .article-full-btn {
        opacity: 1;
        visibility: visible;
    }

    .view-all-btn {
        margin: 24px auto 0;
    }

    /* LEARN */

    .learn-section {
        padding: 36px 0;
    }
    .learn-header {
        display: flex;
        justify-content: space-between;
        align-items: center;

        margin-bottom: 40px;
    }
    .learn-content {
        padding-top: 0;
    }

    .learn-left {
        position: static;

        display: flex;
        align-items: center;
        gap: 10px;

        margin-bottom: 24px;
    }
    .learn-title {
        position: static;

        font-size: 16px;
        font-weight: 400;
        line-height: 19px;

        margin: 0;
    }
    .learn-bottom-line {
        width: 54px;
    }
    .learn-line {
        width: 132px;
    }

    .learn-question {
        width: 325px;
        height: auto;
        font-size: 14px;
        line-height: 150%;
        margin-bottom: 24px;
    }

    .learn-options {
        width: 402px;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 19px;
    }

    .learn-option {
        width: 250px;
        height: 64px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 16px;
    }

    .circle-lg,
    .circle-md,
    .circle-sm {
        display: none;
    }

    /* EVENTS */

    .event-section {
        padding: 36px 0;
        overflow: hidden;
    }

    .event-header {
        gap: 12px;
    }

    .event-line {
        width: 132px;
    }

    /* CAROUSEL */

    .event-cards {
        display: flex;
        gap: 16px;

        overflow-x: auto;
        overflow-y: hidden;

        padding-left: 19px;
        padding-right: 19px;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .event-cards::-webkit-scrollbar {
        display: none;
    }

    /* CARD */
    .event-card {
        flex: 0 0 334px;

        min-width: 334px;

        scroll-snap-align: start;
    }
    /* IMAGE */

    .event-image-wrap {
        width: 100%;
        height: 220px;

        border-radius: 16px;
        overflow: hidden;
    }

    .event-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* CONTENT */

    .event-card-title {
        width: 100%;
        margin-top: 12px;

        font-size: 14px;
        line-height: 150%;
    }

    .event-date {
        font-size: 14px;
    }

    .event-button {
        margin: 24px auto 0;
    }
    .footer {
        display: none;
    }

    .footer-mobile {
        display: block;
    }
    .footer-mobile-logo {
        margin-top: 16px;
    }
    .footer-mobile-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-end;

        gap: 10px;
    }
    .footer-mobile-top {
        align-items: flex-start;
        margin-top: 14px;
        margin-bottom: 20px;
    }
    .footer-mobile-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 23px;
    }
    .footer-mobile-item {
        width: 308px;

        margin: 0 auto 16px;

        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }
    .footer-mobile-socials {
        margin: 0 auto 23px;
    }
    .footer-mobile-form {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 12px;

        margin-bottom: 24px;
    }
    .footer-mobile-form input {
        width: 238px;
        height: 44px;
    }
    .footer-mobile-form button {
        width: 109px;
        height: 44px;
        margin: 0;
    }
    .footer-mobile-form input::placeholder {
        font-family: "FiraGO", sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #c5cad9;
        opacity: 1;
    }
    .footer-mobile-quote {
        width: 352px;

        margin: 0 auto 20px;

        text-align: center;

        line-height: 150%;
    }
}
/*event card 576*/
@media (max-width: 576px) {
    /* PAGE */

    .events-page-title {
        margin: 24px 0 20px;

        font-size: 20px;
        line-height: 100%;
    }

    /* TABS */

    .events-page-tabs {
        width: 100%;

        height: auto;

        margin: 0 0 16px;

        padding: 0 19px;

        flex-direction: column;

        gap: 10px;
    }
    .events-page-tab:first-child {
        align-self: flex-start;
    }

    .events-page-tab:last-child {
        align-self: flex-end;
    }
    .events-page-tab {
        width: 364px;
        height: 54px;

        top: 0;

        border-radius: 16px;

        font-size: 14px;
        border: none;
    }

    .events-page-tab--active {
        height: 54px;

        margin: 0;
        background: #deeafa;
        color: #0a4697;
        border: solid 1px #69aeff;
    }

    /* CONTENT */

    .events-page-content {
        padding-top: 19px;
        padding-bottom: 40px;

        border-radius: 16px 16px 0 0;
    }

    /* FILTERS */

    .events-page-filters {
        width: 100%;

        margin: 0 0 24px;

        padding: 0 19px;

        flex-direction: column;

        gap: 8px;
    }

    .events-page-field1,
    .events-page-field2 {
        width: 100%;

        height: 42px;

        top: 0;
    }

    .events-page-search-field {
        display: flex;
        align-items: center;

        gap: 8px;
    }

    .events-page-select {
        font-size: 14px;
    }

    .events-search-btn {
        width: 56px;
        height: 42px;

        flex-shrink: 0;

        border-radius: 8px;

        font-size: 13px;
    }
    .events-page-date-icon,
    .events-page-calendar-icon {
        display: none;
    }
    /* GRID SECTION  */

    .events-grid-section {
        padding: 0;
    }

    .events-month {
        width: calc(100% - 38px);

        height: 35px;

        margin: 0 auto 14px;

        padding: 0 10px;

        display: flex;
        align-items: center;

        border-radius: 8px;

        background: #ebeef4;
    }

    /* CAROUSEL */

    .events-grid {
        display: flex;

        gap: 10px;

        width: 100%;

        padding-left: 19px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .events-grid::-webkit-scrollbar {
        display: none;
    }

    /* CARD */

    .events-grid-item {
        flex: 0 0 334px;

        min-width: 334px;

        scroll-snap-align: start;
    }

    .events-grid-card {
        width: 334px;
        height: 224px;

        border-radius: 16px;
    }

    /* BADGE */

    .events-grid-badge {
        width: auto;

        min-width: 58px;

        height: 22px;

        top: 10px;
        left: 10px;

        padding: 0 8px;

        border-radius: 6px;

        font-size: 11px;
    }

    /* DATE */

    .events-grid-date {
        top: 12px;
        right: 12px;

        font-size: 14px;
    }

    /* TITLE */

    .events-grid-title {
        left: 20px;
        right: 20px;

        bottom: 42px;

        font-size: 14px;

        line-height: 140%;
    }

    /* PAGINATION */

    .events-pagination {
        width: 100%;

        margin-top: 24px;

        padding: 0 19px;

        gap: 10px;
    }

    .events-pagination-line {
        display: none;
    }

    .events-pagination-btn {
        width: 100%;
        height: 44px;

        font-size: 14px;
    }
}
/*evetns inner page*/
@media (max-width: 576px) {
    /* BLUE SECTION */

    .event-inner-blue-section {
        padding: 24px 0 70px;
    }

    .event-inner-page-title {
        margin: 24px 0 20px;

        font-size: 20px;
        line-height: 100%;
    }

    .event-inner-title {
        width: 100%;

        padding: 0 19px;

        margin: 0 auto 20px;

        font-size: 16px;
        line-height: 150%;
    }

    .event-inner-line {
        width: calc(100% - 38px);

        margin: 0 auto 24px;
    }

    /* META */

    .event-inner-meta {
        width: 100%;

        padding: 0 19px;

        margin: 0 auto 32px;

        flex-direction: column;

        align-items: center;

        gap: 16px;
    }

    .event-inner-location,
    .event-inner-date {
        font-size: 14px;

        text-align: center;
    }

    .event-inner-location img,
    .event-inner-date img {
        width: 16px;
        height: 16px;
    }

    .event-inner-badge {
        height: 32px;

        padding: 0 14px;

        font-size: 13px;
    }

    /* WHITE SECTION */

    .event-inner-white-section {
        padding: 0 0 40px;
    }

    /* OVERLAP CARD */

    .event-inner-card {
        width: calc(100% - 38px);

        top: -50px;

        padding: 20px 16px;

        border-radius: 16px;
    }

    .event-inner-card p {
        font-size: 14px;

        line-height: 160%;

        text-align: left;
    }

    /* RESULT */

    .learn-result {
        margin-top: 32px;

        min-height: 60px;

        padding: 16px;

        font-size: 14px;

        line-height: 140%;
    }

    /* DIVIDER */

    .event-inner-divider {
        width: calc(100% - 38px);

        margin: 32px auto 0;

        display: flex;

        flex-direction: column;

        gap: 16px;
    }

    .event-inner-divider-line {
        width: 100%;
    }

    /* BUTTON */

    .event-inner-btn {
        width: 100%;

        height: 44px;

        font-size: 14px;

        border-radius: 12px;
    }
}

/*dictionary page/*
/* =========================
   DICTIONARY PAGE 576
========================= */
@media (max-width: 576px) {
    .dictionary-page-section {
        padding: 24px 0 0;
    }

    .dictionary-page-container {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .dictionary-page-card {
        width: 100%;
    }

    /* TITLE */

    .dictionary-page-title {
        width: 100%;
        max-width: 362px;
        margin: 0 auto 16px;

        text-align: center;

        font-size: 20px;
        line-height: 120%;
    }

    /* DESCRIPTION */

    .dictionary-page-description {
        width: 100%;
        max-width: 364px;

        margin: 0 auto 16px;

        text-align: center;

        font-size: 13px;
        line-height: 140%;
    }

    /* TABS */

    .dictionary-page-tabs {
        width: 364px;
        margin: 0 auto;

        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .dictionary-page-tab {
        flex: none; /* მთავარი */
        width: 100%;
        height: 64px;

        display: flex;
        align-items: center;
        justify-content: center;

        text-align: center;

        border-radius: 16px;
    }
    .dictionary-page-tab:first-child {
        background: #deeafa;
        border: 1px solid #69aeff;
        color: #1d2f6f;

        align-self: flex-end;
    }

    .dictionary-page-tab:last-child {
        background: #0a4697;
        border: 1px solid transparent;
        color: #ffffff;

        align-self: flex-start;
    }
    /* BLUE CARD */

    .dictionary-page-inner {
        width: 100%;

        margin-top: 10px;

        padding: 24px 20px 28px;

        border-radius: 16px;
    }

    .dictionary-page-content {
        width: 100%;
        gap: 24px;
    }
}

/* =========================
   DICTIONARY INNER 576
========================= */

@media (max-width: 576px) {
    .dictionary-inner-page {
        padding: 24px 0 40px;
    }

    .dictionary-inner-container {
        width: 100%;
        padding: 0 19px;
    }

    /* SEARCH WRAPPER */

    .dictionary-inner-search-wrapper {
        width: 100%;
    }

    /* TOP ROW */

    .dictionary-inner-top-row {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        margin-bottom: 20px;
    }

    /* CATEGORY BUTTONS */

    .dictionary-inner-categories {
        width: 100%;

        flex-direction: column;

        gap: 12px;
    }

    .dictionary-inner-category-btn {
        width: 100%;
        height: 64px;

        border-radius: 16px;

        font-size: 14px;

        text-align: center;
    }

    .dictionary-inner-category-btn:first-child {
        background: #deeafa;

        color: #1d2f6f;
    }

    .dictionary-inner-category-btn:last-child {
        background: #0a4697;

        color: #ffffff;
    }

    /* LETTERS */

    .dictionary-inner-letters {
        width: 100%;

        overflow-x: auto;

        justify-content: flex-start;

        gap: 14px;

        padding-bottom: 6px;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .dictionary-inner-letters::-webkit-scrollbar {
        display: none;
    }

    .dictionary-inner-letters button {
        flex-shrink: 0;

        font-size: 16px;
    }

    /* SEARCH */

    .dictionary-inner-search {
        width: 100%;
        height: 36px;

        margin-bottom: 24px;
    }

    .dictionary-inner-search input {
        padding: 0 44px 0 12px;

        border-radius: 12px;

        font-size: 13px;
    }

    .dictionary-inner-search-btn {
        width: 28px;
        height: 28px;

        right: 5px;

        border-radius: 8px;
    }

    .dictionary-inner-search-btn img {
        width: 16px;
        height: 16px;
    }

    /* CARD */

    .dictionary-inner-card {
        width: 100%;

        padding: 20px 16px;

        border-radius: 16px;
    }

    /* CARD TOP */

    .dictionary-inner-card-top {
        margin-bottom: 24px;

        gap: 10px;
    }

    .dictionary-inner-back-btn,
    .dictionary-inner-close-btn {
        width: 24px;
        height: 24px;
    }

    .dictionary-inner-back-btn img,
    .dictionary-inner-close-btn img {
        width: 18px;
        height: 18px;
    }

    /* TITLE */

    .dictionary-inner-title {
        width: 100%;

        height: 64px;

        padding: 0 12px;

        text-align: center;

        background-size: 100% 100%;

        font-size: 15px;

        line-height: 130%;
    }

    /* CONTENT */

    .dictionary-inner-content {
        gap: 24px;
    }

    .dictionary-inner-section {
        gap: 12px;
    }

    .dictionary-inner-section-head {
        gap: 12px;
    }

    .dictionary-inner-section-title {
        font-size: 14px;

        white-space: normal;
    }

    .dictionary-inner-section-text {
        font-size: 14px;

        line-height: 150%;
    }

    /* FOOTER */

    .dictionary-inner-footer {
        margin-top: 24px;

        padding-top: 24px;
    }

    /* SOURCE */

    .dictionary-inner-source-block {
        margin-bottom: 24px;
    }

    .dictionary-inner-source {
        font-size: 14px;
    }

    .dictionary-inner-source::before,
    .dictionary-inner-source::after {
        width: 70px;
    }

    .dictionary-inner-source::before {
        right: calc(100% + 12px);
    }

    .dictionary-inner-source::after {
        left: calc(100% + 12px);
    }

    /* LINK */

    .dictionary-inner-source-block a {
        width: 100%;

        min-height: 48px;

        padding: 12px;

        text-align: center;

        word-break: break-word;

        font-size: 13px;

        line-height: 150%;
    }

    /* ACTIONS */

    .dictionary-inner-actions {
        gap: 24px;

        margin-bottom: 24px;
    }

    .dictionary-inner-actions img {
        width: 22px;
        height: 22px;
    }

    /* TAG TITLE */

    .dictionary-inner-tags-title {
        margin-bottom: 24px;

        text-align: center;

        font-size: 14px;
    }

    .dictionary-inner-tags-title::before,
    .dictionary-inner-tags-title::after {
        width: 60px;
    }

    .dictionary-inner-tags-title::before {
        right: calc(100% + 12px);
    }

    .dictionary-inner-tags-title::after {
        left: calc(100% + 12px);
    }

    /* TAGS */

    .dictionary-inner-tags {
        gap: 12px;

        margin-bottom: 40px;
    }

    .dictionary-inner-tags button {
        height: 38px;

        padding: 0 16px;

        border-radius: 12px;

        font-size: 13px;
    }
}

/* =========================
   NEWS PAGE 576
========================= */

@media (max-width: 576px) {
    /* SECTION */

    .news-page-section {
        height: auto;
    }

    .news-page-wrapper {
        position: static;
    }

    .news-page-grid-section {
        padding-top: 24px;

        border-radius: 16px 16px 0 0;
    }

    /* GRID */

    .news-page-grid {
        grid-template-columns: repeat(2, 168px);

        justify-content: center;

        gap: 8px;

        padding: 0 10px;

        margin-top: 16px;
        margin-bottom: 20px;
    }
    /* CARD */

    .news-page-card {
        width: 168px;
        height: 185px;

        border-radius: 10px;
    }

    .news-page-card-image-wrapper {
        height: 92px;
    }

    .news-page-card-content {
        padding: 6px;
    }

    .news-page-card-date {
        top: 6px;
        right: 6px;

        font-size: 8px;
    }

    .news-page-card-text {
        font-size: 10px;
        line-height: 13px;
    }

    .news-page-more-wrapper {
        width: 100%;

        padding: 0 10px 32px;
    }
    .news-page-more-line {
        display: none;
    }

    .news-page-more-btn {
        width: 100%;
        height: 28px;

        border-radius: 10px;

        font-size: 11px;
    }
}
/*news inner page 576*/
@media (max-width: 576px) {
    /* SECTION */

    .news-inner-section {
        padding: 20px 0 24px;
    }

    /* MAIN TITLE */

    .news-inner-main-title {
        margin-top: 18px;
        margin-bottom: 18px;

        padding: 0 20px;

        font-size: 20px;
        line-height: 110%;
    }

    /* TOP */

    .news-inner-top {
        width: 100%;

        margin-bottom: 20px;

        padding: 0 20px;

        gap: 10px;
    }

    .news-inner-line {
        display: none;
    }

    .news-inner-title {
        width: 100%;

        font-size: 12px;
        line-height: 140%;
    }

    .news-inner-gallery {
        display: none;
    }
    .news-inner-gallery-wrapper {
        width: calc(100% - 40px);

        margin: 0 auto 16px;

        padding: 0;

        background: transparent;

        box-shadow: none;
    }
    /* META */

    .news-inner-meta {
        position: static;

        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 8px;

        margin: 0;
    }

    .news-inner-date,
    .news-inner-badge {
        flex-shrink: 0;
    }
    /* BADGE */

    .news-inner-badge {
        width: 98px;
        height: 32px;

        font-size: 12px;

        border-radius: 8px;
    }

    /* DATE */

    .news-inner-date {
        position: relative;

        display: flex;
        align-items: center;
        gap: 2px;

        font-size: 12px;
    }

    /* ზედა ხაზი */

    .news-inner-date::before {
        content: "";

        position: absolute;

        top: -10px;
        left: 50%;

        transform: translateX(-50%);

        width: 150px;
        height: 1px;

        background: #cce9f9;
    }

    /* ქვედა ხაზი */

    .news-inner-date::after {
        content: "";

        position: absolute;

        bottom: -10px;
        left: 50%;

        transform: translateX(-50%);

        width: 200px;
        height: 1px;

        background: #cce9f9;
    }

    .news-inner-date img {
        width: 14px;
        height: 14px;
    }

    /* GALLERY */

    .news-inner-gallery {
        margin-top: 0;
    }

    .news-inner-gallery-grid {
        width: 100%;
    }

    .news-inner-gallery-item.active img {
        width: 100%;
        height: 247px;

        border-radius: 12px;
    }

    /* ARROWS */

    .news-inner-gallery,
    .news-inner-arrow {
        display: none;
    }

    /* CONTENT CARD */

    .news-inner-content-card {
        width: calc(100% - 40px);

        margin: 0 auto 24px;

        padding: 16px 15px;

        border-radius: 16px;

        font-size: 12px;

        line-height: 18px;
    }

    .news-inner-content-card p {
        font-size: 12px;

        line-height: 18px;
    }

    .news-inner-content-card p + p {
        margin-top: 12px;
    }

    /* SOCIAL */

    .news-inner-social-wrapper {
        width: 100%;

        padding: 0 20px;

        gap: 12px;
    }

    .news-inner-line2 {
        display: none;
    }

    .news-inner-socials {
        gap: 20px;
    }

    .news-inner-socials a img {
        width: 24px;
        height: 24px;
    }
}

/*analyze inner page 576*/
@media (max-width: 576px) {
    .analyze-links-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;

        width: 100%;
        margin-bottom: 24px;
    }

    .analyze-link-card {
        width: 100%;
        min-height: 80px;

        padding: 16px;

        font-size: 14px;
        line-height: 20px;
    }
}

/*dictionary all page 576*/
@media (max-width: 576px) {
    .dictionary-all {
        padding: 24px 0 80px;
    }

    .dictionary-all-container {
        width: 100%;
        padding: 0 19px;
    }

    .dictionary-all-search-text {
        font-size: 18px;
        margin-bottom: 24px;
    }

    /* SEARCH */

    .dictionary-all-search-wrapper {
        width: 100%;
        height: auto;
        padding: 20px 16px;
        margin-bottom: 20px;
    }

    .dictionary-all-search-box {
        width: 100%;
        height: 56px;
        margin-bottom: 20px;
        padding: 0 10px 0 16px;
    }

    .dictionary-all-search-input {
        font-size: 14px;
    }

    .dictionary-all-search-btn {
        width: 48px;
        height: 36px;
        flex-shrink: 0;
    }

    .dictionary-all-search-btn img {
        width: 24px;
        height: 24px;
    }

    /* LETTERS */

    .dictionary-all-letters {
        gap: 6px;
        margin-bottom: 20px;
    }

    .dictionary-all-letters button {
        width: 32px;
        height: 36px;
        font-size: 14px;
    }

    /* SHOW BTN */

    .dictionary-all-show-btn {
        width: 120px;
        height: 36px;
        font-size: 14px;
    }

    /* CARD */

    .dictionary-all-card {
        padding: 20px 16px;
        margin-bottom: 32px;
    }

    /* TITLE */

    .dictionary-all-card-title {
        gap: 12px;
        margin-bottom: 28px;
    }

    .dictionary-all-card-title span {
        flex: 1;
        width: auto;
    }

    .dictionary-all-card-title h2 {
        font-size: 26px;
        white-space: nowrap;
    }

    /* GRID */

    .dictionary-all-grid {
        grid-template-columns: 1fr;
        row-gap: 16px;
    }

    .dictionary-all-item {
        font-size: 16px;
        line-height: 1.5;
    }
}

/*contact page 576*/
@media (max-width: 576px) {
    .contact-section {
        padding: 24px 0 80px;
    }

    .contact-container {
        width: 100%;
        padding: 0 19px;
    }

    .contact-title {
        margin-bottom: 24px;
        font-size: 20px;
    }

    /* CONTENT */

    .contact-content {
        flex-direction: column;
        gap: 24px;
    }

    .contact-left,
    .contact-form-card {
        width: 100%;
        min-height: auto;
    }

    /* INFO CARDS */

    .contact-info-card {
        width: 100%;
    }

    .contact-info-card-small {
        height: 48px;
        padding: 6px 12px;
    }

    .contact-info-label {
        font-size: 12px;
    }

    .contact-info-link {
        font-size: 12px;
    }

    .contact-hotline-number {
        width: 84px;
        height: 32px;
        margin-left: auto;

        font-size: 18px;
        letter-spacing: 1px;
    }

    /* ADDRESS + MAP */

    .contact-location-wrapper {
        width: 100%;
    }

    .contact-info-card-big {
        align-items: flex-start;
        padding: 10px 12px;
        margin-bottom: 12px;
    }

    .contact-info-text {
        font-size: 12px;
        line-height: 18px;
    }

    .contact-map-card {
        width: calc(100% - 20px);
        height: 140px;
        margin: 12px auto;
    }

    /* SOCIAL */

    .contact-socials {
        width: 100%;
        height: auto;

        flex-direction: column;
        justify-content: center;

        gap: 14px;

        padding: 12px 0;

        margin-top: 10px;
    }

    .contact-socials-title {
        font-size: 12px;
    }

    .contact-social-icons {
        gap: 24px;
    }

    .contact-social-icons img {
        width: 18px;
        height: 18px;
    }

    /* FORM */

    .contact-form-card {
        width: 100%;
        padding: 18px;
        min-height: 520px;
    }

    .contact-form-top {
        gap: 12px;
        margin-bottom: 20px;
    }

    .contact-form-title {
        font-size: 16px;
    }

    .contact-form {
        gap: 10px;
    }

    .contact-form input {
        height: 38px;
        padding: 0 12px;
        font-size: 12px;
    }

    .contact-form textarea {
        height: 92px;
        padding: 12px;
        font-size: 12px;
    }

    .contact-form button {
        width: 126px;
        height: 24px;

        font-size: 10px;

        border-radius: 6px;
    }
}
