/* 
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto/Roboto-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto/Roboto-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
} */
:root {
  --crank-font: "Manrope", sans-serif;
  --crank-font-two: "Manrope", sans-serif;
  --crank-gray: #17080A;
  --crank-gray-rgb: 23, 8, 10;
  --crank-base: #9c3126;
  --crank-base-rgb: 232, 9, 46;
  --crank-black: #171717;
  --crank-black-rgb: 23, 23, 23;
  --crank-white: #ffffff;
  --crank-white-rgb: 255, 255, 255;
  --crank-bdr-color: #E1E1E1;
  --crank-bdr-color-rgb: 225, 225, 225;
}

.row {
  --bs-gutter-x: 15px;
}
body, html {
  overflow-x: hidden !important;
}
body {
  position: relative;
  display: block;
  font-family: var(--crank-font-two);
  color: var(--crank-gray);
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  z-index: 1;
}

.body-bg-color {
  background-color: #fff;
}

a {
  color: var(--crank-base);
  font-family: var(--crank-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

h1,
h2,
h3,
h5 {
  font-family: var(--crank-font);
  color: var(--crank-black);
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

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

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--crank-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--crank-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

/* Section Title Css */


/* Section Title Two Css */
.section-title-two {
  position: relative;
  display: block;
  margin-bottom: 45px;
  z-index: 1;
}

.section-title-two__title {
  color: var(--crank-black);
  font-size: 36px;
  line-height: 55px;
  font-weight: 700;
  /* margin: 6px 0 0; */
}


/* Thm Btn Css */

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: var(--crank-white);
  background-color: var(--crank-base);
  padding: 17px 20px 17px;
  border-radius: 12px;
  transition: 0.5s ease-in-out;
  overflow: hidden;
  z-index: 2;
  text-align: center;
}

@media (max-width: 575px) {
  .thm-btn {
    font-size: 15px;
  }
  .site-footer-three__img>img {
    width: 300px !important;
  }
  .tp-contact-main-info {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .custom-cursor__cursor,
  .custom-cursor__cursor-two {
    display: none !important;
  }
}

.thm-btn svg {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.thm-btn::after {
  content: "";
  background-color: var(--crank-black);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.thm-btn:hover:after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.thm-btn:hover {
  color: var(--crank-white);
}


.thm-btn.white-btn {
  background-color: #fff !important;
  color: #171717;
}

.thm-btn.white-btn:hover {
  color: #fff;
}

.thm-btn.white-btn:hover path {
  fill: #fff;
}

/* Proloader Css */

/* scroll to top */


/** xs sidebar **/





/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/

.main-menu {
  position: relative;
  display: block;
  z-index: 1;
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/

/* no menu after 2rd level dropdown */

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.main-menu-two__call a {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__call:hover h5 {
  color: var(--crank-base);
}

.main-menu-two__call h5 span,
.main-menu-two__call:hover h5 span {
  color: var(--crank-gray);
}

.main-menu-two__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crank-white);
  font-size: 20px;
  height: 40px;
  width: 40px;
  background-color: var(--crank-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__call-content {
  margin-left: 10px;
}

.main-menu-two__call-number {
  font-size: 16px;
  font-weight: 600;
  gap: 5px;
  display: inline-grid;
}

.main-menu-two__call-number span {
  font-size: 14px;
}


/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  position: absolute;
  display: block;
  width: 100%;
  /* background: transparent; */
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-three__wrapper {
  position: relative;
  display: block;
  max-width: 1680px;
  width: 100%;
  margin: 0 auto 0;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
  /* background-color: var(--crank-white); */
  z-index: 1;
}

.main-menu-three__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0px 0px 0px;
  z-index: 1;
  background-color: #fff;
  padding: 0 25px;
  margin-top: 15px;
  border-radius: 12px;
}

.main-menu-three__left {
  position: relative;
  display: block;
}

.main-header-three__logo {
  position: relative;
  display: block;
  /* padding-top: 10px; */
}
.main-header-three__logo img {
  width: 88px;
}

/*--------------------------------------------------------------
# Navigations Four
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/






/*--------------------------------------------------------------
# Carousle Dot Style
--------------------------------------------------------------*/

.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

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

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--crank-bdr-color);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}
.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 10px;
  height: 10px;
  background-color: var(--crank-black);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two {
  position: relative;
  display: block;
  z-index: 9;
}

.brand-two__img {
  /* min-height: 108px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 10px;
} 

.brand-two__img img {
  opacity: 1;
  display: block;
  width: auto;
  max-height: 80px;
  max-width: 100%;
  margin: 0 auto !important;
}

/* .slider_logo .single_slider img {
  opacity: 1;
  display: block;
  width: auto;
  max-height: 80px;
  max-width: 100%;
  margin: 0 auto !important;
} */

.brand-two__carousel {
  position: relative;
  display: block;
  border-radius: 12px;
  margin-top: 10px;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

.brand-two__single {
  position: relative;
  display: block;
  text-align: center;
}

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

.brand-two__img>img {
  width: auto !important;
  margin: 0 auto 0;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.brand-two__single:hover .brand-two__img>img {
  transform: scale(.9);
}

/* .brand-three {
  padding: 90px 0px 0px;
} */

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/

.about-one__points {
  position: relative;
  display: block;
}

.about-one__points li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  gap: 15px;
  color: #fff;
}

.about-one__points li+li {
  margin-top: 16px;
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/

.about-two__tab-content-points {
  position: relative;
  display: block;
}

.about-two__tab-content-points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-two__tab-content-points li+li {
  margin-top: 12px;
}

.about-two__tab-content-points li .icon {
  position: relative;
  display: inline-block;
}

.about-two__tab-content-points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--crank-base);
}

.about-two__tab-content-points li p {
  position: relative;
  display: block;
  flex: 1;
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
  position: relative;
  display: block;
  padding: 80px 0 80px;
  z-index: 1;
}

.about-three__right {
  position: relative;
  display: block;
}

.about-three__right .section-title-two {
  margin-bottom: 20px;
}

/* .about-three__text {
  margin-bottom: 43px;
} */

.about-three__btn-box {
  position: relative;
  display: block;
  margin-top: 35px;
}

.left_icon img {
  -webkit-animation: mover 1s infinite  alternate;
  animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}



/*--------------------------------------------------------------
# About Four
--------------------------------------------------------------*/

.about-four__left {
  position: relative;
  display: block;
  margin-right: 50px;
}

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

.about-four__img img {
  width: 100%;
  border-radius: 12px;
}

/*--------------------------------------------------------------
# About Five
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/

/* our-services */
.our-services-section {
  margin: 0 10px;
  border-radius: 12px;
  background-image:url(../images/resources/our-services-background-img.jpg);
  padding: 60px 0 60px;
}
.our-services-section .our-services {
  text-align: center;
  height: 90px;
  width: 90px;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* .our-services-section .our-services img {
  filter: brightness(1) invert(1);
} */
.our-services-section .our-services-content{
  text-align: center;
  margin-top: -20px;
}
.our-services-section .our-services-content p{
  color: var(--e-global-color-text);
  padding: 0 14px;
}
.our-services-section .our-services-content h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  margin-top: 40px;
  margin-bottom: 10px;
}
.our-services-section h2{
  /* padding: 0 207px; */
  text-transform: uppercase;
  margin-bottom: 32px;
}
.our-services-section .our-services-content .paragraph2 {
  color: var(--e-global-color-text);
  padding: 0 16px;
}

.our-services-section .our-services-content .our-services-center-box {
  padding: 0 55px;  
  margin-bottom: 20px;
}
.our-services-section .our-services-outer1{
  padding-top: 116px;
  padding-bottom: 32px;
}
.our-services-section .our-services-outer .our-services-car-img{
  position: absolute;
  top: -100px;
  text-align: center;
  /* left: -45px; */
  right: 0;
}
.our-services-section .our-services-left-img{
  padding-left: 80px;
}
.our-services-section .our-services-right-img{
  padding-right: 87px;
}
.our-services-section .our-services-outer .steering-margin-bottom{
  margin-bottom:60px
}


/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Services Three
--------------------------------------------------------------*/
.services-three {
  position: relative;
  display: block;
  padding: 80px 0 60px 0;
  z-index: 1;
  /* background-color: #fff; */
}

.services-three__single {
  position: relative;
  display: block;
  border: 1px solid var(--crank-bdr-color);
  background-color: #f5f7f7;
  padding: 35px 25px 35px;
  border-radius: 12px;
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
  /* height: 246px; */
}

.services-three__single:hover {
  border: 1px solid var(--crank-base);
  transform: translateY(-10px);
}

.services-three__icon {
  position: relative;
  display: flex;
  align-items: center;
}

.services-three__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-top: 26px;
  margin-bottom: 10px;
}

/* .services-three__read-more {
  position: relative;
  display: block;
} */

/*--------------------------------------------------------------
# Services Four
--------------------------------------------------------------*/
.services-four {
  position: relative;
  display: block;
  padding: 80px 0 0;
  z-index: 1;
}

.services-four__top {
  position: relative;
  display: block;
}

.services-four__single {
  position: relative;
  display: block;
  background-color: #f5f7f7;
  border: 1px solid var(--crank-bdr-color);
  padding: 30px 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  z-index: 1;
  text-align: center;
}

.services-four__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
  background-color: var(--crank-white);
  z-index: 1;
  margin: 0 auto;
}

.services-four__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: var(--crank-base);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.services-four__single:hover .services-four__icon::before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.services-four__icon span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--crank-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-four__single:hover .services-four__icon span {
  transform: scale(0.9);
  color: var(--crank-white);
}

.services-four__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin-top: 20px;
  /* margin-bottom: 21px; */
}
@media (max-width: 575px) {
  .services-four__title {
    font-size: 18px;
  }
}


/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Services Five
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Services Carousel Page
--------------------------------------------------------------*/

.services-three__description {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display: block;
  z-index: 2;
  display: flex;
  align-items: center;
  /* border-top-left-radius: 24px; */
  /* border-radius: 24px;
  margin: 0 10px; */
  padding-top: 100px;
  padding-bottom: 60px;
}

.main-slider-three:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, #f5f5f5 0%, #fff0 100%); */
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
  /* border-radius: 24px; */
}

.cover-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 992px){
  .main-slider-three {
    background-attachment: fixed;
    height: 630px;
  }
  .testimonial-carousel-style.carousel-dot-style.owl-carousel .owl-dots {
    bottom: -50px;
  }
}

@media (min-width: 1400px) {
  .main-slider-three {
    background-attachment: fixed;
    height: 750px;
  }
}

@media (max-width: 992px) {
  .main-slider-three {
    padding-top: 150px;
  }
}

/* .main-slider-three__shape-2 {
  position: absolute;
  top: 100px;
  left: 42px;
  width: 412px;
  height: 412px;
  background: #E8092E;
  opacity: 0.15;
  filter: blur(142px);
  border-radius: 50%;
  z-index: 1;
} */

/* .main-slider-three__img {
  position: absolute;
  top: 0;
  right: 0;
  clip-path: polygon(27% 0%, 100% 0%, 100% 100%, 18% 100%, 0% 46%);
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(400px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(400px);
  transform: perspective(400px) rotateY(0deg) translateX(400px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  visibility: hidden;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.active .main-slider-three__img {
  visibility: visible;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
} */

.main-slider-three__content {
  position: relative;
  display: block;
  z-index: 10;
}

/* @media (max-width: 992px) {
  .main-slider-three__content {
    margin-bottom: 40px;
  }
} */

.main-slider-three__title {
  position: relative;
  display: block;
  font-size: 52px;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  /* text-transform: capitalize; */
  margin-bottom: 29px;
  /* opacity: 0; */
  transition: transform 1200ms ease, opacity 1200ms ease;
  /* transform: translateX(200px); */
}

/* .main-slider-three__title span {
  font-weight: 200;
} */

.main-slider-three__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 35px;
  transition: transform 1200ms ease, opacity 1200ms ease;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/

/* hover image */

/*--------------------------------------------------------------
# Team Three
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Team Four
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Team Carousel Page
--------------------------------------------------------------*/

/*==============================================
Site Footer
===============================================*/

/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Site Footer Three
--------------------------------------------------------------*/

.site-footer-three__wrap {
  position: relative;
  display: block;
  max-width: 1350px;
  width: 100%;
  margin: 0 auto 0;
  padding: 60px 0 30px 60px;
  background-color: var(--crank-black);
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
}

.site-footer-three__shape-1 {
  position: absolute;
  top: -600px;
  left: -475px;
  width: 1404px;
  height: 741px;
  background: #FF0000;
  filter: blur(182px);
  opacity: .50;
  z-index: -1;
}

.site-footer-three__shape-2 {
  position: absolute;
  bottom: -500px;
  left: -575px;
  width: 861px;
  height: 693px;
  background: #063FFF;
  filter: blur(182px);
  opacity: .50;
  z-index: -1;
}

.site-footer-three__top {
  position: relative;
  display: block;
}

.site-footer-three__top-inner {
  position: relative;
  display: block;
  padding: 0 0 40px;
}

.site-footer-three__left {
  position: relative;
  display: block;
}

.site-footer-three__title {
  font-size: 48px;
  color: var(--crank-white);
  font-weight: 600;
  margin-bottom: 32px;
}

.site-footer-three__right {
  position: relative;
  display: block;
  margin-top: 10px;
}

.site-footer-three__img-box {
  position: relative;
  display: block;
}

.site-footer-three__road {
  position: relative;
  display: block;
  margin-top: -42px;
  margin-left: 151px;
}

.site-footer-three__road>img {
  width: auto;
}

.site-footer-three__img {
  position: absolute;
  bottom: -45px;
  right: 150px;
  animation: leftRight 4s ease-in-out infinite;
}

.site-footer-three__img>img {
  width: auto;
}

/*--------------------------------------------------------------
# Footer Four
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Gallery One
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Gallery Two
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Gallery Three 
--------------------------------------------------------------*/
.gallery-three {
  position: relative;
  display: block;
  /* padding-top: 60px; */
  z-index: 1;
}

.gallery-three__wrap {
  position: relative;
  display: block;
}

.gallery-three__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  width: fit-content;
}

.gallery-three__list li {
  position: relative;
  display: block;
  float: left;
  margin-right: 30px;
}

.gallery-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
  width: 380px;
}

.gallery-three__list li:hover .gallery-three__img:before {
  opacity: .90;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.gallery-three__img img {
  width: 100%;
  border-radius: 20px;
}

.gallery-three__list--two {
  margin-top: 30px;
}


/*--------------------------------------------------------------
# Gallery Four
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/

.testimonial-one__single {
  position: relative;
  display: block;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  padding: 25px 25px 25px;
  height: 208px;
  /* margin-left: 30px; */
  background-position: top left;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.testimonial-one__client-info {
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.testimonial-one__client-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 8px;
}

.testimonial-one__text {
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-one__quote {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-one__quote img {
  position: relative;
  width: 55px !important;
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/

.testimonial-three__ratting {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-three__ratting span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #FFB34E;
}

/*--------------------------------------------------------------
# Testimonial Four
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonial page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonial Carousel Page
--------------------------------------------------------------*/
.testimonial-carousel-page {
  position: relative;
  display: block;
  padding: 80px 0 120px;
  background-color: #fff;
  /* margin: 80px 0 80px; */
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  background-color: var(--crank-base);
}

/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/

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



/* Date Picker Css Start */


/* Date Picker Css End */








/*--------------------------------------------------------------
# Contact Two
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Contact Three
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact Four
--------------------------------------------------------------*/


.banner-one__btn-and-satisfied-client-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  /* justify-content: end; */
}

.banner__info {
  /* max-width: 240px; */
  border-radius: 12px;
  padding: 6px 12px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  position: relative;
  z-index: 9;
  text-align: left;
}

.fs-16 {
  font-size: 16px;
}
.fs-14 {
  font-size: 14px;
}
.fw-600 {
  font-weight: 600;
}
.banner__info i {
  color: #ffa41b;
}
.w-25 {
  width: 25px !important;
}
.w-40 {
  width: 40px;
}
.w-50 {
  width: 50px !important;
}

.pb-50 {
  padding-bottom: 50px;
}

/* START: Footer CSS */
.tj-footer-area {
  position: relative;
  padding-top: 80px;
  /* padding-bottom: 80px; */
  background-color: #F4F4F4;
  z-index: 1;
  margin: 10px;
  border-radius: 12px;
}

.footer-top-area {
  position: relative;
  z-index: 1;
}
/* @media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-top-area {
    padding: 80px 0;
  }
} */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-top-area::before {
    inset-inline-start: 68%;
  }
}

.copyright-content-area {
  text-align: center;
}
.copyright-content-area .copyright-text p {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-content-area {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}



/* START: Contact CSS */

.contact-form-one {
  width: 100%;
  padding: 30px 25px;
}
.contact-form-one .title {
  font-family: var(--crank-font);
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  /* text-align: center; */
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-form-one {
    max-width: 560px;
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-form-one {
    max-width: 470px;
    padding: 35px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-one {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-one {
    max-width: 100%;
    padding: 35px 15px;
  }
  .contact-form-one .title {
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .contact-form-one {
    max-width: 100%;
    padding: 35px 15px;
  }
  .contact-form-one .title {
    margin-bottom: 0;
  }
}
.contact-form-one.style-2 {
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 12px;
  position: relative;
  z-index: 9;
}
/* @media (min-width: 992px) {
  .contact-form-one.header {
    margin-top: -320px;
  } 
} */
.contact-form-one.style-2 .title {
  color: #1d1f13;
}
/* .contact-form-one.style-2 .form-input {
  margin-bottom: 25px;
} */

.google-map iframe {
  width: 100%;
  border-radius: 12px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (min-width: 768px) {
  .google-map iframe {
    height: 523px;
  }
}


.tp-contact-main-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 50px;
  border-radius: 100px;
  flex-shrink: 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.tp-contact-main-info {
  padding: 0 25px;
}
.tp-contact-main-info h3{
  font-size: 22px;
  margin-bottom: 25px;
  font-family: var(--crank-font);
  font-weight: 600;
}
.underline-black {
  color: #1d1f13;
  font-size: 16px;
  font-family: var(--crank-font-two);
}
.mr-15 {
  margin-right: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}

.mb-5px{
  margin-bottom: 5px;
}
.fs-12 {
  font-size: 12px;
}
.w-25{
  width: 25px !important;
}

.tp-text-grey-1 {
  color: #364052;
}

.h5-footer-copyright {
  padding: 15px 0;
  /* background-color: #000; */
  border-radius: 12px;
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.booking-form .form-group label {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.booking-form .form-group input,
textarea {
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #ced7e0;
  border-radius: 0;
  background-color: transparent;
  font-size: 15px;
  color: var(--crank-gray);
  outline: none;
  transition: all 0.3s ease;
  /* appearance: none; */
  cursor: pointer;
  /* width: 100%; */
}

.booking-form .form-group {
  margin-bottom: 16px;
}

.booking-form .form-group input:focus, textarea:focus {
  border-color: var(--crank-base);
}

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

@media (max-width: 1200px) {
  .booking-form {
    flex-wrap: wrap;
  }
  
  .form-group {
    min-width: calc(50% - 10px);
  }
}




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

.call-us, .whatsapp-us {
  background-color: #f2f2f2;
  border: 1px solid #eee;
  border-radius: 18px 0 0 18px;
  max-width: 60px;
  margin-bottom: 10px;
  text-align: center;
  padding: 5px 6px;
  transition: max-width 0.5s ease-in-out, opacity 0.5s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

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

.whatsapp-us img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  margin-left: 5px;
}

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

.chat-with-us p {
  margin-bottom: 0;
  line-height: 20px;
  font-weight: 500;
  font-size: 16px;
}

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

.call-us svg {
  width: 45px !important;
  margin-right: 15px;
}
.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}
/* .iti {
  margin-bottom: 16px;
} */
.w-20{
  width: 20px !important;
}

.service__btn-box {
  margin-top: 80px;
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Counter Two
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Counter Three
--------------------------------------------------------------*/

@media (max-width: 575px) {
  .main-menu-three__wrapper-inner {
    padding: 0 15px !important;
  }
  .main-menu-two__right {
    gap: 15px;
  }
  .main-slider-three__title {
    font-size: 30px !important;
    line-height: 40px !important;
  }
  /* .main-slider-three {
    background-position: 85%;
  } */
  .site-footer-three__wrap {
    padding: 60px 0 30px 0 !important;
  }
  .gallery-three {
    margin: 10px;
  }
  .banner-one__btn-and-satisfied-client-box {
    justify-content: start !important;
    margin-bottom: 25px;
  }
  .contact-form-one .title,
  .tp-contact-main-info h3 {
    font-size: 20px !important;
  }
  .xs-pt-0 {
    padding-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .our-services-section h2 {
    padding: 0 !important;
  }
  .our-services-section .our-services-left-img {
    padding-left: 0;
  }
  .our-services-section .our-services-outer1 {
    padding-top: 0;
  }
  .our-services-section .our-services-right-img {
    padding-right: 0;
  }
  .service__btn-box {
    margin: 0;
  }
}


a:hover {
  color: var(--crank-base);
}











/* Medium screen  */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  
  .about-three__right {
    max-width: 600px;
    margin: 60px auto 0;
  }
  
  .site-footer-three__title {
    font-size: 36px;
    line-height: 1.2;
  }
  
  .site-footer-three__img {
    right: 90px;
  }
  
  .about-four__left {
    max-width: 600px;
    /* margin: 0 auto 60px; */
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
}








/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  
  .about-three__right {
    max-width: 600px;
    margin: 60px auto 0;
  }
  .site-footer-three__title {
    font-size: 32px;
    line-height: 1.2;
  }
  
  .site-footer-three__img {
    right: -15px;
  }
  .about-four__left {
    max-width: 600px;
    margin: 0 auto;
  } 
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  
  .testimonial-one__single {
    padding: 27px 15px 26px;
    padding-right: 15px;
    margin-left: 0;
    margin-bottom: 30px;
  }
  
  .testimonial-one__quote {
    top: 20px;
    right: 15px;
  }
  
  .testimonial-one__text {
    font-size: 18px;
    line-height: 28px;
  }
  
  /* .about-three__right {
    margin-top: 60px;
  } */
  
  .section-title-two__title {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .site-footer-three__title {
    font-size: 26px;
    line-height: 1.2;
  }
  
  .gallery-three__img {
    width: 250px !important;
  }
  
  .site-footer-three__left {
    margin-bottom: 40px;
  }
  
  .site-footer-three__img {
    right: 0;
  }
  
  .about-four__left {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .about-four__img img {
    margin-top: 30px;
  }
  
  .services-three {
    padding: 60px 0 60px;
  }
  
  /* .brand-three {
    padding: 60px 0px 0px;
  } */
  
  .about-three {
    padding: 60px 0 60px;
  }
  
  /* .gallery-three {
    padding: 90px 0 90px;
  } */
  
  .services-four {
    padding: 60px 0 0;
  }
  
  .testimonial-carousel-page {
    padding: 60px 0 60px;
    /* margin: 90px 0 90px; */
  }
  
}

/*--------------------------------------------------------------
# Slider All Responsice Css
--------------------------------------------------------------*/

@media only screen and (max-width: 767px) {
  
  .main-slider-three__title {
    font-size: 35px;
    line-height: 45px;
  } 
}

/*--------------------------------------------------------------
# Main Menu All Responsice Css
--------------------------------------------------------------*/