@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Nunito Sans:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i');
.our__clients_image img{
    width: 100%;
    height: auto;
}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --primary: #FC766A;
    --white: #ffffff;
}

/* Chat  */
/* Chat boot Styling */
.chat-bar-collapsible {
  z-index: 9999999;
  position: fixed;
  bottom: 1%;
  right: 1%;
  
  color: #B31119;
  border-radius: 10px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.collapsible {
  z-index: 10000000000000;
  position: fixed;
  bottom: 1%;
  right: 1%;
  /* background-color: rgb(82, 151, 255);  */
   color: rgb(175, 20, 20);
  cursor: pointer;

  text-align: left;
  outline: none;
   font-size: 36px;
  border-radius: 10px 10px 10px 10px;
  /* border: 3px solid rgb(241, 38, 38);  */
 border: none;
}
.collapsible-1 {
  z-index: 100000000;
  position: absolute;
  bottom: 91%;
  right: 3%;
  /* background-color: rgb(255, 255, 255);  */
   color: rgb(255, 255, 255);
  cursor: pointer;
background-color: #B31119;
  text-align: left;
  /* outline: none; */
   font-size: 23px;
  /* border-radius: 10px 10px 10px 10px; */
  border: none;
  
}

.collapsible-2 {
  z-index: 10000000000000;
  
  /* background-color: rgb(82, 151, 255);  */
   color: rgb(175, 20, 20);
  cursor: pointer;

  text-align: left;
  outline: none;
   font-size: 36px;
 
  border-bottom: none;
}
.content__head{
  position: relative;
}




.content .content__head{
background-color: #B31119;
  display: flex;
  flex-direction: row;
  align-items: inherit;
  justify-content: space-between;
  
}
.content .content__head > p{
  
  color: #ffffff;
  text-align: left ;
  padding: auto;
  font-weight: 600;
  border-radius: 15px;
  /* margin-right: 10px; */
  margin-top: 5px;
  width: 100%;
  
 }
 
.content .content__head > i{
 margin-right: 10px;
 margin-top: 5px;
 font-size: 25px;
}


.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
  border-radius: 15px;
}

.full-chat-block {
  width: 320px;
  background: rgb(241, 237, 237);
  text-align: center;
  overflow: auto;
  scrollbar-width: none;
  height: max-content;
  transition: max-height 0.2s ease-out;

}


.outer-container {
  min-height: 380px;
  bottom: 0%;
  position: relative;
 
}

.chat-container {
  max-height: 380px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  scroll-behavior: smooth;
  hyphens: auto;
border-radius: 10px;
}

.chat-container::-webkit-scrollbar {
  display: none;
}

.chat-bar-input-block {
  display: flex;
  float: left;
  box-sizing: border-box;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  background-color: rgb(235, 235, 235);
  border-radius: 10px 10px 0px 0px;
  padding: 10px 0px 10px 10px;
}

.chat-bar-icons {
  display: flex;
  justify-content: space-evenly;
  box-sizing: border-box;
  width: 25%;
  float: right;
  font-size: 20px;
  background-color: rgb(156, 8, 8);
  outline: none;
  /* box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3); */
  padding: 10.5px 0;
  border-radius: 10px;
  margin: 0 10px;
  color: #fff;
}

#chat-icon{
  color: #B31119;
}
#chat-icon:hover {
  opacity: .7;
}

/* Chat bubbles */

#userInput {
  width: 75%;
  cursor: pointer;
  
}

.input-box {
 
  float: left;
  border: none;
  box-sizing: border-box;
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
  color: #000;
  background-color: white;
  outline: none;
  /* box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.5); */
}

.userText {
  color: white;
  font-family: Helvetica;
  font-size: 16px;
  font-weight: normal;
  text-align: right;
  clear: both;
}

.userText span {
  line-height: 1.5em;
  display: inline-block;
  background: #5ca6fa;
  padding: 10px;
  border-radius: 8px;
  border-bottom-right-radius: 2px;
  max-width: 80%;
  margin-right: 10px;
  animation: floatup .5s forwards
}

.botText {
  color: #000;
  font-family: Helvetica;
  font-weight: normal;
  font-size: 16px;
  text-align: left;
}

.botText span {
  line-height: 1.5;
  display: inline-block;
  background: #e0e0e0;
  padding: 10px;
  border-radius: 8px;
  border-bottom-left-radius: 2px;
  max-width: 80%;
 
  animation: floatup .5s forwards
}

@keyframes floatup {
  from {
      transform: translateY(14px);
      opacity: .0;
  }
  to {
      transform: translateY(0px);
      opacity: 1;
  }
}

@media screen and (max-width:600px) {
  .full-chat-block {
      width: 100%;
      border-radius: 0px;
  }
  .chat-bar-collapsible {
      position: fixed;
     
      width: 100%;
  }

}

/* Chat End */
/* Menu Styling Starts */

.navbar{
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    
    padding: 0 10px;
}
.logo__container img{
    width: 75%;
    height: auto;

}

.nav__list{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.nav__list > li{
    list-style: none;
}
.nav__list > li > a{
    text-decoration: none;
    color: black;
    font: 1.2rem;
    font-weight: 600;
    margin: 0 20px;
}
.nav__list > li > a:hover{
   color: #FC766A;
   transition: .5s ease-in-out;
   padding-bottom: 8px;
   border-bottom: 3px solid #FC766A;
  
}
.quote a{
 background-color: #FC766A; 
 color: #fff;
 font-weight: 500; 
 border: none;
}
.quote a:hover{
    color: black;
    font-weight: 600;
    background-color: #FC766A; 
}



/* toggle */
.menu-button-container {
  display: none;
  height: 50%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #FC766A;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(45deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(248, 91, 91, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-45deg);
}
@media (min-width:320px) and (max-width: 601px) {
  .logo__container {
    width: 50%;
    height: auto;
  }
  .logo__container img{
    width: 100%;
    height: auto;
  } 
  .navbar{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  
}
@media (min-width:600px) and (max-width: 1024px) {
  .logo__container {
    width: 30%;
    height: auto;
  }
  .logo__container img{
    width: 100%;
    height: auto;
  } 
  .navbar{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .quote{
    font: 1rem;
  }
}
@media (min-width: 774px) and (max-width: 1110px) {
.navbar ul > li > a , .quote > a{
  font-size: 12px;
  margin-left: .5rem;
  margin-right: .5rem ;
}
}

@media (max-width: 774px) {
  
  .navbar{
    z-index: 9999999;
    display: flex;
    flex-wrap: nowrap;
  }
  .menu-button-container {
    display: flex;
  }
  .nav__list {
    position: absolute;
    top: 1rem;
    margin-top: 50px;
    right: 0;
    flex-direction: column;
    width: inherit;
    justify-content: center;
    align-items: center;
    z-index: 111;
  }
  .nav__list {
    display: block;
  }

  #menu-toggle ~ .nav__list  > li > a {
    display: none;
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .nav__list >li > a {
    display: block;
    /* border: 1px solid #333; */
    height: 2em;
    /* padding: 0.5em; */
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1) !important;
  }
  .nav__list > li > a {
    display: flex;
    justify-content: center;
    margin: 0;
    /* padding: 0.5em 0; */
    width: 100%;
    border: none !important;
    padding-bottom: 0 !important;
    color: rgb(255, 255, 255);
    background-color: #FC766A;
  }
  .nav__list > li > a:hover {
    color: #000;
  }
  .nav__list > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}




/* Menu styling End */
@media screen and (min-width: 320px) and (max-width:550px) {
  .hero__img img{
    min-height: 210px;
  }
  .hero__text{
    position: absolute;
   
    top: 12%;
    left: 6%;
    color: var(--white);
    width: 95% !important;
}
  .hero__text h1{
    width: 100%;
    font-size: 1.0rem !important;
    font-weight: 600;
}
.hero__text p{
    font-size: 0.7rem !important;
    margin-bottom: 0;
}
.about__btn{
  margin-left:2rem !important;
  margin-top: 0 !important;
  font-size: .5rem;
}
.right__border2 {
  top: 67% !important;
  left: 27.2% !important;
 
}
.our__clients_image img{
  width: 100%;
  min-height: 180px;
}
.our__clints h6{
  min-width: 95px;
}
.about__landingPage__image{
  height:300px ;
}
}
@media screen and (min-width: 550px) and (max-width:850px) {
  .about__landingPage__image{
    height:350px ;
  }
  
  .hero__text{
    position: absolute;
   
    top: 12%;
    left: 6%;
    color: var(--white);
    width: 90% !important;
}
  .hero__text h1{
    width: 100%;
    font-size: 1.5rem !important;
    font-weight: 600;
}
.hero__text p{
    font-size: 1.0rem !important;
}
.about__btn{
  margin-left:4rem !important;
}
.right__border2 {
  top: 66%;
  left: 27.2% !important;
 
}
}
@media screen and (min-width: 850px) and (max-width:1024px) {
  .hero__text{
    position: absolute;
    z-index: 1000;
    top: 12%;
    left: 6%;
    color: var(--white);
    width: 100%;
}
  .hero__text h1{
    width: 100%;
    font-size: 2.0rem !important;
    font-weight: 600;
}
.hero__text p{
    font-size: 1.3rem !important;
}
}
@media screen and (min-width: 1024px) and (max-width:1165px) {
  .hero__text{
    position: absolute;
    z-index: 1000;
    top: 12%;
    left: 6%;
    color: var(--white);
    width: 60%;
}
.hero__text h1{
  font-size: 2rem !important;
}
.hero__text p{
  font-size: 1.3rem !important;
}

}


.hero{
    width: 100vw;
    height: auto;
    position: relative;
}
.hero img{
    height: 100%;
    width: 100%;
    
}
.hero__border .left__border {
    position: absolute;
    z-index: 100;
    top: 5%;
    left: 3%;
    background-color: #FC766A;
    width: 5px;
    height: 75%;
}
.right__border1 {
    position: absolute;
    z-index: 100;
    top: 5%;
    left: 35%;
    background-color: #FC766A;
    width: 5px;
    height: 8.5%;

}
.right__border2 {
    position: absolute;
    z-index: 100;
    top: 65%;
    left: 27.7%;
    background-color: #FC766A;
    width: 5px;
    height: 15%;

}
.upper__border{
 position: absolute;
 z-index: 1003333;
 top: 5%;
 left: 3%;
background-color: #FC766A;
height: 5px;
 width: 32%;
}
.bottom__border{
 position: absolute;
 z-index: 100;
 top: 79.56%;
 left: 3%;
background-color: #FC766A;
height: 5px;
 width: 25%;
}

.hero__text{
    position: absolute;
    z-index: 1000;
    top: 12%;
    left: 6%;
    color: var(--white);
    width: 50%;
}
.hero__text a{
    background-color: #FC766A;
     color: #fff; 
     font-weight: 600; 
     margin-left: 34%;
      border: none;
      cursor: pointer;
}
.hero__text a:hover{
   color: #000;
   background-color: #FC766A;

}
.hero__text h1{
    font-size: 3.5rem;
    font-weight: 600;
}
.hero__text p{
    font-size: 1.6rem;
}
/* Media Query */


/* About Section Styling Start */
@media (min-width:320px) and (max-width: 480px) {
  .about__landingPage{
    display: flex;
    flex-wrap: wrap;
    
    justify-content: center;
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .about__landingPage__image{
    width: 75% !important;
    height:310px !important ;
    align-self: center;
  }
  .about__landingPage__text{
    grid-area: about__landingPage__text;
    /* padding-left: 5%; */
    height: auto;
    width: 100% !important;
    margin-right: 3%;
    margin-bottom: 4rem;
}
.about__landingPage__text a{
  font-size: .8rem;
}
}
@media (min-width:481px) and (max-width: 768px) {
  .about__landingPage{
    display: flex;
    flex-wrap: wrap;
    
    justify-content: center;
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .about__landingPage__image{
    width: 60% !important;
    align-self: center;
  }
  .about__landingPage__text{
    grid-area: about__landingPage__text;
    /* padding-left: 5%; */
    height: auto;
    width: 100% !important;
    margin-right: 3%;
    margin-bottom: 4rem;
}
}
@media (min-width:768px) and (max-width: 1024px) {
  .about__landingPage{
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: -2.5rem;
  }
}

.about__landingPage{
    margin-top: 5%;
    /* display: grid;
    grid-template-areas: 'about__landingPage__image  about__landingPage__text';
    grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr)); */
    display: flex;
    padding: 4%;
}
.about__landingPage__image{
    grid-area: about__landingPage__image;
    height: 430px;
    width: 40%;
    /* width: 480px; */
    border: 5px solid #FC766A ;
    margin: 3% 14% 3% 14%;
    position: relative;
    padding-left: 5%;
}
.about_img1{
    height: 60%;
    width: 90%;
    position: absolute;
    z-index: 100;
    top: -15%;
    left: -25%;
    border-radius: 20px;
}
.about_img2{
    height: 60%;
    width: 90%;
    position: absolute;
    z-index: 101;
    top: 20%;
    left: 25%;
    border-radius: 20px;
}
.about_img3 {
    height: 60%;
    width: 90%;
    position: absolute;
    z-index: 103;
    top: 50%;
    left: -25%;
    border-radius: 20px;
}



.about__landingPage__text{
    grid-area: about__landingPage__text;
    /* padding-left: 5%; */
    height: auto;
    width: 45%;
    margin-right: 3%;
}
.about__landingPage__text h5{
    font-weight: 600;
}
.about__landingPage__text h6{
    width: 15%;
    height: 3px;
    background-color: #FC766A;
    border-radius: 25px;
}
.about__landingPage__text a{
    background-color: #FC766A;
    color: white;
}
.about__landingPage__text a:hover{
    background-color: #FC766A;
    color: rgb(0, 0, 0);
}
/* About Section Styling End */


 /* Industries we server Styling start  */
 .industries__server{
    background-color: #ebebeb;
    padding-left: 7%;
    padding-right: 7%;
    padding-top: 4%;
    padding-bottom: 5%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}
.industries__server .service__btn{
  background-color: #FC766A;
  text-align: center;
  text-decoration: none;
  align-self: center;
  color: white;
  margin: 1.5rem;
  padding: .3rem 2rem;
  }

  .industries__server .service__btn:hover{
    background-color: #FC766A;
    
    color: rgb(0, 0, 0);
    
    }

.industries__server h5{
    font-size: 1.3rem;
    font-weight: 600;
}
.industries__server h6{
   
    align-self: center;
margin-bottom: 1REM;
    width: 18%;
    height: 3px;
    background-color: #FC766A;
    border-radius: 25px;
}
.industries__server h1{
    font-size: 3.3rem;
    font-weight: 600;

}
.industries__server p{
    font-size:1.5rem;
    font-weight: 500;
}
.card__body{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
   margin-top: 3rem;
    grid-gap: 1rem;
    grid-row-gap: 5rem;
}
.each__card{
    background-color: #fff;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.5);
}
.each__card .each__card__image{
    background-color: #FC766A;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    text-align: center;
    justify-content: center;
    align-self: center;
    margin-top: -3rem;
    margin-left: 35%;
}
.each__card .each__card__image img{
  padding-top: 10px;
}
.each__card .each__card__text h4{
    font-size: 1.3rem;
    font-weight: 600;

}
.each__card .each__card__text p{
    font-size: .9rem;
    font-weight: 400;
    text-align: left;
    padding: 0 5px;
}

/* Our Client Section */
.our__clints h5{
  margin-left: 7%;
  font-size: 1.8rem;
}
.our__clints h6{
    width: 7%;
    height: 3px;
    margin-left: 7% ;
    background-color: #FC766A;
    border-radius: 25px;
}
.clients__logo{
    display: flex;
    margin: 1.5rem 1rem 3rem 1rem;
    flex-wrap: wrap;
   justify-content: space-evenly;
   align-items: center;
}
.clients__logo .each__logo{
    background-color: #fff;
    height: 100px;
    width: 100px;
    border: 2px solid #FC766A;
    border-radius: 50%;
   margin-right: 15px;
   margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    
    align-items: center;

}
.each__logo h5{
   font-weight: 500;
   color: #FC766A;
   font-size: 23px;

}   
.each__logo img{
    height: 100px;
    width: 100px;
    border-radius: 50%;
}
.our__clients_image{
    position: relative;
}
.our__clients__text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 80%;
}
.our__clients__text h1{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom:2rem;
}
.our__clients__text .project__btn{
    margin-top:2rem;
    background-color: #FC766A;
    color: white;
    text-decoration: none;
    padding: 10px 20px ;
    border-radius: 10px;
}
.our__clients__text .project__btn:hover{
    color: #000;
}
/* media Query */
@media screen and (min-width:320px ) and (max-width:480px) {
  .our__clints {
    margin-bottom: 1rem;
    padding-bottom: 0;
  }
  .our__clients__text h1{
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom:.2rem;
}
.our__clients__text .project__btn{
  font-size: 1rem;
  margin-top:0.2rem;
  background-color: #FC766A;
  color: white;
  text-decoration: none;
  padding: 2px 10px ;
  border-radius: 10px;
}
}
@media screen and (min-width:480px ) and (max-width:768px) {
  .our__clints {
    margin-bottom: 1rem;
    padding-bottom: 0;
  }
  .our__clients__text h1{
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom:1rem;
}
.our__clients__text .project__btn{
  font-size: 1rem;
  margin-top:0.2rem;
  background-color: #FC766A;
  color: white;
  text-decoration: none;
  padding: 3px 10px ;
  border-radius: 13px;
}
}
@media screen and (min-width:769px ) and (max-width:1100px) {
  .our__clints {
    margin-bottom: 1rem;
    padding-bottom: 0;
  }
  .our__clients__text h1{
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom:1rem;
}
.our__clients__text .project__btn{
  font-size: 1rem;
  margin-top:0.2rem;
  background-color: #FC766A;
  color: white;
  text-decoration: none;
  padding: 5px 20px ;
  border-radius: 1rem;
}
}


/* media Query for Index Service Section */
@media screen and (min-width:320px ) and (max-width:480px) {
  .industries__server{
    text-align: left;
    align-items: flex-start;
  }
  .industries__server h6{
    align-self: self-start;
  } 
  .industries__server h1{
    font-size: 100%;
    font-weight: 600;
  }  
  .industries__server p{
    font-size: 80%;
    font-weight: 500;
    text-align: left;
  }  
  
}
@media screen and (min-width:480px ) and (max-width:800px) {
  .industries__server{
    text-align: left;
    align-items: flex-start;
  }
  .industries__server h6{
    align-self: self-start;
  } 
  .industries__server h1{
    font-size: 100%;
    font-weight: 600;
  }  
  .industries__server p{
    font-size: 80%;
    font-weight: 500;
    text-align: left;
  }  
  
}
 /* Industries we server Styling End  */

 /* Testimonials styling start */

.testimonials {
    
    width: 100vw;
    height: auto;
   
   
  }
  .testimonials h5 {
    font-size: 1.7rem;
    color: #000000;
    margin-bottom: 0.5rem;
    /* margin-left: 2rem; */
  }
  .testimonials h3 {
    width: 17%;
    height: 3px;
    background-color: #b31119;
    
    border-radius: 25px;
    /* margin-left: 2rem; */
  }
  
  .testimonials__body {
    padding-top: 2rem;
    padding-bottom: 1rem;
    width: 100%;
    height: auto;
    background-color: rgb(212, 212, 212);
    padding-left: 1%;
    display: flex;
    text-align: center;
    justify-content: center;
  }
  @media screen and (max-width: 800px) {
    .testimonials__body{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  
    } 
    .testimonials__body__text{
      width: 95vw !important;
    }
    .testimonials__card{
      width: 100% !important;
      margin-left: 0 !important;
      margin-right: 1.3rem !important;
      
    }
    .testimonials__body__slider{
      width: 95vw !important;
    }
  }
  .testimonials__body__text {       
    width: 25%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .testimonials__body__text h2 {
    color: #000000;
    margin-left: 0;
    padding-left: 0;
    font-weight: 700;
    margin-top: .5rem;
    font-size: 2.1rem;
  }
  .testimonials__body__text h6 {
    font-size: 1.0rem;
    padding-top: 2rem;
    line-height: 1.5;
    color: #fff;
  }

  .testimonials__body__slider {
    width: 64%;
    z-index: 999999;
  }
  .testimonials__body__text__inner{
    margin-top: 2rem;
  }
  .testimonials__body__text__inner p{
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .testimonials__card {
    width: 100% !important;
    height: auto;
    color: rgb(10, 10, 10);
    padding: 10px;
    margin: 10px;
    /* border: 2px solid red; */
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    margin-top: 3rem;
    border-radius: 10px;
 
  }
 
  
  .testimonials__card img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    position: absolute;
    top: -3rem;
    left: 45%;
  }
  .testimonials__card h6 {
   margin-top: 1.8rem;
  }
  .testimonials__card p,
  h4 {
    text-decoration: none;
    
  }
  .testimonials__card p {
    text-decoration: none;
    font-size: 1rem;

    text-align: left;
  }
  .carousal__link{
    display: flex;
    margin-left: 7%;
  }
  .carousal__link a{
    display: flex;
    width: 30px;
    height: 30px;
    background-color: white;
    margin: 10px;
    align-items: center;
    justify-content: center;
    color: #FC766A;
    cursor: pointer;
  }
  /* Testimonials styling end */

 /*Styling for Before footer red Strip  */

 
.above__footer{
    background-color: #FC766A;
    padding-left: 4vw;
    padding-right: 3vw;
    padding-top: 2rem;
    padding-bottom: 2rem;
    
    color: #fff;
    display: flex;
    text-align: center;
    justify-content:baseline;
    
  }
  @media screen and (max-width: 820px) {
    .above__footer{
      flex-wrap: wrap;
      text-align: left;
    }
    
  }
  .abv__footer__one h5{
    text-align: left;
    padding-right: 10;
    width: 50;
    margin-top: .5rem;
    font-size: 3rem;
  }
  
  .abv__footer__two{
    width: 50%;
    height: auto;
  }

  .Above_footer {
    background-color: #b31119;
    padding-left: 5rem;
    padding-right: 5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100vw;
  }
  .above_footer .btn{
    margin-top: 1rem;
    padding-left: 1rem;
   
    background-color: white;
    color: black;
    
    /* float: right !important;  */
  }
  .Above_footer .btn .fa-solid{
    margin-right: 1rem;
  }
  @media screen and (max-width: 500px) {
    
    .abv__footer__two{
      width:100%;
      height: auto;
    }
  }
  

 /* Footer Styling Start */

 .footer__main {
    height: auto;
    padding-left: 3vw;
    padding-right: 3vw;
    background-color: rgb(0, 0, 0);
    height: auto;
     margin-bottom: 2rem;
     padding-top: 3rem;
     color: #fff;
    
  }
  .footer__body{
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  }
  @media screen and (min-width:320px) and (max-width: 600px) {
    .footer__col__2{
      margin-left: 0 !important;
      padding-left: 0 !important;
      
    }
    .list-items {
      padding-left: 10px !important;
    }
    .footer__col__2 h4{
      margin-left: 10px !important;
    }
    .footer__col__4 h4{
      margin-left: 0 !important;
    }
    .footer__col__4 a{
      margin-left: -0.6rem !important;
    }
    .footer__col{
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }
    .footer__col__1 h6{
      text-align: left;
    }
    .footer__col__2 .list-items{
      display: flex;
      flex-direction: column;
      align-items: flex-start !important;
      justify-content: flex-start !important;
    }
    .footer__col__4 .list-items{
      display: flex;
      flex-direction: column;
      align-items: flex-start !important;
      justify-content: flex-start !important;
    }
    
  }
  .footer__col{
   
   height: auto;
   padding: 10px;
  
  }

  .list-items > li{
   
    list-style-type: none;
   
   }

   .list-items > li > a{
    text-decoration: none;
    color: white;    
   }
  .footer__image img {
    width: 100%;
    height: auto;
  }
  .footer__col__2{
    margin-left: 4rem;
  }
  .footer__col__3{
    margin-left: 1rem;
  }
  .footer__col__1 h6{
    line-height: 1.6;
  }
  .footer__col__socialLink{
    margin-top: 1.5rem;
  }
  
  .footer__col__header{
    color: #FC766A;
    
  }
  .footer__col__3 > h4, .footer__col__2 >h4{
    margin-left: 2rem;
  }  
  
  .footer__bottom .copyright-text{
    padding-left: 0;
    margin-left: 0;
    padding-bottom: 2rem;
    padding-top: 0;
    margin-top: 0;
  }

  .footer__col__4 .footer__col__header ul > li{
    margin-left: 0 !important ;
    padding-left: 0 !important;
  }

  .footer__col__2 .list-items, h4{
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: center !important;
  }
  .footer__col__4 .list-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .footer__col__4 h4{
    margin-left: 1.8rem;
  }

  .footer__col__socialLink{
    margin-top: 1.5rem;
  }
  .footer__col__socialLink a{
    margin: 10px;
    color: #fff;
  }
  .footer__col__socialLink a:hover{
    color: #FC766A;
  }
 /* Footer Styling End */