body {
    padding: 0;
    margin: 0;
    font-family: 'BenSen', Arial, sans-serif !important;
}
html::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  html::-webkit-scrollbar-track {
    background: transparent;
  }
  
  html::-webkit-scrollbar-thumb {
    background: brown;
  }

a{
    text-decoration: none!important;
}
.container {
    position: relative;
    margin-top: 100px;
}
.container img {
    display: block;
    width: 100%;
}







/* company */
.company {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .company-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .img {
    width: 100%;
    margin: 1rem 0rem 0rem 2rem;
  }
  
  .img img {
    width: 100%;
  }
  
  .company-info {
    width: 100%;
    margin-right: 4rem;
  }
  
  .company-info span {
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  .company-info span .our {
   
  }
  
  .company-info p{
    font-size: 1.1rem;
  }
  /* ----------------------------------------------- */
  
  .team {
    display: flex;
    justify-content: center;
  }
  
  .team span {
    font-size: 2.5rem;
    font-weight: bold;
    border-bottom: 4px solid brown;
  }
  
  .container {
    /* min-height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .card {
    position: relative;
    background: #fff;
    max-width: 450px;
    width: 450px;
    margin: 20px;
    
    border-radius: 2px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 10%);
  }
  
  .card-image {
    max-height: 50vh;
    overflow: hidden;
  }
  
  .card-image img {
    max-width: 100%;
    height: auto;
    visibility: hidden;
  }
  
  .card-title span {
    visibility: hidden;
  }
  
 
 
  
  .card-mediaIcons a i {
    visibility: hidden;
  }
  
  .card-info {
    position: relative;
    color: #222;
    padding: 20px;
  }
  
  .card-info h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .card-info h4 {
    font-size: 1rem;
    font-weight: normal;
  }
  
  .card-info a {
    text-decoration: none;
    color: navy;
  }
  
  .card-info p {
    font-size: 1em;
    margin-bottom: 15px;
  }
  
  .card-info .card-mediaIcons {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .card-info .card-mediaIcons a {
    color: #999;
    font-size: 1.4em;
    margin: 0 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50%;
    transition: color 0.3s ease;
  }
  
  .card-info .card-mediaIcons a:hover {
    color: #222;
  }
  
  .card-mediaIcons a img {
    width: 40px;
  }
  
  .loading {
    position: relative;
    background: #e2e2e2;
    overflow: hidden;
  }
  
  .loading:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transform: translateX(-100%);
    animation: loading 1.5s infinite;
  }
  
  .info {
    font-size: 1.2rem;
    font-weight: 500;
  }
  
  @keyframes loading {
    100% {
      transform: translateX(100%);
    }
  }
  
  /* ------------------------------footer---------------------------------------- */
  footer {
    margin-top: 10%;
    /* background: #F4EDEC; */
    background: #F4EDEC;
    width: 100%;
    bottom: 0;
    left: 0;
  }
  
  footer .content {
    max-width: 1250px;
    margin: auto;
    padding: 30px 40px 40px 40px;
  }
  footer .content .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .content .top .logo-details {
    color: #fdd166;
    font-size: 30px;
  }
  .content .top .media-icons {
    display: flex;
  }
  .content .top .media-icons a {
    height: 40px;
    width: 40px;
    margin: 0 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #1F1F1F;;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
  }
  .top .media-icons a:nth-child(1) {
    background: #4267b2;
    color: #fff;
    border: 1px solid transparent;


  }
  .top .media-icons a:nth-child(1):hover {
    color: #4267b2;
    background: #fff;
        border: 1px solid #4267b2;

    
  }
  
  .top .media-icons a:nth-child(2) {
    background: green;
    color: #fff;
    border: 1px solid transparent;
  }
  .top .media-icons a:nth-child(2):hover {
    color: green;
    background: #fff;
    border: 1px solid green;
  }
  
  footer .content .link-boxes {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  footer .content .link-boxes .box {
    width: calc(100% / 5 - 10px);
  }
  .content .link-boxes .box .link_name {
    color: #1F1F1F;;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
  }
  .link-boxes .box .link_name::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 35px;
    background: #fdd166;
  }
  .content .link-boxes .box li {
    margin: 6px 0;
    list-style: none;
  }
  .content .link-boxes .box li a {
    color: #1F1F1F;;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.4s ease;
  }
  .content .link-boxes .box li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  .content .link-boxes .input-box {
    margin-right: 55px;
  }
  .link-boxes .input-box input {
    height: 40px;
    width: calc(100% + 55px);
    outline: none;
    border: 2px solid #afafb6;
    background: #140b5c;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 15px;
    color: #1F1F1F;;
    margin-top: 5px;
  }
  .link-boxes .input-box input::placeholder {
    color: #afafb6;
    font-size: 16px;
  }
  .link-boxes .input-box input[type="button"] {
    background: #fff;
    color: #140b5c;
    border: none;
    font-size: 18px;
    font-weight: 500;
    margin: 4px 0;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.4s ease;
  }
  .input-box input[type="button"]:hover {
    opacity: 1;
  }
  footer .bottom-details {
    width: 100%;
    background: #F4EDEC;
    border-top: 0.5px solid #ccc;
  }
  footer .bottom-details .bottom_text {
    max-width: 1250px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 14px;
    font-weight: 300;
    color: #1F1F1F;;
    opacity: 0.8;
    text-decoration: none;
  }
  .bottom-details .bottom_text a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  .bottom-details .bottom_text a {
    margin-right: 10px;
  }
  
  /* ------------------------------------------media-footer------------------------------------------- */
  @media (max-width: 900px) {
    .company-info {
      width: 100%;
      margin-right: 0rem;
      margin-left: 1rem;
    }
    .company-info p{
      margin-right: 2rem;
      text-align: center;
    }
    .company-info span {
      font-size: 1.7rem;
      font-weight: bold;
      text-align: center;
    }
    .team {
      display: flex;
      justify-content: center;
    }
  
    .team span {
      font-size: 1.7rem;
      font-weight: bold;
    }
    .company {
      display: flex;
      flex-direction: column;
    }
    .img {
      margin-left: 0rem;
    }
    footer .content .link-boxes {
      flex-wrap: wrap;
    }
    footer .content .link-boxes .input-box {
      width: 40%;
      margin-top: 10px;
    }
  }
  @media (max-width: 700px) {
    footer {
      position: relative;
    }
    .content .top .logo-details {
      font-size: 26px;
    }
    .content .top .media-icons a {
      height: 35px;
      width: 35px;
      font-size: 14px;
      line-height: 35px;
    }
    footer .content .link-boxes .box {
      width: calc(100% / 3 - 10px);
    }
    footer .content .link-boxes .input-box {
      width: 60%;
    }
    .bottom-details .bottom_text span,
    .bottom-details .bottom_text a {
      font-size: 12px;
    }
  }
  @media (max-width: 520px) {
    footer::before {
      top: 145px;
    }
    footer .content .top {
      flex-direction: column;
    }
    .content .top .media-icons {
      margin-top: 16px;
    }
    footer .content .link-boxes .box {
      width: calc(100% / 2 - 10px);
    }
    footer .content .link-boxes .input-box {
      width: 100%;
    }
  }
  @media(max-width:320px){
    .company-info p{
      margin-right: 0rem;
    }
  }
  /* ---------------------------------------------------------------------------- */
/* company */


.services__img {
    width: 64px;
    height: 64px;
    fill: brown;
    margin-bottom: 10px;
}



/* menu */
.menu__container{
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
  
  .menu__content{
    width: 70%;
    border: 3px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--container-color);
    border-radius: .5rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 1.75rem 10px;
    transition: 0.8s;
    
  }
  .menu__content:hover{
    border: 3px solid brown;
    transform: translateY(-7px);
    
  }
  .menu__content .menu__button{

  color:#fff;
    background-color: brown;
   border-left: 2px solid transparent;
   border-top: 2px solid transparent;
    
  }
  .menu__content:hover .menu__button{
    border-left: 2px solid brown;
    border-top: 2px solid brown;
  
    color:brown;
    background-color: #fff;
    
  }
  
  
  /* .menu__content:hover>a{
    color: #fff;
    background-color: brown;
  } */
  
  
  .menu__img{
    width: 100px;
    align-self: center;
    margin-bottom: var(--mb-2);
  }
  
  .menu__name, .menu__preci{
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
  }
  
  .menu__name{
    font-size: var(--normal-font-size);
  }
  
  .menu__detail, .menu__preci{
    font-size: var(--small-font-size);
  }
  
  .menu__detail{
    margin-bottom: var(--mb-1);
  }
  
  .menu__button{
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    padding: .625rem .813rem;
    border-radius: .5rem 0 .5rem 0;
  }
  
/* menu end */




/* about */
  /* contact */
  .contact__button a{
    text-decoration: none;
    background-color: brown;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: 0.5s;
  }
  .contact__button a:hover{
    background-color: #fff;
    color: brown;
    border: 1px solid brown;
  }
  
  /* contact end */

/* about slider */

  @keyframes fade{
from{
  opacity:0.4;
}
to{
  opacity:1;
}
}



#slider{
margin:0 auto;
width:80%;
overflow:hidden;
}

.slides{


overflow:hidden;
animation-name:fade;
animation-duration:1s;
display:none;
}
.slides img {
padding:1px;
  border-radius: 5px;
  border: 3px solid #B1791F;
  height: 550px!important;
  background-color: brown;
 
}
.slides img:hover{

}

/* img{
width:100%;
} */

#dot{
margin:0 auto;
text-align:center;
}
.dot{
display:inline-block;
border-radius:50%;
/* background:#d3d3d3; */
padding:8px;
margin:10px 5px;

}
.dot img.active{

filter: grayscale(100%);
/* filter:blur(2px); */
}

.active{
/* background:#B1791F; */
}

@media (max-width:567px){
#slider{
  width:100%;

}
}


.about-us p {
  /* line-height: 28px; */
  font-size: 18.5px;
}


/* about slider end */


/* about hover effect */

#zoomOut img {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
#zoomOut:hover img {
filter:contrast(200%);
-webkit-transform: scale(1.5);
transform: scale(1.5);
}

/* about hover effect end */

/* about 9/13/2023 */
a{
  text-decoration: none;
  display: inline-block;
}
.body-text{
  padding: 10px;
  margin: 20px 0;
  box-sizing: border-box;
}

.body-img{
 
}
.body-img img{
 max-width: 350px;
}

    /* contact */
    .contact__button a{
      text-decoration: none;
      background-color: brown;
      color: #fff;
      padding: 10px;
      border-radius: 5px;
      border: 1px solid transparent;
      transition: 0.5s;
    }
    .contact__button a:hover{
      background-color: #fff;
      color: brown;
      border: 1px solid brown;
    }
    
    /* contact end */
    
.service-section .card {
   
  height: 200px!important;
  max-width: 76% !important;

  border-left: 3px solid brown!important;
  border-radius: 0.25rem 1.25rem;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

/* 
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 2;
}
@media all and (transform-3d),
(-webkit-transform-3d) {
  .carousel-fade .carousel-inner > .item.next,
  .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.prev,
  .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.next.left,
  .carousel-fade .carousel-inner > .item.prev.right,
  .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
  }
}
.item:nth-child(1) {
  background: url(https://i.ibb.co/pv074gf/3-slide.jpg) no-repeat center center ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.item:nth-child(2) {
  background: url(https://i.ibb.co/zxLDcdT/1-slide.jpg) no-repeat center center ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.item:nth-child(3) {
  background: url(https://i.ibb.co/xSdbwqj/2-slide.jpg) no-repeat center center ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.carousel {
  z-index: -99;
}
.carousel .item {
 
  width: 100%;
  height: 500px;
}
.title {
text-align: center;
margin-top: 20px;
padding: 10px;
text-shadow: 2px 2px #000;
color: #FFF;
} */


/* start newone */
.section-part { 

  position: absolute;
  width: 100%;
  height:100vh;
  top: 0px;
  left: 0px;
 
  background-size: cover;
 
  animation: animate 16s ease-in-out infinite; 
}

@keyframes  animate{ 
  0% ,100% { 
    background-image: url("./image/1-slide.JPG"); 
   }
  25% { 
    background-image: url("./image/2-slide.JPG");
   }
  50% { 
    background-image: url("./image/3-slide.JPG");
   }
  75% { 
    background-image: url("./image/5_slide.JPG");
   }
  100% { 
    background-image: url("./image/7-slide.JPG"); 
   }
 
}


.outer{
position: absolute;
  width: 100%;
  height:80vh;
  top: 0px;
  left: 0px;
  background:rgba(0,0,0 0.9);
  text-align:right;
}
.details{
position: absolute;
width: 100%;
  top: 50%;
  left: 50%;
 transform:translate(-50%,-50%);
 text-align: center;
}
.details h1{
/* background: #222; */
color: rgba(255,255,255);
text-shadow: 2px 2px 3px rgba(0,0,0,0.6);
}
@media (max-width: 620px) {
.details{
 /* text-align: right; */
}
}
/* .about-section{
position: relative;
  top: 500px;
  margin-bottom: 30%;
} */
/* .about-section {
  position: relative;
  top: 550px;
 
}
.our-service,.menu,.jugajug,footer {
  position: relative;
  top: 550px;
} */

@media (min-width:820px){

  .carousel-item{
    height: 100vh;
  }
  .home__data >h1{
font-size:70px;
font-weight:600;

}
}

.carousel-item {
  position: relative;
  /* top:94px; */
  display: none;
  float: left;
  width: 100%;
  
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform .1s ease-in-out!important;

}
.carousel-item img{

}




/* header */
ul{
  list-style: none;
}
html::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  html::-webkit-scrollbar-track {
    background: transparent;
  }
  
  html::-webkit-scrollbar-thumb {
    background: brown;
  }

a{
    text-decoration: none!important;
}

:root {
  --primary_color: brown;
  --dark_blue: #021b51;
  --yellow: #ffc057;

  --container_width: 100%;
  --container_padding: 15px;
  --container_left_space: calc((100% - var(--container_width)) / 2);
}

@media (min-width: 768px) and (max-width: 991px) {
  :root {
    --container_width: 760px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  :root {
    --container_width: 1000px;
  }
}
@media (min-width: 1200px) {
  :root {
    --container_width: 1190px;
  }
}
@media (min-width: 1400px) {
  :root {
    --container_width: 1190px;
  }
}

/* container start */
.container {
  max-width: var(--container_width)!important;
  width: 100%!important;
  padding-inline: var(--container_padding)!important;
  margin: auto!important;
  box-sizing: border-box!important;
}

.container_left {
  margin-left: calc(var(--container_left_space));
  padding-left: var(--container_padding);
  box-sizing: border-box;
}

.container_right {
  margin-right: calc(var(--container_left_space));
  padding-right: var(--container_padding);
  box-sizing: border-box;
}
/* container end */

.d_flex {
  display: flex;
}
.dark_bg {
  background-color: var(--dark_blue);
}
.dark_bg * {
  color: #fff;
}

header {
  background-color: #fff;
  position: sticky;
  position: -webkit-sticky;
  top: -85px;
 
}
header ,nav{
  z-index: 90000000000;
}

header .container {
  max-width: calc(var(--container_width) + 80px);
  padding: 18px 15px;
}
.header_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.header_flex .social_links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social_links a {
  display: flex;
}
.social_links img {
  width: 24px;
}
.gap_26 {
  gap: 28px;
}
.header_flex .contact_links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact_icon {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact_icon a {
  font-weight: 300;
  text-decoration: none;
  color: var(--primary_color);
}

nav .container {
  padding: 0 15px;
}
nav ul {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 32px;
}
nav li a {
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  padding: 10px 0;
  position: relative;
  transition: 0.3s;
}
nav li a:hover {
  opacity: 0.7;
}
nav li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background-color: var(--yellow);
}

.burger {
  display: none;
}
.burger:focus{
  border: 1px solid brown!important;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.35s ease-in-out;
}

@media (max-width: 1024px) {
  header {
    box-shadow: 0 4px 6px #0000001a;
  }
  .burger {
    display: flex;
    background-color: transparent;
    border: none !important;
    padding: 0;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
  }
  .burger_line {
    width: 32px;
    height: 3px;
    background-color: brown;
    display: block;
    transition: 0.3s;
  }
  .burger.active .burger_line:nth-child(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  .burger.active .burger_line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger_line:nth-child(3) {
    transform: translateY(-9px) rotate(45deg);
  }
  nav {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 70vw;
    transform: translateX(-100%);
    transition: 0.3s;
    /* z-index: 999; */
  }
  nav.active {
    transform: translateX(0);
  }
  .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  nav ul {
    flex-direction: column;
    gap: 16px;
    padding: 12px 30px;
  }
  .contact_links,
  .social_links,
  .header_cta {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .logo {
    width: 100px;
  }
}
.img-logo img {
    width: 100px;
  }

/* button start */
.btn_one {
  display: inline-block;
  background-color: brown!important;
  border: 2px solid brown !important;
  color: #fff;
  padding: 8px 40px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.btn_one:hover {
  background-color: #fff;
  color:brown
}
/* button end */
/* header end */