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

@font-face {
    font-family: Involve;
    src: url(../font/Involve-Bold-subset-ASCII.woff2);
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: Cosmica Trial;
    src: url(../font/CosmicaTrial-Light.woff2);
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: Cosmica Trial;
    src: url(../font/CosmicaTrial-Regular.woff2);
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: Cosmica Trial;
    src: url(../font/CosmicaTrial-Medium.woff2);
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: Cosmica Trial;
    src: url(../font/CosmicaTrial-Semibold.woff2);
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: Cosmica Trial;
    src: url(../font/CosmicaTrial-Bold.woff2);
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: Cosmica Trial;
    src: url(../font/CosmicaTrial-Extrabold.woff2);
    font-weight: 800;
    font-display: swap;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: Cosmica Trial, sans-serif;
    overflow-x: hidden;
}

ul,
li,
ol,
button,
a {
    text-decoration: none;
    border: none;
    background-color: transparent;
    list-style: none;
    font-family: Cosmica Trial, sans-serif;
}

button {
    cursor: pointer;
}


.custom__btn {
    display: inline-flex;
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    padding: 16px 32px;
    background: linear-gradient(102.54deg, #09090b 45.59%, #5c5c71 118.14%);
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.14);
    border-radius: 14px;
    transition: .2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.custom__btn:hover {
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.3);
}

.custom__btn:active {
    transform: scale(0.95);
}


/* header styles */
.header {
    padding: 16px 0;
    position: relative;
    z-index: 100;
}

.header__container {
    max-width: 1320px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.header__logo {
    display: flex;
}

.header__logo-text {
    font-family: Helvetica, sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 130%;
    position: absolute;
    left: 90px;
    color: black;
    top: 33px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__nav-link {
    color: black;
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
    transition: .2s ease;
    text-decoration: none;
}

.header__nav-link:hover {
    color: #76a5db;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__lang-btn {
    display: flex;
    align-items: center;
    gap: 2px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
}

.header__lang-menu {
    position: absolute;
    top: 30px;
    left: -10px;
    background: white;
    width: 120px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header__lang-menu.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.header__lang-text {
    font-size: 12px;
    font-weight: 600;
}

.header__lang-item {
    width: 100%;
    transition: .2s ease;
    cursor: pointer;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__lang-item:hover {
    background-color: #76a5db;
    color: white;
}

.hamburger__open-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger__open-btn:hover {
    background-color: #f5f5f5;
}

/* Hamburger Menu Styles */
.hamburger__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger__overlay.active {
    opacity: 1;
    visibility: visible;
}

.hamburger__menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.hamburger__overlay.active .hamburger__menu {
    transform: translateX(0);
}

.hamburger__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid #e2e8f0;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.hamburger__close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger__close-btn:hover {
    background-color: #f1f5f9;
    color: #334155;
    transform: rotate(90deg);
}

.hamburger__nav {
    flex: 1;
    padding: 32px 0;
}

.hamburger__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hamburger__nav-item {
    margin-bottom: 8px;
}

.hamburger__nav-link {
    display: block;
    padding: 16px 24px;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hamburger__nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #76a5db, #5c8bc7);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.hamburger__nav-link:hover {
    background-color: #f8fafc;
    color: #76a5db;
    padding-left: 32px;
}

.hamburger__nav-link:hover::before {
    transform: scaleY(1);
}

.hamburger__actions {
    padding: 24px;
    border-top: 1px solid #e2e8f0;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hamburger__lang-selector {
    display: flex;
    justify-content: center;
    position: relative;
}

.hamburger__lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.hamburger__lang-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.hamburger__lang-menu {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    list-style: none;
    margin: 0 0 8px 0;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow: hidden;
}

.hamburger__lang-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hamburger__lang-item {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #64748b;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
}

.hamburger__lang-item:hover {
    background: linear-gradient(135deg, #76a5db, #5c8bc7);
    color: white;
}

.hamburger__lang-item:first-child:hover {
    border-radius: 8px 8px 0 0;
}

.hamburger__lang-item:last-child:hover {
    border-radius: 0 0 8px 8px;
}

.hamburger__join-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #76a5db, #5c8bc7);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(118, 165, 219, 0.3);
    display: flex;
    justify-content: center;
}

.hamburger__join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(118, 165, 219, 0.4);
}

.hamburger__join-btn:active {
    transform: translateY(0);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* header styles */



/* hero styles  */
.hero {
    padding: 5px 0 82px;
}

.hero__container {
    max-width: 1320px;
    background-color: #F2F3F7;
    padding: 0 20px;
    border-radius: 50px;
    padding: 35px 25px 40px 25px;
    margin: 0 auto;
    position: relative;
    display: flex;
}

.hero__content {
    max-width: 780px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero__rating {
    color: #3F3F46;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    padding: 6px 11px;
    background-color: #FAFAFA;
    display: inline-flex;
    margin-bottom: 18px;
    border: 1px solid #F4F4F5;
    border-radius: 12px;
}

.hero__title {
    font-size: 48px;
    color: rgba(9, 9, 11, 1);
    font-weight: 600;
    line-height: 130%;
}

.hero__description {
    max-width: 450px;
    color: #3F3F46;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

.hero__button {
    margin-bottom: 46px;
}

.hero__stats {
    display: flex;
    gap: 20px;
}

.hero__stat {
    background-color: rgba(250, 250, 250, 1);
    border: 1px solid rgba(244, 244, 245, 1);
    padding: 12px 14px;
    text-align: center;
    border-radius: 10px;
    height: 120px;
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
}

.hero__stat-text {
    font-size: 13px;
    font-weight: 300;
    margin-top: auto;
    max-width: 167px;
}

.hero__stat-texts {
    font-size: 13px;
    font-weight: 300;
    margin-top: auto;
    max-width: 151px;
}

.hero__image-box {
    max-width: 551px;
}

.hero__image {
    max-width: 551px;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: white !important;
    width: 50px;
    height: 5px;
    border-radius: 50px;
}

/* hero styles  */


/* goal styles  */

.goal {
    padding-bottom: 50px;
}

.goal__container {
    max-width: 1320px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.goal__content {
    width: 100%;
}

.goal__title {
    color: rgba(43, 43, 43, 1);
    font-size: 40px;
    line-height: 100%;
    font-weight: 700;
    margin-bottom: 15px;
}

.goal__img {
    position: absolute;
    left: 325px;
    top: 30px;
}

.goal__description {
    color: rgba(43, 43, 43, 1);
    font-size: 16px;
    line-height: 160%;
    font-weight: 500;
    margin-bottom: 20px;
    max-width: 674px;
}

.goal__button {
    display: inline-flex;
    color: white;
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
    padding: 22px clamp(90px, 8vw, 100px);
    background: linear-gradient(102.54deg, #09090b 45.59%, #5c5c71 118.14%);
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.14);
    border-radius: 14px;
    transition: .2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.goal__description span {
    font-size: 25px;
    font-weight: 700;
}

.goal__subtitle {
    color: rgba(43, 43, 43, 1);
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 20px;
}

.goal__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 23px;
}

.goal__col {
    background: linear-gradient(102.43deg, #FEFEFE 16.88%, #F9F9F9 104.88%);
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 24px;
    padding: 24px;
    gap: 32px;
}

.goal__info-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    white-space: nowrap;
    color: rgba(15, 23, 42, 1)1;
    margin-bottom: 8px;
    margin-top: 32px;
}

.goal__info-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: rgba(51, 65, 85, 1);
}


/* goal styles  */

/* management styles  */

.management {
    background-color: rgba(242, 243, 247, 1);
    padding: 64px 0;
}

.management__container {
    max-width: 1320px;
    padding: 0 20px;
    margin: 0 auto;
}

.management__title {
    color: rgba(43, 43, 43, 1);
    font-size: 40px;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 4px;
}

.management__description {
    color: rgba(105, 117, 131, 1);
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 32px;
    font-weight: 500;
}

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

.management__member {
    width: 627px;
    display: flex;
    align-items: center;
    gap: 25px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 24px;
}

.management__member-image {
    max-width: 269px;
    width: 100%;
    height: auto;
}

.management__member-name {
    color: rgba(9, 9, 11, 1);
    font-size: 22px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 12px;
    max-width: 305px;
}

.management__member-experience {
    font-size: 16px;
    color: rgba(43, 43, 43, 1);
    line-height: 130%;
    font-weight: 500;
    max-width: 230px;
    margin-bottom: 18px;
}

.management__member-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.management__member-role {
    color: white;
    font-size: 16px;
    line-height: 130%;
    font-weight: 500;
    padding: 8px 24px;
    background: linear-gradient(101.86deg, #0A0A0C 41.32%, #434352 130.1%);
    border-radius: 10px;
}

/* management styles  */


/* Docs styles  */

.docs {
    padding: 64px 0;
}

.docs__container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.docs__title {
    color: rgba(43, 43, 43, 1);
    font-size: 40px;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 4px;
}

.docs__description {
    color: rgba(105, 117, 131, 1);
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 32px;
    font-weight: 500;
}

.docs__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.docs__item {
    background-color: rgba(242, 243, 247, 1);
    border-radius: 24px;
    padding-top: 24px;
    padding-left: 24px;
    padding-bottom: 24px;
    padding-right: 5px;
}

.docs__item-icon {
    margin-bottom: 24px;
}

.docs__item-title {
    color: rgba(43, 43, 43, 1);
    font-size: 20px;
    font-weight: 700;
    line-height: 115%;
    margin-bottom: 12px;
}

.docs__item-description {
    color: rgba(43, 43, 43, 1);
    font-size: 14px;
    line-height: 120%;
    max-width: 253px;
    margin-bottom: 30px;
}

.docs__link {
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    list-style: armenian;
    color: rgba(0, 0, 0, 1);
    text-decoration: underline;
}

/* Docs styles  */



/* Members styles */

.members {
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: rgba(242, 243, 247, 1);
}

.members__container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
}

.members__carousel {
    width: 100%;
}

.members__img {
    max-width: 327px;
    width: 100%;
    height: auto;
}

.members__info {
    flex-shrink: 0;
    min-height: 454px;
}

.members__track {
    display: flex;
    gap: 32px;
    animation: scrollCards 10s linear infinite;
    max-width: max-content;
}

@keyframes scrollCards {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.members__info-title {
    font-size: 24px;
    line-height: 130%;
    font-weight: 700;
    font-family: Involve, sans-serif;
    color: rgba(9, 9, 11, 1);
    margin-bottom: 8px;
    margin-top: 18px;
}

.members__info-description {
    font-size: 18px;
    line-height: 130%;
    font-weight: 400;
    color: rgba(105, 117, 131, 1);
    max-width: 326px;
}


/* benefits */

.benefits {
    padding-top: 64px;
    padding-bottom: 81px;
}

.benefits__container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
}

.benefitsnt__team {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    row-gap: 19px;
}

.benefits__member {
    display: flex;
    align-items: center;
    gap: 25px;
    background-color: rgba(242, 243, 247, 1);
    border-radius: 24px;
}

.benefits__member-name {
    font-size: 24px;
    line-height: 130%;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefits__member-image {
    max-width: 627px;
}

.benefits__member-experience {
    font-size: 16px;
    max-width: 275px;
    line-height: 130%;
    font-weight: 400;
}


/* App styles  */
.app {
    padding: 64px 0;
    background-image: url(../img/form-bg.avif);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.app__container {
    padding: 40px 32px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(100px);
    border-radius: 28px;
    max-width: 1280px;
    margin: 0 auto;
}

.app__title {
    text-align: center;
    color: rgba(43, 43, 43, 1);
    font-size: 32px;
    line-height: 120%;
    font-weight: 700;
    margin-bottom: 12px;
}

.app__description {
    color: rgba(105, 117, 131, 1);
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    max-width: 504px;
    width: 100%;
    text-align: center;
    margin: 0 auto 20px;
}

.app__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.success-message-ariza {
    color: #28a745;
    font-weight: bold;
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    display: none;
    text-align: center;
}

.app__form-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.app__inpBox {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app__form-label {
    color: rgba(43, 43, 43, 1);
    font-size: 16px;
    line-height: 120%;
    font-weight: 500;
}

.app__form-input,
.app__form-textarea {
    border: 1px solid rgba(43, 43, 43, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 11px 12px;
    border-radius: 8px;
}

.app__form-textarea:focus,
.app__form-input:focus {
    outline: 1px solid rgba(118, 165, 219, 1);
}

.app__form-textarea {
    height: 112px;
}

.app__form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app__form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app__form-checkbox {
    width: 24px;
    height: 24px;
}

.app__form-checkbox-label {
    color: rgba(105, 117, 131, 1);
    font-size: 16px;
    line-height: 130%;
    font-weight: 500;
}

.app__form-button {
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    background-color: rgba(118, 165, 219, 1);
    line-height: 20px;
    max-width: 406px;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    transition: .2s ease;
}

.app__form-button:hover {
    opacity: 0.8;
}

/* App styles  */


/* new styles  */
.news {
    padding: 64px 0;
}

.news__container {
    max-width: 1320px;
    padding: 0 20px;
    margin: 0 auto;
}

.news__title {
    color: rgba(43, 43, 43, 1);
    font-size: 40px;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 4px;
}

.news__titles {
    color: rgba(43, 43, 43, 1);
    font-size: 48px;
    font-weight: 700;
    line-height: 130%;
}

.news__description {
    color: rgba(105, 117, 131, 1);
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 32px;
    font-weight: 500;
    max-width: 394px;
}


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

.news__boxss {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}



.news-filter {
    display: inline-flex;
    flex-direction: column;
    font-family: "Cosmica Trial", sans-serif;
    max-width: 189px;
    width: 100%;
    border-radius: 12px;
    border: 0.5px solid #000000;
    overflow: hidden;
    background-color: #ffffff;
}

.news-filter__head {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    padding: 9px 16px 9px 16px;
    background: linear-gradient(114.8deg, #09090B 34.2%, #5C5C71 99.47%);
    color: #ffffff;

    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
}

.news-filter__head::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translateY(-55%) rotate(45deg);
}

.news-filter__head.open::after {
    transform: translateY(-55%) rotate(-135deg);
}

.news-filter__body {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
}

/* Ochiq holat */
.news-filter.is-open .news-filter__body {
    max-height: 200px;
    opacity: 1;
}


.news-filter__item {
    padding: 10px 16px 11px 16px;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #000000;
    cursor: pointer;
    background-color: #ffffff;
    border-top: 0.5px solid #E4E4EC;
}

.news-filter__item--active {
    background-color: #F2F3F7;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: white;
    border-radius: 0 0 18px 18px;
    border: 1px solid #D0D1D5;
    border-top: none;
    overflow: hidden;

    display: none;
}

.select-wrapper.open .dropdown {
    display: block;
}

.dropdown-item {
    padding: 14px 16px;
    font-family: "Cosmica Trial", sans-serif;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    background: #F3F4F8;
}

.dropdown-item:hover {
    background: #E5E7F0;
}


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

.news__item {
    flex-direction: column;
    align-items: start;
    max-width: 381px;
    width: 100%;
}

.news__item-image {
    max-width: 381px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 24px;
}

.news__item-title {
    color: rgba(43, 43, 43, 1);
    font-size: 24px;
    line-height: 130%;
    font-weight: 700;
    margin-bottom: 12px;
}

.news__item-text {
    font-size: 12px;
    line-height: 130%;
    font-weight: 500;
    color: rgba(105, 117, 131, 1);
    margin-bottom: 12px;
}

.news__item-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(105, 117, 131, 1);
    font-size: 14px;
    line-height: 130%;
    font-weight: 500;
    padding: 6px 8px;
    border: 1px solid rgba(225, 227, 230, 1);
    backdrop-filter: blur(30px);
    border-radius: 20px;
}

.news__item-date-icon {
    display: flex;
}

.news__item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}


/* new styles  */




.event {
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: #F2F3F7;
}

.event__container {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1332px;
}

.event__title {
    font-size: 40px;
    line-height: 100%;
    color: #2B2B2B;
    margin-bottom: 4px;
}

.event__text {
    font-size: 16px;
    line-height: 140%;
    color: #697583;
    margin-bottom: 32px;
    max-width: 394px;
    width: 100%;
}

.event__box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.event__info {
    background-color: #FFFFFF;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 582px;
}

.event__img {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.event__info-title {
    font-size: 20px;
    line-height: 130%;
    color: #2B2B2B;
    margin-bottom: 12px;
}

.event__info-text {
    font-size: 14px;
    line-height: 130%;
    color: #697583;
    margin-bottom: 5px;
}

.event__row {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 16px;
}

.event__col {
    display: flex;
    align-items: center;
    gap: 9px;
    background-color: #76A5DB;
    border: 1px solid #2B2B2B1A;
    padding: 5px 24px 8px 12px;
    border-radius: 10px;
}

.event__col-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    text-align: center;
    color: white;
}

.event__col-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
}

.event__col-text:last-child {
    padding-top: 4px;
}

.event__location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.event__location-title {
    font-size: 14px;
    line-height: 130%;
    vertical-align: bottom;
    color: #001C3C;
}

.event__btn {
    display: flex;
    justify-content: center;
}

.event__slider {
    width: 100%;
    position: relative;
    margin-bottom: 32px;
}

.event__track {
    display: flex;
    gap: 20px;
    animation: scrollEvents 30s linear infinite;
    width: fit-content;
}

.event__slider:hover .event__track {
    animation-play-state: paused;
}

.event__info {
    flex: 0 0 auto;
    width: 582px;
    background: #fff;
    border-radius: 24px;
    display: flex;
    gap: 15px;
}

@keyframes scrollEvents {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.our__btn {
    display: flex;
    justify-content: center;
    padding-top: 32px;
}

.our__box {
    display: flex;
    align-items: center;
    gap: 72px;
    padding-bottom: 40px;
    padding-top: 40px;
}

.our__hr {
    border-top: 1px solid #E2E8F0;
}

.our__hr {
    border-bottom: 1px solid #E2E8F0;
}

.our__sl {
    width: 114px;
    height: 80px;
}

.our {
    padding-top: 64px;
    padding-bottom: 64px;
}

.our__container {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1332px;
}

.our__title {
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B2B2B;
    margin-bottom: 4px;
}

.our__text {
    font-size: 16px;
    line-height: 140%;
    color: #697583;
    max-width: 394px;
    width: 100%;
    margin-bottom: 32px;
}

.our__slider {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.our__track {
    display: flex;
    gap: 72px;
    animation: scroll 10s linear infinite;
}

.our__track img {
    /* logotip balandligi */
    width: auto;
    object-fit: contain;
}

.notes {
    padding-top: 64px;
    padding-bottom: 64px;
}

.notes__container {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1332px;
    display: flex;
    align-items: start;
    gap: 32px;
}

.notes__row {
    background-image: url(../img/avatars/background-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 36px;
    padding-left: 71px;
    padding-right: 55px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    max-width: 886px;
    height: 690px;
    overflow: hidden;
    width: 100%;
}

.notes__box {
    background-color: #FFFFFFB2;
    backdrop-filter: blur(100px);
    padding: 18px;
    max-width: 372px;
    width: 100%;
    border-radius: 10px;
}

.notes__card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.notes__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: scrollDown 20s linear infinite;
}

.notes__col:nth-child(2) {
    animation: scrollUp 20s linear infinite;
}

.notes__info-title {
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B2B2B;
    margin-bottom: 4px;
}

.notes__info-text {
    color: #697583;
    max-width: 394px;
    width: 100%;

    font-style: Medium;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    margin-bottom: 24px;
}


.faq {
    padding: 64px 0;
    background-color: rgba(242, 243, 247, 1);
}

.faq__container {
    max-width: 1320px;
    padding: 0 20px;
    margin: 0 auto;
}

.faq__title {
    color: rgba(43, 43, 43, 1);
    font-size: 40px;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 4px;
}

.faq__description {
    color: rgba(105, 117, 131, 1);
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 32px;
    font-weight: 500;
    max-width: 394px;
}

.faq__content {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 0 48px;
}

.faq__questions {
    max-width: 782px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__question {
    border: 2px solid rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__question-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq__question-text {
    color: #2B2B2B;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
    flex: 1;
    margin-right: 20px;
}

.faq__question-icon {
    color: #2B2B2B;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.faq__question-icon svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
    background-color: rgba(255, 255, 255, 0.64);
}

.ml {
    padding: 0 50px;
}

.faq__answer li {
    list-style: disc;
    color: #2B2B2B;
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
}

.faq__answer p {
    color: #2B2B2B;
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
    padding-bottom: 24px;
}

.faq__question--active {
    border-color: rgba(255, 255, 255, 0.4);
}


.faq__question--active .faq__answer {
    max-height: 500px;
    opacity: 1;
    padding-top: 0;
    padding-bottom: 20px;
}

.faq__contact {
    max-width: 381px;
    width: 100%;
    height: 503px;
    border: 2px solid rgba(255, 255, 255, 1);
    backdrop-filter: blur(64px);
    padding: 91px 32px 28px;
    background: rgba(255, 255, 255, 0.64);
    border-radius: 20px;
}

.faq__contact-image {
    max-width: 236px;
    width: 100%;
    height: auto;
    margin: 0 auto 57px;
    display: flex;
}

.faq__contact-title {
    font-size: 24px;
    line-height: 130%;
    font-weight: 700;
    color: rgba(0, 28, 60, 1);
    margin-bottom: 12px;
    text-align: center;
}

.faq__contact-text {
    color: rgba(0, 28, 60, 1);
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 32px;
    text-align: center;
}

.faq__contact-button {
    width: 100%;
    padding: 10px;
    background-color: rgba(118, 165, 219, 1);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    line-height: 20px;
    font-synthesis-weight: 400;
    transition: .2s ease;
    display: flex;
    justify-content: center;
}

.faq__contact-button:hover {
    opacity: 0.8;
}

.icon-minus {
    display: none;
}

.faq__question--active .icon-plus {
    display: none;
}

.faq__question--active .icon-minus {
    display: inline-block;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50%);
    }
}


.notes__card-title {
    font-size: 22px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #2B2B2B;
}

.notes__card-text {
    color: #697583;

    font-style: Medium;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
}

.notes__texts {
    font-weight: 741;
    font-style: Book;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #3F3F46;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.bottom-form {
    padding-top: 64px;
    border-bottom: 6px solid rgba(93, 122, 156, 1);
    background: linear-gradient(180deg, #FFFFFF 0%, #F6FFFD 100%);
}

.bottom-form__container {
    max-width: 822px;
    padding: 0 20px;
    margin: 0 auto;
}

.bottom-form__title {
    color: rgba(25, 10, 53, 1);
    font-size: 40px;
    line-height: 130%;
    text-align: center;
    font-weight: 700;
    margin-bottom: 7px;
}

.bottom-form__description {
    color: rgba(140, 132, 154, 1);
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 32px;
    text-align: center;
}

.success-message-ques {
    display: none;
    color: #155724;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
}

.bottom-form__button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.bottom-form__input-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.bottom-form__input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.bottom-form__label {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: rgba(25, 10, 53, 1);
}

.bottom-form__input,
.bottom-form__textarea {
    width: 100%;
    border: 1px solid rgba(231, 229, 234, 1);
    padding: 12px;
    border-radius: 12px;
    outline: none;
    font-size: 16px;
    line-height: 100%;
}

.bottom-form__textarea-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.bottom-form__textarea {
    width: 100%;
    font-family: Cosmica Trial, sans-serif;
    font-weight: 500;
    height: 108px;
}

.bottom-form__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(123, 175, 235, 1);
    padding: 20px 24px;
    border-radius: 20px 20px 0 0;
    margin-bottom: 66px;
}

.bottom-form__checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bottom-form__labelCheck {
    color: white;
    font-size: 16px;
    line-height: 100%;
    background-color: rgba(123, 175, 235, 1);
}

.maps {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
}

.maps__box {
    background-color: rgba(255, 255, 255, 1);
    border-top-left-radius: 20px;
    margin-top: -60px;
    border-top-right-radius: 20px;
    top: 1px;
    max-width: 782px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 21px;
    gap: 5px;
}

.maps__description {
    font-size: 14px;
    line-height: 130%;
    font-weight: 600;
}

.bottom-form__checkbox {
    width: 24px;
    height: 24px;
}

.bottom-form__button {
    background-color: rgba(36, 36, 44, 1);
    border-radius: 12px;
    padding: 12px 28px;
    display: inline-flex;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    transition: .2s ease;
}

.bottom-form__button:hover {
    background-color: transparent;
    color: white;
}

/* footer styles  */

.footer {
    padding: 28px 0 20px;
    background-color: rgba(118, 165, 219, 1);
}

.footer__container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__brand {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.footer__social-list {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__social-link {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}

.footer__social-link:hover {
    background-color: rgba(221, 51, 51, 0.08);
    border-color: white;
}

.footer__content {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 17px;
}

.footer__links-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer__link {
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    line-height: 130%;
    font-weight: 500;
    transition: .2s ease;
}

.footer__link:hover {
    color: rgba(93, 122, 156, 1);
    text-decoration: underline;
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    max-width: 540px;
}

.footer__contact-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__contact-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
    transition: .2s ease;
}

.footer__contact-link:hover {
    color: rgba(93, 122, 156, 1);
    text-decoration: underline;
}

.footer__contact-icon {
    display: flex;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
}

.footer__copyright {
    color: rgba(225, 227, 230, 1);
    font-size: 12px;
    font-weight: 500;

    span {
        color: black;
    }
}

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

.footer__designer-text {
    color: white;
    font-size: 12px;
    line-height: 130%;
    font-weight: 500;
}

/* footer styles  */


/* personal styles */


.personal {
    padding-top: 167px;
    background-image: url(../img/bg.avif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.personal__container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.personal__title {
    font-size: 48px;
    line-height: 130%;
    font-weight: 700;
    margin-bottom: 12px;
    color: #09090B;
}

.personal__subtitle {
    font-size: 48px;
    line-height: 130%;
    font-weight: 700;
    text-align: center;
    padding-bottom: 250px;
    color: #09090B;
}

.personal__description {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    padding-bottom: 168px;
    line-height: 24px;
    max-width: 420px;
    color: #3F3F46;
}


/* List styles */


.list {
    padding-top: 100px;
}

.list__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.list__title {
    font-size: clamp(30px, 5vw, 40px);
    line-height: 130%;
    font-weight: 700;
    margin-bottom: 15px;
}

.list__description {
    font-size: 16px;
    line-height: 160%;
    font-weight: 500;
    margin-bottom: 43px;
}

.list__box {
    background-color: #F2F3F7;
    border-radius: 15px;
    padding: 31px 55px 39px 55px;
    margin-bottom: 25px;
}

.list__col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.3s;
}

.list__col.active {
    margin-bottom: 34px;
}

.list__col-title {
    font-size: 24px;
    line-height: 160%;
    font-weight: 700;
}

table {
    border-collapse: collapse;
    max-width: 1170px;
    border: 1px solid #aaa;
    width: 100%;
}


th,
td {
    border-left: 1px solid #aaa;
    padding: 7px 20px;
    text-align: left;
}

tr {
    background-color: #FFFFFF;
    border: 1px solid #aaa;

}

th {
    font-size: 18px;
    line-height: 160%;
    font-weight: 500;
    text-align: center;
}


.modal__btn {
    max-width: 355px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    vertical-align: middle;
}

.accordion-content {
    display: none;
    padding: 10px;
}

.wwww {
    padding-top: 25px;
    border: none;
    background: #F5F5F5;
}

.cell-with-image {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

@media(max-width:600px) {

    table,
    tr,
    td,
    th {
        display: block;
        font-size: 13px;
    }

    tr {
        margin-bottom: 15px;
    }

    th {
        background: #eee;
    }
}

.rotate {
    transform: rotate(180deg);
}


@media (max-width: 1140px) {
    .management__team {
        grid-template-columns: 1fr;
    }

    .benefitsnt__team {
        grid-template-columns: 1fr;
    }


    .benefits__member-image {
        width: 230px;
    }

    .hero__container {
        display: flex;
        flex-direction: column;
    }

    .header__nav-link {
        font-size: 14px;
    }

    .header__logo-img {
        max-width: 150px;
        width: 100%;
        height: auto;
    }

    .hero__content {
        max-width: 600px;
        margin-bottom: 50px;
    }

    .hero__description {
        max-width: 500px;
    }

    .management__member-name {
        font-size: 20px;
    }

    .management__member-experience {
        font-size: 16px;
    }

    .management__member-role {
        font-size: 12px;
    }

    .faq__content {
        padding: 0;
    }

    .header__logo-text {
        left: 75px;
        font-size: 9px;
    }

    .management__member {
        width: 100%;
    }

    .members__track {
        gap: 20px;
        animation: scrollCards 7s linear infinite;
    }

    .members__info {
        flex: 0 0 327px;
    }
}

@media (max-width: 979px) {
    .header__nav {
        display: none;
    }

    .hamburger__open-btn {
        display: flex;
    }

    .hero__content {
        max-width: 500px;
    }

    .hero__title {
        font-size: 40px;
    }

    .hero__image {
        max-width: 500px;
        width: 100%;
        height: auto;
        bottom: 0;
    }

    .goal__title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .goal__row {
        grid-template-columns: repeat(2, 1fr);
    }

    .docs__list,
    .news__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .news__list {
        padding: 0;
    }

    .news__item-title {
        font-size: 20px;
    }

    .news__item-text {
        font-size: 12px;
    }

    .faq__question-text {
        font-size: 16px;
        margin-right: 10px;
    }

    .faq__answer {
        font-size: 13px;
    }

    .faq__contact {
        max-width: 350px;
    }

    .members__gradient {
        display: none;
    }

}

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

    .list__description {
        font-size: 15px;
        line-height: 140%;
    }

    .personal__description {
        padding-bottom: 80px;
    }

    .list__col-title {
        font-size: 22px;
    }

    .arrow-icon {
        width: 30px;
    }

    .list__box {
        padding: 16px;
    }

    .goal__row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero__container {
        padding: 25px 20px 30px 20px;
        border-radius: 18px;
    }

    .header__join-btn,
    .header__lang-btn {
        display: none;
    }

    .hamburger__menu {
        max-width: 320px;
    }


    .hero__stat-number {
        font-size: 28px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero {
        padding-top: 35px;
    }

    .goal__container {
        display: flex;
        flex-direction: column;
    }

    .goal__title {
        font-size: 28px;
        line-height: 1.2;
    }

    .goal__img {
        left: 128px;
        width: 135px;
    }


    .goal__description,
    .goal__subtitle,
    .goal__list-item {
        font-size: 14px;
    }

    .members__img {
        width: 300px;
        height: 300px;
    }

    .goal {
        padding-bottom: 88px;
    }

    .management__title,
    .docs__title {
        font-size: 32px;
    }

    .management__description,
    .docs__description {
        font-size: 14px;
    }

    .app__form-button {
        max-width: 200px;
    }

    .faq__content {
        flex-direction: column;
    }

    .faq__contact {
        max-width: 100%;
    }

    .our__box {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .notes__row {
        flex-direction: column;
        padding: 20px;
        height: 700px;
        overflow: hidden;
    }

    .notes__col {
        animation: scrollDown 15s linear infinite;
    }

    .notes__col:nth-child(2) {
        animation: scrollDown 15s linear infinite;
    }

    .notes__container {
        flex-direction: column;
    }

    .bottom-form__input-group {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bottom-form__title {
        font-size: 28px;
    }


    .bottom-form__description {
        font-size: 14px;
        max-width: 300px;
        margin: 0 auto 20px;
    }

    .personal__title {
        font-size: 35px;
    }

    .personal__subtitle {
        font-size: 35px;
        padding-bottom: 100px;
    }

    .personal__description {
        font-size: 14px;
    }

    .news__boxss {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }

    .news__titles {
        font-size: 50px;
    }
}


@media (max-width: 480px) {
    .news__titles {
        font-size: 45px;
    }

    .management__member-image {
        width: 240px;
        border-radius: 20px;
    }

    .management__member-name {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .management__member-experience {
        font-size: 14px;
        line-height: 120%;
    }

    .benefits__member {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .benefits__member-image {
        width: 100%;
        height: auto;
        border-radius: 30px;
        max-width: 250px;
    }

    .benefits__member-experience {
        max-width: 100%;
    }

    .management__member {
        flex-direction: column;
        padding-left: 10px;
        padding-top: 20px;
    }


    .management__team,
    .docs__list,
    .news__list {
        grid-template-columns: 1fr;
    }

    .app__form-actions {
        flex-direction: column;
        gap: 12px;
        justify-content: left;
        align-items: start;
    }

    .app__form-button {
        max-width: 100%;
    }

    .app__container {
        padding: 40px 20px;
    }

    .footer__link {
        font-size: 15px;
    }

    .bottom-form__actions {
        flex-direction: column;
        gap: 20px;
    }

    .bottom-form__button {
        width: 100%;
        justify-content: center;
    }

    .bottom-form__labelCheck {
        font-size: 12px;
    }

    .goal__info-title {
        white-space: wrap;
    }

    .maps__box {
        max-width: 350px;
    }

    .maps__description {
        font-size: 11px;
    }

    .personal__title {
        font-size: 33px;
    }

    .personal__subtitle {
        font-size: 33px;
        margin-bottom: 20px;
    }

    .personal__description {
        font-size: 12px;
    }

    .list__col-title {
        font-size: 18px;
    }

    .arrow-icon {
        width: 23px;
    }
}

@media (max-width: 370px) {

    .hamburger__menu {
        max-width: 100%;
    }

    .goal__col {
        padding: 15px;
    }

    .goal__info-title {
        font-size: 21px;
        margin-top: 25px;
    }

    .goal__info-text {
        font-size: 13px;
        line-height: 22px;
    }

    .goal__img {
        left: 10px;
        top: 60px;
        width: 135px;
    }

}

@media (max-width:355px) {
    .goal__button {
        padding: 22px 50px;
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .news__titles {
        font-size: 40px;
    }
}