@import url('https://fonts.googleapis.com/css?family=Special+Elite');
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic);

/* josefin sans  */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&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=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/* poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary: #007E00;
  --secondary: #CEFFCE;
  --font-primary: #1D231F;
  --foot-bg: #272727;
  --story-bg: #313D35;
  --font-dark-bg: #7A7B82;
  --story-font: #C4C4C4;
  --secodary-font: #fff;
}

p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  margin: 0px;
  padding: 0px;
  font-size: 25px;
}

ul,
ol {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  margin: 0;
  list-style-type: none;
}

/* common css for all sectoin start ------------------- */
.cpt_hide {
  display: none;
}

.dummy {
  padding: 44px;
}

.btn_more {
  text-align: center;
  margin-top: 20px;
}

.btn_more a {
  display: inline-block;
  padding: 13px 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  transition: background 0.3s, transform 0.3s;
  text-decoration: none;
  font-weight: 700;
}

.btn_more a:hover {
  color: #fff;
  background: #006400;
  transform: scale(1.05);
  text-decoration: none;
}

.page_title {
  text-align: center;
  padding: 0px 0px 30px;
  position: relative;
  z-index: 2;
}

.page_title h2 {
  font-size: 35px;
  padding-bottom: 10px;
  color: var(--font-primary);
  text-transform: capitalize !important;
  margin: 0px;
  padding-top: 10px;
}

.page_title p {
  padding-bottom: 10px;
  font-size: 16px;
  color: #1f1f1f;
  text-align: center;
  line-height: 25px;
  word-spacing: 1px;
  margin-bottom: 0;
}

/* top contact ------------- */

.top_contact {
  padding: 12px 0;
  background: var(--primary);
}

.top_contact .phone_detail,
.top_contact .socials {
  opacity: 0;
  transform: translateX(0);
  transition: all 0.6s ease-in-out;
  pointer-events: none;
  /* prevent interaction when hidden */
}

/* Initially hide off screen */
.top_contact:not(.animate) .phone_detail {
  transform: translateX(-100px);
}

.top_contact:not(.animate) .socials {
  transform: translateX(100px);
}

/* When animate class added, slide in & show */
.top_contact.animate .phone_detail {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.top_contact.animate .socials {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.top_contact .socials .social-icon {
  background-color: #fff;
  color: #232323;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.5s linear;
}

.top_contact .socials .social-icon:hover {
  font-size: 23px;
}

.phone_detail i {
  color: #fff;
  font-size: 20px;
}

.phone_detail a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}

/* header section start -------- */

.offcanvas-header .offcanvas-title {
  width: 30%;
}

.offcanvas-header .offcanvas-title img {
  width: 100%;
}

.container_head {
  width: 90%;
  margin: auto;
}

#top_header {
  position: sticky;
  top: 0;
  width: 100%;
  color: var(--secodary-font);
  padding: 10px 0px;
  z-index: 999;
  background-color: var(--secodary-font);
  box-shadow: 1px 1px 1px 1px #00000030;
}

.mob_nav button {
  color: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
}

.menu-link.btn-close {
  background: none;
  opacity: 1;
  text-decoration: none;
}

.header_row {
  display: flex;
  align-items: center;
}

.head_para {
  padding-top: 14px;
  color: black;
}

.head_para p {
  color: black;
  font-size: 12px;
}

#top_header .logo {
  width: 40%;
}

#top_header .logo a {
  display: block;
  text-decoration: none;
}

#top_header .logo a img {
  display: block;
  width: 100%;
}

.head-top {
  padding: 0;
  font-size: 18px;
}



.nav_bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
  width: 100%;
}

.nav_bar li {
  display: inline-block;
}

.nav_bar li a {
  display: block;
  text-decoration: none;
  color: var(--font-primary);
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.nev_list.active {
  background: rgb(211, 211, 211);
  padding: 10px;
  border-radius: 10px;
}

.nav_bar li.active a {
  color: #080808;
}

.nav_bar li a:hover {
  color: var(--primary);
}

.nav_bar li:nth-child(4) a:after {
  display: none;
}

.menu-link:focus {
  box-shadow: none;
}

.nav_bar li:last-child a:after {
  display: none;
}

.menu-link.active {
  color: var(--primary);
}

.site-tagline {
  font-size: 13px;
  color: var(--primary);
  text-align: end;
  margin-top: 4px;
  font-weight: 600;
  line-height: 1.4;
  text-align: start;
}

/* Header Section end ------------------------------------------------ */

/* banner  section start ==========================================*/

.banner_section {
  width: 100%;
  height: 100vh;
  background: linear-gradient(to left, rgb(47 44 44 / 0%), rgb(27 26 26 / 83%)), url(../images/growyoung.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000033;
}

.banner_main_cnt {
  height: inherit;
}

.banner_content {
  position: relative;
  z-index: 12;
  display: flex;
  flex-direction: column;
  height: inherit;
  justify-content: center;
  align-items: flex-start;
}

/*.banner_cont_box{*/
/*    background: #fff;*/
/*    border-radius: 15px;*/
/*}*/

.banner_content .banner_cont_box h2 {
  color: var(--secodary-font);
  font-size: 70px;
  line-height: 85px;
  display: flex;
  align-items: center;
  /*justify-content: center;*/
  margin-top: 10px;
}

/* banner section end --------------------------------- */

/* fitness section start --------------------------------- */

.fitness_section {
  padding: 40px 0;
  background-color: #000;
  color: var(--secodary-font);
}

.fitness_content {
  /*width: 90%;*/
  /*display: flex;*/
  /*flex-direction: column;*/
  /*align-items: flex-start; */
  /*gap: 15px; */
  text-align: center;
}

.fitness_content h1,
.fitness_content h2,
.fitness_content p {
  margin: 0;
}

.fitness_content p {
  font-weight: 500;
  font-size: 18px;
  color: #EEFFEE;
  line-height: 50px;
}

.fitness_content h1 {
  font-size: 60px;
  font-weight: 700;
}

.fitness_content h2 {
  font-size: 40px;
  font-weight: 700;
}

.fitness_content h2 {
  color: #17df17;
}

/* fitness section end --------------------------------- */


/* quotes section start ===================================== */
.quotes {
  background: #EEFFEE;
  padding: 60px 0;
}

.quotes p {
  font-size: 20px;
  line-height: 38px;
  text-align: justify;
  color: #404040;
}

.quotes h2 {
  font-size: 45px;
  line-height: 70px;
  color: #000;
  font-weight: 700;
}

.quotes video {
  border: 8px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.ul_cnt {
  color: #404040;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-family: "Lato", sans-serif;
  list-style: none;
  display: flex;
  align-items: flex-start;
}

.ul_cnt_gift {
  color: #EEFFEE;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-family: "Lato", sans-serif;
  list-style: none;
  display: flex;
  align-items: flex-start;
}

/* quotes section end ----------------------------------- */

/* Numbers section start --------------------------------- */
.number_sec {
  background: #fff;
}

.all_grow_section {
  padding: 2rem 0;
}

.num_top h3 {
  color: #000;
  font-size: 45px;
  font-weight: 700;
  line-height: 65px;
}

.num_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 87px;
  height: 87px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 20px;
}

.num_icon i {
  font-size: 40px;
  font-weight: 600;
}

.num_row {
  padding: 15px;
}

.num_list {
  text-align: center;
  color: #000;
  font-size: 30px;
  line-height: 62px;
}

.count_val {
  font-size: 17px;
  line-height: 16px;
  font-family: "Poppins", sans-serif;
}

/* number section end ============================== */

/* quotes section  two start ===================================== */
.quotes-second {
  background: #000;
  padding-top: 80px;
  padding-bottom: 80px;
}

.quotes-second p {
  line-height: 30px;
  text-align: justify;
  color: #EEFFEE;
  font-size: 20px;
  font-weight: 500;
}

.quotes-second h2 {
  color: #EEFFEE;
  font-size: 45px;
  font-weight: 700;
  line-height: 70px;
}

.quotes-second video {
  border: 8px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* quotes section  two end ----------------------------------- */


/* section number page start ------------------------ */

.section-number {
  font-size: 200px;
  font-weight: 700;
  color: var(--primary);
  text-shadow: 2px 2px 4px #aaa;
  line-height: 1;
  font-family: "Ubuntu", sans-serif;
  display: flex;
  justify-content: center;
}

/* .section-content h2 {
  font-size: 64px;
  line-height: 80px;
  font-weight: 700;
  color: #000;
}

.section-content p {
  font-size: 22px;
  line-height: 30px;
  color: #000;
  font-weight: 500;
}*/

.flow {
  padding: 45px 0;
}

.number_card {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  padding: 15px 9px;
}

.number_rt {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.number_rt h4 {
  font-size: 22px;
  line-height: 30px;
  color: #000;
  font-weight: 500;
}

.number_rt ul li {
  font-size: 17px;
  color: #000;
  display: flex;
  align-items: flex-start;
}

/* ********************************************************************************************************************************************************************** */
.sec-para {
  padding-left: 220px;
}

@media (max-width: 767.98px) {
  .sec-para {
    padding: 0 !important;
  }
}

@media (max-width: 991.98px) {
  .sec-para {
    padding-left: 120px;
  }
}

/* section number  page end */

/* quotes section third start ===================================== */
.quotes-third {
  background: #000;
  padding: 60px 0;
}

.quotes-third p {
  font-size: 20px;
  font-weight: 500;
  text-align: justify;
  color: #EEFFEE;
  padding-bottom: 15px;
}

.quotes-third h2 {
  /*color: rgba(185, 186, 190, 1);*/
  color: #EEFFEE;
  font-size: 45px;
  font-weight: 700;
  line-height: 68px;
}

.quotes-third video {
  border: 8px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  color: #e8dfdf;
  height: 320px;
}

.news_ulist {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.news_para {
  color: #EEFFEE;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.news_icon {
  color: #1b793f;
  margin-right: 10px;
  font-size: 1rem;
}

.news_para i {
  display: inline-block;
}

/* quotes section third end ----------------------------------- */

/* info section start */
.info-card {
  background: #fff;
  border-radius: 15px;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  padding: 60px 20px 0;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
  height: 100%;
}

.info_section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box.odd {
  background-color: #F0F0F0;
}

.icon-box.even {
  background-color: var(--secondary);
}

.icon-box i {
  font-size: 28px;
  color: var(--font-primary);
}

.info-card h5 {
  color: var(--font-primary);
  margin-bottom: 55px;
  font-size: 26px;
  line-height: 43px;
}

.info-card .btn-custom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 10px 0;
  font-weight: 600;
  color: var(--secodary-font);
  text-decoration: none;
  font-size: 13px;
  line-height: 25px;
  font-family: "Lato", sans-serif;
}

.btn-green {
  background-color: var(--primary);
}

.btn-black {
  background-color: #000;
}

.info-card:hover {
  transform: none;
}

.info_section .row>div:nth-child(odd) .info-card {
  transform: translateY(-30px);
}

.info_section .row>div:nth-child(even) .info-card {
  transform: translateY(30px);
}

.info-card:hover {
  transform: none;
}

@media (min-width: 767px) {
  .info_section .row>div:nth-child(odd) .info-card {
    transform: translateY(-30px);
  }

  .info_section .row>div:nth-child(even) .info-card {
    transform: translateY(30px);
  }
}

@media (max-width: 767.98px) {
  .info_section .row>div .info-card {
    transform: none !important;
  }
}


/* info section end */

/* carousel section start --------------------*/

.carousel-section {
  padding: 20px;
  background-color: #000;
}

.carousel-section h1 {
  text-align: center;
  color: var(--secodary-font);
  font-size: 45px;
  font-weight: 700;
  line-height: 75px;
}

.custom-carousel {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
  border-radius: 40px;
}

.carousel-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 30px;

}

.carousel-slide img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  padding: 20px;
}


input[type="radio"] {
  display: none;
}

#slide1:checked~.carousel-slides {
  transform: translateX(0%);
}

#slide2:checked~.carousel-slides {
  transform: translateX(-100%);
}

#slide3:checked~.carousel-slides {
  transform: translateX(-200%);
}

#slide4:checked~.carousel-slides {
  transform: translateX(-300%);
}

.carousel-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.carousel-nav label {
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.6;
}

.carousel-nav label:hover {
  opacity: 1;

}

#slide1:checked~.carousel-nav label[for="slide1"],
#slide2:checked~.carousel-nav label[for="slide2"],
#slide3:checked~.carousel-nav label[for="slide3"],
#slide4:checked~.carousel-nav label[for="slide4"] {
  background: #009090;
  /* Bright green */
  box-shadow: 0 0 10px #009090;
  /* Glow effect */
  opacity: 1;
}

/* tickets  */

.event_box {
  position: relative;
  background-color: #FFF;
  border-radius: 8px;
  display: flex;
  float: left;
  margin-bottom: 20px;
  width: 100%;
  height: 220px;
}

@media (max-width: 350px) {
  .event_box {
    height: 265px;
  }
}

.event_box p {
  color: #a7a7a7
}

.event_box .left:before {
  content: "";
  background-color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: -15px;
  left: 120px;
}

.event_box .left:after {
  content: "";
  background-color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  bottom: -15px;
  left: 120px;
}

.event_box .left {
  border-right: 2px dashed #DADDE6;
  padding: 70px 20px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -2px
}

.event_box .left p:first-child {
  color: #37383a;
  font-size: 60px;
  line-height: 60px;
  padding: 0;
}

.event_box .left p:last-child {
  font-size: 15px;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event_box .right {
  padding: 20px 12px;
}

.event_box .right h3 {
  border: 1px solid;
  word-wrap: break-word;
}

.event_box .event_title {
  font-size: 25px;
  word-wrap: break-word;
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}


.all_event_details {
  word-wrap: break-word;
  padding: 0 15px;
}

.all_event_details>p {
  margin-top: 5px;
  margin-bottom: 5px;
}

.all_event_details>div {
  text-align: end;
}

.all_event_details div>span {
  font-size: 16px;
  margin-right: 10px;
  color: #000;
  font-weight: 600;
}

.event_box .event_btn {
  padding: 10px 20px;
  background: #7c83bd;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.5s ease;
}

.event_box .event_btn:hover {
  background: #3d4cca;
}

.event_box .right p:last-child {
  text-align: end;
}

@media (max-width: 576px) {
  .custom-carousel {
    padding: 10px;
    height: 260px !important;
    width: 100%;
  }

  .carousel-slide {
    padding: 13px;
  }

  .carousel-slide img {
    height: 100%;
    padding: 0px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .carousel-section h1 {
    font-size: 35px;
  }
}

/* carousel section start --------------------*/

/* partner section start*/

.partners .owl-nav {
  display: none !important;
  /* Force hide arrows */
}

.partners .owl-stage {
  display: flex;
  align-items: center;
}

.partners .owl-item .item img {
  opacity: 0.5;
}

.partners .owl-item.active.center .item img {
  opacity: 1;

}

.partners-section {
  padding: 60px;
  text-align: center;
}

.partners-section h2 {
  font-size: 45px;
  line-height: 75px;
  color: var(--font-primary);
  font-weight: 700;
}

.partner-logo {
  /*max-height: 80px; */
  width: auto;
  margin: 10px auto;
  display: block;
}

/* add section end */

/* footer_section start ================================  */
.footer {
  background-color: #272727;
  color: #fff;
  padding-top: 70px;
  padding-bottom: 70px;
}

.footer a {
  color: #dbdbdb;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer .social-icon {
  background-color: #BFD2F8;
  color: #232323;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

.footer .socials {
  margin-top: 20px;
}

.footer-bottom {
  text-align: start;
  color: #ccc;
  margin-top: 40px;
  font-size: 14px;
}

.fw-bold {
  padding-bottom: 10px;
}

.list-unstyled li {
  padding-bottom: 10px;
}

.foot_logo_cnt h6 {
  font-size: 20px;
}

/* footer_section end ================================  */

/* contact  section start ==========================================*/

.contact_section {
  width: 100%;
  height: 60vh;
  background-image: linear-gradient(to right, rgb(47 44 44 / 0%), rgb(27 26 26 / 83%)), url(../images/contact_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  display: flex;
  align-items: center;
}

.contact_main_cnt {
  height: inherit;
}

.contact_content {
  position: relative;
  z-index: 12;
  display: flex;
  height: inherit;
  justify-content: center;
  align-items: center;
}

.contact_content .contact_cont_box h2 {
  color: #EEFFEE;
  font-size: 30px;
  line-height: 58px;
}

.contact_cont_box h3 {
  /*color: var(--font-primary);*/
  color: #EEFFEE;
  font-size: 27px;
  line-height: 46px;
}

.contact_content .contact_cont_box p {
  /*color: #4F5455;*/
  color: #EEFFEE;
  font-size: 20px;
  line-height: 39px;
}

.form-section {
  padding: 50px 15px;
  background-color: #f4f4f4;
}

.form-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Left form card - bigger */
.form-card-left {
  min-height: 620px;
  background-color: #fff;
  padding: 45px 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  min-height: 620px;
}

/* Right form card - smaller */
.form-card-right {
  min-height: 500px;
  background-color: #fff;
  padding: 45px 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  min-height: 620px;
}

.form-title {
  font-size: 32px;
  line-height: 44px;
}

.form-subtitle {
  font-size: 16px;
  color: #667085;
  line-height: 30px;
}

.form-card form {
  padding: 15px 5px;
}

.form-input,
.form-select-input {
  border-radius: 6px;
  border: 1px solid #D0D5DD;
  transition: border-color 0.3s ease;
  background: linear-gradient(to right, #fdfdfd, #f4f4f4);
  /* Light gradient for kalaa */
  padding: 10px 12px;
}

.form-input:focus,
.form-select-input:focus {
  border-color: #1a5831;
  box-shadow: 0 0 0 0.15rem rgba(25, 135, 84, 0.25);
  outline: none;
  border: none;
}

.form-button {
  background-color: var(--primary);
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 20px;
}

.form-button:hover {
  background-color: #006400;
  color: white;
}


/* contact section end --------------------------------- */

/* ourteam section start ===================================== */

.team_top_sec {
  background: #000;
  padding: 35px 40px;
}

.teams_top_cnt h2 {
  line-height: 100%;
  font-size: 40px;
  color: var(--secodary-font);
  margin-bottom: 18px;
  /*padding: 0 30px;*/
}

.teams_top_cnt p {
  text-align: justify;
  font-weight: 500;
  line-height: 36px;
  font-size: 18px;
  color: var(--story-font);
}

.teams_top_img {
  padding: 5px;
  background: #fff;
  border-radius: 10px;
}

.teams_top_img img {
  border-radius: 10px;
}

.team_img_container {
  background: #eff0f6;
  position: relative;
  border-radius: 30px;
}

.team_member_cnt {
  line-height: 25px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 128, 0, 0.50);
  border-radius: 25px;
  padding: 50px 20px 20px 20px;
  color: #000;
  position: absolute;
  z-index: 2;
  bottom: 40px;
}

.teammembers {
  padding-top: 60px;
}

.team_member_cnt h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  text-align: center;
}

.team_member_cnt h6 {
  font-size: 18px;
}

.team_member_cnt p {
  font-weight: 400;
  font-size: 17px;
  line-height: 29px;
  color: var(--font-dark-bg);
  text-align: justify;
}

.member_image {
  position: relative;
  min-height: 730px;
}

.team_lead {
  height: 450px;
  position: relative;
  z-index: 5;
}

.team_lead img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.40);
}

.team-section-title {
  background-color: var(--primary);
  width: fit-content;
  padding: 8px 40px;
  border-radius: 50px;
}

.team-section-title h2 {
  color: #ffff;
  font-size: 40px;
  font-weight: 600;
}

.team-section {
  padding: 60px 0;
  position: relative;
  text-align: center;
}

.team-card {
  background: #fff;
  border-radius: 10px;
  padding: 85px 16px 50px 16px;
  box-shadow: 0 5px 10px rgba(0, 128, 0, 0.50);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-img {
  width: 135px;
  height: 135px;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid #f0eeee;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
}

.team-card h5 {
  font-size: 18px;
  line-height: 23px;
  color: var(--font-primary);
  font-weight: 700;
}

.team-card h6 {
  font-size: 15px;
  line-height: 23px;
  color: var(--font-primary);
  font-weight: 500;
}

.team-card p {
  font-size: 14px;
  color: var(--font-dark-bg);
  line-height: 23px;
}

.team_icon .social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  border-radius: 40px;
  font-size: 20px;
  color: #fff;
}


@media (max-width: 767px) {

  .phone_detail a {
    font-size: 15px;
  }

  .phone_detail i {
    font-size: 15px !important;
  }

  .contact_section {
    height: 30vh;
  }

  .contact_content .contact_cont_box h2 {
    font-size: 22px;
    line-height: 16px;
  }

  .contact_cont_box h3 {
    font-size: 14px;
    line-height: 14px;
  }

  .team-card {
    margin-top: 80px;
  }

  .team-img {
    width: 100px;
    height: 100px;
    top: -50px;
  }
}

/* ourteam section end ===================================== */

/* new story page css -------------- */

.success-stories {
  background-color: #C9CECA;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.story-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  justify-content: center;
}

.story-left {
  flex: 1;
  z-index: 1;
}

.story_images {
  width: 550px;
  height: 400px;
}

.story-left img {
  width: inherit;
  height: inherit;
  border-radius: 6px;
  position: relative;
}

.story-right {
  flex: 1;
}

.story-right h2 {
  font-weight: 500;
  font-size: 52px;
  line-height: 70px;
  letter-spacing: 3px;
}

.story-right .subtitle {
  font-size: 18px;
  line-height: 30px;
  color: #363636;
}

.testimonial-box {
  background-color: var(--story-bg);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
  z-index: 3;
  position: absolute;
  line-height: 1.7;
  bottom: 35px;
  right: 0;
  min-height: 200px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
}

.testimonial-box p {
  font-size: 18px;
  line-height: 30px;
  text-align: justify;
  color: var(--story-font);
}

.story_author {
  text-align: end;
  width: 100%;
  color: var(--story-font);
}

.story_author_name {
  font-size: 28px;
}

.balckQuotes {
  position: relative;
}

/* Optional: Quote marks in background */
.balckQuotes::before,
.balckQuotes::after {
  font-size: 150px;
  color: rgb(235, 235, 235);
  font-family: "Lato", sans-serif;
  position: absolute;
  z-index: 0;
  line-height: 0.7;
}

.balckQuotes::before {
  font-family: "FontAwesome";
  content: "\f10d";
  top: -40px;
  left: -60px;
}

.balckQuotes::after {
  font-family: "FontAwesome";
  content: "\f10e";
  bottom: -15px;
  right: -50px;
}

.update-stories {
  background: #f5f5f5;
  padding: 60px 20px;
  overflow: hidden;
  font-family: "Lato", sans-serif;
}

.update_home_cnt {
  padding: 20px;
}

.hidden-gallery-images img {
  max-width: 100%;
  display: block;
}

.gallery-item img {
  transition: 0.3s ease;
}

.gallery-item img:hover {
  opacity: 0.8;
}

.full-width-video {
  position: relative;
}

.video-wrapper {
  width: 45%;
  margin: auto;
}

.video-wrapper video {
  width: 100%;
}

/* .custom-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--secodary-font); 
  color: var(--primary);
  font-size: 32px;
  padding: 20px 28px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
}

.custom-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
} */

.owl-prev,
.owl-next {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--secodary-font) !important;
}

.owl-prev:after,
.owl-next:after {
  font-size: 18px !important;
  color: var(--secodary-font) !important;
}

/* story page css end =============== */

/* meta box style for blog post ============================================  */

.meta_parent_div {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.meta_parent_div label {
  font-weight: 600;
  font-size: 16px;
}

.meta_parent_div .button {
  width: 250px;
}

.story-posts {
  padding-top: 100px;
  padding-bottom: 20px;
}

.cpt-story {
  margin: auto;
  display: flex;
  justify-content: center;
}

/*--------------blag section start */

.blog-section {
  margin: 0;
  padding: 0;
  padding-bottom: 20px;
}

.blog-header {
  background-color: #eeffee;
  padding: 30px 40px;
  width: 100%;
}

.blog-section-title {
  font-weight: 700;
  font-size: 35px;
  line-height: 100%;
  color: var(--font-primary);
}

.blog-image {
  width: 100%;
  height: 280px;
  display: block;
  border-radius: 12px;
}

.blog-title {
  font-size: 25px;
  line-height: 48px;
  color: #fafafa;
}

.white .blog-desc {
  color: #7d7878;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3.2em;
}

.black .blog-desc {
  color: #fafafa;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3.2em;
}

.read-btn {
  background-color: var(--primary);
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  max-width: 250px;
  width: 100%;
  margin-top: 20px;
  transition: all 1s ease;
}

.read-btn:hover {
  background-color: #006400;
  color: #fff;
}

.blog-card {
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 4rem;
  min-height: 350px;
}

.blog-card.black {
  background-color: #000;
}

.blog-card.black,
.blog-card.black small {
  color: #fafafa;
}

.blog-card.white {
  background-color: #fff;
  color: var(--font-primary);
}

.blog-card.white small {
  color: #564E4E;
}

.blog-card.white .blog-title,
.blog-card.white {
  color: var(--font-primary);
}

/* blag section end------------------- */


/* carousels css for all page start ------------------------- */


.update-carousel .owl-prev {
  left: 22% !important;
}

.update-carousel .owl-next {
  right: 22% !important;
}

.owl-full-gallery .owl-nav {
  display: none !important;
}

.owl-full-gallery .owl-dots {
  margin-top: 25px;
}

.owl-full-gallery .owl-dots .owl-dot {
  background: #00000054 !important;
}

.owl-full-gallery .owl-dots .owl-dot.active {
  background: #007e00 !important;
}

.story-carousel .owl-prev {
  left: -4% !important;
}

.story-carousel .owl-next {
  right: -4% !important;
}

@media (min-width: 320px) and (max-width:991px) {
  .update-carousel .owl-prev {
    left: 0% !important;
  }

  .update-carousel .owl-next {
    right: 0% !important;
  }
}


/* gallery page css start ------------------ */

.gallery-header {
  background-color: #000;
  padding: 30px 40px;
  width: 100%;
}


.gallery-section-title {
  font-weight: 500;
  font-size: 52px;
  line-height: 128%;
  letter-spacing: 4px;
  color: rgba(185, 186, 190, 1);
}

.gallery-post {
  padding: 20px;
}

.gallery_card {
  padding: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.gallery-posts {
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.gallery_card p {
  color: #000;
  font-size: 20px;
  line-height: 25px;
  margin-top: 10px;
}

.expanded-gallery .owl-nav,
.expanded-gallery .owl-dots {
  display: none !important;
}

.gal_back {
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.gal_back:hover {
  background: #006400;
  color: var(--secodary-font);
}

.gallery-preview-image {
  /*max-height: 300px;  */
  width: auto;
  margin: 0 auto;
  display: block;
}

.expanded-gallery img.img-fluid {
  width: 100%;
  /*height: 300px; */
  border-radius: 10px;
}


/* single blog page ----------------------------- */

.cbt-book {
  padding: 0 0 20px;
}

.bannerImg {
  height: 60vh;
}

.auth_image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.auth_image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.social-share-btn {
  text-decoration: none;
}

.blog_icons {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin: 5px;
  border-radius: 50px;
  font-size: 18px;
  color: white;
  transition: all 1s ease;
}

.blog_icons.linked_in {
  background-color: #5ac5e2;
}

.blog_icons.linked_in:hover {
  background-color: #4293a9;
}

.blog_icons.facebook {
  background-color: #1877F2;
}

.blog_icons.facebook:hover {
  background-color: #006fff;
}

.blog_icons.whatsapp {
  background-color: rgb(115, 222, 115);
}

.blog_icons.whatsapp:hover {
  background-color: rgb(47, 216, 47);
}

.cpt_blog_head {
  display: block;
  margin: 20px 0;
}

.blog_cnt h1:first-of-type,
.blog_cnt h2:first-of-type,
.blog_cnt h3:first-of-type,
.blog_cnt h4:first-of-type,
.blog_cnt h5:first-of-type,
.blog_cnt h6:first-of-type {
  font-size: 25px;
  line-height: 48px;
  letter-spacing: -2px;
  font-weight: 700;
}

.blog_cnt h1:not(:first-of-type),
.blog_cnt h2:not(:first-of-type),
.blog_cnt h3:not(:first-of-type),
.blog_cnt h4:not(:first-of-type),
.blog_cnt h5:not(:first-of-type),
.blog_cnt h6:not(:first-of-type) {
  font-size: 25px;
  line-height: 48px;
  letter-spacing: -2px;
  font-weight: 600;
}

.blog_cnt img {
  width: 100%;
  margin: 20px 0 30px 0;
}

.blog_cnt p {
  font-size: 16px;
  word-spacing: 1.5px;
  line-height: 25px;
  color: #505153;
  /* text-indent: 55px; */
  text-align: justify;
  margin-bottom: 15px;
}

.blog_cnt blockquote {
  padding: 1.2em 13px 1.2em 25px;
  border-left: 4px solid var(--primary);
  margin: 40px 0;
  position: relative;
}

.blog_cnt blockquote::before {
  font-family: Arial;
  content: "\201C";
  color: #969CB4;
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 10px;
}

.blog_cnt blockquote p {
  text-align: left;
  text-indent: 0;
  color: #969CB4;
  font-size: 18px;
  margin-bottom: 0 !important;
}

.blog_cnt ol,
.blog_cnt ul {
  font-size: 16px;
}

.blog_cnt ol li {
  margin-top: 7px;
  margin-bottom: 7px;
  color: #505153;
  list-style-type: decimal;
}

.blog_cnt ul li {
  list-style: square;
  /* padding-left: 5px; */
  margin-top: 7px;
  margin-bottom: 7px;
  color: #505153;
}

.blog_sharepage {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog_para p {
  font-size: 14px;
}

.blog_para {
  padding-left: 15px;
}

.blog_para p {
  font-size: 12px;
}

.blog_sharepage h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.blog_star {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
  padding: 5px;
  width: 70px;
  height: 30px;
}

.blog_star p {
  font-size: 14px;
  padding-top: 10px;
  padding-left: 5px;
}

.blog_starflex a {
  text-decoration: none;
}

.blog_starflex i {
  color: black;
}

.blog_star:hover i {
  color: blue;
}

.blog_star:hover {
  border: 1px solid lightgrey;
}



@media (min-width: 768px) and (max-width:991px) {
  .oval {
    display: none;
  }

  .bannerText {
    padding: 12px !important;
  }

  .bannerText .post_cnt {
    padding: 1rem !important;
  }
}


/* coomments section  =======================*/

.comments-section {
  background: #f5f5f5;
  padding: 25px;
}

.comment-list li {
  list-style: none;
  padding: 5px;
}

.comment-list li .comment-main-level {
  display: flex;
  padding: 10px;
  justify-content: space-between;
  align-items: center;
}

ol.children {
  padding-left: 30px;
}

.comment-main-level .comment-avatar {
  width: 10%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comment-main-level .comment-box {
  width: 85%;
}

.comment-box .comment-head {
  display: flex;
  background: #fcfcfc;
  padding: 15px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.comment-content {
  padding: 10px;
}

.comment-contents {
  border: 2px solid #d8d4d4;
  padding: 5px;
}

.comment-head .comment-reply-link {
  text-decoration: none;
  padding: 5px 7px;
  background: #d4d2d2;
  border-radius: 7px;
  color: var(--font-primary);
}


.cmt_label_field {
  margin: 10px 0;
}

.cmt_label_field label {
  font-size: 15px;
}

.cmt_inp_field textarea {
  width: 100%;
}

.comment-form .form-submit {
  text-align: end;
  margin-top: 10px;
}

.comment-form .form-submit .submit {
  background-color: #01afd1;
  color: white;
  border: none;
  padding: 8px 15px;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.comment-form .form-submit .submit:hover {
  background-color: #0296b4;
}

.no_cmt_list {
  padding: 15px;
  background-color: #fff;
  margin-bottom: 15px;
  text-align: center;
}

.no_cmt_list p {
  font-size: 17px;
  color: var(--font-primary);
}

.comments-section form {
  padding: 15px;
}

.comments-section form .comment-form-comment {
  display: flex;
  flex-direction: column;
}


/* policy page css start */
.policy {
  margin: 0 0 40px 0;
}

.policy h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 54px;
  color: var(--font-primary);
}

.policy h3 {
  font-size: 26px;
  line-height: 54px;
  color: var(--font-primary);
}

.policy p {
  font-size: 18px;
  line-height: 34px;
  color: var(--font-dark-bg);
  text-indent: 25px;
  margin-bottom: 10px;
}

.policy ol li {
  margin-top: 7px;
  margin-bottom: 7px;
  color: var(--font-dark-bg);
  list-style-type: decimal;
}

.policy .bold {
  font-weight: 900;
}

.shipping_table {
  width: 100%;
  text-align: start;
  margin: 20px 0;
}

.shipping_table th,
.shipping_table tr,
.shipping_table td {
  border: 2px solid var(--font-dark-bg);
  padding: 5px 0;
}



@media (max-width: 767px) {
  .gallery-section-title {
    font-size: 18px;
    line-height: 0;
  }

  .policy h1 {
    font-size: 20px;
    line-height: 35px;
  }

  .policy p {
    font-size: 15px;
    line-height: 20px;
    text-align: justify;
  }

  .policy h3 {
    font-size: 19px;
    line-height: 25px;
  }

  .policy ol li {
    font-size: 14px;
  }

}

@media (max-width: 426px) {
  .team_member_cnt {
    bottom: 7px;
  }
}

@media (min-width: 427px) and (max-width: 536px) {
  .team_member_cnt {
    bottom: 70px;
  }
}

@media (min-width: 537px) and (max-width: 767px) {
  .team_member_cnt {
    bottom: 100px;
  }
}

/* our story page  */
@media (max-width: 767px) {

  /*.event_box{*/
  /*    min-height: 275px;*/
  /*}*/

  /*common */
  .error-msg {
    font-size: 11px !important;
  }

  .teams_top_cnt p {
    font-size: 16px;
    line-height: 33px;
  }

  .team_member_cnt p {
    font-size: 15px;
  }

  .foot_logo_cnt h6 {
    font-size: 17px;
  }

  /* header section  ----------*/
  .navbar-nav li {
    padding: 6px 0;
  }

  /* home page ================ */
  .banner_content {
    padding: 75px 0;
  }

  /*.banner_cont_box {*/
  /*  padding:x 0;*/
  /*}*/

  .section-content h2 {
    font-size: 40px;
    line-height: 56px;
  }

  .quotes h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .quotes p {
    font-size: 15px;
    line-height: 30px;
  }

  .num_top h3 {
    font-size: 35px;
    padding-bottom: 0;
    line-height: 45px;
  }

  .count_val {
    font-size: 15px;
    line-height: 0px;
  }

  .quotes-second h2 {
    font-size: 35px;
    line-height: 36px;
  }

  .quotes-second p {
    font-size: 15px;
    line-height: 30px;
  }

  .section-content h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .section-content p {
    font-size: 16px;
  }

  .quotes-third {
    padding: 30px;
  }

  .quotes-third p {
    font-size: 16px;
    padding-bottom: 16px;
  }

  .quotes-third h2 {
    line-height: 45px;
    font-size: 35px;
  }

  .news_para {
    font-size: 16px;
  }

  .info_section {
    padding: 20px 0;
  }

  .info-card h5 {
    font-size: 20px;
  }

  .partners-section h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .partners-section {
    padding: 40px;
  }

  .section-number {
    font-size: 135px;
  }

  .quotes-second {
    padding-bottom: 40px;
    padding-top: 60px;
  }

  .quotes-second h2 {
    padding-top: 25px;
  }

  .quotes-third {
    padding: 30px 0;
  }

  .quotes-third p {
    font-size: 16px;
    padding-bottom: 16px;
  }

  /* team section ======== */
  .member_image {
    min-height: 700px;
  }


  .team_icon .social-icon {
    width: 34px;
    height: 34px;
    border-radius: 34px;
    font-size: 16px;
  }

  .team_lead {
    height: 350px;
  }

  /*.team_member_cnt{*/
  /*  padding: 25px;*/
  /*}*/

  /* story section ------------ */
  .success-stories {
    padding: 10px 20px;
  }

  .story-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .story-right {
    margin-bottom: 25px;
  }

  .story_images {
    width: 100%;
    height: 280px;
  }

  .story-right h2 {
    font-size: 24px;
    line-height: 38px;
    letter-spacing: 1px;
  }

  .story-right .subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .testimonial-box {
    position: relative;
    min-height: 345px;
  }

  .testimonial-box p {
    font-size: 16px;
    line-height: 24px;
  }

  .balckQuotes::before,
  .balckQuotes::after {
    font-size: 45px;
  }

  .balckQuotes::before {
    top: -9px;
    left: -9px;
  }

  .balckQuotes::after {
    bottom: 20px;
    right: -14px;
  }

  .update-stories {
    padding: 30px 0;
  }

  .video-wrapper {
    width: 80%;
  }

  .owl-prev,
  .owl-next {
    width: 25px !important;
    height: 25px !important;
    border-radius: 25px !important;
  }

  .owl-prev:after,
  .owl-next:after {
    font-size: 12px !important;
  }

  /* .testimonial-box {
    margin-top: 20px;
    padding: 20px;
  }

  .success-stories::before,
  .success-stories::after {
    display: none;
  } */

  /* blog section  ======*/

  .blog-section-title {
    font-size: 25px;
  }

  .blog-card {
    padding: 0;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.6);
  }

  .blog-title {
    font-size: 20px;
    line-height: 28px;
  }

  .black .blog-desc,
  .white .blog-desc {
    font-size: 15px;
    line-height: 22px;
  }

  .bannerImg {
    height: 40vh;
  }

  .auth-detail h4 {
    font-size: 18px;
  }

  .auth-detail p {
    font-size: 14px;
  }

  .blog_icons {
    width: 28px;
    height: 28px;
    padding: 13px;
    margin: 2px;
  }

  .blog_cnt h1:first-of-type,
  .blog_cnt h2:first-of-type,
  .blog_cnt h3:first-of-type,
  .blog_cnt h4:first-of-type,
  .blog_cnt h5:first-of-type,
  .blog_cnt h6:first-of-type {
    font-size: 19px;
    line-height: 27px;
  }

  .blog_cnt ol,
  .blog_cnt ul {
    font-size: 14px;
    padding-left: 10px;
  }

  /* gallery */


  .gallery-title {
    height: 4.2em;
  }


  /* blog new */

  .post-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }

  .post-thumb {
    width: 100% !important;
    height: auto !important;
  }

  .post-thumb img {
    width: 100% !important;
    height: auto !important;
  }

  .post-content {
    margin-top: 1rem;
  }

  .post-content p {
    text-align: center;
  }

  .post-content .btn {
    margin: 0 auto;
  }


  /* ourteam */

  .team_top_sec {
    padding: 35px 12px;
  }

  .teams_top_cnt h2 {
    margin-top: 10px;
    font-size: 35px;
  }

  .teams_top_cnt p {
    line-height: 27px;
  }

  .team-section-title h2 {
    font-size: 35px;
  }

  /*new one */
  .info-card {
    padding: 20px 20px 0;
  }

  .quotes-third video {
    height: 220px;
  }

  .fitness_content h1 {
    font-size: 38px;
  }

  .fitness_content h2 {
    font-size: 27px;
  }

  .form-section {
    padding: 40px 6px;
  }

  .fitness_content p {
    line-height: 30px;
    font-size: 14px;
  }

  .btn_more {
    margin-top: 15px;
  }

  .form-card-left,
  .form-card-right {
    padding: 45px 10px;
  }

  .story_author_name {
    font-size: 25px;
  }

  .story_city {
    font-size: 22px;
  }
}

.mail_col {
  position: relative;
  padding-bottom: 23px;
  margin: 0;
}

.error-msg {
  color: red;
  position: absolute;
  left: 3px;
  font-size: 12px;
  bottom: 2px;
  padding-left: 10px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}

.error-msg.invalid-input {
  opacity: 1;
  visibility: visible;
}





@media (min-width: 768px) and (max-width: 991px) {
  .dummy {
    padding: 43px;
  }

  .site-tagline {
    font-size: 6px;
    ;
  }

  .banner_content .banner_cont_box h2 {
    font-size: 40px;
    line-height: 60px;
  }

  .quotes h2 {
    font-size: 43px;
    line-height: 70px;
  }

  .quotes p {
    font-size: 18px;
    line-height: 35px;
  }

  .num_top h3 {
    font-size: 45px;
    padding-bottom: 10px;
  }

  .count_val {
    font-size: 17px;
    line-height: 10px;
  }

  .quotes-second h2 {
    padding-top: 46px;
    font-size: 40px;
    line-height: 70px;
  }

  .quotes-second p {
    font-size: 18px;
    line-height: 40px;
  }

  .foot_logo_cnt h6 {
    font-size: 12px;
  }

  .quotes-third p {
    font-size: 17px;
    padding-bottom: 15px;
  }

  .quotes-third h2 {
    font-size: 45px;
    line-height: 68px;
  }

  .news_para {
    font-size: 17px;
  }

  .all_grow_section {
    padding: 0px;
  }

  .section-number {
    font-size: 200px;
  }

  .section-content h2 {
    font-size: 42px;
    line-height: 50px;
  }

  .section-content p {
    font-size: 17px;
  }

  .info-card .btn-custom {
    font-size: 15px;
  }

  /* ourteam */
  .team-card {
    margin-bottom: 70px;
    margin-top: 35px;
  }

  .team-section {
    padding: 20px 0;
  }

  .team-card h5 {
    font-size: 20px;
  }

  .team-card p {
    font-size: 16px;
  }

  .team-section-title {
    padding: 13px 16px;
  }

  .team_member_cnt p {
    font-size: 16px;
  }

  /* blog */
  /*.text-center {*/
  /*    margin-bottom: 15px;*/
  /*}*/
  .comment-form p {
    margin-bottom: 30px;
  }


  /* ourteam */

  .balckQuotes::before {
    top: -40px;
    left: -18px;
    font-size: 100px;
  }

  .balckQuotes::after {
    bottom: -40px;
    right: -10px;
    font-size: 100px;
  }

  .story_images {
    width: 350px;
    height: 350px;
  }

  .story-right h2 {
    font-size: 28px;
    line-height: 50px;
  }

  .story-right .subtitle {
    font-size: 15px;
    line-height: 25px;
  }

  .testimonial-box p {
    font-size: 16px;
  }

  .testimonial-box {
    bottom: 0x;
  }

  /* 
our success stories */
  .teams_top_cnt h2 {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .teams_top_cnt p {
    line-height: 35px;
    font-size: 17px;
  }


  /* blognew */
  .post-thumb {
    width: 200px !important;
    height: 140px !important;
  }

  .post-card {
    min-height: 200px !important;
  }

  /*new---------------------*/
  .banner_section {
    height: 30vh;
  }

  .blog-title {
    font-size: 24px;
    line-height: 30px;
  }

  .bannerImg {
    height: 50vh;
  }

  .fw-bold {
    padding-bottom: 10px;
  }

  .contact_section {
    height: 50vh
  }

  .contact_cont_box h3 {
    font-size: 21px;
  }
}


.comment-reply-title {
  font-size: 30px;
  padding-left: 15px;
}

.custom-input-group {
  position: relative;
  margin-bottom: 15px;
}

.custom-input-group .input-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #666;
  font-size: 16px;
}

.custom-input-group .input-icon-cmt {
  position: absolute;
  top: 16%;
  left: 15px;
  transform: translateY(-50%);
  color: #666;
  font-size: 16px;
}

.custom-input-group input.custom-input {
  width: 100%;
  padding: 12px 12px 12px 45px;
  border: 1px solid #7777aa;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s;
}

.custom-input-group textarea.custom-input {
  width: 100%;
  padding: 16px 12px 16px 45px;
  /* adjusted */
  border: 1px solid #7777aa;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s;
  min-height: 150px;
  /* good height */
  resize: vertical;
}

.custom-input-group input.custom-input:focus,
.custom-input-group textarea.custom-input:focus {
  border-color: #5555aa;
}

.privacy-notice {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}

.btn-success {
  background-color: green;
  border-color: green;
  color: #fff;
  padding: 12px;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-success:hover {
  background-color: #006400;
  border-color: #006400;
}




.latest-posts h2 {
  font-size: 36px;
  font-weight: 700;
}

.post-card {
  background-color: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.post-thumb img {
  border-radius: 6px;
  object-fit: cover;
}

.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}