@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*,*::before,*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --accent: #0B3974;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
img{
    max-width: 100%;
    height: auto;
}
button{
    border: none;
    background: none;
    cursor: pointer;
}
html{
    font-family: 'Inter', sans-serif;
}
.button_accent{
    background-color: var(--accent);
    color: #fff;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 16px;
    border: 1px solid var(--accent);
}
.button_accent:hover{
    background-color: #fff;
    color: var(--accent);
}
.container{
    max-width: 1510px;
    margin: 0 auto;
    padding: 0 15px;
}
.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.main{
    flex-grow: 1;
}
.header__wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.header__logo{
    width: 300px;
}
.header__logo_link{
    display: block;
}
.header__logo_img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header__menu_list{
    display: flex;
    align-items: center;
    gap: 48px;
}
.header__menu_link{
    font-size: 18px;
    font-weight: 500;
    color: #000;
    transition: color 0.3s ease;
}
.header__menu_link:hover{
    color: var(--accent);
}
/* homepage */
.hero{
    padding-top: 20px;
}
.hero__wrapper{
    display: flex;
    justify-content: space-between;
    gap: 45px;
}
.hero_col{
    width: 525px;
    flex-shrink: 0;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 45px;
}
.hero_item{
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 20px;
    width: 100%;
    gap: 20px;
}
.hero_item1{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px;
    gap: 56px;
    border-radius: 20px;
    width: 100%;
}
.hero_item_top{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero_item1 span,
.hero_item_top span{
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.hero_item1 h3,
.hero_item_top h3{
    font-size: 48px;
    font-weight: 400;
    line-height: 1.0;
    text-transform: uppercase;
    color: #fff;
}
.hero_item1 p,
.hero_item_top p{
    font-family: 'Inter', sans-serif;
    opacity: 0.8;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
    max-width: 400px;
}
.hero_item1 button,
.hero_item button{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 15px 50px;
    border-radius: 10px;
    border: 1px solid #fff;
    transition: all 0.3s ease;
}
.hero_item1 button:hover,
.hero_item button:hover{
    background-color: #fff;
    color: var(--accent);
}
.hero_item_list{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 30px;
}
.hero_item_list_item{
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.hero_item_list_item img{
    width: 20px;
    height: 20px;
    display: block;
}
/* labels */
.labels{
    margin-top: 65px;
    margin-bottom: 65px;
}
.labels__wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 54px 49px;
    background-color: #F0F0F0;
    border-radius: 20px;
}
.labels__item{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
.labels__item_box{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.labels__item_box img{
    width: 64px;
    height: 64px;
    display: block;
}
.labels__item_box h3{
    font-size: 20px;
    font-weight: 500;
}
.labels__item_box p{
    font-size: 16px;
    font-weight: 300;
    color: #000;
}
.deals{
    margin-bottom: 65px;
}
.deals__wrapper{
    display: grid;
    grid-template-columns: 1fr 410px;
    gap: 26px;
}
.deals_r{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}
.deals_r_item{
    padding: 15px;
    display: flex;
    gap: 15px;
    border: 1px solid #BCBCBC;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.deals_r_item:hover{
    border-color: var(--accent);
}
.deals_l{
    display: flex;
    flex-direction: column;
    gap:40px;
    padding:40px 42px;
    border-radius: 20px;
    border: 1px solid #BCBCBC;
}
.deals_l_box{
    display: flex;
    gap: 40px;
    border-top: 1px solid #BCBCBC;
    padding-top: 40px;
}
.deals_l_box img{
    width: 440px;
    height: 450px;
    object-fit: cover;
}
.deals_r_item_box{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.deals_r_item_box span{
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 300;
}
.deals_r_item_box h3{
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}
.deals_r_item_box p{
    font-size: 15px;
    color: #939393;
    font-weight: 300;
}
.deals_r_item_price{
    color: #B10000;
    font-size: 25px!important;
    font-weight: 600!important;
}
.deals_l_btns{
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top:30px;
}
.deals_l_btns button{
    font-size: 18px;
    font-weight: 500;
    padding: 16px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #001B3F;
    transition: all 0.3s ease;
}
.deals_l_btns button:hover{
    transform: translateY(5px);
}
.deals_l_btns button img{
    width: 20px;
    height: 20px;
    display: block;
}
.deals_l_btns button.request{
    background-color: #001B3F;
    color: #fff;
}
.deals_l_btns button.download{
    background-color: #fff;
    color: #001B3F;
}
.deals_l_price{
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.deals_l_price_percent{
    color:#939393;
    font-size: 19px;
    font-style: italic;
    font-weight: 300;
}
.deals_l_price_sale{
    font-size: 38px;
    font-weight: 700;
    color: #B10000;
}
.deals_l_title{
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    padding-top: 10px;
    padding-bottom: 15px;
}
.deals_l_qty_row{
    display: flex;
    align-items: center;
    gap: 20px;
}
.deals_l_qty{
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #C9C9C9;
    padding: 20px 30px;
    border-radius: 20px;
}
.deals_l_box_text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.deals_l_qty_row_label{
    font-size: 16px;
    min-width: 70px;
}
.deals_l_qty_row_value{
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}
.deals_l_timer{
    display: flex;
    gap: 15px;
}
.deals_l_timer_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.deals_l_timer_val{
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}
.deals_l_timer_val{
    width: 60px;
    height: 60px;
    font-size: 32px;
    font-weight: 700;
    background: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.deals_l_timer_label{
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}
.deals_title{
    font-size: 26px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
}
