/* 005AC7 - 1981FF */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body{
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    color: #2a2c33;
}
a{
    text-decoration: none;
}
.container{
    width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}
.blue_font{
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
    background-image: linear-gradient(0deg, rgba(0, 90, 199, 1) 0%, rgba(25, 129, 255, 1) 100%);
}





header{
    box-shadow: 0 4px 14px rgba(4, 61, 106, .05);
}
.header_top{
    background: #005ac7;
    background: linear-gradient(0deg, rgba(0, 90, 199, 1) 0%, rgba(25, 129, 255, 1) 100%);
    color: #fff;
    height: 40px;
    display: flex;
    align-items: center;
}
.header_top_wrapper{
    display: flex;
    align-items: center;
    gap: 10px;
}
.header_top_wrapper span{
    font-weight: 700;
}
.header_top_wrapper img{
    width: 20px;
}
.header_main{
    border-bottom: 1px solid #ebeef0;
}
.header_main_wrapper{
    height: 80px;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}
.header_main_logo{
    display: flex;
    align-items: center;
    gap: 10px;
}
.header_main_logo img{
    width: 50px;
}
.header_main_logo_wrapper{
    display: flex;
    flex-direction: column;
}
.header_main_logo_title{
    font-weight: 800;
    text-transform: uppercase;
    font-size: 24px;
    font-family: "Unbounded", sans-serif;
}
.header_main_logo_descr{
    font-size: 12px;
    color: #828282;
}
.header_main_navigation_wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.header_main_menu nav ul{
    list-style-type: none;
    display: flex;
    gap: 60px;
}
.header_main_menu nav ul li a{
    color: #2a2c33;
}
.header_main_btn{
    display: flex;
    gap: 20px;
}
.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    height: 40px;
    padding: 0 25px;
    border-radius: 20px;
    gap: 10px;
    width: max-content;
}
.btn img{
    width: 18px;
}
.btn_blue{
    background: #005ac7;
    background: linear-gradient(0deg, rgba(0, 90, 199, 1) 0%, rgba(25, 129, 255, 1) 100%);
    color: #fff;
}
.btn_white{
    border: 1px solid #0063df;
    color: #0063df;
    background-color: #fff;
}
.header_bottom_wrapper{
    height: 46px;
    display: flex;
    align-items: center;
}
.header_bottom_nav{
    width: 100%;
}
.header_bottom_nav nav ul{
    list-style-type: none;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.header_bottom_nav nav ul li a{
    color: #2a2c33;
}

/* HERO */
section.hero{
    margin-top: 20px;
}
.hero_wrapper{
    background: #005ac7;
    background: linear-gradient(0deg, rgba(0, 90, 199, 1) 0%, rgba(25, 129, 255, 1) 100%);
    padding: 40px;
    color: #fff;
    border-radius: 20px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}
img.gp{
    position: absolute;
    width: 600px;
    right: -40px;
}
.hero_title h2{
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 50px;
    text-transform: uppercase;
}
.hero_price_wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.hero_price_item_title{
    text-transform: uppercase;
}
.hero_price_item_count{
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: baseline;
    gap: 5px;
}



/* FEATURES */
section.features{
    margin-top: 30px;
}
.features_wrapper{
    display: flex;
    align-items: center;
    gap: 40px;
}
.features_item{
    flex: 1;
    display: flex;
    gap: 20px;
}
.features_item_wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.features_item_title{
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    font-family: "Unbounded", sans-serif;
}
.features_item_descr{
    font-size: 12px;
    color: #828282;
}
.features_item_img{
    display: flex;
    align-items: center;
    justify-content: center;
}
.features_item_img img{
    width: 80px;
}






/* PRODUCTS */
section.products{
    margin-top: 60px;
}
.products_wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ✅ 3 в ряд */
    flex-wrap: wrap; 
    gap: 20px;
    margin-top: 20px;
}
.products_item{
    /* background-color: #ebeef0; */
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 20%);
}
.product_item_wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px 20px 20px;
}
.products_item_img{
    background: #005ac7;
    background: linear-gradient(0deg, rgba(0, 90, 199, 1) 0%, rgba(25, 129, 255, 1) 100%);
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    padding: 20px;
    overflow: hidden;
}
.products_item_img img{
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}
.products_item_title{
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 24px;
    font-family: "Unbounded", sans-serif;
}
.products_item_table{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.products_item_table_name{
    flex-shrink: 0;
    color: #879098;
}
.products_item_table_separator{
    width: 100%;
    border-bottom: 1px dashed #828282;
    opacity: .5;
}
.products_item_table_count{
    flex-shrink: 0;
}
.products_item_price{
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 18px;
    font-family: "Unbounded", sans-serif;
}






/* STEPS */
section.steps{
    margin-top: 60px;
}
.steps_wrapper{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.steps_item{
    display: flex;
    gap: 20px;
    align-items: center;
}
.steps_item_number{
    font-size: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* line-height: 1; */
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
    min-width: 80px;
    /* opacity: .5; */
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-style: normal;
    background-image: linear-gradient(0deg, rgba(0, 90, 199, 1) 0%, rgba(25, 129, 255, 1) 100%);
}

.steps_item_wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.steps_item_title{
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    font-family: "Unbounded", sans-serif;
}
.steps_item_descr{
    font-size: 12px;
    color: #828282;
}








section.about{
    margin-top: 60px;
}
.about_wrapper{
    background: #005ac7;
    background: linear-gradient(0deg, rgba(0, 90, 199, 1) 0%, rgba(25, 129, 255, 1) 100%);
    background-image: url("../img/dsa.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px;
    border-radius: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}
.about_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about_header_item{
    display: flex;
    align-items: center;
    gap: 10px;
}
.about_header_item_img img{
    width: 34px;
}
.about_header_title{
    font-weight: 800;
    text-transform: uppercase;
    font-size: 34px;
    font-family: "Unbounded", sans-serif;
}
.about_header_items{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}
.about_header_item_descr{
    width: 110px;
}
.about_bottom{
    width: 50%;
}
.about_btn{
    margin-top: 40px;
}






section.contact{
    margin-top: 60px;
}
.section_title{
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 34px;
    text-transform: uppercase;
}
.contact_wrapper{
    display: flex;
    gap: 40px;
    margin-top: 30px;
}
.contact_info{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact_info_login{
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 32px;
    text-transform: uppercase;
}
.contact_info_wrapper{
    display: flex;
    align-items: center;
    gap: 60px;
}
.contact_info_worktime{
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact_info_worktime_img{
    display: flex;
    align-items: center;
}
.contact_info_worktime_img img{
    width: 40px;
}
.contact_link{
    flex: 1;
    background: #005ac7;
    background: linear-gradient(0deg, rgba(0, 90, 199, 1) 0%, rgba(25, 129, 255, 1) 100%);
    border-radius: 20px;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 20px;
}
.contact_link a{
    color: #fff;
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dashed #fff;
    width: max-content;
}
.contact_link a img{
    width: 20px;
}














footer{
    margin-top: 40px;
    height: 40px;
    background: #005ac7;
    background: linear-gradient(0deg, rgba(0, 90, 199, 1) 0%, rgba(25, 129, 255, 1) 100%);
    display: flex;
    align-items: center;
}
footer a{
    color: #fff;
    font-size: 12px;
}


.btn_mobile{
    display: none;
}
.m_w{
    display: none;
}
@media (max-width: 1300px) {
    .container {
        width: 100%;
    }
}
@media (max-width: 1250px) {
    img.gp{
        right: -100px;
    }
}
@media (max-width: 1240px) {
    .features_item {
        gap: 10px;
    }
    .features_wrapper {
        gap: 20px;
    }
}
@media (max-width: 1200px) {
    img.gp {
        width: 570px;
    }
}
@media (max-width: 1150px) {
    img.gp {
        display: none;
    }
    .features_wrapper{
        flex-direction: column;
        align-items: flex-start;
    }
    .features_item{
        padding: 20px;
        box-shadow: 0px 0px 5px rgb(0 0 0 / 20%);
        border-radius: 20px;
        width: 100%;
    }
    .steps_wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
    .steps_item{
        padding: 20px;
        box-shadow: 0px 0px 5px rgb(0 0 0 / 20%);
        border-radius: 20px;
        width: 100%;
    }
}
@media (max-width: 1100px) {
    .header_main_menu{
        display: none;
    }
    .products_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1000px) {
    .contact_wrapper {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .products_wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .header_bottom_wrapper{
        display: none;
    }
    .m_w{
        display: block;
    }
    .products_item_img {
        height: auto;
    }
}
@media (max-width: 690px) {
    .about_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .about_bottom {
        width: 100%;
    }
}
@media (max-width: 530px) {
    .header_main_btn{
        display: none;
    }
    .btn_mobile{
        display: block;
    }
}
@media (max-width: 480px) {
    .hero_title h2 {
        font-size: 40px;
    }
    .about_header_items {
        gap: 20px;
}
}

@media (max-width: 430px) {
    .contact_info_wrapper {
        gap: 20px;
    }

}
@media (max-width: 385px) {
    .contact_info_wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}