/*** 

====================================================================
	Global Settings
====================================================================

 ***/

 body {
	font-family: var(--thm-font);
	color: var(--thm-color);
	font-size: 16px;
	line-height: 25px;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	overflow: hidden;
}

body.preloaderbg {
	overflow: inherit;
}
  
  a,
  a:hover,
  a:focus,
  a:visited {
	text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
	font-family: var(--heading-font);
	color: var(--thm-title-color);
	font-weight: 700;
  }

  .h1, h1 {
    font-size: 80px;
    line-height: 1.167;
  }

  .h2, h2 {
    font-size: 48px;
    line-height: 1.187;
  }

  .h3, h3 {
    font-size: 36px;
    line-height: 1.278;
  }

  .h4, h4 {
    font-size: 24px;
    line-height: 1.333;
  }

  .h5, h5 {
    font-size: 20px;
    line-height: 1.417;
  }

  .h6, h6 {
    font-size: 18px;
    line-height: 1.5;
  }


  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, p a, span a {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
  }
  
  @media (max-width: 575px) {
    h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br,
    h6 br {
      display: none;
    }
  }
  
@media (max-width: 575px) {
	p br {
	  display: none;
	}
  }

p+h1, p+h2, p+h3, p+h4, p+h5, p+h4, ul+h1, ul+h2, ul+h3, ul+h4, ul+h5, ul+h4, ol+h1, ol+h2, ol+h3, ol+h4, ol+h5, ol+h4, table+h1, table+h2, table+h3, table+h4, table+h5, table+h4 {
    margin-top: 35px;
}

h1.color-primary, h2.color-primary, h3.color-primary, h4.color-primary, h5.color-primary, h6.color-primary {
    color: var(--thm-base);
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  position: relative;
  color: #7f7f7f;
}

ul,ol {
	padding-left: 17px;
}

label {
    color: #fff;
    float: left;
    font-weight: 400;
    line-height: 13px;
    margin-bottom: 10px;
    width: 100%;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--thm-base);
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a, a:visited {
  text-decoration: none;
  font-weight: normal;
  font-size: 12px;
  color: var(--thm-title-color);;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  outline: 0;
}

a:hover, a:active {
  color: var(--thm-base);
  text-decoration: none;
  outline: 0;
}
  
::placeholder {
	color: inherit;
	opacity: 1;
}
  
.background-base {
	background-color: var(--thm-base);
}
  
.background-primary {
	background-color: var(--thm-primary);
}
  
.background-secondary {
	background-color: var(--thm-secondary);
}
  
.background-special {
	background-color: var(--thm-special);
}
  
.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	overflow: hidden;
}

.btn.focus, .btn:focus{
	box-shadow: none;
}

input, textarea, select {
  width: 100%;
  background: transparent;
  border: 1px solid #e8e8e8;
  padding: .655rem 1.25rem;
  font-size: 0.938rem;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 1.25rem;
  border-radius: 0.438rem;
}

input[type=submit], 
button[type=submit] {
  border: none;
  border-radius: 0;
  display: inline-block;
  background: var(--thm-base);
  padding: 15px 30px;
  width: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
}

input[type=submit]:hover, 
button[type=submit]:hover {
  background: var(--thm-color);
  color: #fff;
}

/*------------------- Simple Sections -------------------*/

.checklist ul {
  padding: 0;
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}
.checklist li {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  color: var(--thm-title-color);
  padding-left: 25px;
}
.checklist li:last-child {
  margin-bottom: 0;
}
.checklist li i, .checklist li svg {
  font-size: 16px;
  margin-right: 10px;
  color: var(--thm-base);
  margin-top: 6px;
  width: 16px;
}

.checklist li:before {
  position: absolute;
  content: '\e905';
  font-family: 'icomoon';
  font-size: 16px;
  left: 0px;
  top: 0px;
  color: var(--thm-base);
}

.links {
  position: relative;
  display: inline-block;
}

.links:hover {
  color: var(--thm-base);
}
.links::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--thm-base);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}
.links:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 150px;
  right: 80px;
  background-color: var(--thm-base);
  color: var(--thm-color-white);
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  line-height: 53px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.float i {
  color: var(--thm-color-white);
  font-size: 25px;
}

/*------------------- Buttons -------------------*/
a.btn,
button.btn,
input.btn {
  position: relative;
  z-index: 2;
  vertical-align: middle;
  display: inline-flex;
  border: none;
  align-items: center;
  text-align: center;
  background-color: var(--thm-base);
  color: var(--thm-color-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  padding: 15px 32px;
  overflow: hidden;
  transition: all 0.35s;
  border-radius: 5px;
  /* Medium Large devices */
}
.btn i {
  position: relative;
  top: 1px;
  margin-left: 5px;
  transition: 0.4s;
}
.btn:after {
  animation: opacityFallbackOut 0.5s step-end forwards;
  backface-visibility: hidden;
  background-color: var(--thm-color-white);
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  height: 102%;
  left: 0;
  position: absolute;
  top: -1px;
  transform: translateZ(0);
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  border-radius: 0px;
  z-index: -1;
}
.btn:focus, .btn:hover, .btn.active {
  color: var(--thm-base);
  outline: none;
  box-shadow: none;
}
.btn:focus:after, .btn:hover:after, .btn.active:after {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}
.btn:focus i, .btn:hover i, .btn.active i {
  margin-left: 10px;
  margin-right: -5px;
}
.btn.btn-style2:focus, .btn.btn-style2:hover, .btn.btn-style2.active {
  color: var(--thm-color);
}
.btn.btn-style3 {
  background: var(--thm-color-white);
  color: var(--thm-color);
}
.btn.btn-style3:after {
  background: var(--thm-base);
}
.btn.btn-style3:focus, .btn.btn-style3:hover, .btn.btn-style3.active {
  color: var(--thm-color-white);
}
.btn.btn-style4:after {
  background: var(--thm-color);
}
.btn.btn-style4:focus, .btn.btn-style4.active, .btn.btn-style4:hover {
  color: var(--thm-color-white);
}
.btn.btn-style5 {
  background: var(--thm-color);
}
.btn.btn-style5:after {
  background: var(--thm-base);
}
.btn.btn-style5:focus, .btn.btn-style5.active, .btn.btn-style5:hover {
  color: var(--thm-color-white);
}
.btn.btn-style6 {
  border-radius: 0;
  background: var(--thm-base);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.btn.btn-style6:before {
  border-radius: 0;
  transform: none;
  left: 0;
  width: 0;
}
.btn.btn-style6:hover:before {
  width: 100%;
}
.btn.btn-style7 {
  background: var(--thm-color-white);
  color: var(--thm-color);
}
.btn.btn-style7:after {
  background: var(--thm-color);
}
.btn.btn-style7:focus, .btn.btn-style7.active, .btn.btn-style7:hover {
  color: var(--thm-color-white);
}
.btn.btn-style8 {
  background: #EEC044;
  color: var(--thm-color);
}
.btn.btn-style8:after {
  background: var(--thm-color);
}
.btn.btn-style8:focus, .btn.btn-style8.active, .btn.btn-style8:hover {
  color: var(--thm-color-white);
}
.btn.btn-style9 {
  background: var(--thm-color-white);
  color: var(--thm-base);
}
.btn.btn-style9:after {
  background: var(--thm-color);
}
.btn.btn-style9:focus, .btn.btn-style9.active, .btn.btn-style9:hover {
  color: var(--thm-color-white);
}
.btn.btn-style-border {
  color: var(--body-color);
  border: 1px solid var(--border-color);
  background: transparent;
}
.btn.btn-style-border:after {
  background: var(--thm-base);
}
.btn.btn-style-border:active, .btn.btn-style-border:focus, .btn.btn-style-border:hover {
  color: var(--thm-color-white);
}
.btn.btn-border2 {
  background: transparent;
  border: 1px solid var(--thm-base);
  color: var(--thm-color);
}
.btn.btn-border2:after {
  background: var(--thm-base);
}
.btn.btn-border2:active, .btn.btn-border2:focus, .btn.btn-border2:hover {
  color: var(--thm-color-white);
}
.btn.btn-border3 {
  color: var(--thm-color-white);
  border: 2px solid var(--thm-color-white);
}
.btn.btn-border3:active, .btn.btn-border3:focus, .btn.btn-border3:hover {
  color: var(--thm-base);
}
.btn.btn-border3:active:before, .btn.btn-border3:focus:before, .btn.btn-border3:hover:before {
  background-color: var(--thm-color-white);
}
.btn.btn-border4 {
  color: var(--thm-color);
  border: 1px solid var(--thm-color);
  border-radius: 0;
  font-family: var(--title-font);
}
.btn.btn-border4:before {
  display: none;
}
.btn.btn-border4:active, .btn.btn-border4:focus, .btn.btn-border4:hover {
  color: var(--thm-color-white);
  background: var(--thm-color);
}
.btn.btn-style-r0 {
  border-radius: 0 !important;
}
.btn.btn-style-r0:before {
  border-radius: 0 !important;
}
.btn.btn-sm {
  padding: 10px 20px;
}
.btn.w-100 {
  width: 100%;
  justify-content: center;
}
@media (max-width: 1299px) {
  .btn {
    padding: 15px 20px;
  }
}

.link-btn {
  font-size: 14px;
  font-weight: 800;
  display: inline-block;
  line-height: 0.8;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -2px;
  color: var(--thm-title-color);
}

.link-btn:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--thm-base);
  transition: all ease 0.4s;
}

.link-btn i {
  margin-left: 3px;
  font-size: 0.9rem;
}

.link-btn:hover {
  color: var(--thm-base);
}

.link-btn:hover::before {
  width: 100%;
}

.grey-bg{
	background-color: var(--thm-greybg);
}

.text {
    font-size: 1rem;
    font-weight: 300;
}

section {
	padding: 80px 0px 80px;
}

.section-pad {
    padding-top: 90px;
    padding-bottom: 90px;
}

@media only screen and (max-width: 767px) {
    .section-pad {
        padding-top: 45px;
        padding-bottom: 45px;
    }
}

.section-title {
  position: relative;
  margin-bottom: 50px;
}
.section-title.mb-30 {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-title {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  
}
@media (max-width: 767px) {
  
}

.section-title h2 {
  font-weight: 600;
  line-height: 55px;
  margin: 20px 0;
  color: var(--thm-base);
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-title h2 {
    font-size: 55px;
    line-height: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title h2 {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 35px;
    line-height: 40px;
  }
}

.section-title h6 {
  color: var(--thm-color);
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .section-title h6 {
    font-size: 15px;
    letter-spacing: 1px;
  }
}

.section-title p {
  font-weight: 600;
  color: var(--thm-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-black {
  color: #333;
}

  

/*========================================*/
/*--------------- [_Global] --------------*/
/*========================================*/

#preloader {
  background-color: var(--thm-primary);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
}

#preloader-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#preloader-center__absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloaderBar {
  width: 270px;
  height: 4px;
  background-color: #E2E2E8;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.preloaderBar-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-image: -webkit-linear-gradient(90deg, var(--thm-color) 0%, var(--thm-color) 100%);
  background-image: -moz-linear-gradient(90deg, var(--thm-color) 0%, var(--thm-color) 100%);
  background-image: -ms-linear-gradient(90deg, var(--thm-color) 0%, var(--thm-color) 100%);
  background-image: -o-linear-gradient(90deg, var(--thm-color) 0%, var(--thm-color) 100%);
  background-image: linear-gradient(90deg, var(--thm-color) 0%, var(--thm-color) 100%);
  transition: all 1s ease-out 0s;
  -webkit-transition: all 1s ease-out 0s;
  -moz-transition: all 1s ease-out 0s;
  -ms-transition: all 1s ease-out 0s;
  -o-transition: all 1s ease-out 0s;
}
.preloader-logo {
  margin-bottom: 40px;
}
.preloader-logo img {
  max-width: 100%;
  width: 40%;
}
.preloader-logo img.logo-blink {
  animation: loader-blink 2s ease-in-out 0.1s infinite;
  -webkit-animation: loader-blink 2s ease-in-out 0.1s infinite;
}
@-webkit-keyframes loader-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes loader-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes loader-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loader-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

  
/* scroll to top */
.scrollTo-target {
  position: fixed;
  right: 55px;
  bottom: 80px;
  height: 48px;
  width: 48px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--thm-base);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transform: translateY(15px) !important;
  transition: all 200ms linear !important;
  overflow: hidden;
}
.scrollTo-target.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}
.scrollTo-target::after {
  position: absolute;
  font-family: bootstrap-icons !important;
  content: "\f148";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: #85ba4f;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  font-weight: 900;
  z-index: 1;
  transition: all 200ms linear !important;
}
.scrollTo-target::before {
  position: absolute;
  font-family: bootstrap-icons !important;
  content: "\f148";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear !important;
}
.scrollTo-target:hover ::after {
  color: #85ba4f;
}
.scrollTo-target:hover ::before {
  opacity: 1;
}
.scrollTo-target svg path {
  fill: none;
}
.scrollTo-target svg.progress-circle path {
  stroke: #85ba4f;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear !important;
}

.page-header {
  padding-top: 170px;
  padding-bottom: 152px;
  position: relative;
}

.page-header .bg-layer {
  background-color: #646464;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-header .bg-layer:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7)
}

.page-header__contact {
  padding-bottom: 270px
}

.page-header h2 {
  margin: 0;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1em;
  position: relative
}

.thm-breadcrumb {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  margin-top: 15px;
  position: relative
}

.thm-breadcrumb::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: var(--thm-base);
  display: flex;
  margin-right: 9px
}

.thm-breadcrumb li,
.thm-breadcrumb li > a {
  font-size: 17px;
  font-weight: 600;
  font-family: var(--heading-font);
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center
}

.thm-breadcrumb li:not(:last-of-type)::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-size: 15px;
  margin-left: 10px;
  margin-right: 10px
}

.thm-breadcrumb li a {
  color: inherit
}

.breadcrumb-item+.breadcrumb-item::before {
  content: none;
}

/***

  ====================================================================
    Header Area Css
  ====================================================================

  ***/

  /* Header Top */

  .header-top {
    background: #E5F0EC;
    padding: 15px 0;
    color: var(--thm-base);
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .header-top {
      display: none;
    }
  }

  .header-top .contact-info {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    margin-bottom: 0;
  }

  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header-top .contact-info {
      font-size: 12px;
    }
  }

  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-top .contact-info {
      text-align: center;
    }
  }

  @media (max-width: 767px) {
    .header-top .contact-info {
      font-size: 14px;
      text-align: center;
    }
  }

  .header-top .contact-info li {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .header-top .contact-info li a {
    color: var(--thm-base);
    font-size: 14px;
    font-weight: 600;
  }

  .header-top .contact-info li i {
    color: #4c7c42;
    font-size: 18px;
  }

  .header-top .contact-info li:hover > .bi-envelope + a {
    text-decoration: underline;
  }

  @media only screen and (min-width: 992px) and (max-width: 1056px) {
    .header-top .contact-info li a {
      font-size: 12px;
    }

    .header-top .contact-info li i {
      font-size: 16px;
    }
  }

  .header_top_right {
    display: flex;
    justify-content: end;
    align-items: center;
  }

  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_top_right {
      justify-content: center;
      margin-top: 10px;
    }
  }

  @media (max-width: 767px) {
    .header_top_right {
      display: block;
      justify-content: center;
      margin-top: 10px;
    }
  }

  .header_top_right .social-area {
    text-align: right;
    display: flex;
  }

  @media (max-width: 767px) {
    .header_top_right .social-area {
      text-align: center;
    }
  }

  .header_top_right .social-area i {
    background: var(--thm-base);
    color: #fff;
    margin-right: 10px;
    border-radius: 50%;
    font-weight: 400;
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
}

  /* Header Area */
.header-area .navigation {
  padding: 0px 30px;
  background: #fff;
  height: 90px;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .header-area .navigation {
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  .header-area .navigation {
    padding: 0;
  }
}
.header-area .header-inner-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-area .header-inner-box .logo {
  border-right: 1px solid #eee;
  height: 90px;
  display: flex;
  align-items: center;
  padding-right: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .header-inner-box .logo {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  .header-area .header-inner-box .logo {
    border-right: 0;
  }
}
.header-area .header-inner-box .logo img {
  margin-top: 5px;
  height: 60px;
}
.header-area .header-inner-box .phone-number-box {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-left: 1px solid #eee;
  height: 90px;
  padding-left: 40px;
}
.header-area .header-inner-box .phone-number-box .icon i {
  background: #E5F0EC;
  font-size: 30px;
  padding: 15px;
  border-radius: 50%;
}
.header-area .header-inner-box .phone-number-box .phone {
  padding-left: 15px;
}
.header-area .header-inner-box .phone-number-box .phone p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.header-area .header-inner-box .phone-number-box .phone a {
  font-size: 16px;
}
.header-area .header-inner-box .phone-number-box .phone a:hover {
  color: var(--thm-color);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .header-inner-box .phone-number-box {
    display: none;
  }
}
@media (max-width: 767px) {
  .header-area .header-inner-box .phone-number-box {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .header-inner-box {
    display: block;
  }
}
@media (max-width: 767px) {
  .header-area .header-inner-box {
    display: block;
  }
}

.header-btn {
  display: flex;
  border-left: 1px solid #eee;
  height: 90px;
  align-items: center;
  padding-left: 60px;
}

/* Main Menu */
.main-menu .navbar {
  padding: 0;
}

.main-menu li.nav-item {
  position: relative;
  margin: 0 24px;
}
@media (max-width: 767px) {
  .main-menu li.nav-item {
    margin: 0;
  }
}

.main-menu .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 600;
  display: block;
  padding: 35px 0;
}

.main-menu .navbar-nav .nav-item .nav-link.active {
  color: var(--thm-base);
}

.main-menu li.nav-item:hover > a {
  color: var(--thm-base);
}

/*Dropdown Menu */
.sub-menu {
  position: absolute;
  left: 0;
  top: 120px;
  width: 190px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 99;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.sub-menu::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
  background: var(--thm-color);
  visibility: hidden;
  opacity: 0;
}

.main-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 90px;
}

.main-menu li:hover .sub-menu::after {
  opacity: 1;
  visibility: visible;
}

.main-menu ul.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu .sub-menu li {
  display: block;
  border-bottom: 1px solid #eee;
}

.main-menu .sub-menu li:last-child {
  border-bottom: none;
}

.main-menu .sub-menu li a {
  display: block;
  padding: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--thm-base);
}

.main-menu .sub-menu li:hover > a {
  background: var(--thm-base);
  color: #fff;
}

.dropdown-toggle::after {
  display: none !important;
}

.navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
  display: none;
}

.quatation-box {
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .quatation-box {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .quatation-box {
    display: none;
  }
}

.quatation-box a {
  color: #fff;
  font-weight: 500;
}

.header-area.absolute-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-area.absolute-header .navigation {
  background: transparent;
}

.absolute-header .main-menu .navbar-nav .nav-link {
  color: #fff;
}

@media (max-width: 767px) {
  .absolute-header .main-menu .navbar-nav .nav-link {
    color: inherit;
  }
}
.absolute-header .contact-info {
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .absolute-header .contact-info {
    display: none;
  }
}
@media (max-width: 767px) {
  .absolute-header .contact-info {
    display: none;
  }
}
.absolute-header .contact-info i {
  font-size: 20px;
  margin-left: 0;
}

.header-area.absolute-header .icon-wrapper i {
  color: #fff;
  font-size: 20px;
}

.header-area.absolute-header .header-inner-box .logo {
  border-right: none;
}

.header-area.absolute-header .icon-wrapper {
  border-left: none;
}

/* Sticky CSS 
============== */
.header-area .is-sticky .sticky-area {
  background: #fff;
  box-shadow: 0 3px 16px -2px #d0cece;
  z-index: 999 !important;
  -webkit-animation: slideInDown 0.6s forwards;
  animation: slideInDown 0.6s forwards;
  margin-top: 0;
}

.header-area .is-sticky .navigation {
  height: 90px;
  margin-top: 0;
}

.header-area .is-sticky .main-menu li:hover .sub-menu {
  top: 90px;
}

.header-area.absolute-header .is-sticky .navigation {
  background: #1E3226;
}

.header-area.absolute-header .is-sticky .sticky-area {
  box-shadow: 0 3px 16px -2px #484e4b;
}


/*========  End of Header Area css  =========*/

/***

  ====================================================================
    Mobile Navigation Area Css
  ====================================================================

  ***/

  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 14px;
    }
  }

  @media only screen and (max-width: 991px) {
    .header-btn {
      display: none;
    }
    .navbar-toggler {
      border: none;
      position: absolute;
      top: -65px;
      right: 0;
      z-index: 99;
    }
    
    .navbar-toggler-icon {
      display: block;
      width: 30px;
      height: 2px;
      background-color: #006940;
      margin: 6px 0;
      -webkit-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s;
    }
  
    .absolute-header .navbar-toggler-icon {
      background-color: #fff;		
    }
  
    .active .navbar-toggler-icon:nth-of-type(1) {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      position: absolute;
      top: 7px;
    }
  
    .active .navbar-toggler-icon:nth-of-type(2) {
      opacity: 0;
    }
  
    .active .navbar-toggler-icon:nth-of-type(3) {
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg);
      position: absolute;
      top: 7px;
    }
  
    .main-menu .navbar .navbar-collapse {
      position: absolute;
      top: 16px;
      left: 0;
      width: 100%;
      background-color: #fff;
      z-index: 999;
      padding: 10px 16px;
      -webkit-box-shadow: 0 26px 48px 0 rgba(0, 0, 0, 0.15);
      box-shadow: 0 26px 48px 0 rgba(0, 0, 0, 0.15);
      margin-top: 0;
    }
  
  
    .navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
      display: inline-block;
      position: absolute;
      top: 0;
      right: 0;
      padding: 10px 14px;
      font-size: 16px;
      background: none;
      border: 0;
      color: green;
    }
  
    .sub-menu {
      position: relative !important;
      width: 100% !important;
      left: 0 !important;
      top: auto !important;
      opacity: 1 !important;
      visibility: visible !important;
      display: none;
      right: auto;
      -webkit-box-shadow: none;
      box-shadow: none;
      text-align: left;
      border-top: 0;
      -webkit-transition: 0s;
      transition: 0s;
      background: #fff;
    }
  
      .sub-menu::after{
          display: none;
      }
  
    .main-menu .navbar-nav .nav-link {
      padding: 15px;
      font-size: 16px;
    }
  
    .main-menu .navbar-nav .nav-link::before {
      display: none;
    }
  
    .main-menu .sub-menu li a {
      font-size: 15px;
      display: block;
      padding: 12px;
      padding-left: 12px;
      -webkit-transition: .3s;
      transition: .3s;
      padding-left: 30px;
    }
  
    .main-menu .navbar-toggler:focus,
    .navbar-toggler:hover {
      text-decoration: none;
      outline: 0;
      cursor: pointer !important;
      box-shadow: none;
    }
  
    .header-area .main-menu .navbar-nav .nav-link:hover {
      color: var(--thm-color);
    }
  
    .header-area.absolute-header .main-menu .navbar-nav .nav-link {
      color: #787573;
    }
  
    .header-area.absolute-header .main-menu .navbar-nav .nav-link.active {
      color: #787573;
    }
  
    .header-btn .btn.btn-style4 {
      display: none;
    }
  }

/*========  End of Mobile Navigation Area css  =========*/


/***

  ====================================================================
    Banner Area Css
  ====================================================================

  ***/

  .slider-area{
    height: 850px;
    position: relative;
    overflow: hidden;
  }
  .banner-item-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 7000ms linear;
    -webkit-transition: all 7000ms linear;
    -moz-transition: all 7000ms linear;
    -ms-transition: all 7000ms linear;
    -o-transition: all 7000ms linear;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  .owl-item.active .banner-item-carousel{
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
  }
  .owl-carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .4);
}
  .slider-content h5 {
    color: var(--thm-color-white);
    font-weight: 400;
    font-size: 20px;
    position: relative;
    display: inline-block;
    margin-left: 46px;
  }
  .slider-content h5::before {
    position: absolute;
    content: "";
    top: 0;
    left: -34px;
    background: var(--thm-color);
    height: 16px;
    width: 16px;
    transform: rotate(45deg);
    transition: all 1000ms ease;
    -webkit-animation: st__rotate 10s infinite linear;
    -moz-animation: st__rotate 5s infinite linear;
    -o-animation: st__rotate 5s infinite linear;
    animation: st__rotate 5s infinite linear; 
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running; 
    z-index: 1;
  }
  .slider-content h5::after {
    position: absolute;
    content: "";
    top: 0;
    left: -39px;
    background: var(--thm-color-white);
    height: 16px;
    width: 16px;
    transform: rotate(45deg);
    transition: all 1000ms ease;
    -webkit-animation: st__rotate 10s infinite linear;
    -moz-animation: st__rotate 5s infinite linear;
    -o-animation: st__rotate 5s infinite linear;
    animation: st__rotate 5s infinite linear; 
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running; 
  }
  @keyframes st__rotate{
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  .slider-content h1 {
    color: var(--thm-color-white);
    line-height: 1.2;
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 1px;
  }
  .slider-content p {
    color: var(--thm-color-white);
    margin-top: 25px;
    margin-bottom: 0px;
    font-size: 1.25rem;
    font-weight: 500;
    width: 80%;
  }
  button.btn-style {
    border: none;
  }
  .btn-style {
    display: inline-block;
    background: var(--thm-base);
    font-size: 24px;
    color: var(--thm-color-white);
    padding: 18px 42px;
    position: relative;
    overflow: hidden;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    z-index: 1;
  }
  .owl-item.active .slider-content .btn-style {
    color: var(--thm-color-white);
  }
  .owl-item.active .slider-content .btn-style:hover{
    color: var(--thm-base);
  }
  .btn-style::before {
    position: absolute;
    content: "";
    top: 0;
    left: -12px;
    width: 30px;
    height: 100%;
    background: var(--thm-color-white);
    transform: skew(22deg);
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    z-index: -1;
  }
  .btn-style:hover::before {
    width: 95%;
  }
  .btn-style i {
    margin-left: 17px;
    transform: rotate(-49deg);
    display: inline-block;
    font-size: 22px;
    color: var(--thm-color-white);
  }
  .btn-style:hover i{
    color: var(--thm-base);
  }
  .owl-item.active .slider-content h5 {
    animation: .50s ease-in-out 0.5s normal none 1 running fadeInDown;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    -webkit-animation: .50s ease-in-out 0.5s normal none 1 running fadeInDown;
  }
  .owl-item.active .slider-content h1 {
    animation: .60s ease-in-out 0.6s normal none 1 running fadeInDown;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    -webkit-animation: .60s ease-in-out 0.6s normal none 1 running fadeInDown;
  }
  .owl-item.active .slider-content p {
    animation: .70s ease-in-out 0.7s normal none 1 running fadeInDown;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    -webkit-animation: .70s ease-in-out 0.7s normal none 1 running fadeInDown;
  }
  .owl-item.active .slider-content a {
    animation: .80s ease-in-out 1s normal none 1 running fadeInUp;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    -webkit-animation: .80s ease-in-out 1s normal none 1 running fadeInUp;
  }

.slider-carousel .owl-dots {
  position: absolute;
  width: 60px;
  height: 100%;
  top: 0;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slider-carousel .owl-dots .owl-dot {
  position: relative;
  width: 15px;
  height: 15px;
  margin: 5px 0;
  background: transparent;
  box-shadow: 0 0 30px rgba(255, 255, 255, .9);
  border-radius: 45px;
  border: 2px solid #fff;
  transition: .5s;
}

.slider-carousel .owl-dots .owl-dot.active {
  background-color: #fff;
}

/* .slider-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
} */

@media only screen and (max-width:1400px) {
  .slider-content h1 {
    font-size: 3.5rem;
  }
}


/*========  End of Banner Area css  =========*/
  
/***

  ====================================================================
    About Area Css
  ====================================================================

***/

.about-content-left {
  padding-right: 40px;
}
@media (max-width: 767px) {
  .about-content-left {
    padding-right: 0px;
  }
}

.about-img {
  position: relative;
  max-width: calc(100% - 10px);
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .about-img {
    max-width: calc(100% - 0px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-img {
    margin-top: 60px;
    max-width: calc(100% - 0px);
  }
}
@media (max-width: 767px) {
  .about-img {
    margin-top: 30px;
    max-width: calc(100% - 0px);
  }
}
.about-img img {
  border-radius: 10px;
}

.about-content-wrap .section-title p {
  padding: 10px 20px;
  background: #e0f6e9;
  color: var(--thm-base);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  border-radius: 7px;
  display: inline-block;
}

.about-counter {
  background: var(--thm-base);
  display: inline-flex;
  flex-direction: column;
  padding: 30px 45px;
  border-radius: 10px 0px 10px 0px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  .about-counter {
    padding: 10px 20px;
  }
}
@media (max-width: 767px) {
  .about-counter .counter-icon img {
    width: 45px;
  }
}
.about-counter .counter-number span {
  display: inline-block;
  font-size: 45px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  margin: 20px 0;
}
@media (max-width: 767px) {
  .about-counter .counter-number span {
    font-size: 30px;
    margin: 15px 0;
  }
}
.about-counter h6 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
}

/*========  End of About Area css  =========*/


/***

  ====================================================================
    counter Area Css
  ====================================================================

***/

.counter-area {
  background-color: var(--thm-primary);
}

.counter_box {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.counter_info h3 {
  font-family: var(--thm-font);
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 0;
}

.counter_info h6 {
  padding-top: 10px;
  text-transform: uppercase;
}

.counter_info p {
  margin-bottom: 0;
}

.counter_box i {
  font-size: 65px;
  display: inline-block;
  color: var(--thm-base);
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.counter_box:hover i {
  transform: rotateY(180deg);
  transition: transform 0.6s;
}

@media only screen and (max-width: 1299px) {
  .counter_box i {
    font-size: 50px;
  }
  .counter_info h3 {
    font-size: 36px;
    line-height: 30px;
  }
  .counter_info h6 {
    margin-top: 0;
  }
}


/*========  End of Counter Area css  =========*/

/***

  ====================================================================
    Service Area Css
  ====================================================================

***/

.service-slide-img img {
    border-radius: 15px 30px;
}

.service-slider-area {
    padding: 0 0 60px 0;
}

.service-slider-item {
    padding: 0 15px;
}

.prodService .service-slider-item {
  padding: 0;
}

.service-slider-inner {
    width: 440px;
}

.prodService .service-slider-inner {
  width: auto;
}

.service-slide-info h4 {
    padding: 30px 0px 20px;
}

.service-slide-info a:hover h4 {
  color: var(--thm-base);
}

.service-slide-info p {
    font-size: 18px;
}

.service-note a {
  color: var(--thm-base);
  font-size: 17px;
  position: relative;
  display: inline-block;
}

.service-note a::after {
  content: "";
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: rgba(54, 112, 54, 0.56);
  position: absolute;
}

@media only screen and (max-width:579px) {
  .service-slider-inner {
    width: 100%;
  }
}

/*========  End of Service Area css  =========*/


/***

  ====================================================================
    Testimonial Area Css
  ====================================================================

***/

.testimonial-area {
  position: relative;
  padding: 120px 0 120px 0
}

.testimonial-area .title-inner .text p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px
}

.testimonial-area .title-inner .text a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: var(--thm-black);
  font-family: var(--heading-font);
  border-bottom: 2px solid #e4e7ee;
  transition: all .5s ease
}

.testimonial-area .title-inner .text a:hover {
  color: var(--thm-base)
}

.testimonial-area .title-inner .block-title {
  margin-bottom: 14px
}

.testimonial-area .testimonial-inner {
  position: relative;
  padding-right: 118px
}

.testimonial-area .client-thumb-outer {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto
}

.testimonial-area .client-thumb-outer .thumb-item .thumb-box {
  width: 100px;
  height: 100px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 10px auto !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15)
}

.testimonial-area .client-thumb-outer .thumb-item .thumb-box i {
  position: absolute;
  left: 15px;
  bottom: 10px;
  font-size: 18px;
  color: #fff;
  background: var(--thm-base);
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  text-align: center
}

.testimonial-area .client-thumb-outer .owl-carousel .owl-stage-outer {
  overflow: visible
}

.testimonial-area .testimonial-inner .testimonial-content {
  position: relative;
  background: var(--thm-primary);
  padding: 38px 70px 31px 40px;
  border-radius: 10px;
  margin-right: 52px
}

.testimonial-area .testimonial-inner .testimonial-content:before {
  position: absolute;
  content: '';
  background: var(--thm-primary);
  width: 52px;
  height: 62px;
  top: 62px;
  right: -52px;
  clip-path: polygon(0% 0%, 0% 0%, 100% 100%, 0% 75%, 0% 0%)
}

.testimonial-area .testimonial-inner .testimonial-content .rating li {
  position: relative;
  display: inline-block;
  font-size: 18px;
  margin: 0 3px;
  color: var(--thm-base)
}

.testimonial-area .testimonial-inner .testimonial-content .rating {
  margin-bottom: 17px
}

.testimonial-area .testimonial-inner .testimonial-content p {
  position: relative;
  font-size: 18px;
  line-height: 28px;
  color: var(--thm-color);
  margin-bottom: 15px
}

.testimonial-area .testimonial-inner .testimonial-content h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: var(--thm-color);
  font-weight: 600;
  margin: 0
}

.testimonial-area .testimonial-inner .testimonial-content h4 span {
  font-size: 18px;
  font-family: var(--thm-font);
  font-weight: 400;
  color: rgba(255, 255, 255, .5);
  font-style: italic
}

.testimonial-area .client-testimonial-carousel .owl-nav {
  position: absolute;
  right: -46px;
  top: 0;
  height: 100%
}

.testimonial-area .client-testimonial-carousel .owl-nav .owl-next,
.testimonial-area .client-testimonial-carousel .owl-nav .owl-prev {
  position: absolute;
  font-size: 40px;
  line-height: 40px;
  color: #bac0ce;
  background: 0 0;
  border: none;
  outline: 0;
  cursor: pointer;
  font-weight: 400;
  margin: 0;
  transition: all .5s ease
}

.testimonial-area .client-testimonial-carousel .owl-nav .owl-next:hover,
.testimonial-area .client-testimonial-carousel .owl-nav .owl-prev:hover {
  color: var(--thm-base)
}

.testimonial-area .client-testimonial-carousel .owl-nav .owl-prev {
  top: -12px;
  left: 0
}

.testimonial-area .client-testimonial-carousel .owl-nav .owl-next {
  bottom: 5px;
  left: 6px
}

@media only screen and (max-width:991px) {
  .testimonial-area .testimonial-inner {
    margin-top: 50px;
  }
}

@media (max-width:625px) {
  .testimonial-area .testimonial-inner {
    padding-right: 0;
  }
  .testimonial-area .testimonial-inner .testimonial-content {
    margin-right: 0;
    padding-right: 40px;
  }
  .testimonial-area .testimonial-inner .testimonial-content:before {
    content: none;
  }
  .testimonial-area .client-testimonial-carousel .owl-nav {
    display: none;
}
  .testimonial-area .client-thumb-outer {
    position: relative;
    top: 0;
    transform: translateY(0);
    margin-top: 30px;
  }
}

/*========  End of Testimonial Area css  =========*/

/***

  ====================================================================
    Why ChooseUS Area Css
  ====================================================================

***/

.about-features {
  background: #F6F7F8;
  border-radius: 20px 0px 0px 20px;
  position: relative;
  margin: 0 0px 0 auto;
  padding: 80px 50px 80px 0;
}

@media only screen and (max-width: 991px) {
  .about-features {
    padding: 40px;
  }
}

.choose_us {
  position: relative;
  display: block;
}

.choose_us_left {
  position: relative;
  display: block;
  margin-left: -305px;
  margin-right: 60px;
}


@media only screen and (max-width: 1900px) {
  .choose_us_left {
    margin-left: -290px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 1700px) {
  .choose_us_left {
    margin-left: -200px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 1640px) {
  .choose_us_left {
    margin-left: -170px;
    margin-right: 20px;
  }
}
 

@media only screen and (max-width: 1560px) {
  .choose_us_left {
    margin-left: -130px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 1390px) {
  .choose_us_left {
    margin-left: -130px;
    margin-right: 40px;
  }
}

@media only screen and (max-width: 1260px) {
  .choose_us_left {
    margin-left: -75px;
    margin-right: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .choose_us_left {
    margin-left: -130px;
    margin-right: 30px;
  }

  .choose_us_right .section-title h2 {
    font-size: 48px;
    line-height: 50px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1100px) {
  .choose_us_left {
    margin-left: -75px;
    margin-right: 30px;
  }
}

@media only screen and (max-width: 1024px) {
  .choose_us_left {
    margin-left: -45px;
    margin-right: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .choose_us_left {
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .choose_us_left {
    margin-left: 0;
    margin-right: 0;
  }
}

.choose_us_img {
  position: relative;
  display: block;
}
.choose_us_img img {
  width: 100%;
  /* border-radius: 12px; */
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.about-features .about-box-wrap {
  background: var(--thm-primary);
  border-radius: 15px;
  margin-top: 40px;
  padding: 0px 30px 22px;
}
.about-features .about-box-wrap .about-box-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--thm-base);
  border-radius: 5px;
  top: -40px;
  margin-bottom: -15px;
  position: relative;
  transition: 0.4s;
}
.about-features .about-box-wrap .about-box-icon  i {
  color: #fff;
  font-size: 30px;
  vertical-align: middle;
}
.about-features .about-box-wrap .about-box-title {
  font-size: 20px;
  margin-bottom: 7px;
  font-weight: 700;
}

.about-features .about-box-wrap .about-box-title a {
  color: var(--thm-title-color);
}

.about-features .about-box-wrap .about-box-title a:hover {
  color: var(--thm-base);
}

.about-features .about-box-wrap .about-box-text {
  margin-bottom: 0;
}

.about-features .about-box-wrap:hover .about-box-icon {
  transform: rotate(360deg);
  border-radius: 30px;
}

@media only screen and (max-width:991px) {
  .choose_us_right {
    margin-top: 30px;
  }
  .about-content {
    margin-top: 30px;
  }
}

/*========  End of Why ChooseUS Area css  =========*/


/***

  ====================================================================
    Footer Area Css
  ====================================================================

***/

.footer-area {
  background: rgb(53, 81, 53);
  color: #fff;
}
.footer-area h6 {
  font-size: 20px;
  color: #FFFFFF;
  margin: 20px 0;
}
.footer-area p {
  font-size: 16px;
  margin-top: 14px;
  margin-left: 0;
  color: #eee;
}
.footer-area ul li {
  padding: 10px 0;
}
.footer-area ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #d7d7d7;
  position: relative;
}
.footer-area ul li a:hover {
  color: var(--thm-color-white);
}
.footer-area ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--thm-color-white);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}
.footer-area ul li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media (max-width: 767px) {
  .footer-area {
    text-align: center;
  }
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-info p > a {
  color: #eee;
}

.social-area {
  padding-left: 25px;
}

.subscribe-form {
  position: relative;
}

.subscribe-form form {
  display: flex;
  align-items: center;
}

.subscribe-form button {
  font-size: 28px;
  line-height: 13px;
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0px 10px 10px 0px;
  padding: 9px 30px;
  border: 0;
  cursor: pointer;
}

.subscribe-form input {
  margin: 0;
  background: #fff;
  border-radius: 12px 0px 0px 12px;
  border: 0;
}

.subscribe-form input::placeholder {
  color: #797A7E;
  font-size: 14px;
}

@media only screen and (max-width:767px) {
  .subscribe-form form {
    justify-content: center;
  }
  .subscribe-form input {
    width: 200px;
  }
}

footer .footer-top .social-area {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding-left: 0;
}

footer .footer-top .social-area li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  transition: .35s;
}

footer .footer-top .social-area li a:before {
  content: none;
}

footer .footer-top .social-area li a i {
  transition: .35s;
  font-size: 16px;
  color: var(--thm-color-white);
}

footer .footer-top .social-area li a:hover {
  background-color: var(--thm-base);
  border-color: var(--thm-base);
}

@media only screen and (max-width:767px) {
  footer .footer-top .social-area {
    justify-content: center;
  }
}

.footer-bottom {
  background: #367036;
  padding: 20px 0;
}

@media only screen and (max-width: 991px) {
  .footer-bottom [class*="col-lg"],
  .footer-bottom [class^="col-lg"] {
    text-align: center !important;
    padding: 10px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-bottom p {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom p {
    margin-bottom: 10px;
  }
}

.footer-bottom .links:hover {
  color: var(--thm-color-white);
}

.footer-bottom .links::before {
  background-color: var(--thm-color-white);
}

.footer-bottom a {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
}

.footer-bottom .copyright-text p {
  margin-bottom: 0;
  margin-top: 0;
}

/*========  End of Footer Area css  =========*/


/***

  ====================================================================
    Contactus Area Css
  ====================================================================

***/

.contactbg {
  filter: drop-shadow(0px 1px 25.5px rgba(0,0,0,0.15));
  background: #fff;
  padding: 60px 25px 61px;
}
.contactbg .contact-info {
  background: var(--thm-primary);
  padding: 78px 36px 46px;
}
.contact-title h2 {
  font-size: 36px;
  color: var(--thm-base);
  font-weight: 700;
  border-bottom: 1px solid var(--thm-base);
  padding-bottom: 20px;
  margin-bottom: 40px;
  line-height: 1;
}
.infobox {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  background: var(--thm-color-white);
  padding: 20px;
}
.infobox-icon i {
  display: inline-block;
  width: 59px;
  line-height: 59px;
  height: 59px;
  text-align: center;
  background: var(--thm-base);
  color: var(--thm-color-white);
  font-size: 22px;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.infobox:hover .infobox-icon i{
  background: var(--thm-base);
}
.infobox-content {
  margin-left: 20px;
}
.infobox-content h5 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--thm-base);
}
.infobox-content span, 
.infobox-content span > a {
  color: #7f7f7f;
}
.infobox-content span > a:hover {
  color: var(--thm-base);
  text-decoration: underline;
}
.contact-area .form-group input {
  background: #f3f3f3;
  font-size: 16px;
}
.form-group input {
  width: 100%;
  height: 60px;
  border: none;
  padding-left: 32px;
  border-radius: 5px;
}
.form-group textarea {
  width: 100%;
  border: none;
  background: #f3f3f3;
  padding: 15px 32px;
}
.form-group input::placeholder{
  font-size: 16px;
  color:  #757575;
  font-weight: 400;
}
.form-group textarea::placeholder{
  font-size: 16px;
  color:  #757575;
  font-weight: 400;
}
.form-group textarea:focus{
  border: none;
  outline: 0;
  box-shadow: none;
}

.btn-style4.irotate {
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-style4.irotate i {
  font-size: 22px;
}

.contact-right-title h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 60px;
  position: relative;
  color: var(--thm-base);
}
.contact-right-title h2:before {
  position: absolute;
  content: "";
  bottom: -25px;
  left: 0;
  width: 125px;
  height: 1px;
  background: var(--thm-base);
}
.contact-right {
  margin-left: 35px;
}

.contact-map iframe {
  width: 100%;
  height: 545px;
  filter: saturate(0);
}

/*========  End of Contactus Area css  =========*/

/***

  ====================================================================
    Gallery Area Css
  ====================================================================

***/

.gallery-area{
  position: relative;
}

.gallery-item .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.gallery-item .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--thm-base);
  border-radius: 5px;
}

.gallery-item .inner-box .image-box img{
  width: 100%;
  height: 320px;
  border-radius: 5px;
  transition: all 500ms ease;
}

.gallery-item .inner-box:hover .image-box img{
  opacity: 0.3;
  transform: scale(1.05);
}

.gallery-item .inner-box .view-btn{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.gallery-item .inner-box .view-btn a{
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: #fff;
  transform: scale(0,0);
}

.gallery-item .inner-box .view-btn a:hover{
  color: var(--thm-color-white);
}

.gallery-item .inner-box:hover .view-btn a{
  transform: scale(1,1);
}

.vbox-container img {
  max-width: 100%; /* Ensure images don't exceed the container width */
  height: calc(100vh - 100px); /* Allow images to adjust their height proportionally */
}

.vbox-next span, .vbox-prev span {
  width: 13px;
  height: 13px;
  top: 11px;
}

.vbox-close {
  right: 18px;
  top: 1px;
  background: #000 !important;
  width: 40px;
  height: 36px;
}

.vbox-next,
.vbox-prev {
  background: #000 !important;
  width: 35px;
  height: 36px;
}

.vbox-next {
  right: 18px;
}

.vbox-prev {
  left: 0;
}

.vbox-next span {
  right: 13px;
}

.vbox-prev span {
  left: 13px;
}


/*========  End of Gallery Area css  =========*/