/*========================================================================
    Index
    ------------------------------------------------------------------------
    # - PreLoader
    # - Header
    # - MainMenu
    # - Breadcrumb Section
    # - Home v2 header slider
    # - Feature Service
    # - Service
    # - About
    # - Call To Action
    # - Team
    # - Blog
    # - Contact form
    # - Footer
*/
/*basic content*/
* {
  margin: 0;
  padding: 0;
}
a {
  color: var(--theme-color);
  text-decoration: none !important;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
main{
  padding-top: 70px;
}
:root{
  --theme-color : #2AB97E;
  --second-color : #262760;
  --white-color: #fff;
}
::-moz-selection {
  background-color: #38adb6;
  color: #ffffff;
}
::selection {
  background-color: #38adb6;
  color: #ffffff;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  -o-text-overflow: '';
  text-overflow: '';
  position: relative;
  cursor: pointer;
}
.select_icon {
  width: 100%;
  position: relative;
  display: block;
}
.select_icon:before {
  content: "\f107";
  font-family: FontAwesome;
  position: absolute;
  z-index: 1;
  right: 20px;
  color: #87868a;
  top: 15px;
  display: inline-block;
}
input:focus,
button:focus,
textarea:focus,
select:focus,
a:focus {
  outline: none;
}
button {
  border: none;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  opacity: 1;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  opacity: 1;
}
input::placeholder, textarea::placeholder {
  opacity: 1;
}
input,
select {
  width: 100%;
  background-color: #ffffff;
  border: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: "Cormorant Upright", serif;
}

p {
  font-size: 16px;
  color: #313131;
  font-weight: 400;
}
body {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: scroll;
  font-weight: 600;
  position: relative;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  padding: 20px;
}
.main_body{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.mb-30 {
  margin-bottom: 30px;
}
.section_padding {
  padding: 30px 0;
}
.section_border {
  border-bottom: 2px solid #f1f1f1;
}
.hero-section-title {margin-bottom: 35px;}
.hero-section-title h1 {
  font-size: 40px;
  font-weight: 600;
  color: #38373c;
  position: relative;
  line-height: 54px;
}
.hero-section-title h1:before{
  width: 35%;
  height: 2px;
  position: absolute;
  content: '';
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--second-color);
}
.hero-title-with-shape .heading_with_border {
  position: relative;
  padding-top: 25px;
  margin: 0;
  font-weight: 400;
  font-size: 20px;
}
.hero-title-with-shape .heading_with_border:before {
  content: '';
  background: #38adb6;
  width: 25px;
  height: 3px;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
}
.heading-title-with-shape h1 {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-title-with-shape {
  margin-bottom: 40px;
}

.btn-yellow {
  background-color: var(--theme-color);
  color: #fff;
  padding: 10px 30px;
  display: inline-block;
  font-weight: 600;
  text-decoration: none !important;
  letter-spacing: 1px;
  font-size: 16px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
.btn-yellow:hover {
  background-color: var(--second-color);
  color: #ffffff;
  box-shadow: none;
}
/*------------------------------------
# .0 PreLoader
------------------------------------*/
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 99999999999;
  overflow: hidden;
}
.preloader .loader {
  position: absolute;
  left: 50%;
  width: 80px;
  height: 80px;
  top: 50%;
  margin-top: -40px;
  margin-left: -40px;
  border-radius: 50%;
}
.preloader .loader:before {
  content: '';
  width: 5px;
  height: 5px;
  background: -webkit-linear-gradient(left, var(--theme-color), var(--second-color));
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -2.5px;
  margin-left: -2.5px;
  border-radius: 50%;
}
.preloader .loader span {
  width: 80px;
  height: 80px;
  display: inline-block;
  position: absolute;
  left: 50%;
  margin-left: -40px;
  top: 50%;
  margin-top: -40px;
  border-radius: 50%;
  border: 2px solid var(--theme-color);
}
.preloader .loader span:before,
.preloader .loader span:after {
  content: '';
  width: 35px;
  height: 3px;
  background: -webkit-linear-gradient(left, var(--theme-color), var(--theme-color), var(--second-color));
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -1.5px;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-animation: rotate 3s linear infinite;
  animation: rotate 3s linear infinite;
}
.preloader .loader span:after {
  width: 25px;
  background: -webkit-linear-gradient(left, var(--theme-color), var(--theme-color), var(--second-color));
  -webkit-animation: rotate_to 1s linear infinite;
  animation: rotate_to 1s linear infinite;
}


/*------------------------------------
# .0 Header
------------------------------------*/


/*------------------------------------
# .0 Breadcrumb Section
------------------------------------*/
.breadcrumb_section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/banner__img.jpg) top left no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 85px;
}
.breadcrumb_section h1{
  color: #fff;
}
.breadcrumb_section .breadcrumb {
  background: none;
  margin: 0 0 15px 0;
  padding: 0;
  justify-content: center;
}
.breadcrumb_section .breadcrumb li a:first-child{
  color: var(--theme-color);
}
.breadcrumb > li + li:before {
  content: '-';
  color: #fff;
  position: relative;
  left: 3px;
}
.breadcrumb_section .breadcrumb li a:hover {
  color: var(--theme-color);
}
.breadcrumb_section .breadcrumb li a, .breadcrumb_section .breadcrumb li {
  color: #fff;
  font-weight: 400;
  font-size: 20px;
}
.breadcrumb_section h1 {
  font-size: 54px;
  font-weight: 300;
}


/*------------------------------------
# .0 Home v2 header slider
------------------------------------*/
.header_slider_area.owl-carousel .owl-stage-outer {
  overflow: inherit;
  height: 100% !important;
  overflow: hidden;
}
.header_slider_bg {    
  background: url(../images/slider/slider_img.jpg) center center no-repeat;
  background-size: 70% 100%;
  background-position: right;
  height: 100%;
  padding: 131px 0 90px 0;
  -webkit-transition: .4s;
  -o-transition: .4s;
  background-color: var(--second-color);
  transition: .4s;
  position: relative;
  z-index: 1;
  height: 90vh;
}
.header_slider_bg:before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .1;
  content: '';
  z-index: -1;
}
.slider_bg2 {
  background-image: url(../images/slider/slider_img1.jpg);
}
.slider_bg3 {
  background-image: url(../images/slider/slider_img2.jpg);
}
.slider_bg4 {
  background-image: url(../images/slider/slider_img3.jpg);
}
.slider_bg5 {
  background-image: url(../images/slider/slider_img4.jpg);
}
.header_slider_area .owl-item .header_slider_bg p {
  margin-left: -200px;
  -webkit-transition: 2s;
  -o-transition: 2s;
  transition: 2s;
  opacity: 0;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  z-index: 1;
  color: #000;
  line-height: 1;
}
.header_slider_area .owl-item.active .header_slider_bg p {
  margin-left: 0;
  -webkit-transition: 2s;
  -o-transition: 2s;
  transition: 2s;
  opacity: 1;
  color: #000;
  position: relative;
}
.header_slider_area .header_slider_bg h1 {
  font-size: 50px;
  font-weight: 600;
  line-height: 50px;
}
.home_v2_header_slider .header_slider_bg .col-md-6 {
  padding: 0;
}
.header_slider_area .owl-item .header_slider_bg h1 {
  -webkit-transition: 2s;
  -o-transition: 2s;
  transition: 2s;
  position: relative;
  margin-bottom: 15px;
  display: inline-block;
  margin-left: -90px;
  opacity: 0;
  visibility: hidden;
  padding-right: 10px;
}
.header_slider_area .owl-item.active .header_slider_bg h1 {
  margin-left: 0;
  -webkit-transition: 2s;
  -o-transition: 2s;
  transition: 2s;
  opacity: 1;
  visibility: visible;
  color: #000;
}
.header_slider_area .header_slider_bg p span {
  display: inline-block;
  position: relative;
  margin-right: 60px;
  z-index: 1;
}
.slider__caption{
  padding: 20px 25px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 25px;
  margin-bottom: 0;
  position: relative;
}
.slider__caption:before{
  position: absolute;
  content: '\f0da';
  left: calc(100% - 2px);
  bottom: 20px;
  font-size: 40px;
  font-family: 'FontAwesome';
  color: #fff;
}
.slider__caption h1 span{
  display: inline-block;
  position: relative;
  width: max-content;
  margin: auto;
  z-index: 2;
}
.slider__caption h1{
  position: relative;
}
.slider__caption h1 span:after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: var(--theme-color);
  z-index: -1;
}
.header_slider_area .owl-item .header_slider_bg .slide_button a {
  display: inline-block;
  margin-top: 100px;
  -webkit-transition: 2s;
  -o-transition: 2s;
  transition: 2s;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
}
.header_slider_area .header_slider_bg .slide_button {
  position: relative;
  overflow: visible;
  height: 68px;
  margin-top: 22px;
}
.header_slider_area .owl-item.active .header_slider_bg .slide_button a{
  margin-top: 0;
  -webkit-transition: 2s;
  -o-transition: 2s;
  transition: 2s;
  box-shadow: 5px 5px 6px  rgba(0, 0, 0, 0.3);
}
.header_slider_area .header_slider_bg p span:before {
  content: '';
  width: 75px;
  height: 3px;
  position: absolute;
  left: 0;
  top: 42%;
  background: var(--theme-color);
  margin-top: -1px;
  z-index: -1;
}
.header_slider_area .owl-dots {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 10px;
  z-index: 999999;
  text-align: center;
}
.header_slider_area .owl-dots button {
  width: 10px;
  height: 10px;
  background: #38373c;
  border-radius: 50%;
  margin: 0 3px;
  opacity: .20;
}
.header_slider_area .owl-dots button.active {
  opacity: 1;
}
.header_slider_area.home_v2_header_slider {
  padding-top: 100px;
}
.fixed-scroll-nav .header_slider_area.home_v2_header_slider {
  padding-top: 0;
  margin-top: 101px;
}
.home_v2_header_slider .header_slider_bg {
  background-image: url(../images/slider/slider-5.jpg);
  padding: 258px 0 258px 0;
}
.home_v2_header_slider .slider_bg2 {
  background-image: url(../images/slider/slider-4.jpg);
}
.home_v2_header_slider .slider_bg3 {
  background-image: url(../images/slider/slider-5.jpg);
}
.home_v2_header_slider .owl-item .header_slider_bg h1 {
  color: #ffffff;
  margin-top: 0;
  line-height: 70px;
  margin-bottom: 35px;
}
.home_v2_header_slider .owl-dots button {
  background: #ffffff;
  opacity: .3;
}
.home_v2_header_slider .owl-dots button.active {
  background: #ffffff;
  opacity: 1;
}
.home_v2_header_slider .header_slider_bg:before {
  content: '';
  background: url(../images/shape/service-shape.png) no-repeat;
  background-size: 100%;
  width: 475px;
  height: 475px;
  position: absolute;
  right: 135px;
  bottom: -50px;
  opacity: .30;
}


/*------------------------------------
# .0 Feature Service
------------------------------------*/
.feature_service_area {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1170px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.feature_service_box_width {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 0 20%;
  background-color: var(--theme-color);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  padding: 60px 40px;
  transform: translateY(0px);
}
.feature_service_box_width + .feature_service_box_width {
  border-left: 2px solid #fff;
}
.feature_service_box_width:hover {
  background-color: var(--second-color);
  transform: translateY(-10px);
}
.feature_service_box_width i {
  font-size: 65px;
  margin-bottom: 25px;
  display: block;
  transition: all .4s ease;
}
.feature_service_box_width p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2em;
  transition: all .4s ease;
}
.feature_service_box_width:hover i,
.feature_service_box_width:hover p {
  color: #fff;
}


/*------------------------------------
# .0 About Style 3
------------------------------------*/
.about_image_box {
  background: #aaaaaa url(../images/about-1.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  padding: 125px 0 125px 0;
  z-index:1;
  width: 100%;
  height: 365px;
}
.about_image_box2 {
  background-image: url(../images/about-2.jpg);
}
.about_image_box3 {
  background-image: url(../images/about-3.jpg);
}
.about_style_3_details {
  margin-top: 60px;
  position: relative;
}
.about_style_3_details > img.about_us_shape {
  position: absolute;
  z-index: -1;
  width: 152px;
  height: 152px;
  margin-left: -50px;
  top: -19px;
}
.about_style_3_details p {
  color: #87868a;
  font-weight: 400;
}
.about_style_3_details h1 span {
  font-weight: 300;
  color: var(--theme-color);
}
.about_style_3_details h1 {
  font-weight: 600;
  font-size: 40px;
}
.about_style_4_details i {
  font-size: 76px;
  color: #fadb81;
}



/*------------------------------------
# .0 About Style 4
------------------------------------*/
.about_style_4_area {
  background: #38373c url(../images/breather-easy-bg.jpg) center center fixed no-repeat;
  background-size: cover;
  color: #ffffff;
  z-index: 1;
  position: relative;
}
.about_style_4_area:before {
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #38373c;
  z-index: -1;
  opacity: .70;
  position: absolute;
}
.about_style_4_details h1 {
  margin: 60px 0 40px 0;
  font-weight: 600;
  color: #ffffff;
  font-size: 50px;
}
.about_style_4_details p {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 55px;
  color: #ffffff;
  font-weight: 300;
}




/*------------------------------------
# .0 About
------------------------------------*/
.about_gray {
  background-color: #f1f1f1;
  padding: 70px 100px;
}
.about_image,
.about_image.about_style_2_img .about_2_img {
  position: relative;
  height: 435px;
  width: 95%;
  background: url(../images/about-2-1.jpg) center center no-repeat;
  background-size: cover;
}
.about_image .about_service_box_1 {
  width: 50%;
  float: left;
  background-color: var(--theme-color);
  color: #ffffff;
  margin-top: 5%;
  padding: 38px;
  border: 10px solid #fff;
  border-top: none;
  border-bottom: none;
}
.about_image .about_service_box_1:nth-child(2){
  border-left:none;
}
.about_image .about_service_box_1:last-child {
  border-right: none;
}
.about_image .about_service_box_1 h2 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 300;
  line-height: 34px;
}
.about_image .about_service_box_1.about_service_box_2_bg h2 {
  color: #38373c;
}
.about_image .about_service_box_2_bg {
  background-color: var(--second-color);
  color: #38373c;
  margin-right: 0;
}
.about_image.about_style_2_img .about_2_img {
  height: 348px;
  width: 100%;
}
.about_image.about_style_2_img {
  height: 100%;
  width: 100%;
  background-image: none;
}
.about_image.about_style_2_img .about_service_box_1 i {
  font-size: 65px;
  display: block;
  text-align: left;
  margin-left: -15px;
  margin-bottom: 20px;
}
.hero-title-with-shape h1 {
  margin-top: 25px;
  font-size: 30px;
  line-height: 36px;
  font-weight: 300;
}
.about_details {
  padding-left: 20px;
}
.about_details p {
  margin: 45px 0 45px 0;
  font-size: 18px;
  line-height: 34px;
  padding-right: 45px;
  font-weight: 400;
}
.about_details.about_gray.responsive_no_pading {
  padding: 100px 100px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.about_details.about_gray.responsive_no_pading img.about_gray_shape {
  position: absolute;
  right: -100px;
  bottom: -142px;
  width: 382px;
  height: 382px;
  z-index: -1;
  opacity: .5;
}
.about_details.about_gray.responsive_no_pading p {
  padding-right: 0;
}
.about_details.about_gray.responsive_no_pading .hero-title-with-shape h1 {
  font-weight: 300;
}
.about_details .btn-yellow {
  padding: 17px 40px;
}
.about_area {
  overflow: hidden;
}
section.about_area img.about_shape {
  position: absolute;
  left: 50%;
  margin-left: -180px;
  margin-top: 25px;
  width: 382px;
  height: 382px;
}

.about-image__updated {
  position: relative;
}
.about-image__updated:before,
.about-image__updated:after {
  content: '';
  position: absolute;
  width: 47px;
  height: 47px;
  z-index: -1;
}
.about-image__updated:before {
  top: -10px;
  left: -10px;
  background-color: var(--second-color);
}
.about-image__updated:after {
  bottom: -10px;
  right: -10px;
  background-color: var(--theme-color);
}

/*------------------------------------
# .0 Service Area
------------------------------------*/
.service_area {
  background-color: #f1f1f1;
}
.service_box {
  margin: 0 0 30px;
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 25px 25px 32px;
  border: 1px solid #B5B5C3;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  filter: drop-shadow(10px 10px 0px #CAC9D6)
}
.service_box .service_img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 6px;
}
.service_box .service_img {
  position: relative;
}
.service_box .service_img .icon-box {
  text-align: center;
  width: 77px;
  height: 75px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}
.service_box .service_img .icon-box i {
  line-height: 75px;
  font-size: 38px;
  color: #38373C;
}


.service_box:hover h2 {
  color: var(--second-color);
}
.service_box .btn-yellow {
  width: 100%;
  display: block;
  padding: 7px 10px;
  font-size: 14px;
}
.service_box .btn-yellow:hover {
  color: #38373c;
}
.service_box .service_details {
  padding: 20px 0px 15px 0px;
}
.service_details h2 a {
  display: block;
}
.service_details h2 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 900;
}
.service_details p {
  color: #87868a;
  font-size: 17px;
  margin-bottom: 20px;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
}

.service_center_left i {
  font-size: 50px;
}
.service_box_btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}


/*------------------------------------
# .0 Service Style 2
------------------------------------*/
.service_img_info_box {
  position: relative;
  margin-bottom: 130px;
  width: 100%;
  height: 400px;
  background: url(../images/services/service-info-bg.jpg) center center no-repeat;
  background-size: cover;
}
.service_style_2_area p {
  font-size: 24px;
  color: #87868a;
  line-height: 40px;
  padding: 0 50px;
  font-weight: 400;
}
.service_img_info_box .service_info_color_shape {
  width: 152px;
  height: 152px;
  position: absolute;
  bottom: -76px;
  left: 50%;
  margin-left: -76px;
}



/*------------------------------------
# .0 Service Benefits
------------------------------------*/
.service_benefits_box {
  border: 1px solid #f1f1f1;
  padding: 50px 30px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.service_benefits_box:hover {
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}
.service_benefits_box h3 {
  margin: 28px 0 40px 0;
  font-size: 20px;
  padding-left: 25px;
  padding-right: 25px;
  line-height: 28px;
  font-weight: 600;
}
.service_benefits_box p {
  color: #87868a;
}
.service_benefits_box > i {
  font-size: 65px;
  color: var(--theme-color);
}


/*------------------------------------
# .0 Service Details
------------------------------------*/

.service_details_left h1 {
  font-size: 34px;
  font-weight: 600;
  margin: 40px 0 10px 0;
}
.service_details_left p {
  line-height: 30px;
  font-weight: 400;
  color: #87868a;
}
.service_details_left p.extra_mr {
  margin-top: 40px;
  margin-bottom: 36px;
}
.service_details_left p.info_mr {
  margin-top: 38px;
  position: relative;
  width: 100%;
  float: left;
  margin-bottom: 0;
}
.service_details_left h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 20px 0;
  float: left;
  width: 100%;
  display: block;
}
.service_details_left p a:hover {
  color: var(--second-color);
}
.service_details_left ul {
  display: inline-block;
  width: 100%;
}
.service_details_left ol{
  padding-left: 20px;
}

.service_details_left ul li,.service_details_left ol li {
  line-height: 25px;
  color: #87868a;
  font-weight: 400;
  padding: 10px 0;
}
.service_details_left ul li > i {
  margin-right: 10px;
  color: var(--theme-color);
}
.service_details_left ul.service_details_ac {
  float: left;
  width: 100%;
  position: relative;
}
.service_details_left ul.service_details_ac li {
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 30px;
}
.service_details_left ul.service_details_ac li:last-child {
  margin-bottom: 0;
}
.service_details_left ul.service_details_ac li i {
  margin-top: 5px;
}
.service_details_left img {
  width: 100%;
  border-radius: 20px;
}
.service_details_contact h2 {
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
  color: #ffffff;
  font-size: 30px;
  line-height: 30px;
}
.service_details_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--theme-color);
  padding: 50px 40px;
  color: #ffffff;
}
.service_details_contact span.fa {
  display: inline-block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.service_details_contact h2 span {
  font-size: 18px;
  display: block;
  font-weight: 400;
}
.service_details_sv_cnt .service_center_left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #f1f1f1;
  padding: 40px 50px;
  border-right: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.service_details_sv_cnt .service_center_left:first-child {
  border-left: none;
}
.service_details_sv_cnt .service_center_left:last-child {
  border-right: none;
}
.service_details_sv_cnt .service_center_left i.fa ,
.service_details_sv_cnt .service_center_left span{
  display: block;
}
.service_details_sv_cnt .service_center_left span {
  color: #38373c;
  font-weight: 600;
  line-height: 20px;
  margin-top: 15px;
}
.service_details_sv_cnt .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  border: none;
}
.service_details_sv_cnt .nav > * {
  flex: 1;
}
.service_details_sv_cnt .nav a > .service_center_left {
  color: #38373c;
}
.service_details_sv_cnt .nav .active > .service_center_left {
  color: #38373c;
}
.service_details_sv_cnt .nav.nav-tabs li a {
  padding: 0;
  border: none;
}
.service_details_sv_cnt .nav.nav-tabs li:last-child a {
  margin-right: 0;
}
.service_category {
  padding: 38px 50px;
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
}
.service_category ul li {
  display: block;
  line-height: 45px;
}
.service_category ul li a {
  color: #87868a;
  font-weight: 600;
  display: block;
}
.service_category ul li a > i {
  float: right;
  line-height: 38px;
}
.service_category ul li a:hover {
  color: var(--theme-color);
}
.service_details_right h1 {
  font-size: 20px;
  font-weight: 600;
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
  padding: 30px 0;
  border-top: 1px solid #f1f1f1;
}
.service_cool_head {
  margin-bottom: 0;
}
.service_center_left:hover,
.service_details_sv_cnt .nav.nav-tabs li.active > a > .service_center_left {
  background-color: var(--second-color);
}
.service_details_contact > span {
  font-size: 65px;
  margin-right: 5px;
}
.service_style_2_area img {
  width: 100%;
}




/*------------------------------------
# .0 Call to action style 1
------------------------------------*/
.call_to_action {
  background-color: #f5d974;
  padding: 85px 0;
}
.call_to_action h1 {
  font-size: 40px;
  padding-top: 12px;
}
.btn-gray {
  background-color: #38373c;
  color: #ffffff;
  padding: 17px 47px;
  display: inline-block;
  font-weight: 700;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  font-size: 12px;
  letter-spacing: 1px;
}
.btn-gray:hover {
  background: #38adb6;
  color: #ffffff;
}

/*------------------------------------
# .0 Call to action style 3
------------------------------------*/
.cta_style_3_area {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 115px 0;
  overflow: hidden;
}
.cta_style_3_area:after,
.cta_style_3_area:before {
  content: '';
  background: #fbdc89;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
}
.cta_style_3_area:after {
  left: auto;
  right: 0;
  background: var(--theme-color);
}
.cta_style_3_width span {
  color: #3b3a3d;
  font-weight: 700;
  font-size: 54px;
  display: block;
  margin-top: 70px;
}
.cta_style_3_width {
  padding-right: 105px;
}
.cta_style_3_right {
  padding-right: 0;
  padding-left: 105px;
}
.cta_style_3_width h2 {
  font-weight: 300;
  font-size: 40px;
}
.cta_style_3_right h2 {
  color: #ffffff;
}
.cta_style_3_right span {
  color: #ffffff;
}
.cta_style_3_area > i {
  position: absolute;
  left: 0;
  font-size: 255px;
  opacity: .2;
  bottom: -40px;
  color: #ffffff;
}
.cta_style_3_area > i.icon_right {
  left: auto;
  right: 0;
}


/*------------------------------------
# .0 Team Member
------------------------------------*/
.team_member {
  border: 1px solid #f1f1f1;
  padding: 10px;
  position: relative;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  overflow: hidden;
  height: 360px;
}
.team_member:hover {
  -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.08);
}
.team_member img {
  width: 100%;
}
.team_details h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
}
.team_details h3 span {
  color: #87868a;
  font-weight: 600;
  font-size: 16px;
}
.team_details .team_socials li {
  display: inline-block;
}
.team_details .team_socials li a {
  color: #87868a;
  display: inline-block;
  margin: 0 5px;
}
.team_details {
  padding: 30px 0 20px 0;
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.team_member .team_socials {
  opacity: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.team_details .team_socials li a:hover {
  color: var(--theme-color);
}
.team_member:hover .team_socials {
  opacity: 1;
  /*height: 100%;*/
  /*visibility: visible;*/
}
.team_member:hover .team_details {
  bottom: 34px;
}




/*------------------------------------
# .0 CounterUp
------------------------------------*/
.counter_box .counter {
  display: inline-block;
  color: var(--theme-color);
  font-size: 100px;
  position: relative;
  font-weight: 300;
}
.counterup_area .counter_box {
  border-right: 1px solid #f1f1f1;
  padding: 86px 70px 40px 70px;
  position: relative;
}
.counterup_area .col-md-4:last-child .counter_box{
  border-right: none;
}
.counter_box img.number_img_shape {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -70px;
  width: 152px;
  height: 152px;
}
.counterup_area .counter_box p {
  color: #87868a;
  margin-top: 45px;
  font-size: 18px;
  font-weight: 400;
}

/*------------------------------------
# .0 Gallery
------------------------------------*/
.gallery_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.gallery_area > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  -webkit-box-shadow: 0 0 25px rgba(0,0,0,0.1);
  box-shadow: 0 0 25px rgba(0,0,0,0.1);
}
.gallery_area .gallery_width:first-child .gallery_fixed_height img {
  width: 100%;
}
.gallery_width img {
  position: relative;
}
.gallery_fixed_height {
  position: relative;
}
.gallery_overlay {
  position: absolute;
  left: 0;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  padding: 40px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-transform: scale(.4);
  -ms-transform: scale(.4);
  transform: scale(.4);
  opacity: 0;
  visibility: hidden;
}
.gallery_width:hover .gallery_overlay {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: .9;
  visibility: visible;
}
.gallery_overlay h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  padding-right: 40px;
}
.gallery_overlay a {
  background-color: #f5d974;
  color: #38373c;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 45px;
}


/*------------------------------------
# .0 Testimonial
------------------------------------*/
.testimonial_details {
  position: relative;
  z-index: 8999999999999;
}
.testimonial_area {
  position: relative;
  background-color: #f1f1f1;
  width: 100%;
  overflow: hidden;
  padding: 120px 0 110px 0;
}
.testimonial_area .testimonial_heading_shape {
  font-size: 190px;
  position: absolute;
  text-align: center;
  width: 100%;
  font-weight: 100;
  color: #ffffff;
  bottom: -14%;
}
.testimonial_slider .owl-nav {
  float: left;
  width: 100%;
  position: absolute;
  top: 50%;
  z-index: -1;
}
.testimonial_slider .owl-nav .owl-prev,
.testimonial_slider .owl-nav .owl-next {
  float: left;
  display: inline-block;
  top: 50%;
  background-color: #ffffff !important;
  border-radius: 50%;
  font-size: 25px !important;
  width: 65px;
  height: 65px;
  text-align: center;
  line-height: 70px !important;
  margin-top: -25px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  margin-left: -36%;
}
.testimonial_slider {
  padding-top: 95px;
}
.testimonial_slider .owl-nav .owl-next {
  float: right;
  margin-right: -36%;
}
.testimonial_slider .owl-dots button.active:before {
  content: '"';
  position: absolute;
  left: -10px;
  background-color: #f8db73;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  bottom: 0;
  text-align: center;
  padding: 4px 1px;
  font-weight: 600;
  font-style: italic;
}
.testimonial_slider .owl-nav .owl-prev:hover,
.testimonial_slider .owl-nav .owl-next:hover {
  background-color: var(--theme-color) !important;
  color: #ffffff;
}
.testimonial_slider .owl-nav .owl-next span {
  left: auto;
  right: -50px;
}
.testimonial_slider .owl-dots button {
  float: left;
  background: #ffffff url(../images/testimonial/1.png) center center no-repeat;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 15px;
  background-size: cover;
}
.testimonial_slider .owl-dots button:nth-child(2){
  background-image: url(../images/testimonial/3.png);
}
.testimonial_slider .owl-dots button:nth-child(3){
  background-image: url(../images/testimonial/1.png);
}
.testimonial_slider .owl-dots {
  position: absolute;
  top: 16px;
  left: 48%;
  margin-left: -105px;
}
.testimonial_slider .owl-dots button.active {
  -webkit-transform: scale(1.7);
  -ms-transform: scale(1.7);
  transform: scale(1.7);
}
.testimonial_slider .owl-dots button:first-child {
  margin-left: 0;
}
.testimonial_slider .owl-dots button:last-child {
  margin-right: 0;
}
.testimonial_details p {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 60px;
  margin-top: 30px;
  z-index: 99999999;
  color: #38373c;
}
.testimonial_details h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 15px;
  color: var(--theme-color);
}
.testimonial_details span {
  color: #87868a;
  display: block;
  font-size: 16px;
  font-weight: 600;
}



/*------------------------------------
# .0 Client Logos
------------------------------------*/
.clients_logo_area {
  position: relative;
  width: 100%;
  display: inline-block;
}
.clients_logo img {
  width: 123px !important;
  text-align: center;
  margin: auto;
  height: auto;
  opacity: .3;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.clients_logo img:hover {
  opacity: 1;
}



/*------------------------------------
# .0 About Service Section
------------------------------------*/
.about_service_area {
  position: relative;
  width: 100%;
  display: inline-block;
  overflow: hidden;
}
.about_service_left {
  position: relative;
  width: 95%;
  background: url(../images/why_choose_us.jpg) center no-repeat;
  background-size: cover;
  height: 675px;
}
.about_service_left img {
  width: 105%;
  position: relative;
}
.about_service_right {
  padding-left: 50px;
}
.about_service_right h1 {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 40px;
  font-weight: 300;
}
.about_service_right ul li {
  display: block;
  line-height: 44px;
  color: #87868a;
  font-size: 18px;
  font-weight: 400;
}
.about_service_right ul li > i {
  margin-right: 10px;
  color: var(--theme-color);
}
.about_service_left .about_service_year {
  background-color: #f5d974;
  color: #38373c;
  position: absolute;
  right: -50px;
  bottom: 0;
  margin: 0;
  font-size: 54px;
  padding: 50px 25px 40px 25px;
  width: 190px;
  height: 177px;
  font-weight: 300;
}
.about_service_left .about_service_year span {
  font-size: 24px;
  display: inline-block;
  line-height: 26px;
  margin-top: 10px;
  color: #38373c;
  font-weight: 300;
}
.about_service_right .about_service_discount p {
  font-size: 24px;
  color: #38373c;
  margin: 0;
  font-weight: 300;
}
.about_service_right .about_service_discount {
  padding: 50px 35px;
  border: 1px solid #f1f1f1;
  margin-top: 45px;
}
.about_service_right .about_service_discount h1 {
  margin: 0;
  color: var(--theme-color);
  font-size: 54px;
  font-weight: 300;
  line-height: initial;
}



/*------------------------------------
# .0 Video Promotion
------------------------------------*/
.video_promotion_area {
  background: #aaaaaa url(../images/video-promotion.jpg) center center fixed no-repeat;
  background-size: cover;
  position: relative;
  padding: 180px 0;
  z-index:1;
}
.video_promotion_area:before {
  content: '';
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: .60;
}
#videostore iframe {
  margin: auto;
  width: 100%;
  height: 500px;
}
.overlay .video-img {
  width: 127px;
  height: 127px;
  background: #f5d974;
  display: inline-block;
  line-height: 135px;
  border-radius: 50%;
  color: #38373c;
  font-size: 30px;
  margin-bottom: 10px;
  position: relative;
}
.video_promotion_area .overlay > a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f5d974;
  left: 0;
  top: 0;
  border-radius: 50%;
  z-index: -1;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-animation: scale 1s infinite linear;
  animation: scale 1s infinite linear;
}
.overlay h1 {
  color: #fff;
  font-size: 54px;
  margin: 25px 0 0 0;
  font-weight: 300;
}
.mfp-close-btn-in .mfp-close {
  color: #fff;
  font-size: 50px;
  top: 5%;
  right: 2%;
}


/*------------------------------------
# .0 Call to action style 2
------------------------------------*/
.cta_style_2_area {
  z-index: 1;
  padding: 237px 0;
  overflow-x: hidden;
  position: relative;
  background: #38373c url(../images/ac-skew-1.jpg) center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100px;
}
.cta_style_2_area:before {
  content: '';
  background-color: #000000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .4;
}
.cta_style_2_area:after {
  content: '';
  background-image: url(../images/shape/service-shape.png);
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  width: 474px;
  height: 474px;
  background-size: cover;
  border-radius: 50%;
  margin-left: -236px;
}
.cta_style_2_area .cta_style_2_left {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 999;
  margin-top: -60px;
  background-color: #f5d974;
  text-align: right;
  padding: 40px 60px 22px 0;
  width: 337px;
  min-height: 147px;
  vertical-align: middle;
}
.cta_style_2_area .cta_style_2_right {
  left: auto;
  text-align: left;
  right: 0;
  padding: 40px 0 22px 60px;
}
.cta_style_2_img_left {
  position: absolute;
  left: 0;
  width: 70%;
  background-color: #999;
  background-size: cover;
  height: 100%;
  top: 0;
  z-index: -1;
  -webkit-transform: skew(45deg);
  -ms-transform: skew(45deg);
  transform: skew(45deg);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  overflow: hidden;
}
.cta_style_2_img_right {
  left: auto;
  right: 0;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}
.cta_style_2_img_left:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  width: 170%;
  height: 100%;
  -webkit-transform: skew(-45deg);
  -ms-transform: skew(-45deg);
  transform: skew(-45deg);
}
.cta_style_2_img_right:before {
  left: auto;
  right: 0;
  background-image: url(../images/ac-skew-2.jpg);
}
.cta_style_2_left p {
  font-weight: 600;
  font-size: 16px;
  line-height: initial;
  color: #38373c;
}
.cta_style_2_left h1 {
  font-size: 40px;
  font-weight: 600;
  margin-top: 10px;
}

/*------------------------------------
# .0 Latest Blog
------------------------------------*/
.blog_share_box{
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border: 1px solid #f1f1f1;
  padding: 10px;
}
.blog_share_box:hover {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}
.blog_share_box .bl_share_img {
  position: relative;
  width: 100%;
}
.blog_share_box .bl_share_img img {
  width: 100%;
}
.bl_share_img .blog_date {
  width: 57px;
  height: 55px;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: center;
  font-size: 16px;
  padding: 14px 10px 10px 10px;
  line-height: 16px;
  font-weight: 600;
}
.blog_share_details {
  padding: 35px 20px 20px 30px;
}
.blog_share_details .comment_author a {
  text-decoration: none;
}
.blog_share_details .comment_author a:hover {
  color: #38373c;
}
.blog_share_details .comment_author {
  display: block;
  color: #38adb6;
  font-weight: 600;
  margin-bottom: 15px;
}
.blog_share_details h1 a {
  color: #38373c;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  display: block;
}
.blog_share_details h1 a:hover {
  color: var(--theme-color);
}
.blog_share_details h1 {
  font-size: 34px;
  margin-bottom: 35px;
  font-weight: 500;
  line-height: 34px;
}
.blog_share_details p {
  font-size: 16px;
  color: #87868a;
  font-weight: 400;
}



/*------------------------------------
# .0 Blog Details
------------------------------------*/
.widget_search input {
  background-color: var(--theme-color);
  color: #ffffff;
  font-weight: 600;
  padding: 25px 35px;
}
.widget_search input::-webkit-input-placeholder {
  color: #ffffff;
}
.widget_search input:-ms-input-placeholder {
  color: #ffffff;
}
.widget_search input::-ms-input-placeholder {
  color: #ffffff;
}
.widget_search input::placeholder {
  color: #ffffff;
}
.latest_post, .widget_categories, .tagcloud {
  padding: 40px;
  border: 1px solid #f1f1f1;
}
.blog_right_box h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}
.latest_post ul li {
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #f1f1f1;
}
.latest_post ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.latest_post ul li a {
  color: #38373c;
  font-weight: 600;
  display: block;
  font-size: 16px;
  padding-right: 30px;
  line-height: 26px;
}
.latest_post ul li a:hover {
  color: #87868a;
}
.latest_post ul li a img {
  margin-right: 20px;
  float: left;
  width: 60px;
  height: 60px;
}
.widget_categories ul li {
  display: block;
  line-height: 40px;
}
.widget_categories ul li a {
  display: block;
  color: #87868a;
  font-weight: 600;
}
.widget_categories ul li a > i {
  float: right;
  line-height: 38px;
}
.widget_categories ul li a:hover {
  color: var(--theme-color);
}
.tagcloud ul li {
  display: inline-block;
}
.tagcloud ul li a {
  display: block;
  color: #87868a;
  font-weight: 400;
  position: relative;
  margin-bottom: 5px;
  margin-right: 5px;
}
.tagcloud ul li a:hover {
  color: var(--theme-color);
}
.tagcloud ul li:last-child a {
  margin-right: 0;
  margin-bottom: 0;
}
.tagcloud ul li a::before {
  content: ',';
  position: absolute;
  right: -4px;
}
.blog_left_box .bl_share_img {
  position: relative;
}
.blog_details_left .blog_share_details {
  padding-left: 0;
  padding-right: 0;
}
.blog_left_box .bl_share_img {
  background: url(../images/blog/blog-details.jpg) center center no-repeat;
  position: relative;
  width: 100%;
  height: 428px;
  background-size: cover;
}
.blog_left_box .blog_share_details p {
  margin-bottom: 30px;
}
.blog_social_share_box .share_box_left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.blog_social_share_box {
  border-top: 1px solid #f1f1f1;
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog_social_share_box .share_box_left ul li a {
  display: block;
  margin-left: 30px;
  color: #87868a;
}
.blog_social_share_box .share_box_left ul li a:hover {
  color: var(--theme-color);
}
.blog_social_share_box .share_box_left ul li {
  display: inline-block;
}
.blog_social_share_box .share_box_left p a {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
}
.blog_social_share_box .share_box_left p a:hover {
  color: #38373c;
}
.blog_social_share_box .share_box_left p {
  font-weight: 600;
  color: #38373c;
  font-size: 20px;
}
.blog_author_box {
  padding: 60px;
  border: 1px solid #f1f1f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog_author_box .author_img img {
  margin-right: 40px;
}
.blog_author_box .author_bio h2 {
  font-size: 22px;
  font-weight: 400;
  margin-top: 0;
}
.blog_author_box .author_bio p {
  padding: 30px 0 30px 0;
  line-height: 30px;
  font-weight: 400;
}
.blog_author_box .author_bio .author_profile {
  font-weight: 600;
}
.blog_author_box .author_bio .author_profile:hover {
  color: #38373c;
}
.blog_comment_box .title-box {
  padding: 60px 0;
}
.blog_comment_box .title-box h3 {
  font-size: 30px;
  font-weight: 400;
}
.blog_comment_box .text-box h3 {
  font-size: 18px;
  font-weight: 600;
}
.blog_comment_box .comment-respond .title-box {
  padding: 60px 0 55px 0;
}
.blog_comment_box .comment-list .depth-2 {
  padding-left: 50px;
}
.blog_comment_box .comment-list li {
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 55px;
  margin-bottom: 55px;
  position: relative;
}
.blog_comment_box .comment-list li:last-child{
  margin-bottom: 0;
}
.blog_comment_box .text-box .comment_date_time {
  display: block;
  color: var(--theme-color);
  font-weight: 400;
  margin-top: 3px;
}
.blog_comment_box .text-box .comment-title p {
  padding-top: 26px;
  font-weight: 400;
  padding-right: 85px;
}
.blog_comment_box .reply.comment-title .btn-gray {
  padding: 10px 25px;
  position: absolute;
  right: 0;
  top: 0;
}
.blog_comment_box .reply.comment-title .btn-gray:hover {
  color: #38373c;
  background-color: var(--second-color);
}
.blog_comment_box form input,
.blog_comment_box form textarea {
  background-color: #f1f1f1;
  padding: 15px 20px;
  border: none;
  margin-bottom: 20px;
  font-weight: 400;
}
.blog_comment_box form textarea {
  width: 100%;
  height: 230px;
  resize: none;
}
.blog_comment_box form textarea {
  margin-bottom: 10px;
}
.blog_comment_box form input.input_m_right {
  margin-right: 3%;
}
.blog_comment_box form input::-webkit-input-placeholder,
.blog_comment_box form textarea::-webkit-input-placeholder {
  color: #87868a;
}
.blog_comment_box form input:-ms-input-placeholder,
.blog_comment_box form textarea:-ms-input-placeholder {
  color: #87868a;
}
.blog_comment_box form input::-ms-input-placeholder,
.blog_comment_box form textarea::-ms-input-placeholder {
  color: #87868a;
}
.blog_comment_box form input::placeholder,
.blog_comment_box form textarea::placeholder {
  color: #87868a;
}
.blog_comment_box form input.half_width {
  width: 48.5%;
}
.single-comment-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.comment_image img {
  width: 110px;
  margin-right: 30px;
}



/*------------------------------------
# .0 Contact form
------------------------------------*/
.contact_form_area{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact_form_area .contact_form_width {
  -ms-flex: 169px;
  -webkit-flex: 169px;
  flex: 169px;
}
.contact_form_area .contact_form_width:nth-child(1) {
  -webkit-box-flex: 1.3;
  -ms-flex: 1.3;
  flex: 1.3;
}
.contact_map_title {
  background-color: var(--theme-color);
  color: #ffffff;
  padding: 30px 155px;
  font-size: 30px;
  line-height: 34px;
  font-weight: 400;
}
input.half_width {
  width: 48%;
  float: left;
}
.contact_form_width.contact-right {
  padding: 120px 380px 120px 117px;
}
.contact-right-style-2 input.input_m_right,
.contact_form_width input.input_m_right {
  margin-right: 4%;
}
.contact-right-style-2.extra_mr_30 input.half_width {
  width: 47.5%;
}
.contact-right-style-2.extra_mr_30 select,
.contact-right-style-2.extra_mr_30 input {
  margin-bottom: 30px;
}
.contact-right-style-2.extra_mr_30 input.input_m_right {
  margin-right: 5%;
}
.contact_form_width .hero-title-with-shape h1 {
  margin-top: 25px;
  font-size: 30px;
  line-height: 36px;
  padding-right: 0;
  font-weight: 300;
}
#map {
  width: 100%;
  height: 612px;
}
#map .gmnoprint,
#map button.gm-control-active.gm-fullscreen-control {
  display: none;
}
.contact-right #select {
  color: #87868a;
  padding: 17px 15px !important;
  height: 64px;
  border-radius: 0 !important;
}
.contact-right {
  background-color: #f1f1f1;
}
.contact-right h4 {
  margin-bottom: 20px;
}
.ctf_gray {
  background-color: #f1f1f1;
}
.contact-right input::-webkit-input-placeholder {
  color: #87868a;
}
.contact-right input:-ms-input-placeholder {
  color: #87868a;
}
.contact-right input::-ms-input-placeholder {
  color: #87868a;
}
.contact-right input::placeholder {
  color: #87868a;
}
.contact-right input,
.contact-right select,
.newslatter input {
  padding: 17px 20px;
  margin-bottom: 20px;
  font-weight: 400;
  color: #87868a;
}
.contact_details {
  padding-right: 50px;
}
.contact-right p,
.contact_details p {
  font-size: 17px;
  line-height: 30px;
  color: #666;
}
.ctf_gray .contact-right p {
  font-size: 18px;
  line-height: 34px;
  color: #87868a;
  font-weight: 400;
}
.contact-right.contact_details .hero-title-with-shape h1 {
  font-weight: 300;
}
.ctf_gray .contact-right.contact_details .hero-title-with-shape h1 {
  font-size: 27px;
}


.map_section #map {
  height: 540px;
}
.contact_form_area .contact_with_us,
.contact_form_area .contact_details {
  background: none;
}
.contact_form_area .contact_with_us input,
.contact_form_area .contact_with_us select,
.contact_form_area .contact_with_us textarea {
  background-color: #f1f1f1;
}
.contact_form_area .contact_with_us textarea {
  width: 100%;
  resize: none;
  border: none;
  padding: 20px 20px;
  font-weight: 600;
  height: 120px;
  margin-bottom: 15px;
}
.contact_us > p {
  margin-bottom: 40px;
}
.contact_location_box .contact_location_map {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 40px 40px;
  border: 1px solid #F1F1F1;
  margin-right: 20px;
}
.contact_location_map > span {
  font-size: 45px;
  display: block;
  margin-bottom: 20px;
  color: var(--theme-color);
}
.contact_location_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact_location_box .contact_location_map p {
  margin-bottom: 0!important;
  color: #87868a;
  font-size: 20px;
}
.contact_location_box .contact_location_map:last-child {
  margin-right: 0;
}
.contact_us .contact-right {
  background: none;
}
.contact_us .contact-right input,
.contact_us .contact-right textarea {
  background: #F1F1F1;
  color: #87868a;
  font-weight: 400;
}
.contact_us .contact-right textarea {
  width: 100%;
  border: none;
  padding: 17px 20px;
  resize: none;
  margin-bottom: 10px;
}
.contact_us .contact-right .hero-title-with-shape .heading_with_border {
  font-weight: 400;
}
.contact_us .contact-right p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 55px;
  color: #87868a;
}



/*------------------------------------
# .0 Footer
------------------------------------*/
.footer_content.section_padding {
  padding-bottom: 0;
}
.footer_area {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #203A4F;
  border-radius: 20px;
}
.footer_area:before{
  position: absolute;
  content: '';
  background-image: url(../images/footer_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  width: 100%;
  height: 100%;
  /* filter: brightness(100); */
  opacity: 1;
  background-position: center;
}
.footer_content {
  position: relative;
  width: 100%;
  display: inline-block;
  padding-top: 50px;
  padding-bottom: 20px;
}
.footer_content h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}
.footer_textwidget p {
  color: #fff;
  padding-right: 60px;
  margin-bottom: 37px;
  font-weight: 400;
}
.footer_textwidget h4 {
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 400;
}
.footer_textwidget .number {
  font-size: 24px;
  margin-top: 5px;
  font-weight: 400;
}
.footer_link li a {
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    display: block;
    font-weight: 600;
    margin-bottom: 18px;
}
.footer_link li a i{
  color: #fff;
}
.footer_link li a:hover {
  color: var(--theme-color);
}
.footer_link.extra_mt {
  margin-top: 57px;
}
.footer_contact {
  position:relative;
  width: 100%;
  border-bottom: 1px solid #535356;
}
.footer_contact .footer_contact_width {
  border-right: 1px solid #535356;
  padding: 46px 0;
}
.footer_contact .col-md-4:last-child .footer_contact_width {
  border: none;
}
.footer_contact .col-md-4 {
  padding: 0;
}
.footer_contact_width p {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
}
.footer_contact .footer_contact_width p > i {
  display: inline-block;
  color: #fadb81;
  font-size: 20px;
}
.footer_contact_width p span,
.footer_contact_width p span a {
  color: #a9a7ad;
  font-weight: 400;
}
.footer_contact_width p span a:hover {
  color: var(--theme-color);
}
.footer_area h2 {
  color: #fff;
}
.footer_textwidget.textwidget span.number {
  display: block;
  color: #fff;
}
.footer_area img.footer_shape {
  opacity: .2;
  position: absolute;
  bottom: -17%;
  text-align: center;
  width: 440px;
  margin: auto auto auto -220px;
  height: 440px;
  z-index: -1;
  left: 50%;
}


/* copyright */
.copyright_social ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.copyright_social ul li {
  display: inline-block;
}
.copyright_social ul li a i,
.header_social .hd_social_icons li a i {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 50%;
  line-height: 45px;
}
.copyright_social ul li a,
.header_social .hd_social_icons li a {
  color: #38373c;
  display: inline-block;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  position: relative;
}
.copyright_social ul li a {
  background-color: #ffffff;
  margin: 0 1px;
}
.header_social .hd_social_icons li a:before,
.copyright_social ul li a:before {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--second-color);
  position: absolute;
  border-radius: 50%;
  left: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.copyright_social ul li a:hover:before,
.header_social .hd_social_icons li a:hover:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.newslatter input {
  margin-bottom: 10px;
}
.newslatter input::-webkit-input-placeholder {
  color: #87868a;
}
.newslatter input:-ms-input-placeholder {
  color: #87868a;
}
.newslatter input::-ms-input-placeholder {
  color: #87868a;
}
.newslatter input::placeholder {
  color: #87868a;
}
.copyright_area {
  border-top: 1px solid #ffffff91;
/*    text-align: center;*/
padding: 10px 0;
margin-top: 20px;
}
.copyright_text p {
  color: #fff;
  margin-bottom: 0;
  font-weight: 400;
}
.copyright_text a{
  color: #fff;
  font-weight: 700;
  font-size: 110%;
}
.footer_link li a:hover{
  color: var(--theme-color);
}

footer .col-md-4.col-sm-6.latest{
  position: relative;
}
footer .col-md-4.col-sm-6.latest:before{
  position: absolute;
  content: '';
  width: 103%;
  height: 120%;
  border-radius: 15px;
  background-color: var(--second-color);
  top: -36px;
  left: -8px;
  z-index: -1;
}
@-webkit-keyframes rotate {
  0%{
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100%{
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



@keyframes rotate {
  0%{
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100%{
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate_to {
  0%{
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100%{
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate_to {
  0%{
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100%{
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes scale {
  0%{
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: .7;
  }
  100%{
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes scale {
  0%{
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: .7;
  }
  100%{
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

/*===============================*/
.py-5 {
  padding: 50px 0;
}
.bg-light {
  background-color: #f8f9fa;
}
/*------------------------------------------------------------------------------*/
/*  booking form
/*------------------------------------------------------------------------------*/  
.form-section{
  background-color: #fff;
  padding: 25px 7px;
  box-shadow: -5px 5px 0 var(--theme-color);
  border-radius: 10px;
}
.form-section .h4 {
  text-align: center;
  color: var(--second-color);
  font-size: 26px;
  margin-bottom: 20px;
  margin-top: 0;
  padding-bottom: 12px;
  border-bottom: 2px #ccc solid;
}
.form-section .form-control, .form-section .input{
  width: 100%;
  border: 1px solid #c4c4c4;
  border-radius: 0;
  height: 44px;
  line-height: 36px;
  margin-bottom: 10px;
  font-size: 14px;
  box-shadow: 0 0 5px #00000038;
}
.form-section textarea{
  width: 100%;
  border: 1px solid #c4c4c4;
  border-radius: 0;
  line-height: 36px;
  margin-bottom: 10px;
  font-size: 14px;
  box-shadow: 0 0 5px #00000038;
  padding: 6px 12px;
}
.form-section .btn-yellow{
  padding: 7px 30px;
  font-size: 16px;
}
.bookingForm .form-section .btn-yellow{
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
}
.bookingForm .form-section .btn-yellow{
  color: #fff;
}

/*footer*/
.footer_area h2:before {
  content: '';
  height: 2px;
  width: 100px;
  background-color: var(--theme-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

/*float buttons*/

.whatsapp-button {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  background-color: #25d366;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  width: 50px;
  height: 50px;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.call-button {
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 99;
  background-color: #3fd0d4;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  width: 50px;
  height: 50px;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.call-button i {
  font-size: 24px;
}
.text-white{
  color: #fff;
}
.copyright_area a:hover{
  color: var(--second-color);
}
.whatsapp-btn{
  background-color: #25d366;
  margin-left: 30px;
}
.privacy_policy h3{
  margin-top: 20px;
}

/*===============about us==============*/
.about-box{
  box-shadow: 0 0 8px #dddddd;
  padding: 20px;
  border-radius: 20px;
}
.about-box img{
  width: 100%;
  border-radius: 20px;
}
.about-box .about_detail .subtitle{
  font-size: 20px;
  margin-bottom: 10px;
}
.about-box .about_detail .title{
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 15px;
}
.about-box .about_detail p{
  margin-bottom: 15px;
}

/*###############testimonial#############*/
.testimonial-one {
  background-color: #f2f5f9;
}
.testimonial-one__single {
  position: relative;
  display: block;
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin: 20px 10px;
}

.testimonial-one__single:hover {
  transform: translateY(-10px);
}

.testimonial-one__single-inner {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 65px 60px 55px;
  border-radius: 20px;
  background-color: #fff;
}

.testimonial-one__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
}

.testimonial-one__shape-1 > img {
  width: auto !important;
  mix-blend-mode: luminosity;
  border-top-right-radius: 20px;
  opacity: 0.2;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__single:hover .testimonial-one__shape-1 > img {
/*  mix-blend-mode: normal;*/
opacity: 1;
}

.testimonial-one__client-info {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 5px;
  margin-bottom: 26px;
}

.testimonial-one__client-img-box {
  position: relative;
  display: block;
  width: 100%;
  max-width: 115px;
  z-index: 1;
}

.testimonial-one__client-img-box:before {
  position: absolute;
  content: "";
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  background-image: -webkit-linear-gradient(0deg, rgb(255, 217, 7) 0%, rgb(255, 217, 7, 0.3) 100%);
  border-top-left-radius: 45px;
  z-index: -1;
}

.testimonial-one__client-img-box > img {
  width: 100% !important;
  border-top-left-radius: 45px;
  border: 6px solid #fff;
}

.testimonial-one__quote {
  position: absolute;
  top: -28px;
  right: -33px;
  height: 58px;
  width: 58px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-one__quote > img {
  width: 65% !important;
}

.testimonial-one__client-content {
  margin-left: 45px;
  position: relative;
  top: 3px;
}

.testimonial-one__client-review {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.testimonial-one__client-review i {
  font-size: 15px;
  color: #fab600;
}

.testimonial-one__client-details {
  position: relative;
  display: block;
}

.testimonial-one__client-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: #000;
}

.testimonial-one__client-sub-title {
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
}

.testimonial-one__text {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
}



/********Why Choose Us*********/

.about-item {
  padding: 30px;
  box-shadow: 1px 0px 12px -5px rgba(0,0,0,.3);
  -webkit-box-shadow: 1px 0px 12px -5px rgba(0,0,0,.3);
  -moz-box-shadow: 1px 0px 12px -5px rgba(0,0,0,.3);
  border-left: 3px solid rgba(0,0,0,0);
  transition: all .3s ease-in-out;
  position: relative;
  margin-bottom: 16px;
  background-color: #fff;
}
.about-item.first{
  top: 30px;
}

.about-item.item-2 {
  margin-top: 20px
}

@media(max-width: 767px) {
  .about-item.item-2 {
    margin-top:0
  }
}

@media(max-width: 767px) {
  .about-item {
    margin-bottom:20px;
    width: 90%;
    margin-inline: auto;
  }
}

.about-item:hover {
  border-left: 3px solid var(--theme-color)
}

.about-item .about-title {
  font-size: 22px;
  margin-bottom: 10px
}

.about-item .about-title a {
  color: var(--second-color);
  font-family: var(--title-font);
}
.about-seven__right .text-center a.btn-theme{
  margin-top: 0;
}

.about-item p:last-child {
  margin-bottom: 0
}
.about-item p{
  line-height: 21px;
  font-size: 14px;
  font-weight: 500;
}
.phone_res_header-btn{
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  background: var(--theme-color);
  text-align: center;
  padding: 0px;
  z-index: 9;
  border-bottom: 1px solid #000;
}
.phone_res_header-btn a.btn-yellow{
  width: 100%;
  height: 100%;
}
.header_slider_area .owl-nav.disabled{
  display: none;
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  width: 100%;
}
.header_slider_area .owl-nav.disabled .owl-prev{
  left: 10px;
  position: absolute;
  font-size: 70px;
  color: #fff;
  font-weight: 200;
}
.header_slider_area .owl-nav.disabled .owl-next{
  right: 10px;
  position: absolute;
  font-size: 70px;
  color: #fff;
  font-weight: 200;
}
.fade:not(.show){
  opacity: 1;
}
.page-form #desktop-form{
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  border: 2px solid var(--second-color);
  border-radius: 20px;
  overflow: hidden;
}
/*******contact Page*****/

.contact-page-div{
  position: absolute;
  padding: 20px 58px;
  width: 100%;
  top: 0;
  z-index: 1;
}
.contact-page-wrap .title_bar, .contact_content{
  display: inline-block;
}
.contact_section .contact-page-img .naini-img{
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
}
.contact_section .contact-page-img .naini-img img{
  width: 100%;
  height: 313px;
  border-radius: 20px;
}
.contact_section .contact-page-img .naini-img:before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
}

.contact_section .contact-page-img{
  width: 100%;
  border-radius: 15px;
  margin-top: 20px;
  max-height: 100%;
  position: relative;
}
.contact_section .contact-page-img:before{
  background-image: url("../images/services/nainital.jpg");
}
.contact_section .title-area .sec-title{

  color: #262B37;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
} 
.contact_section .contact-page-wrap .title_bar {
  color: var(--theme-color);
  text-align: center;
  font-size: 35px;
  width: 60px;
  display: inline-block;
  height: 60px;
  background-color: #E6EFFF;
  border-radius: 50%;
  line-height: 60px;
  margin: auto;
}

.contact_section .contact-page-wrap .contact_content {
  padding: 10px 18px;
  width: 83%;
  color: #fff;
  display: inline-block;
}
.contact-page-wrap .contact_content h4{
  color: #fff;
  font-family: var(--second-font);
  font-weight: 700;
}
.contact_section .contact-page-wrap .contact_content p a{
  margin-bottom: 0;
  color: #fff;
}
.contact_section .contact-page-wrap .title_bar h4 {
  margin-bottom: 0;
  margin-left: 10px;
  text-transform: capitalize;
  color: var(--theme-color);
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
}
.contact-page-form .get-in-touch{
  height: 100%;
  margin-top: 15px;
}

/*--------------------------------------------------------------
# Contact Info
--------------------------------------------------------------*/
.contact-info__single {
  position: relative;
  display: block;
  border-radius: 8px;
  background-color: #f6f6f6;
  text-align: center;
  padding: 20px;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--theme-color);
  box-shadow: 4px 5px 6px rgba(0, 0, 0, 0.4);
  justify-content: center;
}
.contact-info__single h3{
  font-family: "Roboto", sans-serif;
}

.contact-info__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  border: 1px solid var(--tedlife-bdr-color);
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}

.contact-info__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: #121212;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.contact-info__single:hover .contact-info__icon:before {
  transform: scaleX(1);
}

.contact-info__icon span {
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: #121212;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.contact-info__single:hover .contact-info__icon span {
  transform: scale(0.9);
  color: #ffffff;
}


.contact-info__single p {
  margin-top: 20px;
  margin-bottom: 5px;
}

.contact-info__single h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: #121212;
}

.contact-info__single h3 a {
  color: #121212;
}

.contact-info__single h3 a:hover {
  color: var(--theme-color)
}

.contact-page form .form-control{
  height: 60px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgb(97 99 104 / 20%);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: #616368;
  display: block;
  border-radius: 8px;
  box-shadow: none!important;
}
.contact-page form textarea{
  height: auto!important;
}
.contact-page form ::placeholder{
  text-transform: capitalize;
}

/*=============whychoose-area===========*/
.whychoose-area{
  position: relative;
}
.whychoose-area .card{
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0px 0px 30px 0px rgba(206, 206, 206, 0.5);
  border: none;
  background-color: transparent;
  background-image: linear-gradient(45deg, var(--theme-color) 7%, #ffffff 7%);
  z-index: 1;
}
.whychoose-area .card .card-title{
  font-size: 18px;
}
.whychoose-area .card p{
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  font-weight: 400;
}
.whychoose-area .image-part{
  position: relative;
  z-index: 1;
  text-align: center;
}
.whychoose-area img{
  width: 100%;
}

.whychoose-area .shape-bottom{
  transform: rotate(180deg);
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  bottom: -1px;
}
.whychoose-area .shape-bottom svg {
  width: calc(850px + 1.3px);
  height: 300px;
  z-index: -1;
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.whychoose-area .shape-bottom .shape-fill {
  fill: #ffd90721;
}

/****************testimonial***************/
.testimonial-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 25px;
  position: relative;
  margin: 10px;
}
.testimonial-card .quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--theme-color);
  color: #fff;
  padding: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 100%;
  font-size: 24px;
}
.testimonial-card .quote-icon i{
  position: relative;
  top: -5px;
  left: 5px;
}
.testimonial-card img {
  width: 80px!important;
  height: 80px!important;
  margin: auto;
  border-radius: 50%;
  margin-bottom: 10px;
}
.testimonial-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}
.testimonial-card p {
  font-size: 14px;
  color: #6c757d;
  margin-top: 10px;
}

/********************service-area********************/
.service-area .service-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 30px rgba(7, 36, 95, 0.08);
  padding: 15px;
  text-align: left;
  position: relative;
  transition: 0.3s ease-in-out;
  border: 1px solid var(--theme-color);
}

.service-area .service-card:hover {
  border-color: var(--theme-color);
}

.service-area .service-card .icon {
  background-color: #f4f4f4;
  border-radius: 50%;
  width: 100%;
  height: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-bottom: 15px;
  padding: 12px
}
.service-area .service-card .icon img{
  width: 100%;
  border-radius: 10px;
}

.service-area .service-card .service-title {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 10px;
}

.service-area .service-card p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 10px;
}

.btn-groups{
  display: flex;
  gap: 10px;
}
.btn-groups a{
  width: 100%;
  text-align: center;
  font-size: 12px;
  padding: 8px 0;
}
/*********************
======================
Our Brands
======================
*********************/
.our-partner-section{
  border-bottom: 1px dashed #bababa;
}
.our-partner-section img{
  border: 1px solid #bababa;
  border-radius: 10px;
  width: 100%;
  height: 100px;
}
.our-partner-section .section-title{
  position: relative;
}
@media only screen and (max-width: 768px) {
  .our-partner-section .row>* {
    padding-inline: 5px;
  }
  .our-partner-section img{
    margin-bottom: 10px;
    height: 70px;
  }
  .our-partner-section .section-title .title{
    padding-inline: 5px;
  }
}
.dehradun_places{
  position: relative;
}
.dehradun_places ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.dehradun_places ul li{
  display: inline-block;
  padding: 2px 5px;
  margin-inline: 1px;
  border-radius: 30px;
  border: 2px solid var(--theme-color);
  font-size: 15px;
  font-weight: 500;
  color: #000;
  margin-bottom: 3px;
  cursor: pointer;
}
.dehradun_places ul li:hover{
  transform: scale(1.03);
  border-color: #fff;
  background-color: var(--theme-color);
  color: #fff;
  transition: 0.2s;
}
.side_links{
  padding: 20px ;
}
.side_links .title{
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}
.side_links a{
  display: block;
  padding: 10px 10px;
  border: 2px solid var(--theme-color);
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
}
.side_links a:hover{
  color: var(--second-color);
}

.side_links a i{
  position: absolute;
  right: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--second-color);
  text-align: center;
  font-size: 20px;
  color: #fff;
  line-height: 24px;
}
.side_links a:hover i{
  color: var(--theme-color);
  background-color: #bababa;
}
.service_details_area.section_padding .row{
  --bs-gutter-x: 3rem;
}
.service_details_area.section_padding .form-section .container-fluid{
  padding-inline: 15px;
}

.choose-item {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.161);
  border-radius: 10px;
  border-color: #d1d1d1;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  border-bottom: 5px solid var(--theme-color);
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  padding: 12px ;
  text-align: center;
  align-items: center;
  gap: 13px;
  flex-direction: row;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  justify-content: center;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  h4{
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: -0.02em;
  }
}

.choose-item .icon {
  margin-bottom: 20px;
}

.choose-item .icon i {
  font-size: 60px;
  color: var(--theme-color);
  line-height: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.choose-item h3 {
  font-size: 25px;
  margin-bottom: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.choose-item p {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.choose-item:hover{
  a{
    color: #fff;
  }
}
.choose-item::before {
  top: 50%;
  left: 50%;
  width: 0%;
  z-index: -1;
  height: 100%;
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--theme-color);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
}

.choose-item:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.choose-item:hover::before {
  width: 100%;
}

.choose-item:hover h3 {
  color: #ffffff;
}

.choose-item:hover p {
  color: #ffffff;
}

.choose-item:hover .icon i {
  color: #ffffff;
}
.services-area_bbom{
  border-bottom: 1px dashed #d1d1d1;
}






header.active .main-header--two .mobile-nav__btn span {
  background-color: #fff;
}

.main-header--two.active .main-menu .main-menu__list>li>a {
  color: #fff;
}

.main-header--two.active .main-menu .main-menu__list>li.current a {
  color: var(--theme-color);
}

.main-header__logo img {
  border: 3px solid #000;
  padding: 4px;
  width: 140px;
  border-radius: 10px;
}

.main-header--two.active .main-header__logo img {
  border-color: #fff;
}
.header-logo {
  padding: 3px 0;
}

.header-logo img {
    width: 160px !important;
    background: #fff;
    position: relative;
    border-radius: 6px;
    padding: 3px;
    z-index: 11;
}
.contact-logo img {
  background-color: #ffffff;
  border-radius: 50%;
}

.contact-box2 .logo-area {
  padding: 17px 0;
  a img {
    width: 123px;
    background-color: #ffffff;
    border-radius: 50%;
  }
}

@media(max-width: 768px) {
  .header-logo {
    padding: 4px 0;
  }
}

.mobile-logo img {
  width: 160px;
}
.brand-logo img {
  width: 180px;
}

.header-area .container-fluid {
  padding: 0 70px;
}

@media (max-width: 1550px) {
  .header-area .container-fluid {
    padding: 0 24px;
  }
}

.header-top {
  padding: 6px 0;
}

@media (max-width: 991px) {
  .header-top {
    display: none;
  }
}

.header-top .te-header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px 60px;
}

.header-top .header-top-info {
  display: flex;
  gap: 0 24px;
}

.header-top .te-header-contact-info {
  display: flex;
  align-items: center;
  gap: 10px 33px;
  flex-wrap: wrap;
}

.header-top .te-header-contact-info span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Kumbh Sans", sans-serif;
}

.header-top .te-header-contact-info span i {
  color: #ffffff;
}

.header-top .te-header-contact-info span.te-contact-info-item {
  gap: 0 7px !important;
}

.header-top .te-header-contact-info span a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Kumbh Sans", sans-serif;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .header-top .header-top-btn {
    display: none;
  }
}

.header-top .header-top-btn a {
  position: relative;
  padding: 12px 46px;
  font-size: 18px;
  font-family: "Jost", sans-serif;
  color: #ffffff;
  margin-bottom: -100px;
  display: inline-block;
  font-weight: 900;
  z-index: 2;
}

.header-top .header-top-btn a:hover:after {
  transition: all 0.5s ease-out;
  background-color: var(--theme-color);
}

.header-top .header-top-btn a:after {
  position: absolute;
  content: "";
  border-radius: 0 0 10px 10px;
  background-color: var(--theme-color);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.5s ease-out;
}

.header-top .te-social-profile {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: flex-end;
}

.header-top .te-social-profile .te-social-profile-label {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  color: #151422;
  margin-right: 14px;
}

.header-top .te-social-profile a {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.5s ease-out;
  width: 36px;
  height: 36px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: transparent;
}

.header-top .te-social-profile a:hover {
  transition: all 0.5s ease-out;
  color: #ffffff;
  background-color: var(--theme-color);
}

.te-header-menu-area {
  width: 100%;
  z-index: 999;
  transition: all 0.5s ease-out;
}

.te-header-menu-area.te-sticky-header {
  width: 100%;
  z-index: 999;
  transition: all 0.5s ease-out;
  position: relative;
  border-bottom: 4px solid #262760;
}

.te-header-menu-area.te-sticky_menu {
  left: 0;
  right: 0;
  top: 0;
  position: fixed !important;
  z-index: 9999;
  box-shadow: 0 7px 24px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
}

.te-header-menu-area.te-sticky_menu .te-logo {
  height: 84px;
}

.te-header-menu-area.te-sticky_menu .te-logo:after {
  display: none;
}

.te-header-menu-area.te-sticky_menu .te-logo .te-standard-logo {
  display: none;
}

.te-header-menu-area.te-sticky_menu .te-logo .te-sticky-logo {
  display: block;
}

.te-header-menu-area.te-sticky_menu .te-logo .te-sticky-logo img {
  width: 170px;
  transition: all 0.5s ease-out;
}

.te-header-menu-area.te-sticky_menu .te-main-menu ul li.te-active>a:after {
  bottom: 20px;
}

.te-header-menu-area.te-sticky_menu .te-main-menu ul li a {
  transition: all 0.5s ease-out;
  color: #182B54;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .te-header-menu-area.te-sticky_menu .te-main-menu ul li a {
    padding: 33px 14px;
  }
}

.te-sticky_menu .text-white {
  color: #182B54 !important;
}

.te-header-menu-area.te-sticky_menu .te-main-menu ul li ul li a {
  padding: 10px 20px;
}

.te-header-menu-area.te-sticky_menu .te-header-btn .te-quote-btn {
  background-color: var(--theme-color);
}

.te-header-menu-area.te-sticky_menu .te-header-btn .te-search-btn {
  color: #151422;
}

.te-header-menu-area .te-header-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1199px) {
  .te-header-menu-area .te-header-menu-wrapper {
    gap: 20px;
  }
}

.te-header-menu-area .te-logo {
  position: relative;
  z-index: 999;
  height: 86px;
  display: flex;
  align-items: center;
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .te-header-menu-area .te-logo {
    height: 100px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .te-header-menu-area .te-logo {
    height: 80px;
  }
}

.te-header-menu-area .te-logo .te-standard-logo img {
  transition: all 0.5s ease-out;
  background: #fff;
  border-radius: 5px;
  padding: 2px;
}

.te-header-menu-area .te-logo .te-sticky-logo {
  display: none;
}

@media only screen and (max-width: 767px) {
  .te-header-menu-area .te-logo .te-sticky-logo {
    width: 170px;
  }
}

.te-header-menu-area .te-logo .te-sticky-logo img {
  transition: all 0.5s ease-out;
  background: #fff;
  border-radius: 5px;
  padding: 2px;
}

.te-header-menu-area .te-logo .te-retina-logo {
  display: none;
}

.te-menu-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: end;
}

.te-main-menu ul {
  margin: 0;
  padding: 0;
  position: relative;
}

.te-main-menu ul li {
  display: inline-block;
  padding: 0;
  position: relative;
}

.te-main-menu ul li.te-active {
  position: relative;
}

.te-main-menu ul li.te-active>a:after {
  color: var(--theme-color);
  font-size: 13px;
  margin-left: 5px;
}

.te-main-menu ul li.te-dropdown>a:after {
  visibility: visible;
  font-size: 13px;
  display: inline-block;
  margin-left: 5px;
}

.te-main-menu ul li.te-dropdown .te-dropdown>a:after {
  visibility: visible;
  font-size: 13px;
}

.te-main-menu ul li ul.te-submenu li.te-active>a {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.te-main-menu ul li ul.te-submenu li.te-active>a:after {
  color: #ffffff;
  font-size: 13px;
}

.te-main-menu ul li a {
  display: block;
  padding: 8px 11px;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.5s ease-out;
  position: relative;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: initial;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .te-main-menu ul li a {
    padding: 8px 14px;
  }
}

.te-main-menu ul li a:after {
  content: "\f107";
  font-family: "FontAwesome";
  display: inline-block;
  margin-top: -5px;
  visibility: hidden;
  font-size: 0;
  display: none;
  font-weight: 800;
}

.te-main-menu ul li a:hover {
  color: var(--theme-color);
}

.te-main-menu ul li a:hover:after {
  color: var(--theme-color);
}

.te-main-menu ul li:hover>ul {
  visibility: visible;
  transition: all 300ms ease;
  opacity: 1;
  transform: scaleY(1);
}

.te-main-menu ul li ul li:hover ul {
  visibility: visible;
  top: -2px;
}

.te-main-menu ul ul {
  background-color: #ffffff;
  left: 0;
  opacity: 0;
  position: absolute;
  text-align: left;
  top: 100%;
  visibility: hidden;
  z-index: 99999;
  transition: all 300ms ease;
  border-top: 2px solid var(--theme-color);
  box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  transform-origin: top;
  transform: scaleY(0);
  max-height: 400px;
  overflow: auto;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}

.te-main-menu ul ul li {
  float: none;
  width: 210px;
}

.te-main-menu ul ul li ul {
  visibility: hidden;
}

.te-main-menu ul ul li i {
  float: right;
}

.te-main-menu ul ul li a {
  line-height: initial;
  padding: 10px 20px;
  color: #151422;
  border-bottom: 1px solid #E3E3E3;
  margin-left: 0;
  font-size: 16px;
}

.te-main-menu ul ul li a:hover {
  background-color: var(--theme-color);
  color: #ffffff;
}

.te-main-menu ul ul li a:hover:after {
  color: #ffffff;
}

.te-main-menu ul ul li:last-child a {
  border-bottom: 0px;
}

.te-main-menu ul ul ul {
  left: 100%;
  transition: all 0.3s ease 0s;
  opacity: 0;
  border-top: 0px;
  border-top: 2px solid var(--theme-color);
}

.te-animation {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.te-slideUpIn {
  -webkit-animation-name: slideUpIn;
  animation-name: slideUpIn;
}

.te-header-btn {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-left: auto;
  gap: 20px;
}

.te-header-btn .te-icon {
  width: 72px;
  background-color: var(--theme-color);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.5s ease-out;
}

.te-header-btn .te-icon:hover {
  background-color: var(--theme-color);
  color: #151422;
  transition: all 0.5s ease-out;
}

@media only screen and (max-width: 1399px) {
  .te-header-btn {
    display: none;
  }
}

.te-header-btn .te-cta-btn {
  display: inline-flex;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  gap: 0;
  flex-shrink: 0;
  flex-direction: column;
}

.te-header-btn .te-cta-btn span {
  color: #ffffff;
  font-size: 16px;
}

.te-header-btn .te-cta-btn a {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.te-header-btn .te-cta-btn a i {
  color: var(--theme-color);
  font-size: 14px;
  font-weight: 900;
  margin-right: 10px;
}

.te-header-btn .te-quote-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 0.6px;
  color: #ffffff;
  border: 1px solid var(--theme-color);
  padding: 19px 27px;
  transition: all 0.5s ease-out;
  flex-shrink: 0;
  border-radius: 50px;
}

.te-header-btn .te-quote-btn:hover {
  background-color: var(--theme-color);
  color: #ffffff;
  transition: all 0.5s ease-out;
}

.te-header-btn .te-search-btn {
  color: #ffffff;
  font-size: 18px;
}

.te-search-form-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  z-index: 999;
  visibility: hidden;
  transition: all 0.5s ease-out;
}

.te-search-form-wrapper.te-active {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-out;
}

.te-search-form-wrapper .te-search-form-inner {
  width: 768px;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.te-search-form-wrapper .te-search-form-inner .te-search-content-filed {
  display: flex;
  align-items: center;
  gap: 30px;
}

.te-search-form-wrapper .te-search-form-inner .te-search-content-filed .te-search-close {
  cursor: pointer;
  font-size: 30px;
  color: #ffffff;
}

.te-search-form-wrapper .te-search-form-inner .te-search-form {
  background: #FFFFFF;
  box-shadow: 0px 30px 70px rgba(208, 225, 242, 0.3);
  border-radius: 5px;
  padding: 15px 30px;
  flex: 1;
}

.te-search-form-wrapper .te-search-form-inner .te-search-form .te-search-form-input {
  display: flex;
  align-items: center;
}

.te-search-form-wrapper .te-search-form-inner .te-search-form .te-search-form-input .te-search-icon {
  display: flex;
}

.te-search-form-wrapper .te-search-form-inner .te-search-form .te-search-form-input button.te-submit-search-btn {
  padding: 15px 24px !important;
}

.te-search-form-wrapper .te-search-form-inner .te-search-form input[type="search"] {
  margin-top: 0 !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 12px !important;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .header-area.style-1 .te-header-menu-area.te-sticky-header {
    position: unset;
  }
}

.header-area.style-1 .te-header-btn .te-quote-btn {
  background-color: var(--theme-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area.style-1 .te-header-menu-area .te-logo .te-standard-logo {
    display: none;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .header-area.style-1 .te-header-menu-area .te-logo .te-standard-logo {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area.style-1 .te-header-menu-area .te-logo .te-sticky-logo {
    display: block;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .header-area.style-1 .te-header-menu-area .te-logo .te-sticky-logo {
    display: block;
  }
}

.header-area.style-2 .te-header-menu-area.te-sticky-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-area.style-2 .te-sticky_menu .te-header-menu-wrapper .te-logo-wrapper {
  display: block;
  width: unset;
}

.header-area.style-2 .te-sticky_menu .te-header-btn .te-cta-btn {
  display: none;
}

.header-area.style-2 .te-sticky_menu .te-menu {
  margin-left: auto;
}

.header-area.style-2 .te-sticky_menu .te-mobile-menu-bar a i {
  color: #151422;
}

.header-area.style-2 .header-area-wrapper {
  display: flex;
  width: 100%;
  position: relative;
}

.header-area.style-2 .header-area-wrapper .header-inner {
  width: 100%;
}

.header-area.style-2 .header-area-wrapper .logo-wrapper {
  padding: 0 40px;
  position: absolute;
  z-index: 9;
  top: 0;
  height: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area.style-2 .header-area-wrapper .logo-wrapper {
    display: none !important;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .header-area.style-2 .header-area-wrapper .logo-wrapper {
    display: none !important;
  }
}

.header-area.style-2 .te-header-menu-wrapper .te-logo-wrapper {
  display: none;
  margin-right: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area.style-2 .te-header-menu-wrapper .te-logo-wrapper {
    display: block;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .header-area.style-2 .te-header-menu-wrapper .te-logo-wrapper {
    display: block;
  }
}

@media (max-width: 991px) {
  .header-area.style-2 .te-mobile-menu-bar a i {
    color: #ffffff;
  }
}

.header-area.style-3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 30px 0;
}

.header-area.style-3 .te-header-menu-row {
  background-color: #ffffff;
}

.header-area.style-3 .te-header-menu-area .te-logo {
  padding-left: 20px;
}

.header-area.style-3 .te-header-menu-area.te-sticky_menu {
  padding-left: 0;
}

.header-area.style-3 .te-header-menu-area.te-sticky_menu .te-header-menu-container {
  padding: 0;
}

.header-area.style-3 .te-header-menu-area.te-sticky_menu .te-header-menu-row {
  padding: 0;
  background-color: transparent;
}

.header-area.style-3 .te-header-menu-area.te-sticky_menu .te-header-btn {
  padding-right: 0;
}

.header-area.style-3 .te-header-menu-area.te-sticky_menu .te-header-btn .te-quote-btn {
  color: #ffffff;
}

.header-area.style-3 .te-header-btn {
  padding-right: 10px;
}

.header-area.style-3 .te-header-btn .te-quote-btn {
  color: #182B54;
}

.header-area.style-3 .te-main-menu ul li a {
  color: #151422;
}

.header-area.style-3 .te-main-menu ul li ul li a:hover {
  color: #ffffff;
}

.header-area.style-4 {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area.style-4 .te-menu {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area.style-4 .topbar-two-wrapper {
    padding-left: 240px !important;
  }
}

.header-area.style-4 .te-sticky_menu {
  padding-left: 0 !important;
}

@media (max-width: 991px) {
  .header-area.style-4 .te-sticky_menu {
    padding-top: 0 !important;
  }
}

.header-area.style-4 .te-sticky_menu .te-header-menu-wrapper .te-logo-wrapper {
  display: block;
  width: unset;
}

.header-area.style-4 .te-sticky_menu .te-menu {
  margin-left: auto;
}

.header-area.style-4 .te-header-menu-wrapper .te-logo-wrapper {
  display: none;
}

.header-area.style-4 .header-area-wrapper {
  display: flex;
  width: 100%;
  position: relative;
  background-color: #ffffff;
}

.header-area.style-4 .header-area-wrapper .header-inner {
  width: 100%;
}

.header-area.style-4 .header-area-wrapper .logo-wrapper {
  background-color: var(--theme-color);
  padding: 0 40px;
  position: absolute;
  z-index: 9;
  top: 0;
  height: 100%;
}

@media (max-width: 991px) {
  .header-area.style-4 .header-area-wrapper .logo-wrapper {
    position: unset;
    height: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area.style-4 .header-area-wrapper .logo-wrapper {
    height: 90px;
  }
}

.header-area.style-4 .te-header-menu-area,
.header-area.style-4 .topbar-two-wrapper {
  padding-left: 240px;
}

@media (max-width: 991px) {
  .header-area.style-4 .te-header-menu-area,
  .header-area.style-4 .topbar-two-wrapper {
    padding-left: 0;
    padding-top: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area.style-4 .te-header-menu-area,
  .header-area.style-4 .topbar-two-wrapper {
    padding-left: 0;
  }
}

.header-area.style-4 .te-main-menu ul li a {
  color: #151422;
  padding: 30px 17px;
}

.header-area.style-4 .te-main-menu ul li ul li a {
  padding: 10px 20px;
}

.header-area.style-4 .te-main-menu ul li ul li a:hover {
  color: #ffffff;
}

.header-area.style-4 .te-header-btn .social-profile {
  display: flex;
  gap: 25px;
  padding-right: 30px;
}

.header-area.style-4 .te-header-btn .social-profile a {
  color: #757474;
}

.header-area.style-4 .te-header-btn .social-profile a:hover {
  color: var(--theme-color);
}

.header-top-two {
  background-color: #182B54;
  padding: 15px 0;
}

@media (max-width: 991px) {
  .header-top-two {
    display: none;
  }
}

.header-top-two .topbar-two-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px 20px;
}

.header-top-two .topbar-two-wrapper .topbar-two-contact {
  display: flex;
  gap: 10px 40px;
}

.header-top-two .topbar-two-wrapper .single-contact {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  position: relative;
}

.header-top-two .topbar-two-wrapper .single-contact:first-child:before {
  display: none;
}

.header-top-two .topbar-two-wrapper .single-contact:before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
}

.header-top-two .topbar-two-wrapper .single-contact .contact-icon {
  font-size: 40px;
  color: var(--theme-color);
}

.header-top-two .topbar-two-wrapper .single-contact .contact-text {
  display: flex;
  flex-direction: column;
}

.header-top-two .topbar-two-wrapper .single-contact .contact-text .contact-label {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: #ffffff;
}

.header-top-two .topbar-two-wrapper .single-contact .contact-text .contact-text {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 140% */
  letter-spacing: -0.8px;
  font-family: "Jost", sans-serif;
  color: #ffffff;
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: #151422;
  border-top: 1px solid #dfe2e9;
  font-size: 16px;
  text-transform: capitalize;
  line-height: 1.5;
  font-weight: 600;
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
  border: 1px solid #dfe2e9 !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: #151422;
  line-height: 30px;
  top: 0;
  font-weight: 400;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li.dropdown-opened a.mean-expand.mean-clicked {
  background-color: var(--theme-color);
  border-color: var(--theme-color) !important;
}

.mean-container .mean-nav ul li.dropdown-opened a.mean-expand.mean-clicked i {
  color: #ffffff;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  color: #ffffff;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  color: #ffffff;
}

.te-mobile-menu-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.te-mobile-menu-bar a i {
  color: #151422;
  font-size: 22px;
}

.te-menu-sidebar-area {
  position: fixed;
  right: -485px;
  top: 0;
  width: 465px;
  height: 100%;
  background-color: #ffffff;
  overflow-y: scroll;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 9999;
}

@media (max-width: 560px) {
  .te-menu-sidebar-area {
    width: 350px;
  }
}

.te-menu-sidebar-area .te-menu-sidebar-logo {
  display: inline-block;
  width: 180px;
}

.te-menu-sidebar-area .te-menu-sidebar-wrapper {
  position: relative;
  padding: 40px;
}

.te-menu-sidebar-area.active {
  right: 0;
}

.te-menu-sidebar-area .te-menu-sidebar-close {
  position: absolute;
  top: 0;
  right: 0;
}

.te-menu-sidebar-area .te-menu-sidebar-close .te-menu-sidebar-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  height: 55px;
  width: 55px;
  background-color: var(--theme-color);
  color: #ffffff;
}

.te-menu-sidebar-area .te-menu-sidebar-close .te-menu-sidebar-close-btn:hover {
  background-color: var(--theme-color);
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget {
  display: inline-block;
  margin-top: 20px;
  width: 100%;
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-menu-sidebar-title {
  margin-bottom: 5px;
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-header-contact-info {
  display: flex;
  align-items: center;
  gap: 0 24px;
  padding: 6px 0;
  flex-wrap: wrap;
  flex-direction: column;
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-header-contact-info span {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #151422;
  font-size: 16px;
  font-weight: 400;
  font-family: "Kumbh Sans", sans-serif;
  width: 100%;
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-header-contact-info span.te-contact-info-item {
  gap: 0 10px !important;
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-header-contact-info span a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #151422;
  font-size: 16px;
  font-weight: 400;
  font-family: "Kumbh Sans", sans-serif;
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-header-contact-info span a:hover {
  color: var(--theme-color);
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-social-profile {
  margin-top: 20px;
  border-top: 1px solid #dfe2e9;
  width: 100%;
  padding-top: 20px;
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-social-profile a {
  color: #151422;
  font-size: 22px;
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-social-profile a:hover {
  color: var(--theme-color);
}

.te-body-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-out;
}

.te-body-overlay.active {
  opacity: 1;
  visibility: visible;
}

.te-body-overlay:hover {
  cursor: pointer;
}
ul.custom-flex {
  list-style: none;
  padding: 0;
  display: flex;
  margin-bottom: 0;
  padding: 3px 0;
  align-items: center;
  flex-wrap: wrap;
}

ul.custom-flex li a i {
  color: var(--theme-color);
}

.header_top .rightside ul {
  justify-content: flex-end;
}

.header_top .leftside ul>li>a {
  margin: 3px 10px 3px 0px;
  line-height: 30px;
  border: 2px solid #fff;
  width: 30px;
  height: 30px;
  text-align: center;
  display: block;
  color: #fff;
  border-radius: 50%;
}

.header_top .leftside ul>li:hover>a {
  background-color: #111111;
  border-color: #111111;
  color: #fff;
}

.custom_navs {
  padding: 5px 5px 5px 30px;
  background: #fff;
  border-radius: 57px;
}

.mobile_top_bar {
  background-color: #fff;
  padding: 4px;
}

.mobile_top_bar .button {
  padding: 5px 14px;
  border: 1px solid #d1d1d1;
  border-radius: 30px;
  color: #fff;
  transition: 0.3s;
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  gap: 8px;
  a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
}

.mobile_top_bar .button.whatsapp_button {
  background-color: #25d366;
}

.mobile_top_bar .button:hover {
  background-color: #262760;
}

@media(max-width: 768px) {
  .header_top {
    display: none;
  }
  .custom_navs {
    padding: 5px 10px 5px 10px;
    background: #fff;
    border-radius: 57px;
    align-items: flex-end !important;
    justify-content: space-around;
    width: max-content;
    margin-left: auto;
  }
}
.th-header {
  position: relative;
  z-index: 41;
}

.th-header .icon-btn {
  border-radius: 99px;
}

.th-header .menu-area {
  position: relative;
  z-index: 2;
}

.sticky-wrapper {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.sticky-wrapper.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--white-color);
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
  -webkit-animation: stickyAni 0.4s ease-in-out;
  animation: stickyAni 0.4s ease-in-out;
}

@-webkit-keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
    transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
    transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

@keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
    transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
    transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

.main-menu a {
  display: block;
  position: relative;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.main-menu a:hover {
  color: var(--theme-color);
}

.main-menu>ul>li {
  margin: 0 26px;
}

.main-menu>ul>li>a {
  padding: 17px 0;
}

.main-menu>ul>li>a:hover {
  color: var(--theme-color);
}

.main-menu ul {
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}

.main-menu ul li:has(.sub-menu)>a:after,
.main-menu ul li:has(.mega-menu)>a:after,
.main-menu ul li.menu-item-has-children>a:after {
  content: "\f107";
  display: inline-block;
  position: relative;
  font-family: 'FontAwesome';
  margin-left: 5px;
  font-weight: 600;
  top: 0;
  font-size: 0.9em;
  color: #000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.main-menu ul li:has(.sub-menu)>a:hover:after,
.main-menu ul li:has(.mega-menu)>a:hover:after,
.main-menu ul li.menu-item-has-children>a:hover:after {
  content: "\f106";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  color: var(--theme-color);
}

.main-menu ul li:last-child {
  margin-right: 0 !important;
}

.main-menu ul li:first-child {
  margin-left: 0 !important;
}

.main-menu ul li:hover>ul.sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  z-index: 9;
}

.main-menu ul li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1) translateX(0%);
  -ms-transform: scaleY(1) translateX(0%);
  transform: scaleY(1) translateX(0%);
  z-index: 9;
}

.main-menu ul.sub-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  visibility: hidden;
  min-width: 230px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 4px;
  left: -14px;
  opacity: 0;
  z-index: -1;
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  border-radius: 10px;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-bottom: 3px solid var(--theme-color);
  max-height: 400px;
  overflow: auto;
  width: 300px;
}

.main-menu ul.sub-menu a {
  font-size: 16px;
  line-height: 30px;
}

.main-menu ul.sub-menu {
  padding: 4px 13px 3px 8px;
  left: -27px;
}

.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 0px 9px;
}

.main-menu ul.sub-menu li:has(.sub-menu)>a:after,
.main-menu ul.sub-menu li:has(.mega-menu)>a:after,
.main-menu ul.sub-menu li.menu-item-has-children>a:after {
  content: "\f105";
  float: right;
  top: 1px;
  display: inline-block;
}

.main-menu ul.sub-menu li:has(.sub-menu)>a:hover:after,
.main-menu ul.sub-menu li:has(.mega-menu)>a:hover:after,
.main-menu ul.sub-menu li.menu-item-has-children>a:hover:after {
  content: "\f105";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 0;
  text-transform: capitalize;
  line-height: 1.1;
  padding: 8px;
  color: #000;
}

.main-menu ul.sub-menu li a:before {
  content: "\f0a4";
  position: absolute;
  top: 8px;
  left: 10px;
  font-family: 'FontAwesome';
  width: 11px;
  height: 11px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 1em;
  line-height: 1;
  color: var(--theme-color);
  font-weight: 900;
  opacity: 0;
  visibility: visible;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.main-menu ul.sub-menu li a:hover {
  padding-left: 23px;
}

.main-menu ul.sub-menu li a:hover:before {
  visibility: visible;
  opacity: 1;
  left: 0;
}

.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}

.main-menu .mega-menu-wrap {
  position: static;
}

@media (max-width: 1500px) {
  .main-menu>ul>li {
    margin: 0 26px;
  }
}

.menu-style1>ul>li {
  margin: 0 14px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .menu-style1>ul>li {
    margin: 0 10px;
  }
}

.menu-style1>ul>li>a {
  padding: 17px 0;
  color: var(--white-color);
}

.menu-style1>ul>li>a:hover {
  color: var(--theme-color2);
}

.menu-style1 ul li:has(.sub-menu)>a:after,
.menu-style1 ul li:has(.mega-menu)>a:after,
.menu-style1 ul li.menu-item-has-children>a:after {
  color: var(--white-color);
}

.simple-icon {
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: 24px;
  position: relative;
}

.simple-icon:has(.badge) {
  padding-right: 8px;
}

.simple-icon .badge {
  top: -8px;
  right: 0;
  font-size: 12px;
}

.header-button {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.header-button .icon-btn .badge {
  font-size: 12px;
  top: 0;
  right: 0;
  background: var(--theme-color2);
  color: var(--second-color);
}

.header-button .icon-btn:hover .badge {
  background: var(--theme-color);
  color: var(--white-color);
}

.social-links .social-title {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  margin: 0 10px 0 0;
  color: var(--body-color);
}

.social-links a {
  font-size: 14px;
  display: inline-block;
  color: var(--body-color);
  margin: 0 15px 0 0;
}

.social-links a:last-child {
  margin-right: 0 !important;
}

.social-links a:hover {
  color: var(--theme-color);
}

.header-logo {
  padding-top: 2px;
  padding-bottom: 2px;
}

.header-logo .site_name span {
  font-size: inherit;
  color: var(--theme-color);
}
.site_name{
  color: var(--theme-color2);
  font-weight: 700;
  font-size: 25px;
}


.header-logo a:hover {
  color: var(--white-color);
}

.header-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header-links li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--body-font);
}

.header-links li:not(:last-child) {
  margin: 0 55px 0 0;
}

.header-links li:not(:last-child):after {
  content: '';
  height: 16px;
  width: 1px;
  background-color: var(--white-color);
  position: absolute;
  top: 0px;
  right: -30px;
  margin-top: 5px;
}

.header-links li>i {
  margin-right: 11px;
  color: var(--white-color);
}

.header-links li,
.header-links span,
.header-links p,
.header-links a {
  color: var(--light-color);
}

.header-links a:hover {
  color: var(--white-color);
}

.header-links b,
.header-links strong {
  font-weight: 600;
  margin-right: 6px;
}

.header-links.social-links li:not(:last-child) {
  margin: 0 35px 0 0;
}

.header-links.social-links li:not(:last-child):after {
  right: -20px;
}

.header-notice {
  margin: 0;
}

.header-top {
  padding: 6px 0;
  background-color: var(--black-color2);
  border-bottom: 1px solid var(--th-border-color6);
}

.dropdown-link {
  position: relative;
}

.dropdown-link>a {
  color: var(--body-color);
}

.dropdown-link>a i {
  color: var(--theme-color);
  margin-right: 5px;
}

.dropdown-toggle::after {
  content: "\f078";
  border: none;
  font-family: 'FontAwesome';
  vertical-align: middle;
  font-weight: 400;
  margin-left: 6px;
  margin-top: -1px;
}

.dropdown-menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: auto;
  top: calc(100% + 6px) !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
  -ms-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
  padding: 8px 20px !important;
  text-align: center;
  border-color: var(--th-border-color);
}

.dropdown-menu li {
  padding-right: 0;
  margin-right: 0;
}

.dropdown-menu li:after {
  display: none;
}

.dropdown-menu li a {
  display: block;
  font-weight: 400;
  font-size: 14px;
}

.dropdown-menu a {
  color: var(--second-color) !important;
}

.dropdown-menu a:hover {
  color: var(--theme-color) !important;
}

.dropdown-menu:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  background-color: var(--white-color);
  z-index: -1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 1px solid var(--th-border-color);
  border-left: 1px solid var(--th-border-color);
}

.header-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  gap: 15px;
}

.header-icons .icon-btn {
  font-size: 18px;
}

.header-icons .icon-btn .badge {
  font-size: 12px;
  top: 0;
  right: 0;
}

.header-icons .icon-btn:hover .badge {
  background-color: var(--second-color);
}

.header-search {
  position: relative;
}

.header-search input {
  height: 46px;
  border: 1px solid var(--th-border-color);
  width: 500px;
  max-width: 100%;
  /* Large devices */
}

.header-search input:focus {
  border-color: var(--theme-color);
}

@media (max-width: 1199px) {
  .header-search input {
    max-width: 350px;
  }
}

.header-search button {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  width: 50px;
  height: 46px;
  line-height: 45px;
  text-align: center;
  padding: 0;
  border-radius: 0 99px 99px 0;
}

.menu-expand {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white-color);
  background-color: var(--theme-color2);
  padding: 17px 25px;
  width: 100%;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .menu-expand {
    font-size: 15px;
  }
}

.menu-expand i {
  margin-right: 15px;
}

.menu-expand:hover {
  color: var(--white-color);
}

.info-card-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  /* Large devices */
}

.info-card-wrap .info-card {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  padding-left: 8px;
}



.info-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  /* Extra large devices */
  /* Medium devices */
}

.info-card:first-child {
  border-left: 0;
  padding-left: 0;
}

.info-card .box-icon {
  position: relative;
  display: inline-block;
  height: 19px;
  width: 19px;
  line-height: 19px;
  font-size: 10px;
  color: var(--theme-color);
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  background-color: var(--white-color);
  border-radius: 50%;
}

.info-card .box-icon .bg-shape2,
.info-card .box-icon .bg-shape1 {
  position: absolute;
  inset: 0;
  background: var(--theme-color);
  z-index: -1;
}

.info-card .box-icon .bg-shape2 {
  background: var(--theme-color2);
  z-index: -2;
  inset: 2px 0 -2px 0;
}

.info-card .box-text {
  margin: -0.3em 0 0 0;
  font-size: 14px;
  color: var(--body-color);
}

.th-widget-about .about-text {
  margin-bottom: 32px;
  margin-top: -0.5em;
  margin-top: 20px;
  color: #fff;
}

.th-widget-about {
  max-width: 315px;
}

.info-card .box-title {
  margin: 0 0 -0.2em 0;
  font-size: 24px;
  font-weight: 700;
}

header .info-card .box-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-transform: lowercase;
}
header .info-card .box-title i{

  position: relative;
  display: inline-flex
  ;
  margin-inline: 5px;
  background: var(--theme-color2);
  width: 18px;
  height: 18px;
    /* display: flex
; */
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 11px;
}

@media (max-width: 1500px) {
  .info-card .box-title {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .info-card .box-title {
    font-size: 18px;
  }
}

.info-card.style2 .box-icon {
  border-radius: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
}

.info-card.style2 .box-title {
  font-size: 20px;
  font-weight: 600;
}

/* Header default ---------------------------------- */

.header-default {
  margin-bottom: 0;
  border-bottom: 1px solid #FFFFFF1A;
  background-color: transparent; 
  position: absolute;
  width: 100%;
  left: 0;
}

.header-default .menu-top {
  padding: 0px 0px;
  background-color: var(--theme-color);
}

.header-social-col {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick_contact {
  display: inline-block;
  margin-left: 10px;
}

.quick_btn {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 30px;
  border: 0;
  background-color: var(--theme-color2);
  transition: 0.4s;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--title-font);
  color: #fff;
}

.quick_btn:hover {
  background-color: #fff;
  color: var(--theme-color2);
}

.header-default .menu-top .header-notice {
  display: none;
  color: var(--second-color);
  /* Medium devices */
}

@media (max-width: 991px) {
  .header-default .menu-top .header-notice {
    display: block;
  }
}

.header-default .menu-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-default .menu-area .menu-area-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fill-available;
  justify-content: space-between;
  align-items: center;
}

.header-default .menu-area .header-button {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}


.header-default .main-menu>ul>li>a {
  color: #fff;
}

.header-default .main-menu>ul>li>a:hover {
  color: var(--theme-color);
}

.header-default .main-menu>ul>li:has(.sub-menu)>a:after,
.header-default .main-menu>ul>li:has(.mega-menu)>a:after,
.header-default .main-menu>ul>li.menu-item-has-children>a:after {
  color: #fff;
}

.header-default .main-menu>ul>li:has(.sub-menu)>a:hover:after,
.header-default .main-menu>ul>li:has(.mega-menu)>a:hover:after,
.header-default .main-menu>ul>li.menu-item-has-children>a:hover:after {
  color: var(--theme-color2);
}

.header-default .header-notice {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin-left: auto;
  color: var(--white-color);
}

.header-default .header-button {
  gap: 0;
}

.header-default .sticky-wrapper.sticky {
  background: var(--white-color);
  padding: 15px 0;
}

@media (min-width: 1700px) {
  .header-default {
    --main-container: 1760px;
  }
}

/* Extra large devices */

@media (max-width: 1200px) {
  .header-social-col {
    display: none;
  }
  .header-default .header-notice {
    display: none;
  }
}

/* Medium devices */

@media (max-width: 991px) {
  .header-default {
    margin-bottom: -40px;
  }
  .header-default .menu-top {
    padding: 5px 0px;
  }
}

/* Small devices */

@media (max-width: 767px) {
  .header-default {
    margin: 0;
    padding: 3px 0;
  }
}

/* Extra small devices */

@media (max-width: 575px) {
  .header-default .header-logo h2 {
    font-size: 36px;
  }
}

/* Extra small devices */

@media (max-width: 375px) {
  .header-default .menu-area .menu-area-wrap {
    background: transparent;
    border-radius: 0;
    padding: 0;
  }
  .header-default .header-button .icon-btn {
    --btn-size: 50px;
  }
}

@media (max-width: 360px) {
  .header-logo {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

/* Header 1 ---------------------------------- */

.header-layout1 .header-logo {
  margin-right: 80px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}

.header-layout1 .menu-top {
  padding: 6px 0px;
}

.header-layout1 .menu-top .header-notice {
  display: none;
  color: var(--second-color);
  /* Medium devices */
}

@media (max-width: 991px) {
  .header-layout1 .menu-top .header-notice {
    display: block;
  }
}

.header-layout1 .menu-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-layout1 .menu-area .menu-area-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fill-available;
  background: var(--theme-color);
  padding: 0 18px 0 30px;
  border-radius: 50px;
}

.header-layout1 .menu-area .header-button {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}

.header-layout1 .menu-area .header-button .btn-theme {
  padding: 22.5px 48px;
}

.header-layout1 .main-menu>ul>li>a {
  color: var(--white-color);
}

.header-layout1 .main-menu>ul>li>a:hover {
  color: var(--theme-color2);
}

.header-layout1 .main-menu>ul>li:has(.sub-menu)>a:after,
.header-layout1 .main-menu>ul>li:has(.mega-menu)>a:after,
.header-layout1 .main-menu>ul>li.menu-item-has-children>a:after {
  color: var(--white-color);
}

.header-layout1 .main-menu>ul>li:has(.sub-menu)>a:hover:after,
.header-layout1 .main-menu>ul>li:has(.mega-menu)>a:hover:after,
.header-layout1 .main-menu>ul>li.menu-item-has-children>a:hover:after {
  color: var(--theme-color2);
}

.header-layout1 .header-notice {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin-left: auto;
  color: var(--white-color);
}

.header-layout1 .header-button {
  gap: 0;
}

.header-layout1 .sticky-wrapper {
  padding: 10px 0;
}

.header-layout1 .sticky-wrapper.sticky {
  background: var(--white-color);
  padding: 10px 0;
}

@media (min-width: 1700px) {
  .header-layout1 {
    --main-container: 1760px;
  }
}

@media (max-width: 1699px) {
  .header-layout1 .header-notice {
    display: none;
  }
  .header-layout1 .menu-area .menu-area-wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 15px;
  }
}

/* Medium Large devices */

@media (max-width: 1299px) {
  .header-layout1 .header-logo {
    margin-right: 30px;
  }
}

/* Medium devices */

@media (max-width: 991px) {
  .header-layout1 .sticky-wrapper {
    padding: 0;
  }
  .header-layout1 .sticky-wrapper.sticky {
    padding: 0;
  }
}

/* Extra small devices */

@media (max-width: 575px) {
  .header-layout1 .header-logo {
    margin-right: 0;
  }
  .header-layout1 .header-logo h2 {
    font-size: 36px;
  }
  .header-layout1 .header-logo img {
    max-width: 160px;
  }
}

/* Extra small devices */

@media (max-width: 375px) {
  .header-layout1 .header-button .icon-btn {
    --btn-size: 50px;
  }
}

/* Header 2 ---------------------------------- */

.header-layout2 {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
}

.header-layout2 .header-logo {
  margin-right: 80px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}

.header-layout2 .menu-top {
  padding: 6px 0px;
}

.header-layout2 .menu-top .header-notice {
  display: none;
  color: var(--second-color);
  /* Medium devices */
}

@media (max-width: 991px) {
  .header-layout2 .menu-top .header-notice {
    display: block;
  }
}

.header-layout2 .menu-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-layout2 .menu-area .menu-area-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fill-available;
  background: var(--theme-color);
  padding: 0 18px 0 30px;
  border-radius: 50px;
}

.header-layout2 .menu-area .header-button {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}

.header-layout2 .menu-area .header-button .btn-theme {
  padding: 22.5px 48px;
}

.header-layout2 .main-menu>ul>li>a {
  color: var(--white-color);
}

.header-layout2 .main-menu>ul>li>a:hover {
  color: var(--theme-color2);
}

.header-layout2 .main-menu>ul>li:has(.sub-menu)>a:after,
.header-layout2 .main-menu>ul>li:has(.mega-menu)>a:after,
.header-layout2 .main-menu>ul>li.menu-item-has-children>a:after {
  color: var(--white-color);
}

.header-layout2 .main-menu>ul>li:has(.sub-menu)>a:hover:after,
.header-layout2 .main-menu>ul>li:has(.mega-menu)>a:hover:after,
.header-layout2 .main-menu>ul>li.menu-item-has-children>a:hover:after {
  color: var(--theme-color2);
}

.header-layout2 .header-notice {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin-left: auto;
  color: var(--white-color);
}

.header-layout2 .header-button {
  gap: 10px;
  margin-left: 10px;
}

.header-layout2 .sticky-wrapper {
  padding: 10px 0;
}

.header-layout2 .sticky-wrapper.sticky {
  background: var(--white-color);
  padding: 10px 0;
}

@media (min-width: 1700px) {
  .header-layout2 {
    --main-container: 1760px;
  }
}

@media (max-width: 1699px) {
  .header-layout2 .header-notice {
    display: none;
  }
  .header-layout2 .menu-area .menu-area-wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 15px;
  }
}

/* Medium Large devices */

@media (max-width: 1299px) {
  .header-layout2 .header-logo {
    margin-right: 30px;
  }
  .header-layout2 .header-button {
    margin-left: 0;
    gap: 0;
  }
}

/* Medium devices */

@media (max-width: 991px) {
  .header-layout2 .sticky-wrapper {
    padding: 0;
  }
  .header-layout2 .sticky-wrapper.sticky {
    padding: 0;
  }
}

/* Extra small devices */

@media (max-width: 575px) {
  .header-layout2 .header-logo {
    margin-right: 0;
  }
  .header-layout2 .header-logo h2 {
    font-size: 36px;
  }
  .header-layout2 .header-logo img {
    max-width: 160px;
  }
}

/* Extra small devices */

@media (max-width: 375px) {
  .header-layout2 .header-button .icon-btn {
    --btn-size: 50px;
  }
}

.th-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}

.th-menu-wrapper .mobile-logo {
  padding-bottom: 10px;
  padding-top: 15px;
  display: block;
  text-align: center;
  background-color: var(--smoke-color2);
}

.th-menu-wrapper .mobile-logo svg {
  max-width: 185px;
}

.th-menu-wrapper .th-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: -16.5px;
  top: 25px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 35px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
}

.th-menu-wrapper .th-menu-toggle:hover {
  background-color: var(--second-color);
  color: var(--white-color);
}

.th-menu-wrapper .th-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
}

.th-menu-wrapper.th-body-visible {
  opacity: 1;
  visibility: visible;
}

.th-menu-wrapper.th-body-visible .th-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.th-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}

.th-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}

.th-mobile-menu ul li {
  border-bottom: 1px solid #fdedf1;
  list-style-type: none;
  display: block;
}

.th-mobile-menu ul li li:first-child {
  border-top: 1px solid #fdedf1;
}

.th-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--second-color);
  padding-left: 18px;
}

.th-mobile-menu ul li a:before {
  content: '\f105';
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  top: 12px;
  font-weight: 900;
  margin-right: 10px;
  display: inline-block;
}

.th-mobile-menu ul li.th-active>a {
  color: var(--theme-color);
}

.th-mobile-menu ul li.th-active>a:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.th-mobile-menu ul li ul li {
  padding-left: 20px;
}

.th-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}

.th-mobile-menu ul .menu-item-has-children>a .th-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--smoke-color);
  color: var(--second-color);
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}

.th-mobile-menu ul .menu-item-has-children>a .th-mean-expand:before {
  content: '\f067';
  font-family: 'FontAwesome';
  font-weight: 900;
}

.th-mobile-menu ul .menu-item-has-children>a:after {
  content: "\f067";
  font-family: 'FontAwesome';
  width: 22px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  background-color: var(--smoke-color);
  float: right;
  margin-top: 1px;
}

.th-mobile-menu ul .menu-item-has-children.th-active>a .th-mean-expand:before {
  content: '\f068';
}

.th-mobile-menu ul .menu-item-has-children.th-active>a:after {
  content: "\f068";
}

.th-mobile-menu>ul {
  padding: 0 40px;
}

.th-mobile-menu>ul>li:last-child {
  border-bottom: none;
}

.th-menu-toggle {
  width: 56px;
  height: 56px;
  padding: 0;
  font-size: 20px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 5px;
}

.th-menu-toggle:hover {
  background-color: var(--second-color);
}

.th-menu-toggle.style-text,
.th-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--second-color);
  font-size: 20px;
}

.th-menu-toggle.style-text i,
.th-menu-toggle.style-text-white i {
  margin-right: 10px;
}

.th-menu-toggle.style-text-white {
  color: var(--white-color);
}

@media (max-width: 400px) {
  .th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .th-mobile-menu>ul {
    padding: 0 20px;
  }
}
.th-social{
  text-align: center;
  padding: 2px 0;
}
.th-social a {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  background-color: transparent;
  border: 1px solid var(--th-border-color);
  font-size: 10px;
  text-align: center;
  margin-right: 0px;
  border-radius: 50%;
  color: #fff;
}

.th-social a.facebook {
  background-color: #3b5998;
  /* Facebook blue */
  color: white;
}

.th-social a.twitter {
  background-color: #1da1f2;
  /* Twitter blue */
  color: white;
}

.th-social a.youtube {
  background-color: #ff0000;
  /* YouTube red */
  color: white;
}

.th-social a.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  /* Instagram pink */
  color: white;
}

.th-social a:last-child {
  margin-right: 0;
}

.th-social a:hover {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  color: var(--white-color);
}

.th-social.color-theme a {
  color: var(--body-color);
  border-color: var(--theme-color);
}

.th-social.style2 a {
  background: var(--smoke-color);
  border: 0;
  color: var(--second-color);
  font-size: 18px;
}

.th-social.style2 a:hover {
  background: var(--theme-color);
  color: var(--white-color);
}

.th-social.style3 a {
  --icon-size: 40px;
}

.th-social.style4 a {
  --icon-size: 40px;
  line-height: 42px;
  border-radius: 50%;
  background: var(--th-border-color);
  color: var(--second-color);
  border: 0;
}

.th-social.style4 a:hover {
  background: var(--theme-color2);
  color: var(--white-color);
}

.th-social.style5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.th-social.style5 a {
  background: var(--white-color);
  color: var(--body-color);
  margin: 0;
  box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.3);
  border: 0;
  line-height: 48px;
}

.th-social.style5 a:hover {
  background: var(--theme-color);
  color: var(--white-color);
}

.th-social.style6 a {
  background: var(--smoke-color);
  border: 0;
  color: var(--theme-dark);
  font-size: 16px;
  --icon-size: 40px;
  line-height: 42px;
}

.th-social.style6 a:hover {
  background: var(--theme-color2);
  color: var(--white-color);
}

.courses-section .course-namecard{
  box-shadow:0px 3px 8px rgba(0, 0, 0, 0.161);
  border-radius: 10px;
  border-color: #d1d1d1;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  border-bottom: 5px solid var(--theme-color);
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  flex-direction: row;-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;
}
.courses-section .course-namecard i{    
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  background: var(--theme-color);
  border: 1px solid #282568;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  box-shadow: 4px 3px 0px 0px rgba(0, 0, 0, 0.25);
  -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;
  color: #fff;
}
.courses-section .course-namecard:hover{
  border: 1px solid #d1d1d1;
}
.courses-section .course-namecard:hover i{
  box-shadow: none;
}
.tour_box{
  position: relative;
  border-radius: 15px;
  padding: 12px;
  box-shadow: 5px 5px 6px rgba(0,0,0,0.4);
  border: 2px solid #000;
  margin-bottom: 18px;
  background-color: #fff;
}
.bg-light .tour_box{
  background-color: #fff9f9;
}
.tour_inner{
  display: flex;
  flex-wrap: wrap;
}
.tour_inner h3{
  font-size: 23px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.tour_inner p{
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.tour_img{
  width: 45%;
  border-radius: 15px;
  overflow: hidden;
}
.tour_img img{
  height: 180px;
  width: 100%;
  object-fit: cover;
}
.tour_cont{
  width: 55%;
  padding-left: 22px;
}
.tour_detailes{
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  vertical-align: middle;
  margin-bottom: 0;
  display: block;
}
.tour_detailes i{
  display: inline-block;
  margin-left: 10px;
  margin-right: 3px;
  font-size: 11px;
  color: var(--theme-color);
  font-weight: 600;
}
.tour_detailes span{
  font-size: 12px;
  color: var(--theme-color);
  font-weight: 600;

}
.tour_bottom_detailes{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tour_bottom{
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 10px;
}
.tour_bottom ul{
  list-style-type: none ;
  margin: 0;
  text-align: center;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.tour_bottom ul span{
  display: block;
}
.tour_bottom ul span i{
  font-size: 20px;
  color: var(--theme-color);
}
.tour_bottom ul span i{
  font-size: 20px;
  color: var(--theme-color);
}
.tour_bottom ul span.data{
  font-size: 15px;
  font-weight: 600;
}
.multiple_buttons{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 10px;
  gap: 5px;
}
.multiple_buttons .grid_btn{
  width: 100%;
}
.multiple_buttons .grid_btn a{
  width: 100%;
  padding: 10px 0;
  text-align: center;
  border-radius: 5px;
  font-size: 13px;
}
.multiple_buttons .whatsapp_btn a{
  background: #25D366;
  color: #fff;
}
.multiple_buttons .whatsapp_btn a:hover{
  background: var(--theme-color);
  color: #000;
}

.multiple_buttons .dropdowne_btn a{
  background: #0000ff;
  color: #fff;
}
.multiple_buttons .dropdowne_btn a:hover{
  background: var(--theme-color);
  color: #000;
}
.multiple_buttons .dropdown-menu {
  border-radius: 10px;
  border: 1px solid #D8D8D8;
  background: #fff;
  width: 300px;
  z-index: 9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
  left: auto;
  transition: all 0.4s ease-out;
  right: 0;
  font-size: 14px;
  top: calc(100% + -5px) !important;
}
@media (min-width: 992px) {
  .multiple_buttons .dropdown:hover .dropdown-menu {
    display: block;
  }
}
.list-styled li{
  display: list-item;
  list-style: disc;
}

.about-us {
  background: url(../images/about-bg-image.png) no-repeat;
  background-position: top center;
  background-size: 100% auto;
  padding: 100px 0;
}

.about-us-content {
  margin-right: 50px;
}

.about-body-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.about-body-item:last-child {
  margin-bottom: 0;
}

.about-body-item .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

.about-body-item .icon-box::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #ff0000f8;
  margin: 0 !important;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.about-body-item:hover .icon-box::before {
  transform: scale(1);
}

.about-body-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  filter: brightness(0) invert(0);
}

.about-body-item:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.about-body-list-content {
  width: calc(100% - 90px);
}

.about-body-list-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.about-body-list-content p {
  margin-bottom: 0;
}

.about-us-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.section-title {
  margin-bottom: 40px;
}

.hero .section-title h3 {
  color: #222;
  font-size: 14px;
}
.hero .section-title{
  margin-bottom: 20px;
}
.section-title h3 {
  position: relative;
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6em;
  text-transform: capitalize;
  color: var(--theme-color);
  padding-left: 0px;
  margin-bottom: 10px;
}

img{
  max-width: 100%;
  height: auto;
}
.section-title h1 {
  font-size: 70px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 0;
  cursor: none;
}

.section-title h2 {
  font-size: 44px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
  cursor: none;
}

.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
}
.about-us-image {
  position: relative;
  padding-left: 70px;
}

.about-us-img figure {
  border-radius: 400px 400px 0 0;
  display: block;
}

.about-us-img img {
  width: 100%;
  aspect-ratio: 1 / 1.237;
  object-fit: cover;
  border-radius: 400px 400px 0 0;
}
@media(max-width: 768px){

  .info-card-wrap{
    padding-top: 5px;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  .info-card-wrap .info-card {
    border-left: 0;
    padding-left: 0;
  }
  .about-us-image{
    padding: 0;
  }
}

.courses-section .course-namecard{
  box-shadow:0px 3px 8px rgba(0, 0, 0, 0.161);
  border-radius: 10px;
  border-color: #d1d1d1;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  border-bottom: 5px solid var(--theme-color);
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  flex-direction: row;-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;
}
.courses-section .course-namecard i{    
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  background: var(--theme-color);
  border: 1px solid #282568;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  box-shadow: 4px 3px 0px 0px rgba(0, 0, 0, 0.25);
  -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;
  color: #fff;
}
.courses-section .course-namecard:hover{
  border: 1px solid #d1d1d1;
}
.courses-section .course-namecard:hover i{
  box-shadow: none;
}


.testi_container {
  margin-inline: 15px;
  box-shadow: rgba(0, 0, 0, 0.3) 5px 5px 6px 0;
  padding: 2rem;
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid hsl(214.3 31.8% 91.4%);
}

.testi_main_title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  font-weight: 700;
  line-height: 1.7;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  color: #000;
  font-size: 22px;
}

.testi_text svg {
  margin-right: 3px;
}

.testi_text svg:last-child {
  margin-right: 10px;
}

.testi_text .text {
  margin-left: 10px;
}

.google_review_btn {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  gap: 10px;
  justify-content: center;
  line-height: inherit;
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  transition: all .15s ease-out;
  white-space: nowrap;
  z-index: 1;
  color: #000;
  border-radius: 13px;
  border: 1px solid #c3c3c3ff;
  background-color: #fff;
  padding: 10px 14px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: 0.3s;
  background: var(--theme-color2);
  color: #fff;
  border: 0;
  border-radius: 30px;
  font-weight: 400;
}

.google_review_btn:hover {
  border-color: var(--theme-color);
  color: var(--theme-color);
  svg {
    fill: var(--theme-color);
    path {
      fill: var(--theme-color);
    }
  }
}

.testimonial_box {
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #dddddd;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.google_icon {
  position: absolute;
  right: 10px;
  top: 5px;
  z-index: -1;
  opacity: 0.3;
}

.google_icon svg {
  width: 126px;
  height: 122px;
}

.box__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.testi_author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi_author img {
  max-width: 40px;
  height: 40px;
  object-fit: cover;
}

.name_part .name {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 17px;
  font-weight: 800;
  line-height: 16px;
  text-align: left;
  width: 100%;
  word-break: break-all;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.name_part .dest {
  font-size: 14px;
  line-height: 14px;
  opacity: .7;
  color: #000;
  display: none;
}

.testi_stars {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  margin-bottom: 10px;
}

.review_content {
  font-weight: 500;
  color: #000;
  letter-spacing: -0.01em;
  line-height: 20px;
  font-size: 15px;
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.review_content.show {
  max-height: 1000px;
}

.read-more-btn {
  display: block;
  margin-top: 12px;
  color: #000;
  cursor: pointer;
  font-size: 11px;
  background: none;
  border: none;
  padding: 0;
  font-weight: 600;
}

.multi-photo-wrapper {
  display: flex;
  flex-wrap: wrap;
  img {
    width: 100%;
    padding: 5px;
    border-radius: 8px;
  }
}

.multi-photo-wrapper.more_one {
  img {
    width: 50%;
    padding: 5px;
  }
}

@media(max-width:768px) {
  .content-area .content-box {
    border-radius: 10px;
    padding: 10px;
  }
  .testi_container {
    padding: 1rem;
  }
  .testi_title {
    margin-bottom: 10px;
    text-align: center;
  }
  .why_card {
    margin-bottom: 15px;
  }
}
.footer_textwidget  img{
  width: 100px;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 2px;
  margin-bottom: 20px;
}

@media(max-width: 768px){
  .section-title{
    margin-bottom: 30px;
  }
  .copyright_text p {
    text-align: center;
    margin-bottom: 20px;
  }
  .section-title h2{
    font-size: 25px;
  }
  .section-title h3{
    font-size: 18px;
  }
  .about-us-content{
    margin: 0;
    margin-bottom: 15px;
  }
  .choose-item{
    margin-bottom: 10px;
  }
  .header-default .header-button{
    flex-direction: row-reverse;
    gap: 10px;
  }
  .header-default .header-button .btn-yellow{
    padding: 7px 10px;
    font-size: 13px;
    letter-spacing: -0.02em;
  }
}

.your_locality{
  background: #e6f0f9;
}
.your_locality_div{
  background: #fff;
  border: 1px solid #f9f9f9;
  box-shadow: 6px 14px 27px #d3d3d9;
  border-radius: 5px;
}
.your_locality .your_locality_div ul li{
  border: 1px solid #bababa;
  border-left: 2px solid var(--theme-color);
  margin-top: 15px;
  padding: 4px 4px 4px 10px;
  border-radius: 3px 0 0 3px;
  color: #000;
}
.your_locality .your_locality_div ul li:hover{
  transform: translateY(-3px);
  background: #e8e8e8;
  transition: 0.3s;
}
.your_locality .your_locality_div ul li span{
  color: #000;
  font-weight: 600;
}
.all_padding_same{
  border-bottom: 1px solid #bababa;
  padding: 9px 21px;
}
.your_caption{
  padding: 30px;
  padding-top: 2px;
}
.row_import{
  width: 25%;
}
@media (max-width:748px){
  .row_import{
    width: 50%;
    padding: 0 10px 0 0 ;
  }
  .your_locality .your_locality_div ul li{
    padding: 2px 2px 2px 3px;
    margin-top: 10px;
  }
  .your_locality .your_locality_div ul{

  }
  .all_padding_same{
    text-align: center;
  }
  .your_caption{
    padding: 20px;
  }
}

/* Thm Btn Css */
.btn-theme {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  padding: 16px 20px 16px;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.5s linear;
  text-transform: capitalize;
  z-index: 1;
}
.btn-theme.whatsapp{

  background-color: #777c39; 
}

.btn-theme>span {
  position: relative;
  font-size: 14px;
  font-weight: 500;
}


.btn-theme::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: #191a1c;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.btn-theme:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}




.btn-theme::after {
  position: absolute;
  background-color: #191a1c;
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.btn-theme:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.btn-theme:hover {
  color: #fff;
}


.btn-theme-two {
  border-radius: 30px;
}


.new_hero_section{
  position: relative;
  background-image: url(../images/hero-image.png);
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.new_hero_section .container{
  padding: 150px 50px 40px;
  color: #fff;
}
.upper_content{
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  vertical-align: middle;
  display: flex
  ;
  align-items: center;
  gap: 10px;
}
.upper_content i{
  font-size: 10px;
}
.new_hero_section .container h2{

  font-size: 45px;
  font-weight: 800;
  color: #fff;
  line-height: 50px;
  margin-bottom: 20px;
}

.new_hero_section .container p{
  color: #fff;
  font-size: 20px;
}


.hero_btns{
  margin-top: 20px;
}
.hero_box{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.hero_box .image{
  position: relative;
}
.hero_box .image img{
  width: 100%;
  height: 398px;
  object-fit: cover;
}
@media(min-width: 768px){
.row .mt-lg-5 .hero_box .image img{
 height: 350px;
}
}
.hover_img{
  position: relative;
  width: 100%;
}
.hover_img:after{
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.hover_img:hover:after{
  height: 250%;
  background-color: transparent;
  transition: 600ms linear !important;
}
.content_bg{
  position: absolute;
  bottom: 20px;
  width: 80%;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);

    backdrop-filter: blur(30px);
    border-radius: 20px;
    overflow: hidden;
}
.content_bg .content{
  background-color: #FFFFFF1A;
  padding: 20px;
    display: flex;
    align-items: center;
}
.content_bg .content .icon{
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin-right: 20px;
    background-color: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content_bg .content .icon img{
  width: 44px;
}
.content_bg .content .title{
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.content_bg .content p{
  margin-bottom: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

/*******About**************/
.main_container{
  max-width: 1300px;
}
.main_title{
  position: relative;
  margin-bottom: 35px;
}
.main_title .sub_heading{
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 4px;
  font-size: 22px;
  margin-bottom: 10px;
}
.main_title.text-center .sub_heading{
  justify-content: center;
}
.main_title .sub_heading i{
  color: var(--theme-color);
  font-size: 10px;
}
.main_title .main_sec_title{
  font-size: 46px;
  line-height: 1.2;
  font-weight: 700;
  color: #203a4f;
  letter-spacing: -0.03em;
}
.about_img{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}
.about_img img{
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.experience_box{
  position: relative;
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.experience_box .number{
    color: var(--theme-color);
    font-size: 100px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.09em;
    width: 50%;
}
.experience_box .number i{
  font-size: 50px;
}
.experience_box .content{
  width: 50%;
}
.about_content .pera{
  margin-bottom: 16px;
  font-size: 19px;
}
.icon_list{
  margin-bottom: 20px;
    font-size: 20px;
}

.icon_list li{
    color: #313131;
    font-weight: 500;
    margin-bottom: 12px;
}
.icon_list li i{
  color: var(--theme-color);
  margin-right: 4px;
}






.services-two__single {
   position: relative;
   display: block;
   background-color: #fff;
   box-shadow: 0px 10px 39.2px 0.8px rgba(0, 0, 0, 0.1);
   padding: 20px;
   border-radius: 20px;
}

.services-two__img-box {
   position: relative;
   display: block;
}

.services-two__img {
   position: relative;
   display: block;
   border-radius: 20px;
   overflow: hidden;
   z-index: 1;
}

.services-two__img:before {
   content: "";
   position: absolute;
   top: -100%;
   bottom: 100%;
   left: 0;
   right: 0;
   background-color: transparent;
   border-top-left-radius: 5px;
   border-top-right-radius: 5px;
   transition: all 600ms ease 100ms;
   z-index: 1;
}

.services-two__single:hover .services-two__img:before {
   top: 0;
   bottom: 0;
}

.services-two__img img {
   width: 100%;
   height: 250px;
   object-fit: cover;
   border-radius: 20px;
   -webkit-transition: all 500ms ease;
   transition: all 500ms ease;
}

.services-two__single:hover .services-two__img img {
   transform: scale(1.05);
}

.services-two__content {
   position: relative;
   display: block;
   margin-top: 36px;
}

.services-two__title {
   font-size: 24px;
   font-weight: 700;
   line-height: 34px;
}

.services-two__title a {
   color: #313131;
}

.services-two__title a:hover {
   color: var(--theme-color);
}


.services-two__hover-text {
   color: #222;
}

.services-two__btn-box {
   position: relative;
   display: block;
   margin-top: 15px;
}

.services-two__btn-box .thm-btn {
   padding: 14px 31px 15px;
   background-color: #fff;
   color: var(--theme-color);
   text-transform: capitalize;
}

.services-two__icon {
   position: absolute;
   bottom: -25px;
   left: 50%;
   width: 60px;
   height: 60px;
   background-color: var(--theme-color);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   transform: translateX(-50%);
   -webkit-transition: all 500ms ease;
   transition: all 500ms ease;
   z-index: 2;
}
.services-two__icon img{
  width: 44px;
}

.services-two__single:hover .services-two__icon {
   background-color: #313131;
   transition-delay: 600ms;
}

.services-two__icon span {
   position: relative;
   display: inline-block;
   font-size: 40px;
   color: #fff;
}


.services-two__carousel.owl-carousel .owl-stage-outer {
   overflow: visible;
}

.services-two__carousel.owl-carousel .owl-item {
   opacity: 0;
   visibility: hidden;
   transition: opacity 500ms ease, visibility 500ms ease;
}

.services-two__carousel.owl-carousel .owl-item.active {
   opacity: 1;
   visibility: visible;
}


.counter-one {
    position: relative;
    display: block;
    background-color: #313131;
    padding: 40px 0 40px;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.counter-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    mix-blend-mode: hard-light;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.counter-one ul li:nth-child(4) .counter-one__single::before {
    display: none;
}

.counter-one__single {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 0;
}
@media(max-width: 768px){
  .counter-one__single{
    margin-bottom: 18px;
  }
}
.counter-one__single::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -26px;
    width: 1px;
    height: 146px;
    background-color: rgba(255,255,255, .20);
    transform: translateY(-50%);
}

.counter-one__icon {
    position: relative;
    display: inline-block;
}

.counter-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 60px;
    color: var(--theme-color);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.counter-one__single:hover .counter-one__icon span {
    transform: scale(0.9);
}

.counter-one__count-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0 2px;
}

.counter-one__count-box h3 {
    font-size: 40px;
    color: #fff;
    line-height: 40px !important;
    font-weight: 600;
}

.counter-one__count-box span {
    font-size: 40px;
    color: #fff;
    line-height: 40px;
    font-weight: 600;
    text-transform: uppercase;
}

.counter-one__count-text {
    color: rgba(255,255,255, .80);
    margin-bottom: 0;
}
/*==============================================
    FAQ One
===============================================*/
.faq-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.faq-one__left {
    position: relative;
    display: block;
    margin-right: 20px;
}

.faq-one__img-box {
    position: relative;
    display: block;
}

.faq-one__img {
    position: relative;
    display: block;
}

.faq-one__img img {
    width: 100%;
    border-radius: 20px;
}

.faq-one__ratting-box {
    position: absolute;
    left: 80px;
    right: 80px;
    bottom: 0;
    background-color: #313131;
    text-align: center;
    border: 5px solid rgba(42, 185, 126, .70);
    border-radius: 20px;
    padding: 30px 30px 30px;
}

.faq-one__ratting {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.faq-one__ratting span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--theme-color);
}

.faq-one__ratting-text {
    margin-top: 17px;
    font-weight: 500;
    color: rgba(255,255,255, .80);
}

.faq-one__ratting-text span {
    color: var(--theme-color);
    font-weight: 700;
}

.faq-one__shape-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 300px;
    height: 300px;
    background-color: rgba(42, 185, 126, .20);
    border-radius: 25px;
    animation: leftRight 4s ease-in-out infinite;
    z-index: -1;
}

.faq-one__shape-2 {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 10px;
    height: 200px;
    background-color: #313131;
    border-radius: 10px;
}

.faq-one__right {
    position: relative;
    display: block;
    margin-left: 70px;
}

.faq-one__right .section-title {
    margin-bottom: 40px;
}

.faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    background-color: #f7f7f9;
    border-radius: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 23px 30px 24px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    padding-right: 25px;
}

.faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    color: #313131;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: var(--theme-color);
}

.faq-one-accrodion .accrodion+.accrodion {
    margin-top: 20px;
}

.faq-one-accrodion .accrodion-title h4::before {
    content: "\f067";
    font-family: 'FontAwesome' !important;
    font-size: 15px;
    color: #313131;
    position: absolute;
    top: 50%;
    right: 0;
    line-height: 15px;
    border-radius: 50%;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    width: 22px;
    height: 22px;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f068";
    color: var(--theme-color);
}

.faq-one-accrodion .accrodion-content {
    position: relative;
    padding-bottom: 23px;
    padding-left: 30px;
    padding-right: 35px;
}

.faq-one-accrodion .accrodion-content p {
    margin: 0;
}

.faq-one__bottom {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 30px;
}

.faq-one__bottom-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #313131;
    margin-bottom: 25px;
}

.faq-one__bottom-btn {
    position: relative;
    display: block;
}

/*--------------------------------------------------------------
# Faq Page
--------------------------------------------------------------*/
.faq-page {
    padding: 120px 0 100px;
}

.faq-page .faq-page__single {
    margin-bottom: 20px;
}




/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    z-index: 1;
}

.testimonial-two__left {
    position: relative;
    display: block;
}

.testimonial-two__right {
    position: relative;
    display: block;
    margin-right: -375px;
}

.testimonial-two__carousel {
    position: relative;
    display: block;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-two__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-two__single {
    position: relative;
    display: block;
    background-color: #ffff;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 49px 49px 41px;
    border-radius: 20px;
    border-top: 5px solid var(--theme-color);
    transition: all 500ms ease;
    z-index: 1;
}

.testimonial-two__img {
    position: absolute;
    top: -45px;
    right: 50px;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    z-index: 1;
}

.testimonial-two__img:before {
    background-color: var(--theme-color);
    border-radius: 101px 101px 0 0;
    content: "";
    height: 50%;
    left: -2px;
    right: -2px;
    top: -5px;
    position: absolute;
    z-index: -1;
}

.testimonial-two__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-two__client-info {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 22px;
}

.testimonial-two__client-content {
    position: relative;
    display: block;
}

.testimonial-two__client-name {
    font-size: 22px;
    font-weight: 700;
    line-height: 22px;
}

.testimonial-two__client-name a {
    color: #313131;
}

.testimonial-two__client-name a:hover {
    color: var(--theme-color);
}

.testimonial-two__rating {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
}

.testimonial-two__rating span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--theme-color);
}

.testimonial-two__quote {
    position: absolute;
    bottom: 50px;
    left: 170px;
    z-index: 1;
}

.testimonial-two__quote span {
    position: relative;
    display: inline-block;
    font-size: 120px;
    line-height: 120px;
    color: #757F95;
    opacity: .05;
    font-weight: 900;
}

.testimonial-two__carousel.owl-theme .owl-nav {
    position: absolute;
    bottom: 62px;
    left: -535px;
    display: flex
;
    align-items: center;
    margin: 0 !important;
    z-index: 100;
}

.testimonial-two__carousel .owl-nav .owl-next,
.testimonial-two__carousel .owl-nav .owl-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px !important;
    color: #ffff !important;
    background-color: rgba(42, 185, 126, 1) !important;
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 1;
    transition: all 500ms ease;
    z-index: 100;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
    transform: rotate(180deg);
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev:hover {
    background-color: #313131 !important;
    color: #ffff !important;
}

.brand-two {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.brand-two__inner {
    position: relative;
    display: block;
    background-color: rgba(42, 185, 126, .30);
    border-radius: 20px;
    padding: 53px 65px 53px;
}

.brand-two__carousel {
    position: relative;
    display: block;
}

.brand-two__single {
    position: relative;
    display: flex;
    text-align: center;
    align-items: center;
    height: 80px;
    justify-content: center;
}

.brand-two__img {
    position: relative;
    z-index: 10;
}

.brand-two__img>img {
    position: relative;
    -webkit-transition: 500ms;
    transition: 500ms;
    width: auto !important;
    -webkit-transition: 500ms;
    transition: 500ms;
    opacity: 1;
}

.brand-two__single:hover .brand-two__img>img {
    opacity: 0.70;
}


.bg-light{
  border-radius: 20px;
  margin-block: 10px;
}

/*--------------------------------------------------------------
# Process Two
--------------------------------------------------------------*/
.process-two {
    position: relative;
    display: block;
    padding: 90px 0 90px;
    counter-reset: count;
    z-index: 1;
}

.process-two__shape-1 {
    position: absolute;
    top: -100px;
    left: -30px;
    opacity: 0.05;
    z-index: -1;
}

.process-two__shape-1 img {
    width: auto;
}

.process-two__inner {
    position: relative;
    display: block;
}


.process-two__single {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 22px;
    z-index: 1;
}


.process-two__count {
    position: relative;
    display: block;
    width: 35px;
    height: 35px;
    margin: 0 auto;
    z-index: 2;
}

.process-two__count:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    color: #fff;
    background-color: var(--theme-color);
    border-radius: 20px;
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border: 5px solid #fff;
}

.process-two__single:hover .process-two__count:before {
    background-color: #313131;
}

.process-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    background-color: #fff;
    border: 10px solid rgba(42, 185, 126, .20);
    border-radius: 20px;
    margin: -5px auto 0;
    overflow: hidden;
    z-index: 1;
}

.process-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--theme-color);
    -webkit-transition: all 0.90s ease;
    -o-transition: all 0.90s ease;
    transition: all 0.90s ease;
}

.process-two__single:hover .process-two__icon span {
    transform: scale(.9) translateX(2px);
}

.process-two__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    text-transform: capitalize;
    margin-top: 13px;
    margin-bottom: 14px;
}


/*==============================================
   Contact One
===============================================*/
.contact-one {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    z-index: 1;
}

.contact-one__bg-color {
    position: absolute;
    top: 120px;
    left: 0;
    bottom: 0;
    width: calc((100% - -145px) / 2);
    background-color: #f7f7f9;
    border-radius: 20px;
    z-index: -1;
}

.contact-one__left {
    position: relative;
    display: block;
    margin-right: 50px;
}

.contact-one__map-box {
    position: relative;
    display: block;
}

.contact-one__map-img {
    position: relative;
    display: block;
}

.contact-one__map-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.contact-one__point-1 {
    position: absolute;
    top: 37%;
    left: 140px;
}

.contact-one__markar {
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background-color: rgba(0, 40, 58, .40);
    height: 40px;
    width: 40px;
    cursor: pointer;
}

.contact-one__markar:before {
    position: absolute;
    top: 3px;
    bottom: 3px;
    right: 3px;
    left: 3px;
    background-color: var(--theme-color);
    content: "";
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-one__point-1:hover .contact-one__markar:before {
    background-color: #313131;
}

.contact-one__markar:after {
    content: "\e901";
    font-family: 'icomoon' !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-one__popup-box {
    position: absolute;
    top: 15px;
    right: -100px;
    z-index: 2;
    opacity: 0;
    transform: perspective(400px) rotateX(90deg) translateY(10px);
    transform-origin: bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.contact-one__point-1:hover .contact-one__popup-box {
    opacity: 1.0;
    transform: perspective(400px) rotateX(0deg) translateY(0);
    transition-delay: .3s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.contact-one__popup {
    position: relative;
    display: block;
    max-width: 250px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 12px 12px 12px;
    border-radius: 12px;
}

.contact-one__popup-inner {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    width: 250px;
}

.contact-one__popup-img {
    position: relative;
    display: block;
    width: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-one__popup-img img {
    width: 100%;
    border-radius: 10px;
}

.contact-one__popup-content {
    position: relative;
    display: block;
}

.contact-one__popup-content p {
    font-size: 14px;
    line-height: 20px;
}

.contact-one__popup-content span {
    font-size: 14px;
    font-weight: 600;
    color: #313131;
    position: relative;
    display: block;
    margin-top: 7px;
}

.contact-one__point-2 {
    left: 33%;
    top: inherit;
    bottom: 30%;
}

.contact-one__point-3 {
    left: 57%;
    top: 42%;
}

.contact-one__point-4 {
    left: auto;
    top: 36%;
    right: 11%;
}

.contact-one__point-5 {
    left: auto;
    top: auto;
    bottom: 26%;
    right: 17%;
}

.contact-one__markar .ripple,
.contact-one__markar .ripple:before,
.contact-one__markar .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(2, 185, 180, .5);
    -o-box-shadow: 0 0 0 0 rgba(2, 185, 180, .5);
    -webkit-box-shadow: 0 0 0 0 rgba(2, 185, 180, .5);
    box-shadow: 0 0 0 0 rgba(2, 185, 180, .5);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.contact-one__markar .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.contact-one__markar .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.contact-one__call-box {
    position: relative;
    display: block;
    margin-top: 20px;
}

.contact-one__call-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 50px;
}

.contact-one__call-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-one__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--theme-color);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-one__call-icon:hover {
    background-color: #313131;
}

.contact-one__call-icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.contact-one__content {
    position: relative;
    display: block;
    flex: 1;
}
.contact-one__content p{
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}
.contact-one__content h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    font-family: "Roboto", sans-serif;
}

.contact-one__content h4 a {
    color: #313131;
}

.contact-one__content h4 a:hover {
    color: var(--theme-color);
}

.contact-one__right {
    position: relative;
    display: block;
}

.contact-one__right .section-title {
    margin-bottom: 35px;
}

.contact-one__form {
    position: relative;
    display: block;
    background-color: var(--theme-color);
    padding: 10px 20px;
    border-radius: 20px;
    border-bottom: 5px solid var(--second-color);
}
.contact-one__form .form_title{
  font-weight: 800;
  margin-bottom: 14px;
  text-align: center;
  font-size: 31px;
}
.contact-one__form .row {
    --bs-gutter-x: 20px;
}

.contact-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="tel"],
.contact-one__input-box input[type="email"] {
    height: 46px;
    width: 100%;
    background-color: #fff;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: #222;
    display: block;
    border-radius: 8px;
}
.contact-one__input-box input[type="text"]::placeholder,
.contact-one__input-box input[type="tel"]::placeholder,
.contact-one__input-box textarea::placeholder,
.contact-one__input-box input[type="email"]::placeholder {
    color: #222;
}

.contact-one__input-box .select-box {
    width: 100%;
}

.contact-one__input-box .nice-select {
    height: 55px;
    width: 100%;
    background-color: rgba(42, 185, 126, 0.07);
    border: none;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 14px;
    color: rgba(255,255,255, .80);
    font-weight: 400;
    border-radius: 20px;
    line-height: 55px;
    display: block;
    float: none;
}

.contact-one__input-box .nice-select:after {
    position: absolute;
    top: 22px;
    right: 30px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid rgba(255,255,255, .80);
    border-right: 2px solid rgba(255,255,255, .80);
    margin-top: 0px;
    z-index: 10;
}

.contact-one__input-box .nice-select .option {
    color: #fff;
}

.contact-one__input-box .nice-select .option.selected {
    font-weight: 500;
}

.contact-one__input-box .nice-select .list {
    background-color: var(--theme-color);
    border-radius: 20px;
}

.contact-one__input-box .nice-select .option:hover,
.contact-one__input-box .nice-select .option.focus,
.contact-one__input-box .nice-select .option.selected.focus {
    color: #fff;
}

.contact-one__input-box textarea {
    height: 100px;
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 15px 20px 30px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    position: relative;
    display: block;
    border-radius: 10px;
}

.contact-one__input-box.text-message-box {
    height: 100px;
}

.contact-one__btn-box {
    position: relative;
    display: block;
    text-align: left;
}
.contact-one__btn-box .btn-theme{
  background-color: var(--second-color);
}
.contact-one__btn-box .thm-btn {
    border: none;
    width: 100%;
    justify-content: center;
}

.contact-one__btn-box .thm-btn:hover {
    color: #313131;
}

.contact-one__btn-box .thm-btn::before {
    background-color: #fff;
}

.contact-one__btn-box .thm-btn::after {
    background-color: #fff;
}

/*--------------------------------------------------------------
# Contact Two
--------------------------------------------------------------*/
.contact-two {
    padding: 90px 0 0px;
}

.contact-two .contact-one__bg-color {
    top: 90px;
}

/*--------------------------------------------------------------
# Contact Info
--------------------------------------------------------------*/
.contact-info {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.contact-info__single {
    position: relative;
    display: block;
    border-radius: 20px;
    background-color: rgba(42, 185, 126, .10);
    text-align: center;
    padding: 15px;
    margin-bottom: 0px;
}

.contact-info__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 auto;
    z-index: 1;
}

.contact-info__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: #313131;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.contact-info__single:hover .contact-info__icon:before {
    transform: scaleX(1);
}

.contact-info__icon span {
    position: relative;
    display: inline-block;
    font-size: 32px;
    color: #313131;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.contact-info__single:hover .contact-info__icon span {
    transform: scale(0.9);
    color: #fff;
}


.contact-info__single p {
    margin-top: 20px;
    margin-bottom: 5px;
}

.contact-info__single h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    color: #313131;
}

.contact-info__single h3 a {
    color: #313131;
}

.contact-info__single h3 a:hover {
    color: var(--theme-color)
}
.area_heading{
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 10px;
}
.area_p{
    position: relative;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: -0.02em
}
.area_p span{
    padding-inline: 4px;
    font-weight: 900;
    color: #000;
}
@media(min-width: 768px){
  .right_border{
    border-left: 3px solid var(--theme-color);
    padding-left: 30px;
  }
}
html{
  position: relative;
}
.phone_call-button{
    position: fixed;
    bottom: 0;
    display: none;
    border-top: 2px solid rgba(255, 255, 255, 0.7);
    padding: 10px 0;
    font-size: 20px;
    background-color: var(--theme-color);
    z-index: 100;
    width: 100%;
    left: 0;
    color: #fff;
    text-align: center;
}
@media(max-width: 768px){
.phone_call-button{
  display: block;
}

}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
    position: relative;
    display: block;
    padding: 0 0 120px;
    z-index: 1;
}

.contact-page__inner {
    position: relative;
    display: block;
    background-color: #313131;
    border-radius: 20px;
    height: 100%;
    padding: 60px 0 60px;
}

.contact-page__left {
    position: relative;
    display: block;
    height: 100%;
    margin-left: 60px;
    margin-right: 10px;
}

.google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

.contact-page__right {
    position: relative;
    display: block;
    margin-left: 20px;
    margin-right: 40px;
}

.contact-page__form-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: -1.44px;
    color: #fff;
    margin-bottom: 26px;
}

.contact-page__form {
    position: relative;
    display: block;
}

.contact-page__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"],
.contact-page__input-box input[type="number"] {
    height: 57px;
    width: 100%;
    background-color: var(--theme-color);
    border: 1px solid rgba(255,255,255, .10);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    display: block;
    border-radius: 20px;
}
.contact-page__input-box input[type="text"]::placeholder,
.contact-page__input-box input[type="email"]::placeholder,
.contact-page__input-box textarea::placeholder,
.contact-page__input-box input[type="number"]::placeholder{
  color: #fff;
}

.contact-page__input-box .select-box {
    width: 100%;
}

.contact-page__input-box .nice-select {
    height: 57px;
    width: 100%;
    background-color: var(--theme-color);
    border: 1px solid rgba(255,255,255, .10);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    color: #fff;
    display: block;
    font-weight: 400;
    border-radius: 20px;
    line-height: 57px;
    float: none;
}

.contact-page__input-box textarea {
    font-size: 16px;
    color: #fff;
    height: 175px;
    width: 100%;
    background-color: var(--theme-color);
    border: 1px solid rgba(255,255,255, .10);
    padding: 15px 20px 30px;
    border-radius: 20px;
    outline: none;
    font-weight: 400;
    position: relative;
    display: block;
}
.contact-page__btn-box {
    position: relative;
    display: block;
}

.contact-page__btn-box .thm-btn {
    border: none;
}

.contact-page__btn-box .thm-btn:hover {
    color: #313131;
}

.contact-page__btn-box .thm-btn::before,
.contact-page__btn-box .thm-btn::after {
    background-color: #fff;
}
.footer_textwidget img{
  width: 160px;
}

@media(max-width: 768px){
  .contact-info__single{
    margin-bottom: 20px;
  }
  .contact-page__left{
    margin: 0;
    padding-bottom: 20px;
    padding-inline: 10px;
  }
  .contact-page__inner{
    padding: 20px 0;
  }
  .contact-page__form-title{
    font-size: 30px;
  }
  .contact-page__right{
    margin: 0;
    padding-inline: 15px;
  }
  .contact-one__form{
    padding: 10px;
  }
  .new_hero_section .container{
    padding: 26px 10px 0;
  }
}
