:root {
    --font-family: 'Montserrat', sans-serif;
    --third-family: 'Sofia Sans', sans-serif;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: #03203C;

    overflow-x: hidden;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 10px 20px;
}

.header-top {
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.header {
    position: relative;
    z-index: 3;
}

.header-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-start {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-logo {
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.header-nav {
    display: flex;
    gap: 20px;
}

.header-nav a {
    text-decoration: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 119%;
    letter-spacing: -0.03em;
    color: #fff;
    transition: color 0.3s ease;

    transition: all 0.3s ease;
}

.header-nav a:hover {
    color: rgba(255, 255, 255, 0.5);
}

.header-nav a.checked {
    color: rgba(255, 255, 255, 0.5);
}

.header-end {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-tel {
    
}

.header-tel a {
    margin-bottom: 9px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 81%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #fff;
    text-decoration: none;

    transition: all 0.3s ease;
}

.header-tel a:hover {
    color: rgba(255, 255, 255, 0.5);
}

.header-tel div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-tel div p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 108%;
    letter-spacing: -0.04em;
    text-align: right;
    color: rgba(255, 255, 255, 0.4);
}

.header-tel div svg {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.header-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-social a svg {
    transition: all 0.3s ease;
}

.header-social a svg:hover {
    opacity: 0.5;
}

.header-button {
    background: #fff;
    padding: 30px;
    border-radius: 120px;

    display: flex;
    align-items: center;
    gap: 87px;

    border: none;
    cursor: pointer;

    transition: all 0.3s ease;
}

.header-button span {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 119%;
    letter-spacing: -0.05em;
    color: #03203c;
}

.header-button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.header-burger {
    background: none;
    border: none;
    cursor: pointer;

    display: none;
}

.header-burger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.header-mobile {
    background: #0e2d4b;
    padding: 25px;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    z-index: 5;
    height: 100%;

    transform: translateX(100%);
    transition: transform 0.3s ease;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.header-mobile.active {
    transform: translateX(0);
}

.header-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;

    display: flex;
    justify-content: flex-end;
    width: 100%;
}

/* main */

.main {
    position: relative;
}

.main-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.main-top a {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    padding: 20px;

    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 90%;
    letter-spacing: -0.03em;
    text-decoration: none;
    text-align: center;
    color: #fff;
}

.main-top a:first-child {
    text-decoration: underline;
}

.main-base {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.main-logo {
    width: 473px;
}

.main-left {
    width: 238px;
}

.main-right {
    width: 291px;
}

.main-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 35px;
    line-height: 134%;
    letter-spacing: -0.06em;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.main-text {
    text-align: center;
    margin-bottom: 60px;

    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 119%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #fff;
    opacity: 0.5;
}

.main-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 65%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.main-bottom-order {
    border-radius: 58px;
    padding: 30px;
    background: #00b3f3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;

    width: 50%;
    transition: all 0.3s ease;

    position: relative;
    z-index: 2;
    border: 0;
}

.main-bottom-order:hover {
    opacity: 0.5;
}

.main-bottom-order span,
.main-bottom-video span {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: -0.06em;
    color: #fff;
    text-decoration: none;
}

.main-bottom-video {
    border: 1px solid rgba(0, 179, 243, 0.3);
    border-radius: 58px;
    padding: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;

    position: relative;
    z-index: 2;

    backdrop-filter: blur(20px);
    background: rgba(0, 179, 243, 0.1);

    width: 50%;
    transition: all 0.3s ease;
}

.main-bottom-video:hover {
    opacity: 0.5;
}

.main-bottom-text {
    /* position: absolute; */
    margin-left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 100%;
}

/* about */

.about {
    padding: 60px 0px;
    border-radius: 40px;
    background: #fff;
    margin-top: -30px;

    position: relative;
}

.about-title {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 80px;
    line-height: 90%;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    text-align: center;
    color: #03203c;

    margin-bottom: 60px;
}

.about-title span {
    color: #00b3f3;
}

.about-image {
    width: 100%;
}

.about-crack-top {
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 1;
}

/* parents */

.parents {
    padding: 120px 0px;
}

.parents-title {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 80px;
    line-height: 90%;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    text-align: center;

    margin-bottom: 30px;
}

.parents-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    width: fit-content;

    margin: 0 auto;

    border: 1px solid rgba(0, 179, 243, 0.3);
    border-radius: 58px;
    /* padding: 30px; */

    backdrop-filter: blur(20px);
    background: rgba(0, 179, 243, 0.1);

    margin-bottom: 60px;
}

.parents-user-image {
    border-radius: 741px;
    width: 50px;
    height: 50px;
}

.parents-user p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: -0.05em;
    color: #fff;
}

.parents-block {
    display: flex;
    
}

.parents-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.parents-left-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;

    padding: 30px;
    border: 1px solid #4f6377;
}

.parents-left-item:nth-child(1),
.parents-left-item:nth-child(3) {
    border-left: none;
}

.parents-left-item:nth-child(2),
.parents-left-item:nth-child(4) {
    border-left: none;
    border-right: none;
}

.parents-left-item img {
    width: 47px;
    height: 47px;
}

.parents-left-item h4 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 20px;
}

.parents-left-item p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.5);
}

.parents-right {
    background: #fff;
    border-radius: 40px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    justify-content: space-between;
    margin-left: -30px;
}

.parents-right img {
    width: 47px;
    height: 47px;
}

.parents-right h4 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.03em;
    color: #03203c;
    margin-bottom: 20px;
}

.parents-right p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.03em;
    width: 80%;
    color: rgba(3, 32, 60, 0.5);
}

/* why */

.why {
    background: rgba(0, 179, 243, 0.1);
    border-radius: 40px;
    border: 1px solid rgba(0, 179, 243, 0.3);

    padding: 60px 0px;
    position: relative;
}

.why-title {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 80px;
    line-height: 90%;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;

    margin-bottom: 60px;

    position: relative;
    z-index: 3;
}

.why-title span {
    color: rgba(255, 255, 255, 0.4);
}

.why-block {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    position: relative;
    z-index: 3;
}

.why-block-left {
    width: 50%;
    border-radius: 46px;
    object-fit: cover;
}

.why-block-right {
    width: 50%;
}

.why-block-right__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 119%;
    letter-spacing: -0.03em;
    color: #fff;

    margin-bottom: 60px;
}

.why-block-triple {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 60px;
}

.why-block-triple div {
    width: 33.3%;
}

.why-block-triple div h5 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 35px;
    line-height: 134%;
    letter-spacing: -0.06em;
    color: #fff;
}

.why-block-triple div p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 181%;
    letter-spacing: -0.06em;
    color: #fff;
    opacity: 0.5;
}

.why-block-right .main-bottom-order {
    width: 100%;
}

.why-left_img {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    z-index: 1;
}

.why-right_img {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 1;
    left: 30px;
    width: 600px;
}

/* forma */

.forma {
    padding: 120px 0px;
}

.forma-title {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 80px;
    line-height: 90%;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;

    margin-bottom: 30px;
}

.forma-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 119%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #fff;
    opacity: 0.5;

    margin-bottom: 60px;
}

.forma-block {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.forma-block-flex {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.forma-input h5 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 15px;
}

.forma-input input {
    border: 1px solid rgba(0, 179, 243, 0.3);
    border-radius: 1000px;
    padding: 13px 20px;
    background: rgba(0, 179, 243, 0.1);

    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.03em;
    color: #ffffff80;
    outline: none;
    
    width: 100%;
    transition: all .4s ease;
}

.forma-input input::placeholder {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.03em;
    color: #ffffff80;
}

.forma-input input:focus {
    border: 1px solid rgba(0, 178, 243, 0.722);
}

.forma-check {
    display: flex;
    gap: 10px;
    align-items: center;
}

.forma-check h4 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #fff;
    opacity: 0.5;
}

.forma-check h4 a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #fff;
}

.forma-button {
    position: relative;
    margin-top: 10px;
}

.forma-button > span {
    border-radius: 27px;
    padding: 10px;
    background: #fff;
    transform: rotate(-4deg);

    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 138%;
    letter-spacing: -0.06em;
    color: #03203c;

    position: absolute;
    z-index: 3;
    top: -20px;
    right: 50px;
}

.forma-button .main-bottom-order {
    width: 100%;
    position: relative;
    z-index: 1;
}

.forma-block-img {
    width: 50%;
    border-radius: 40px;
    background-image: url(../images/forma.png);
    background-size: cover;
    background-position: center;

    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
}

.forma-block-img span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.03em;
    color: #fff;

    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.2);

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1000px;
    padding: 24px;
}

/* faq */

.faq {
    position: relative;
    background-color: #fff;
    border-radius: 40px;
    padding: 60px 0px;
}

.faq-title {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 80px;
    line-height: 90%;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    text-align: center;
    color: #03203c;

    margin-bottom: 60px;
}

.faq-title span {
    color: #00b3f3;
}

.faq-left {
    position: absolute;
    top: 60px;
    right: 0;
    z-index: 1;
}

.faq-right {
    position: absolute;
    bottom: 60px;
    left: 0;
    z-index: 1;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;

    position: relative;
    z-index: 4;

    transition: all .4s ease;
}

.faq-item {
    border-radius: 140px;
    padding: 40px;
    background-color: #03203c;
    transition: border-radius .5s ease, background-color .4s ease;
}

.faq-item.active {
    border-radius: 40px;
}

.faq-item-start {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item-start p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.03em;
    color: #fff;
}

.faq-item-start svg {
    cursor: pointer;
    transition: all .4s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
}

.faq-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #fff;
    padding-top: 10px;
    opacity: 0.5;
}

.faq-content p a {
    color: #fff;
}

.rotate {
    transform: rotate(45deg);
}

.faq-mob-svg {
    display: none;
}

/* footer */

.footer {
    padding-top: 120px;
}

.footer-inner {
    border-bottom: 1px #fff solid;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
}

.footer-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 106%;
    letter-spacing: -0.06em;
    color: #fff;
    opacity: 0.5;
    width: 50%;
}

.footer-bottom {
    width: 100%;
    margin: 0px auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 30%;
}

.footer-links a {
    white-space: nowrap;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 138%;
    letter-spacing: -0.06em;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-align: right;
    color: #fff;
    opacity: 0.5;
}

/* owner */

.owner-top {
    background-image: url(../images/owner.jpg);
    background-size: cover;
    background-position: center;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;

    margin-top: 40px;

    position: relative;
    z-index: 3;

    padding: 60px 30px;
}

.owner-top > div h1 {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 80px;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.owner-top > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* margin-bottom: 20px; */
}

.owner-top > div img {
    border-radius: 741px;
    width: 56px;
    height: 56px;
}

.owner-top p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 235%;
    letter-spacing: -0.05em;
    color: #fff;
    text-align: center;
}

.owner-inn {
    position: relative;
}

.owner-left {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -130px;
    z-index: 1;
    height: 180px;
}

.owner-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -90px;
    z-index: 1;
    height: 180px;
}

.owner-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    margin-top: 60px;
}

.owner-bottom div {
    width: 33.33%;
    display: flex;
    align-items: center;
    gap: 11px;
}

.owner-bottom div h5 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 119%;
    letter-spacing: -0.03em;
    color: #fff;
    opacity: 0.6;
}

.owner-bottom div svg {
    min-width: 40px;
}

.owner-light {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 80px;
    line-height: 97%;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    color: #fff;

    padding: 60px 0px;

    border-bottom: 1px solid rgba(0, 179, 243, 0.3);
    border-top: 1px solid rgba(0, 179, 243, 0.3);

    background: rgba(0, 179, 243, 0.1);

    margin-top: 120px;
    margin-bottom: 120px;

    white-space: nowrap;
    overflow: hidden;
}

.owner-light__track {
    display: flex;
    width: max-content;
    animation: ownerLightMarquee 18s linear infinite;
    will-change: transform;
}

.owner-light__text {
    flex-shrink: 0;
    padding-right: 80px;
}

.owner-light__text span {
    color: #00b3f3;
}

@keyframes ownerLightMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .owner-light__track {
        animation: none;
    }
}

/* agents */

.agents {
    background-color: #fff;
    border-radius: 40px;
    padding: 60px 0px;

    position: relative;
}

.agents-title {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 80px;
    /* line-height: 123%; */
    letter-spacing: -0.06em;
    text-align: center;
    text-transform: uppercase;
    color: #03203c;

    /* margin-bottom: 20px; */
}

.agents-undertitle {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 235%;
    letter-spacing: -0.05em;
    text-align: center;
    color: #03203c;
    margin-bottom: 60px;
}

.agents-undertitle span {
    color: #00b3f3;
}

.agents-slider {
    position: relative;
    padding: 0 78px 46px;
}

.agents-picturies {
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
}

.agents-picturies:active {
    cursor: grabbing;
}

.agents-picturies:focus-visible {
    outline: 2px solid #00b3f3;
    outline-offset: 8px;
}

.agents-picturies__track {
    display: flex;
    gap: 25px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.agents-picturies.is-dragging .agents-picturies__track {
    transition: none;
}

.agents-picturies__slide {
    flex: 0 0 calc((100% - 75px) / 4);
    min-width: 0;
    /* border: 1px solid rgba(0, 179, 243, 0.18); */
    border-radius: 20px;
    /* background: #f4fbfe; */
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.agents-picturies img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.agents-slider__button {
    position: absolute;
    top: calc(50% - 23px);
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 1px solid rgba(0, 179, 243, 0.25);
    border-radius: 50%;
    background: #03203c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.agents-slider__button:hover {
    background: #00b3f3;
}

.agents-slider__button:active {
    transform: translateY(-50%) scale(0.96);
}

.agents-slider__button--prev {
    left: 0;
}

.agents-slider__button--next {
    right: 0;
}

.agents-slider__button:disabled {
    opacity: 0.35;
    cursor: default;
}

.agents-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.agents-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(3, 32, 60, 0.22);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.agents-slider__dot.active {
    width: 28px;
    border-radius: 999px;
    background: #00b3f3;
}

.agents-table {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;

    border-bottom: 1px #e6e9eb solid;
    border-top: 1px #e6e9eb solid;

    margin-top: 60px;
    margin-bottom: 60px;
}

.agents-table-item {
    width: 33.33%;
    padding: 30px;
}

.agents-table-item:nth-child(1) {
    border-right: 1px #e6e9eb solid;
    padding-left: 0;
}

.agents-table-item:nth-child(2) {
    border-right: 1px #e6e9eb solid;
}

.agents-table-item h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #03203c;

    margin-bottom: 20px;
}

.agents-table-list {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: rgba(3, 32, 60, 0.5);

    margin-bottom: 20px;
    list-style: none;
    padding: 0;
    margin-left: 10px;
}

.agents-table-list li {
    position: relative;
    padding-left: 18px;
}

.agents-table-list li + li {
    margin-top: 6px;
}

.agents-table-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 0.58em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
}

.agents-table-item h5 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #03203c;
}

.agents-be {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #03203c;

    opacity: 0.5;
}

.agents-z {
    position: relative;
    z-index: 4; 
}

.agents-left {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 160px;
    z-index: 1 ;
}

.agents-right {
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 1;
    height: 130px;
}

/* program */

.program {
    background-color: #fff;
    border-radius: 40px;
    margin-top: 60px;
    padding: 60px 0px;

    position: relative;
}

.program-title {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 80px;
    line-height: 90%;
    letter-spacing: -0.06em;
    text-align: center;
    text-transform: uppercase;
    color: #03203c;

    margin-bottom: 10px;
}

.program-text {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 95%;
    letter-spacing: -0.05em;
    color: #03203c;
    text-align: center;

    margin-bottom: 60px;
}

.program-text span {
    color: #00b3f3;
}

.program-left {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 1;
    height: 150px;
}

.program-right {
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 1;
    height: 180px;
}

.program-z {
    position: relative;
    z-index: 4;
}

/* program-items */

.program-items {
    display: flex;
    flex-direction: column;
    gap: 30px;

    position: relative;
    z-index: 4;
}

.program-item {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    background: rgba(3, 32, 60, 0.05);
    /* opacity: 0.05; */
    border-radius: 30px;
    padding: 30px;
}

.program-item-img {
    width: 50%;
    object-fit: cover;
    border-radius: 20px;
}

.program-item-last {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
}

.program-item-first {
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-item-first h4 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: -0.05em;
    color: #03203c;
}

.program-item-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: -0.06em;
    color: rgba(3, 32, 60, 0.5);
}

/* rules */

.rules {
    padding: 60px 0px;
}

.rules-title {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 80px;
    line-height: 90%;
    letter-spacing: -0.06em;
    text-align: center;
    text-transform: uppercase;
    color: #fff;

    margin-bottom: 60px;
}

.rules .faq-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 20px;
}

.rules .faq-item {
    background-color: rgba(0, 179, 243, 0.1);
    border: 1px rgba(0, 179, 243, 0.3) solid;
    align-self: start;
}

.rules .faq-item:last-child {
    background-color: rgba(0, 179, 243, 0.02);
    grid-column: 1 / -1;
}

/* twich */

.twich {
    background: #032f4e;
    border-radius: 40px;
    padding: 60px 0px;

    margin-top: 60px;
    border: 1px #05538b solid;

    position: relative;
}

.twich-title {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 80px;
    line-height: 99%;
    letter-spacing: -0.06em;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.twich-under {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 99%;
    letter-spacing: -0.05em;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}


.twich-under span {
    color: #00b3f3;
}

.online {
    background-image: url(../images/twich.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;

    position: relative;
    height: 546px;
    z-index: 7;

    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;

    padding: 30px;
}

.online svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.online span {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.2);

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 58px;
    padding: 30px;

    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: -0.05em;
    color: #fff;
}

.twich-left {
    position: absolute;
    z-index: 1;
    top: 50px;
    left: 0;
    height: 290px;
}

.twich-right {
    position: absolute;
    z-index: 1;
    bottom: 50px;
    right: 0;
    height: 250px;
}

/* news */

.news {
    padding: 120px 0px;
}

.news-p {
    position: relative; 
}

.news-title {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 80px;
    line-height: 99%;
    letter-spacing: -0.06em;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.news-under {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 294%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #fff;
    opacity: 0.5;

    margin-bottom: 60px;
}

.news-buttons {
    position: absolute;
    top: 0;
    right: 0;

    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.news-buttons button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;

    transition: all .4s ease;
}

.news-buttons button:hover {
    opacity: 0.5;
}

.news-items {
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
}

.news-items:active {
    cursor: grabbing;
}

.news-items:focus-visible {
    outline: 2px solid #00b3f3;
    outline-offset: 8px;
}

.news-items__track {
    display: flex;
    gap: 30px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.news-items.is-dragging .news-items__track {
    transition: none;
}

.news-item {
    flex: 0 0 calc((100% - 30px) / 2);
    min-width: 0;
    display: flex;
    gap: 30px;
    padding: 30px;
    border-radius: 30px;
    background-color: #fff;
}

.news-item img {
    border-radius: 30px;
    width: 60%;
    height: 430px;
}

.news-items div h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    letter-spacing: -0.05em;
    text-align: center;
    color: #03203c;

    margin-bottom: 10px;
}

.news-items div p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 106%;
    letter-spacing: -0.06em;
    color: rgba(11, 15, 15, 0.5);
}

.next {
    padding-bottom: 60px;
}

.next-title {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 80px;
    line-height: 99%;
    letter-spacing: -0.06em;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.next-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 119%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #fff;
    opacity: 0.6;
}

.next-block {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    margin-top: 60px;
}

.calendar {
    background-color: #fff;
    border: 1px solid rgba(3, 32, 60, 0.2);
    border-radius: 30px;
    padding: 20px 28px 24px;

    width: 30%;
}

.calendar-head {
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    align-items: center;
    margin-bottom: 22px;
}

.calendar-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #03203c;
}

.calendar-nav {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #03203c;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.calendar-nav:hover:not(:disabled) {
    background: rgba(3, 32, 60, 0.08);
}

.calendar-nav:disabled {
    opacity: 0.18;
    cursor: default;
}

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-weekdays {
    border-bottom: 1px solid rgba(3, 32, 60, 0.08);
    padding-bottom: 14px;
    margin-bottom: 10px;
}

.calendar-weekday {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #03203c;
}

.calendar-weekday.weekend {
    color: #ff2d2d;
}

.calendar-grid {
    row-gap: 11px;
}

.calendar-day {
    width: 48px;
    height: 48px;
    justify-self: center;
    border: none;
    border-radius: 50%;
    background: transparent;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #03203c;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.calendar-day.weekend {
    color: #ff2d2d;
}

.calendar-day.is-muted {
    color: rgba(3, 32, 60, 0.28);
    cursor: default;
}

.calendar-day.is-event {
    background: #f0f1f2;
    color: #03203c;
}

.cal-time {
    width: 30%;
}

.calendar-day.is-event.weekend {
    color: #ff2d2d;
}

.calendar-day.is-active {
    background: #03203c;
    color: #fff;
}

.calendar-day.is-active.weekend {
    color: #fff;
}

.calendar-day.is-event:hover {
    transform: scale(1.05);
}

.calendar-day:disabled {
    pointer-events: none;
}

.calendar-info {
    padding: 10px;
    border-radius: 30px;
    background-color: #fff;

    width: 70%;

    display: flex;
    justify-content: center;
    gap: 100px;
    align-items: center;

    padding: 130px 0px;
}

.cal-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 20%;
}

.cal-left p {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.07em;
    text-align: center;
    color: rgba(3, 32, 60, 0.5);
}

.cal-left h5 {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #03203c;
}

.cal-time {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.cal-time h2 {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 80px;
    line-height: 97%;
    letter-spacing: -0.06em;
    color: #03203c;
}


.cal-time h3,
.cal-time h4 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 119%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #03203c;

    opacity: 0.5;
}

/* players */

.players {
    padding: 60px 0px;
    position: relative;

    border: 1px solid rgba(0, 179, 243, 0.3);
    border-radius: 40px;
    background: #032f4e;
}

.players-title {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 80px;
    line-height: 80%;
    letter-spacing: -0.06em;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.players-title span {
    color: rgba(255, 255, 255, 0.4);
}

.players-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 294%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #fff;
}

.players-table-wrap {
    position: relative;
    z-index: 2;
    margin-top: 50px;
    overflow-x: auto;
}

.players-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
    table-layout: fixed;
    /* background: #083b5b; */
}

.players-table th,
.players-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 119%;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
    vertical-align: middle;
}

.players-table th:last-child,
.players-table td:last-child {
    border-right: none;
    text-align: center;
}

.players-table th {
    height: 54px;
    padding: 0 22px;
    font-weight: 600;
    font-size: 13px;
    color: #fff;
}

.players-table td {
    height: 90px;
    padding: 0 22px;
}

.players-table th:nth-child(1),
.players-table td:nth-child(1) {
    width: 33%;
}

.players-table th:nth-child(2),
.players-table td:nth-child(2) {
    width: 22%;
}

.players-table th:nth-child(3),
.players-table td:nth-child(3) {
    width: 22%;
}

.players-table th:nth-child(4),
.players-table td:nth-child(4) {
    width: 18%;
}

.players-table th:nth-child(5),
.players-table td:nth-child(5) {
    width: 5%;
}

.players-person {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.players-person img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.players-left {
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 1;

}

.players-right {
    position: absolute;
    bottom: 50px;
    right: 0;
    z-index: 1;
    height: 190px;
}

.players-button {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.players-button__item {
    padding: 15px 30px;
    border-radius: 30px;
    background: transparent;
    border: 1px solid #00B3F34D;

    outline: none;
    cursor: pointer;

    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.players .players-button__item.checked {
    background: #00B3F3;
}

.turnirs .players-button__item.checked {
    background: #00B3F3;
}

.players-table__score {
    padding: 10px 20px;
    border-radius: 30px;
    background: #00B3F3;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.turnirs .players-table th:nth-child(1),
.turnirs .players-table td:nth-child(1) {
    width: 30%;
}

.turnirs .players-table th:nth-child(2),
.turnirs .players-table td:nth-child(2) {
    width: 30%;
}

.turnirs .players-table th:nth-child(3),
.turnirs .players-table td:nth-child(3) {
    width: 30%;
}

.turnirs .players-table th:nth-child(4),
.turnirs .players-table td:nth-child(4) {
    width: 0.1%;
}

.turnirs .players-table th,
.turnirs.players-table td {
    border-bottom: 1px solid #1C4460;
    border-right: 1px solid #1C4460;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 119%;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
    vertical-align: middle;
}

.turnirs .players-table th:last-child,
.turnirs .players-table td:last-child {
    border-right: none;
    text-align: center;
}


.players-table th,
.players-table td {
    border-bottom: 1px solid #1C4460;
    border-right: 1px solid #1C4460;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 119%;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
    vertical-align: middle;
}

.turnirs {
    padding-top: 100px;
}





