/* ## BASED STYLES */
body{
    margin: 0;
    padding: 0;
    background-color: #181825;
    width: 100%;
    height: 100%;
}

section{
    padding: 42px 80px;
    position: relative;
    /* width: calc(100% - 160px); */
}
/* END */



/* ## REGULAR STYLES */
.hide{
    display: none;
}

.show{
    display: flex;
}

.blue_custom_button{
    height: 24px;
    width: 190px;
    padding: 18px 30px;
    margin-top: 30px;
    border-radius: 15px;
    background-color: #2C27FF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
    line-height: 24px;
}
.blue_custom_button svg{
    height: 24px;
    width: 24px;
}

.white_custom_button{
    display: inline-block;
    position: relative;
    align-self: center;
    padding: 20px 30px;
    background-color: white;
    border: 1px #2C27FF solid;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    color: #2C27FF;
}

.glassy_custom_button{
    display: inline-block;
    position: relative;
    border: 1px white solid;
    border-radius: 5px;
    padding: 8px 32px;
    align-self: center;

    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: white;
}

.gold_custom_button{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 16px;
    border: 1px #F2D93B solid;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #F2D93B;
    line-height: 24px;
    align-self: flex-end;
    justify-self: end;
}

.colorless_custom_button {
    display: flex;
    align-items: start;
    padding: 5px;
}
.colorless_custom_button span {
    flex-grow: 1;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 38px;
    color: white;
    margin-right: 5px;
}
.colorless_custom_button svg {
    flex-shrink: 0;
    height: 38px;
    width: 38px;
}

.dark_gradient-block{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 92px;
    width: 92px;
    border-radius: 25px;
    background: linear-gradient(45deg, #19212E, #2D2D51);
}

h1{
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: white;
    line-height: 77px;
    margin-top: 40px;
}

h2{
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 58px;
    color: white;
    margin: 10px 0 35px;
}

h3{
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: white;
    line-height: 38px;
    text-align: center;
    margin: 0;
}

h4{
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 29px;
}

h5 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}

p{
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #D2CFF5;
    line-height: 24px;
}
/* END */



/* ## HEADER STYLES */
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 42px 80px;
    border-bottom: 1px white solid;
}

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

.header_logo_block span{
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: white;
    line-height: 29px;
}

.header_logo_block img{
    height: 74px;
}

header nav div{
    display: flex;
    gap: 35px;
}

header nav div a{
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #D2CFF5;
    line-height: 19px;
    text-decoration: none;
}

.burger_menu_icon{
    display: none;
}
/* END */



/* ## SECTION_ONE */
#section_one{
    height: calc(100vh - 243px);
}

.section_one-info_block{
    padding: 50px 0 0 40px;
    /* width: calc(100% - 665px); */
    /* width: calc(100% - 243px); */
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section_one-info_block h1{
    width: 60%;
}

.section_one-info_block p{
    width: 50%;
}

#section_one-img_desktop{
    position: absolute;
    bottom: 0;
    top: 89.5px;
    right: 0px;
    height: 486px;
    z-index: -1;
}

#section_one-gradient {
    position: absolute;
    z-index: -2;
    width: 665px; 
    height: 665px; 
    background: radial-gradient(circle at center, 
    rgba(50, 152, 243, 0.9) 0%,
    rgba(50, 152, 243, 0.4) 45%,
    rgba(50, 152, 243, 0) 65%,
    rgba(24, 24, 37, 0) 100% 
    ); 
    border-radius: 50%; 
    opacity: 0.48;
    bottom: 0;
    top: 0;
    right: 0px;
}
/* END */



/* ## SECTION TWO */
.card_list-first{
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}

.card_item-first{
    background-color: #0D1118;
    border-radius: 10px;
    padding: 20px;
    display: grid;
    grid-template-rows: 30px 200px 1fr 70px;
    gap: 20px;
}
.card_item-first h5 {
    color: #F2D93B;
    margin: 0px;
}
.card_item-first p{
    font-size: 18px;
    line-height: 22px;
    color: white;
}
.card_item-first img {
    justify-self: center;
    height: 200px;
    width: auto;
    /* width: 100%; */
}
/* END */



/* ## SECTION THREE & SEVEN */
.info_block_with_simulator{
    padding: 30px;
    display: grid;
    gap: 10%;
    grid-template-columns: 30% 60%;
}
.info_block_with_simulator h4{
    font-weight: 600;
    margin: 14px 0 0;
}
.info_block_with_simulator h5{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #2C27FF;
    margin: 0;
}
.info_block_with_simulator p{
    font-weight: 600;
    color: white;
    margin: 4px 0 0;
}
.info_block_with_simulator span{
    display: flex;
    flex-wrap: wrap;
}
.info_block_with_simulator .blue_custom_button{
    width: 395px;
    padding: 26px 0;
    margin-top: 50px;
    justify-content: center;
    gap: 20px;
    font-weight: 500;
    text-transform: uppercase;
}
.info_block_with_simulator .text_block{
    margin-top: 80px;
}
/* END */



/* ## SECTION THREE */
#sectioin_three-text_block_one{
    display: block;
}

#sectioin_three-text_block_two{
    display: none;
}

#section_three-img{
    width: 100%;
}

#section_three-img_half{
    display: none;
}
/* END */



/* ## SECTION FOUR */
#section_four{
    background-color: #0A0D16;
    padding: 174px 80px;
}

.section_four_list{
    width: calc(100% - 40px);
    display: grid;
    gap: 40px;
    grid-template-columns: 50% 50%;

}
.section_four_item{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.big_text{
    font-family: 'Inter', sans-serif;
    font-size: 96px;
    font-weight: 500;
    color: white;
    line-height: 116px;
}

.small_text{
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: white;
    line-height: 24px;
}
/* END */



/* ## SECTION FIVE */
#section_five{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px;
}
#section_five h1{
    font-weight: 600;
    text-align: center;
    /* padding: 0 20% 70px; */
    padding: 0 10% 70px;
    text-transform: capitalize;
}

.card_list-second{
    display: grid;
    gap: 120px;
    grid-template-columns: repeat(3, 1fr);
}

.card_item-second{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.card_item-second h5{
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    color: white;
    text-align: center;
    margin: 0;
}
.card_item-second p{
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    margin: 0;
}
/* END */



/* ## SECTION SIX */
#section_six h1 {
    font-weight: 600;
    text-align: center;
    /* padding: 0 20% 70px; */
    padding: 0 10% 40px;
    text-transform: capitalize;
}
/* END */



/* ## SECTION SEVEN */
.gradient_line_main {
    width: 100%;
    height: 8px;
    border-radius: 10px;
}
.gradient_line_one {
    background: linear-gradient(to right, #3F3BEF 95%, #D3D3D3 5%);
}
.gradient_line_two {
    background: linear-gradient(to right, #FDD923 90%, #D3D3D3 10%);
}
.gradient_line_three {
    background: linear-gradient(to right, #7E58F8 95%, #D3D3D3 5%);
}
.gradient_line_four {
    background: linear-gradient(to right, #363A3E 85%, #D3D3D3 15%);
}

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

#section_seven-img{
    width: 100%;
}

#section_seven-img_half{
    display: none;
}
/* END */



/* ## SECTION NINE */
#section_nine{
    padding: 0;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 100vh; */
}

.carousel-button {
    position: absolute;
    background-color: #2C27FF; 
    border: none;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    z-index: 10;
}
.carousel-button svg{
    width: 20px;
    height: 32px;
}

/* Ліва кнопка каруселі */
#prev-button {
    left: 50%; 
    transform: translateX(-50%) translateX(-40vw);
}

/* Права кнопка каруселі */
#next-button {
    left: 50%;
    transform: translateX(-50%) translateX(40vw);
}

.carousel {
    display: flex; 
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

/* Стилі для зображень */
.carousel-image {
    height: auto;
    flex-shrink: 0;
}
.carousel-image.central {
    height: 800px; 
    width: auto;
}
.carousel-image.left,
.carousel-image.right {
    height: 600px; 
    width: auto;
    opacity: 0.5;

}
.carousel-image.far-left,
.carousel-image.far-right {
    height: 400px; 
    width: auto;
    opacity: 0.25;
}
/* END */



/* ## SECTION EIGHT */
#section_eight{
    height: 100vh;
    overflow: hidden;
    padding: 0 40px 100px;
    /* avoids vertical scrolling of second gradient circle */
    overflow-x: hidden;
    /* padding: 0 40px; */
}
#section_eight h1{
    font-weight: 600;
    text-align: center;
    padding: 0 20% 30px;
    text-transform: capitalize;
}
#section_eight .colorless_custom_button{
    width: 100%;
}

.section_eight_info_block{
    padding: 50px;
    /* padding: 0 50px 50px; */
    margin-top: 20vh;
    width: calc(100% - 100px);
    background-color: rgba(13, 17, 24, 0.4);
    border-radius: 25px;
}

.card_list-third{
    display: grid;
    gap: 60px;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
}

.card_item-third{
    display: flex;
    flex-direction: column;
    gap: 35px;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}
.card_item-third img{
    width: 100%;
    height: auto;
}

#section_eight-gradient_one {
    position: absolute;
    z-index: -2;
    height: 80vh;
    width: 80vh;
    background: radial-gradient(circle at center, 
    rgba(44, 39, 255, 0.9) 0%, 
    rgba(44, 39, 255, 0.4) 45%, 
    rgba(44, 39, 255, 0) 65%, 
    rgba(24, 24, 37, 0) 100%
    );
    border-radius: 50%;
    clip-path: inset(0 0 0 50%);
    left: 0;
    top: 20vh;
    transform: translateX(-50%);
}

#section_eight-gradient_two {
    position: absolute;
    z-index: -2;
    height: 80vh;
    width: 80vh;
    background: radial-gradient(circle at center, 
        rgba(44, 39, 255, 0.9) 0%, 
        rgba(44, 39, 255, 0.4) 45%, 
        rgba(44, 39, 255, 0) 65%, 
        rgba(24, 24, 37, 0) 100%);
    border-radius: 50%;
    clip-path: inset(0 50% 0 0); 
    right: 0;
    top: 0vh;
    transform: translateX(50%);
}

#section_eight-gradient_three {
    position: absolute;
    z-index: -2;
    height: 50vh;
    width: 50vh;
    background: radial-gradient(circle at center, 
    rgba(44, 39, 255, 0.9) 0%, 
    rgba(44, 39, 255, 0.4) 45%, 
    rgba(44, 39, 255, 0) 65%, 
    rgba(24, 24, 37, 0) 100%
    );
    border-radius: 50%;
    left: calc((100vw - 50vh) / 2);
    top: 15vh;
}
/* END */



/* ## SECTION TEN */
#section_ten h1{
    font-weight: 600;
    text-align: center;
    margin-top: 40px;
}
#section_ten .card_item-first{
    grid-template-rows: 30px auto auto 70px;
    gap: 30px;
}
#section_ten .card_item-first img {
    height: auto;
    width: 100%;
}
#section_ten .card_item-first h4{
    font-weight: 600;
    margin: 0;
}
#section_ten .card_item-first p{
    align-self: end;
    font-size: 24px;
    line-height: 29px;
    margin: 0;
}
/* END */



/* SECTION ELEVEN */
#section_eleven{
    padding: 100px 30px;
}
#section_eleven h1{
    font-weight: 600;
    text-align: center;
    margin: 0;
    /* text-transform: capitalize; */
}
#section_eleven .white_custom_button{
    padding: 20px 120px;
    font-size: 36px;
    line-height: 43px;
}

.section_eleven_info_block{
    background-color: #2C27FF;
    padding: 40px 12%;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
}
/* END */



/* ## FOOTER STYLES */
footer{
    background-color: #141417;
    padding: 100px;
}
footer h4{
    font-family: 'DM Sans', sans-serif;
    font-size: 30px;
    color: #0149B4;
    line-height: 39px;
    margin-top: 16px;
}
footer p{
    font-size: 24px;
    color: white;
    line-height: 31px;
}
footer .icon_list{
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer_info_block{
    width: calc(100% - 210px);
    display: grid;
    gap: 70px;
    grid-template-columns: 36% 22% 22% 22%;
}

.footer_logo{
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}
.footer_logo img{
    height: 74px;
}
/* END */




/* ------------------------------------------------------------- */
/* --------------------------BASED STYLES------------------------*/
/* ------------------------------------------------------------- */ 

@media (max-width: 1024px) {
    /* ## BASED STYLES */    
    section{
        padding: 42px;
    }
}

/* ------------------------------------------------------------- */
/* --------------------------REGULAR STYLES----------------------*/
/* ------------------------------------------------------------- */

@media (max-width: 1260px) {
    .colorless_custom_button span {
        font-size: 18px;
        line-height: 30px;
    }
    .colorless_custom_button svg {
        height: 30px;
        width: 30px;
    }
    .gold_custom_button{
        padding: 4px 10px;
        font-size: 16px;
    }
    /* END */
}

@media (max-width: 1200px) {
    h1{
        font-size: 54px;
        line-height: 65px;
    }
    h4{
        font-size: 25px;
        line-height: 30px;
    }
    p{
        font-size: 18px;
        line-height: 21px;
    }
}

@media (max-width: 1024px) {
    h1{
        font-size: 48px;
        line-height: 58px;
    }
    h2{
        font-size: 36px;
        line-height: 44px;
    }
    h3{
        font-size: 24px;
        line-height: 28px;
    }
    h4{
        font-size: 18px;
        line-height: 22px;
    }
    h5 {
        font-size: 15px;
        line-height: 18px;
    }
    p{
        font-size: 16px;
        line-height: 19px;
    }
    .blue_custom_button{
        padding: 14px 20px;
    }
}

@media (max-width: 1000px) {
    .gold_custom_button{
        padding: 4px 8px;
        font-size: 14px;
        line-height: 16px;
    }
}

@media (max-width: 850px) {
    section{
        padding: 0 42px;
        /* position: relative; */
        margin: 60px 0;
    }
}

@media (max-width: 520px) {
    h1{
        font-size: 36px;
        line-height: 43px;
    }
    h2{
        font-size: 27px;
        line-height: 33px;
    }
    h3{
        font-size: 18px;
        line-height: 21px;
    }
    h4{
        font-size: 14px;
        line-height: 16px;
    }
    h5 {
        font-size: 11px;
        line-height: 14px;
    }
    .glassy_custom_button{
        padding: 6px 24px;
        font-size: 16px;
        line-height: 20px;
    }
    .dark_gradient-block{
        height: 74px;
        width: 74px;
    }
}

@media (max-width: 430px) {
    .blue_custom_button{
        font-size: 14px;
        line-height: 16px;
        padding: 5px 10px;
        width: 140px;
    }
}

@media (max-width: 360px) {
    .colorless_custom_button span {
        font-size: 14px;
        line-height: 24px;
    }
    .colorless_custom_button svg {
        height: 24px;
        width: 24px;
    }
    .gold_custom_button{
        padding: 2px 6px;
        font-size: 12px;
        line-height: 14px;
    }
}

@media (max-width: 310px) {
    .colorless_custom_button span {
        font-size: 12px;
        line-height: 20px;
    }
    .colorless_custom_button svg {
        height: 20px;
        width: 20px;
    }
}

/* ------------------------------------------------------------- */
/* ----------------------------HEADER----------------------------*/
/* ------------------------------------------------------------- */

@media (max-width: 1080px) {
    header{
         padding: 42px 20px;
     }
}

@media (max-width: 1024px) {
    header{
        border-bottom: none;
    }
    header nav{
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: calc(50vw - 60px);
        padding: 53px 20px 0 40px;
        background-color: #0A0D16;
        z-index: 10;
        justify-content: space-between;
        display: none;
    }
    header nav div{
        justify-content: start;
        flex-direction: column;
        gap: 25px;
    }
    header nav div a{
        font-size: 18px;
        line-height: 43px;
    }
    .header_logo_block img{
        height: 64px;
    }
    .burger_menu_icon{
        display: block;
        width: 43px;
        height: 43px;
    }
}

@media (max-width: 600px) {
    header nav{
        width: calc(100vw - 60px);
    }
}

@media (max-width: 430px) {
    header nav{
        padding: 49px 20px 0 40px;
    }

    header nav div a{
        font-size: 16px;
        line-height: 28px;
    }
    .header_logo_block span{
        font-family: 'DM Sans', sans-serif;
        font-size: 20px;
        line-height: 26px;
    }
    .header_logo_block img{
        height: 41px;
    }
    .burger_menu_icon{
        height: 28px;
        width: 28px;
    }
}

/* ------------------------------------------------------------- */
/* -------------------------SECTION ONE--------------------------*/
/* ------------------------------------------------------------- */
@media (max-width: 1200px) {   
    .section_one-info_block{
        padding: 0 20px;
    }
    .section_one-info_block h1{
        margin-top: 40px;
    }
    .section_one-info_block p{
        width: 40%;
    }
}

@media (max-width: 1024px) {
    #section_one{
        height: 100%;
    }
    .section_one-info_block{
        padding: 0 20px;
        width: calc(100% - 84px);
    }
    .section_one-info_block h1{
        width: 70%;
        margin: 0 0 16px;
    }
    .section_one-info_block p{
        width: 50%;
    }
    #section_one-img_desktop{
        height: 395px;
    }
    #section_one-gradient {
        width: 540px; 
        height: 540px; 
    }
}

@media (max-width: 850px) {
    #section_one{
        margin: 0;
    }
    #section_one-img_desktop{
        height: 250px;
    }
    #section_one-gradient {
        top: 45px;
        width: 341px; 
        height: 341px; 
    }
}

@media (max-width: 780px) {
    .section_one-info_block{
        padding: 0;
        width: calc(100%);
    }
    .section_one-info_block h1{
        width: 100%;

    }
    .section_one-info_block p{
        width: 100%;
    }
    #section_one-img_desktop{
        display: none;
    }
    #section_one-gradient {
        display: none;
    }
}

/* ------------------------------------------------------------- */
/* -------------------------SECTION TWO--------------------------*/
/* ------------------------------------------------------------- */
@media (max-width: 1024px) {
    /* ## SECTION_TWO */
    #section_two{
        margin-top: 100px;
    }
}

/* ------------------------------------------------------------- */
/* ------------------------SECTION THREE-------------------------*/
/* ------------------------------------------------------------- */

@media (max-width: 1400px) {   
    #section_three-img_half{
        align-self: center;
        justify-self: center;
    }
    #sectioin_three-text_block_one{
        align-self: center;
    }
}

@media (max-width: 1170px) {
    #section_three-img{
        align-self: center;
    }

    #sectioin_three-text_block_one{
        margin-top: 0;
        align-self: center;
    }
}

@media (max-width: 700px) {
    #section_three {
        padding: 0;
    }
    #sectioin_three-text_block_one{
        display: none;
    }
    #sectioin_three-text_block_two{
        margin-top: 80px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    #sectioin_three-text_block_two p{
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #D2CFF5;
        line-height: 18px;
        margin: 0;
    }
    #section_three-img{
        display: none;
    }
    #section_three-img_half{
        display: block;
        width: 100%;
    }
}

@media (max-width: 400px) {
    #section_three-img_half{
        align-self: center;
        justify-self: center;
    }
    #sectioin_three-text_block_two{
        margin-top: 0;
        align-self: center;
    }
    #sectioin_three-text_block_two p{
        font-size: 12px;
        line-height: 15px;
    }
}

/* ------------------------------------------------------------- */
/* -------------------------SECTION FOUR-------------------------*/
/* ------------------------------------------------------------- */

@media (max-width: 1100px) {
    #section_four{
        padding: 80px 40px;
    }
}

@media (max-width: 870px) {
    #section_four{
        padding: 40px;
    }
}

@media (max-width: 570px) {
    #section_four{
        padding: 20px;
    }
    .section_four_list{
        width: 100%;
        gap: 10px 0;
        grid-template-columns: 1fr;
        grid-template-rows: 50% 50%;
    }
    .section_four_item{
        justify-content: space-around;
    }
}

/* ------------------------------------------------------------- */
/* -------------------------SECTION FIVE-------------------------*/
/* ------------------------------------------------------------- */

@media (max-width: 850px) {
    #section_five{
        padding: 0 80px;
    }
}

@media (max-width: 780px) {
    #section_five h1{
        padding: 0 0 40px;
    }
}

@media (max-width: 430px) {
    #section_five h1{
        font-size: 28px;
    }
}

@media (max-width: 350px) {
    #section_five{
        padding: 40px;
    }
    #section_five h1{
        padding: 0 0 40px;;
        font-size: 28px;
    }
}

/* ------------------------------------------------------------- */
/* --------------------------SECTION SIX-------------------------*/
/* ------------------------------------------------------------- */


/* ------------------------------------------------------------- */
/* -------------------------SECTION SEVEN------------------------*/
/* ------------------------------------------------------------- */

@media (max-width: 1400px) {  
    #section_seven-img_half{
        align-self: center;
        justify-self: center;
    }
    #sectioin_seven-text_block{
        align-self: center;
    }
}

@media (max-width: 1170px) {
    #section_seven-img{
        margin-top: 0;
        align-self: center;
    }
    #sectioin_seven-text_block{
        margin-top: 0;
        align-self: center;
    }
}

@media (max-width: 900px) {
    #section_seven{
        margin: 60px 0 0 0;
    }
}

@media (max-width: 700px) {
        #section_seven {
            padding: 0;
        }
        #section_seven .blue_custom_button{
            margin-top: 40px;
        }
        #section_seven .percent_line{
            padding: 6px 0;
        }
        #section_seven-img{
            display: none;
        }
        #section_seven-img_half{
            display: block;
            width: 100%;
        }
}

/* ------------------------------------------------------------- */
/* -------------------------SECTION EIGHT------------------------*/
/* ------------------------------------------------------------- */

@media (max-width: 1000px) {
    #section_eight-gradient_three {
        height: 40vh;
        width: 40vh;
        left: calc((100vw - 40vh) / 2);
    }
}

@media (max-width: 900px) {
    #section_eight{
        height: 100%;
    }
    #section_eight h1{
        padding: 0 0 30px;
    }
    #section_eight-gradient_one {
        height: 100vw;
        width: 100vw;
        left: 0;
        top: 50vh;

    }
    #section_eight-gradient_two {
        height: 100vw;
        width: 100vw;
        right: 0;
        top: 80vh;
    }
    #section_eight-gradient_three {
        height: 70vw;
        width: 70vw;
        left: calc(30vw / 2);
        top: 15vh;
    }
}

@media (max-width: 500px) {
    #section_eight{
        margin: 0;
    }
    #section_eight h1{
        padding: 0 0 30px;
        font-size: 30px;
        line-height: 40px;
    }
    .section_eight_info_block{
        padding: 20px;
        width: calc(100% - 40px);
    }
}

@media (max-width: 360px) {
    #section_eight h1{
        font-size: 24px;
        line-height: 32px;
    }
}

/* ------------------------------------------------------------- */
/* --------------------------SECTION NINE------------------------*/
/* ------------------------------------------------------------- */



/* ------------------------------------------------------------- */
/* ---------------------------SECTION TEN------------------------*/
/* ------------------------------------------------------------- */

@media (max-width: 1450px) {
    #section_ten .card_item-first{
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    #section_ten .card_item-first{
        gap: 5px;
    }
    #section_ten .card_item-first h4{
        font-size: 20px;
        line-height: 24px;
    }
    #section_ten .card_item-first p{
        font-size: 20px;
        line-height: 24px;
    }
}

/* ------------------------------------------------------------- */
/* -------------------------SECTION ELEVEN-----------------------*/
/* ------------------------------------------------------------- */

@media (max-width: 1200px) {
    #section_eleven .white_custom_button{
        font-size: 24px;
        padding: 12px 30px;
    }
}

@media (max-width: 650px) {
    #section_eleven{
        padding: 50px 20px;
    }
    #section_eleven .white_custom_button{
        font-size: 20px;
        line-height: 24px;
        padding: 8px 10px;
    }
    .section_eleven_info_block{
        padding: 40px 20px;
        gap: 40px;
    }
}

@media (max-width: 500px) {
    #section_eleven .white_custom_button{
        font-size: 16px;
        line-height: 20px;
        padding: 6px 10px;
    }
}

@media (max-width: 350px) {
    #section_eleven {
        padding: 0 20px;
    }
    #section_eleven h1{
        font-size: 30px;
        line-height: 38px;
    }
    #section_eleven h3{
        font-size: 14px;
        line-height: 18px;
    }
    #section_eleven .white_custom_button{
        font-size: 14px;
        line-height: 18px;
        padding: 4px 8px;
    }
    .section_eleven_info_block{
        padding: 20px;
        gap: 20px;
    }
}

/* ------------------------------------------------------------- */
/* -----------------------SIMULATOR BLOCK------------------------*/
/* ------------------------------------------------------------- */
@media (max-width: 1400px) {
    .info_block_with_simulator .text_block{
        margin-top: 0;
    }
}

@media (max-width: 1024px) {
    .info_block_with_simulator{
        width: calc(100% - 84px);
        gap: 40px;
        grid-template-columns: 300px 1fr;
    }
    .info_block_with_simulator .blue_custom_button{
        font-size: 16px;
        line-height: 18px;
        padding: 8px 0;
        width: 220px;
    }
    .info_block_with_simulator .blue_custom_button svg{
        height: 20px;
        width: 20px;
    }
}

@media (max-width: 700px) {
    .info_block_with_simulator{
        width: calc(100% - 40px);
        padding: 0;
        gap: 0;
        grid-template-columns: 30% 70%;
    }
    .info_block_with_simulator h2{
        margin: 0;
    }
    .info_block_with_simulator span{
        display: inline-block;
    }
    .info_block_with_simulator .blue_custom_button{
        margin: 0;
    }
}

@media (max-width: 520px) {
    .info_block_with_simulator .blue_custom_button{
        font-size: 12px;
        line-height: 14px;
        padding: 2px 0;
        width: 160px;
    }
    .info_block_with_simulator .blue_custom_button svg{
        display: none;
    }
}

/* ------------------------------------------------------------- */
/* ---------------------------CAROUSEL---------------------------*/
/* ------------------------------------------------------------- */

@media (max-width: 1550px) {
    .carousel {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 1100px) {
    .carousel-image.central {
        height: 600px; 
    }
    .carousel-image.left,
    .carousel-image.right {
        height: 450px; 
    }
    .carousel-image.far-left,
    .carousel-image.far-right {
        height: 300px; 
    }
}

@media (max-width: 450px) {
    .carousel-image.central {
        height: 400px; 
    }
    .carousel-image.left,
    .carousel-image.right {
        height: 300px; 
    }
    .carousel-image.far-left,
    .carousel-image.far-right {
        height: 200px; 
    }
    .carousel-button {
        height: 40px;
        width: 40px;
    }
    .carousel-button svg{
        width: 10px;
        height: 16px;
    }
}

/* ------------------------------------------------------------- */
/* -------------------------LISTS & ITEMS------------------------*/
/* ------------------------------------------------------------- */

@media (max-width: 1300px) {
    .card_item-first{
        padding: 15px;
        grid-template-rows: 30px 180px 1fr 70px;
        gap: 15px;
    }
    .card_item-first p {
        margin: 0;
    }
    .card_item-first img {
        height: 180px;
    }
    .card_item-first .white_custom_button{
        font-size: 18px;
        padding: 16px 24px;
    }
}

@media (max-width: 1260px) {
    .card_item-third{
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .card_item-first{
        padding: 20px;
        grid-template-rows: 30px 150px 1fr 50px;
        gap: 10px;
    }
    .card_item-first h5 {
        font-size: 18px;
        line-height: 20px;
    }
    .card_item-first p{
        font-size: 16px;
        line-height: 20px;
    }
    .card_item-first img {
        justify-self: center;
        height: 150px;
        width: auto;
    }
    .card_item-first .white_custom_button{
        font-size: 18px;
        padding: 10px 20px;
    }
}

@media (max-width: 950px) {
    .card_list-second{
        gap: 60px;
    }
}

@media (max-width: 900px) {
    .card_list-first{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .card_item-first{
        width: 375px;
        grid-template-rows: 30px 200px 1fr 70px;
    }
    .card_item-first img{
        height: 180px;
    }
    
    .card_list-third{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .card_item-third{
        gap: 15px;
        width: 100%;
    }
}

@media (max-width: 850px) {
    .card_list-second{
        gap: 80px;
        grid-template-columns: repeat(2, 1fr);
    }
    .card_item-second{
        gap: 10px;
    }
    .card_item-second h5{
        font-size: 20px;
        line-height: 24px;
    }
    .card_item-second p{
        font-size: 18px;
        line-height: 22px;
    }
}

@media (max-width: 520px) {
    .card_list-second{
        display: flex;
        flex-direction: column;
        justify-self: center;
        align-items: center;
        gap: 50px;
    }
    .card_item-second{
        width: 200px;
    }
}

@media (max-width: 500px) {
    .card_item-third{
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .card_item-first{
        width: 300px;
    }
}

@media (max-width: 400px) {
    .card_item-first{
        width: 240px;
        grid-template-rows: 30px 150px 1fr 70px;
    }
    .card_item-first img{
        height: 150px;
    }
    .card_item-first .white_custom_button{
        font-size: 16px;
        line-height: 18px;
        padding: 8px 16px;
    }
}

@media (max-width: 340px) {
    .card_item-first{
        width: 200px;
    }
}

/* ------------------------------------------------------------- */
/* --------------------------CUSTOM TEXT-------------------------*/
/* ------------------------------------------------------------- */

@media (max-width: 1100px) {
    .big_text{
        font-size: 76px;
    }
    .small_text{
        font-size: 16px;
    }
}

@media (max-width: 870px) {
    .big_text{
        font-size: 54px;
    }
    .small_text{
        font-size: 12px;
    }
}

@media (max-width: 700px) {
    .big_text{
        font-size: 38px;
    }
    .small_text{
        font-size: 10px;
    }
}

@media (max-width: 570px) {
    .big_text{
        line-height: 90px;
    }
}

@media (max-width: 520px) {

    .text_block{
        margin-top: 40px;
    }
}

/* ------------------------------------------------------------- */
/* ----------------------------FOOTER----------------------------*/
/* ------------------------------------------------------------- */

@media (max-width: 1200px) {
    footer{
        padding: 40px;
    }
    .footer_info_block{
        width: 100%;
        gap: 20px;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto;
        grid-template-areas: 
        "logo logo logo"
        "service company media";
    }
    .footer_logo{
        padding-bottom: 0;
    }
    #footer_logo_block{
        width: 100%;
        display: flex;
        align-items: center;
        gap: 40px;
        grid-area: logo;
    }
    #footer_services_block{
        justify-self: center;
        grid-area: service;
    }
    #footer_company_block{
        justify-self: center;
        grid-area: company;
    }
    #footer_media_block{
        justify-self: center;
        grid-area: media;
    }
}

@media (max-width: 700px) {
    footer h4{
        font-size: 20px;
    }
    footer p{
        font-size: 16px;
    }
    #footer_logo_block{
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 500px) {
    .footer_info_block{
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas: 
        "logo logo"
        "service company"
        "media media";
    }
}

@media (max-width: 340px) {
    footer{
        padding: 20px;
    }
}
