@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}


body {
   font-family: "Raleway", sans-serif;
   background-color: rgb(245, 245, 245);

}

:root {
   --primary-color: black;
   --secoundary-color: rgb(26, 26, 26);
   --third: rgb(17, 37, 66);
   --margin-block: 3rem;
   --padding-block: 3rem;

}

h2 {
   font-size: 36px;
   font-weight: 600;
}


a {
   text-decoration: none;
   color: black;
}

p {
   margin-bottom: 0;
}

.commonBtn {
   border-radius: 10px;
   /* background-color: var(--third); */
   padding: 10px 25px;
   display: inline-block;
   margin-block: 10px;
   transition: all 0.3s ease;
   background-color: rgba(233, 40, 40, 0.942)!important;
   color: #fff !important;
   width: max-content;
   border: 2px solid transparent;

}
.commonBtn2 {
   border-radius: 10px;
   background-color: var(--third)!important;
   padding: 10px 25px;
   display: inline-block;
   margin-block: 10px;
   transition: all 0.3s ease;
   color: #fff !important;
   width: max-content;
   border: 2px solid transparent;
   font-weight: 500;

}
/* .commonBtn2:hover {
   background-color: var(--third)!important;
   border-color: white;
   color: #fff !important;
} */


.commonBtn2:hover {
   background-color:black !important;
   border-color: white;
   color: black;
}

/* Navbar */


header {
   position: sticky;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   z-index: 9999;
   background-color: white;
}

.myNav .nav-link {
   margin-left: 30px;
   font-weight: 500;
   color: rgba(233, 40, 40, 0.942);
   position: relative;
   padding: 5px !important;
   transition: all 0.3s ease;

}

.myNav .nav-link::before {
   content: '';
   background-color: rgba(233, 40, 40, 0.942);
   height: 2px;
   width: 0%;
   position: absolute;
   left: 0;
   bottom: -1px;
   transition: all 0.3s ease;
   z-index: 2;

}

.myNav .nav-link:hover::before {
   width: 50%;
}

.myNav .nav-link.active::before {
   content: '';
   background-color: rgba(233, 40, 40, 0.942);
   color: rgba(233, 40, 40, 0.942) !important;
   height: 2px;
   width: 50%;
   position: absolute;
   left: 0;
   bottom: -1px;
   transition: all 0.3s ease;
   z-index: 2;
}

.myNav .nav-link.active{
      color: rgba(233, 40, 40, 0.942) !important;

}

.navbar-brand img {
    width: 180px;
    padding-top: 15px;
    display: flex;
    align-items: center !important;
    /* padding-bottom: 8px; */
}
/* top nav */
.top_nav {
   /* background-color: var(--secoundary-color); */
   background-color: rgba(233, 40, 40, 0.942);
   padding-block: 10px;
   color: white;
}

.top_nav_right a {
   color: white;
}

.top_nav i {
   font-size: 18px;
}

.top_nav_left span {
   font-size: 14px;
}

.top_nav_right {
   text-align: right;

}

.top_nav_right span {
   padding-left: 10px;

}

/* Top Nav For Mobile */

.accordion-header button{
   color: #fff !important;
   font-weight: 500;
   background-color: rgba(233, 40, 40, 0.942) !important;
   box-shadow: unset !important
}

.top_nav_for_mobile{
   background-color: rgb(245, 245, 245);
   padding: 10px;
   display: flex;
   flex-direction: column;
   /* gap: 10px; */


}

.top_nav_for_mobile div{
   border-top: 1px dotted #6b6969;
   padding: 10px;
}

.mobile_topNav{
   display: none;
}

.accordion-button::after{
   background-image: url(../img/plus.png) !important;
}

.phone_social_media span{
   height: 40px;
   width:40px;
   border-radius: 50%;
     background-color: rgba(233, 40, 40, 0.942) !important;
     display: flex;
     justify-content: center;
     align-items: center;
}
.phone_social_media i{
   color: #fff;
}

.my_carousel img {
   height: 630px;
   object-fit: cover;
   overflow: hidden;
}

.my_carousel h5 {
   font-size: 75px;
   font-weight: 800;
   text-shadow: 0 0 5px #000000;
   line-height: 5rem;

}

/* .my_carousel span {
   background-color: var(--third);
   padding: 2px 10px;
   color: white;
   text-shadow: unset !important;

} */

.my_carousel p {
   font-size: 17px;
   line-height: 1.4;
   margin-block: 1rem;
   text-shadow: 0 0 1px #000000;

}

.my_carousel .carousel-caption {
   text-align: left;
   left: 10%;
   top: 50%;
   transform: translateY(-50%);
   bottom: unset;
   right: unset;
   width: 40%;
}

/* .carousel_img {
   position: relative;
} */

/* .carousel_img::before {
   content: '';
   background-color: rgba(0, 0, 0, 0.7);

   position: absolute;
   top: 0;
   left: 0;
   width: 70%;
   height: 100%;
   clip-path: polygon(0 0%, 0% 220%, 100% 0);


} */

.my_carousel .carousel-caption a {
   background-color: #fff;
   color: var(--third);
   font-weight: 500;
}

.my_carousel .carousel-caption a:hover {
   background-color: transparent;
   color: #fff;
}


/* About Us section */
.greenfield_section {

   padding-block: var(--padding-block);
   background-color: var(--secoundary-color);
   margin-bottom: 3rem;
   color: #fff;

}

.greenfield_content_box h2 {
   width: 80%;
   font-weight: 600;
}

.both_grid_box_parent {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   width: 100%;


}

.experience_content_box {
   position: relative;
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 0.5px;
   border-radius: 10px;
   overflow: hidden;
   border: 3px solid #fff;
   border-right: unset;

}

.experience_content_box img {
   width: 100%;
   height: 400px;
   object-fit: cover;
   /* margin-top: 150px; */
   position: relative;


}

.ab_small_imgs img {
   height: 200px;
   border: 3px solid #fff;
}

.ab_small_imgs img:first-child {

   border-block: unset;
}

.ab_small_imgs img:last-child {
   border-bottom: unset;
}


.underline {
   width: 5%;
   height: 3px;
   background-color: var(--primary-color);
   margin: 0 auto;
}


.service_box {
   box-shadow: 0 0 20px #ccc;
   border-radius: 10px;
   overflow: hidden;
   width: 95%;
   margin: 0 auto;
   margin-block: 10px;
   transition: all 0.3s ease;

}



.service_content:hover {
   background-color: var(--secoundary-color);
   color: white;

}


.service_img {
   width: 100%;
   height: 250px;
   overflow: hidden;

}

.service_img img {
   height: 100%;
   width: 100%;
   object-fit: cover;
   transition: all 0.5s ease;
}


.service_box:hover img {
   transform: scale(1.15);

}

.service_content {
   padding: 20px;
   text-align: center;
   background-color: white;
   transition: all 0.3s ease;
   height: 200px;
}

.service_content h5{
   font-weight: 600;
}

.service_content p {
   margin-bottom: 0;
   margin-top: 1rem;
   max-height: 90px;
   overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
   color: #fff;
   height: 30px;
   width: 30px;
   border-radius: 50%;
   font-size: 16px !important;

   display: flex;
   align-items: center;
   justify-content: center;
   padding: 5px;
   background-color: var(--primary-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {

   font-size: 18px;

}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
   background-color: var(--secoundary-color);

}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    top: unset;
    bottom: -30px;
    left: 0;
    width: 100%;
}

/* vacation section */

.vacation {
   /* background: url(../img/black-texture.jpg); */
   margin-block: 40px;
}



.vacation_content_box {
   text-align: center;
}

.vacation_content_box p {
   width: 50%;
   margin: 0 auto;
   font-weight: 500;

}

.vacation_content_box h4 {
   font-size: 2rem;
   font-weight: 800;

}

.vision_mission_box{
   box-shadow: 0 0 25px #ccc;
   padding-block: 40px;
   padding-inline: 20px;
   border-radius: 10px;
   position: relative;
   margin-top: 100px;
   margin-bottom: 50px;
   background-color: var(--third);
   color: white;
   text-align: center;


}
.vision_mission_box1 .icon_box{
   background-color: var(--third);
}
.vision_mission_box2 .icon_box{
   background-color: var(--secoundary-color);
}
.vision_mission_box3 .icon_box{
   background-color: var(--third);
}
.vision_mission_box2{
   background-color: var(--secoundary-color);
}
.vision_mission_box h4{
   padding-top: 20px;
}



.icon_box{
   height: 90px;
   width: 90px;
   border-radius: 50%;
   background-color: black;
   color: white;
   font-size: 30px;
   border: 3px solid rgb(245, 245, 245);
   display: flex;
   justify-content: center;
   align-items: center;
   position: absolute;
   top: 0%;
   left: 50%;
   transform: translate(-50%, -50%);
}

/* travel Destination section */
.travel_destination {

   margin-top: 3rem;
   margin-bottom: 2rem;
}

.my_destination img {
   width: 100%;
   object-fit: cover;
   overflow: hidden;
   border-radius: 10px;
   border-bottom: 5px solid black;
   border-right: 5px solid black;

}

/* famous_destination */
.famous_destination_content img {
   width: 100%;
   object-fit: cover;
   overflow: hidden;
}

.famous_destination_box img {
   height: 400px;
   object-fit: cover;
   overflow: hidden;
   border-radius: 10px;
   text-align: center;

}

.famous_destination_box {
   position: relative;
   border-radius: 10px;
   overflow: hidden;
}

.famous_destination_box::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.4);


}

.famous_destination_content h4 {
   font-size: 24px !important;
}

.destination_content_box h5 {
   color: var(--secoundary-color);
   line-height: 1.5em;
}

.destination_content_box h4 {
   color: var(--secoundary-color);

   font-weight: 700;
   line-height: 1.2em;
}

.famous_destination_content p {
   line-height: 1.5em !important;
   font-size: 16px;
}


.famous_destination_box {
   position: relative;
   transition: all 0.3s ease;

}

.scale_text {
   position: absolute;
   bottom: 10%;
   left: 50%;
   transform: translateX(-50%);
   width: 70%;
   color: white;
   text-align: center;
   transition: all 0.3s ease;
   font-weight: 600;


}

.scale_text2 {
   text-align: center;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 70%;
   z-index: 9;
   color: #fff;
   font-weight: 600;
   opacity: 0;
   transition: all 0.3s ease;

}

.famous_destination_box:hover .scale_text2 {
   opacity: 1;


}

.famous_destination_box:hover .scale_text {
   opacity: 0;
}

/* adventure_section  */

.adventure_section {
   margin-block: var(--margin-block);


   background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url(../img/mybanner1.jpg) fixed;
   background-size: cover;
   overflow: hidden;
   background-position: center;
   color: white;
   padding-block: 100px;
   position: relative;


}

/* .adventure_section::before{
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   background-color: rgba(0, 0, 0, 0.6);
} */


.adventure_travel_left_content_box img {
   width: 100%;




}



.adventure_right_content_box {
   padding-left: 1rem;
   background: transparent;
   line-height: 1.5em;
}

.adventure_right_content_box h5 {

   line-height: 1.5em;

}

.adventure_travel_box li {
   margin-bottom: 0.5rem;
   list-style: circle;
}

.adventure_right_content_box h4 {

   font-size: 35px;
   line-height: 1.5em;
   font-size: 40px;
   font-weight: 700;
   line-height: 1.2em;
   padding-bottom: 10px;

}

.adventure_right_content_box p {

   line-height: 1.5em;
   font-size: 16px;
   margin-bottom: 1rem;
}

.adventure_section .carousel-item img {
   height: 380px;
   object-fit: cover;
}


/* travel_experience */
.travel_experience {
   background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/mybanner3.jpg) no-repeat fixed;
   background-position: center;
   background-size: 100% 100%;
   /* height: 800px; */
   color: white;
   /* margin-block: var(--margin-block); */
   padding-block: 100px;



}

.testimonial_box {
   background-color: rgba(0, 0, 0, 0.7);
   backdrop-filter: blur(5px);
   padding: 30px;
   border-radius: 10px;
   margin-top: 2rem;
   height: 180px;
   overflow: hidden;
   object-fit: cover;
}

.client_detail {
   display: flex;
   gap: 10px;
   padding-top: 20px;
   align-items: center;

}

.client_detail img {
   width: 60px;
   height: 60px;
   border-radius: 50%;
}

/* Pagination Dots */
  .slick-dots {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .slick-dots li {
    display: inline-block;
    margin: 0 5px;
  }

  .slick-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s;
  }

  .slick-dots .slick-active button {
    background: #007bff;
  }


/* .slider-container li{
   display: none;
} */

 .slider .slick-slide {
    padding: 0 10px; /* Adds horizontal space between slides */
    box-sizing: border-box;
  }

/* query */
/* .travel_experience::before {
   content: '';
   background-color: rgba(17, 37, 66, 0.8);
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   
} */


.travel_experience_box p {
   line-height: 1.5em;
   font-size: 16px;
}
.destination_box{
   text-align: center;
   width: 60%;
   margin: 0 auto;

}

.travel_experience_box{
   text-align: center;
   width: 60%;
   margin: 0 auto;
}


.travel_experience_box h4 {
   font-size: 50px;
   font-weight: 700;
   line-height: 1.2em;
   text-shadow: 0 0 5px #000000;
   padding-top: 100px;
}

.circle_img_box {
   height: 500px;
   position: relative;

}

.circle_img_box img {
   width: 150px;
   height: 150px;
   object-fit: cover;
   overflow: hidden;
   border-radius: 50%;
   position: absolute;
   top: 25%;
   right: 10%;
}

/* footer */
 .hero-section {
      border-top: 3px solid white;
      background: url('../img/footer\ img.jpeg') no-repeat center center/cover;
      margin-top: 0;
      color: white;
      padding: 100px 20px !important;
      position: relative;
      display: flex;
      align-items: center;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(17, 37, 66, 0.8);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    } 

    .info-box {
      /* background: rgba(255, 255, 255, 0.1); */
      padding-inline: 20px;
      border-radius: 10px;
      /* margin-top: 20px; */
      padding-bottom: 10px;
    }
    .info-box h4 {
      color: #fff;
      margin-bottom: 10px;
      font-weight: 600;
    } 

    

    .social-icons i {
      font-size: 20px;
      margin-right: 15px;
      color: #fff;
    } 

      
  
     .contact-info {
      /* background-color: rgba(12, 31, 52, 0.8); */

      padding-block: 10px;
      padding-inline: 20px;
      border-radius: 10px;
      margin-bottom: 10px;
      color: #fff;
      transition: all 0.3s ease;
     

    }
     .contact-info i {
      margin-right: 10px;
    }
    .contact-info:hover{
      background-color: rgb(0, 0, 0, 0.9);
      border: 2px solid white;
      padding-inline:20px;
    }

  
    /* ft second */
    .ft_second{
      background-color: #000000;
      padding-block: 15px;
      color: #fff;
      text-align: center;
    } 


    

/* whatsap css */
#whatsapp {
    position: fixed;
    right: 40px;
    bottom: 15%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    opacity: 1;
    z-index: 999;
}

#whatsapp #whatsappMain {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: rgba(255, 255, 255, 0);
    width: 70px;
    height: 70px;
    color: #40c351;
    z-index: 9;
    -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
    -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
    animation: zcwmini2 1.5s 0s ease-out infinite;
}

#whatsapp #whatsappMain:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    background-image: url('../img/whatsapp.png');
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-animation: zcwphone2 1.5s linear infinite;
    -moz-animation: zcwphone2 1.5s linear infinite;
    animation: zcwphone2 1.5s linear infinite;
}

@-webkit-keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-moz-keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-webkit-keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-moz-keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

/* whatsap css */





  





