@font-face {
    font-family: mart;
    src: url('../Mart.otf');
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
}

:root{
    --primary-color: #1A8E0D;
    --secondary-color: #000;

    --primary-font: mart;
}

h1{
    font-size: 2.5rem;
}

h2{
    font-size: 2rem;
}

h3{
    font-size: 1.5rem;
}

h4{
    font-size: 1rem;
}

p{
    font-size: 1rem;
}

a{
    color: #000;
}


/* navbar */
.navbar-sec{
    height: 80px;
    box-shadow: 6px 0 10px #252525;
    z-index: 1000;
}

.navbar-brand img{
    height: 60px;
}

.navbar button .navbar-toggler-icon{
    font-size: 2rem;
    border: none;
}

button .navbar-toggler-icon.active{
    box-shadow: unset;
    border: unset;
    outline: unset;
}
button .navbar-toggler-icon:focus,
button .navbar-toggler-icon:valid,
button .navbar-toggler-icon:hover{
    box-shadow: unset;
    border: unset;
    outline: unset;
}


.navbarMine{
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.navbar-nav{
    gap: 20px;
}

.navbar-nav .nav-item .nav-link{
    color: #000;
}


/* header section */

header{
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../img/b-3.jpg') no-repeat center center/cover;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-sec h1{
    font-size: 4rem;
    font-family: var(--primary-font);
    color: #fff;
}

.header-sec p{
    color: #fff;
}

.header-sec a{
    width: 300px;
    max-width: 300px;
}


/* details section */
.details{
    padding-top: 5rem;
}

.details h2{
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--primary-font);
}

 .card .img{
    padding: 1rem 1rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

 .card .img img{
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.details .card{
    margin-top: 1rem;
    height: 100px;
    display: flex;
    /* width: 300px; */
    max-width: 350px;
    justify-content: center;
    align-items: flex-start;
    padding: .5rem;
    border: none;
    box-shadow: 0 0 2px var(--primary-color);
}

.details .card .card-d{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.card-d .card-body h6{
    font-weight: 500;
}
.card-d .card-body p{
    font-weight: 100;
    color: gray;
    font-size: .8rem;
}


/* product section */
.product{
    padding: 5rem 0;
}

.swiper {
    width: 100%;
    height: 100%;
  }

  .mySwiper{
    width: 100%;
    height: 100%;
  }
  .swiper-slide {
    width: 200px;
    text-align: center;
    font-size: 18px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 20px;
    padding: 0;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.product h2{
    font-weight: 600;
    font-family: var(--primary-font);
}

.product .product-part{
    flex-wrap: wrap;
}

.product .product-part .card{
    position: relative;
    width: 410px;
    max-width: 410px;
    /* height: 500px; */
    min-height: 450px;
    margin-top: 10px;
    margin-right: 10px;
    border: 2px solid var(--primary-color);
    overflow: hidden;
}

.product-part .card img{
    height: 400px;
    object-fit: cover;
}

.product-part .card .card-body {
    position: absolute;
    width: 100%;
    padding: 0;
    bottom: -57px;
    transition: all .2s ease;
}

.product-part .card .card-body .card-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: #00000092;
    color: #fff;
}

.product-part .card:hover .card-body{
    bottom: 0;
}

.product-part .card .card-text a{
    text-decoration: none;
    color: #fff;
}

.product-part .card .card-text .btn{
    max-width: 200px;
    margin-top: .5rem;
}

.mySwipertwo{
    display: none;
}


/* services section css */
.services{
    padding-bottom: 5rem;
}
.services h2{
    font-family: var(--primary-font);
    font-weight: 600;
}

.services .services-part .card{
    position: relative;
    height: 400px;
    min-height: 400px;
    margin-top: 10px;
    margin-right: 10px;
    border: 2px solid var(--primary-color);
    transition: all .5s ease;
}

.services .services-part .card:hover{
    scale: 1.03;
    overflow: hidden;
}

.services .services-part .card img{
    height: 100%;
}

.services .services-part .card .card-body{
    position: absolute;
    bottom: 0;
    height: 100%;
    background-color: rgba(76, 74, 74, 0.307);
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.services .services-part .card .card-body .card-text a{
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
}
.services .services-part .card .card-body .card-text a:hover{
    text-decoration: underline;
}

.our-text{
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.our-text a{
    text-decoration: none;
    font-size: .8rem;
    color: blue;
}

.our-text .our-head a{
    font-size: 1.4rem;
    font-weight: 500;
    color: #000;
}

.our-text .intrest-btn a{
    color: #fff;
}


/* deals section */
.hsn{
    padding-bottom: 5rem;
}
.hsn h2{
    font-family: var(--primary-font);
    font-weight: 600;
}

.hsn .hsn-deal table {
    width: 100%;
    border-collapse: collapse;
}
thead {
    background-color: blue;
    color: white;
    padding: 10px;
}

thead tr th:nth-child(1){
    width: 150px;
}

td {
    padding: 10px;
    border: 1px solid #ddd;
}


/* touch section */

.touch h2{
    font-family: var(--primary-font);
    font-weight: 600;
    padding-bottom: 1rem;
}

.touch .touch-address ul li a{
    text-decoration: none;
}

.touch .touch-address h3{
    font-weight: 600;
}

.touch .touch-address h4 i{
    font-size: 1.5rem;
}

.touch .touch-address a i{
    font-size: 1.5rem;
}

.touch .touch-address a strong{
    color: #1A8E0D;
}


/* social */
.social h4 i{
    font-size: 1.2rem;
    font-weight: 600;
}

.social .social-icon ul{
    gap: 30px;
}

.social .social-icon ul li a{
    text-decoration: none;
    background-color: red;
    padding: .6rem 1rem;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social .social-icon ul li a i{
    font-size: 1.7rem;
    color: #fff;
}

.social .social-icon ul li a{
    background-color: blue;
}

.social .social-icon ul li .s-2{
    background-color: rgb(14, 95, 226);
}

.social .social-icon ul li .s-3{
    background-color: rgb(7, 7, 7);
}


/* shift section */
.shift-p{
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.shift-p .shift-head h2{
    font-family: var(--primary-font);
    font-weight: 600;
    padding-bottom: 2rem;
}

.shift-p .card{
    height: 380px;
    min-height: 350px;
    padding: 0;
}

.shift-p .card img{
    padding: 0;
    height: 150px;
}

.shift-p .card .card-body{
    min-height: 200px;
    z-index: 1;
}

.shift-p .card .card-body .btn{
    border-radius: 30px;
}

.shift-p .card a{
    text-decoration: none;
}

.sec-shift .card{
    height: 100%;
    min-height: 100%;
    box-shadow: 0 0 5px #000;
}


/* Related product section */
.related-p{
    padding-bottom: 2rem;
}

.related-p h2{
    font-family: var(--primary-font);
    font-weight: 600;
    padding-bottom: 2rem;
}

.related-p .card{
    height: 600px;
    min-height: 450px;
}

.related-p .card a{
    text-decoration: none;
}

.related-p .card img{
    height: 300px;
    object-fit: cover;
}

.related-p .card .card-body{
    height: 300px;
}

.related-p .card .card-title{
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(132, 0, 255);
}

.related-p .card .card-text{
    height: 220px;
}

.related-p .card .card-text .text-success{
    font-size: 1.1rem;
}

.related-p .card .card-body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.related-p .card .card-text a:nth-child(1){
    font-size: 1.1rem;
    font-weight: 600;
}


/* related product */
.r-product{
    padding: 5rem 0;
}
.related-product .card{
    height: 150px;
    min-height: 150px;
    margin-top: 1rem;
}

.related-product h2{
    font-family: var(--primary-font);
    font-weight: 600;
}

.related-product .card .card-text a{
    font-weight: 600;
    text-decoration: none;
}

.related-product .card .card-text  img{
    height: 145px;
    object-fit: cover;
}


/* about us */
.about-us{
    margin-top: 5rem;
}

.about-us .about-details .about-text h2{
    font-family: var(--primary-font);
    font-weight: 600;
}