/* Font Link */
@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 Var */
:root {

  /* Root Theme Color */
  --theme-color: #ffd189;
  --theme-color-second: #fff;
  --theme-color-third: #000000;

  /* Root Font */
  --heading-font: "chigero";
  --paragraph-font: "Poppins", sans-serif;
  --span-font: "brusher";

  /* Root Shadow Css */
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 15px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: var(--paragraph-font);
}

/* Font Face */
@font-face {
  font-family: "chigero";
  src: url(../fonts/chigero.otf);
}

@font-face {
  font-family: "brusher";
  src: url(../fonts/Brushter.ttf);
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 12px;
  color: inherit;
  font-family: var(--heading-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 21px;
  font-size: 15px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 108px;
}

h2 {
  font-size: 68px;
  line-height: 1;
}

h3 {
  font-size: 54px;
  line-height: 1;
}

h4 {
  font-size: 44px;
}

h5 {}

h6 {}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

/* Back To Top */

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--theme-color-third);
  border-radius: 25px;
  text-align: center;
  border: 2px solid var(--theme-color);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Padding Top And Bottom */
.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}

/* Form Css */

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* Site Button */
.hd_info {
  display: flex;
  align-items: center;
  color: #fff;
}

a.comon-btn {
  background: url(../image/button-img.png) no-repeat center/ contain;
  color: #000000;
  display: inline-block;
  font-size: 15px;
  padding: 14px 35px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0px;
  width: 185px;
  text-align: center;
}

a.comon-btn2 {
  background: url(../image/button-img2.png) no-repeat center/ contain;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  padding: 14px 0px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0px;
  width: 185px;
  text-align: center;
}


/* a.comon-btn:hover {
  background: #121212;
  color: var(--theme-color-second);
} */

/* Sticky Top */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}

/* Small Header */

.small {
  display: none;
}

.header_menu {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
}

a.navbar-brand img {
  width: 230px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 10px;
}

.header_menu li a {
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  padding: 29px 16px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: #000;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #000000 !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 280px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}

.header_menu .left_content {
  display: flex;
  align-items: center;
}

.header_menu .left_content img {
  width: 21px;
  margin-right: 30px;
}

#main_header .hd_info a img {
  width: 24px;
}

#main_header .hd_info a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #000;
  justify-content: center;
}

#main_header .navbar-expand-lg .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
  align-items: center;
  gap: 35px;
}

/* Banner section */
.banner_sec {
  padding: 170px 0 90px;
}

.banner_sec .banner_heading {
  text-align: center;
  font-size: 78px;
  color: #fff;
}

.banner_sec .banner_heading h1 span {
  font-family: var(--span-font);
  font-size: 74px;
  color: #826a42;
  display: inline-block;
  margin-right: -140px;
  transform: rotate(-10deg);
}

.banner_sec .banner_heading h1 {
  line-height: 0.4;
  color: #2a221a;
}

.banner_sec .banner_heading .btom_content {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  padding-top: 360px;
}

.banner_sec .banner_heading .btom_content h4 {
  font-size: 28px;
}

/* ******** */
.home_sec1 h3 {
  color: var(--theme-color);
  font-family: var(--span-font);
  font-size: 48px;
  margin-right: 110px;
  display: inline-block;
  transform: rotate(-10deg);
}

.home_sec1 h6 {
  font-size: 23px;
}

.home_sec1 p span {
  font-size: 44px;
  font-weight: bold;
  color: var(--theme-color);
}

.home_sec1 h6 {
  font-size: 23px;
  margin-bottom: 26px;
}

.home_sec1 h2 {
  margin-bottom: 1px;
}

.home_sec1 {
  padding: 60px 0 250px;
}

.home_sec1 iframe {
  height: 740px;
}

.home_sec1 {
  line-height: 0;
}

.home_sec1 .heading {
  position: absolute;
  top: 110px;
  right: 5%;
  background: #0000004f;
  padding: 50px 40px;
  border-radius: 10px;
}

.home_sec1 a.comon-btn {
  background: url(../image/button-img.png) no-repeat center/ contain;
  color: #000000;
  display: inline-block;
  font-size: 15px;
  padding: 24px 35px !important;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0px;
  width: 185px;
  text-align: center;
}

/* ******* */
.home_sec2 h2 span {
  color: #321d09;
  font-family: var(--span-font);
  font-size: 58px;
  margin-left: 200px;
  display: inline-block;
  transform: rotate(-10deg);
  line-height:0.6 !important;
}

.home_sec2 {
  padding-bottom: 490px;
  padding-top: 90px;
}

.home_sec2 h2 {
  line-height: 1;
  font-size: 78px;
}

/* ********** */
.home_sec3 .content {
  display: flex;
  align-items: start;
  gap: 20px;
}

.home_sec3 .content h4 {
  margin-bottom: 6px;
  font-size: 28px;
}

.home_sec3 .btom_cont h4 {
  font-size: 28px;
}

.home_sec3 .content img {
  width: 52px;
}

.home_sec3 .btom_cont {
  display: flex;
  align-items: center;
  gap: 50px;
}

.home_sec4 {
  padding-bottom: 270px;
}

/* *********** */
.home_sec5 .img_content1 img {
  height: 584px;
  object-fit: cover;
}

.home_sec5 .img_content1 .btm_content, .home_sec5 .right_img_box1 .btm_content, .home_sec5 .right_img_box3 .btm_content {
  position: absolute;
  top: 35px;
  left: 35px;
  width: 80%;
  color: #fff;
}

.home_sec5 a.comon-btn {
  background: url(../image/button-img.png) no-repeat center/ contain;
  color: #000000;
  display: inline-block;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0px;
  width: 185px;
  text-align: center;
}

.home_sec5 .img_content1 .btm_content h4, .home_sec5 .right_img_box1 .btm_content h4, .home_sec5 .right_img_box2 .btm_content h4, .home_sec5 .right_img_box3 .btm_content h4, .home_sec5 .right_img_box4 .btm_content h4 {
  margin-bottom: 1px;
}

.home_sec5 .right_img_box1 .btm_content {
  color: #000 !important;
}

.home_sec5 .right_img_box2 .btm_content {
  position: absolute;
  top: 35px;
  right: 35px;
  width: 80%;
  color: #fff;
}

.home_sec5 .right_img_box3 .btm_content h4, .home_sec5 .right_img_box4 .btm_content h4 {
  font-size: 32px;
}

.home_sec5 .right_img_box4 .btm_content {
  position: absolute;
  bottom: 20px;
  right: 35px;
  width: 80%;
  color: #fff;
}

/* ********* */
.home_sec6 h3 {
  color: #969696;
  font-family: var(--span-font);
  font-size: 46px;
  margin-left: -210px;
  display: inline-block;
  transform: rotate(-10deg);
}

.home_sec6 a.comon-btn {
  background: url(../image/button-img.png) no-repeat center/ contain;
  color: #000000;
  display: inline-block;
  font-size: 15px;
  padding: 14px 5px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0px;
  width: 185px;
  text-align: center;
}

/* REVIEW SEC */

.review_sec .contented {
  background: #fff;
  border-radius: 10px;
  padding: 30px 25px;
  margin: 18px 7px;
  box-shadow: rgba(100, 100, 111, 0.31) 0px 0px 15px 0px;
}

.review_sec .contented .content p {
  font-size: 15px;
  line-height: 25px;
  color: #000000;
  /* margin-bottom: 35px; */
  min-height: 150px;
}

.review_sec .contented .btom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review_sec .contented .btom .content_left img {
  width: 80px;
  margin-bottom: 10px;
}

.review_sec .contented .btom .content_left h5 {
  font-size: 18px;
  font-weight: 400;
  color: #080707;
  margin-bottom: -1px;
}

.review_sec .contented .btom .content_left span {
  color: #666666;
  font-size: 12px;
}

.review_sec .contented .btom .content_right img {
  width: 28px;
}

.review_sec .heading img {
  width: 185px;
}

.review_sec .contented .content img {
  width: 54px;
  margin-bottom: 20px;
}

.review_sec .owl-nav img {
  width: 35px;
}

.review_sec .contented .content .ratting_number {
  width: 51px !important;
}

.review_sec .btom_content p {
  font-size: 15px;
}

.review_sec .btom_content a img {
  width: 130px;
}

.review_sec .btom_content .google_icon {
  width: 90px;
}

.review_sec .btom_content p {
  margin-bottom: 0;
}

.review_sec .btom_content p span {
  display: block;
  color: #dd2121;
  font-size: 26px;
  font-weight: 500;
}

.review_sec .btom_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* CONTACT SECTION */
.contact_section .form_contact h5 {
  font-size: 27px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.contact_section .form_contact p {
  margin-bottom: 24px;
  /* padding: 0px 12px; */
  /* font-family: "my-font-medium"; */
  line-height: 27px;
}

.contact_section .form_contact input {
  width: 100%;
  outline: none;
  border: 1px solid #d2d2d2 !important;
  padding: 16px;
  border-radius: 3px;
  /* outline: none; */
  font-size: 15px;
  background: #fff;
  border: none;
  padding-left: 12px;
  /* padding-bottom: 8px; */
}

.contact_section .form_contact input::placeholder {
  opacity: 1 !important;
  color: #000;

}

.contact_section .form_contact textarea {
  width: 100%;
  outline: none;
  border: 1px solid #d2d2d2 !important;
  background: #fff;
  padding: 17px;
  outline: none;
  font-size: 15px;
  padding-left: 12px;
  border-radius: 3px;
}

.contact_section .form_contact textarea::placeholder {
  opacity: 1 !important;
  color: #000;

}

.contact_section .form_contact button {
  background: #000;
  color: #fff;
  border: none;
  text-transform: uppercase;
  width: 100%;
  padding: 16px 0;
  border-radius: 4px;
  font-size: 15px;
  letter-spacing: 1px;
  border: none;
  transition: all 0.7s;
}

.contact_section .form_contact button:hover {
  background: #000;
  color: #fff;
  transition: all 0.7s;
}

.contact_section .form_contact h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}

/* faq */

.contact_section .heading {
  margin-right: 60px;
}

.contact_section .heading {
  position: relative;
}

.contact_section .heading img {
  position: absolute;
  width: 170px;
  top: -42px;
  left: -70px;
}

.contact_section .accordion-item {
  margin-bottom: 15px;
  border: none !important;
  box-shadow: rgba(100, 100, 111, 0.14) 2px 2px 10px 2px;
  /* background-color: #bcbcbc !important; */
}

.contact_section .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 18px 16px;
  font-size: 17px;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
  letter-spacing: 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0 8px 0px;
  font-family: var(--paragraph-font);
}

.contact_section .accordion-body {
  padding-top: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

.contact_section .accordion-body p {
  font-size: 15px;
  margin-bottom: 0;
}

.contact_section .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.contact_section .accordion-button:not(.collapsed)::after {
  background-image: url(../image/down-arrow.png);
  transform: var(--bs-accordion-btn-icon-transform);
}

.contact_section h3 {
  font-size: 51px;
  font-weight: 600;
}

.contact_section .heading h2 {
  color: #965005;
}

/* ********* */
footer {
  padding: 80px 0 40px;
  background: url(../image/footer-bg.png) no-repeat top / cover !important;
}

footer .logo_ft img {
  width: 250px;
}

footer .logo_ft .menu_bar {
  display: flex;
  justify-content: center;
  gap: 28px;
}

footer .logo_ft .menu_bar li a {
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
}

footer .btom_number {
  padding-top: 120px;
}

footer .btom_number a {
  color: #fff;
}


footer .btom_number .number-text {
  font-size: 28px;
  margin-bottom: -25px;
  display: block;
  color: #fff;
  font-weight: 600;
}

footer .btom_content_copy_right ul {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
}

footer .btom_content_copy_right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

footer .btom_content_copy_right ul li a {
  color: #fff;
}

footer .btom_content_copy_right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding-top: 120px;
}

#main_header .navbar-expand-lg .navbar-nav {
  flex-direction: row;
  position: relative;
  z-index: 9999;
}


.inner-banner {
  padding-top: 155px;
  padding-bottom: 30px;
}

/* ******** */
.ranch-bunkhouse {
  background: #fff;
  line-height: 1.6;
  color: #333;
}

/* .ranch-bunkhouse .section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
} */

.ranch-bunkhouse .intro-text {
  font-size: 15px;
  margin-bottom: 20px;
}

.ranch-bunkhouse .hero-image {
  margin: 20px 0;
  text-align: center;
}

.ranch-bunkhouse .hero-image img {
  max-width: 100%;
  border-radius: 6px;
}

.ranch-bunkhouse .sub-title {
  font-size: 28px;
  margin: 30px 0 15px;
}

.ranch-bunkhouse ul {
  margin: 0 0 20px 20px;
}

.ranch-bunkhouse ul li {
  margin-bottom: 8px;
}

.ranch-bunkhouse .gallery {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.ranch-bunkhouse .gallery img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

/* .membership-box {
  border: 1px solid #ccc;
  padding: 30px;
  margin: 30px auto;
} */

.membership-text h2 span {
  font-weight: 800;
  color: #333;
}

.membership-text p {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.membership-text .schedule {
  font-size: 14px;
  font-style: italic;
  margin-bottom: 15px;
}

.membership-text .cost-box {
  border: 1px solid #1e9baa;
  padding: 10px 15px;
  font-size: 15px;
  color: #555;
}

/* Right side */
.membership-action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.purchase-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border: 4px solid #1e9baa;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #1e9baa;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s ease;
}

.purchase-btn:hover {
  background: #1e9baa;
  color: #fff;
}

.membership-box a.comon-btn {
  background: url(../image/button-img.png) no-repeat center/ contain;
  color: #000000;
  display: inline-block;
  font-size: 15px;
  padding: 14px 15px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0px;
  width: 185px;
  text-align: center;
}

/* Services Section */
.services_sec .content {
  transition: 0.8s;
}

.services_sec .content .top_img {
  margin-bottom: 18px;
  border-radius: 16px !important;
  transition: 0.8s;
  overflow: hidden;
}

.services_sec .content .top_img img {
  transform: scale(1);
  transition: 0.8s;
}

/* .services_sec .content:hover .top_img img {
  transform: scale(1.1);
  transition: 0.8s;
} */

.services_sec .content h4 {
  font-size: 28px;
  margin-bottom: 6px;
  font-weight: 400;
}

.services_sec .content {
  text-align: center;
  background: #fff;
  padding: 8px;
  /* border-radius: 17px; */
}

/* .services_sec .content p{
  display: none;
}
.services_sec .content a.comon-btn{
  display: none;
} */
/* Home section 3 */
.home_sec2 {
  padding-bottom: 240px;
}

.services_sec2 .services_row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 11px;
}

.services_sec2 .service_col2 {
  width: 385px !important;
}

.services_sec2 .services_row .service_col:hover .service_col2 {
  width: 100% !important;
}

.services_sec2 .services_row .service_col {
  position: relative;
  /* transition: 0.3s; */
  width: 100%;
}

.services_sec2 .services_row .service_col:hover {
  width: 385px;
  /* transition: 0.3s; */
}

.services_sec2 .services_row .service_col:hover h5 {
  font-size: 31px !important;
}

.services_sec2 .services_row .service_col h5 {
  font-size: 24px;
}

.services_sec2 .services_row .service_col .btom_content {
  position: absolute;
  bottom: 10px;
  color: var(--theme-color-second);
  left: 28px;
}

.services_sec2 .services_row .service_col {
  overflow: hidden;
}

.services_sec2 .services_row .service_col img {
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.8s;
}

.services_sec2 .services_row .service_col:hover img {
  transform: scale(1.1);
  transition: 0.8s;
}

.services_sec2 .services_row .service_col3 p {
  font-size: 15px;
  line-height: 1.6;
}

.services_sec2 .service_col2 h5 {
  font-size: 31px !important;
}

.services_sec2 .service_col .top_bar_arrow {
  width: 50px;
  height: 50px;
  background: #ffffff;
  display: block;

  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services_sec2 .services_row .service_col:hover .top_bar_arrow {
  background: var(--theme-color);
}

.services_sec2 .service_col .top_bar_arrow i {
  color: var(--theme-color);
  font-size: 28px;
}

.services_sec2 .services_row .service_col:hover .top_bar_arrow i {
  color: var(--theme-color-second);
}


.services_sec2 .service_col .top_bar_arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 11;
}

.services_sec h5 {
  text-transform: uppercase;
  letter-spacing: 1px;
}

#home_sec4 {
  padding-bottom: 100px;
}


/* CONTACT-INNER */
.contact .heading {
  text-align: center;
}

#contact .contact-address, #contact .contact-phone, #contact .contact-email {
  margin-bottom: 20px;
  padding: 38px 0;
  border: 1px solid #e8e4e4;
  height: 100%;
  border-radius: 8px;
  box-shadow: 1px 2px 35px 7px rgba(0, 0, 0, 0.11);
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
  margin-top: 0;
  color: #000;
}

#contact .contact-info .fa-map-marker {
  font-size: 39px;
}

#contact .contact-info h3 {
  text-transform: capitalize;
  color: #6c6c6c;
  margin: 18px 0 8px;
  margin-bottom: 0;
  /* font-family: 'Playfair Display', serif !important; */
  font-size: 20px;
  margin-bottom: 11px !important;
}

#contact address {
  margin-bottom: 16px;
  font-style: normal;
  line-height: inherit;
  color: #202020;
  font-weight: 400;
}

#contact .contact-info i {
  font-size: 45px;
  display: inline-block;
  margin-bottom: 0;
  color: var(--theme-color) !important;
}

#contact .contact-info .fa-envelope {
  font-size: 32px;
}

#contact .contact-info a {
  color: #202020;
  /* font-size: 16px; */
}

#contact .con-form form input, #contact .con-form form textarea {
  padding: 15px 0px;
  border-left: transparent;
  border-right: transparent;
  border-top: transparent;
  border-bottom: 1px solid #000;
  box-shadow: none;
  font-size: 15px;
  outline: none;
  width: 100%;
}

#contact .con-form form input {
  color: #000;
  padding-top: 0;
}

#contact .con-form form label {
  color: #00000080;
}

#contact .con-form form button[type="submit"] {
  background: #000;
  border: 0;
  padding: 16px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  font-weight: 500;
  border-radius: 5px;
  justify-content: center;
}

#contact .con-form .contact-location .timing {
  gap: 10px;
  display: grid;
}

#contact .con-form form .form-btn-grp {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

#contact .con-form a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

#contact .con-form .form-info {
  box-shadow: 1px 2px 35px 7px rgba(0, 0, 0, 0.11);
  padding: 50px 40px;
  border-radius: 6px;
}

#contact .con-form {
  padding: 20px 0px;
}

/* map-sec */
.map {
  line-height: 0;
}

#contact .form_checkbox input {
  color: #000;
  width: initial !important;
}

#contact .form_checkbox label {
  font-size: 15px;
  font-weight: 500;
}

/*06.10.2025  */
form.wpcf7-form.init p {
    margin-bottom: 0;
}
.srvc-btn a.cmn-btn{
	color: #fff;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0px;
    width: 210px;
    text-align: center;
    background: url(../image/button-img2.png) no-repeat center / contain;
    padding: 14px 28px;
    border-radius: 5px;
}


