*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: #000;
    --scrollbar-width: 0px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
}

a{
    text-decoration: none;
	display: inline-block;
    transition: .3s ease all;
}
button{
    border: none;
    outline: none;
    background: transparent;
}
a:hover{
    color: inherit;
}
ul li{
    list-style: none;
}
.wrapper{
    height: 100vh;
}

/* header start */
.header{
    height: 108px;
    display: flex;
    overflow-y: hidden;
    background: #FFF;
    padding: 0 58px 0 58px;
}

.header .header-nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-nav .header-menu{
    position: relative;
    width: 684px;
    transition: .3s ease all;
}
.header-menu .header-menu-link{
    position: absolute;
    left: 0;
    bottom: 40px;
    color: #000;
    font-size: 20px;
    text-decoration-line: underline;
    white-space: nowrap;
    transition: .3s ease all;
}

.header-menu .header-menu-designer{
    position: absolute;
    left: 0;
    bottom: -100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    transition: .3s ease all;
}

.header-nav .header-menu:hover.header-menu .header-menu-designer{
    bottom: 36px;
}
.header-nav .header-menu:hover.header-menu .header-menu-link{
    bottom: -100px;
}
.header-menu-designer .header-designer-text{
    color: #4F4F4F;
    font-size: 20px;
}
.header-menu-designer .header-designer-text a{
    color: #ED45A0;
    text-decoration: underline;
}   
.header-menu-designer .header-socicial{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-socicial .header-socicial-link{
    width: 35px;
    height: 35px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    border-radius: 100px;
}
.header-socicial .header-socicial-link:hover{
    box-shadow: 1.5px 3.71px 9px rgba(19, 25, 70, 0.25);
    background: #E43292;
}

.header-nav .header-nav-btns{
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-nav .header-nav-btn{
    border-radius: 80px;
    border: 1px solid #000;
    background: #FFF;
    color: #000;
    width: 234.47px;
    height: 36px;
    padding: 7px 81.76px 7px 81.96px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16.734px;
    letter-spacing: 0.9px;
}
.header-nav .header-nav-btn:hover{
    background: #E3E3E3;
}
.header-nav .header-nav-btn.active{
    background: #222A2B;
    color: #FFF;
}
.header .header-bars{
    display: none;
    cursor: pointer;
}

.header-nav-bars {
    @media (min-width: 989px) { 
        display: none;
    }
}

.header-mobile{
    position: fixed;
    top: 60px;
    right: -1000%;
    height: 100%;
    width: 640px;
    display: none;
    justify-content: center;
    padding-top: 50px;
    background-color: #FFF;
    transition: .8s ease-in-out;
}
.header-mobile-bg{
    display: none;
    transition: .5s ease-in-out;
}
.header-mobile-bg.active{
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000c3;
}
.header-mobile.active{
    right: 0;
}
.header-mobile .header-mob-btns{
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}
.header-mobile .header-mob-btn{
    font-size: 22px;
    font-weight: 600;
    color: #000;
}
.header-mob-action .header-mob-btn{
    position: relative;
    color: #979797;
}
.header-mob-action .header-mob-btn.active .header-btn-arrow{
    transform: rotate(-180deg);
    margin-top: 10px;
}
.header-mob-action .header-mob-btn .header-btn-arrow{
    position: absolute;
    left: -100px;
    top: -5px;
    width: 12px;
}
.header-mobile .header-mob-action{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header-mob-action .header-action-links{
    display: none;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}
.header-mob-action .header-action-links.show{
    display: flex;
}
.header-mob-action .header-mob-btn:focus + .header-mob-action .header-action-links{
    display: flex;
}
.header-mob-action .header-action-link{
    font-size: 18px;
    font-weight: 300;
    color: #000;
}

.header-action-link--image {
    width: 200px;
    height: 67px;

    @media (max-width: 989px) { 
        width: 37px;
        height: 27px;
    }
}
/* Header end */

/* Home start */
.home{
    display: none;
    background: #FFF;
    padding: 100px 0 50px;
    align-items: center;
    justify-content: center;
}
.home .home-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.home-content .home-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 60px;
    line-height: 1;
    color: #000;
    font-weight: 600;
}
.home-content .circle-img{
    transform: rotate(-90deg);
}
.home-content .circle-img svg{
    width: 76px;
    height: 60px;
}
.home-content .circle-img{
    min-width: 147px;
    height: 147px;
    position: relative;
}
.circle-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
	animation: textRotation 10s linear infinite;
}
.circle-img .circle-icon{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    border-radius: 100%;
}

@keyframes textRotation {
	to {
		transform: rotate(360deg);
	}
}
/* Home end */

/* Main start */
.main-sec{
    padding: 2px;
}
.main-content{
    height: 100%;
    display: grid;
    align-items: start;
    gap: 2px;
    grid-template-columns: 50% 50%;
}

.main-items-wrapper {
    height: calc(100vh - 110px);
    overflow: auto;

    @media (max-width: 989px) { 
        height: 0px;
    }
}

.main-content .main-items{
    gap: 2px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.main-content .main-items::-webkit-scrollbar {
    width: 0;
}
.main-content .main-items .main-item{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 13px;
    background: #FFFFFF;
    height: 190px;
    padding: 24px 19px 14px 35px;
    transition: .3s ease all;
}
.main-item .main-item-link{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.main-content .main-items .main-item:hover{
    background: #E3E3E3;
}
.main-item .main-item-brand li{
    color: #000000;
    font-size: 13px;
}
.main-item .main-item-info{
    display: flex;
    flex-direction: column;
    max-width: 603px;
    margin-left: 29px;
    margin-bottom: 9px;
}
.main-item .main-item-info .main-item-title{
    color: #000;
    font-size: 49px;
    font-weight: 400;
}
.main-item .main-item-info .main-item-text{
    color: #000;
    font-family: 'Inter', sans-serif;
    max-width: 526px;
    font-size: 15px;
    line-height: 22.4px;
}
.main-item .main__item-btn{
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 70px;
    background: #000;
    width: 29px;
    height: 29px;
    color: #FFF;
    text-align: center;
    font-size: 10px;
    border: none;
    cursor: pointer;
    margin-left: auto;
}
.main__item-btn .item-link-icon{
    transition: .3s ease all;
    margin-top: 4px;
}
.main-item .main__item-btn:hover{
    background-color: #FFF;
    color: #000;
    border: 1px solid #000;
}
.main-item .main__item-btn:hover.main__item-btn .item-link-icon svg path{
    fill: #000 !important;
}
.main-item .main__item-btn:hover.main__item-btn .item-link-icon{
    transform: rotate(-180deg);
    margin-top: -3px;
}


.main-content .main-imgs-wrap{
    padding: 50px 50px 40px 50px;
    display: flex;
    flex-direction: column;
    gap: 7.27px;    
    background: #FFF;
    border-radius: 13px;
    height: calc(100vh - 110px);
}
.main-imgs-wrap .main-imgs-items{
    height: 100%;
}
.main-imgs-wrap .main-img-item{
    width: 100%;
    height: 100%;
}
.main-imgs-wrap .main-img-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-content .main-imgs-wrap .copyright{
    color: #979797;
    text-align: right;
    font-size: 12px;
}
.main-imgs-wrap .main-img-item{
    display: none;
    flex-direction: column;
    gap: 17px;
    align-items: center;
    justify-content: center;
}
.main-imgs-wrap .main-img-item1{
    display: flex;
}
.main-imgs-wrap .main-img-item .img-item-title{
    font-size: 23px;
    color: #000;
    display: none;
}

.image {
    border-radius: 6px;
}
/* Main end */

/* Footer start */
.footer-continer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding-bottom: 10px;
    border-top: 1px solid #EEEEEE;
    background-color: #FFFFFF;
    padding: 0 10px;
}

.footer-continer p {
    text-align: center;
}

.footer-continer-item {
    margin-top: 10px;
}
/* Footer end */

/* @MEDIA START */
@media only screen and (max-width: 1530px) {
    .main-item .main-item-info .main-item-title{
        font-size: 32px;
    }
}
@media only screen and (max-width: 1180px) {
    body{
        background: #FFF;
    }
    .header{
        position: fixed;
        z-index: 5;
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        padding: 0 40px 0 70px;
    }
    .header-nav .header-menu,
    .header .header-nav{
        width: 100%;
    }
    .header-menu .header-menu-link{
        width: auto;
        bottom: 0px;
        position: relative;
    }
    .header-nav .header-menu:hover.header-menu .header-menu-link{
        bottom: 0;
    }
    .header-nav .header-menu:hover.header-menu .header-menu-designer{
        bottom: -100px;
    }
    
    .wrapper{
        overflow: auto;
    }
    .main-sec{
        padding: 0;
    }
    .main-content{
        grid-template-columns: 100%;
    }
    .main-content .main-imgs-wrap{
        border-radius: 0;
        padding: 0 0 50px 0;
        height: 100%;
    }
    .main-imgs-wrap .main-img-item{
        gap: 27px;
        padding-bottom: 27px;
        height: auto;
    }
    .home,
    .main-imgs-wrap .main-img-item,
    .main-imgs-wrap .main-img-item .img-item-title{
        display: flex;
    }
    .main-content .main-items,
    .main-imgs-wrap .main-img-item1,
    .main-imgs-wrap .main-img-item2,
    .main-imgs-wrap .main-img-item3,
    .main-imgs-wrap .main-img-item4,
    .main-imgs-wrap .main-img-item5{
        display: none;
    }
    .main-imgs-wrap .main-img-item img{
        height: 411px;
    }

    .main-content .main-imgs-wrap .copyright{
        text-align: center;
        height: 64px;
        background: #000;
        color: #FFF;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media only screen and (max-width: 991px){
    .header-nav .header-nav-btns{
        display: none;
    }
    .header .header-bars,
    .header-mobile-bg,
    .header-mobile{
        display: flex;
    }
    .header-nav .header-menu-link{
        text-decoration: none;
    }
}

@media only screen and (max-width: 750px){
    .header{
        padding-right: 30px;
        padding-left: 30px; 
    }
    .header-nav .header-menu-link{
        font-size: 18px;
    }
    .home-content .home-title{
        font-size: 30px;
    }
    .main-imgs-wrap .main-img-item img{
        height: 294px;
    }
    .main-imgs-wrap .main-img-item .img-item-title{
        font-size: 16px;
    }
    .home-content .circle-img svg{
        width: 100px;
        height: 90px;
    }
    .home .home-content {
        gap: 25px;
    }
}
@media only screen and (max-width: 576px){
    .header-mobile{
        width: 100%;
    }
    .circle-img img{
        display: none;
    }
}
/* @MEDIA END */
