@charset "UTF-8";

/*----------------------------------------*/
/*  01. Common CSS
/*----------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* variable */
:root {
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Roboto', serif;
  --primary-color: #97bf13; 
  --secondary-color:#262b35;
  --dark-gray:#262b35;
}
html,
body{
  overflow-x: hidden !important;
}
body {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: normal;
  line-height: 28px;
}

a {
  text-decoration: none;
}

a,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

a:hover {
  color: #97bf13;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--heading-font);
  color: #010101;
  margin-top: 0px;
  font-weight: 500;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #6a6b71;
  margin-bottom: 15px;
  line-height: 28px;
}

*::-moz-selection {
  background: #000;
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background: #000;
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background: #000;
  color: #ffffff;
  text-shadow: none;
}

textarea:focus {
  border: 1px solid #97bf13 !important;
}

/*--
- Input Placeholder
-----------------------------------------*/
*::-moz-placeholder {
  color: #000;
  font-size: 14px;
  opacity: 1;
}

/*--
- Common Classes
-----------------------------------------*/
.fix {
  overflow: hidden;
}

.p-relative {
  position: relative;
}

.container-fluid {
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1350px;
  }
}

/* tp-btn */

.tp-btn-round {
  padding: 8px 30px;
  background: #97bf13;
  font-family: var(--body-font);
  font-size: 18px;
  color: #ffffff;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s;
  display: inline-block;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
  /* height: 60px;
  line-height: 60px; */
}
.tp-btn-round i {
  margin-left: 10px;
  font-size: 15px;
}
.tp-btn-round:hover {
  background: #ffffff;
  color: #97bf13;
  border-color: #97bf13;
}

.tp-btn-round:before {
  background-color: #fff;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
}

.tp-btn-round:hover:before {
  left: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}

/* calculate-btn */
.calculate-btn {
  padding: 0 32px;
  background: #010101;
  font-family: var(--body-font);
  font-size: 18px;
  color: #ffffff;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  padding: 15px 30px;
  /* height: 60px;
  line-height: 60px; */
  width: 100%;
}
.calculate-btn i {
  margin-left: 10px;
  font-size: 15px;
}
.calculate-btn:hover {
  background: #ffffff;
  color: #97bf13;
}

.calculate-btn:hover:before {
  left: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}

/* -------- topbar ------------ */
.top-nav {
  position: absolute;
  z-index: 222;
  width: 100%;
}

.topbar-info {
  display: flex;
  justify-content: center;
  justify-content: end;
  padding-top: 25px;
  padding-bottom: 30px;
}

.contact-item {
  display: flex;
  justify-content: center;
  position: relative;
}

.me-25{
  margin-right: 25px;
}
.contact-item:last-child::before {
  display: none;
}
.contact-item i {
  font-size: 45px;
  color: #ffffff;
  margin-right: 10px;
}
.contact-item img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.contact-item .flaticon-contact {
  animation: phone-icon-animate 1.5s ease-in-out infinite;
  display: inline-block;
  line-height: 1;
}
.contact-item p {
  font-size: 18px;
  line-height: 1.2;
  color: #97bf13;
  font-family: var(--body-font);
  margin-bottom: 0;
}
.contact-item .content a {
  font-size: 22px;
  line-height: 1.2;
  color: #ffffff;
  font-family: var(--body-font);
  font-weight: 500;
}

/* ---------------- slider-area ------------- */

.hero-area {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: left;
}
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.hero-area .row {
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 100px;
}

@media (min-width: 768px) {
  .hero-area {
    height: 100vh;
  }
  .awardsImage {
    border-right: 1px solid #c9c9c9;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .tp-contact-map iframe {
    min-height: 550px;
  }
}
@media (max-width: 575px) {
  .slider-all-text p {
    font-size: 14px !important;
  }
  .choose-list{
    margin-bottom: 10px !important;
  }
}

.slider-all-text {
  padding: 80px 0px 80px;
  z-index: 11;
  position: relative;
  overflow: hidden;
}

@media (max-width: 575px) {
  .slider-all-text {
    padding: 40px 0px 30px !important;
  }
}
.slider-all-text p {
  margin-bottom: 15px;
  font-size: 20px;
  color: #ffffff;
  display: block;
  font-weight: 400;
  display: inline-block;
  background-color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 6px;
}
.slider-all-text .choose-list span {
  font-size: 17px;
  color: #ffffff;
  display: block;
  font-weight: 400;
}

.hero-title {
  font-size: 52px;
  line-height: 1.4;
  color: #ffffff;
  /* text-transform: uppercase; */
  font-weight: 700;
  margin-bottom: 0;
}
.hero-title span{
  color: var(--primary-color);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-title {
    font-size: 46px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-title {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .hero-title {
    font-size: 26px;
    line-height: 36px;
  }
  .choose-info{
    margin-top: 20px !important;
  }
}
/*----------------------------------------*/
/*  04. Features CSS
/*----------------------------------------*/

.video-area {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 80px;
  padding-bottom: 80px;
  mix-blend-mode: multiply;
}
@media (min-width: 1199px) {
  .video-area{
    background-attachment: fixed;
  }
}
.video-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  /* background: rgba(2, 0, 9, 0.7); */
  background-color: rgba(0, 0, 0, .7);
}

.video-content {
  max-width: 750px;
  margin: 0 auto;
  z-index: 0;
  position: relative;
}

.video-title {
  font-size: 45px;
  line-height: 1.2;
  color: #ffffff;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .video-title {
    font-size: 32px;
    line-height: 45px;
  }
}

.tp-calculate {
  position: relative;
  z-index: 9;
}
.calculate-form-wrapper {
  width: 100%;
  padding: 20px 25px 25px 25px;
  background: #97bf13;
  display: inline-block;
  border-radius: 3px;
}

.calculate-form-wrapper.white-bg{
  background-color: #fff;
  padding: 0;
}

@media (max-width: 575px) {
  .calculate-form-wrapper {
    padding: 15px;
  }
}
.calculate-form-wrapper input,
.calculate-form-wrapper select {
  color: #010101;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  display: block;
  font-weight: 500;
  height: 52px;
  padding: 0px 20px;
  border: none;
  outline: none;
  border-radius: 3px;
  background: #f5f5f5;
  width: 100%;
}
textarea.form-control{
  height: 90px;
}

.tp-calculate-form-title {
  font-size: 20px;
  color: #ffffff;
}
.calculate-form-wrapper p{
  color: #fff;
  font-size: 14px;
}
.sponsor_slider-active .swiper-wrapper {
  align-items: center;
}

.sponsor_slider .owl-dots,
.companies_slider .owl-dots{
  bottom: -5% !important;
}


/*----------------------------------------*/
/*  05. About CSS
/*----------------------------------------*/
.tp-about-area {
  position: relative;
  padding-bottom: 340px;
  /* margin-top: 25px; */
}

.about-info {
  margin-left: 120px;
  max-width: 560px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .about-info {
    margin-left: 105px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-info {
    margin-left: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-info {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-info {
    margin-left: 0;
  }
}

.choose-info {
  margin-top: 30px;
}

.choose-list {
  position: relative;
  margin-bottom: 18px;
}

.choose-icon {
  position: relative;
  height: 30px;
  width: 30px;
  border-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-right-radius: 30px;
  line-height: 34px;
  background: #97bf13;
  text-align: center;
  /* margin-right: 40px; */
  transition: all 0.3s ease-out 0s;
  position: absolute;
  z-index: 2;
}
.choose-icon i {
  font-size: 20px;
  color: #ffffff;
  transition: all 0.3s ease-out 0s;
  display: inline-block;
  z-index: 2;
  position: relative;
}

.choose-icon-wrap {
  position: relative;
}

/* .choose-icon-wrap::before {
  position: absolute;
  content: "";
  height: 75px;
  width: 75px;
  border-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-right-radius: 30px;
  background-color: #fcdddf;
  top: -5px;
  left: -10px;
  z-index: 1;
} */

.choose-content {
  padding-left: 45px;
}

.choose-icon:hover i {
  animation: scale-up-one infinite 1.5s linear;
}

/*----------------------------------------*/
/*  06. Section-title CSS
/*----------------------------------------*/

.section-title {
  font-size: 36px;
  line-height: 1.2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title {
    font-size: 36px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .section-title {
    font-size: 24px;
    line-height: 1.4;
  }
}

.section-border {
  position: relative;
  display: block;
}
.section-border i {
  color: #97bf13;
  font-size: 15px;
}
.section-border::before {
  position: absolute;
  content: "";
  width: 95px;
  height: 2px;
  background: #97bf13;
  top: 35%;
  left: 25px;
}

.section-wrap-two {
  /* max-width: 665px; */
  margin: 0 auto;
}

/* .section-wrap {
  max-width: 570px;
} */

/*----------------------------------------*/
/*  06. Services CSS
/*----------------------------------------*/

.services-icon img{
  width: 30px;
  position: relative;
  top: -4px;
}

.services-icon {
  position: relative;
  height: 65px;
  width: 65px;
  border-radius: 5px;
  border-bottom-right-radius: 30px;
  line-height: 70px;
  background: #97bf13;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
  z-index: 2;
  transition: 0.3s;
}
.services-icon i {
  font-size: 22px;
  color: #ffffff;
  transition: 0.3s;
  display: inline-block;
}

.sv-inner {
  position: relative;
  display: inline-block;
}

.sv-inner::after {
  position: absolute;
  content: "";
  height: 65px;
  width: 65px;
  border-radius: 5px;
  border-bottom-right-radius: 30px;
  background-color: #f2f4ec;
  top: -8px;
  left: -8px;
  z-index: 1;
}

.tpcounter-area {
  background: #ffffff;
  margin-left: 7%;
  position: relative;
  margin-top: -250px;
}
@media (max-width: 575px) {
  .tpcounter-area {
    margin-left: 0;
  }
}
.tpcounter-area::before {
  position: absolute;
  content: "";
  width: 100%;
  background: #ffffff;
  bottom: -40px;
  height: 60px;
  left: 0;
  right: 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 8px 8px -4px;
}

.counter-item {
  padding: 45px 30px 25px 30px;
  position: relative;
  width: 100%;
  /* float: right; */
  /* padding: 0 5%; */
  position: relative;
  text-align: left;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .counter-item {
    padding: 65px 15px 40px 20px;
  }
}

.counter-item-border {
  border-right: 2px solid #e3e6e7;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .counter-item-border {
    border-right: 0;
  }
}

@media (max-width: 575px) {
  /* .counter-item{
    width: 50% !important;
  } */
  .counter-shape{
    left: -70px !important;
    top: 14% !important;
  }
  .counter-number h4{
    font-size: 42px !important;
  }
}

.counter-number{
  display: flex;
}

.counter-number h4 {
  font-size: 52px;
  color: #97bf13;
  width: 120px;
  float: left;
  /* transform: rotate(-90deg);
  top: 15px; */
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-number h4 {
    font-size: 50px;
    top: 0;
  }
}

.counterinfo {
  position: relative;
}
.counterinfo img {
  width: 60px !important;
}
.counterinfo span {
  font-size: 16px;
  line-height: 1.4;
  color: #010101;
  display: inline-block;
  /* font-weight: 500; */
}
.counter-shape {
  position: absolute;
  left: -140px;
  right: 0;
  top: 10%;
  text-align: center;
}

.tp-contact-map iframe {
  width: 100%;
}

.tp-contact-info {
  display: flex;
  align-items: center;
}

.tp-contact-info:hover .services-icon i {
  transform: rotateY(360deg);
}

.tp-contact-info-text {
  margin-left: 20px;
}
.tp-contact-info-text p {
  font-size: 18px;
  color: #97bf13;
}

.tp-contact-info-title {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 5px;
}

.support_area {
  position: relative;
}
@-webkit-keyframes phone-icon-animate {
  0%, 100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%, 40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%, 100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%, 40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*. ========= sticky-animation ========== */
/*----------------------------------------*/
/*  07. Fitness CSS
/*----------------------------------------*/
.fitness-gallery-area {
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
}
.fitness-gallery-area {
  .owl-dots {
    bottom: -10% !important;
  }
}

.fitness-item {
  position: relative;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.fitness-item img {
  width: 100%;
  position: relative;
}

.fitness-item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  left: 0;
  top: 0;
  z-index: 1;
}

.fitness-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.8); */
  color: white;
  text-align: left;
  padding: 15px;
  transition: all 0.3s ease-in-out;
}
.fitness-info h4 {
  color: var(--primary-color);
  font-size: 28px;
  position: relative;
  z-index: 1;
}

.fitness-content p {
  color: #fff !important;
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.5;
}

.fitness-item:hover .fitness-info {
  opacity: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fitness-info {
    padding: 30px 15px 20px 20px;
  }
}

.fitness_button {
  text-align: center;
}

/* Hide scrollbar for modern browsers */
.fitness-content::-webkit-scrollbar {
  width: 5px;
}

.fitness-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
}

.fitness-content h4 {
  font-size: 24px;
  line-height: 1;
  color: var(--primary-color);
  font-weight: 500;
  position: absolute;
  z-index: 1;
  text-align: left;
}
.fitness-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.fitness-item:hover .fitness-content {
  max-height: 320px;
  overflow-y: auto;
  padding-top: 10px;
}

@media (max-width: 575px) {
  .fitness-content span {
    font-size: 18px;
  }
}

.fitnes-gallery-shape {
  position: absolute;
  z-index: -1;
  top: -10%;
}

.fitnes-gallery-shape-2 {
  position: absolute;
  z-index: -1;
  top: -25%;
  right: 0;
}

.fitness-slider_active .owl-stage-outer {
  overflow: visible;
  margin-bottom: 60px;
}
.fitness-slider_active .owl-item.active.center {
  z-index: 1;
}
/* .fitness-slider_active .owl-item.active.center .fitness-item {
  transform: scale(1.07);
}
.fitness-slider_active .owl-item.active.center .fitness-item img {
  border: 2px solid #ffffff;
  border-radius: 5px;
} */
/* .fitness-slider_active .owl-item.active.center .fitness-info {
  visibility: visible;
  opacity: 1;
} */

/*----------------------------------------*/
/*  08. Trainer CSS
/*----------------------------------------*/
.trainer-area {
  position: relative;
  background-color: #f2f4ec;
  background-position: left top;
  background-repeat: no-repeat;
  
}

.trainer-single {
  position: relative;
  overflow: hidden;
}

.trainer-image img {
  border-radius: 3px;
  border-top-left-radius: 25%;
  border-bottom-right-radius: 25%;
  width: 100%;
  transition: 0.3s;
}

.trainer-info {
  position: absolute;
  left: 20px;
  background: #ffffff;
  padding: 25px;
  padding-bottom: 25px;
  width: 83%;
  right: -45px;
  bottom: 20px;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .trainer-info {
    clip-path: polygon(0 0, 82% 0, 100% 100%, 0% 100%);
    bottom: -20%;
    visibility: hidden;
    opacity: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .trainer-info {
    padding: 15px;
    padding-bottom: 15px;
  }
}

.trainer-name {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 0;
}
.trainer-info p{  
  font-size: 14px;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 0;
}
.trainer-info span{  
  color: #888;
}

.trainer-single:hover .trainer-info {
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}

.trainer-single:hover .trainer-image img {
  border-top-left-radius: 3px;
  border-bottom-right-radius: 3px;
}


.blog-image img {
  width: 100%;
}

.about-images-carousel .owl-next,
.about-images-carousel .owl-prev {
  font-size: 20px;
  background: #ffffff;
  height: 50px;
  width: 50px;
  line-height: 55px;
  font-size: 20px;
  color: #010101;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 9;
  text-align: center;
  top: 50%;
  margin: 0px;
  vertical-align: middle;
  transition: all 0.3s ease-out 0s;
  box-shadow: 0px 0px 30px 0px rgba(0, 5, 63, 0.1);
}
.about-images-carousel .owl-next i,
.about-images-carousel .owl-prev i{
  font-weight: 500 !important;
}

.bs-button::after {
  display: none;
}
.bs-button:hover {
  background: #97bf13;
  color: #ffffff;
}

.owl-next,
.owl-prev {
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-images-carousel .owl-next {
  right: -35px;
  left: auto;
}

.about-images-carousel .owl-prev {
  left: -35px;
  right: auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog__slider-inner .swiper-button-next {
    right: -10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog__slider-inner .swiper-button-next {
    right: -15px;
  }
}
.blog__slider-inner .swiper-button-prev {
  left: -20px;
  right: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog__slider-inner .swiper-button-prev {
    left: -10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog__slider-inner .swiper-button-prev {
    left: -15px;
  }
}

/*----------------------------------------*/
/*  11. Classes CSS
/*----------------------------------------*/

.tp-support-form-field textarea, 
.tp-support-form-field select, 
.tp-support-form-field input {
  color: #6a6b71;
  font-size: 16px;
  display: block;
  width: 100%;
  height: 52px;
  background: #ffffff;
  font-weight: 400;
  border: 1px solid #e3e6e7;
  outline: none;
  padding: 0px 25px;
  width: 100%;
  border-radius: 6px;
  font-family: "Roboto", sans-serif;
}
.tp-support-form-field select {
  font-size: 15px !important;
}
.tp-support-form-field textarea {
  height: 90px;
  padding: 20px;
  border-radius: 6px;
  resize: none;
}
.tp-support-form-field input:focus,
.tp-support-form-field select:focus,
.tp-support-form-field textarea:focus {
  border: 1px solid #97bf13 !important;
  box-shadow: unset !important;
}

.support-title{
  font-size: 22px;
}
/*----------------------------------------*/
/*  13. Footer CSS
/*----------------------------------------*/
.footer-area {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.copy-right-area {
  background: #1e1e1e;
  padding: 15px 0;
}

.copyright-info {
  display: flex;
  justify-content: center;
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .copyright-info {
    display: block;
    text-align: center;
  }
}
.copyright-info p {
  color: #ffffff;
  margin-bottom: 0;
}

/*# sourceMappingURL=style.css.map */

.w-40{
  width: 40px;
}

.banner__info {
  max-width: 240px;
  border-radius: 8px;
  padding: 6px 12px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow);
  margin-top: 35px;
  position: relative;
  z-index: 9;
}
.w-40 {
  width: 40px;
}
.fw-500 {
  font-weight: 500 !important;
}
.fs-16 {
  font-size: 16px !important;
}
.fs-16 {
  font-size: 16px !important;
}
.banner__info i {
  color: #ffa41b;
}







.contact-container {
  position: fixed;
  right: 0;
  bottom: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.call-us, .whatsapp-us {
  background-color: var(--primary-color);
  border: 1px solid #eee;
  border-radius: 18px 0 0 18px;
  max-width: 56px;
  margin-bottom: 10px;
  text-align: center;
  padding: 7px 12px;
  transition: max-width 0.5s ease-in-out, opacity 0.5s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
}

.call-us a, .whatsapp-us a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #707070;
}

.whatsapp-us img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.call-us svg{
  width: 30px;
  margin-right: 15px;
}

.call-us:hover, .whatsapp-us:hover {
  max-width: 255px;
}

.chat-with-us p {
  margin-bottom: 0;
  line-height: 20px;
  color: #fff;
}

@media (max-width: 575px) {
  .call-us:hover, .whatsapp-us:hover{
    max-width: 50px !important;
  }
}


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

.popup-content {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  /* background-color: #fff; */
  /* padding: 25px; */
}

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

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

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

.form-trigger {
  cursor: pointer
}
.close {
  color: #eee;
  z-index: 99;
  float: right;
  font-size: 35px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  top: 35px;
  right: 18px;
}
.close:hover{
  color: #fff;
}

.awardsImage {
  width: 100%;
  height: 200px;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 30px 20px;
}

.awardsImage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: all .3s ease;
}

/* owl dots */

.owl-dots {
  position: absolute;
  bottom: -14%;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.owl-dot {
  display: inline-block;
  margin: 2px !important;
  opacity: 1;
  width: 10px;
  height: 10px;
  background-color: transparent !important;
  border: 1px solid #000;
  color: #E4E4E4 !important;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.owl-dot.active {
  background: var(--primary-color) !important;
  width: 10px;
  border-radius: 50%;
  height: 10px;
}

@media (max-width: 575px) {
  .owl-dot {
    margin: 1px 4px !important;
  }
  .top-logo img{
    max-width: 100px;
  }
  .banner__info{
    margin-top: 20px !important;
  }
}
.testimonial-section .owl-dot{
  border: 1px solid #fff !important;
}


/**----------------------------------------
START: Testi CSS
----------------------------------------*/
.testimonial-section{
  background-color: #141414;
  margin-top: 30px;
}
.testi-item {
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .testi-item{
    height: 425px;
  }
}
@media only screen and (max-width: 767px) {
  .testi-item {
    padding: 30px 20px;
  }
}
.testi-item .content {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #D2D2D2;
}
.testi-item .content .title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .testi-item .content .title {
    font-size: 20px;
  }
  .md-mt-40{
    margin-top: 40px;
  }
}
.testi-item .content p {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 0;
}
/* .testi-item .testi-author-info {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 15px;
} */
.testi-item .testi-author-info .review {
  display: flex;
  list-style: none;
  position: absolute;
  margin-bottom: 0;
  right: 25px;
  top: 40px;
}
.testi-item .testi-author-info .review li {
  color: #FFB422;
  font-size: 12px;
}
.testi-item .testi-author-info .review li:not(:last-of-type) {
  margin-right: 5px;
}
.testi-item .testi-author-info .name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #fff;
}
.testi-item .testi-author-info span {
  font-family: var(--rr-ff-body);
  font-size: 13px;
  display: block;
  font-weight: 400;
  margin-top: 5px;
  /* text-transform: capitalize; */
  color: #fff;
}

.testi-meta{
  display: flex;
  /* align-items: center; */
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 15px;
}

.awards-area{
  /* margin-right: 7%;
  margin-top: -120px; */
  position: relative;
  background: #ffffff;
}

.tabs {
  background-color: #ebecee;
  display: inline-block;
  border-radius: 40px;
  padding: 4px;
}

.tab-button {
  background-color: transparent;
  color: #000;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 5px;
  margin: 0 5px;
  border-radius: 40px;
}

.tab-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.tab-button.active {
  background: #97bf13;
  color: #fff;
  padding: 15px 60px;
  margin: 0;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
.client-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.client-item {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.client-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* .owl-carousel .owl-item img{
  width: unset !important;
  display: unset !important;
} */

.counter-shape img{
  width: unset !important;
  display: unset !important;
}

#phone {
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}
.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.iti--separate-dial-code .iti__selected-dial-code{
  color: #55585b;
}
.iti {
  width: 100%;
}
.w-20 {
  width: 20px !important;
}

.header .iti {
  margin-bottom: 15px !important;
}

.tp-event-area {
  background-color: #f2f4ec;
  margin-top: 30px;
  background-position: left top;
  background-repeat: no-repeat;
}

.event-form {
  background-color: #fff;
  padding: 26px 40px;
}

.mt-15{margin-top:15px}.mt-25{margin-top:25px}.mt-30{margin-top:30px}.mt-35{margin-top:35px}.mb-10{margin-bottom:10px}.mb-15{margin-bottom:15px}.mb-20{margin-bottom:20px}.mb-30{margin-bottom:30px}.mb-35{margin-bottom:35px}.mb-50{margin-bottom:50px}.pt-60{padding-top:60px}.pt-80{padding-top:80px}.pb-60{padding-bottom:60px}
.pb-80{padding-bottom:80px}.pb-100{padding-bottom:100px}

.gv-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.gv-radio-group label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    user-select: none;
}

.gv-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}
.gv-radio-group input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 26px;
}
.custom-radio {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 50%;
  transition: all 0.3s;
}

.gv-radio-group input[type="radio"]:checked + .custom-radio {
  background-color: #97bf13;
  border-color: #97bf13;
}

.gv-radio-group input[type="radio"]:checked + .custom-radio::after {
    display: block;
}

.custom-radio::after {
    content: "";
    position: absolute;
    display: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

#popupForm3 .popup-content img{
  width: 100%;
  cursor: pointer;
}

#popupForm2 .close {
  color: #555 !important;
  top: 15px !important;
}

#popupForm2 .close:hover {
  color: #000 !important;
}