:root{
    --white-text:#f8fcff;
    --accent-text: #1d6fb6;
}


body{
    font-family: "Montserrat" , "Arial" , sans-serif;
    line-height: 20px;
    color: #25282B;
    background-color: var(--white-text);
}
.container{
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
}

.header__inner{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    min-height: 108px;
    align-content: center;
    align-items: center;
}
.header__logo{
    max-width: 54px;
}
.nav__list{
    display: flex;
    gap: 10px 30px;
}
.socials{
     display: flex;
    gap: 10px 30px;
}
.header__social{
    justify-self: end;
}
/* section hero */
.hero{
    padding: 120px 0;
    position: relative;
}
.hero__title{
    font-weight: 600;
    font-size: 52px;
    color: var(--white-text);
    margin-bottom: 30px;
    line-height: 1.5;
}
.hero__inner{
    display: flex;
    flex-direction: column;
    align-items: center;
   

}
.hero__list{
    font-size: 24px;
    
    margin-bottom: 40px;
}
.hero__list-item{
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--white-text);
    line-height: 1.5;
    cursor: pointer;
    transition: all .5s;
}
.hero__list-item path{
   transition: all .5s;
}
.hero__list-item:last-child{
    margin-bottom: 0;
}
.hero__list-item:hover{
    color: var(--accent-text);
}
.hero__list-item:hover path{
   fill: var(--accent-text);
   
}

.button{
    display: flex;
    justify-content: center;
    align-items: center;


    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--accent-text);

    height: 56px;
    width: 100%;
    max-width: 288px;
    background-color: #D0DCE7;
    border-radius: 100px;
    transition: all .5s;
}
.button:hover{
    background-color: #83ADD3;
    color: var(--white-text);
}

.hero__video{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  
    z-index: -1;
}
.hero__video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__video::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   background-color: #102e49cc;

}
/* main general */

.main__general{
   padding: 120px 0; 
}

.main__wrapper{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: start;
}
.main__saibar{
    position: sticky;
    top: 5vh;
    min-height: 60vh;
}
.sidebar{
    border: 2px solid #D0DCE7;
    padding: 30px;
    max-width: 282px;
    width: 100%;
    line-height: 20px;
    font-weight: 500;
    
}
.sidebar__item{
    margin-bottom: 20px;
}
.sidebar__item:last-child{
    margin-bottom: 0;
}
.gallary{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    gap: 24px;
    font-weight: 500;
    line-height: 20px;
    
}
.main__body{
    width: 100%;
    max-width: 792px;
}
.gallary__img{
    display: block;
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
}
.gallary__img img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center center;
}
.gallary__img--large-left{
    grid-column: 1/3;
    grid-row: span 2;
}
.gallary__img--large-right{
    grid-column: -1/-3;
    grid-row: span 2;
}
.gallary__hint{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0; 
    height: 53px;
    background-color:#1d6fb6b2;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: all .5s;
    opacity: 0;
    
}
.gallary__img:hover .gallary__hint{
    transform: translateY(0%);
    opacity: 1;
}
.gallary__img--large-left .gallary__hint,
.gallary__img--large-right .gallary__hint{
    height: 103px;
    font-size: 24px;
    line-height: 29px;

}
.main__gallary{margin-bottom: 120px;}


.products{
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}
.products__item-body{
    border: 1px solid #D0DCE7;
    border-top: none;
    padding: 30px 15px;

}
.products__item-button{
    margin: 0 auto;
}
.products__item-img{
    position: relative;
    padding-bottom: 58%;
}

.products__item-badge{
    position: absolute;
    left: 0;
    top: 12.6%;
    border-radius: 0px 100px 100px 0px;
    background-color: var(--white-text);
    padding: 18px 15px;
    min-width: 33.9%;
    text-align: center;
    font-weight: 500;
    line-height: 20px;
    color: var(--accent-text);

    animation:badge-action 2s infinite alternate;
    
}
@keyframes badge-action {
    0%{ 
        min-width: 33.9%;
    }
    66.666%{
         min-width: 33.9%;

    }
    100%{
        min-width: 37.3%;
    }

}
.products__item-img img{
        width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center center;
}
.footer{
    text-align: center;
    background-color: #788088;
    color: var(--white-text);
    line-height: 20px;
    padding: 30px 0;
}
.footer__inner{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}