@charset "UTF-8";
/* @import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&family=Dosis:wght@300;400;500;600;700;800&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Sniglet:wght@400;800&display=swap');
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

:root {
  --primary-color: #f33358;
  --secondry-color3: #163144;
  /* --gradient-color: linear-gradient(90deg, #f33358 0%, #163144 100%); */
  --title-color1: #001D23;
  --title-color2: #253D4E;
  --text-color1: #8A8A8A;
  --text-color2: #1F2124;
  --text-color3: #62686E;
  --text-color4: #4F4F4F;
  --white: #ffffff;
  --font-sniglet: "Sniglet";
  --font-montserrat: "Montserrat";
}
body{
  font-family: var(--font-montserrat);
  overflow-x: hidden;
}
html{
  overflow-x: hidden;
}
::-moz-selection {
  color: var(--title-color1);
  background: var(--secondry-color);
}

::selection {
  color: var(--title-color1);
  background: var(--secondry-color);
}

/*================================================
1. Mixins Css
=================================================*/
/*================================================
2. Global Css
=================================================*/
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  html {
    font-size: 97%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 95%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 90%;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  html {
    font-size: 90%;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 88%;
  }
}

body {
  font-family: var(--font-sniglet);
  color: var(--text-color1);
  background: #FBFBFB;
  font-size: 18px;
  margin: 0;
}

button {
  outline: none;
  border: none;
}

input {
  outline: none;
  border: none;
}

p {
  font-size: 1rem;
  font-weight: 400;
  color: #868686;
  font-family: var(--font-montserrat);
  line-height: 30px;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: 0 solid;
}

input:focus,
button:focus {
  outline: none;
}

.pt-120 {
  padding-top: 120px;
}
.pt-100 {
  padding-top: 100px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pt-120 {
    padding-top: 60px;
  }
  .pt-100 {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .pt-120 {
    padding-top: 50px;
  }
  .pt-100 {
    padding-top: 60px;
  }
}

.mb-120 {
  margin-bottom: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mb-120 {
    margin-bottom: 90px;
  }
}
@media (max-width: 991px) {
  .mb-120 {
    margin-bottom: 50px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}

.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .mb-60 {
    margin-bottom: 40px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .mb-80 {
    margin-bottom: 80px;
  }
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-10 {
  margin-bottom: 12px !important;
}

/*=======================================
 preloader
=======================================*/
/*=======================================
 3. scroll top
=======================================*/

/*=======================================
 3. section-title
=======================================*/
.section-title1 span {
  display: inline-block;
  font-size: 1.375rem;
  font-weight: 500;
  font-family: var(--font-montserrat);
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-title1 h2 {
  font-size: 3.125rem;
  font-weight: 400;
  color: var(--title-color1);
  font-family: var(--font-sniglet);
  line-height: 1.3;
  margin-bottom: 0;
  text-transform: capitalize;
}
@media (max-width: 576px) {
  .section-title1 h2 {
    font-size: 2.5rem;
  }
}

.section-title3 h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #fff;
  font-family: var(--font-sniglet);
  margin-bottom: 0;
  text-transform: capitalize;
}
.section-title3 h2 span {
  padding: 0px 5px;
}

/*=======================================
 4. Buttons 
=======================================*/

.primary-btn1 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-montserrat);
  border-radius: 40px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: var(--title-color1);
  z-index: 1;
}
.primary-btn1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--primary-color);
  z-index: -1;
  transition: 0.6s;
  transform-origin: left;
}
.primary-btn1:hover {
  color: #FFF;
}
.primary-btn1:hover::before {
  width: 0;
}

.primary-btn2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-montserrat);
  display: inline-block;
  background-color: #f33358c4;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  transition: 0.35s;
}
.primary-btn2::after {
  content: "";
  background-color: var(--primary-color);
  height: 100%;
  width: 100%;
  position: absolute;
  right: -3px;
  bottom: -3px;
  border-radius: 5px;
  z-index: -2;
  transition: 0.35s;
}
.primary-btn2:hover {
  color: var(--white);
}
.primary-btn2:hover::after {
  right: 0px;
  bottom: 0px;
  background-color: var(--title-color1);
}

.primary-btn3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-montserrat);
  display: inline-block;
  background-color: #25373A;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  transition: 0.35s;
}
.primary-btn3::after {
  content: "";
  background-color: var(--title-color1);
  height: 100%;
  width: 100%;
  position: absolute;
  right: -3px;
  bottom: -3px;
  border-radius: 5px;
  z-index: -2;
  transition: 0.35s;
}
.primary-btn3:hover {
  color: var(--white);
}
.primary-btn3:hover::after {
  right: 0px;
  bottom: 0px;
  background-color: var(--primary-color);
}

/*=======================================
 7. Top Bar 
=======================================*/
.contact-number a {
  font-size: 22px;
  font-family: var(--font-montserrat);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  color: var(--primary-color);
}
.contact-number a img {
  margin-right: 7px;
  width: 25px;
}

/*=======================================
 7. Header
=======================================*/
header.style-1 {
  position: relative;
  width: 100%;
  z-index: 99999;
  padding: 0px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--title-color1);
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-1 {
    padding: 0px 2%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  header.style-1 {
    padding: 0px 2%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-1 {
    padding: 0px 2%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header.style-1 {
    padding: 0px 2%;
  }
}
@media (max-width: 767px) {
  header.style-1 {
    padding: 0px 2%;
  }
}
/* header.style-1.sticky {
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 99999;
  -webkit-animation: smooth-header 0.65s linear;
          animation: smooth-header 0.65s linear;
} */
/* @-webkit-keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
} */
/* header.style-1 .header-logo {
  padding: 10px 0px;
} */
@media (max-width: 991px) {
  header.style-1 .header-logo {
    width: 100%;
    padding: 20px 0;
  }
}
header.style-1 .header-logo img {
  /* min-width: 120px; */
  max-width: 350px;
}
header.style-1 .nav-right {
  gap: 24px;
}
@media (max-width: 1500px) {
  header.style-1 .nav-right {
    gap: 15px;
  }
}
/*=======================================
 7. Home One Banner
=======================================*/
.btn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
.primary-btn2 {
  padding: 10px 28px;
}
.primary-btn3 {
  padding: 10px 28px;
}

/*=======================================
 7. Home One Services
=======================================*/
.services-card1 {
  background: #F3F2FD;
  border-radius: 10px;
  padding: 30px 20px;
  position: relative;
  transition: 0.35s;
  overflow: hidden;
}
@media(min-width: 992px){
  .services-card1{
    height: 346px;
  }  
  .home3-testimonial-area .testimonial-wrapper{
    height: 403px;
  }
}

.services-card1 .services-card-vec {
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.35s;
}
.services-card1 .icon {
  margin-bottom: 15px;
}
.services-card1 .content h3 {
  margin-bottom: 15px;
}
.services-card1 .content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--title-color1);
  font-family: var(--font-montserrat);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.services-card1 .content p {
  font-size: 1rem;
  font-weight: 400;
  color: #868686;
  font-family: var(--font-montserrat);
  line-height: 28px;
}
.services-card1.two {
  background: #F4FBF2;
}
.services-card1.three {
  background: #F9F7E5;
}
.services-card1.four {
  background: #E8F4FD;
}
.services-card1:hover .services-card-vec {
  transform: scale(2);
}

.h1-service-area .swiper-btn-wrap {
  margin-bottom: 40px;
  padding-top: 20px;
  position: relative;
  z-index: 9;
}
.h1-service-area .swiper-btn-wrap .slider-btn {
  height: 35px;
  width: 35px;
  line-height: 35px;
  border: 1px solid #F46F30;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}
.h1-service-area .swiper-btn-wrap .slider-btn i {
  font-size: 20px;
  color: #F46F30;
  transition: 0.35s;
}
.h1-service-area .swiper-btn-wrap .slider-btn:hover {
  background: var(--gradient-color);
}
.h1-service-area .swiper-btn-wrap .slider-btn:hover i {
  color: var(--white);
}
@media (max-width: 576px) {
  .h1-service-area .home1-services-slider {
    padding: 0px 10px;
  }
}
@media (max-width: 576px) {
  .h1-service-area .section-title1 {
    margin-bottom: 40px;
  }
}

/*=======================================
 7. Home One Story
=======================================*/

/*=======================================
 7. Home One Feaures
=======================================*/
.h1-feature-area {
  background-image: linear-gradient(rgba(0, 29, 35, 0.75), rgba(0, 29, 35, 0.75)), url(../images/bg/cta.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 0 60px;
  overflow: hidden;
}
@media(min-width: 768px) {
  .h1-feature-area {
    background-attachment: fixed;
  }
  .h1-pricing-plan-area .pricing-card{
    height: 550px;
  }
  .book-now-btn.middle a{
    position: absolute !important;
    bottom: 20px;
  }
}
.h1-feature-area .bg {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}
.h1-feature-area .bg::after {
  content: "";
  background: var(--gradient-color);
  opacity: 0.05;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.h1-feature-area .content p {
  font-size: 20px;
  font-weight: 400;
  color: #d1d1d1;
  font-family: var(--font-montserrat);
  line-height: 26px;
  /* margin-bottom: 0; */
}
.h1-feature-area .content span{
  font-size: 16px;
  font-weight: 400;
  color: #d1d1d1;
  font-family: var(--font-montserrat);
}
.h1-feature-area .content{
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .h1-feature-area .bg .freture-title {
    padding: 20px 0;
  }
}
.h1-feature-area .bg .freture-title h2 {
  /* max-width: 720px; */
  width: 100%;
  font-size: 4.063rem;
  font-weight: 400;
  color: var(--white);
  font-family: var(--font-sniglet);
  text-align: center;
}
@media (max-width: 1500px) {
  .h1-feature-area .bg .freture-title h2 {
    font-size: 3.5rem;
    /* max-width: 650px; */
  }
}
@media (max-width: 1199px) {
  .h1-feature-area .bg .freture-title h2 {
    font-size: 3.5rem;
    /* max-width: 600px; */
  }
}
@media (max-width: 1199px) {
  .h1-feature-area .bg .freture-title h2 {
    font-size: 2.9rem;
    /* max-width: 430px; */
  }
}
@media (max-width: 576px) {
  .h1-feature-area .bg .freture-title h2 {
    font-size: 2.2rem;
    /* max-width: 430px; */
  }
}
/* .h1-feature-area .bg .freture-title h2 span {
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
} */

.h1-feature-counter {
  margin-top: -120px;
}
.h1-feature-counter .counter-single {
  display: flex;
  align-items: center;
  padding: 25px;
  background: #FBECEC;
  border-radius: 10px;
  transition: 0.35s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .h1-feature-counter .counter-single {
    padding: 16px;
  }
}
@media (max-width: 767px) {
  .h1-feature-counter .counter-single {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .h1-feature-counter .counter-single {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
  }
}
.h1-feature-counter .counter-single.animals {
  background-color: #EFF8DD;
}
.h1-feature-counter .counter-single.walked {
  background-color: #FFD9E7;
}
.h1-feature-counter .counter-single.years {
  background-color: #FDEAE1;
}
.h1-feature-counter .counter-single .counter-icon {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  border: 1px solid #F46F30;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .h1-feature-counter .counter-single .counter-icon {
    margin-right: 5px;
  }
}
@media (max-width: 767px) {
  .h1-feature-counter .counter-single .counter-icon {
    margin-right: 15px;
    margin-bottom: 0;
  }
}
.h1-feature-counter .counter-single .coundown div h3 {
  font-size: 2.813rem;
  color: var(--title-color1);
  font-family: var(--font-sniglet);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
.h1-feature-counter .counter-single .coundown div span {
  font-size: 2.813rem;
  color: var(--title-color1);
  font-family: var(--font-sniglet);
  letter-spacing: 0.02em;
  display: inline-block;
  line-height: 1;
}
.h1-feature-counter .counter-single .coundown p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #868686;
  font-family: var(--font-montserrat);
  margin-bottom: 0;
}
.h1-feature-counter .counter-single:hover {
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(255, 107, 85, 0.1);
}

/*=======================================
 7. Home One Choose
=======================================*/

/*=======================================
 7. Home One Partner
=======================================*/

/*=======================================
 7. Home One pricing plan
=======================================*/
.h1-pricing-plan-area {
  position: relative;
  z-index: 1;
  /* padding-top: 50px; */
}
.h1-pricing-plan-area::after {
  content: url(../images/bg/frem-04.png);
  position: absolute;
  left: 0;
  top: -20%;
  z-index: -1;
}
@media (max-width: 576px) {
  .h1-pricing-plan-area::after {
    display: none;
    visibility: hidden;
  }
}
.h1-pricing-plan-area .pricing-card {
  background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(244, 111, 48, 0.08) 0%, rgba(244, 111, 48, 0.0179167) 77.08%, rgba(244, 111, 48, 0) 100%);
  background-blend-mode: overlay, normal;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  padding: 45px;
  position: relative;
  transition: 0.4s ease-out;
}
.h1-pricing-plan-area .pricing-card .price-card-vector {
  position: absolute;
  top: 15px;
  right: 0;
}
.h1-pricing-plan-area .pricing-card .title {
  text-align: center;
  margin-bottom: 15px;
  transition: 0.35s;
}
.h1-pricing-plan-area .pricing-card .title h4 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #6E6E6E;
  font-family: var(--font-montserrat);
  letter-spacing: 0.02em;
  margin-bottom: 5px;
  line-height: 1;
  transition: 0.35s;
}
.h1-pricing-plan-area .pricing-card .title p{
  margin-top: 25px;
  margin-bottom: 0;
  line-height: normal;
  color: #6e6e6e;
}
.h1-pricing-plan-area .pricing-card.active .title p{
  color: #fff;
}
.h1-pricing-plan-area .pricing-card .title h2 {
  font-size: 3.75rem;
  font-weight: 400;
  color: var(--title-color1);
  font-family: var(--font-sniglet);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  transition: 0.35s;
}
.h1-pricing-plan-area .pricing-card .title h2 .time {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: -24px;
  transition: 0.35s;
  padding-left: 5px;
}
.h1-pricing-plan-area .pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.h1-pricing-plan-area .pricing-card ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid;
  border-color: rgba(0, 29, 35, 0.05);
  padding: 15px 0;
  font-family: var(--font-montserrat);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(0, 29, 35, 0.6);
  transition: 0.35s;
}
.h1-pricing-plan-area .pricing-card ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.h1-pricing-plan-area .pricing-card .book-now-btn {
  display: flex;
  justify-content: center;
  padding-top: 55px;
  /* position: absolute;
  bottom: 20px; */
}
.h1-pricing-plan-area .pricing-card .book-now-btn a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--title-color1);
  font-family: var(--font-montserrat);
  border: 1px solid #F46F30;
  border-radius: 50px;
  padding: 10px 40px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 1;
}
.h1-pricing-plan-area .pricing-card .book-now-btn a::after {
  content: "";
  background: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.h1-pricing-plan-area .pricing-card:hover, .h1-pricing-plan-area .pricing-card.active {
  background: #253D4E;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
}
.h1-pricing-plan-area .pricing-card:hover .title, .h1-pricing-plan-area .pricing-card.active .title {
  text-align: center;
  margin-bottom: 15px;
  transition: 0.35s;
}
.h1-pricing-plan-area .pricing-card:hover .title h4, .h1-pricing-plan-area .pricing-card.active .title h4 {
  color: var(--white);
}
.h1-pricing-plan-area .pricing-card:hover .title h2, .h1-pricing-plan-area .pricing-card.active .title h2, .h1-pricing-plan-area .pricing-card:hover .title p  {
  color: var(--white);
}
.h1-pricing-plan-area .pricing-card:hover ul, .h1-pricing-plan-area .pricing-card.active ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.h1-pricing-plan-area .pricing-card:hover ul li, .h1-pricing-plan-area .pricing-card.active ul li {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.05);
}
.h1-pricing-plan-area .pricing-card:hover .book-now-btn a, .h1-pricing-plan-area .pricing-card.active .book-now-btn a {
  color: #FFF;
  border-color: transparent;
}
.h1-pricing-plan-area .pricing-card:hover .book-now-btn a::after, .h1-pricing-plan-area .pricing-card.active .book-now-btn a::after {
  opacity: 1;
}

/*=======================================
 7. Home One Testimonial
=======================================*/
.home3-testimonial-area {
  background-color: #253D4E;
  background-image: url(../images/bg/testimonial-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
}

/*=======================================
 7. Home One Team
=======================================*/

/*=======================================
 7. Home One Team
=======================================*/
.newsletter-area .newsletter-wrap {
  background-image: url(../images/bg/h1-newsletter-bg.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 15px 5px;
  border-radius: 10px;
}

/*=======================================
 7. Home One Blog
=======================================*/

/*=======================================
 7. Home One Gallery
=======================================*/

/*=======================================
 7. Home One Footer
=======================================*/
footer {
  background-color: #FFF5ED;
  background-image: url(../images/bg/footer-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center center; */
}
@media (max-width: 991px) {
  footer .footer-items {
    margin-bottom: 50px;
  }
}
footer .footer-items h3 {
  font-family: var(--font-montserrat);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  color: var(--secondry-color3);
  margin-bottom: 20px;
}
footer .footer-items .hotline, footer .footer-items .email {
  display: flex;
  align-items: center;
}
footer .footer-items .hotline .hotline-icon, footer .footer-items .email .email-icon {
  margin-right: 10px;
}
footer .footer-items .hotline .hotline-info h6, footer .footer-items .email .email-info h6 {
  margin-bottom: 0;
}
footer .footer-items .hotline .hotline-info h6 a, 
footer .footer-items .email .email-info h6 a, 
footer .footer-items .address .address-info h6 {
  font-size: 1rem;
  font-weight: 500;
  color: #253D4E;
  font-family: var(--font-montserrat);
  letter-spacing: 0.03em;
  transition: 0.35s;
  /* display: flex; */
}
footer .footer-items .address {
  display: flex;
}

footer .footer-items .hotline .hotline-info h6 a:hover, footer .footer-items .email .email-info h6 a:hover {
  color: var(--secondry-color);
}
footer .copyright-area p {
  margin-bottom: 0;
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #001D23;
}
@media (max-width: 991px) {
  footer .copyright-area p {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
  }
}
footer .border-top {
  border-top: 1px solid;
  border-color: rgba(0, 29, 35, 0.05);
  padding: 20px 0;
}

/*=======================================
 7. Home Two Services
=======================================*/
.h2-services-area {
  overflow: hidden;
}
.h2-services-area .services-btm .services-img img {
  position: relative;
  z-index: 1;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .h2-services-area .services-btm .services-img {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
  }
}
.h2-services-area .services-btm .services-content {
  margin-left: 50px;
}
.h2-services-area .services-btm .services-content img{
  width: 140px;
}
@media (max-width: 991px) {
  .h2-services-area .services-btm .services-content {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .h2-services-area .services-btm .services-content h2,
  .section-title1 h2{
    font-size: 40px !important;
  }
  .h1-pricing-plan-area .pricing-card{
    padding: 20px !important;
  }
}

.h2-services-area .services-btm .services-content h2 {
  font-size: 3.125rem;
  font-weight: 400;
  color: var(--title-color1);
  line-height: 1.4;
  font-family: var(--font-sniglet);
  text-transform: capitalize;
  padding-top: 5px;
  margin-bottom: 12px;
}
.h2-services-area .services-btm .services-content > p {
  margin-bottom: 0;
  font-size: 18px;
}
.h2-services-area .services-btm .services-content .author-area {
  padding-top: 25px;
}
.h2-services-area .services-btm .services-content .author-area .author-quat p {
  font-size: 20px;
  font-weight: 400;
  color: var(--title-color1);
  line-height: 1.7;
  margin-bottom: 0;
}

/*=======================================
 7. Home Two Choose
=======================================*/

/*=======================================
 7. Home Two Work Process
=======================================*/

/*=======================================
 7. Home Two Booking Area
=======================================*/

/*=======================================
 7. Home Two Contact Area
=======================================*/

/*=======================================
 7. Home Two Testimonial Area
=======================================*/

/*=======================================
 7. Home Two Team
=======================================*/

/*=======================================
 7. Home Two Blog
=======================================*/

/*=======================================
 7. Home Three Categorys
=======================================*/

/*=======================================
 7. Home Three Collection
=======================================*/

/*=======================================
 7. Home Three Offer
=======================================*/

/*=======================================
 7. Home Three Essential Items
=======================================*/

/*=======================================
 7. Home Three Offer Banner
=======================================*/

/*=======================================
 7. Home Three Testimonial Area
=======================================*/
.home3-testimonial-area .swiper {
  padding: 10px;
  margin: -10px;
}
.home3-testimonial-area .slider-btn-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}

.home3-testimonial-area .section-title3 img{
  width: 30px;
}
@media (max-width: 767px) {
  .home3-testimonial-area .slider-btn-wrap {
    display: none;
    visibility: hidden;
  }
}
.home3-testimonial-area .slider-btn-wrap .slider-btn {
  height: 35px;
  width: 35px;
  line-height: 35px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}
.home3-testimonial-area .slider-btn-wrap .slider-btn i {
  font-size: 20px;
  color: var(--primary-color);
  transition: 0.35s;
}
.home3-testimonial-area .slider-btn-wrap .slider-btn:hover {
  background: var(--secondry-color);
}
.home3-testimonial-area .slider-btn-wrap .slider-btn:hover i {
  color: var(--white);
}
.home3-testimonial-area .testimonial-wrapper {
  background: #FFFFFF;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  padding: 35px 30px;
}
@media (max-width: 991px) {
  .home3-testimonial-area .testimonial-wrapper {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
}
.home3-testimonial-area .testimonial-wrapper .review {
  margin-bottom: 15px;
}
.home3-testimonial-area .testimonial-wrapper .review ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.home3-testimonial-area .testimonial-wrapper .review ul li {
  line-height: 1;
}
.home3-testimonial-area .testimonial-wrapper .review ul li i {
  font-size: 18px;
  color: #FFC226;
}
.home3-testimonial-area .testimonial-wrapper p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color4);
  font-family: var(--font-montserrat);
  line-height: 35px;
  letter-spacing: 0.03em;
  /* margin-bottom: 30px; */
}
.home3-testimonial-area .testimonial-wrapper .author-area {
  display: flex;
  align-items: center;
}
.home3-testimonial-area .testimonial-wrapper .author-area .author-img {
  margin-right: 18px;
}
.home3-testimonial-area .testimonial-wrapper .author-area .author-img img {
  border-radius: 50%;
  width: 60px;
}
.home3-testimonial-area .testimonial-wrapper .author-area .author-name-deg h3 {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--title-color2);
  font-family: var(--font-sniglet);
  line-height: 30px;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

/*=======================================
 7. Home Three Newsletter Area
=======================================*/

/*=======================================
 7. Home Three Blog Area
=======================================*/

/*=======================================
 7. Inner Pages Banner
=======================================*/

/*=======================================
 7. Services Details
=======================================*/
.services-details-area .tab-content2 .tab-pane .reviews-area .review-form form .form-inner2 .review-rate-area .rate:not(:checked) > input {
  position: absolute;
  top: -9999px;
}
.services-details-area .tab-content2 .tab-pane .reviews-area .review-form form .form-inner2 .review-rate-area .rate:not(:checked) > label {
  float: right;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  color: #ccc;
}
.services-details-area .tab-content2 .tab-pane .reviews-area .review-form form .form-inner2 .review-rate-area .rate:not(:checked) > label:before {
  content: "★ ";
}
.services-details-area .tab-content2 .tab-pane .reviews-area .review-form form .form-inner2 .review-rate-area .rate:not(:checked) > label:hover,
.services-details-area .tab-content2 .tab-pane .reviews-area .review-form form .form-inner2 .review-rate-area .rate:not(:checked) > label:hover ~ label {
  color: var(--secondry-color);
}

/*=======================================
 7. Gallery Pages
=======================================*/

/*=======================================
 7. Blog Pages
=======================================*/
.contact-form{
  width: 100%;
}
.contact-form h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--title-color1);
  font-family: var(--font-montserrat);
  text-transform: capitalize;
  margin-bottom: 40px;
}
.contact-form .form-inner input {
  width: 100%;
  height: 54px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #868686;
  font-family: var(--font-montserrat);
  padding: 10px 20px;
  margin-right: 0;
  background: #FFFFFF;
  border: 1px solid #eee;
  border-radius: 5px;
}
.contact-form .form-inner input::-moz-placeholder {
  font-size: 0.875rem;
  font-weight: 400;
  color: #868686;
  font-family: var(--font-montserrat);
}
.contact-form .form-inner input:-ms-input-placeholder {
  font-size: 0.875rem;
  font-weight: 400;
  color: #868686;
  font-family: var(--font-montserrat);
}
.contact-form .form-inner button {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-montserrat);
  border-radius: 60px;
  display: flex;
  align-items: center;
  padding: 13px 40px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.contact-form .form-inner button i {
  margin-left: 10px;
  margin-top: 3px;
}

.location-map {
  position: relative;
}
.location-map iframe {
  height: 225px;
  width: 100%;
  border-radius: 10px;
  /* filter: grayscale(199%) invert(98%) contrast(122%); */
}
.shop-details-page .tab-content2 .tab-pane .reviews-area .review-form form .form-inner2 .review-rate-area .rate:not(:checked) > input {
  position: absolute;
  top: -9999px;
}
.shop-details-page .tab-content2 .tab-pane .reviews-area .review-form form .form-inner2 .review-rate-area .rate:not(:checked) > label {
  float: right;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  color: #ccc;
}
.shop-details-page .tab-content2 .tab-pane .reviews-area .review-form form .form-inner2 .review-rate-area .rate:not(:checked) > label:before {
  content: "★ ";
}
.shop-details-page .tab-content2 .tab-pane .reviews-area .review-form form .form-inner2 .review-rate-area .rate:not(:checked) > label:hover,
.shop-details-page .tab-content2 .tab-pane .reviews-area .review-form form .form-inner2 .review-rate-area .rate:not(:checked) > label:hover ~ label {
  color: var(--secondry-color);
}

/*=======================================
 Swiper css
=======================================*/

.hero-style-1 {
  background: #FBE5DA;
  padding: 0px 0px 235px;
}
@media (max-width: 576px) {
  .hero-style-1 {
    padding: 0px 0px 200px;
  }
}
.hero-style-1 .banner-content {
  max-width: 746px;
  width: 100%;
}
@media (max-width: 1199px) {
  .hero-style-1 .banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 60px auto 0;
  }
}
@media (max-width: 1199px) and (max-width: 576px) {
  .hero-style-1 .banner-content {
    margin: 40px auto 0;
  }
}
.hero-style-1 .banner-content .tag {
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
}
.hero-style-1 .banner-content .tag::after {
  content: url("../images/icon/dog-shape-h1.svg");
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .hero-style-1 .banner-content .tag::after {
    display: none;
    visibility: hidden;
  }
}
.hero-style-1 .banner-content .tag ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-style-1 .banner-content .tag ul li {
  font-size: 32px;
  font-weight: 400;
  color: var(--title-color1);
  line-height: 42px;
  text-transform: capitalize;
  position: relative;
  margin-top: 12px;
}
.hero-style-1 .banner-content .tag ul li::after {
  content: "";
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: linear-gradient(90deg, #F86CA7 0%, #FF7F18 100%);
  position: absolute;
  left: -25px;
  top: 52%;
  transform: translateY(-50%);
}
.hero-style-1 .banner-content .tag ul li:first-child::after {
  display: none;
  visibility: hidden;
}
.hero-style-1 .banner-content h1 {
  font-size: 4.375rem;
  font-weight: 400;
  color: var(--title-color1);
  font-family: var(--font-sniglet);
  line-height: 1.22;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .hero-style-1 .banner-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 1399px) {
  .hero-style-1 .banner-content h1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 1199px) {
  .hero-style-1 .banner-content h1 {
    font-size: 4.375rem;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .hero-style-1 .banner-content h1 {
    font-size: 3.2rem;
  }
}
.hero-style-1 .banner-content h1 span {
  color: var(--primary-color);
  /* -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
}
.hero-style-1 .banner-img {
  z-index: 999;
  margin-left: -200px;
  margin-top: 50px;
}
@media (max-width: 1750px) {
  .hero-style-1 .banner-img {
    margin-left: -120px;
  }
}
@media (max-width: 1270px) {
  .hero-style-1 .banner-img {
    margin-left: -70px;
  }
}
@media (max-width: 1199px) {
  .hero-style-1 .banner-img {
    margin-left: 0;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .hero-style-1 .banner-img {
    display: none;
    visibility: hidden;
  }
}
.hero-style-1 .banner-img img {
  width: 550px;
}
@media (max-width: 767px) {
  .hero-style-1 .reservation-review {
    padding-top: 50px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 767px) {
  .hero-style-1 .reservation-review{
    width: 300px;
  }
}

.hero-style-1 .reservation-review .reservation-btn {
  margin-bottom: 15px;
}
.reservation-btn h2{
  font-size: 26px;
}
.hero-style-1 .reservation-review .review-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1399px) {
  .hero-style-1 .reservation-review .review-area ul {
    flex-wrap: wrap;
  }
}
@media (max-width: 1199px) {
  .hero-style-1 .reservation-review .review-area ul {
    flex-wrap: nowrap;
  }
}
.hero-style-1 .reservation-review .review-area ul li .single-review {
  background: rgba(255, 245, 237, 0.9);
  border: 1px solid rgba(255, 127, 24, 0.3);
  border-radius: 5px;
  min-width: 162px;
  padding: 10px 14px;
  width: 192px;
  display: grid;
  justify-content: center;
}
.hero-style-1 .reservation-review .review-area ul li .single-review .icon span {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.938rem;
  font-weight: 400;
  color: #868686;
  font-family: var(--font-montserrat);
  line-height: 18px;
  letter-spacing: 0.03em;
}
.hero-style-1 .reservation-review .review-area ul li .single-review .reviews {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.hero-style-1 .reservation-review .review-area ul li .single-review .reviews ul {
  display: flex;
  align-items: center;
  gap: 2.5px;
}
.hero-style-1 .reservation-review .review-area ul li .single-review .reviews ul li {
  line-height: 1;
}
.hero-style-1 .reservation-review .review-area ul li .single-review .reviews ul li i {
  font-size: 9px;
  color: #DDAC00;
}
.hero-style-1 .reservation-review .review-area ul li .single-review .reviews span {
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 16px;
  line-height: 15px;
  letter-spacing: 0.03em;
  color: #001D23;
  opacity: 0.8;
}
.hero-video-area {
  margin-top: -275px;
}
@media (max-width: 576px) {
  .hero-video-area {
    margin-top: -235px;
  }
}
.hero-video-area .video-wraper video {
  width: 100%;
  /* border-top: 30px solid #fff;
  border-left: 20px solid #fff;
  border-right: 20px solid #fff; */
  -o-object-fit: initial;
     object-fit: initial;
  height: 700px;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .hero-video-area .video-wraper video {
    height: 450px;
  }
}
@media (max-width: 576px) {
  .hero-video-area .video-wraper video {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .hero-video-area .video-wraper video {
    border-bottom: 20px solid #fff;
    border-top: 20px solid #fff;
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
  }
}


.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0 0 0 / .4)
}

.popup-content {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
}

@media(min-width:768px) and (max-width:1200px) {
  .popup-content {
    width: 450px
  }
}

@media(min-width:1200px) {
  .popup-content {
    width: 40%;
  }
}

@media(max-width:547px) {
  .popup-content {
    width: 95%
  }
}

.form-trigger {
  cursor: pointer
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  top: 22px;
  right: 30px;
}
.close:hover{
  color: #333;
}

@media(max-width: 600px){
  .hero-style-1 .banner-content .tag ul li{
    font-size: 22px;
  }
  .hero-style-1 .reservation-review{
    padding-top: 0;
  }
  .h2-services-area .services-btm .services-content h2{
    font-size: 2.5rem;
  }
  .h1-feature-area .bg{
    padding: 60px 0;
  }
  .h1-pricing-plan-area .pricing-card .book-now-btn a{
    padding: 10px 45px;
  }
  footer{
    background-position: center;
  }
  .header-area .header-wrapper{
    display: block !important;
  }
  header.style-1 .header-logo{
    padding: 0;
    text-align: center;
  }
  header.style-1 .nav-right{
    justify-content: center !important;
    padding-bottom: 10px;
  }
  .contact-number a{
    font-size: 20px;
  }
  .pt-100 {
    padding-top: 10px !important;
  }
  .pt-120,
  .pt-60 {
    padding-top: 20px !important;
  }
  .mb-100,
  .mb-80,
  .mb-120{
    margin-bottom: 20px !important;
  }
  .h1-pricing-plan-area .pricing-card{
    padding: 20px 45px !important;
  }
  .home3-testimonial-area{
    padding: 20px 0 !important;
  }
  .pt-60{
    padding-top: 20px;
  }
  .pb-60 {
    padding-bottom: 20px;
}
  footer .footer-items {
    margin-bottom: 15px;
}
.contact-form h2{
  margin-bottom: 15px !important;
}
.h1-feature-area .bg{
  padding-top: 15px;
}
}

.header-area .header-wrapper{
  display: flex;
}

/* Back To Top*/
#back-to-top {
  color: #fff;
  border: 0 none;
  cursor: pointer;
  width: 50px;
  /* height: 45px; */
  line-height: 50px;
  opacity: 0;
  visibility: hidden;
  outline: medium none;
  position: fixed;
  right: 10px;
  /* bottom: -20px; */
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s ease-out 0s;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}
.sticky-call_icon {
	position: relative;
	display: block;
  margin-bottom: 8px;
  background-color: var(--secondry-color3);
  border-radius: 50%;
  }

.sticky-call_icon:hover,
.whatsapp:hover{
	opacity: .8;
}
  
.sticky-call_icon img {
	position: relative;
	width: 28px;
}
.whatsapp {
  margin-top: 30px;
}
.whatsapp img{
  width: 50px;
}
.nice-select {
  width: 100%;
  height: 54px;
  line-height: 54px;
  white-space: unset;
}
.nice-select .option.selected {
  font-weight: 400;
}
.nice-select.open .list {
  width: 100%;
}

#popupFormContainer .contact-form{
  background-color: #FBE5DA;
  padding: 25px;
  border-radius: 6px;
}

/*=======================================
 7. Home Three Categorys
=======================================*/
.home3-categoty-area .category-card {
  height: 196px;
  width: 100%;
  background: #E0F1F0;
  border-radius: 70px;
  perspective: 1000px;
  margin: 0 auto;
}
.home3-categoty-area .category-card .category-card-inner {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.home3-categoty-area .category-card .category-card-inner .category-card-front, .home3-categoty-area .category-card .category-card-inner .category-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  border-radius: 50%;
}
.home3-categoty-area .category-card .category-card-inner .category-card-front {
  padding: 38px 30px;
}
.home3-categoty-area .category-card .category-card-inner .category-card-front .category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.home3-categoty-area .category-card .category-card-inner .category-card-front .content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--title-color2);
  font-family: var(--font-dosis);
  margin-bottom: 0;
}
.home3-categoty-area .category-card .category-card-inner .category-card-back {
  background-color: #E0F1F0;
  border: 1px dashed;
  border-color: rgba(244, 111, 48, 0.7);
  color: white;
  border-radius: 70px;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.home3-categoty-area .category-card:hover .category-card-inner {
  transform: rotateY(180deg);
}
.home3-categoty-area .slider-btn-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .home3-categoty-area .slider-btn-wrap {
    display: none;
    visibility: hidden;
  }
}
.home3-categoty-area .slider-btn-wrap .slider-btn {
  height: 35px;
  width: 35px;
  line-height: 35px;
  border: 1px solid var(--primary-color3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}
.home3-categoty-area .slider-btn-wrap .slider-btn i {
  font-size: 20px;
  color: var(--primary-color3);
  transition: 0.35s;
}
.home3-categoty-area .slider-btn-wrap .slider-btn:hover {
  background: var(--primary-color3);
}
.home3-categoty-area .slider-btn-wrap .slider-btn:hover i {
  color: var(--white);
}

/* @media (min-width: 992px) {
  .col-lg-3 {
      flex: 0 0 auto;
      width: 25%;
  }
}
@media (min-width: 768px) {
  .col-md-4 {
      flex: 0 0 auto;
      width: 33.3333333333%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
}
} */
/* @media (min-width: 576px) {
  .col-sm-6 {
      flex: 0 0 auto;
      width: 50%;
  }
} */

/*=======================================
 7. Home One Team
=======================================*/
.team-area {
  position: relative;
  z-index: 1;
}
.team-area::after {
  content: url(../images/bg/frem-05.png);
  position: absolute;
  left: 0;
  top: -20%;
  z-index: -1;
}
@media (max-width: 576px) {
  .team-area::after {
    display: none;
    visibility: hidden;
  }
}
.team-area.two::after {
  display: none;
  visibility: hidden;
}
.team-area .swiper-btn-wrap {
  position: absolute;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1700px) {
  .team-area .swiper-btn-wrap {
    width: 92%;
  }
}
@media (max-width: 1500px) {
  .team-area .swiper-btn-wrap {
    width: 98%;
  }
}
@media (max-width: 767px) {
  .team-area .swiper-btn-wrap {
    display: none;
    visibility: hidden;
  }
}
.team-area .swiper-btn-wrap .slider-btn {
  height: 35px;
  width: 35px;
  line-height: 35px;
  border: 1px solid #F46F30;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}
.team-area .swiper-btn-wrap .slider-btn i {
  font-size: 20px;
  color: #F46F30;
  transition: 0.35s;
}
.team-area .swiper-btn-wrap .slider-btn:hover {
  background: var(--gradient-color);
}
.team-area .swiper-btn-wrap .slider-btn:hover i {
  color: var(--white);
}
@media (max-width: 576px) {
  .team-area .single-team-card {
    max-width: 310px;
    width: 100%;
    margin: 0 auto;
  }
}
.team-area .single-team-card .member-img {
  border-radius: 50%;
  border: 1px solid;
  border-color: rgba(244, 111, 48, 0.2);
  padding: 0px 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.35s;
}
.team-area .single-team-card .member-img img {
  border-radius: 50%;
  transition: 0.35s;
}
.team-area .single-team-card .member-content {
  text-align: center;
}
.team-area .single-team-card .member-content span {
  font-family: var(--font-cabin);
  font-weight: 400;
  font-family: 1.063rem;
  letter-spacing: 0.03em;
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 4px;
}
.team-area .single-team-card .member-content h3 {
  margin-bottom: 0;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--title-color1);
  font-family: var(--font-dosis);
  line-height: 1;
  letter-spacing: 0.03em;
}
.team-area .single-team-card:hover .member-img img {
  transform: scale(1.1);
}
.mb-50 {
  margin-bottom: 50px;
}