html,body{
    margin-bottom: 20px;
}
header{
    height: 60px;
    border-bottom: 1px solid var(--darkViolet1);
    align-items: center;
}
.callBtn{
    background-size: 16px;
    background-image: url("/src/whitePhone.svg");
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 30px;
    transform: rotateY(180deg);
}
/* logo */
.divLogo{
    gap: 3px;
    position: relative;
}
.leftArrow,.rightArrow{
    background-image: url("/src/left.svg");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 30px;
}
.logoText{
    background: linear-gradient(to right ,#8a69e7  , rgb(55, 203, 230));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bolder;
}
.rightArrow{
    background-image: url("/src/right.svg");
}
/* slide */
.sliderSection{
    border-bottom: 1px solid var(--darkViolet1);
    padding-bottom: 50px;
    overflow: hidden;
}
.slide{
    display: none;
}

.slide img{
    width: 100%;
    animation: toBottom .6s ;
    aspect-ratio: 1.8/1;
    -o-object-fit: contain;
    object-fit: contain;
}
.slide3 img{
    padding: 20px 0;
}
.infoSlideDiv{
    width: 80%;
    margin-right: 10%;
    animation: toLeft .6s;
}
.infoSlideDiv .link{
    width: fit-content;
    align-self: flex-end;
}
/* dotContainer */
.dotContainer{
    margin-top: -25px;
}
.dotItem{
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--darkViolet1);
    cursor: pointer;
}
.activeDot{
    width: 12px;
    height: 12px;
    background-color: var(--lightViolet1);
}
/* projectSection */
.projectSection{
    margin-top: 40px;
    border-bottom: 1px solid var(--darkViolet1);
    padding-bottom: 40px;
}
.seeShopDiv{
    width: 90%;
    margin: 20px auto 0;
}
.imageDiv{
    position: relative;
}
.shopImage{
    border-radius: 7px;
}
.priceText{
    position: absolute;
    background: linear-gradient(to right , rgb(45, 132, 214,.9) ,rgba(124, 52, 218,.9)) ;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    border-radius: 0 0 7px 7px;
}
.seeShop{
    border-radius: 7px;
    background-color: var(--darkViolet1Op2);
    height: 50px;
    transition: background-color .6s;
}
.seeShop > span{
    background-image: url("/src/link.svg");
    background-size: 25px;
    background-position: right 5px center;
    background-repeat: no-repeat;
    padding-right: 40px;
}
.seeShop:hover{
    background-color: var(--darkViolet1);
}
.propertyDiv{
    gap: 10px;
}
.propertyDiv p{
    width: 70%;
    background-image: url("/src/quote.svg");
    background-size: 35px;
    background-position: right 10px top 8px;
    background-repeat: no-repeat;
    background-color: var(--darkViolet1Op2);
    border-radius: 7px;
    padding: 15px 55px 15px 15px;
}
.propertyDiv p:nth-child(even){
    align-self: flex-end;
}
/* infoSection */
.codingimg{
    width: 90%;
    display: none;
}
.contactLink{
    background-repeat: no-repeat;
    padding-right: 40px;
    width: fit-content;
}
.mailLink{
    background-image: url("/src/email.svg");
    background-size: 22px;
    background-position: right 1px center;
}
.callLink{
    background-image: url("/src/phone.svg");
    background-size: 19px;
    background-position: right 1px center;
}
.telLink{
    background-image: url("/src/telegram.svg");
    background-size: 24px;
    background-position: right center;
}
.instaLink{
    background-image: url("/src/instagram.svg");
    background-size: 20px;
    background-position: right 2px center;
}
@media screen and (min-width:769px){
     .sliderSection{
        padding-bottom: 90px;
     }
    .slide{
        grid-template-columns: 1fr 1.5fr;
        align-items: center;
    }
    .slide img{
        min-width: 400px;
        order: 2;
    }
    .projectDiv{
        grid-template-columns: .86fr 1fr;
        gap: 10%;
        margin-top: 50px;
    }
    .propertyDiv{
        order: 2;
    }
    .seeShopDiv,.shopImage{
        margin-top: 0;
    }
    .infoSection{
        grid-template-columns: 1fr 1fr;
        gap: 20%;
        margin-top: 60px;
    }
    .codingimg{
        display: block;
        width: 70%;
        margin: 0 auto;
        order: 2;
    }
}
