@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap");

/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;900&display=swap');
/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Spartan:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Spartan:wght@100..900&display=swap');


/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 4rem;



    /*========== Colors ==========*/

    --first-color: hsl(170, 77%, 55%);
    --first-color-alt: hsl(129, 44%, 94%) ;
    --second-color:  hsl(34, 94%, 87%);
    --title-color: hsl(0, 0%, 13%);
    --text-color:  hsl(154, 13%, 32%);
    --text-color-light: hsl(60, 1%, 56%) ;
    --body-color:  hsl(0, 0%, 100%);
    --container-color:  hsl(0, 0%, 93%);
    --border-color:  hsl(129, 36%, 85%);
    --border-color-alt: hsl(113, 15%, 90%) ;

    --clr:hsl(0, 0%, 100%);

    --title-color: hsl(250, 8%, 15%);
    --text-color: hsl(250, 8%, 35%);
    --body-color: hsl(250, 60%, 98%);
    --container-color: #fff;
    --shadow: hsla(0, 0%, 15%, .1);
    --scroll-bar-color: hsl(250, 12%, 90%);
    --scroll-thumb-color: hsl(250, 12%, 80%);

    /*========== Font and typography ==========*/
    --body-font: 'Poppins', sans-serif;
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;

    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-bold: 600;

    /*========== Margenes Bottom ==========*/
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100; 
 }

/* Responsive typography */
@media screen and (max-width: 992px) {
    :root {
        --biggest-font-size: 2rem;
        --h1-font-size: 1.5rem;
        --h2-font-size: 1.25rem;
        --h3-font-size: 1rem;
        --normal-font-size: .938rem;
        --small-font-size: .813rem;
        --smaller-font-size: .75rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

body {
    background-color: var(--body-color);
    color: var(--text-color);
}

h2, h3, h4 {
    color: var(--title-color);
    font-weight: var(--font-medium);
}

h3 span {
    color: var(--first-color);
}


.main-btn{
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    background-color: transparent;
    border: 0.0625rem solid var(--primary-color);
    padding: .375rem 1.875rem;
    border-radius: 3.75rem;
    line-height: 1.75rem;
    display: inline-block;
    transition: all 0.3s ease-out 0s;
}

.main-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-white);
}

h3 {
    margin-bottom: 1.875rem ;
    line-height: 2.875rem;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--primary-text);
    font-family: var(--secondary-font);
}

h3 span {
    color: var(--secondary-color);
}

h5 {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary-text);
    font-weight: 500;
    font-family: var(--secondary-font);
}

h6{
    font-size: .875rem;
    color: var(--primary-text);
    margin-bottom: .9375rem;
    text-transform: uppercase;
    font-weight: 300 ;
    font-family: var(--secondary-font);
}
p{
    font-size: 1rem;
    color: var(--text-black);
    line-height: 1.625rem;
}


ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
}

button,
input {
    border: none;
    outline: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
    padding: 7rem 0 2rem;
}

.section__title,
.breadcrumb__title {
    font-size: var(--h1-font-size);
}

.section__title,
.breadcrumb__subtitle {
    margin-bottom: var(--mb-3);
}

.section__title,
.breadcrumb__title,
.breadcrumb__subtitle {
    text-align: center;
}
 /* shop page start */

 .breadcrumb__subtitle span
 {
    color: var(--first-color);
 }
/*=============== LAYOUT ===============*/
/* .container {
    max-width: 1620px;
    margin-left: auto;
    margin-right: auto;
} */

/* .grid {
    display: grid;
} */
---------------------------

/* ================================== */
.header__top
{
  background-color: var(--first-color-alt);
  border-bottom: 1px solid var(--first-color);
  padding-block: 0.875rem;
}
.header__container
{  
  display: flex;  
  align-items: center;
  justify-content: space-between;
}
.header__container span:first-child
{
  margin-right: 2rem;
}
.header__container span,
.header__alert-news,
.header__alert-news
{
  font-size: var(--small-font-size);
}
.header__alert-news
{
  color: var(--text-color-light);
  font-weight: var(--weight-600);
}
.header__top-action
{
  color: var(--text-color);
}
.nav,
.nav__menu,
.nav__list

{
  display: flex;
  align-items: center;  
 
}

.nav__menu .nav__list {
    justify-content: right;
}


.nav
{
  width: 100%;
  background: transparent;
  position: fixed; 
  left: 0;
  right: 0;
  z-index: 120; 
  height: calc(var(--header-height) + 2.5rem);  
  column-gap: 1rem;
  
}

/* Change background header */
.scroll-header
{
    background-color: var(--body-color);
    box-shadow: 0 1px 0 var(--first-color);
    top: 0;    
}


.nav__logo-img
{
  width: 160px;
  /* height: 40px; */
  /* background-color: var(--first-color-alt); */
}
.nav__menu
{
  /* background-color: var(--first-color); */
  /* width: 100%; */
  flex-grow: 1;
  margin-left: 2.5rem;
}
.nav__list
{
  column-gap: 2.5rem;
  margin-right: auto;
}
.nav__link
{
  color: var(--title-color);
  font-weight: var(--weight-700);
  transition: all 0.2s var(--transition);
}




.header__user-action
{
  column-gap: 1.25rem;
}
.header__action-btn
{
  position: relative;
}
.header__action-btn img
{
  /* width: 30px; */
  width: 24px;
  background-color: var(--first-color-alt);
}

.header__action-btn .count
{
  position: absolute;
  top: -0.625rem;
  right: -0.625rem;
  background-color: var(--first-color);
  color: var(--body-color);
  height: 18px;
  width: 18px;
  line-height: 18px;
  border-radius: 50%;
  text-align: center;
  font-size: var(--tiny-font-size);
}


/* .footer__social .footer__subtitle{
    margin-top: 1.875rem;
  }
   */
  .header__social-links{
    column-gap: 0.25rem;    
  }

  .header__social-icon {
    color: var(--first-color);
    width: 20px;
    opacity: 0.7;
  }
  .header__social-icon:hover {    
    width: 22px;
    opacity: 1;
  }
----------------------
.nav__close
{
    font-size: 2rem;
    position: absolute;
    top: .9rem;
    right: 1.25rem;
    cursor: pointer;
}

.nav__close,
.nav__toggle
{
    display: none;
} 

 
/* Change background header */
.scroll-header
{
    background-color: var(--body-color);
    box-shadow: 0 1px 4px var(--shadow);
}

/* Active link */
.active-link
{
    position: relative;
}
.active-link::before
{
    content: '';
    position: absolute;
    bottom: -.75rem;
    left: 45%;
    width: 5px;
    height: 5px;
    background: var(--text-color);
    border-radius: 50%;
}

/*// sticy Nav New Collention*/

.side-sticky{
    position: fixed;
    top: 30%;
    left: 10px;
    width: 36px;
    z-index: 100;
}
.sticky-icon {
    margin: 0 5px 5px 0;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 38px !important;
    color: #555;
    display: block;
    text-shadow: none;
    border: 1px solid #aaa;
    border-radius: 3px;
    overflow: hidden;
    text-align: center;
}
.whatsapp-sticky{
    position: fixed;
   bottom: 10%;
    left: 5px;
    /* width: 36px; */
    z-index: 100; 
}




/*========== HOME SECTION ==========*/

.home_container{
    /* margin-top: 6rem; */
    min-width: 100%;
    height: 80vh;
    background: #fff;
}

/* body {
    background: #eee;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
  } */

  .swiper {
    width: 100%;
    height: 100%;
    
  }

  .swiper-slide {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    padding: 20px;
    /* background-color: #000; */
  }

  .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .slide-content {
    max-width: 700px;
    z-index: 1;
    padding: 40px;
  }



  .title {
    font-size: 3em;
    margin-bottom: 0.5em;
  }

  

.title  h1 span {
    color: var(--first-color);
}

  .subtitle {
    font-size: 1.2em;
    margin-bottom: 1em;
  }

  .text {
    font-size: 1em;
    color: var(--text-color-light);
  }

  .slide-content a {
    margin-top: 1em;
    background-color: var(--first-color);
  }
 /* -------------------------------- */
 
/* TEXT ANI*/

#textanim{
    box-sizing: border-box;
    font-family: font1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 10vh;
    /* background: #252839; */
  }
  
  #heading{
    position: relative;
    font-size: 40px;
    color:#a7a1a1;
    -webkit-text-stroke: 0.3vh #ffffff;
    /* text-decoration: underline; */
  }
  
  #heading::before{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 126%;    
    color: var(--first-color);
    -webkit-text-stroke: 0vw #383d52;
    border-right: 2px solid var(--first-color);
    overflow: hidden;
    animation: animtext 6s linear infinite;
  }
  
  @keyframes animtext{
     0%
     {
       width: 0;
     }
  
    70%
     {
       width: 100%;
     }
    
  }
  
  /* end TEXT ANI*/
  



  /* about */
.about_wrapper{
    padding: .375rem;
}

/*=============== BUTTONS ===============*/
.button
{
    display: inline-block;
    background: var(--first-color);
    color: #fff;
    padding: 1rem 1.7rem;
    border-radius: .5rem;
    font-weight: var(--font-medium);
    transition: .3s;
}
.btn-hover:hover {

    background: var(--first-color);
}
.btn-hover{
    
    background: rgb(86, 142, 207);
}
.button:hover
{
    background: var(--first-color-alt);
}
.button__icon
{
    font-size: 1.2rem;
}
.button--link
{
    color: var(--title-color);
}
.button--flex
{
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
}




/*=============== Counter  ===============*/


.counter{
    background-image: url(../images/2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3.125rem;
    position: relative;
}
.counter::before{
    position: absolute;
    top: 0;
    left: 0;
    content:'';
    width: 100%;
    height: 100%;
    background-color: var(--bg-black);
    opacity: 0.5;
    z-index: 1;
}
.counter h1{
    font-size: 3.75rem;
    line-height: 4.25rem;
    font-weight: 700;
    color: var(--first-color);
    font-weight: var(--font-medium);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    font-family: var(--secondary-font);
}
.counter .fas{
    font-size: 2.75rem;
    color: var(--first-color-alt);

}

.counter p{
    position: relative;
    z-index: 3;
    color: #fff;
}


/*=============== our-partner-slider ===============*/

.our-partner-slider{
    background-color: var(--bg-color);
    padding: 3.125rem 0;
}
/* 
 ==============================================================Services We Specialize=======================  */



 
 .serviceCard .serviceCard_details {
    padding: 20px;
    box-shadow:  5px 15px 20px rgba(0, 0, 0, .2);
    border-radius: 20px;
    margin: 10px;
 }

 .serviceCard .img img {
    filter: grayscale(100%);
    transition: .5s ease-in;
 }
 .serviceCard .img:hover img {
    filter: grayscale(0%);
 }


 .serviceCard .top-text{
    padding: 5px;
 }
 .serviceCard .top-text .serviceCardTitle h5 
 {
    font-size: 25px;
    font-weight: 600;
    color: var(--first-color);
 }
 .serviceCard .top-text  p {
    font-size: 16px;
    font-weight: 500;
    color: #696666;
 }
 .serviceCard .top-text  .serviceCards-btn{
    margin: 10px 0;
 }
 .serviceCard .top-text  .serviceCards-btn a{
    background: #10868a;
    color: #fff;
 }
 .serviceCard .top-text  .serviceCards-btn:hover a{
    background: #34dbe0;
    color: #000;
 }








/* --------------------------------------------------- OUR TEEM----------------------------------------  */


/*==================
  CHEF SECTION
====================*/
#mu-chef {
    display: inline;
    float: left;
    padding: 100px 0;
    width: 100%;
  }
  #mu-chef .mu-chef-area {
    display: inline;
    float: left;
    width: 100%;
  }
  #mu-chef .mu-chef-area .mu-chef-content {
    display: inline;
    float: left;
    margin-top: 30px;
    padding-bottom: 60px;
    width: 100%;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav {
    display: inline;
    float: left;
    text-align: center;
    width: 100%;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-list li {
    background-color: #f8f8f8;
    display: inline-block;
    margin: 0 5px;
    width: 22%;
    overflow: hidden;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-list li:first-child {
    margin-left: 0;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-list li:last-child {
    margin-right: 0;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-list li .mu-single-chef {
    display: inline;
    float: left;
    width: 100%;
    position: relative;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-list li .mu-single-chef:hover .mu-single-chef-social {
    bottom: 0;
    opacity: 1;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-list li .mu-single-chef .mu-single-chef-img {
    display: inline;
    float: left;
    width: 100%;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-list li .mu-single-chef .mu-single-chef-img img {
    width: 100%;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-list li .mu-single-chef .mu-single-chef-info {
    display: inline;
    float: left;
    padding: 10px 10px 20px;
    width: 100%;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-list li .mu-single-chef .mu-single-chef-info h4 {
    margin-bottom: 5px;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-list li .mu-single-chef .mu-single-chef-info span {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-list li .mu-single-chef .mu-single-chef-social {
    background-color: #000;
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    padding: 23px 20px;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-list li .mu-single-chef .mu-single-chef-social a {
    display: inline-block;
    margin: 0 5px;
    padding: 5px;
    text-align: center;
    width: 35px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-list li .mu-single-chef .mu-single-chef-social a:hover, #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-list li .mu-single-chef .mu-single-chef-social a:focus {
    color: #fff;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-dots {
    text-align: center;
    margin-bottom: -30px;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-dots li {
    border-radius: 50%;
    width: 20px;
    display: inline-block;
    float: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  #mu-chef .mu-chef-area .mu-chef-content .mu-chef-nav .slick-dots li button {
    display: none;
  }





/* ===================== sector  ====================; */

.sectors{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}
.sectors .card{
    position: relative;
    /* width: 320px;
    height: 250px; */
    background-color: #8ff0eb;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    transition: 0.5s;
    box-shadow:  5px 15px 20px rgba(0, 0, 0, .2);
}
.sectors .card:hover{
    height: 350px;
}
.sectors .card .imgBx{
    position: absolute;
    inset: 20px 20px 50px 20px;
    background: #f00;
    border-radius: 15px;
    transition: 0.5s;
    z-index: 1000;
}
.sectors .card:hover .imgBx{
    inset: -50px 60px 250px 60px;
     box-shadow: 0 0 0 10px var(--clr);
}

.sectors .card .imgBx::before{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: transparent;
    left: -30px;
    border-top-right-radius: 20px;
    transform: translateY(-100px);
    opacity: 0;
    box-shadow: 5px -5px 0 4px var(--clr) ;
    pointer-events: none;
    transition: 0.5s;
}
.sectors .card:hover .imgBx::before{
    opacity: 1;
    transform: translateY(50px);

}
.sectors .card .imgBx::after{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: transparent;
    right: -30px;
    border-top-left-radius: 20px;
    transform: translateY(-100px);
    opacity: 0;
    box-shadow: -5px -5px 0 4px var(--clr) ;
    pointer-events: none;
    transition: 0.5s;
}
.sectors .card:hover .imgBx::after{
    opacity: 1;
    transform: translateY(50px);

}

.sectors .card .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.sectors .card p{
    position: relative;
    padding: 40px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px);
    transition: 0.5s;
}

.sectors .card:hover p {
    opacity: 1;
    visibility: visible;
    transform: translateY(50px);
  }

.sectors .card h2{
    position: absolute;
    font-size: var(--h2-font-size);
    bottom: 8px;
    color: var(--first-color);
    font-weight: 600;
}
.sectors .card:hover h2{
    padding: 5px 25px;
    background: #47e4d7;            
    bottom: -25px;
    font-size: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 0 10px var(--clr); 
}


/* ===================== Operation  Network ====================; */
.operationsNetwork_operationsSection__d3tzu {
    background-color: #f8f9fa;
    padding: 50px 0;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,.1)
}

.operationsNetwork_imageFrame__xKUhb {
    width: 100%;
    max-width: 900px;
    height: auto;
    padding: 20px;
    background-color: #fff;
    border: 5px solid #343a40;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,.15);
    overflow: hidden;
}

.operationsNetwork_networkImage__4_g0Z {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform .3s ease-in-out;
}

.operationsNetwork_imageFrame__xKUhb:hover .operationsNetwork_networkImage__4_g0Z {
    transform: scale(1.05)
}

.serviceCards_serviceSection__1Nkrm {
    background-color: #c4e0e5;
    padding: 40px 20px;
    border-radius: 10px;
}
.operationsNetwork_operationsSection__d3tzu .network-para {
    
    padding: 10px 20px;
  
}


/* =====================Insights and impacts= ====================; */
/* .impact-card-container {
    width: 100%;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
} */



.impact-card-container .swiper {
    width: 100%;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .impact-card-container  .swiper-slide {
    /* text-align: center; */
    /* font-size: 12px; */
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;

   
  }

  .impact-card-container   .swiper-slide .impact-card {
    padding: 15px;
    box-shadow:  5px 15px 20px rgba(0, 0, 0, .2);
    border-radius: 20px;
    margin: 10px;
  }

  .impact-card-container  .swiper-slide .impact-card .text .impacBtn {
     text-align: center; 
  }

  .impact-card-container  .swiper-slide .impact-card .text .card-title {
        font-size: 12PX ;
        color: var(--first-color);
        background: #ffffff;
        /* justify-content: center;
        align-items: center; */
  }
  .impact-card-container  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  .impact-card-container  .swiper-slide .impact-card .text  .impacBtn a{
    background: #10868a;
    color: #fff;
    margin-bottom: 5px;
     text-align: center;
    
 }
 .impact-card-container .swiper-slide .impact-card .text .impacBtn:hover a{
    background: #34dbe0;
    color: #000;
 }

/* ===================== client fedbac ====================; */


/*==================
  CHEF SECTION
====================*/
.slider-container{
    position: relative;
    width: 100% ;
    min-width: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2196f3;
    overflow: hidden;
}


.slider-container .swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .slider-container .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 320px;
    /* height: 300px; */ 
    box-shadow: 0, 15px 50px rgba(0, 0, 0, .2);    
    filter: blur(3px);
    background: #d1ebff;
    border-radius: 10px;
  }

  /* swiper-slide swiper-slide-visible swiper-slide-fully-visible swiper-slide-active */
  .slider-container .swiper-slide-active {
    filter: blur(0px);
    background: #fff;
    box-shadow: 0, 15px 50px rgba(0, 0, 0, .2);   
  }

  .slider-container .testimonialBox{
    position: relative;
    width: 100%;
    padding: 20px;
    padding-top: 90px;
    color: #999;
  }

  .slider-container .testimonialBox .quote {
    position: absolute;
    top: 10px;
    right: 30px;
    width: 30px;
    opacity: 0.6;
}
.slider-container .testimonialBox .feedbacK_content p{
    font-size: 14px;
    font-weight: 300;   
    color: #2e2c2c;
    text-align: justify;
   
}

.slider-container .testimonialBox .details {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.slider-container .testimonialBox .details .imgBx {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 5px;
}
.slider-container .testimonialBox .details .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-container .testimonialBox .details h3{
    font-size: 16px;
    font-weight: 400;
    /* letter-spacing: 1px; */
    color: #2196f3;
    line-height: 1.1em;
}
.slider-container .testimonialBox .details h3 span {
    font-size: 12px;
    color: #666;
}






/* ===================== content Baner====================; */
  
.contact-baner{
    background-image: url(../images/contact-bg.jpg) ;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding: 3.125rem; */
    position: relative;
    height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.contact-baner-overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-baner-content{
    position: relative;
    z-index: 1;
}
.contact-baner-content h2{
    font-size: 2.5rem;
    color: #fff;
}
.contactBanner_link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
.contactBanner_link:hover {
    background-color: #0056b3;
}





/*=============== foooter section ===============*/
.contact-banner {
    background: linear-gradient(90deg,#0dcaf0,#0591a0);
    padding: 100px 300px!important;
}

.contact-banner-text {
    font-weight: 200;
    color: #fff;
}

.footer-line {
    width: 50%;
}

.footer-decoration {
    padding: 0 500px;
}

.footer-decoration ul li {
    list-style: none;
    font-weight: 200;
    font-size: 12px;
    padding: 10px 0;
}

.footer-decoration ul li a {
    text-decoration: none;
    color: #fff;
}

.footer-decoration ul li a:hover {
    background-color: #343333;
    padding: 3px 50% 3px 0;
    transition: 1s ease;
}

.footer-decoration h5 {
    font-weight: 200;
    text-transform: uppercase;
}

.footer-decoration p {
    font-weight: 200;
    text-align: center!important;
    font-size: 10px;
    padding: 50px 0;
}

.social-links a {
    color: #d4d4d4;
    font-size: 30px;
    padding-right: 15px;
}

.social-links a:hover {
    color: #5f9ea0;
}


.footer_footerSection__TpakU {
    background: linear-gradient(180deg,#333,#000);
}

.footer_footerHeading__0mCSk {
    font-size: 1.25rem;
    font-weight: 700;
    border-bottom: 2px solid #ff6f61;
    padding-bottom: .5rem;
}

.footer_footerList__iDWXS li {
    margin-bottom: .5rem;
}

.footer_footerLink__MJ8YK {
    color: #ddd;
    text-decoration: none;
    transition: color .3s ease,transform .3s ease;
}

.footer_footerLink__MJ8YK:hover {
    color: #ff6f61;
    text-decoration: underline;
    transform: translateY(-2px);
}

.footer_footerSocialLink__R49Jh {
    color: #ddd;
    text-decoration: none;
    display: block;
    transition: color .3s ease,transform .3s ease;
}

.footer_footerSocialLink__R49Jh:hover {
    color: #ff6f61;
    transform: scale(1.05);
}

.footer_footerContact__T9wz_ {
    color: #ddd;
    margin-bottom: .5rem;
}

.footer_footerSocialIcons__6qhQJ {
    display: flex;
    gap: 10px;
}

.footer_footerSocialIcon__33IaZ {
    color: #ddd;
    font-size: 1.25rem;
    transition: color .3s ease,transform .3s ease;
}

.footer_footerSocialIcon__33IaZ:hover {
    color: #ff6f61;
    transform: scale(1.1);
}

.footer_footerCopyright__tCJn0 {
    color: #ddd;
    font-size: .875rem;
    border-top: 1px solid #444;
    padding-top: .5rem;
}








/*Rotate icon, change color of titles and background*/
.accordion-open .questions__header,
.accordion-open .questions__contant
{
    background-color: var(--first-color);
}

.accordion-open .questions__items-title,
.accordion-open .question__description,
.accordion-open .question__icon
{
    color: #fff;
}

.accordion-open .question__icon
{
    transform: rotate(45deg);
}






/*=============== SCROLL UP ===============*/
.scrollup
{
    position: fixed;
    right: 1rem;
    bottom: -33%;
    /* bottom: 3rem; */
    background: var(--first-color);
    border-radius: .4rem;
    display: inline-flex;
    padding: .25rem;
    z-index: var(--z-tooltip);
    opacity: .8;
    transition: .4s;
}
.scrollup:hover
{
    opacity: 1;

}
.scroll__icon{
    font-size: 1rem;
    color: #fff;

}
/* Show Scroll Up*/
.show-scroll
{
    bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar
{
    width: .60rem;
    background: var(--scroll-bar-color);
   
    border-radius: .5rem;
}

::-webkit-scrollbar-thumb
{
    background: var(--scroll-thumb-color);
    border-radius: .5rem;
    /* background: red; */
}




/*=============== STYLE SWITCHER ===============*/
.style__switcher
{
    position: fixed;
    right: 0;
    top: 26%;
    width: 200px;
    z-index: var(--z-tooltip);
    background-color: var(--container-color);
    padding: 1rem;
    box-shadow: -0.5px 0.5px 4px var(--shadow);
    border-radius: .2rem;
    transform: translateX(100%);
    transition: .3s;
}


.style__switcher .s__icon
{
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--title-color);
    background-color: var(--container-color);
    right: 100%; 
    margin-right: 1.8rem;   
    cursor: pointer;
    border-radius: 50%;
    line-height: 45px;
    top: 0;
}
.style__switcher h4 
{
    margin-bottom: var(--mb-1);
    color: var(--title-color);
    font-size: var(--normal-font-size);
    font-weight: var(--font-bold);
    text-transform: capitalize;
}
.style__switcher .theme__colors
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.style__switcher .theme__colors button
{
    height: 30px;
    width: 30px;
    position: relative;
    border-radius: 50%;
    vertical-align: middle;
}
.style__switcher .theme__colors button i
{
    color: #fff;
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}


.style__switcher .color-1
{
    background-color: hsl(0, 88%, 61%);
}
.style__switcher .color-2
{
    background-color: hsl(260, 88%, 61%);
}
.style__switcher .color-3
{
    background-color: hsl(336, 88%, 61%);
}
.style__switcher .color-4
{
    background-color: hsl(284, 88%, 61%);
}
.style__switcher .color-5
{
    background-color: hsl(375, 88%, 61%);
}



/* Style switcher open */
.style__switcher.open 
{
    transform: translateX(-10px);
}


/* Active theme color */
.style__switcher .theme__colors button.active i
{
    display: block;
}


/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (max-width: 1200px)
{
    .home__img
    {
        height: 400px;
    }
   
    
}

