*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


/*------------------------start nav menu bar ------------------------------------------*/

/* ------start----nav bar background ------------*/
nav {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    font-family: 'Montserrat', sans-serif;
    padding: 0 5%;
    height: 80px;
    background-color: #08251e;
}
/* --------end----nav bar background ------------*/

/* -------------- start nav bar logo ------------*/
 nav .logo {
     position: relative;
     display: flex;
     float: left;
     align-items: center;
 }

 nav .logo img {
     width: 300px;
     height: 30px;
     margin: 10px;
     border-radius: 5px;
 }


@media screen and (max-width: 414px) {
       nav .logo img {
     width: 160px;
     height: 50px;
    
     
 }
}

@media screen and (max-width: 412px) {
       nav .logo img {
     width: 160px;
     height: 50px;
    
     
 }
}

@media screen and (max-width: 393px) {
       nav .logo img {
     width: 150px;
     height: 50px;
    
     
 }
}

@media screen and (max-width: 390px) {
       nav .logo img {
     width: 150px;
     height: 50px;
    
     
 }
}

@media screen and (max-width: 375px) {
       nav .logo img {
     width: 150px;
     height: 50px;
    
     
 }
}

@media screen and (max-width: 360px) {
       nav .logo img {
     width: 150px;
     height: 50px;
    
     
 }
}

@media screen and (max-width: 280px) {
       nav .logo img {
     width: 150px;
     height: 50px;
    
     
 }
}



 /* -------------- end nav bar logo ------------*/


/* -------------- start nav bar inside position ------------*/
nav .links {
    float: right;
    padding: 0;
    margin: 0;
    width: 70%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav .links li {
    list-style: none;
}
/* -------------- end nav bar inside position ------------*/

 /* -------------- start nav bar a tag decoration ------------*/

.links a {
    position: relative;
    width: 100%;
    height: 40px;
    background-color: #000;
    display: flex;
    align-items: center;
    color: white;
    flex-direction: column;
    justify-content: center;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    gap: 12px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
}

.links a::before {
    align-items: center;
    text-align: center;
    content: '';
    position: absolute;
    margin: auto;
    width: 100%;
    height: 49px;
    border-radius: 10px;
    padding-right: 4px;
    padding-left: 4px;
    background: linear-gradient(-45deg, #ffd000 0%, #80ff40 100%);
    z-index: -10;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.links a::after {
    content: "";
    z-index: -1;
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #acff40 0%, #00ff26 100%);
    transform: translate3d(0, 0, 0) scale(0.95);
    filter: blur(20px);
}

.links a:hover::after {
    filter: blur(30px);
}

.links a:hover::before {
    transform: rotate(-180deg);
}

.links a:active::before {
    scale: 0.7;
}
/* -------------- end nav bar a tag decoration ------------*/

/* -------------- start nav bar toggle menu  -------------*/

#nav-toggle {
    position: absolute;
    top: -100px;
}

nav .icon-burger {
    display: none;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

nav .icon-burger .line {
    width: 30px;
    height: 5px;
    background-color: #fff;
    margin: 5px;
    border-radius: 3px;
    transition: all .3s ease-in-out;
}
/* -------------- end nav bar toggle menu  ------------*/

/* -------------- start nav bar responsive menu  ------------*/
@media screen and (max-width: 1150px) {
    nav .logo {
        float: none;
        width: auto;
        justify-content: center;
    }

    nav .links {
        float: none;
        position: fixed;
        z-index: 9;
        left: 0;
        right: 0;
        top: 81px;
        bottom: 100%;
        width: 210px;
        height: auto;
        flex-direction: column;
        justify-content: space-evenly;
        background-color: rgba(6, 6, 6, 0.863);
        overflow: hidden;
        box-sizing: border-box;
        transition: all .5s ease-in-out;
    }
    /* -------------- end nav bar responsive menu  ------------*/

    /* -------------- start nav bar responsive menu or x icon ------------*/    
    nav .links a {
        font-size: 20px;
    }

    nav :checked~.links {
        bottom: 0;
    }

    nav .icon-burger {
        display: block;
    }

    nav :checked~.icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }

    nav :checked~.icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }

    nav :checked~.icon-burger .line:nth-child(2) {
        opacity: 0;
    }

}

/* -------------- end nav bar responsive menu or x icon ------------*/

/*-------------------------------end nav menu bar ------------------------------------------*/




/* -------------- start background home page ------------*/


.container {
    position: relative;
    margin-top: 80px;
}

.container img {
    display: block;
    width: 100%;
    height: auto;
}


/*----------------start fixed scroll button----------*/
.scroll {
  position: fixed;
    z-index: 7;
    right: 20px;
    top: 630px;
}



@media screen and (max-width: 1280px) {
      .scroll {
        position: fixed;
            top: 700px;
      }
}

@media screen and (max-width: 1024px) {
      .scroll {
        position: fixed;
            top: 1266px;
      }
}

@media screen and (max-width: 1024px) {
      .scroll {
        position: fixed;
            top: 520px;
      }
}

@media screen and (max-width: 914px) {
      .scroll {
        position: fixed;
            top: 1280px;
      }
}

@media screen and (max-width: 820px) {
      .scroll {
        position: fixed;
            top: 1090px;
      }
}

@media screen and (max-width: 768px) {
      .scroll {
        position: fixed;
            top: 900px;
      }
}

@media screen and (max-width: 540px) {
      .scroll {
        position: fixed;
            top: 640px;
      }
}

@media screen and (max-width: 414px) {
      .scroll {
        position: fixed;
            top: 800px;
      }
}

@media screen and (max-width: 414px) {
      .scroll {
        position: fixed;
            top: 796px;
      }
}

@media screen and (max-width: 412px) {
      .scroll {
        position: fixed;
            top: 830px;
      }
}

@media screen and (max-width: 412px) {
      .scroll {
        position: fixed;
            top: 792px;
      }
}

@media screen and (max-width: 411px) {
      .scroll {
        position: fixed;
            top: 723px;
      }
}

@media screen and (max-width: 393px) {
      .scroll {
        position: fixed;
            top: 750px;
      }
}

@media screen and (max-width: 390px) {
      .scroll {
        position: fixed;
            top: 760px;
      }
}

@media screen and (max-width: 375px) {
      .scroll {
        position: fixed;
            top: 567px;
      }
}

@media screen and (max-width: 375px) {
      .scroll {
        position: fixed;
            top: 712px;
      }
}

@media screen and (max-width: 375px) {
      .scroll {
        position: fixed;
            top: 567px;
      }
}

@media screen and (max-width: 360px) {
      .scroll {
        position: fixed;
            top: 640px;
      }
}

@media screen and (max-width: 360px) {
      .scroll {
        position: fixed;
            top: 650px;
      }
}

@media screen and (max-width: 360px) {
      .scroll {
        position: fixed;
            top: 540px;
      }
}   

@media screen and (max-width: 320px) {
      .scroll {
        position: fixed;
            top: 468px;
      }
}

@media screen and (max-width: 280px) {
      .scroll {
        position: fixed;
            top: 570px;
      }
}
/*----------------end fixed scroll button----------*/

/* -------------- end background home page ------------*/





/*----------------start about section----------------------------------*/

.aboutus {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.aboutus h1 {
    margin-top: 100px;
    font-size: 40px;
    font-weight: bold;
}

.aboutus h2 {
    margin-top: 10px;
    font-family: arial;
}

.aboutus h3 {
    margin-top: 10px;
    font-size: 30px;
    font-family: Helvetica;
}

.aboutus h4 {
    margin-top: 10px;
    font-size: 20px;
}

.aboutus h5 {
    margin-top: 10px;
    font-size: 20px;
}



@media screen and (max-width: 912px) {
    .aboutus h1 {
        font-size: 30px;
    }

    .aboutus h2 {
        font-size: 20px;
    }

    .aboutus h3 {
        font-size: 20px;
}
}

@media screen and (max-width: 768px) {
    .aboutus h1 {
        font-size: 25px;
    }

    .aboutus h2 {
        font-size: 20px;
    }

    .aboutus h3 {
        font-size: 20px;
}
}

@media screen and (max-width: 412px) {
    .aboutus h1 {
        font-size: 20px;
    }

    .aboutus h2 {
        font-size: 15px;
    }

    .aboutus h3 {
        font-size: 15px;
}

    .aboutus h4 {
        font-size: 12px;
}


    .aboutus h5 {
        font-size: 10px;
}
}

@media screen and (max-width: 390px) {
    .aboutus h1 {
        font-size: 15px;
    }

    .aboutus h2 {
        font-size: 12px;
    }

    .aboutus h3 {
        font-size: 12px;
}
    .aboutus h4 {
        font-size: 12px;
}


    .aboutus h5 {
        font-size: 10px;
}
}


@media screen and (max-width: 300px) {
    .aboutus h1 {
        font-size: 10px;
    }

    .aboutus h2 {
        font-size: 10px;
    }

    .aboutus h3 {
        font-size: 10px;
}
   .aboutus h4 {
       font-size: 10px;
}

    .aboutus h5 {
        font-size: 10px;
}
}


/*-------------start owner or kry people #00022f --color panel---*/
.owner {
    position: relative;
        display: inline-block;
        width: 100%;
        text-align: center;
}

.owner h1 {
    display: inline-block;
    position: relative;
    margin-top: 200px;
    font-size: 50px;
    font-family: helvetica;
    text-align: center;
    width: max-content;
    align-items: center;
    font-style: italic;
    font-weight: 300;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
   padding: 10px;
}

@media screen and (max-width: 912px) {
    .owner h1 {
        font-size: 25px;
    }

}

@media screen and (max-width: 768px) {
    .owner h1 {
        font-size: 15px;
    }

}

@media screen and (max-width: 540px) {
    .owner h1 {
        font-size: 15px;
    }

}

@media screen and (max-width: 414px) {
    .owner h1 {
        font-size: 12px;
    }

}

@media screen and (max-width: 412px) {
    .owner h1 {
        font-size: 12px;
    }

}

@media screen and (max-width: 393px) {
    .owner h1 {
        font-size: 10px;
    }

}
@media screen and (max-width: 390px) {
    .owner h1 {
        font-size: 10px;
    }

}

@media screen and (max-width: 360px) {
    .owner h1 {
        font-size: 10px;
    }

}

@media screen and (max-width: 360px) {
    .owner h1 {
        font-size: 10px;
    }

}
@media screen and (max-width: 280px) {
    .owner h1 {
        font-size: 10px;
    }

}
/*-------------end owner or kry people #00022f --color panel---*/

/*------------------------start owner column card -------------------*/

.owner-card {
    position: relative;
    display: flex;
    width: 100%;
    height: 600px;
    background-color: rgb(143, 255, 173);
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    overflow: hidden;
}

.card {
    position: relative;
    background: transparent;
    width: 300px;
    height: 300px;
    border: none;
    margin: 15px;
}

.card:hover {
    width: 300px;
    margin: 15px;
}

.card .container-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #e7e7e7;
    width: 240px;
    height: 240px;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 3px 1px #1818183d, 2px 2px 3px #18181865, inset 2px 2px 2px #ffffff;
    transition: all .3s ease-in-out, opacity .3s;
    transition-delay: .6s, 0s;
}

.card:hover .container-image {
    opacity: 0;
    border-radius: 8px;
    transition-delay: 0s, .6s;
}

.card .container-image .image-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 195px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 2px #1818188a);
    transition: all .3s ease-in-out;
    transition-delay: .4s;
    border-radius: 100px;
}

.card:hover .container-image .image-circle {
    opacity: 0;
    transition-delay: 0s;
}

.card .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #e7e7e7;
    padding: 20px;
    width: 240px;
    height: 240px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 3px 1px #1818183d, 2px 2px 3px #18181865, inset 2px 2px 2px #ffffff;
    visibility: hidden;
    transition: .3s ease-in-out;
    transition-delay: 0s;
    z-index: 1;
}

.card:hover .content {
    width: 350px;
    height: 240px;
    visibility: visible;
    transition-delay: .5s;
}

.card .content .detail {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .3s ease-in-out;
    transition-delay: 0s;
}

.card:hover .content .detail {
    color: #181818;
    opacity: 100%;
    transition: 1s;
    transition-delay: .3s;
}

.card .content .detail span {
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 400;
}

.card .content .detail button {
    background: #086445;
    margin-top: auto;
    width: 100px;
    height: 35px;
    color: #ffffff;
    font-size: 10px;
    border: none;
    border-radius: 8px;
    transition: .3s ease-in-out;
}

.card .content .detail button:hover {
    background: #de0567;
}

.card .content .product-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.card .content .product-image .box-image {
    display: flex;
    position: absolute;
    top: 0;
    left: -25%;
    width: 100%;
    height: 115%;
    opacity: 0;
    transform: scale(.5);
    transition: all .5s ease-in-out;
    transition-delay: 0s;
}

.card:hover .content .product-image .box-image {
    top: -25%;
    left: 0;
    opacity: 100%;
    transform: scale(1);
    transition-delay: .3s;
}

.card .content .product-image .box-image .img-product {
    margin: auto;
    width: 7rem;
    height: auto;
}

.fil-shoes1,
.fil-shoes2 {
    fill: #333333
}


@media screen and (max-width: 1100px) {
    .owner-card {
        flex-direction: column;
        height: 100%;
        gap: 15px;
    }
    
}

@media screen and (max-width: 1300px) {

    .card:hover .content {
        width: 300px;
    }
}

@media screen and (max-width: 1200px) {

    .card:hover .content {
        width: 250px;
    }
}

@media screen and (max-width: 1100px) {
    
    .card:hover .content {
        width: 350px;
    }
}
/*------------------------end owner column card -------------------*/

/*-------------------end about section----------------------------------*/







/*------------------------------------start what we do ---------------------------*/

/*--------------------start what we do hade---------------*/
.what-we-do {
    position: relative;
        display: inline-block;
        width: 100%;
        text-align: center;
}

.what-we-do h1 {
     display: inline-block;
    position: relative;
    margin-top: 200px;
    font-size: 50px;
    font-family: helvetica;
    text-align: center;
    width: max-content;
    align-items: center;
    font-style: italic;
    font-weight: 300;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
}

@media screen and (max-width: 912px) {
    .what-we-do h1 {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .what-we-do h1 {
        font-size: 18px;
    }
}

@media screen and (max-width: 540px) {
    .what-we-do h1 {
        font-size: 15px;
    }
}

@media screen and (max-width: 414px) {
    .what-we-do h1 {
        font-size: 10px;
    }
}

@media screen and (max-width: 412px) {
    .what-we-do h1 {
        font-size: 10px;
    }
}

@media screen and (max-width: 393px) {
    .what-we-do h1 {
        font-size: 10px;
    }
}

@media screen and (max-width: 390px) {
    .what-we-do h1 {
        font-size: 10px;
    }
}

@media screen and (max-width: 375px) {
    .what-we-do h1 {
        font-size: 10px;
    }
}

@media screen and (max-width: 360px) {
    .what-we-do h1 {
        font-size: 10px;
    }
}
@media screen and (max-width: 280px) {
    .what-we-do h1 {
        font-size: 10px;
    }
}

/*--------------------end what we do hade---------------*/

/*--------------------start what we do slider---------------*/

.back {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #141d34;
        margin-top: 30px;
    }


.img-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    width: 800px;
    height: 494px;
    background: #fdfdfd;
    border-radius: 10px;
}

.img-slider .slide {
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}

.img-slider .slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 2s;
    transition-property: clip-path;
}

.img-slider .slide img {
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.img-slider .slide .info {
    position: absolute;
    display: flex;
    bottom: 10px;
    right: 5px;
}

.img-slider .slide .info p {
    color: #f85605;
    background: rgba(0, 0, 0, 0.1);
    font-size: 20px;
    width: 28px;
    padding: 5px;
    border-radius: 4px;
}

.img-slider .navigation {
    z-index: 2;
    position: absolute;
    display: flex;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.img-slider .navigation .btn {
    background:gold;
    width: 22px;
    height: 22px;
    margin: 10px;
    line-height: 22px;
    border-radius: 50%;
    cursor: pointer;
}

.img-slider .navigation .btn.active {
    background: #f9038efe;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 850px) {
    .img-slider {
        width: 600px;
        height: 370px;
    }

    .img-slider .navigation .btn {
        width: 15px;
        height: 15px;
        font-size: 12px;
        line-height: 15px;
        margin: 8px;
    }

     .img-slider .slide .info p{
        width: 25px;
        font-size: 18px;
        padding: 3px;
    }
}


@media (max-width: 650px) {
    .img-slider {
        width: 400px;
        height: 245px;
    }

    .img-slider .navigation .btn {
        width: 12px;
        height: 12px;
        font-size: 8px;
        line-height: 12px;
        margin: 6px;
    }

    .img-slider .slide .info p{
        width: 15px;
        font-size: 10px;
        padding: 3px;
    }
}

@media (max-width: 450px) {
    .img-slider {
        width: 320px;
        height: 195px;
    }

}

@media (max-width: 400px) {
    .img-slider {
        width: 300px;
        height: 175px;
    }

}

@media (max-width: 350px) {
    .img-slider {
        width: 280px;
        height: 160px;
    }

}

@media (max-width: 280px) {
    .img-slider {
        width: 250px;
        height: 150px;
    }

}
/*--------------------end what we do slider---------------*/

/*------------------------------------end what we do ---------------------------*/










/*------------------------------------ start project ----------------------------------*/


/*--------------------start project hade---------------*/
.our-project {
    position: relative;
        display: inline-block;
        width: 100%;
        text-align: center;
}

.our-project h1 {
     display: inline-block;
    position: relative;
    margin-top: 200px;
    font-size: 50px;
    font-family: helvetica;
    text-align: center;
    width: max-content;
    align-items: center;
    font-style: italic;
    font-weight: 300;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
}

@media screen and (max-width: 912px) {
    .our-project h1 {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .our-project h1 {
        font-size: 18px;
    }
}

@media screen and (max-width: 540px) {
    .our-project h1 {
        font-size: 15px;
    }
}

@media screen and (max-width: 414px) {
    .our-project h1 {
        font-size: 14px;
    }
}

@media screen and (max-width: 412px) {
    .our-project h1 {
        font-size: 14px;
    }
}

@media screen and (max-width: 393px) {
    .our-project h1 {
        font-size: 12px;
    }
}

@media screen and (max-width: 390px) {
    .our-project h1 {
        font-size: 12px;
    }
}

@media screen and (max-width: 375px) {
    .our-project h1 {
        font-size: 12px;
    }
}

@media screen and (max-width: 360px) {
    .our-project h1 {
        font-size: 12px;
    }
}

@media screen and (max-width: 280px) {
    .our-project h1 {
        font-size: 10px;
    }
}
/*--------------------end project hade---------------*/

/*------------------------start owner column card -------------------*/

.project-card {
    position: relative;
    display: flex;
    width: 100%;
    height: 450px;
    background-color: rgb(255, 255, 255);
    margin-top: 20px;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    overflow: hidden;
}

.book {
    position: relative;
    border-radius: 10px;
    width: 300px;
    height: 350px;
    margin: 15px;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 1px 1px 12px #000;
    box-shadow: 1px 1px 12px #000;
    -webkit-transform: preserve-3d;
    -ms-transform: preserve-3d;
    transform: preserve-3d;
    -webkit-perspective: 2000px;
    perspective: 2000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
}

.cover {
    top: 0;
    position: absolute;
    background-color: rgb(255, 34, 0);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
    -webkit-box-shadow: 1px 1px 12px #000;
    box-shadow: 1px 1px 12px #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
}

.cover img {
    position: absolute;
    z-index: 6;
    top: px;
    border-radius: 10px;
    overflow: auto;
    height: 340px;
    width: 290px;
    align-items: center;
    align-content: center;
}
.book:hover .cover {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: rotatey(-80deg);
    -ms-transform: rotatey(-80deg);
    transform: rotatey(-80deg);
}

.book p {
    position: absolute;
    top: 20px;
    font-size: 20px;
    font-weight: bolder;
}

.book h4 {
     position: absolute;
     left: 50px;
     white-space: 15px;
     letter-spacing: 1px;
     font-size: 15px;
     color: rgb(0, 21, 255);
     line-height: 20px;
     justify-content: center;
}

.cover h2 {
    position: absolute;
    z-index: 4;
    top: 290px;
}

@media screen and (max-width: 1100px) {
    .project-card {
        flex-direction: column;
        height: 100%;
        gap: 15px;
    }

}

@media screen and (max-width: 400px) {
    .book {
        width: 250px;
    }
    .cover img {
        width: 240px;
    }
    .back h4 {
       font-size: 10px;
    }

    .back p {
       font-size: 10px;
    }
}

@media screen and (max-width: 390px) {
    .book {
        width: 250px;
    }
    .cover img {
        width: 240px;
    }

     .back h4 {
       font-size: 10px;
    }

    .back p {
       font-size: 10px;
    }
}


@media screen and (max-width: 280px) {
    .book {
        width: 200px;
    }
    .cover img {
        width: 190px;
    }

     .back h4 {
       font-size: 10px;
    }

    .back p {
       font-size: 10px;
    }
}
/*------------------------end owner column card -------------------*/

/*-------------------------------------- end project -------------------------------------*/













/*------------------------------start gallery--------------------------------------------*/


/*--------------------start gallery hade---------------*/
.our-gallery {
    position: relative;
        display: inline-block;
        width: 100%;
        text-align: center;
}

.our-gallery h1 {
    display: inline-block;
    position: relative;
    margin-top: 200px;
    font-size: 50px;
    font-family: helvetica;
    text-align: center;
    width: max-content;
    align-items: center;
    font-style: italic;
    font-weight: 300;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
}

@media screen and (max-width: 912px) {
    .our-gallery h1 {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .our-gallery h1 {
        font-size: 15px;
    }
}

@media screen and (max-width: 540px) {
    .our-gallery h1 {
        font-size: 13px;
    }
}

@media screen and (max-width: 414px) {
    .our-gallery h1 {
        font-size: 12px;
    }
}

@media screen and (max-width: 412px) {
    .our-gallery h1 {
        font-size: 12px;
    }
}

@media screen and (max-width: 393px) {
    .our-gallery h1 {
        font-size: 12px;
    }
}

@media screen and (max-width: 375px) {
    .our-gallery h1 {
        font-size: 12px;
    }
}

@media screen and (max-width: 360px) {
    .our-gallery h1 {
        font-size: 12px;
    }
}

@media screen and (max-width: 280px) {
    .our-gallery h1 {
        font-size: 12px;
    }
}

/*--------------------end gallery hade---------------*/


/*-------------------------start round gallery----------------*/


.slide-boxes {
    position: relative;
    display: flex;
    width: 100%;
    height: 600px;
    align-items: center;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    margin-top: 30px;
    margin-bottom: 100px;
    overflow-x: hidden;
    overflow-y: hidden;
}

#slideshow {
    margin: 0 auto;
    padding-top: 80px;
    height: 550px;
    width: 100%;
    background-color: #0b3826;
    box-sizing: border-box;
}


.sub-heading {
    padding-top: 50px;
    font-size: 18px;
}

.sub-heading-two {
    font-size: 15px;
}

.sub-heading-three {
    font-size: 13px;
}

.sub-heading-four {
    font-size: 11px;
}

.sub-heading-five {
    font-size: 9px;
}

.sub-heading-six {
    font-size: 7px;
}

.sub-heading-seven {
    font-size: 5px;
}

.sub-heading-eight {
    font-size: 3px;
}

.sub-heading-nine {
    font-size: 1px;
}

.entire-content {
    margin: auto;
    width: 190px;
    perspective: 1000px;
    position: relative;
    padding-top: 80px;
}

.content-carrousel {
    width: 100%;
    position: absolute;
    float: right;
    animation: rotar 15s infinite linear;
    transform-style: preserve-3d;
}

.content-carrousel:hover {
    animation-play-state: paused;
    cursor: pointer;
}

.content-carrousel figure {
    width: 100%;
    height: 120px;
    border: 1px solid #3b444b;
    overflow: hidden;
    position: absolute;
}

.content-carrousel figure:nth-child(1) {
    transform: rotateY(0deg) translateZ(300px);
}

.content-carrousel figure:nth-child(2) {
    transform: rotateY(40deg) translateZ(300px);
}

.content-carrousel figure:nth-child(3) {
    transform: rotateY(80deg) translateZ(300px);
}

.content-carrousel figure:nth-child(4) {
    transform: rotateY(120deg) translateZ(300px);
}

.content-carrousel figure:nth-child(5) {
    transform: rotateY(160deg) translateZ(300px);
}

.content-carrousel figure:nth-child(6) {
    transform: rotateY(200deg) translateZ(300px);
}

.content-carrousel figure:nth-child(7) {
    transform: rotateY(240deg) translateZ(300px);
}

.content-carrousel figure:nth-child(8) {
    transform: rotateY(280deg) translateZ(300px);
}

.content-carrousel figure:nth-child(9) {
    transform: rotateY(320deg) translateZ(300px);
}

.content-carrousel figure:nth-child(10) {
    transform: rotateY(360deg) translateZ(300px);
}

.shadow {
    position: absolute;
    box-shadow: 0px 0px 20px 0px #000;
    border-radius: 1px;
}

.content-carrousel img {
    image-rendering: auto;
    transition: all 300ms;
    width: 100%;
    height: 100%;
}

.content-carrousel img:hover {
    transform: scale(1.2);
    transition: all 300ms;
}

@keyframes rotar {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}
/*------------------end round gallery ----------------------------------*/




/*----------------start line gallery------------------*/


.slide-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 300px;
    margin-bottom: 200px;
    width: 100%;
    height: 600px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    perspective: clamp(400px, 100%, 500px);
    background-color: rgb(255, 255, 255);
}

.slide-box::before {
    top: 0;

}

.slide-box::after {
    bottom: 0;
}

.gallery {
    display: flex;
    gap: 1vw;
    max-width: 100%;
    min-width: 280px;
    height: 600px;
    
}

.gallery_line {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    height: fit-content;
    animation: slide 30s linear infinite;
}

.gallery_line:nth-child(2) {
    animation-direction: reverse;
}

.gallery_line img {
    flex: 1 1 auto;
    width: 100%;
    object-fit: cover;
}

@keyframes slide {
    0 {
        transform: translatey(0);
    }

    100% {
        transform: translatey(-50%);
    }
}

/*------------------end line gallery------------------*/

/*------------------------------end gallery ---------------------------------------------*/








/*---------------------------------start contact-------------------------------------------*/

.our-contact {
    position: relative;
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-bottom: 50px;
}

.our-contact h1 {
    display: inline-block;
    position: relative;
    margin-top: 200px;
    font-size: 50px;
    font-family: helvetica;
    text-align: center;
    width: max-content;
    align-items: center;
    font-style: italic;
    font-weight: 300;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
}

@media screen and (max-width: 912px) {
    .our-contact h1 {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .our-contact h1 {
        font-size: 15px;
    }
}

@media screen and (max-width: 540px) {
    .our-contact h1 {
        font-size: 14px;
    }
}

@media screen and (max-width: 414px) {
    .our-contact h1 {
        font-size: 13px;
    }
}

@media screen and (max-width: 412px) {
    .our-contact h1 {
        font-size: 13px;
    }
}

@media screen and (max-width: 393px) {
    .our-contact h1 {
        font-size: 12px;
    }
}

@media screen and (max-width: 390px) {
    .our-contact h1 {
        font-size: 12px;
    }
}

@media screen and (max-width: 375px) {
    .our-contact h1 {
        font-size: 12px;
    }
}

@media screen and (max-width: 360px) {
    .our-contact h1 {
        font-size: 12px;
    }
}

@media screen and (max-width: 280px) {
    .our-contact h1 {
        font-size: 12px;
    }
}
/*--------------------start google map------------------*/

.maps {
    position: relative;
        display: inline-block;
        width: 100%;
        height: 600px;
        text-align: center;
}

.maps iframe {
    width: 600px;
    height: 500px;
}

@media screen and (max-width: 912px) {
    .maps iframe {
        width: 500px;
        height: 400px;
    }
   
}

@media screen and (max-width: 768px) {
    .maps iframe {
        width: 500px;
        height: 300px;
    }
   
}

@media screen and (max-width: 540px) {
    .maps iframe {
        width: 400px;
        height: 300px;
    }
   
}

@media screen and (max-width: 414px) {
    .maps iframe {
        width: 300px;
        height: 300px;
    }
   
}

@media screen and (max-width: 412px) {
    .maps iframe {
        width: 300px;
        height: 300px;
    }
   
}

@media screen and (max-width: 393px) {
    .maps iframe {
        width: 300px;
        height: 300px;
    }
   
}

@media screen and (max-width: 360px) {
    .maps iframe {
        width: 300px;
        height: 300px;
    }
   
}

@media screen and (max-width: 280px) {
    .maps iframe {
        width: 230px;
        height: 300px;
    }
   
}

/*--------------------end google map------------------*/


/*--------------------start contact form---------------*/




.contact-form {
     position: relative;
     display: flex;
     align-items: center;
     align-content: center;
     justify-content: center;
     background-color:#131131;
     width: 100%;
     height: 600px;
}

form {
    background-color: #0004ff;
    color: #ffffff;
    padding: 7px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    height: auto;
}

fieldset {
    border-radius: 10px;
    padding: 10px;
    border-width: 3px;
    border-color: #fff;
}

form h2 {
    font-family: Arial, Helvetica, sans-serif;
}

form input {
    padding: 2px;
    border-radius: 3px;
}

form textarea {
    padding: 2px;
    border-radius: 3px;
}

form input[type="submit"] {
        padding: 7px;
        font-size: 15px;
        background-color:rgb(255, 98, 0);
        border-radius: 5px;
        border: none;
        cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: rgb(214, 255, 65);
    font-weight: 800;
}



@media screen and (max-width: 540px) {
    form {
        width: 300px;
        height: auto;
    }
   
}

@media screen and (max-width: 414px) {
    form {
        width: 300px;
        height: auto;
    }
   
}

@media screen and (max-width: 412px) {
    form {
        width: 300px;
        height: auto;
    }
   
}

@media screen and (max-width: 393px) {
    form {
        width: 300px;
        height: auto;
    }
   
}

@media screen and (max-width: 375px) {
    form {
        width: 300px;
        height: auto;
    }
   
}

@media screen and (max-width: 360px) {
    form {
        width: 300px;
        height: auto;
    }
   
}

@media screen and (max-width: 320px) {
    form {
        width: 280px;
        height: auto;
    }
   
}

@media screen and (max-width: 280px) {
    form {
        width: 240px;
        height: auto;
    }
   
}


/*--------------------end contact form-----------------*/




/*--------------------start contact details in footer-----------------*/
.cont-back {
    display: flex;
    position: relative;
    width: 100%;
    height: 400px;
    background-color: rgb(202, 255, 77);
}

.resident {
    position: relative;
    display: flex;
    width: 280px;
    height: auto;
   margin: 20px;
    font-size: 20px;
    flex-direction: row;
    align-content: center;
}
.resident img{
    position: relative;
   width: 25px;
   height: 30px;
   margin-right: 20px;
} 


.phone {
    position: relative;
    display: flex;
    width: 280px;
    height: auto;
   margin: 20px;
    flex-direction:row;
    align-content: center;
}
.phone img {
   position: relative;
   width: 25px;
   height: 30px;
   margin-right: 20px;
}

.phone h1 {
    margin-top: 10px;
}

.email {
    position: relative;
    display: flex;
    width: 280px;
    height: auto;
   margin: 20px;
    flex-direction: row;
    align-content: center;
}
.email img {
    position: relative;
    width: 25px;
    height: 30px;
    margin-right: 20px;
}

.email h1 {
    margin-top: 10px;
}

.media {
     position: relative;
    display: flex;
    width: 280px;
    height: auto;
   margin: 20px;
    flex-direction:row;
    align-content: center;
   
}

.media a img {
    margin: 5px;
}


@media screen and (max-width: 900px) {
    .cont-back {
        flex-direction: column;
        height: auto;
    }
}



@media screen and (max-width: 540px) {

     .resident {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .phone {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .email {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .media {
        width: auto;
        height: auto;
        margin-bottom: 30px;
        margin-left: 10px;
    }

    .phone h1 {
        font-size: 15px;
    }
    .email h1 {
        font-size: 15px;
}
}


@media screen and (max-width: 414px) {

     .resident {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .phone {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .email {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .media {
        width: auto;
        height: auto;
        margin-bottom: 30px;
        margin-left: 10px;
    }

    .phone h1 {
        font-size: 15px;
    }
    .email h1 {
        font-size: 15px;
}
}


@media screen and (max-width: 412px) {

     .resident {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .phone {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .email {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .media {
        width: auto;
        height: auto;
        margin-bottom: 30px;
        margin-left: 10px;
    }

    .phone h1 {
        font-size: 15px;
    }
    .email h1 {
        font-size: 15px;
}
}


@media screen and (max-width: 393px) {

     .resident {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .phone {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .email {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .media {
        width: auto;
        height: auto;
        margin-bottom: 30px;
        margin-left: 10px;
    }

    .phone h1 {
        font-size: 13px;
    }
    .email h1 {
        font-size: 13px;
}
}


@media screen and (max-width: 390px) {

     .resident {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .phone {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .email {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .media {
        width: auto;
        height: auto;
        margin-bottom: 30px;
        margin-left: 10px;
    }

    .phone h1 {
        font-size: 13px;
    }
    .email h1 {
        font-size: 13px;
}
}


@media screen and (max-width: 375px) {

     .resident {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .phone {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .email {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .media {
        width: auto;
        height: auto;
        margin-bottom: 30px;
        margin-left: 10px;
    }

    .phone h1 {
        font-size: 13px;
    }
    .email h1 {
        font-size: 13px;
}
}


@media screen and (max-width: 360px) {

     .resident {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .phone {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .email {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .media {
        width: auto;
        height: auto;
        margin-bottom: 30px;
        margin-left: 10px;
    }

    .phone h1 {
        font-size: 13px;
    }
    .email h1 {
        font-size: 13px;
}
}


@media screen and (max-width: 320px) {

     .resident {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .phone {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .email {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .media {
        width: auto;
        height: auto;
        margin-bottom: 30px;
        margin-left: 10px;
    }

    .phone h1 {
        font-size: 13px;
    }
    .email h1 {
        font-size: 13px;
}
}


@media screen and (max-width: 280px) {

     .resident {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .phone {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .email {
        width: auto;
        height: auto;
        margin-left: 10px;
    }

    .media {
        width: auto;
        height: auto;
        margin-bottom: 30px;
        margin-left: 10px;
    }

    .phone h1 {
        font-size: 13px;
    }
    .email h1 {
        font-size: 13px;
}
}

/*--------------------end contact details in footer-----------------*/


 


/*----------------------------------start payment---------------------------------------------*/

.pay-ment {
    position: relative;
    display: flex;
    text-align: center;
    justify-content: center;
    background-color: #000;
}

.pay {
    color: #fff;
    padding-top: 10px;
    padding-bottom: 25px;
}



/*----------------------------------end payment-----------------------------------------------*/




/*---------------------------------- finish all project-----------------------------------------------*/