@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Tangerine:wght@400;700&display=swap');

*{
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
}
body{
  background-color: #111111;
}
a{
  text-decoration: none;
}
li{
  list-style: none;
}
/* font-family: "Tangerine", cursive; */
#button {
  display: inline-block;
  background-color: #D72324;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s ,transform .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transform: translateX(50px);
  border: 3px solid #ffffff;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1.5em;
  line-height: 35px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  transform: translateX(-0px);
  opacity: 1;
  visibility: visible;
}
/* call icon and whatsapp icon*/
.whatsappimgbox{
  width: 12%;
  position: fixed;
  z-index: 99999;
  bottom: 30px;
  left:30px;
  
}
.scale-up-center{
  animation: scale-up-center 1s ease-in-out infinite alternate both;animation: scale-up-center 1s ease-in-out infinite alternate both;
}
@keyframes scale-up-center {
  0% {
    
    transform: scale(0.9);
  }
  100% {
     transform: scale(1);
  }
}
.logo-box{
  width: 40%;
}
.navbar-nav li a{
  color: #111111;
  font-weight: bold;
  letter-spacing: 1px;
}
.navbar-nav li a:hover{
  color: #D72324;
}
.main-nav{
  position: sticky;
  top: 0px;
  z-index: 9999;
}
.active-color{
  color: #D72324 !important;
}
.book-btn{
  background-color: #D72324;
  padding: 15px 30px;
  color: #ffffff;
  font-weight: bold;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .5s;
}
.book-btn:hover{
  color: #ffffff;
  background-color: #111111;
}
.slider-icon{
  background-color: #D72324;
  border-radius: 50%;
  font-size: 20px;
  width: 30px;
  height: 30px;
}
/*blockquote section */
.blockquote-bg-img{
  background-image: url(../images/blockquet.png);
  background-position: bottom;
  background-repeat: no-repeat;
}
.main-box-block{
  background-color: #041C22;
  padding: 20px;
}
.sub-box-block{
  border: 1px solid #ffffff81;
  border-radius: 10px;
  padding:20px;
}
.text-block{
  text-align: center;
  font-family: "Tangerine", cursive;
  font-size: 30px;
}
/* about section */
.images-about1{
  width: 60%;
  transform: rotate(-8deg);
  
}
.images-about1 img{
  border: 12px solid #ffffff;
}
.images-about2 {
  width: 20%;
  position: absolute;
  right: 27%;
  top: 5%;
  transform: rotate(8deg);
  border: 6px solid #ffffff;
}
.images-about3 {
  width: 20%;
  position: absolute;
  right: 50%;
  bottom: -14%;
  transform: rotate(8deg);
  border: 6px solid #ffffff;
}
.images-about4 {
  width: 34%;
  position: absolute;
  right: 17%;
  bottom: 0%;
  transform: rotate(12deg);
  border: 12px solid #ffffff;
}
.top-heading{
  text-transform: uppercase;
  letter-spacing: 1px;
}
.textpara{
  text-align: justify;
}
.book-btn1{
  background-color: #D72324;
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 10px;
  position: relative;
  transition: all .5s;
  font-weight: 500;
  letter-spacing: 1px;
}

.book-btn1 span{
  position: relative;
  z-index: 3;
}
.book-btn1::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #2b2b2b;
  left: 0px;
  top: 0px;
  border-radius:  10px;
  transition: all .5s;
  transform: scale(0);
  opacity: 0;
  transform-origin: left bottom;
}
.book-btn1::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #2b2b2b;
  right: 0px;
  top: 0px;
  border-radius:10px;
  transition: all .5s;
  transform: scale(0);
  opacity: 0;
  transform-origin: right top;
}
.book-btn1:hover:before ,.book-btn1:hover:after {
  transform: scale(1);
  opacity: 1;
 
}
.konw-btn{
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
}
.line-bg{
  background-image: url(../images/line-img.png);
  background-repeat: no-repeat;
  background-position: bottom;
}
/* new section */
.bg-image{
  background-image: url(../images/new-sets/Untitled-7.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
}
.bg-image::before{
  content: "";
  background-color: #000000c2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.bg-image1{
  background-image: url(../images/slider/Slider02.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
}
.bg-image1::before{
  content: "";
  background-color: #000000bf;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: -1;
}
/* services section */
.services-img-box{
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  transition: all .5s;
}
.services-img-box:hover{
  transform: translateY(-10px);
}
.link-box a{
  position: absolute;
  bottom: 0px;
  color: #ffffff;
  width: 100%;
  text-align: center;
  background-color: #041C22;
  padding: 20px 0px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
}
.link-box1 a{
  position: absolute;
  bottom: 0px;
  color: #ffffff;
  width: 100%;
  text-align: center;
  background-color: #041C22;
  padding: 20px 0px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
}
.services-img-box img{
  object-fit: cover;
  
}
/* why-choose-box */
.why-choose-box{
  border: 1px solid #646464cd;
  border-radius: 5px;
  padding: 30px;
  transition: all .5s;
}
.why-choose-box:hover{
  transform: translateY(-5px);
}
.why-choose-images{
  width: 15%;
  position: relative;
  margin:  0px auto;
}
.why-choose-images::before{
  content: "";
  position: absolute;
  background-color: #d723234f;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  left: -50%;
  bottom: 0px;
  z-index: -1;
}
    /* footer section */
    .bgcolor-footer{
      background-color: #242E37;
      position: relative;
      z-index: 1;
      height: 100%;
      overflow: hidden;
  }
  .bgcolor-footer::after{
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-image: url(../images/footer-right.png);
      background-repeat: no-repeat;
      left: 61%;
      top: 0px;
      z-index: -1;
  }
  .bgcolor-footer::before{
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-image: url(../images/footer-left.png);
      background-repeat: no-repeat;
      right: 0%;
     top:27%;
      z-index: -1;
  }
  .footer-heading{
      color: #ffffff;
      font-weight: 500;
      border-bottom: 4px solid #444444;
      display: inline-block;
      position: relative;
      padding-bottom: 10px;
  }
  .footer-heading::after{
      content: "";
      background-color: #E31E25;
      width: 30%;
      height: 4px;
      position: absolute;
      left: 0px;
      bottom: -4px;
  }
  .footer-link li a{
      color: #ffffff;
      font-weight: 400;
      font-size: 16px;
      line-height: 2rem;
  }
  .footer-link li a:hover{
      text-decoration: none;
  }
  .footer-link li::marker{
     color: #db292e;
     font-size: 18px;
  }
  .footer-Address{
      display: flex;
      column-gap: 20px;
      align-items: center;
  }
  .textpara{
      text-align: justify;
      color: #ffffff;
  }
  .icon-box i{
      width: 40px;
      height: 40px;
      background-color: #db292e;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #ffffff;
      text-shadow: rgb(0, 0, 0) 0px 5px 15px;
  }
  .footer-Address a{
      color: #ffffff;
      font-size: 16px;
      font-weight: 400;
  }
  .footer-Address a:hover ,.copy-line a:hover{
      text-decoration: none;
  }
 
  .social-icon{
      display: flex;
      column-gap: 20px;
      align-items: center;
  }
  .icon-box1 a i{
     color: #ffffff;
     font-size: 20px;
     background-color: #000000;
     width: 50px;
     height: 50px;
     display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all .5s;
      
  }
  .icon-box1 a:hover i{
      background-color: #db292e;
      transform: translateY(-5px);
  }
  hr {  
      height: 1px;  
      background-color: rgb(212, 212, 212);  
      border: none;  
      margin: 0;
  }  
  .copy-line{
      padding: 20px 0px;
      color: #ececec;
      text-align: center;
      margin: 0;
      font-size: 16px;
  }
  .copy-line a{
      color: #df242a;
      font-weight: 500;
  }
  /* banner section */
  .sets-section2 {
    background-image: url(../images/banner-img.jpg);
    background-repeat: no-repeat;
   height: 33vh;
    display: flex;
    justify-content: center;
    align-items: center;
 }
 .main-title{
  color: #000000;
  font-weight: 700;
  text-align: center;
 }
 .line-text-box{
  display: flex;
  color: #000000;
  column-gap: 10px;
  justify-content: center;
 }
 .line-text-box a,  .line-text-box  div{
  color: #000000;
  font-weight: 500;
  transition: all .5s;
 }
 .line-text-box a:hover{
  color: #D72324;
 }
 .line-text-box i{
  color: #000000;}
/* contact page */
.form-box{
  background-color: #ededed;
  padding: 40px;
}
.input-box{
width: 100%;
padding: 10px 20px;
border: none;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.contact-list{
padding: 0px;
}
.contact-list li{
list-style: none;
display: flex;
align-items: center;
column-gap: 20px;
}
.contact-list li a{
display: block;
width: 80%;
color: #ffffff;
text-decoration: none;
}
.contact-list li i{
background-color: #db292e;
color: #ffffff;
border-radius: 50%;
width: 60px;
height: 60px;
display: flex;
justify-content: center;
align-items: center;
font-size: 25px ;
}
.send-btn{
  background-color: #db292e;
  width: 100%;
  height: 100%;
  border: none;
  color: #ffffff;
 font-weight: 600;
 position: relative;
 z-index: 1;
}
.send-btn::after{
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: #000000;
  top: 0px;
  left: 0px;
  z-index: -1;
  transform: scale(0);
  transform-origin: bottom left;
  transition: all .5s;
  }
  .send-btn:hover:after{
      transform: scale(1);
      transform-origin: bottom left;
  }
  .send-btn::before{
      content: "";
      position: absolute;
      width: 50%;
      height: 100%;
      background-color: #000000;
      top: 0px;
      right: 0px;
      z-index: -1;
      transform: scale(0);
      transform-origin: top right;
      transition: all .5s;
      }
      .send-btn:hover::before{
          transform: scale(1);
          transform-origin: top right;
      }
.social-media {
        padding-left: 0;
    }
    .social-media li {
        float: left;
        list-style: none;
        margin-right: 18px;
    }
    .social-media li i {
        font-size: 22px;
        color: #000000;
        margin: 10px;
        transition: all .5s;
    }
    .social-media li a{
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background-color: #cecece;
      transition: all .5s;
    }
    .social-media li a:hover{
      background-color: #D72324;
    }
    .social-media li a:hover i{
      color: #cecece;
    }
    .sub-title{
      color: #000000;
    }
    .text-para{
      text-align: justify;
      font-size: 17px;
    }
    .border-img{
      border: 8px solid #ffffff;
    }
    .border-img1{
      border: 4px solid #ffffff;
    }
    .heading-about{
      color: #ffffff;
    }
    .why-heding{
      font-weight: bold;
      letter-spacing: 1px;
  }
  .swing {
    animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center -10px;
    float:left;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
    background-color: #df242a;
    color: #ffffff;
    padding: 10px 20px;
    transition: all .5s;
}
.swing:hover{
    color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    text-decoration: none;
}
.swing:after{
    content: '';
    position: absolute;  
    width: 30px; height: 30px;  
    border: 1px solid #999;
    top: -32%; left: 40%;
    z-index: 0;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}
/* nail */
.swing:before{
    content: '';
    position: absolute;
    width: 5px; height: 5px;
    top: -20px;left: 50%;
    z-index: 5;
    border-radius: 50% 50%;
    background: #999;
}
 .heading-about{
  width: 15%;
  height: 4px;
  background-color: #ffffff;
  position: relative;
  margin-bottom: 20px;

 }
 .heading-about::after{
  content: "";
  position: absolute;
  background-color: #D72324;
  width: 40%;
  height: 4px;
  left: 0px;
  top: 0px;

 }
@keyframes swing {
    0% { transform: rotate(5deg); }
    100% { transform: rotate(-5deg); }
}
/* gallery page */
.gallery-box a{
  overflow: hidden;
  display: block;
  border-radius: 8px;
  position: relative;
 }
 .gallery-box a::after{
  content: "";
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 90%;
  background-color: #b50000d7;
  position: absolute;
  left: 5%;
  top: 5%;
  transform: scale(0) rotate(0deg);
  transition: all .6s;
 }
 .gallery-box a:hover:after{
    transform: scale(1) rotate(360deg);
    
 }
 .photo-gallery {
  transition: all 1s;

 }
 .gallery-box a:hover .photo-gallery, .photo-gallery:hover{
  transform: scale(1.2);
 }
 /* slider nav button */
 .owl-nav button.owl-next,
 .owl-nav button.owl-prev {
  width: 40px;
  height: 40px;
  border-radius: 0 !important;
  opacity: 0;
  transition: all .5s;
  
}
.owl-nav button.owl-next{
  transform: translateX(10px);
}
 .owl-nav button.owl-prev{
  transform: translateX(-10px);
 }
.owl-carousel:hover .owl-nav button.owl-next,
.owl-carousel:hover .owl-nav button.owl-prev {
  transform: translateX(0px);
  opacity: 1;
}

.owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 35%;
}
 .owl-theme .owl-nav [class*=owl-]{
  background-color: #EE373C !important;
  color: #ffffff !important;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #99627A50;
  color: #99627A;
}
  /* counter section */
  .bg-color-counter{
    background-color: #FFDCDC;
}
.counter-box{
    background-color: #FFFFFF;
    box-shadow: #00000059 0px 5px 15px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 30px;
    border-radius: 10px;
}
.counter-img{
    width: 30%;
}
.counter-img img{
    object-fit: contain;
}
.counter-text{
    font-weight: 600;
    margin: 0;
    color: #000000;
}
.textpara1{
  font-size: 18px;
  text-align: justify;
  line-height: 1.7rem;
}
.heading-services{
  font-weight: 300;
}
.services-list li{
  font-size: 18px;
  text-align: justify;
  line-height: 2.5rem;
  list-style: disc;
}
.video-box{
  border: 2px solid #ffffff58;
}
@media (min-width:768px) {
  .logo-box{
    width: 16%;
     }
     .sub-box-block{
      padding:40px;
    }
    .text-block{
      font-size: 49px;
    }
    .images-about1{
      width: 40%;
    }
    .images-about2 {
      width: 20%;
      right: 27%;
      top: 5%;
    }
    .images-about3 {
      width: 15%;
      right: 50%;
      bottom: 0%;
      display: none;
    }
    .images-about4 {
      width: 20%;
      right: 17%;
      bottom: 0%;
    }
    .whatsappimgbox{
      width: 6%;
    }
}
@media (min-width:992px) {
  .logo-box{
 width: 10%;
  }
  .sub-box-block{
    padding:40px 90px;
  }
  .images-about1{
    width: 60%;
    transform: rotate(-8deg);
    
  }
  .images-about2 {
    width: 20%;
    right: 27%;
    top: 5%;
  }
  .images-about3 {
    width: 20%;
    right: 50%;
    bottom: -14%;
    display: block;
  }
  .images-about4 {
    width: 34%;
    right: 17%;
    bottom: 0%;
  }
  .whatsappimgbox{
    width: 3%;
  }
 
}
@media (min-width:1440px) {
  .navbar-nav{
    column-gap: 20px;
  }
  .navbar-nav li a{
    font-size: 20px;
  }
}