body{
    text-align: left;
    direction: lrt;
    margin: 0;
    font-family: 'Red Hat Display';
    overflow-x: hidden;
    padding: 50px 100px ;
    background: #e8e8e8;
}
a{
    text-decoration: none !important;
    cursor: pointer;
}
.form-group label{
    font-size: small !important;
}
@media screen and (max-width: 768px) {
    body {
        padding: 0px;
    }
  }

.sidebar{
    position: absolute;
    background: #B02227;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
    z-index: 99999;
    padding: 3rem;
    transition: all ease-in-out .2s;
}
.sidebar.active{
    left: 0px;
}
.side-menu{
    list-style: none;
}
.side-menu li{
    margin-top: 1rem;
}
.side-menu li a{
    color: white;
}
.navbar{
    align-items: baseline;
    border-radius: 10px;
    background: white;;
    padding: 10px 30px;
    margin-bottom: 25px;
}
.s-mar{
    margin-bottom: 25px;
}
.me-auto{
    margin-inline-start: auto !important;
}
@media screen and (max-width: 768px) {
    .navbar {
      padding: 28px 1em;
    }
  }
.main-menu{
    list-style: none;


}
.nav-img{
    height: 70px;
    width: auto;
}
.main-menu li{
    list-style: none;

    display: inline;
    margin-right: 30px;
    position: relative;
}
.main-menu li a{
    color: grey;
}
.main-menu li a.active{
    color: #B02227;

    font-weight: bold;
}

.main-menu li a:hover, a:focus {
    color: #B02227;
    outline: none;
    text-decoration: none;
    font-weight: bold;
}
.main-menu li a::after{
    position: absolute;
  bottom: -10px;
  right: 0;
  left: 0;
  content: '';
  width: 58%;
  height: 2px;
  background: #CD6D2D;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);

}

.main-menu li a:hover:after {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }


.bg-pri{
    background: #B02227;
}
.bg-sec{
    background: #CD6D2D;
}
.bg-white{
    background:white
}
.text-pri{
    color: #B02227;
}
.text-grey{
    color:grey
}
.text-sec{
    color: #CD6D2D;
}
.text-white{
    color:white
}
.f-bold{
    font-weight: bold;
}
.f-bolder{
    font-weight: bolder;
}
.text-lth{
    text-decoration: line-through;
    color: red;
}
.small{
    font-size: small;
}
.xsmall{
    font-size: x-small;
}
.large{
    font-size: large;
}
.xlarge{
    font-size: x-large;
}
.medium{
    font-size: medium;
}
h1, h2, h3, h4, h5, h6, figure {
    color: #000;}



  .swiper {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    background: white;;
  }
  @media screen and (max-width: 768px) {
    .swiper {
        height: 300px
    }
  }

  .swiper-pagination-bullet{
    border: 3px solid white;
    background: transparent !important;
  }
  .swiper-pagination-bullet-active{
    outline: none;
    background: white !important;
    opacity: 1;
  }
  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .swiper-slide .caption {
    position: absolute;
    width: 50%;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%,-50%);

  }
  .swiper-slide .caption h1,h2{
    color: white;
    font-weight: bold;
    font-size:2rem;
  }
  @media screen and (max-width: 768px) {
    .swiper-slide .caption h1,h2{
        color: white;
        font-weight: bold;
        font-size: 1rem;
      }
  }

  .swiper-slide .overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,rgba(0, 0, 0, 0.59),rgba(0, 0, 0, 0.037));
  }

  .service-item{
    display: flex;flex-direction: column;justify-content: center;align-items: center;
}
.service-item img{
    height: 100px;
    width: auto;
    margin-bottom: 5px;
}
.service-item h5{
  font-size: medium;
  font-weight: bold;
  color: #CD6D2D;
}

.features-item{
    display: flex;flex-direction: column;justify-content: center;align-items: center;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    padding: 1rem;
    background: rgb(243, 241, 241);
    border: grey dashed thin;
}
.features-item.active{
    display: flex;flex-direction: column;justify-content: center;align-items: center;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    padding: 1rem;
    background: #B02227;
    margin-top: -10px;
    border: none;
    min-height: 250px;
}
.features-item img{
    height: 100px;
    width: auto;
    margin-bottom: 5px;
    transition: all ease .2s;
}
.features-item:hover img {
    display: none;
    scale: 1.2;
}
.features-item:hover h5 {
    display: none;
    color: #CD6D2D;
}
.features-item.active:hover h5 {
    scale: 1.1;
}
.features-item h5{
  font-size: medium;
  font-weight: bold;
  color: #B02227;
}
.features-item.active h5{
    font-size: medium;
    font-weight: bold;
    color: white;
  }
  .features-item p{
    display: none;
    font-size: small;
    font-weight: normal;
    color: rgb(58, 58, 58);
  }
  .features-item:hover p{
    display: block;
  }
  .features-item.active p{
    font-size: small;
    font-weight: normal;
    color: white;
  }
.client-item{
    display: flex;flex-direction: column;justify-content: center;align-items: center;
}
.client-item img{
    border-radius: 50%;
    background: #CD6D2D;
    height: 100px;
    width: 100px;
    width: auto;
    margin-bottom: 5px;
}
.client-item h5{
  font-size: medium;
  font-weight: bold;
  color: #CD6D2D;
}

.card{
    padding: 5px;
    width: 100% !important;
    border: none;
    text-align: center;
}
.card-img-top{
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;

}
.card h5{
    font-size: 1rem;
    font-weight: bold;
    color: #B02227;
}
.fixed-bg{
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    padding: 10px;
    position: relative;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .fixed-bg{
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 500px;
        padding: 10px;
        position: relative;
    }
  }
@media screen and (max-width: 768px) {
    .fixed-bg {
        min-height: 300px;
    }
  }
.fixed-bg span{
    display: flex;
    justify-content: center;align-items: center;
    border: thin solid white;
    width: 100%;
    height: 100%;
    font-size: 5rem;
    color:white;font-weight: bolder;
}
footer{
    background: white;
}
footer p{
    color: #B02227;
    font-weight: bold;
}
footer ul{
    list-style: none;
}
footer ul li a{
    color: rgb(65, 65, 65);
    transition: all .2s ease-in-out;
}
footer ul li a:hover{
    color: #B02227;
    margin-left: 5px;
}
 .social-icons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    direction: ltr;
}

.social-icons a{
    cursor: pointer;
    width: 30px;
    height:30px;
    color: #CD6D2D;
    border: #CD6D2D thin solid;
    border-radius: 50%;
    transition: all .2s ease-in-out;
    line-height: 30px;
    margin-inline-end: 1rem;
}
.social-icons a:hover{
    width: 33px;
    height:33px;
    color:white;

    border:none;
    background-color: #CD6D2D;
    border-radius: 50%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.3),
        only screen and (min-device-pixel-ratio: 1.3) {
  /* Styles specifically for Safari */
  .fixed-bg {
    background-attachment:scroll
  }
}















.radius-5{
    border-radius: 5px;;
}
.radius-10{
    border-radius: 10px;;
}
.radius-25{
    border-radius: 25px;;
}
.radius-50{
    border-radius: 50px;;
}
