:root{
    --red:#9c0e1e;
    --blue-opac:#a1c3cc23;
}

body{
    background-color: #eaeaea;
    overflow-x: hidden;
    width: 100%;
}
.navdiv{
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    animation: 0.5s;

}
header .navbar.navbar-scrolled{
    position: fixed;
    top: 0;
    margin: 0;
    width: 100%;
    border-radius: 0;
    padding-left: 10px;
    padding-right: 10px;
}
header .navbar .dropdown-menu[data-bs-popper] {
    top: 100%;
    left: -145px;
}
.navbar{
    width: 90%;
    margin-top: 10px;
    border-radius: 8px;
   
}
header .nav-link{
    font-weight: bold;
}
header .dropdown-toggle::after {
    display: none;
}

header{
    height: 100vh;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.header-slider.container{
    height:600px;
    padding:50px;
    background-color: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;
}
.header-slider #slide{
    width:max-content;
    margin-top:50px;
}
.header-slider .item{
    width:200px;
    height:300px;
    background-position: 50% 50%;
    display: inline-block;
    transition: 0.5s;
    background-size: cover;
    position: absolute;
    z-index: 1;
    top:50%;
    transform: translate(0,-50%);
    border-radius: 20px;
    box-shadow:  0 30px 50px #505050;
}
.header-slider .item:nth-child(1),
.header-slider .item:nth-child(2){
    left:0;
    top:0;
    transform: translate(0,0);
    border-radius: 0;
    width:100%;
    height:100%;
    box-shadow: none;
}
.header-slider .item:nth-child(3){
    left:50%;
}
.header-slider .item:nth-child(4){
    left:calc(50% + 220px);
}
.header-slider .item:nth-child(5){
    left:calc(50% + 440px);
}
.header-slider .item:nth-child(n+6){
    left:calc(50% + 660px);
    opacity: 0;
}
.header-slider .item .content{
    position: absolute;
    top:50%;
    left:100px;
    width:300px;
    text-align: left;
    padding:0;
    color:#eee;
    transform: translate(0,-50%);
    display: none;
    font-family: system-ui;
}
.header-slider .item:nth-child(2) .content{
    display: block;
    z-index: 11111;
}
.header-slider .item .name{
    font-size: 40px;
    font-weight: bold;
    opacity: 0;
    filter: drop-shadow(3px 3px 2px #000);
    animation:showcontent 1s ease-in-out 1 forwards
}
.header-slider .item .des{
    margin:20px 0;
    opacity: 0;
    animation:showcontent 1s ease-in-out 0.3s 1 forwards
}
.header-slider .item button{
    padding:10px 20px;
    border:none;
    opacity: 0;
    animation:showcontent 1s ease-in-out 0.6s 1 forwards
}
@keyframes showcontent{
    from{
        opacity: 0;
        transform: translate(0,100px);
        filter:blur(33px);
    }to{
        opacity: 1;
        transform: translate(0,0);
        filter:blur(0);
    }
}
.header-slider .buttons{
    position: absolute;
    bottom:30px;
    z-index: 2;
    text-align: center;
    width:100%;
}
.header-slider .buttons button{
    width:50px;
    height:50px;
    border-radius: 50%;
    border:0;
    transition: 0.5s;
}.header-slider .buttons button:hover{
    background-color: #bac383;
}

@media only screen and (max-width:500px) {
    .header-slider .item:nth-child(3){
        left: 85%;
    }
    .header-slider .item .content {
        left: 20px;
    }
}
/*....header..........................................end*/






/*scroll-animation*/
.inx-crd.scroll{
    transform: scale(0.5);
    transition: 0.5s;
    opacity: 0;
}
.inx-crd.scroll.scrolled{
    opacity: 1;
    transform: scale(1);
}













.section-1,.section-2,.section-3,.section-4{
padding-top: 50px;
padding-bottom: 50px;
}


/*..........section-1.............*/
.section-1 .asd6{
    justify-content: center;
    display: flex;
}

.section-1 .brand-higlt{
   text-align: center;
   margin-bottom: 30px;
   width: 240px;
   padding: 10px 0;
   border-radius: 8px;

}
.section-1 img{
    height: 60px;
}



@keyframes rotate-vert-center {
    0% {
        
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.brand-higlt img.rotate-animation {
   
    animation: rotate-vert-center 1.2s cubic-bezier(0.455, 0.030, 0.515, 0.955) ;
}

/*..........section-1.........................................end*/







/*..........section-2.............*/
.section-2 img{
    width: 100%;
}
.section-2 .col-md-6{
    padding: 0;
}
.section-2 .col-md-6:nth-child(1){
    border-top: 1px #0000004a solid;
    border-bottom: 1px #0000004a solid;
}
.section-2 .about-cnt{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}
.section-2 .about-cnt button{
    font-weight: 500;
    border: 0;
    padding: 8px;
    color: #9c0e1ea6;
    border: 2px solid #9c0e1e6e;
    background-color: transparent;
    border-radius: 5px;
}
.section-2 .about-cnt button:hover{
    background-color: var(--red);
    color: white;
}

.h2.scroll{
    opacity: 0;
    transform: translateX(-50px);
    transition: 0.5s;
}
.h2.scroll.scrolled{
    opacity: 1;
    transform: translateX(0);
}
.p.scroll{
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s;
}
.p.scroll.scrolled{
    opacity: 1;
    transform: translateY(0);
}
/*..........section-2.........................................end*/


/*..........section-3.............*/
.section-3{
    background-color: var(--blue-opac);
}
.section-3 .card{
    border: 0;
    background: transparent;
}
.section-3 .img-div{
    height: 172px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
   
}
.section-3 .img-div img{
    transition: 0.5s;
}
.section-3 .img-div:hover img{
    transform: scale(1.2);
}
.section-3 .pct-cnt{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
    padding-bottom: 50px;
}
.section-3  button{
    border: 0;
    padding: 8px;
    color: #9c0e1ea6;
    border: 2px solid #9c0e1e6e;
    background-color: transparent;
    border-radius: 5px;
    font-weight: 500;
}
.section-3 button:hover{
    background-color: var(--red);
    color: white;
}
.section-3 .product-cards{
    justify-content: center;
    display: flex;
}
.section-3 .card p{
    font-weight: bold;
}
@media screen and (max-width:500px) {
    .section-3 .product-row{
        flex-direction: column-reverse;
    }
    
}

/*..........section-3.........................................end*/


/*..........section-4.............*/
.section-4 .service-card{
    background-image: url("assets/img/about/fashionable-model-stylish-hat-red-coat-boots-posing-white-wall-studio.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 400px;
    height: 300px;
    overflow: hidden;
}
.section-4 .service-card .service-card-cnt{
    text-align: center;
    /*background-color: #9c0e1edb;*/
    background-color: #5c9fb0c0;
    color: white;
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}
.section-4 .to-cetr-cnt{
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-4 .to-cetr-cnt{
    margin-top: 20px;
}
.section-4 .p-l-50{
    padding: 0 50px;
}
@media only screen and (max-width:800px){
    .section-4 .service-card{
        width: 300px;
    }
}
@media only screen and (max-width:500px) {
    .section-4 .p-l-50{
        padding-left: 40px;
    }
    
}
/*..........section-4......................................end*/



/*..........footer.............*/
footer{
    background-color: #973d47db;
    color: white;
    margin-top: 50px;
}
footer a{
    text-decoration: none;
}
@media screen and (max-width:500px) {
    .footer-cnt{
        padding-left: 30px;
    }
    
}
/*..........footer.........................................end*/


















