
.slider {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 626px;
    min-height: 720px;
}
.slides-wrapper {
    display: flex;
    width: 100%;
    transition: 700ms;
    border-radius: 30px;
}
.slide {
    width: 100%;
    flex: 0 0 100%;
    height: 100%;
    object-fit: contain;
}
.slider-dots {
    display: flex;
    gap: 12px;
    z-index: 10;
}
.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cccccc;
    cursor: pointer;
    transition: background-color 300ms;
}
.slider-dots .dot.active {
    background-color: #2F5FE3;
}
@media (max-width: 680px) {
    .slider {
        width: 400px;
        min-height: 470px;
    }
}
@media (max-width: 420px) {
    .slider {
        width: 300px;
        min-height: 360px;
    }
}



#general {
    position: relative;
    width: 100%;
    font-family: "Geologica", sans-serif;
    display: flex;
    justify-content: center;
    margin: 180px 0;
}
.general_background {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: visible;
}
.general_background svg {
    display: block;
    min-width: 2951px;
    height: 1159px;
    overflow: visible;
}
.general_container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
}
.general_container > img {
    height: 600px;
}
.general_content {
    display: flex;
    flex-direction: column;
    max-width: 460px;
    height: 100%;
    position: relative;
    align-items: center;
}
.general_content h2 {
    padding: 0;
    margin: 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 70px;
}
.general_content h3 {
    padding: 0;
    margin: 24px 0 0 0;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    line-height: 36px;
}
.general_content ul {
    list-style-type: none;
    margin: 56px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.general_content li {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.general_content li span {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 600;
}
.general_content > a {
    color: #427BEC;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-decoration: underline 2px;
    text-decoration-color: #427BEC;
    margin-top: 24px;
    letter-spacing: 2px;
    text-underline-offset: 4px;
    width: 100%;
}
.general_content > a:hover {
    color: #142e76;
}
@media (max-width: 1124px) {
    #general {
        margin: 60px 0;
    }
    .general_container {
        text-align: center;
        flex-direction: column;
        gap: 80px;
    }
    .general_background {
        display: none;
    }
}
@media (max-width: 680px) {
    .general_content h2 {
        font-size: 42px;
        line-height: 40px;
    }
    .general_content h3 {
        font-size: 24px;
    }
}



#info_line {
    position: relative;
    width: 100%;
    font-family: "Geologica", sans-serif;
    display: flex;
    justify-content: center;
    margin-top: 80px;
}
.info_line_container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.info_line_background {
    position: absolute;
    left: 10px;
    top: 0;
    width: calc(100% - 20px);
    z-index: 0;
}
.info_line_background svg {
    display: block;
    width: 100%;
    height: 180px;
}
.info_line_content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
}
.info_line_content_container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.info_line_content_container div {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    align-items: center;
}
.info_line_content_container span {
    color: white;
    font-weight: 500;
    font-size: 60px;
}
.info_line_content_container p {
    padding: 0;
    color: white;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}
.divider {
    width: 1px;
    height: 24px;
    background-color: #FFFFFF80;
}
@media (max-width: 1024px) {
    .divider {
        display: none;
        visibility: hidden;
    }
    .info_line_container {
        padding: 60px 20px;
    }
    .info_line_content {
        justify-content: center;
    }
    .info_line_content_container {
        width: auto;
        flex-direction: column;
        align-items: start;
    }
    .info_line_content_container div {
        gap: 20px;
    }
    .info_line_content_container span {
        width: 180px;
        text-align: end;
    }
    .info_line_background {
        height: 100%;
    }
    .info_line_background svg {
        height: 100%;
    }
}



#partners {
    position: relative;
    width: 100%;
    font-family: "Geologica", sans-serif;
    display: flex;
    margin-top: 150px;
}
.partners_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}
.partners_title {
    padding: 20px 10px 56px 10px;
    font-family: 'Geologica', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 44px;
    max-width: 1440px;
    text-align: left;
    width: 100%;
}
.brands_line {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    max-width: 1296px;
    gap: 16px;
    padding: 16px 0 0 0;
}
.brand {
    padding: 44px 56px;
    background-color: #EEF8FF;
    border-radius: 32px;
}
@media (max-width: 580px) {
    .partners_title {
        padding: 0 10px;
        font-size: 28px;
    }
    .brand {
        padding: 0 40px;
    }
}

#feedbacks {
    position: relative;
    width: 100%;
    font-family: "Geologica", sans-serif;
    padding: 140px 10px;
    display: flex;
    justify-content: center;
}
.feedbacks_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 100px;
    width: 100%;
    max-width: 800px;
}
.feedback {
    display: flex;
    flex-direction: row;
    gap: 16px;
    color: #09214A;
    font-family: 'Lato', sans-serif;
    margin: 0;
}
.feedback div {
    display: flex;
    flex-direction: column;
}
.feedback p {
    margin-top: 20px;
    max-width: 400px;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}
.feedback span {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 24px;
    line-height: 36px;
}
.feedback svg {
    margin: 16px auto 0 auto;
}
.feedback img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.feedback_right {
    flex-direction: row-reverse;
}
.feedback_right span {
    text-align: end;
}


#discounts {
    position: relative;
    width: 100%;
    font-family: "Geologica", sans-serif;
    padding: 170px 64px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.discounts_background {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.discounts_background > svg {
    display: block;
    width: 100%;
    height: 100%;
}
.discounts_content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 36px;
    max-width: 1600px;
}
.discount_content_info {
    display: flex;
    flex-direction: column;
}
.discount_content_info > h2 {
    text-transform: uppercase;
    font-size: 44px;
    padding: 0;
    max-width: 800px;
}
.discount_content_info > p {
    margin-top: 54px;
    padding: 0;
    font-size: 24px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 2px;
    max-width: 800px;
}
.discount_content_info > div {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 12px;
    margin-top: 54px;
}
.discount_download_link {
    padding: 14px 24px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: white;
    background: linear-gradient(to bottom, #2F5FE3 0%, #00C6FF 100%);
    border-radius: 35px;
    width: 100%;
}
.discount_content_screens {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.discount_content_screen {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.discount_content_screen > span {
    font-family: 'Permanent Marker', cursive;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    transform: rotateZ(-4.2grad);
}
@media (max-width: 1380px) {
    .discounts_content {
        flex-direction: column;
    }
    .discounts_background {
        display: none;
    }
}
@media (max-width: 840px) {
    #discounts {
        padding: 90px 10px;
    }
    .discount_content_info > h2 {
        font-size: 28px;
    }
    .discount_content_info > p {
        font-size: 18px;
        margin-top: 10px;
    }
    .discount_content_info > div {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
    .discount_content_screens {
        flex-direction: column;
        gap: 80px
    }
}


#app_works {
    position: relative;
    width: 100%;
    font-family: "Geologica", sans-serif;
    padding: 0 64px;
    max-width: 1600px;
    margin: 120px auto 0 auto;
}
#app_works > h2 {
    font-size: 44px;
}
#app_works > p {
    padding: 0;
    margin-top: 24px;
    font-size: 24px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 2px;
}
.app_works_list {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 32px;
    margin-top: 64px;
    width: 100%;
    align-items: center;
}
.app_works_box {
    max-width: 416px;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
}
.app_works_box > img {
    width: 140px;
    height: 140px;
}
.app_works_box > span {
    font-size: 24px;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
}
.app_works_box > p {
    font-size: 20px;
    padding: 0;
    margin-top: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    line-height: 30px;
}

@media (max-width: 1024px) {
    #app_works {
        padding: 0 10px;
    }
    #app_works > h2 {
        font-size: 28px;
    }
    #app_works > p {
        font-size: 18px;
    }
    .app_works_list {
        flex-direction: column;
        gap: 40px;
    }
}


#main_download {
    position: relative;
    width: 100%;
    height: 800px;
    margin-top: 120px;
}
.main_download_background {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.main_download_background > svg {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 1440px;
}
.main_download_content {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 54px;
}
.main_download_title {
    font-family: "Geologica", sans-serif;
    text-align: center;
    font-size: 44px;
}
.main_download_stores {
    display: flex;
    flex-direction: row;
    gap: 32px;
}
.download_box {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media (max-width: 412px) {
    .main_download_stores {
        flex-direction: column;
    }
}


.footer-landing {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-top: 120px;
}
.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.footer-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}
.footer-content {
    position: relative;
    padding: 100px 80px 40px 80px;
    display: flex;
    flex-direction: column;
    gap: 54px;
    font-family: "Geologica", sans-serif;
    font-size: 18px;
    color: white;
    margin-top: 100px;
    width: 100%;
    max-width: 1600px;
}
.footer-upper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #3F60B8;
    padding-bottom: 55px;
    gap: 40px;
}
.footer-upper > svg {
    min-width: 255px;
    min-height: 50px;
    max-width: 255px;
    max-height: 50px;
}
.footer-upper > nav {
    display: flex;
    flex-direction: row;
    gap: 5px 30px;
    flex-wrap: wrap;
    justify-content: end;
}
.footer-upper > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
}
.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 14px;
}
.footer-bottom > div {
    display: flex;
    flex-direction: row;
    gap: 32px;
}
.footer-link {
    color: white;
}
.footer-link:hover {
    color: #427bec;
}

@media (max-width: 1024px) {
    .footer-content {
        align-items: center;
    }
    .footer-upper {
        flex-direction: column;
        width: 255px;
    }
    .footer-upper > nav {
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }
    .footer-upper > nav > a {
        padding: 10px;
        border-bottom: 1px solid #72c9fa;
        width: 100%;
    }
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .copyright-text {
        text-align: center;
    }
}


#slides {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}
.slide {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 90px 0;
}
.slide img {
    height: 600px;
}
.slide_reverse {
    flex-direction: row-reverse;
}
.slide_content {
    height: 100%;
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slide_content h4 {
    font-size: 44px;
    text-transform: uppercase;
    font-weight: 700;
}
.slide_content p {
    padding: 0;
    margin: 20px 0;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 500;
}

@media (max-width: 1300px) {
    .slide {
        gap: 40px;
    }
    .slide img {
        height: 400px;
    }
    .slide_content h4 {
        font-size: 24px;
    }
    .slide_content p {
        font-size: 18px;
    }
    .general_container > img {
        height: 400px;
    }
}
@media (max-width: 880px) {
    .slide {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .slide_reverse {
        flex-direction: column;
    }
    .slide img {
        width: 100%;
        max-width: 460px;
        height: auto;
    }
}
.background_cloud {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: visible;
}
.background_cloud svg {
    display: block;
    height: 100%;
    margin: 0 auto;
    overflow: visible;
}

@media (max-width: 440px) {
    .general_container > img {
        width: 100%;
        height: auto;
    }
}
