/* Global */
* {
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    --text-color: #001251;
    --background-color: #FCFEFF;
    --secondary-background-color: #F7F9FA;
    --border-color: rgba(0, 18, 81, 0.2);
    --textLinks-color: #FCFEFF;
    --pages-background: #0012512f;
    --path-color: #C4C4C4;
}

body.dark-theme {
    --text-color: #FFFFFF;
    --background-color: #0A0E24;
    --secondary-background-color: #111631;
    --border-color: rgba(255, 255, 255, 0.3);
    --textLinks-color: #AAAAAA;
    --pages-background: #ffffff2f;
    --path-color: #3B3E50;
}

body {
    background: var(--background-color);
    position: relative;
}

.container {
    min-width: 1200px;
    max-width: 1200px;
}

h2 {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    text-align: center;
    color: var(--text-color);
}

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

p {
    font-family: 'Plus Jakarta Sans';
    line-height: 20px;
    color: var(--text-color);
}

h1 {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 48px;
    color: var(--text-color);
}

h3 {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    color: var(--text-color);
}

.open {
    height: 100%;
    background: #001251;
}

button {
    cursor: pointer;
}

@media (max-width: 1200px) {

    .section-2,
    .new-section-3,
    .section-4,
    .section-10,
    .section-11,
    .section-12,
    .section-13,
    footer {
        padding: 40px 20px !important;
    }

    .section-1 {
        padding: 120px 20px 20px !important;
    }

    .section-3 {
        padding: 40px 0 40px 20px !important;
    }

    .container {
        min-width: 100%;
    }

    .sections5-9 {
        padding: 40px 20px !important;
    }
}

/* header */

header {
    border-bottom: 1px solid var(--border-color);
    background: var(--background-color);
    position: fixed;
    width: 100%;
    z-index: 999;
}

header .header-content button {
    padding: 14px 25px;
    align-items: center;
    display: flex;
}

header .header-content img {
    width: 21px;
}

.dropdown svg {
    width: 16px;
    margin-left: 10px;
    height: 10px;
}

.dropdown svg path {
    stroke: var(--text-color);
}

header .menu {
    display: flex;
    gap: 32px;
    position: relative;
}

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

.header-content span {
    font-weight: 700;
}

.header-content .dropdown {
    font-weight: 500;
    color: var(--text-color);
    font-family: 'Plus Jakarta Sans';
    z-index: 700;
    position: relative;
}

.header-content .dropdown div {
    color: var(--text-color);
}

.header-content a {
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Plus Jakarta Sans';
    z-index: 700;
}

.header-content a:hover {
    color: #5BF6AC;
    font-weight: 600;
}

.header-content .pages-header a:hover {
    color: var(--textLinks-color);
    font-weight: 400;
}

.header-content .menu-stay:hover .dropdown {
    color: #5BF6AC;
    font-weight: 600;
}

.dropdown:hover path {
    stroke: #5BF6AC;
}

.menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.menu-button {
    display: none;
    cursor: pointer;
}

.menu-button path {
    stroke: var(--text-color);
}

.close-button path {
    stroke: var(--text-color);
}

.close-button {
    display: none;
    cursor: pointer;
}

.logo-mobile {
    display: none;
}

.hover-dropdown {
    display: none;
    position: absolute;
    background: var(--background-color);
    top: 52px;
    width: 100%;
    left: 0;
    z-index: 810;
    cursor: pointer;
    /* box-sizing: border-box; */
    border-top: 5px solid var(--text-color);
    border-bottom: 1px solid #F1F1F1;
    border-left: 1px solid #F1F1F1;
    border-right: 1px solid #F1F1F1;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 0px 0px 8px 8px;
    padding: 0 10px 10px;
}

.hover-dropdown div {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--text-color);
    opacity: 0.5;
    margin-top: 10px;
}

.hover-dropdown a {
    margin-top: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.hover-dropdown span {
    font-weight: 400;
    opacity: 0.5;
}

.hover-dropdown img {
    display: none;
    margin-left: 5px;
    width: 15px !important;
    height: 15px;
    margin-bottom: -3px;
}

.menu-stay {
    padding: 34px 0;
    z-index: 950;
}

.menu-stay:hover .hover-dropdown {
    display: block;
}

.hover-dropdown a:hover img {
    display: block;
}

.dropdown {
    cursor: pointer;
}

.menu-mobile {
    display: none;
}

.tooltip {
    display: inline-block;
}

.tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: var(--text-color);
    color: var(--background-color);
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    top: 86%;
    left: 12px;
    z-index: 99999;
}

.tooltiptext-active {
    visibility: visible;
}

.tooltiptext::after {
    content: "";
    position: absolute;
    top: -18px;
    left: 48%;
    margin-left: -5px;
    border-width: 9px;
    border-style: solid;
    border-color: transparent transparent var(--text-color) transparent;
}

.position {
    left: 167px !important;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.pages-header-mobile {
    display: none;
}

@media (max-width: 1200px) {

    .header-content {
        padding: 0 20px;
    }

    header .menu {
        display: none;
    }

    header {
        box-sizing: border-box;
        padding: 20px !important;
    }

    .header-content a {
        color: #FFFFFF;
        margin-top: 40px;
    }

    header .menu {
        display: none;
    }

    header .menu-mobile {
        margin: 20px 0 50px;
        flex-direction: column;
        align-items: flex-start;
    }

    .open .menu-mobile {
        display: flex;
        width: 100%;
        color: #DBDBDB;
        font-size: 20px;
    }

    header .header-content button {
        display: none;
        width: 100%;
    }

    .open .header-content button {
        display: block;
        width: 100%;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start !important;
        padding: 0;
    }

    .header-moile {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
        background: var(--background-color);
        padding: 21px;
        margin: -20px;
    }

    .menu-button {
        display: block;
    }

    .open .menu-button {
        display: none;
    }

    .open .close-button {
        display: block;
    }

    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .dropdown-mobile {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
        font-weight: 500;
        font-family: 'Plus Jakarta Sans';
        z-index: 700;
        color: #FFFFFF;
        margin-top: 40px;
    }

    .dropdown-mobile-active {
        color: #5BF6AC;
        font-weight: 600;
    }

    .a-active {
        color: #5BF6AC;
        font-weight: 600;
    }

    .onclick-dropdown {
        display: none;
        flex-direction: column;
        margin: 0 40px;
        font-size: 16px;
        line-height: 19px;
    }

    .onclick-dropdown-active {
        display: flex;
    }

    .arrow-top {
        display: none;
    }

    .arrow-top-active {
        display: block;
    }

    .arrow-bottom-active {
        display: none;
    }

    .onclick-dropdown div {
        font-size: 14px;
        opacity: 0.5;
        font-family: 'Plus Jakarta Sans';
        margin-top: 20px;
        font-weight: 400;
    }

    .onclick-dropdown a {
        margin-top: 20px;
        font-weight: 400;
    }

    .menu-mobile span {
        opacity: 0.5;
        font-weight: 400;
    }

    .pages-header {
        display: none;
    }

    .pages-header-mobile {
        display: block;
        background: var(--pages-background);
        border-radius: 100px;
        overflow: hidden;
    }

    .header-content .pages-header-mobile a {
        padding: 3px 9px 4px;
        text-decoration: none;
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: var(--textLinks-color);
        font-size: 16px;
        font-weight: 400;
        margin-top: 0;
    }

}

/* section-1 */
.section-1 {
    padding: 140px 80px 80px;
    overflow: hidden;
}

.section-1 .container {
    position: relative;
}

.section-1 a {
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
}

.section-1 .tooltip {
   position: relative;
}

.section-1 .tooltiptext {
    width: 250px;
    left: -80%;
    text-align: left;
    top: 50px;
}

.section-1 h2 {
    position: relative;
}

.pages {
    background: var(--pages-background);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 30px;
}

.pages-header {
    background: var(--pages-background);
    border-radius: 100px;
    overflow: hidden;
}

.pages a {
    padding: 12px 30px 15px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--textLinks-color);
    font-size: 14px;
    font-weight: 400;
}

.pages-header a {
    padding: 3px 9px 4px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--textLinks-color);
    font-size: 16px;
    font-weight: 400;
}

.active-page {
    display: inline-block;
    border-radius: 100px;
    background: var(--text-color);
    font-weight: 600 !important;
    color: var(--background-color) !important;
}

.title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 64px;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 30px;
}

.content {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.title-img {
    width: 90%;
    margin: 60px 0;
    min-height: 400px;
}

.points {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.point {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 22%;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 27px 20px;
}

.point img {
    height: auto;
    margin-right: 20px;
}

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

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

.gradient-1 {
    width: 815px;
    height: 815px;
    left: -490px;
    top: -390px;
    background-image: radial-gradient(#5BF6AC 0%, var(--background-color) 70%);
    opacity: 0.7;
}

.gradient-2 {
    width: 737px;
    height: 737px;
    left: 557px;
    top: 330px;
    background-image: radial-gradient(#5BF6AC 10%, var(--background-color) 60%);
    opacity: 0.4;
}

.background-under {
    position: absolute;
    background-color: black;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 9999;
    display: none;
}

@media (max-width: 1200px) {
    .section-1 .point {
        flex-direction: column;
        justify-content: flex-start;
    }

    .section-1 .point img {
        margin-bottom: 20px;
    }

    .gradient-2 {
        left: 453px;
    }
}

@media (max-width: 980px) {
    .points {
        flex-direction: column;
        gap: 0;
    }

    .point {
        width: 100%;
        margin-top: 20px;
        box-sizing: border-box;
    }

    .section-1 .point {
        flex-direction: row;
    }

    .title-img {
        display: none;
    }

    .title-img-mobile {
        display: block;
        width: 100%;
        margin: 60px 0;
    }

    .content {
        width: 100%;
        margin-bottom: 10px;
    }

    .title {
        font-size: 44px;
        margin-bottom: 0;
    }

    .section-1 h2 {
        font-size: 20px;
    }

    .section-1 .tooltiptext::after {
        display: none;
    }

    .section-1 .tooltip {
        position: unset;
     }

    .section-1 .tooltiptext {
        top: 50%;
        left: calc(50% - 135px);
        text-align: left;
    }

    .background-under-active {
        display: block;
    }
}

@media (max-width: 650px) {
    .gradient-1 {
        width: 343px;
        height: 342px;
        left: -173px;
        top: -184px;
    }

    .gradient-2 {
        width: 430px;
        height: 430px;
        left: 120px;
        top: 275px;
        opacity: 0.5;
    }
}

/* section-2 */

.section-2 {
    padding: 80px;
}

.title-2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 100px;
}

.section-2-img {
    width: 100%;
}

.filter {
    filter: blur(1px) brightness(0.6);
}

.pop-up {
    opacity: 0;
    top: 120px;
    left: 195px;
    width: 40%;
    padding: 50px;
    text-align: center;
    background: #FCFEFF;
    border: 2px solid var(--text-color);
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    position: absolute;
}

.pop-up-active {
    opacity: 1;
}

.pop-up h1 {
    font-weight: 500;
    font-size: 36px;
    margin: 20px 0 16px;
    color: #001251;
}

.pop-up h3 {
    line-height: 25px;
    color: #001251;
}

.window {
    position: relative;
    width: 69%;
    z-index: 5;
}

.icons {
    margin-top: 70px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icons img {
    width: 100%;
}

.icons-mobile {
    display: none;
    text-align: center;
}

.icons p {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    margin-top: 25px;
}

.content-section2 {
    display: flex;
}

.property-img {
    display: flex;
    flex-direction: column;
    left: 277px;
    top: -43px;
    position: absolute;
    gap: 76px;
}

.propertys {
    position: relative;
    height: 503px;
    left: -17px;
    top: 33px;
}

.propertys img {
    width: 90px;
}

.long-active-line {
    animation: long 0.5s ease-out normal forwards;
}

.short-active-line {
    animation: short 0.5s ease-out normal forwards;
}

.long-default-line {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
}

.short-default-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}

.clicked {
    opacity: 0.5;
    transition: opacity .2s ease-in-out;
    cursor: pointer;
}

.clicked-active {
    opacity: 1;
    transition: opacity .2s ease-in-out;
}

.lines {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.lines path {
    stroke-width: 12;
}

.lines-grey {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.lines-grey path {
    stroke: var(--path-color);
}

.helper {
    position: absolute;
    top: -76px;
    right: 60px;
}

.helper path {
    stroke: var(--text-color);
}

.helper-mobile path {
    stroke: var(--text-color);
}

.helper-mobile {
    display: none;
}

@keyframes long {
    from {
        stroke-dashoffset: 600;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes short {
    from {
        stroke-dashoffset: 400;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 1200px) {

    .section-2 {
        overflow: hidden;
    }

    .title-2 {
        flex-direction: column;
        margin-bottom: 40px;
        align-items: flex-start;
    }

    .title-2 h1 {
        margin-bottom: 20px;
    }

    .propertys {
        left: -17px;
        top: 27px;
    }

    .property-img {
        left: 200px;
        top: 42px;
        gap: 59px;
    }

    .propertys svg {
        width: 200px;
    }

    .propertys img {
        width: 60px;
    }
}

@media (max-width: 1060px) {

    .pop-up {
        top: 57px;
        left: 148px;
    }

    .propertys {
        top: -15px;
    }
}

@media (max-width: 980px) {

    .title-2 h1 {
        font-size: 34px;
    }

    .icons {
        display: none;
    }

    .icons-mobile {
        display: block;
    }

    .icons-mobile img {
        margin: 50px 0 15px;
    }

    .pop-up {
        padding: 20px 25px;
        top: 121px;
        left: 143px;
    }

    .pop-up img {
        width: 40px;
    }

    .pop-up h1 {
        font-size: 20px;
        margin: 10px 0;
    }

    .pop-up h3 {
        font-size: 12px;
    }
}

@media (max-width: 850px) {

    .content-section2 {
        margin-top: 100px;
    }

    .propertys svg {
        width: 170px;
    }

    .propertys img {
        width: 50px;
    }

    .property-img {
        left: 170px;
        top: 70px;
        gap: 52px;
    }

    .propertys {
        top: -72px;
    }

    .helper {
        position: absolute;
        top: -31px;
        right: 37px;
    }

    .pop-up {
        top: 85px;
        left: 119px
    }
}

@media (max-width: 700px) {

    .content-section2 {
        margin-top: 0;
    }

    .propertys {
        transform: rotate(90deg);
        height: 240px;
        left: 130px;
        top: -137px;
    }

    .content-section2 {
        flex-direction: column;
        align-items: center;
    }

    .clicked {
        transform: rotate(-90deg);
    }

    .helper {
        display: none;
    }

    .pop-up {
        width: 61%;
        padding: 20px 25px;
        top: 52px;
        left: 55px;
    }

    .propertys .helper-mobile {
        display: block;
        position: absolute;
        top: 235px;
        left: 7px;
        transform: rotate(-90deg);
        width: 150px;
    }
}

@media (max-width: 560px) {

    .pop-up {
        width: 60%;
        top: 9px;
        left: 36px;
    }
}

@media (max-width: 460px) {

    .property-img {
        gap: 50px;
        left: 170px;
        top: 78px;
    }

    .window {
        width: 100%;
    }

    .pop-up {
        top: 33px;
        left: 44px;
    }
}

@media (max-width: 390px) {
    .propertys svg {
        width: 130px;
    }

    .property-img {
        gap: 27px;
        left: 130px;
        top: 111px;
    }

    .propertys {
        top: -132px;
    }

    .propertys .helper-mobile {
        top: 160px;
    }

    .pop-up {
        top: 4px;
        left: 35px;
    }
}


/* section-3 */

.section-3 {
    padding: 80px;
    background: var(--secondary-background-color);
}

.boxes {
    display: flex;
    gap: 40px;
}

.box img {
    width: 50%;
    margin-bottom: 40px;
}

.box {
    padding: 45px 30px;
    background: #FCFEFF;
    border-radius: 16px;
}

.gradient-5 {
    width: 616px;
    height: 616px;
    left: -213px;
    top: -15px;
    background-image: radial-gradient(#5BF6AC 0%, var(--background-color) 60%);
    opacity: 0.7;
    filter: blur(80px);
}

.gradient-6 {
    width: 526px;
    height: 526px;
    left: 290px;
    top: 260px;
    background-image: radial-gradient(#5BF6AC 0%, var(--background-color) 60%);
    opacity: 0.4;
    filter: blur(80px);
}

.gradient-7 {
    width: 587px;
    height: 587px;
    right: -204px;
    top: 450px;
    background: radial-gradient(62.06% 62.06% at 49.98% 50.06%, #5BF6AC 0%, var(--background-color) 60%);
    opacity: 0.7;
    filter: blur(80px);
}

.gradient-8 {
    width: 483px;
    height: 483px;
    right: 191px;
    bottom: 33px;
    background: radial-gradient(60.56% 60.56% at 49.9% 50.1%, #5BF6AC 0%, var(--background-color) 60%);
    opacity: 0.4;
    filter: blur(80px);
}

.new-section-3 {
    padding: 80px;
    text-align: center;
    overflow: hidden;
}

.new-section-3 .container {
    position: relative;
}

.new-section-3-part2 .backend-integration {
    position: relative;
}

.new-section-3 button {
    margin-top: 100px;
}

.new-section-3 h1 {
    margin-bottom: 130px;
}

.new-section-3-part1 {
    display: flex;
    text-align: left;
    align-items: center;
}

.new-section-3-part2 {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    align-items: center;
    margin-top: 140px;
}

.new-section-3-part1 .backend-integration {
    margin-left: 15%;
}

.new-section-3-part2 .backend-integration {
    margin-left: 0;
    margin-right: 14%;
}

.backend-integration h3 {
    font-size: 24px;
    font-weight: 500;
}

.backend-integration p {
    line-height: 160%;
    margin: 15px 0 5px;
}

.backend-integration a {
    font-family: 'Plus Jakarta Sans';
    line-height: 160%;
    color: var(--text-color);
    margin-top: 10px;
    text-decoration: none;
}

.new-section-3-part1 span {
    opacity: 0.5;
}

.section-3-img {
    width: 40%;
}

.new-section-3-part1 .section-3-img {
    margin-left: 6%;
}

.one {
    width: 32px;
    margin-bottom: 20px;
}

.one-mobile {
    display: none;
}

.links svg {
    width: 14px;
    margin-right: 10px;
}

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

.section-3-img-mobile {
    display: none;
}

.new-section-3 .tooltiptext {
    width: 290px;
    left: 31%;
    text-align: left;
}

.new-section-3 .tooltip,
.section-1 .tooltip {
    border-bottom: 2px solid var(--text-color);
}

.new-section-3 .tooltip:hover,
.section-1 .tooltip:hover {
    color: #5BF6AC;
    font-weight: 600;
    border-bottom: 2px solid #5BF6AC;
}

@media (max-width: 1200px) {
    .box-mobile {
        margin-right: 20px;
    }
}

@media (max-width: 980px) {
    .section-3 .title-2 {
        align-items: flex-start;
        padding-right: 20px;
    }

    .section-3.center {
        justify-content: flex-start;
    }

    .boxes {
        overflow: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
    }

    .box {
        scroll-snap-align: start;
        min-width: 50%;
    }

    .new-section-3-part1,
    .new-section-3-part2 {
        flex-direction: column;
        margin: 0;
    }

    .new-section-3 h1 {
        margin-bottom: 0;
    }

    .new-section-3-part1 .section-3-img {
        width: 100%;
        margin-left: 0;
    }

    .new-section-3-part2 .section-3-img {
        display: none;
    }

    .new-section-3 .backend-integration {
        width: 100%;
        text-align: left;
        margin: 45px 0 0;
    }

    .one {
        display: none;
    }

    .one-mobile {
        display: block;
        width: 32px !important;
        margin: 50px auto 25px;
    }

    .section-3-img-mobile {
        display: block;
        width: 100%;
    }

    .new-section-3 button {
        margin-top: 25px;
    }

    .gradient-5 {
        width: 355px;
        height: 355px;
        left: -95px;
        top: 60px;
        background: radial-gradient(59.74% 59.74% at 50% 40.26%, #5BF6AC 0%, var(--background-color) 60%);
        opacity: 0.7;
    }

    .gradient-6 {
        display: none;
    }

    .gradient-7 {
        width: 310px;
        height: 310px;
        left: 150px;
        top: 705px;
        background: radial-gradient(62.06% 62.06% at 49.98% 50.06%, #5BF6AC 0%, var(--background-color) 60%);
        filter: blur(80px);
    }

    .gradient-8 {
        display: none;
    }

    .new-section-3 .tooltiptext::after {
        display: none;
    }

    .new-section-3 .tooltiptext {
        left: calc(50% - 155px);
        top: 50%;
    }
}

/* section-4 */

.section-4 {
    padding: 80px;
    text-align: center;
}

.section-4 h1 {
    width: 60%;
    margin: 0 auto;
}

.section-4 .picture {
    margin: 50px 0;
}

.picture {
    width: 100%;
    margin: 0;
}

.button-green {
    background: #5BF7AC;
    border-radius: 100px;
    padding: 20px 35px;
    border: none;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 18px;
    color: #001251;
}

.button-green img {
    margin-left: 10px;
    width: 15px;
}

.picture-mobile {
    display: none;
}

@media (max-width: 980px) {
    .section-4 h1 {
        font-size: 34px;
        width: 97%;
    }

    .picture {
        display: none;
    }

    .picture-mobile {
        display: block;
        width: 100%;
        margin: 40px 0;
    }
}

/* section-5 */

.section-5 {
    text-align: center;
}

.sections5-9 {
    padding: 80px;
    position: relative;
}

.sections5-9 h1 {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 80px;
    text-align: center;
}

.benefits {
    text-align: left;
    width: 45%;
    margin-top: 100px;
}

.benefit {
    margin-bottom: 60px;
}

.benefit h2 {
    text-align: left;
    margin: 17px 0;
    font-weight: 500;
    color: var(--text-color);
}

.benefit-img {
    width: 35px;
    height: auto;
}

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

.big-img {
    margin-right: 105px;
}

.img-one {
    width: 30%;
}

.img-two {
    width: 40%;
    margin-top: 60px;
}

.img-three {
    width: 30%;
    margin-top: 60px;
}

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

.content-tabbar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 89px;
    gap: 30px;
    background: var(--background-color);
    padding: 10px 0;
}

.button-grey {
    border: 2.01478px solid #87809f;
    border-radius: 44px;
    padding: 16px 50px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: #87809f;
    cursor: pointer;
    transition-duration: 0.3s;
    text-decoration: none;
}

.button-active {
    background: var(--text-color);
    border-radius: 66px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    color: var(--background-color);
    padding: 20px 64px;
    border-color: var(--text-color);
    transition-duration: 0.3s;
}

.coordinates-1 {
    padding-left: 220px;
    transition: transform 0.3s;
}

.coordinates-2 {
    margin-right: -300px;
    padding-right: 130px;
    transform: translateX(-220px);
    transition: transform 0.3s;
}

@media (max-width: 1400px) {
    .coordinates-1 {
        margin: 0 -80px;
    }
}

@media (max-width: 1200px) {
    .content-tabbar {
        top: 72px;
    }
}

@media (max-width: 980px) {
    .sections5-9 h1 {
        width: 87%;
        font-size: 34px;
        margin-bottom: 60px;
    }

    .section-content {
        flex-direction: column;
    }

    .big-img {
        display: none;
    }

    .big-img-mobile {
        display: block;
        width: 80%;
        margin: 20px 0 0;
    }

    .benefits {
        width: 100%;
        margin-top: 40px;
    }

    .content-tabbar {
        flex-direction: column;
        padding: 10px 0;
        margin: 0;
        transform: translateX(0);
        gap: 8px;
    }

    .button-active {
        font-size: 20px !important;
        padding: 16px 50px !important;
    }

    .button-grey {
        font-size: 14px;
        line-height: normal;
        padding: 10px 30px;
    }
}

/* section-10 */
.section-10 {
    padding: 80px;
    text-align: center;
    background: var(--secondary-background-color);
}

.section-10 h1 {
    width: 60%;
    margin: 0 auto 80px;
}

.columns {
    display: flex;
    gap: 30px;
}

.column {
    background-color: var(--background-color);
    box-shadow: 4px 4px 12px rgb(0 0 0 / 5%);
    border-radius: 16px;
}

.first-column {
    padding: 50px 50px 0;
}

.second-column {
    padding: 50px;
}

.section-10 .picture {
    margin-top: 40px;
}

.column h3 {
    opacity: .3;
    font-size: 24px;
    font-weight: 500;
}

.ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
}

.ticks h2 {
    text-align: left;
}

.tick {
    width: 25px;
    height: 25px;
    margin-top: 5px;
    margin-right: 10px;
}

@media (max-width: 980px) {
    .columns {
        flex-direction: column;
        gap: 20px;
    }

    .section-10 h1 {
        width: 100%;
        margin-bottom: 40px;
        font-size: 34px;
        text-align: left;
    }

    .column {
        padding: 20px;
    }
}

/* section-11 */
.section-11 {
    padding: 80px;
}

.section-11 h1 {
    margin: 10px 0 40px;
}

.tag {
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-color);
    opacity: 0.4;
}

.section-11 .point {
    margin-top: 20px;
    width: 81%;
    justify-content: flex-start;
    height: 20px;
    align-items: center;
}

.advantages {
    display: flex;
}

.advantage {
    flex: 1;
}

.content-section-11 {
    width: 60%;
}

.section-11 .section-content {
    align-items: flex-start;
}

.img-m {
    margin-top: 65px;
    width: 40%;
    margin-left: 100px
}

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

@media (max-width: 1200px) {
    .img-m {
        margin-left: 0;
    }
}

@media (max-width: 980px) {
    .section-11 h1 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .content-section-11 {
        width: 100%;
    }

    .advantages {
        flex-direction: column;
    }

    .section-11 .point {
        width: 100%;
        height: 70px;
    }

    .img-m {
        display: none;
    }

    .img-m-mobile {
        display: block;
        width: 100%;
        margin-top: 40px;
    }
}

/* section-12 */
.section-12 {
    padding: 80px;
    text-align: center;
    background: var(--secondary-background-color);
}

.section-12 p {
    line-height: 160%;
}

.section-12 .point {
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    width: 28%;
    background: var(--background-color);
    border: none;
}

.section-12 h3 {
    margin: 20px 0;
    font-weight: 500;
    font-size: 24px;
    color: var(--text-color);
}

.section-12 h1 {
    width: 60%;
    margin: 0 auto 60px;
}

.section-12 .button-green {
    padding: 15px 0;
    width: 200px;
    margin: 0 auto;
}

.section-12 .point img {
    margin-right: 0;
}

.benefits-12 {
    list-style-type: none;
}

.section-12 .point ul svg {
    width: 14px;
    height: 13px;
    margin-right: 12px;
    display: block;
}

.arrow path {
    stroke: var(--text-color);
}

.benefits-12 li {
    font-family: 'Plus Jakarta Sans';
    line-height: 160%;
    color: var(--text-color);
    margin-top: 10px;
    display: flex;
    align-items: baseline;
}

.point button {
    margin-top: 124px !important;
}

@media (max-width: 1200px) {
    .section-12 .point {
        justify-content: space-between;
    }
}

@media (max-width: 980px) {
    .section-12 h1 {
        font-size: 34px;
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }

    .section-12 .point {
        width: 100%;
    }

    .point button {
        margin-top: 20px !important;
    }

    .section-12 .button-green {
        width: 100%;
    }

    .section-12 .point {
        margin-top: 30px;
    }
}

.section-13 {
    padding: 80px;
    background: var(--secondary-background-color);
    text-align: center;
}

.section-13 .title-2 {
    gap: 5%;
    text-align: left;
}

.languages {
    font-size: 14px;
    margin-top: 25px;
}

.content-13 p {
    width: 40%;
    margin: 0 auto;
}

.section-13 .benefits {
    width: 30%;
    margin: 0;
}

.section-13 .benefit {
    padding: 40px 30px;
    background: var(--background-color);
    border-radius: 16px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.05);
    height: 17%;
}

.section-13 .benefit p {
    opacity: 1;
}

.ranks {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 980px) {
    .ranks {
        flex-direction: column;
    }

    .section-13 .benefits {
        width: 100%;
        margin: 0;
    }

    .section-13 .benefit {
        margin-bottom: 20px;
        margin: 0 0 20px;
    }

    .content-13 p {
        display: none;
    }
}

/* footer */

footer {
    padding: 80px 80px 0;
    overflow: hidden;
}

footer .container {
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.ad {
    width: 40%;
}

.options {
    width: 60%;
    display: flex;
    justify-content: space-between;
    margin-right: 5%;
}

footer h1 {
    font-size: 32px;
}

footer h2 {
    text-align: left;
    font-weight: 400;
    font-size: 24px;
    line-height: 31px;
    color: var(--text-color);
}

footer h3 {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-color);
}

footer button {
    margin-top: 25px;
    width: 100%;
}

footer .options a,
footer .options p {
    display: block;
    font-family: 'Plus Jakarta Sans';
    font-size: 14px;
    line-height: 160%;
    color: var(--text-color);
    opacity: 0.7;
}

footer span {
    font-weight: 700;
}

.line {
    opacity: 0.3;
    border-bottom: 1px solid var(--text-color);
    margin-bottom: 40px;
    margin-top: 50px;
}

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

.footer-bottom img {
    width: 28px;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-bottom a {
    font-weight: 500;
    color: var(--text-color);
    border-bottom: 1px solid var(--text-color);
    text-decoration: none;
    margin-left: 5px;
}

.footer-bottom .illustrations {
    font-size: 12px;
    opacity: 0.3;
}

.logo-footer path {
    fill: var(--text-color);
}

.logo-footer-mobile path {
    fill: var(--text-color);
}

.logo-footer-mobile {
    display: none;
}

.help {
    display: flex;
}

.help a {
    text-decoration: none;
}

.help div {
    margin-right: 60px;
}

.gradient-3 {
    width: 815px;
    height: 815px;
    left: -540px;
    top: -410px;
    background-image: radial-gradient(#5BF6AC 0%, var(--background-color) 60%);
    opacity: 0.6;
}

.gradient-4 {
    width: 805px;
    height: 805px;
    left: 180px;
    top: -20px;
    background-image: radial-gradient(#5BF6AC 0%, #fcfeff00 45%);
    opacity: 0.5;
}

@media (max-width: 1200px) {
    .options {
        margin-right: 0;
    }

    .footer-bottom {
        margin-bottom: 0;
    }
}

@media (max-width: 980px) {
    .footer-content {
        flex-direction: column;
    }

    .options {
        width: 100%;
        margin-right: 0;
        flex-direction: column;
    }

    .help {
        display: flex;
        margin-top: 40px;
        gap: 80px;
    }

    .help div {
        margin-right: 0;
    }

    .ad {
        width: 100%;
    }

    footer h1 {
        font-size: 24px;
        margin-top: 50px;
    }

    footer .options a {
        text-decoration: none;
    }

    .logo-footer {
        display: none;
    }

    .logo-footer-mobile {
        display: block;
        width: 28px;
        height: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-mobile {
        display: flex;
        justify-content: space-between;
    }

    .illustrations {
        margin-top: 16px;
    }
}

@media (max-width: 450px) {
    .gradient-3 {
        width: 511px;
        height: 511px;
        left: -270px;
        top: -270px;
    }

    .gradient-4 {
        width: 276px;
        height: 276px;
        left: 238px;
        top: 366px;
        opacity: 0.6;
    }
}





/* .section-1,
.section-2,
.section-3,
.section-4,
.section-5,
.section-6,
.section-7,
.section-8,
.section-9,
.section-10,
.section-11,
.section-12,
.section-13,
.sections5-9,
.new-section-3,
footer,
header {
    display: none !important;
} */