:root {
    /* ===== Colors ===== */
    --body-color: #fff;
    --primary-color: #3a6ea5;
    --primary-color-light: #f6f5ff;
    --text-color: #707070;
    --border-color: #D9D9D9;
    --login-border-color: #3a6ea5;
    --danger-font-color: #58151c;
    --danger-bg-color: #f8d7da;
    --danger-border-color: #f1aeb5;
    --danger-link-color: #58151c;
    --block-bg-color: #F1F4F6;


    /* ====== Transition ====== */
    --tran-03: all 0.2s ease-in-out;
    --tran-03: all 0.2s ease-in-out;
    --tran-04: all 0.3s ease-in-out;
    --tran-05: all 0.3s ease-in-out;


    /* ====== width ====== */
    --main-body-width: 1366px;
}

@font-face {
    font-family: "Martian Mono";
    src: url('../fonts/Martian_Mono/MartianMono-VariableFont.ttf') format("truetype");

}

@font-face {
    font-family: "NobelWGL-Bold";
    src: url('../fonts/NobelWGL/NobelWGL-Bold.ttf') format("truetype");

}


@font-face {
    font-family: "TT Rounds Neue";
    src: url('../fonts/TTRoundsNeue-Regular.ttf') format("truetype");

}


@font-face {
    font-family: "Lawyer Gothic";
    src: url('../fonts/LawyerGothic/LawyerGothic-Bold.ttf') format("truetype");
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Nunito";
    src: url('../fonts/Nunito/static/Nunito-Medium.ttf') format("truetype");
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}


html {
    box-sizing: border-box;
    font-size: 16px;
}


body {
    margin: 0;
    padding: 0;
    font-family: "Martian Mono", monospace, Arial, sans-serif;
    background: #fafafa;
    color: #222;
    /* min-height: 100vh; */
    line-height: 1.5;
}


/* ============================= HEADER ============================ */
.header {
    display: flex;
    height: 82px;
    width: 100%;
    padding: 16px 0px 16px 0px;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header--mobile {
    display: none;
    height: 60px;
    width: 100%;
    padding: 16px 0px 5px 0px;
    justify-content: center;
    background-color: #fafafa;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    box-sizing: content-box;
}

.header--mobile .navlogo--dropdown {
    box-sizing: border-box;
    display: flex;
    height: 100%;
    width: 160px;
    padding: 8px 16px;
    border-radius: 8px;
    backdrop-filter: blur(16px);
    background-color: rgba(233, 239, 242, 0.70);
    justify-content: space-between;
}

.header--mobile .navlogo--dropdown i {
    margin: auto;
    color: #08386B;
}


.header--mobile .dropbtn-header {
    background-color: transparent;
    height: 100%;
    aspect-ratio: 1/1;
    width: auto;
    border: 0px;
    margin: auto;
    color: #0C205F;
}

.header--mobile .navbar {
    display: flex;
}


.header--mobile #nav-menu--mobile {}


.header--mobile .btn-prim {
    width: 80px;
    height: 100%;
    border-radius: 8px;
}

.header--mobile .btn-login {
    height: 100%;
    width: auto;
    aspect-ratio: 1/1;
    border-radius: 8px;
    margin: 0px 0.3rem;
}

.header--mobile .block-login {
    margin-left: auto;
}

.header--mobile .menubtn {
    height: 100%;
    width: auto;
    aspect-ratio: 1/1;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    justify-content: center;
    align-items: center;
    background: rgba(29, 67, 107, 0.10);
    color: #264368;
    text-decoration: none;
    padding: 0px;
}

.header--mobile .logo-svg {
    height: 22px;
    width: 16px;
    margin: auto 2px;
}



.header--mobile #nav-logo {
    padding: 0px;
    justify-content: start;
    margin: auto;
    background-color: transparent;
    backdrop-filter: none;
}

.header--mobile #nav-logo #logo {
    margin: 0px;
}

.header--mobile #nav-logo #logo img {
    height: 28px;
    width: 28px;
}

.header--mobile #nav-logo #name {
    display: flex;
    flex-direction: column;
    font-size: 10px;
    align-items: start;
    justify-content: start;
}

.header--mobile .dropdown-menu {
    position: absolute;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    top: 80px;
    width: 100%;
    backdrop-filter: blur(16px);
    background-color: rgba(233, 239, 242, 0.70);
    border-radius: 24px;
    padding: 10px;
    box-sizing: border-box;
    align-items: center;
}

.header--mobile .dropdown-item {
    text-transform: uppercase;
    color: #08386B;
    font-family: Nunito;
    font-size: 1.5rem;
    text-decoration: none;
    margin: 10px auto;
}

.header--mobile .dropdown-menu.visible {
    visibility: visible;
}



.header--mobile .navbar {
    width: 100%;
    height: 60px;
}

#nav-logo {
    background-color: rgba(233, 239, 242, 0.70);
    border-radius: 15px;
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(16px);
    text-decoration: none;
}

#nav-logo:hover {
    cursor: pointer;
}

.nav-link {
    color: var(--brand-gray, #96AEBE);
    /* p 16 */
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-decoration: none;
}




.nav-link:hover {
    color: #1D436B;
}

#nav-logo #logo {
    /* background: var(--block-bg-color); */
    margin-right: 16px;
}

#nav-logo #name {

    color: #08386B;
    font-family: "Lawyer Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    /* 19.2px */
}

#name p {
    margin: 0px;
    text-decoration: none;
}

#nav-menu {
    width: calc(100% - 320px);
    display: flex;
    /* background: var(--block-bg-color); */
    background-color: rgba(233, 239, 242, 0.70);
    border-radius: 55px;
    backdrop-filter: blur(16px);
}

.nav-item {
    display: flex;
    margin-left: 24px;
    justify-content: center;
    align-items: center;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    padding: 0px;
    width: 540px;
}


#nav-logo #name {
    color: #08386B;
    font-family: "Lawyer Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}



/* ============================= HEADER END ============================ */





/* ================================ MAIN SECTION ================================ */

#main {
    display: flex;
    margin-top: 24px;
}

#main-01 {
    display: flex;
    background: var(--block-bg-color);
    width: 600px;
    padding: 24px 24px 32px 32px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 24px;
}

#main-01-text p {
    color: #0C205F;
    font-family: "Martian Mono";
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0.46px;
    text-transform: uppercase;
    margin: 0px;
}

#main-01-text2 {
    margin-top: 34px;
    margin-bottom: 90px;
}

#main-01-text2 span {
    display: flex;
    align-items: center;
    align-content: center;
    margin-bottom: 34px;
}

#main-01-text2 span p {
    color: var(--brand-blue, #1D436B);
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin: 0px;
    margin-left: 16px;
}


#main-01-buttons {
    display: flex;
}


#main-01-buttons p {
    color: #08386B;
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin: 0px;
    margin-left: 24px;
    margin-top: auto;
    margin-bottom: auto;
}

#main-pics {
    width: calc(100% - 600px);
    display: flex;
}

#main-02 {
    width: 316px;
    margin-left: 24px;
    margin-right: 24px;
    border-radius: 24px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../webp/main-01-1.webp);
}

#main-03 {
    width: 315px;
    border-radius: 163px;
    border-right: 17px solid var(--additional-bright-orange, #EF7D00);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../webp/main-01-2.webp);
}



/* ================================ MAIN SECTION END ================================ */







/* ====================== INFO SECTION ========================== */
#info {
    padding-top: 85px;
    height: 754px;
}

#info-block-01 {
    display: flex;
    height: 754px;
}

#info-block-01-dude {
    width: 644px;
    flex-shrink: 0;
    background-position: center;
    background-size: 275%;
    background-position-x: 23%;
    background-position-y: 54%;
    background-repeat: no-repeat;
    background-image: url(../webp/dude.webp);
    border-radius: 15px;
}

#dude-review {
    width: 310px;
    /* height: 238.118px; */
    border-radius: 13.804px;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(13.803921699523926px);
    padding: 15px;
    margin-left: 41px;
    margin-top: 225px;
}

#dude-review-header {
    display: flex;
}

#dude-review-ava {
    width: 47.22px;
    height: 47.22px;
    flex-shrink: 0;
    border-radius: 41.412px;
    background-position: center;
    background-color: #C3BEC2;
    background-size: 200%;
    background-position-y: 40%;
    background-position-x: 58%;
    background-repeat: no-repeat;
    background-image: url(../webp/dude-ava.webp);
    /* background: url(../webp/dude-ava.webp); */
    margin-right: 16px;
}

.review-header-name {
    color: var(--brand-blue, #1D436B);
    font-family: Nunito;
    font-size: 15.529px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin: 0px;
}


.review-header-date {
    color: var(--brand-blue, #1D436B);
    font-family: Nunito;
    font-size: 15.529px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    opacity: 0.4;
    margin: 0px;
}


#dude-review-stars {
    margin-top: 17px;
    margin-bottom: 24px;
}

#dude-review-stars svg {
    fill: var(--gradient-orange, linear-gradient(90deg, #FFB726 0%, #FF5A14 100%));
}

#dude-review-text p {
    color: var(--brand-blue, #1D436B);
    font-family: Nunito;
    font-size: 17.255px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

#dude-answer {
    width: 326px;
    /* height: 152.882px; */
    border-radius: 13.804px;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(13.803921699523926px);
    padding: 15px;
    margin-left: 71px;
    margin-top: 13px;
}

#dude-answer-header {
    display: flex;
}


#dude-answer-header-ava {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 47.22px;
    height: 47.22px;
    flex-shrink: 0;
    border-radius: 35.415px;
    background: #E8EAE3;
    margin-right: 16px;
}

#dude-answer-text p {
    color: var(--brand-blue, #1D436B);
    font-family: Nunito;
    font-size: 17.255px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}


#info-block-02-info {
    padding: 40px 32px;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    flex: 1 0 0;
    align-self: stretch;
    background: var(--additional-light-yellow, #FCF8F2);
    border-radius: 15px;
}


#block-02-info-head {
    height: 287px;
}



#block-02-info-block {
    display: flex;
}

#block-02-info-block-01 {
    height: 327px;
    box-sizing: border-box;
    border-radius: 16px;
    background: var(--additional-purple, #D4D2E7);
    padding: 24px;
}

#block-02-info-block-01-img {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: -24px;
}

#block-02-info-block-01-happy {
    right: 26px;
    position: relative;
}

#block-02-info-block-02 {
    height: 327px;
    box-sizing: border-box;
    border-radius: 16px;
    background: var(--additional-light-brown, #ECE1CB);
    padding: 24px;
    margin-left: 24px;
}


/* ====================== INFO END ========================== */








/* ====================== TYPES  ========================== */
#types {
    display: flex;
    margin-top: 16px;
    height: 65px;
    overflow-x: auto;
}

.b-type {
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
    border-radius: 19px;
    background: var(--additional-light-yellow, #FCF8F2);
    text-wrap: nowrap;
}

.b-type p {
    color: var(--brand-blue, #1D436B);
    font-family: "Martian Mono";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}

/* ====================== TYPES END ========================== */






/* ====================== REP-INFO   ========================== */
#rep-info {
    padding-top: 85px;
}

#rep-info-header {}

#rep-info-01-block {
    display: flex;
}

#rep-info-01-block-01 {
    display: flex;
    width: 716px;
    padding: 24px;
    box-sizing: border-box;
    align-items: flex-start;
    gap: 40px;
    border-radius: 16px;
    background: var(--additional-light-brown, #ECE1CB);
    margin-right: 20px;
}

#rep-info-01-block-01-text {
    width: calc(100% - 240px);
}

.rep-info-text-header {
    color: #1D436B;
    font-family: "Martian Mono";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    margin: 5px 0px;
}

.rep-info-text-text {
    color: #1D436B;
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin: 0px;
}

#rep-info-01-block-01-img {
    width: 240px;
    height: 240px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../img/rep-info-01-block-01-img.svg);
}


#rep-info-01-block-02 {
    display: flex;
    width: 598px;
    box-sizing: border-box;
    padding: 24px;
    align-items: flex-start;
    gap: 24px;
    border-radius: 16px;
    background: #B1D8F2;
}

#rep-info-01-block-02-text {
    width: calc(100% - 240px);
}

#rep-info-01-block-02-img {
    width: 240px;
    height: 240px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../img/rep-info-01-block-02-img.svg);
}

#rep-info-02-block {
    display: flex;
    margin-top: 20px;
}

#rep-info-02-block-01 {
    display: flex;
    width: 598px;
    height: 288px;
    box-sizing: border-box;
    padding: 24px;
    align-items: flex-start;
    gap: 24px;
    border-radius: 16px;
    background: #CDECCB;
    margin-right: 20px;
}


#rep-info-02-block-01-text {
    width: calc(100% - 240px);
}

#rep-info-02-block-01-img {
    width: 240px;
    height: 240px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../img/rep-info-02-block-01-img.svg);
}


#rep-info-02-block-02 {
    display: flex;
    width: 716px;
    box-sizing: border-box;
    padding: 24px;
    align-items: flex-start;
    gap: 40px;
    border-radius: 16px;
    background: var(--additional-purple, #D4D2E7);
}

#rep-info-02-block-02-text {
    width: calc(100% - 240px);
}

#rep-info-02-block-02-img {
    width: 240px;
    height: 240px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../img/rep-info-02-block-02-img.svg);
}

/* ====================== REP-INFO END ========================== */





/* ====================== TASKS-HELP  ========================== */
#tasks-help {
    padding-top: 85px;
}

.tasks-help-tab {
    overflow: hidden;
    display: flex;
}

.tasks-help-tab .tablinks.active {
    color: #EF7D00;
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.tasks-help-tab .tablinks {
    color: #1D436B;
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 4px;
    margin-right: 48px;
    background: none;
    border: none;
    align-self: stretch;
}

.tasks-help-tab .tablinks.active .tablink-indicator {
    display: block;
}

.tablink-indicator {
    display: none;
    background: #EF7D00;
    height: 5px;
}

#tothemanager {
    display: flex;
}

.tabcontent {
    display: none;
    border-top: none;
    margin-top: 32px;
    height: 600px;
    width: 100%;
    margin-bottom: 32px;
}

#tothemanager-left-block {
    display: flex;
    height: 600px;
    width: 786px;
    margin-right: 24px;
    background-size: 111%;
    background-position-x: 14%;
    background-position-y: 57%;
    background-repeat: no-repeat;
    background-image: url(../webp/monitor-dude.webp);
    border-radius: 16px;
}

#tothemanager-left-block-01 {
    width: 290px;
    box-sizing: border-box;
    border-radius: 16px;
    padding: 24px;
    background: var(--additional-purple, #D4D2E7);
}

.tab-content-header {
    color: #1D436B;
    font-family: "Martian Mono";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}

.tab-content-text {
    color: #1D436B;
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}


#tothemanager-rigth-block {
    height: 100%;
}

#tothemanager-rigth-block-01 {
    display: flex;
    box-sizing: border-box;
    padding: 24px;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 16px;
    background: var(--additional-light-brown, #ECE1CB);
    margin-bottom: 24px;
    height: calc((100% / 2) - 12px);
}

#tothemanager-rigth-block-02 {
    display: flex;
    box-sizing: border-box;
    padding: 24px;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 16px;
    background: var(--additional-mid-blue, #B1D8F2);
    height: calc((100% / 2) - 12px);
}

#forbusinessowners {
    flex-direction: row;
}

#forbusinessovners-block-left {
    width: 836px;
    margin-right: 24px;
}

#forbusinessovners-block-left-top {
    display: flex;
    height: 290px;
    background-size: 64%;
    background-position-x: 108%;
    background-position-y: 57%;
    background-repeat: no-repeat;
    background-image: url(../webp/metrics-dude.webp);
    border-radius: 19px;
}

#forbusinessovners-block-left-top-text {
    width: 433px;
    box-sizing: border-box;
    padding: 24px;
    gap: 24px;
    border-radius: 19px;
    background: radial-gradient(130.72% 98.45% at 5.99% 98.4%, rgba(204, 175, 255, 0.70) 0%, rgba(204, 175, 255, 0.00) 100%), #FE6A49;
    background-blend-mode: lighten, normal;
}


#forbusinessovners-block-left-bottom {
    display: flex;
    margin-top: 24px;
    height: 290px;
}

#forbusinessovners-block-left-bottom-left {
    display: flex;
    width: calc((100% / 2) - 12px);
    height: 290px;
    padding: 24px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 19px;
    background: var(--additional-mid-blue, #B1D8F2);
    margin-right: 24px;
}

#forbusinessovners-block-left-bottom-rigth {
    display: flex;
    width: calc((100% / 2) - 12px);
    height: 290px;
    box-sizing: border-box;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 19px;
    background: #ECE1CB;
}

#forbusinessovners-block-rigth {
    width: calc(100% - 860px);
}

#forbusinessovners-block-rigth-top {
    display: flex;
    /* width: 429px; */
    height: 290px;
    box-sizing: border-box;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 19px;
    background: var(--additional-purple, #D4D2E7);
    margin-bottom: 24px;
}

#forbusinessovners-block-rigth-bottom {
    display: flex;
    /* width: 429px; */
    height: 290px;
    box-sizing: border-box;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 19px;
    background: #CDECCB;
}


#formarketers-left-block {
    display: flex;
    width: 786px;
    margin-right: 24px;
    background-size: 56%;
    background-position-x: 105%;
    background-position-y: 38%;
    background-repeat: no-repeat;
    background-image: url(../webp/reputation-dude.webp);
    border-radius: 16px;
}

#formarketers-left-block-01 {
    display: flex;
    box-sizing: border-box;
    width: 340px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
    border-radius: 19px;
    background: #D9E5F1;
}


#formarketers-rigth-block-01 {
    display: flex;
    width: 652px;
    box-sizing: border-box;
    height: calc((100% / 2) - 12px);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
    border-radius: 19px;
    background: #CDECCB;
    margin-bottom: 24px;
}


#formarketers-rigth-block-02 {
    display: flex;
    width: 652px;
    box-sizing: border-box;
    height: calc((100% / 2) - 12px);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
    border-radius: 19px;
    background: var(--additional-light-brown, #ECE1CB);
}


#cxspecialists-rigth-block {
    margin-right: 24px;
}

#cxspecialists-rigth-block-01 {
    display: flex;
    box-sizing: border-box;
    width: 655px;
    height: calc((100% / 2) - 12px);
    padding: 31px 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
    margin-bottom: 24px;
    border-radius: 19px;
    background: var(--additional-purple, #D4D2E7);
}

#cxspecialists-rigth-block-02 {
    display: flex;
    box-sizing: border-box;
    width: 655px;
    height: calc((100% / 2) - 12px);
    padding: 31px 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
    border-radius: 19px;
    background: #CDECCB;
}


#cxspecialists-left-block {
    display: flex;
    width: 786px;
    background-size: 52%;
    background-position-x: 105%;
    background-position-y: 38%;
    background-repeat: no-repeat;
    background-image: url(../webp/reason-chick.webp);
    border-radius: 16px;
}

#cxspecialists-left-block-01 {
    display: flex;
    box-sizing: border-box;
    width: 340px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
    border-radius: 19px;
    background: var(--additional-mid-blue, #B1D8F2);
}

#tasks-help-buttons {
    display: flex;
}


#tasks-help-buttons .btn-prim {
    margin: 0px;
}

#tasks-help-buttons .btn-secondary {
    width: 240px;
}


/* ====================== TASKS-HELP END ========================== */








/* ====================== REVIEW-BIG  ========================== */
#review-big {
    padding-top: 85px;
    justify-content: center;
}

#symbols {
    height: 100px;
    position: relative;
}

#review-main-quot {
    position: relative;
    top: -188px;
}

#review-main-star {
    position: relative;
    top: -83px;
    left: 957px;
}


#review-big-block {
    display: flex;
    width: 1165px;
    /* height: 314px; */
    box-sizing: border-box;
    flex-shrink: 0;
    border-radius: 32px;
    background: rgba(239, 246, 250, 0.80);
    backdrop-filter: blur(16px);
    padding-left: 68px;
    padding-top: 50px;
    padding-bottom: 50px;
    margin: auto;
}

.review-main-text {
    color: #1D436B;
    font-family: "Martian Mono";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin: 2px;
}

#review-big-block-text-small {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.review-descr-text {
    color: #1D436B;
    font-family: "TT Rounds Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 520;
    line-height: 81%;
    margin: 2px;
    opacity: 0.5;
}

#review-big-block-img {
    width: 121px;
    height: 214px;
    flex-shrink: 0;
    border-radius: 163px;
    border-right: 17px solid #EF7D00;
    background: url(../webp/mk-review.webp) lightgray 50% / cover no-repeat;
    margin-right: 47px;
}

#review-main-symbol {
    width: 223px;
    height: 253.608px;
    transform: rotate(25.378deg);
    flex-shrink: 0;
    color: #9B95D5;
    font-family: NobelWGL-Bold;
    font-size: 437.255px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    position: relative;
    top: -152px;
    left: 435px;
}

/* ====================== REVIEW-BIG END ========================== */







/* ====================== HOWITWORKS  ========================== */


/* ====================== HOWITWORKS END ========================== */






/* ====================== INFO-BIG  ========================== */
#info-big {
    padding-top: 85px;
    display: flex;
    padding: 48px;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 24px;
    background: #E9EEF5;
}

#info-big-text-block {
    margin-right: 24px;
    width: 619px;
    box-sizing: border-box;
}

.info-big-headtext {
    color: #1D436B;
    font-family: "Martian Mono";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.42px;
    text-transform: uppercase;
}

.info-big-text {
    color: #1D436B;
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

#info-big-img-block {
    width: calc(100% - 619px);
    height: 332px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/info-big-img-block.svg);
}

/* ====================== INFO-BIG END ========================== */







/* ====================== FUNCTIONS  ========================== */

#functions {
    padding-top: 85px;
}

#functions-header {
    margin-bottom: 40px;
}

.function-description-block {
    height: 600px;
    margin-bottom: 48px;
    display: flex;
}

.f-d-b-left {
    width: 428px;
    box-sizing: border-box;
    display: flex;
    border-radius: 24px;
    margin-right: 24px;
}

#func-desc-01-block-rigth {
    background: var(--additional-purple, #D4D2E7);
}

.f-d-b-rigth {
    width: 880px;
    box-sizing: border-box;
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 41px;
    flex: 1 0 0;
    border-radius: 24px;
}

#func-desc-01-block-rigth-img {
    width: 700px;
    height: 385px;
    margin: auto;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../webp/multi-block.webp);
}

.function-description-text {
    color: var(--brand-blue, #1D436B);
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.func-desc-img {
    width: 72px;
    height: 72px;
    margin-right: 24px;
}

.function-description-text-header {
    color: var(--brand-blue, #1D436B);
    font-family: "Martian Mono";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    margin: 0px;
}

#func-desc-02-block-rigth {
    background: var(--additional-light-brown, #ECE1CB);
}

#func-desc-02-block-rigth-img {
    width: 700px;
    height: 385px;
    margin: auto;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../webp/intercept-block.webp);
}

#func-desc-02-block-rigth-img {
    width: 700px;
    height: 385px;
    margin: auto;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../webp/intercept-block.webp);
}


#func-desc-03-block-rigth-img {
    width: 700px;
    height: 385px;
    margin: auto;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../webp/mapping-block.webp);
}

#func-desc-03-block-rigth {
    background: var(--additional-green, #CBECDD);
}

#func-desc-04-block {
    display: none;
}

#func-desc-04-block-rigth {
    background: var(--additional-purple, #D4D2E7);
}

#func-desc-05-block {
    display: none;
}

#func-desc-05-block-rigth {
    background: var(--additional-light-brown, #ECE1CB);
}

#func-desc-06-block {
    display: none;
}

#func-desc-06-block-rigth {
    background: var(--additional-light-blue, #F0F4F6);
}

#func-desc-07-block {
    display: none;
}

#func-desc-07-block-rigth {
    background: var(--additional-purple, #D4D2E7);
}

#func-desc-more-blocks {
    display: flex;
}

#func-desc-more-blocks div {
    box-sizing: border-box;
}

#func-desc-more-01-block {
    height: 390px;
    margin-right: 24px;
    padding: 24px;
    width: 315px;
    border-radius: 19px;
    background: var(--additional-light-brown, #ECE1CB);
}

#func-desc-more-02-block {
    height: 452px;
    margin-right: 24px;
    padding: 24px;
    width: 315px;
    border-radius: 19px;
    background: var(--additional-purple, #D4D2E7);
}

#func-desc-more-03-block {
    height: 452px;
    margin-right: 24px;
    padding: 24px;
    width: 315px;
    border-radius: 19px;
    background: var(--additional-light-brown, #ECE1CB);
}

#func-desc-more-04-block {
    height: 390px;
    padding: 24px;
    width: 315px;
    border-radius: 19px;
    background: var(--additional-light-blue, #F0F4F6);
}

/* ====================== FUNCTIONS END ========================== */






/* ====================== CASES  ========================== */

/* ====================== CASES END ========================== */







/* ====================== TARIFFS  ========================== */
/* see css/areas/review/onboarding/onboarding-layout.css */

/* ====================== TARIFFS END ========================== */














/* ======================== REG =========================== */


#reg {
    margin-top: 24px;
    margin-bottom: 24px;
}

#reg-block-top {
    display: flex;
    height: 633px;
}

.reg-form-input-label {
    color: #FFF;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.reg-form-input {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    height: 42px;
    min-height: 32px;
    padding: 8px 6px;
    align-items: center;
    border-radius: 12px;
    border: 2px solid var(--colors-base-default-200, #E4E4E7);
    background: var(--colors-base-default-100, #F4F4F5);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
    margin-top: 8px;
    color: #1D436B;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

#reg-block-conf p {
    color: #FFF;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}


#reg-block-left {
    width: 905px;
    display: flex;
    box-sizing: border-box;
    border-radius: 24px;
    background-size: 38%;
    background-position-x: 0%;
    background-position-y: 27%;
    background-repeat: no-repeat;
    background-image: url("../webp/reg-dude.webp");
}

#reg-block-left #img {
    width: 316px;
}

#reg-block-left #text {
    width: calc(100% - 316px);
    box-sizing: border-box;
    background: linear-gradient(0deg, #F4E8D7 0%, #F4E8D7 100%), #08386B;
    padding: 32px 24px 24px 24px;
    border-radius: 24px;
}

#reg-block-rigth {
    display: flex;
    width: 429px;
    box-sizing: border-box;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
    border-radius: 24px;
    background: radial-gradient(130.72% 98.45% at 5.99% 98.4%, rgba(218, 162, 162, 0.80) 0%, rgba(101, 125, 246, 0.40) 50%, rgba(42, 27, 210, 0.00) 100%), #08386B;
    background-blend-mode: lighten, normal;
    margin-left: auto;
}

#reg-block-header {
    color: #FFF;
    font-family: "Martian Mono";
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.34px;
    text-transform: uppercase;
    margin: 0;
}



#registerSubmit {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    height: 56px;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 30px;
    background: var(--gradient-orange, linear-gradient(90deg, #FFB726 0%, #FF5A14 100%));
    border: 0px;
}


#reg-block-bottom {
    height: 136px;
    box-sizing: border-box;
    margin-top: 32px;
    display: flex;
    padding: 32px;
    align-items: center;
    gap: 24px;
    border-radius: 24px;
    background: var(--additional-light-brown, #ECE1CB);
}

#reg-block-left #text {
    width: calc(100% - 316px);
    box-sizing: border-box;
    background: linear-gradient(0deg, #F4E8D7 0%, #F4E8D7 100%), #08386B;
    padding: 32px 24px 24px 24px;
    border-radius: 24px;
}


#reg-block-left #text #textmain-1 {
    color: #0B3460;
    font-family: "Martian Mono";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    margin: 0px;
}

#reg-block-left #text #textmain-2 {
    color: #0B3460;
    font-family: "Martian Mono";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    margin: 0px;
}


#reg-block-bottom-question #text {
    color: #1D436B;
    font-family: "Martian Mono";
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.34px;
    text-transform: uppercase;
}

#reg-block-left #text #textsec {
    color: #0B3460;
    font-family: "Martian Mono";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    margin: 0px;
    margin-top: 250px;
}


#reg-block-bottom-phone #phone {
    color: #1D436B;
    font-family: "Martian Mono";
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.34px;
    text-transform: uppercase;
    margin: 0px;
}

#reg-block-bottom-phone #text {
    color: #08386B;
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin: 0px;
}








#reg-block-bottom-question {
    margin-right: 140px;
}


#reg-block-rigth form {
    display: flex;
    flex-direction: column;
}

.reg-form-input {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

#reg-block-left #text #textorange {
    color: #EF7D00;
    font-family: "Martian Mono";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    margin: 0px;
}

/* ======================== REG END =========================== */







/* ====================== QUESTIONS ========================== */
#questions {
    display: flex;
    margin-bottom: 80px;
    /* height: 712px; */
    padding: 32px;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 24px;
    background: var(--additional-light-blue, #F0F4F6);
    margin-top: 45px;
}

#questions-header #text {
    color: #1D436B;
    font-family: "Martian Mono";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    margin: 0px;
}

#questions-block {
    width: 849px;
}

#questions-block-first {
    margin-top: 0px;
}


.questions-block-collapsible {
    height: 88px;
    box-sizing: border-box;
    display: flex;
    padding: 24px;
    align-items: center;
    gap: 19px;
    align-self: stretch;
    background: #FFF;
    margin-top: 24px;
    cursor: pointer;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.questions-block-collapsible-content {
    display: none;
    overflow: hidden;
    box-sizing: border-box;
    padding: 24px;
    align-items: center;
    gap: 19px;
    align-self: stretch;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    background: #FFF;
    margin-bottom: 24px;
    transition: display 0.2s ease-out;
}

.questions-block-collapsible.active {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.questions-block-collapsible-content p {
    color: #1D436B;
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin: 0px;
}

.questions-block-collapsible p {
    color: #1D436B;
    font-family: "Martian Mono";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}

/* ====================== QUESTIONS END ========================== */









/* ======================== OTHER =========================== */
.product-logo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.product-logo #nav-logo {
    width: 230px;
    height: 40px;
    background-color: transparent;
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 11.364px;
    border: 1px solid var(--brand-gray, #96AEBE);
    backdrop-filter: blur(12.121212005615234px);
}

.product-logo #nav-logo {
    width: 230px;
    height: 40px;
    background-color: transparent;
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 11.364px;
    border: 1px solid var(--brand-gray, #96AEBE);
    backdrop-filter: blur(12.121212005615234px);
}

.product-logo #logo img {
    width: 150px;
    height: 50px;

}


.product-logo #nav-logo #logo {
    margin-right: 8px;
}

.product-logo #name p {
    font-size: 12px;

}

.product-descr-text a {
    display: flex;
    box-sizing: border-box;
    width: 118px;
    height: 48px;
    padding: 10px 16px 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    background: rgba(29, 67, 107, 0.10);
    color: var(--brand-blue, #1D436B);
    text-align: center;

    /* p 16 */
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-decoration: none;
    cursor: pointer;
    /* 19.2px */

    margin-top: 16px;
}



#nav-logo #name {
    color: #08386B;
    font-family: "Lawyer Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.btn-prim {
    display: flex;
    height: 48px;
    width: 235px;
    text-align: center;
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    border: 0px;
    background: var(--gradient-orange, linear-gradient(90deg, #FFB726 0%, #FF5A14 100%));
    color: #FFFFFF;
    text-decoration: none;
}

.btn-login {
    display: flex;
    height: 48px;
    width: 135px;
    text-align: center;
    /* p 16 */
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /* 19.2px */
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    margin-left: 8px;
    margin-right: 8px;
    background: rgba(29, 67, 107, 0.10);
    color: #264368;
    text-decoration: none;
}

.btn-prim {
    box-sizing: border-box;
    display: flex;
    height: 48px;
    width: 235px;
    text-align: center;
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 23.4px */
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    border: 0px;
    background: var(--gradient-orange, linear-gradient(90deg, #FFB726 0%, #FF5A14 100%));
    color: #FFFFFF;
    text-decoration: none;
    margin: auto;
}

.btn-secondary {
    display: flex;
    height: 48px;
    width: 135px;
    text-align: center;
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    margin-left: 8px;
    margin-right: 8px;
    background: rgba(29, 67, 107, 0.10);
    color: #264368;
    text-decoration: none;
    cursor: pointer;
}


.block-login {
    display: flex !important;
    /* border: 1px solid var(--login-border-color); */
    /* border-radius: 12px; */
    /* background: transparent; */
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}

.block-login .btn-topersonal {
    width: 245px;
    /* margin-left: 125px; */
    display: flex;
    height: 48px;
    text-align: center;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    margin-left: 10px;
    margin-right: 8px;
    background: rgba(29, 67, 107, 0.10);
    color: #264368;
    text-decoration: none;
}





/* ======================== OTHER END =========================== */









/* ======================== TEXT =========================== */
.text-orange {
    color: var(--additional-bright-orange, #EF7D00);
    font-family: "Martian Mono";
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.34px;
    text-transform: uppercase;
    margin: 0px;
}

.text-main {
    color: var(--brand-blue, #1D436B);
    font-family: "Martian Mono";
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.34px;
    text-transform: uppercase;
    margin: 0px;
}

.text-bold-main {
    color: var(--brand-blue, #1D436B);
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.text-secondary {
    color: #35404B;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.main-page-header {
    color: #1D436B;
    font-family: "Martian Mono";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    margin: 0px;
    cursor: default;
}

.main-headers-description {
    color: #1D436B;
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin: 0px;
    margin-top: 16px;
}

.main-headers {
    color: #1D436B;
    font-family: "Martian Mono";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    margin: 0px;
}


/* ======================== TEXT END =========================== */





/* =================== FOOTER ===================== */

#main-footer-logo {
    position: relative;
    bottom: -65px;
    display: flex;
    padding-left: 28px;
    padding-right: 28px;
}

#main-footer-logo #logo {
    display: none;
}

#footer-symbols {
    position: relative;
    margin-top: 33px;
}

#bracket {
    position: relative;
    /* top: 34%; */
    left: -760px;
}

#main-footer-logo-text-elem {
    position: relative;
    margin-top: 15px;
    margin-left: -42px;
}

#main-footer-logo-text-elem p {
    color: #08386B;
    font-family: "Lawyer Gothic";
    font-size: 61.639px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin: 0px;
}




#main-footer-block {
    box-sizing: border-box;
    border-radius: 56px 56px 0px 0px;
    background: radial-gradient(130.72% 98.45% at 5.99% 98.4%, rgba(218, 162, 162, 0.80) 0%, rgba(101, 125, 246, 0.40) 50%, rgba(42, 27, 210, 0.00) 100%), #08386B;
    background-blend-mode: lighten, normal;
    padding-top: 82px;
    padding-right: 56px;
    padding-left: 56px;
    padding-bottom: 46px;
}


#main-footer-block {
    box-sizing: border-box;
    border-radius: 56px 56px 0px 0px;
    background: radial-gradient(130.72% 98.45% at 5.99% 98.4%, rgba(218, 162, 162, 0.80) 0%, rgba(101, 125, 246, 0.40) 50%, rgba(42, 27, 210, 0.00) 100%), #08386B;
    background-blend-mode: lighten, normal;
    padding-top: 82px;
    padding-right: 56px;
    padding-left: 56px;
    padding-bottom: 46px;
}



#footer-block-text-main img {
    box-sizing: border-box;
    height: fit-content;
    width: fit-content;
    margin-bottom: 8px;
}


#footer-block-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
}

#footer-block-info {
    font-size: 0.95rem;
    color: #b0c4de;
}


#footer-block-text {
    display: flex;
}

#footer-block-text-main {
    width: 700px;
    box-sizing: border-box;
    margin-right: 145px;
}

#footer-block-text-main #footer-text-white {
    color: #FFF;
    font-family: "Martian Mono";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    margin-top: 32px;
    margin-bottom: 0px;
}

#footer-block-text-contacts {
    width: 320px;
    /* margin-top: 100px; */
}

#footer-block-text-main p {
    color: #EF7D00;
    font-family: "Martian Mono";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    margin: 0px;
    margin-bottom: 32px;
}


#footer-block-text-contacts {
    width: 320px;
}

#footer-block-text-contacts p {
    color: #EF7D00;
    font-family: "Martian Mono";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    margin: 0px;
}

#footer-block-text-contacts #phone {
    color: #FFF;
    font-family: "Martian Mono";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.28px;
    text-transform: uppercase;
}

#footer-block-text-contacts #mail {
    color: #8FA9CC;
    font-family: "Martian Mono";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.28px;
    text-transform: uppercase;
}

#footer-block-buttons {
    display: flex;
}


#footer-block-buttons .btn-login {
    color: #FFF;
    text-align: center;
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    background: rgba(55, 111, 171, 0.50);
    margin: 0px;
    margin-top: auto;
}

#footer-block-buttons .btn-prim {
    margin: 0px;
}

#footer-block-info {
    margin-top: 145px;
}

#footer-block-info-links {
    display: flex;
    align-items: center;
}

footer {
    margin-left: auto;
    margin-right: auto;
}

#footer-block-info-links p {
    color: #FFF;
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-right: 36px;
}

#footer-block-info-links a {
    color: #FFF;
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-right: 36px;
    text-decoration: none;
    cursor: pointer;
}


/* =================== FOOTER END ===================== */




@media screen and (min-width: 1300px) {
    html {
        font-size: 15px;
        width: 100%;
        display: flex;
    }

    body {
        background-color: #fafafa;
        transition: var(--tran-03);
        min-height: 100vh;
        width: 1366px;
        margin: auto;
        overflow-x: hidden;
        overflow-y: scroll;
    }

    /* ============= HEADER ============= */


    .navbar {
        display: flex;
        width: 100%;
    }

    #nav-logo {
        width: 320px;
    }


    /* ============= HEADER End ============= */








}


@media screen and (max-width: 1200px) {
    html {
        font-size: 15px;
    }








    #main-footer-block {
        padding: 0 20px;
    }




    #mainpage-main-imgs {
        width: calc(100% - 580px);
    }

    #mainpage-main-imgs #img-01 {
        left: 64px;
        top: 15px;
        height: 523px;
        width: 630px;
    }



    #mainpage-main-imgs #img-02 {
        top: -198px;
        height: 303px;
        width: 392px;
    }




    /* ====================== Products =======================*/


    .product-description {
        width: 660px;
        height: 100%;
    }
}






@media screen and (max-width: 900px) {
    html {
        font-size: 14px;
    }



    #mainpage-main-imgs {
        width: calc(100% - 580px);
    }

    #mainpage-main-imgs #img-01 {
        left: 64px;
        top: 15px;
        height: 523px;
        width: 630px;
    }



    #mainpage-main-imgs #img-02 {
        top: -198px;
        height: 303px;
        width: 392px;
    }

    /* ====================== Products =======================*/


    .product-description {
        width: 660px;
        height: 100%;
    }

}




@media screen and (min-width: 200px) and (max-width: 600px) {
    html {
        font-size: 12px;
        width: 100%;
        display: flex;
    }



    body {
        background-color: #fafafa;
        transition: var(--tran-03);
        max-width: 100%;
        margin: auto;
        overflow-x: hidden;
        overflow-y: scroll;
        padding: 0 4px;
    }

    /* ========== HEADER ========== */


    .header {
        display: none;
    }

    .header--mobile {
        display: block;
    }


    .navbar {
        display: block;

    }


    #nav-logo {
        width: 100%;
        margin-bottom: 5px;
    }

    #nav-logo {
        width: 100%;
        padding: 8px 0px;
    }

    #nav-menu {
        display: none;
        width: 100%;
    }



    /* ========== HEADER END ========== */


    /* ========== MAIN SECTION ========== */

    #main {
        width: 100%;
        display: flex;
        margin-top: 15px;
        flex-direction: column;
        height: fit-content;
    }

    #main-01 {
        box-sizing: border-box;
        width: 100%;
        /* padding: 24px 24px 32px 32px; */
        flex-direction: column;
        justify-content: space-between;
    }

    #main-01-text {
        /* text-align: center; */
    }

    #main-01-text p {
        font-size: 2.3rem;
        letter-spacing: 0.3px;
    }

    #main-01-text2 {
        margin-top: 34px;
        margin-bottom: 10px;
        justify-content: space-between;
    }

    #main-01-text2 span {
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        margin-bottom: 2rem;
        align-items: start;
        align-content: start;
    }

    #main-01-text2 span p {
        font-size: 1.4rem;
        margin: 0px;
        margin-left: 5px;
    }


    #main-01-buttons {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }


    #main-01-buttons p {
        font-size: 1.4rem;
        margin: 0px;
        margin-left: 0px;
        margin-top: 10px;
        margin-bottom: auto;
    }

    #main-pics {
        width: 100%;
        display: flex;
        height: 260px;
        margin-top: 32px;
    }

    #main-02 {
        width: 50%;
        height: 100%;
        margin-left: 0px;
        margin-right: 24px;
        border-radius: 24px;
        background-position: center;
        background-size: cover;
    }

    #main-03 {
        width: 50%;
        height: 100%;
        border-radius: 163px;
        border-right: 10px solid var(--additional-bright-orange, #EF7D00);
        background-position: center;
        background-size: cover;
    }



    /* ========== MAIN SECTION END ========== */





    /* ========== INFO SECTION ========== */
    #info {
        padding-top: 85px;
        height: fit-content;
    }

    #info-block-01 {
        display: flex;
        flex-direction: column-reverse;
        height: fit-content;
    }

    #info-block-01-dude {
        width: 100%;
        flex-shrink: 0;
        background-position: center;
        background-size: 275%;
        background-position-x: 23%;
        background-position-y: 54%;
        border-radius: 15px;
    }

    #dude-review {
        width: 150px;
        /* height: 238.118px; */
        border-radius: 13.804px;
        padding: 15px;
        margin-left: 2rem;
        margin-top: 2rem;
    }

    #dude-review-header {
        display: flex;
    }

    #dude-review-ava {
        width: 47.22px;
        height: 47.22px;
        flex-shrink: 0;
        background-size: 200%;
        background-position-y: 40%;
        background-position-x: 58%;
        margin-right: 16px;
    }

    .review-header-name {
        font-size: 1.2rem;
        margin: 0px;
    }


    .review-header-date {
        font-size: 1.1rem;
        margin: 0px;
    }


    #dude-review-stars {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    #dude-review-stars svg {
        fill: var(--gradient-orange, linear-gradient(90deg, #FFB726 0%, #FF5A14 100%));
        width: 150px;
    }

    #dude-review-text p {
        font-size: 1.2rem;
    }

    #dude-answer {
        width: 150px;
        /* height: 152.882px; */
        border-radius: 13.804px;
        padding: 15px;
        margin-left: 3.5rem;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    #dude-answer-header {
        display: flex;
    }


    #dude-answer-header-ava {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 47.22px;
        height: 47.22px;
        flex-shrink: 0;
        margin-right: 16px;
        margin-bottom: 24px;
    }

    #dude-answer-text p {
        font-size: 1.2rem;
    }


    #info-block-02-info {
        box-sizing: border-box;
        width: 100%;
        padding: 20px 15px;
        flex-direction: column;
        align-items: center;
        gap: 48px;
        flex: 1 0 0;
        align-self: stretch;
        border-radius: 15px;
    }


    #block-02-info-head {
        height: fit-content;
    }



    #block-02-info-block {
        display: inline-flex;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: clip;
        margin-top: 15px;
        margin-top: 15px;
    }

    #block-02-info-block-01 {
        width: 100%;
        margin-bottom: 10px;
    }

    #block-02-info-block-01 p {
        width: 15rem;
    }

    #block-02-info-block-01-img {
        display: flex;
        /* justify-content: center; */
        align-items: center;
        gap: -24px;
    }

    #block-02-info-block-01-happy {
        right: 26px;
        position: relative;
    }

    #block-02-info-block-02 {
        width: 100%;
        margin-left: 20px;
    }

    #block-02-info-block-02 p {
        width: 20rem;
    }

    /* ========== INFO END ========== */



    /* ====================== TYPES  ========================== */
    /* ====================== TYPES  ========================== */






    /* ========== REP-INFO   ========== */
    #rep-info {
        padding-top: 85px;
    }

    #rep-info-header {}

    #rep-info-blocks {
        display: flex;
        width: 100%;
        overflow-x: auto;
        overflow-y: clip;
    }

    #rep-info-01-block {
        display: flex;
    }



    #rep-info-01-block-01 {
        display: block;
        height: fit-content;
        width: 260px;
        padding: 16px;
        box-sizing: border-box;
        align-items: flex-start;
        gap: 0px;
        margin-right: 20px;
    }

    #rep-info-01-block-01-text {
        width: fit-content;
    }

    .rep-info-text-header {
        font-size: 16px;
        letter-spacing: 0.16px;
        margin: 5px 0px;
    }

    .rep-info-text-text {
        font-size: 16px;
        margin: 0px;
    }

    #rep-info-01-block-01-img {
        width: 220px;
        height: 220px;
        background-position: center;
        background-size: 100%;
    }


    #rep-info-01-block-02 {
        display: block;
        height: fit-content;
        width: 260px;
        box-sizing: border-box;
        padding: 24px;
        align-items: flex-start;
        gap: 0px;
    }

    #rep-info-01-block-02-text {
        width: fit-content;
    }

    #rep-info-01-block-02-img {
        width: 220px;
        height: 220px;
        background-position: center;
        background-size: 100%;
    }

    #rep-info-02-block {
        display: flex;
        margin-left: 20px;
        margin-top: 0px;
    }

    #rep-info-02-block-01 {
        display: block;
        height: fit-content;
        width: 260px;
        height: fit-content;
        box-sizing: border-box;
        padding: 24px;
        align-items: flex-start;
        gap: 0px;
        margin-right: 20px;
    }


    #rep-info-02-block-01-text {
        width: fit-content;
    }

    #rep-info-02-block-01-img {
        width: 220px;
        height: 220px;
        background-position: center;
        background-size: 100%;
    }


    #rep-info-02-block-02 {
        display: block;
        height: fit-content;
        width: 260px;
        box-sizing: border-box;
        padding: 24px;
        align-items: flex-start;
        gap: 0px;
    }

    #rep-info-02-block-02-text {
        width: fit-content;
    }

    #rep-info-02-block-02-img {
        width: 220px;
        height: 220px;
        background-position: center;
        background-size: 100%;
    }

    /* ========== REP-INFO END ========== */







    /* ========== TASKS-HELP  ========== */
    #tasks-help {
        padding-top: 85px;
        margin-bottom: 15px;
    }

    .tasks-help-tab {
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .tasks-help-tab .tablinks.active {
        font-size: 20px;
    }

    .tasks-help-tab .tablinks {
        font-size: 20px;
        margin-bottom: 4px;
        margin-right: 48px;
    }

    .tasks-help-tab .tablinks.active .tablink-indicator {
        display: block;
    }

    #tothemanager {
        flex-direction: column;
    }

    .tabcontent {
        display: none;
        border-top: none;
        margin-top: 32px;
        height: fit-content;
        width: 100%;
        margin-bottom: 32px;
    }

    #tothemanager-left-block {
        display: block;
        height: 423px;
        width: 100%;
        margin-right: 0px;
        margin-bottom: 15px;
        background-size: 50rem;
        background-position-x: -13rem;
        background-position-y: -3rem;
    }

    #tothemanager-left-block-01 {
        width: 100%;
        height: 136px;
        padding: 24px;
    }

    .tab-content-header {
        font-size: 16px;
        letter-spacing: 0.16px;
        margin: 0px;
    }

    .tab-content-text {
        font-size: 14px;
        margin: 5px 0px;
    }


    #tothemanager-rigth-block {
        height: fit-content;
    }

    #tothemanager-rigth-block-01 {
        display: flex;
        padding: 24px;
        align-items: flex-start;
        gap: 24px;
        flex: 1 0 0;
        margin-bottom: 24px;
        height: fit-content;
    }

    #tothemanager-rigth-block-02 {
        display: flex;
        padding: 24px;
        align-items: flex-start;
        gap: 24px;
        flex: 1 0 0;
        height: fit-content;
    }

    #forbusinessowners {
        flex-direction: column;
    }

    #forbusinessovners-block-left {
        width: 100%;
        margin-right: 0px;
    }

    #forbusinessovners-block-left-top {
        display: flex;
        height: 425px;
        background-size: 100%;
        background-position-x: 108%;
        background-position-y: 57%;
        margin-bottom: -6rem;
    }

    #forbusinessovners-block-left-top-text {
        width: 100%;
        height: 150px;
        padding: 24px;
        gap: 24px;
    }


    #forbusinessovners-block-left-bottom {
        display: flex;
        margin-top: 10px;
        height: 290px;
        margin-bottom: 24px;
    }

    #forbusinessovners-block-left-bottom-left {
        display: flex;
        width: calc((100% / 2) - 5px);
        height: 290px;
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        flex-shrink: 0;
        margin-right: 10px;
    }

    #forbusinessovners-block-left-bottom-rigth {
        display: flex;
        width: calc((100% / 2) - 5px);
        height: 290px;
        box-sizing: border-box;
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        flex-shrink: 0;
    }

    #forbusinessovners-block-rigth {
        width: 100%;
    }

    #forbusinessovners-block-rigth-top {
        display: flex;
        /* width: 429px; */
        height: fit-content;
        box-sizing: border-box;
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        flex-shrink: 0;
        margin-bottom: 24px;
    }

    #forbusinessovners-block-rigth-bottom {
        display: flex;
        /* width: 429px; */
        height: fit-content;
        box-sizing: border-box;
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        flex-shrink: 0;
    }

    #formarketers {
        flex-direction: column;
    }


    #formarketers-left-block {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 493px;
        margin-right: 0px;
        background-size: 100%;
        background-position-x: 0rem;
        background-position-y: 10rem;
        margin-bottom: 10px;
    }

    #formarketers-left-block-01 {
        display: flex;
        box-sizing: border-box;
        width: 100%;
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        flex-shrink: 0;
    }

    #formarketers-rigth-block {
        width: 100%;

    }


    #formarketers-rigth-block-01 {
        display: flex;
        width: 100%;
        box-sizing: border-box;
        height: calc((100% / 2) - 12px);
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        flex-shrink: 0;
        margin-bottom: 24px;
    }


    #formarketers-rigth-block-02 {
        display: flex;
        width: 100%;
        box-sizing: border-box;
        height: calc((100% / 2) - 12px);
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        flex-shrink: 0;
    }

    #cxspecialists {
        flex-direction: column;
    }


    #cxspecialists-rigth-block {
        margin-right: 0px;
        margin-bottom: 10px;
    }

    #cxspecialists-rigth-block-01 {
        display: flex;
        box-sizing: border-box;
        width: 100%;
        height: calc((100% / 2) - 12px);
        padding: 31px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        flex-shrink: 0;
        margin-bottom: 10px;
    }

    #cxspecialists-rigth-block-02 {
        display: flex;
        box-sizing: border-box;
        width: 100%;
        height: calc((100% / 2) - 12px);
        padding: 31px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        flex-shrink: 0;
    }


    #cxspecialists-left-block {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 423px;
        background-size: 100%;
        background-position-x: 0rem;
        background-position-y: -3rem;
    }

    #cxspecialists-left-block-01 {
        display: flex;
        box-sizing: border-box;
        width: 100%;
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        flex-shrink: 0;
    }

    #tasks-help-buttons {
        display: flex;
    }


    #tasks-help-buttons .btn-prim {
        margin: 0px;
    }

    #tasks-help-buttons .btn-secondary {
        width: 240px;
    }


    /* ========== TASKS-HELP END ========== */




    /* ========== REVIEW-BIG  ========== */
    #review-big {
        padding-top: 0px;
        justify-content: center;
        max-width: 100%;
        height: 900px;
    }

    #symbols {
        height: 100px;
        position: relative;
    }

    #review-main-quot {
        position: relative;
        top: -10px;
        left: -41px;
    }

    #review-main-star {
        position: relative;
        top: 870px;
        left: -2px;
        transform: rotate(25.378deg);
        width: 170px;
        height: 170px;
    }


    #review-big-block {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 860px;
        /* height: 314px; */
        padding: 24px;
        margin: auto;
    }

    .review-main-text {
        font-size: 16px;
        margin: 2px;
    }

    #review-big-block-text-small {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .review-descr-text {
        font-size: 14px;
        line-height: 81%;
        margin: 2px;
        opacity: 0.5;
    }

    #review-big-block-img {
        align-self: start;
        width: 121px;
        height: 214px;
        flex-shrink: 0;
        border-radius: 163px;
        margin-right: 0px;
        margin-top: 15px;
    }

    #review-main-symbol {
        display: none;
        width: 150px;
        height: 150px;
        transform: rotate(25.378deg);
        flex-shrink: 0;
        font-size: 420px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        text-transform: uppercase;
        position: relative;
        top: -600px;
        left: 370px;
    }

    /* ========== REVIEW-BIG END ========== */


    /* ====================== HOWITWORKS  ========================== */
    /* ====================== HOWITWORKS END ========================== */



    /* ========== INFO-BIG  ========== */
    #info-big {
        padding-top: 85px;
        margin-top: 50%;
        display: flex;
        flex-direction: column;
        padding: 24px;
        align-items: flex-start;
        gap: 5px;
        width: 100%;
        height: fit-content;
        box-sizing: border-box;
    }

    #info-big-text-block {
        margin-right: 0px;
        width: 100%;
    }

    .info-big-headtext {
        font-size: 24px;
        letter-spacing: 0.24px;
    }

    .info-big-text {
        font-size: 16px;
        margin: 0px;
    }

    #info-big-img-block {
        width: 100%;
        height: 150px;
        background-size: 100%;
    }

    /* ========== INFO-BIG END ========== */


    /* ========== FUNCTIONS  ========== */

    #functions {
        padding-top: 85px;
    }

    #functions-header {
        margin-bottom: 40px;
    }

    .function-description-block {
        height: fit-content;
        margin-bottom: 24px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        border-radius: 24px;
    }

    .f-d-b-left {
        width: 100%;
        box-sizing: border-box;
        display: flex;
        padding: 0px;
        flex-direction: column;
        border-radius: 24px;
        margin-right: 0px;
    }



    .f-d-b-rigth {
        width: 100%;
        box-sizing: border-box;
        display: flex;
        padding: 0px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        flex: 1 0 0;
        border-radius: 24px;
    }

    #func-desc-01-block {
        background: var(--additional-purple, #D4D2E7);
    }

    #func-desc-01-block-rigth {
        background: var(--additional-purple, #D4D2E7);
    }

    #func-desc-01-block-rigth-img {
        width: 100%;
        height: 150px;
        margin: 0px;
    }

    .function-description-text {
        font-size: 14px;
    }

    .func-desc-img {
        width: 32px;
        height: 32px;
        margin-right: 0px;
        margin-bottom: 15px;
    }

    .function-description-text-header {
        font-size: 16px;
        letter-spacing: 0.16px;
    }

    #func-desc-02-block {
        background: var(--additional-light-brown, #ECE1CB);
    }

    #func-desc-02-block-rigth {
        background: var(--additional-light-brown, #ECE1CB);
    }

    #func-desc-02-block-rigth-img {
        width: 100%;
        height: 150px;
        margin: auto;
    }

    #func-desc-02-block-rigth-img {
        width: 100%;
        height: 150px;
        margin: auto;
    }


    #func-desc-03-block-rigth-img {
        width: 100%;
        height: 150px;
        margin: auto;
    }

    #func-desc-03-block {
        background: var(--additional-green, #CBECDD);
    }

    #func-desc-03-block-rigth {
        background: var(--additional-green, #CBECDD);
    }

    #func-desc-04-block {
        display: none;
    }

    #func-desc-04-block-rigth {
        background: var(--additional-purple, #D4D2E7);
    }

    #func-desc-05-block {
        display: none;
    }

    #func-desc-05-block-rigth {
        background: var(--additional-light-brown, #ECE1CB);
    }

    #func-desc-06-block {
        display: none;
    }

    #func-desc-06-block-rigth {
        background: var(--additional-light-blue, #F0F4F6);
    }

    #func-desc-07-block {
        display: none;
    }

    #func-desc-07-block-rigth {
        background: var(--additional-purple, #D4D2E7);
    }


    #func-desc-more {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    #func-desc-more-blocks {
        display: flex;
        margin-top: 15px;
    }

    #func-desc-more-blocks div {
        box-sizing: content-box;
        width: 230px;
    }

    #func-desc-more-01-block {
        height: 390px;
        margin-right: 24px;
        padding: 24px;
        width: 315px;
    }

    #func-desc-more-02-block {
        height: 452px;
        margin-right: 24px;
        padding: 24px;
        width: 315px;
    }

    #func-desc-more-03-block {
        height: 452px;
        margin-right: 24px;
        padding: 24px;
        width: 315px;
    }

    #func-desc-more-04-block {
        height: 390px;
        padding: 24px;
        width: 315px;
    }

    /* ========== FUNCTIONS END ========== */




    /* ====================== TARIFFS  ========================== */
    /* see css/areas/review/onboarding/onboarding-layout.css */

    #tariffs {
        margin-top: 30px;
    }

    /* ====================== TARIFFS END ========================== */





    /* ========== REG SECTION========== */
    #reg {
        width: 100%;
    }

    #reg-block-top {
        display: flex;
        flex-direction: column;
        height: fit-content;
        width: 100%;
    }

    #reg-block-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        background-size: 100%;
        background-position-x: 0%;
        background-position-y: -15rem;
        margin-bottom: 24px;
    }

    #reg-block-left #img {
        height: 330px;
        width: 100%;
    }

    #reg-block-left #text {
        text-align: start;
        height: fit-content;
        width: 100%;
        box-sizing: border-box;
        padding: 32px 24px 24px 24px;
        border-radius: 24px;
    }


    #reg-block-left #text #textmain-1 {
        font-size: 2.7rem;
    }

    #reg-block-left #text #textmain-2 {
        font-size: 2.7rem;
    }

    #reg-block-left #text #textsec {
        font-size: 2.2rem;
        margin-top: 2.3rem;
    }

    #reg-block-rigth {
        display: flex;
        width: 100%;
        box-sizing: border-box;
        padding: 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        flex-shrink: 0;
        border-radius: 24px;
        margin-left: 0px;
    }






    #reg-block-bottom {
        height: fit-content;
        box-sizing: border-box;
        margin-top: 32px;
        display: flex;
        flex-direction: column;
        padding: 32px;
        text-align: center;
    }

    #reg-block-bottom-question {
        margin-right: 0px;
    }

    #reg-block-bottom-question #text {
        font-size: 2rem;
    }


    #reg-block-bottom-phone #phone {
        font-size: 1.5rem;
    }

    #reg-block-bottom-phone #phone a {
        color: #1D436B;
        text-decoration: none;
    }

    /* ========== REG SECTION END ========== */





    /* ========== QUESTIONS ========== */
    #questions {
        display: flex;
        box-sizing: border-box;
        flex-direction: column;
        width: 100%;
        margin-bottom: 0px;
        /* height: 712px; */
        padding: 32px;
        justify-content: space-between;
        margin-top: 45px;
        margin-bottom: 24px;
    }

    #questions-header #text {
        font-size: 24px;
        letter-spacing: 0.24px;
        margin: 0px;
    }

    #questions-block {
        width: 100%;
        box-sizing: border-box;
        margin-top: 2rem;
    }

    #questions-block-first {
        margin-top: 0px;
    }


    .questions-block-collapsible {
        height: 55px;
        box-sizing: content-box;
        display: flex;
        padding: 24px;
        gap: 19px;
    }

    .questions-block-collapsible-content {
        display: none;
        overflow: hidden;
        box-sizing: border-box;
        padding: 24px;
        gap: 19px;
    }

    .questions-block-collapsible.active {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .questions-block-collapsible-content p {
        font-size: 16px;
    }

    .questions-block-collapsible p {
        font-size: 16px;
        letter-spacing: 0.16px;
    }

    /* ========== QUESTIONS END ========== */

    /* ========== TEXT ========== */

    .text-orange {
        font-size: 2rem;
    }


    .text-main {
        font-size: 1.6rem;
    }

    .text-bold-main {
        font-size: 1.5rem;
    }

    .text-secondary {
        font-size: 1.2rem;
    }

    .main-page-header {
        font-size: 2rem;
        letter-spacing: 0.24px;
    }

    .main-headers {
        font-size: 2rem;
        letter-spacing: 0.24px;
    }

    .main-headers-description {
        font-size: 1.5rem;
    }

    /* ========== FOOTER ========== */


    #main-footer-logo {
        position: relative;
        bottom: -1rem;
        display: flex;
        padding-left: 0px;
        padding-right: 0px;
        justify-content: center;
    }

    #main-footer-logo #logo {
        display: block;
    }

    #footer-symbols {
        display: none;
        position: relative;
        margin-top: 33px;
    }

    #bracket {
        display: none;
        position: relative;
        top: -1rem;
        left: calc(-64% + 4px);
    }

    #main-footer-logo-text-elem {
        position: relative;
        margin-top: 5px;
        margin-left: 0rem;
    }

    #main-footer-logo-text-elem p {
        font-size: 15px;
    }







    #main-footer-block {
        padding-top: 82px;
        padding-right: 56px;
        padding-left: 56px;
        padding-bottom: 46px;
    }

    #footer-block-text {
        flex-direction: column;
        text-align: center;
    }



    #footer-block-text-main {
        width: 100%;
        box-sizing: border-box;
        margin-right: 0px;
    }


    #footer-block-text-main #footer-text-white {
        font-size: 2rem;
    }

    #footer-block-text-main p {
        font-size: 2rem;
    }


    #footer-block-text-contacts {
        width: 100%;
        margin-top: 0px;
    }

    #footer-block-text-contacts p {
        font-size: 1.5rem;
    }

    #footer-block-text-contacts #phone {
        font-size: 2rem;
    }


    #footer-block-text-contacts #phone a {
        color: #FFF;
        font-size: 1.5rem;
        text-decoration: none;
    }


    #footer-block-text-contacts #mail {
        font-size: 28px;
    }

    #footer-block-info-links {
        flex-direction: column;
    }

    #footer-block-info-links p {
        font-size: 1.2rem;
        margin: 0px;
        margin-bottom: 5px;
    }

    #footer-block-info-links a {
        font-size: 1.1rem;
        margin: 0px;
        margin-bottom: 5px;
    }


    #footer-block-info-contacts {
        display: none;
    }

    #footer-block-buttons {
        margin-top: 10px;
    }

    /* ========== FOOTER END ========== */


}