/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigation
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&amp;display=swap");

/*== Default Css ==*/

:root {
  --thm-font: "Figtree", sans-serif;
  --thm-font-2: "Barlow Semi Condensed", sans-serif;
  --thm-primary-color: #ce1220;
  --thm-primary-color-rgb: 255, 75, 12;

  --thm-body-font-color: #696767;
  --thm-body-font-size: 17px;
  --thm-body-line-height: 26px;
  --thm-body-font-weight: 400;

  --thm-heading-font-color: #191a1c;
  --thm-white: #ffffff;
  --thm-black: #191a1c;
  --thm-black-bg: #191a1c;
  --thm-gray-bg: #f5f4f4;
  --thm-border-color: #e3e3e3;
  --thm-border-radius: 4px;
}

body {
  font-family: var(--thm-font);
  color: var(--thm-body-font-color);
  font-size: var(--thm-body-font-size);
  line-height: var(--thm-body-line-height);
  font-weight: var(--thm-body-font-weight);
}

.body-bg-1 {
  background-color: #ffffff;
}

p {
  font-family: var(--thm-font);
  color: var(--thm-body-font-color);
  font-size: var(--thm-body-font-size);
  line-height: var(--thm-body-line-height);
  font-weight: var(--thm-body-font-weight);
  margin: 0;
}

a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

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

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

section {
  position: relative;
  display: block;
  z-index: 1;
}

body.locked {
  overflow: hidden;
}

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

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--thm-heading-font-color);
  font-family: var(--thm-font-2);
  font-weight: 700;
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.fancybox-slide .fancybox-image-wrap {
  border-radius: 10px;
  overflow: hidden;
}

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

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol,
li {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

/* Form validation styles */
input:focus,
textarea:focus,
select:focus {
  border-color: #43c3ea;
  outline: none;
}

#contact-form input[type="text"].error {
  border-color: red;
}

#contact-form input[type="email"].error {
  border-color: red;
}

#contact-form select.error {
  border-color: red;
}

#contact-form textarea.error {
  border-color: red;
}

#contact-form label.error {
  display: none !important;
}

.rating-box-style1 {
  position: relative;
  display: block;
}

.rating-box-style1 ul {
  position: relative;
  display: flex;
}

.rating-box-style1 ul li {
  position: relative;
  display: block;
  line-height: 0;
}

.rating-box-style1 ul li + li {
  padding-left: 5px;
}

.rating-box-style1 ul li span {
  position: relative;
  display: inline-block;
  color: var(--thm-primary-color);
  font-size: 16px;
  cursor: pointer;
}

/** Thm Social Link **/
.thm-social-link {
  position: relative;
  display: block;
  padding-top: 30px;
}

.thm-social-link ul {
  position: relative;
  display: block;
}

.thm-social-link ul li {
  position: relative;
  float: left;
  margin-right: 10px;
}

.thm-social-link ul li:last-child {
  margin-right: 0;
}

.thm-social-link ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: var(--thm-black);
  border-radius: 5px;
  color: var(--thm-white);
  font-size: 18px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.thm-social-link ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background-color: rgba(var(--thm-primary-color-rgb), 1);
  border-radius: 5px;
  content: "";
  opacity: 0;
  transform: scale(0.5);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.thm-social-link ul li:hover a:before {
  opacity: 1;
  transform: scale(1);
}

.thm-social-link ul li:hover a {
  color: #ffffff;
}

/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  position: fixed;
  top: 0;
  left: 0%;
  bottom: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  cursor: url(../images/icon/cross-out.html), pointer;
  z-index: 99999999;

  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: left right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: 0.95;
  visibility: visible;
  right: 100%;
  background: var(--thm-black);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: left center;
}

.xs-sidebar-widget {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  max-width: 460px;
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
  overflow-y: auto;

  transition-timing-function: ease-out;
  transition: 0.5s;

  visibility: hidden;
  opacity: 1;
  z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  right: 0;
  transition-timing-function: ease-in;
  transition: 0.5s;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 900ms ease 500ms;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  z-index: 0;
  background-color: #000000;
}

.sidebar-textwidget {
  padding: 50px 45px;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--thm-black);
  border-radius: 50%;
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--thm-primary-color);
  border-color: var(--thm-primary-color);
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  display: block;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
  position: relative;
  display: inline-block;
}

.xs-sidebar-group .content-inner h3 {
  color: var(--thm-black);
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--thm-font);
  margin-bottom: 22px;
}

.xs-sidebar-group .content-inner h3 span {
  color: var(--thm-base);
  font-size: 25px;
  font-weight: 900;
}

.xs-sidebar-group .content-inner .content-box {
  position: relative;
  display: block;
  padding-top: 33px;
  padding-bottom: 47px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
  position: relative;
  display: block;
}

.xs-sidebar-group .content-inner .content-box p {
  color: var(--thm-black);
}

.xs-sidebar-group .content-inner .sidebar-contact-info {
  position: relative;
  display: block;
}

.xs-sidebar-group .content-inner .sidebar-contact-info h3 {
  color: var(--thm-black);
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 27px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.sidebar-contact-info ul li:last-child {
  margin-bottom: 0;
}

.sidebar-contact-info ul li .inner {
  position: relative;
  display: block;
  padding-left: 0;
}

/***
.sidebar-contact-info ul li .inner .icon {
    position: absolute;
    top: 0px;
    left: 0;
}
.sidebar-contact-info ul li .inner .icon span {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-size: 27px;
    line-height: 27px;
    font-weight: 500;
}
.sidebar-contact-info ul li .inner .icon span.map-marker {
    color: var(--thm-base);
    position: relative;
    top: 8px;
    font-size: 32px;
}
**/

.sidebar-contact-info ul li .inner .text {
  position: relative;
  display: block;
}

.sidebar-contact-info ul li .inner .text p {
  color: var(--thm-black);
  line-height: 24px;
}

.sidebar-contact-info ul li .inner .text p a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-contact-info ul li .inner .text p a:hover {
  color: var(--thm-base);
  text-shadow: -0.45px -0.45px 0 var(--thm-base), 0.45px 0.45px var(--thm-base);
}

.xs-sidebar-group .content-inner .side-content-newsletter-box {
  position: relative;
  display: block;
  padding-top: 49px;
}

.xs-sidebar-group .content-inner .side-content-newsletter-box h3 {
  color: var(--thm-black);
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 24px;
}

.side-content-newsletter-box .form-group input[type="email"] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  background-color: rgb(248, 248, 248);
  border: 1px solid #e3dfdf;
  padding-left: 30px;
  padding-right: 20px;
  border-radius: 6px;
  font-family: var(--thm-font);
}

.side-content-newsletter-box .form-group button {
  margin-top: 30px;
}

/*== Review Css ======*/
.review-box {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 15px;
}

.review-box ul {
  display: block;
  overflow: hidden;
}

.review-box ul li {
  display: inline-block;
  float: left;
  margin-right: 5px;
  cursor: pointer;
}

.review-box ul li:last-child {
  margin-right: 0px;
}

.review-box ul li i {
  color: #fbaf02;
  font-size: 15px;
}

/*== Section Title Css ======*/
.sec-title {
  position: relative;
  display: block;
  margin-top: -8px;
  padding-bottom: 49px;
}

.sec-title.withtext {
  padding-bottom: 52px;
}

.sec-title .sub-title {
  position: relative;
  display: inline-block;
}

.sec-title .sub-title h4 {
  color: var(--thm-primary-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
  z-index: 1;
}

.sec-title .sub-title .border-line {
  position: relative;
  display: block;
  height: 1px;
  background-color: var(--thm-primary-color);
}

.sec-title .sub-title .border-line::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: var(--thm-primary-color);
  border-radius: 50%;
}

.sec-title .sub-title .border-line::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  background-color: var(--thm-primary-color);
  border-radius: 50%;
}

.sec-title h2 {
  color: var(--thm-black);
  font-size: 56px;
  line-height: 1.2em;
  text-transform: uppercase;
  margin-top: 16px;
}

.sec-title .text {
  position: relative;
  display: block;
  padding-top: 13px;
}

/*== Btn One Css ======*/
.btn-box {
  position: relative;
  display: block;
}

.btn-one {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  padding-top: 10px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 10px;
  background-color: transparent;
  color: var(--thm-white);
  font-size: 16px;
  line-height: 40px;
  font-family: var(--thm-font-2);
  font-weight: 700;
  border-radius: 0px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 2;
}

.btn-one:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  transform: scaleX(1);
  transition-duration: 800ms;
  background-color: var(--thm-primary-color);
  z-index: -1;
}

.btn-one:hover:after {
  transform: scaleX(0);
  transition-duration: 1500ms;
}

.btn-one:before {
  position: absolute;
  top: 0px;
  left: -10px;
  bottom: 0;
  right: 100%;
  content: "";
  background: var(--thm-black);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  border-radius: 0%;
  transition-duration: 800ms;
  z-index: 1;
}

.btn-one:hover:before {
  right: 0px;
  left: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.btn-one .txt {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 1;
}

.btn-one:hover,
.btn-one:focus {
  color: #ffffff;
  -webkit-box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
  -moz-box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
  box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
}

.btn-one i {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  margin-right: 9px;
  top: 0px;
  z-index: 1;
}

/*== Btn Two Css ======*/
.btn-two {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--thm-base);
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--thm-font-3);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.btn-two span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--thm-black);
  font-size: 18px;
  margin-left: 10px;
  transition: border-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.btn-two:hover span {
  color: #ffffff;
}

.btn-two span:after {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--thm-base);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(0.5);
  transform-style: preserve-3d;
  z-index: -1;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.btn-two:hover span:after {
  opacity: 1;
  transform: scale(1);
}

.btn-two:hover {
  color: var(--thm-base);
  letter-spacing: normal;
}

/*== Section Btn Css ======*/
.section-btn {
  position: relative;
  display: block;
  text-align: center;
  line-height: 0;
  margin-top: 40px;
  z-index: 1;
}

.section-btn::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: var(--thm-border-color);
  z-index: -1;
}

.section-btn-inner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 21px;
  background-color: transparent;
  border: 1px solid var(--thm-border-color);
  padding: 7px 25px 7px;
  z-index: 1;
}

.section-btn-inner p {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.section-btn-inner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-white);
  background-repeat: repeat;
  z-index: -1;
}

.section-btn-inner p a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--thm-black);
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;
  font-family: var(--thm-font-2);
  text-transform: uppercase;
  margin-left: 8px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.section-btn-inner p a i {
  font-size: 14px;
  margin-right: 6px;
}

.section-btn-inner p a:hover {
  color: var(--thm-primary-color);
}

/*== Owl Dot Style One Css ======*/
.owl-carousel.owl-dot-style1 .owl-dots {
  position: relative;
  text-align: center;
  line-height: 0;
  margin-top: 60px !important;
  display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #aca3a3;
  border: 0px solid #aca3a3;
  margin: 0px 10px;
  padding: 0px;
  border-radius: 50%;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active {
  width: 50px;
  border-radius: 4px;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border-radius: 4px;
  background-color: var(--thm-primary-color);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: left right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: left right;
}

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

/*== Owl Dot Style Two Css ======*/
.owl-carousel.owl-dot-style2 .owl-dots {
  position: relative;
  text-align: center;
  line-height: 0;
  margin-top: 30px !important;
  display: block;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 5px solid #ffffff;
  margin: 0px 5px;
  padding: 0px;
  border-radius: 50%;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  border: 1px solid var(--thm-base);
  border-radius: 50%;
  transform: scale(0);
  transition: all 500ms ease;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active {
  border: 5px solid #1a1c23;
  background-color: var(--thm-base);
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active:before {
  transform: scale(1);
}

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

/*== Owl Nav Style One Css ======*/
.owl-nav-style-one.owl-theme .owl-stage-outer {
  position: relative;
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
}

.owl-nav-style-one.owl-theme .owl-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 130px;
  margin: 0;
  z-index: 10;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: var(--thm-gray-bg);
  border: 0px solid var(--thm-border-color);
  border-radius: 0;
  margin: 0 5px;
  padding: 0;
  transition: all 700ms ease 3s;
  z-index: 1;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover {
  border: 0px solid transparent;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  background-color: var(--thm-primary-color);
  border-radius: 0px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(0);
  -ms-transform: perspective(400px) rotateX(0deg) scale(0);
  transform: perspective(400px) rotateX(0deg) scale(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: -1;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover::before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1);
  -ms-transform: perspective(400px) rotateX(0deg) scale(1);
  transform: perspective(400px) rotateX(0deg) scale(1);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
  position: relative;
  display: block;
  color: var(--thm-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 900;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
  transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav .owl-next {
  transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover span {
  color: var(--thm-white);
}

/*== Scrool To Top Css ======*/
.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 50px;
  transform: rotate(180deg);
  z-index: 99999999999;
}

.scroll-to-top .visible {
  visibility: visible !important;
  opacity: 1 !important;
}

.scroll-to-top .scroll-top-inner {
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top .scroll-top-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.scroll-to-top .scroll-bar {
  width: 50px;
  height: 4px;
  margin-right: 10px;
  position: relative;
  display: none;
}

.scroll-to-top .scroll-bar:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--thm-primary-color);
  opacity: 1;
}

.scroll-to-top .scroll-bar .bar-inner {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: var(--thm-secondary-color);
}

.scroll-to-top .scroll-bar-text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--thm-white);
  border-radius: 0px;
  border: 0px solid #2f5154;
  color: var(--thm-black);
  font-size: 22px;
  cursor: pointer;
  transform: rotate(90deg);
  transition: all 500ms ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.scroll-to-top .scroll-bar-text:hover {
  color: var(--thm-white);
  transform: scale(1) rotate(90deg);
  background-color: var(--thm-primary-color);
}

.scroll-to-top.bg2 .scroll-bar-text {
  background: #0a3e56;
}

.scroll-to-top--style2 {
  position: relative;
  top: 0px;
  right: 0;
  bottom: 0;
  transform: rotate(0deg);
}

.scroll-to-top--style2 .scroll-bar {
  display: none;
}

.scroll-to-top--style2 .scroll-bar-text {
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  font-family: var(--thm-font-2);
  transition: all 500ms ease;
  width: auto;
  height: auto;
  background: transparent;
}

.scroll-to-top--style2 .scroll-bar-text p {
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--thm-font-2);
}

.scroll-to-top--style2 .scroll-bar-text:hover p {
  color: var(--thm-primary-color);
}

.scroll-to-top--style2 .scroll-bar-text span {
  position: relative;
  top: 0;
  display: inline-block;
  padding-left: 10px;
  color: var(--thm-primary-color);
  font-size: 16px;
}

/*== Styled Pagination Css ======*/
.styled-pagination {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
}

.styled-pagination.pdtop60 {
  padding-top: 60px;
}

.styled-pagination.pdtop30 {
  padding-top: 30px;
}

.styled-pagination li {
  position: relative;
  display: block;
  float: left;
}

.styled-pagination li + li {
  margin-left: 10px;
}

.styled-pagination li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: transparent;
  border: 1px solid #e3e3e3;
  color: #a9a7a6;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  font-family: var(--thm-font-2);
  text-align: center;
  text-transform: uppercase;
  transition: all 500ms ease;
  z-index: 1;
}

.styled-pagination li a span:before {
  position: relative;
  top: 0px;
  color: var(--thm-black);
  font-size: 20px;
  transition: all 500ms ease;
}

.styled-pagination li:hover a span::before,
.styled-pagination li.active a span::before {
  color: var(--thm-white);
}

.styled-pagination li.prev {
  transform: rotate(0deg);
}

.styled-pagination li.prev a span:before {
  position: relative;
  display: inline-block;
}

.styled-pagination li.next a span:before {
  position: relative;
  display: inline-block;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: #ffffff;
  border-color: var(--thm-primary-color);
  background: var(--thm-primary-color);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  width: 60px;
  height: 60px;
  background-color: transparent;
  border-color: #e3e3e3;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: #ffffff;
  background-color: var(--thm-primary-color);
  border-color: var(--thm-primary-color);
}

/*== checked Css Css ======*/
.checked-box1 {
  position: relative;
  display: block;
  min-height: 26px;
}

.checked-box1 input[type="checkbox"] {
  display: none;
}

.checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  color: var(--thm-body-font-color);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--thm-font);
}

.checked-box1 input[type="checkbox"] + label span {
  position: absolute;
  display: block;
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid #e3e4ea;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box1 label span:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--thm-primary-color);
  border-radius: 50%;
  margin: 2px auto 0px;
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box1 input[type="checkbox"]:checked + label span {
  border-color: #e3e4ea;
}

.checked-box1 input[type="checkbox"]:checked + label span:before {
  transform: scale(1);
}

/*== checked Css Css ======*/
.checked-box2 {
  position: relative;
  display: block;
  min-height: 28px;
}

.checked-box2 input[type="checkbox"] {
  display: none;
}

.checked-box2 label {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  color: var(--thm-body-font-color);
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--thm-font);
}

.checked-box2 input[type="checkbox"] + label span {
  position: absolute;
  top: 6px;
  left: 0;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid var(--thm-border-color);
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box2 label span:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--thm-primary-color);
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box2 input[type="checkbox"]:checked + label span {
  border-color: var(--thm-primary-color);
}

.checked-box2 input[type="checkbox"]:checked + label span:before {
  transform: scale(1);
}

/*== Star Rating Style1 Css ======*/
.star-rating-style1 {
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  direction: rtl;
}

.star-rating-style1 input[type="radio"] {
  display: none;
}

.star-rating-style1 label {
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: var(--thm-primary-color);
  font-size: 24px;
  padding: 0 1px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.star-rating-style1 input[type="radio"]:checked ~ label {
  color: var(--thm-white);
}

.star-rating-style1 label:hover,
.star-rating-style1 label:hover ~ label {
  color: var(--thm-white);
}

/*== Accordion Box Css ======*/
.accordion-box {
  position: relative;
  display: block;
}

.accordion-box .block {
  position: relative;
  display: block;
  margin-bottom: 20px;
  transition: all 500ms ease;
}

.accordion-box .block:last-child {
  margin-bottom: 0px;
}

.accordion-box .block .acc-btn {
  position: relative;
  display: block;
  cursor: pointer;
  background: #ffffff;
  padding-top: 9px;
  padding-left: 55px;
  padding-bottom: 9px;
  padding-right: 20px;
  border: 1px solid #d4d4d4;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active {
  background: #ffffff;
  border-bottom: 1px solid transparent;
}

.accordion-box .block .acc-btn h3 {
  color: var(--thm-black);
  font-size: 19px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--thm-font);
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h3 {
  color: var(--thm-base);
}

.accordion-box .block .acc-btn .icon-outer {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 20px;
  height: 20px;
  color: var(--thm-black);
  font-size: 18px;
  text-align: left;
  line-height: 20px;
  cursor: pointer;
  transform: translateY(-50%) rotate(0deg);
  transition: all 500ms ease;
  z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer {
  color: var(--thm-base);
  transform: translateY(-50%) rotate(0deg);
}

.accordion-box .block .acc-btn .icon-outer i:before {
  font-weight: 700;
}

.accordion-box .block .acc-btn.active .icon-outer i:before {
  content: "\e90b";
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding-top: 1px;
  padding-left: 55px;
  padding-bottom: 21px;
  padding-right: 20px;
  border: 1px solid #d4d4d4;
  border-top: 1px solid transparent;
}

.accordion-box .block .acc-content.current {
  display: block;
}

.accordion-box .block .acc-content p {
  margin: 0;
}

/*== Accordion Box Style 1 Css ======*/
.accordion-box-style1 {
  position: relative;
  display: block;
}

.accordion-box-style1 .accordion {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.accordion-box-style1 .accordion:last-child {
  margin-bottom: 0;
}

.accordion-box-style1 .accordion .accord-btn {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--thm-gray-bg);
  padding-top: 20px;
  padding-left: 55px;
  padding-bottom: 20px;
  padding-right: 0px;
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 3;
}

.accordion-box-style1 .accordion .accord-btn h4 {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}

.accordion-box-style1 .accordion .accord-btn .right-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 115px;
  background-color: var(--thm-white);
  text-align: right;
  height: 25px;
}

.accordion-box-style1 .accordion .accord-btn .right-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 20px;
  height: 25px;
  border-right: 20px solid var(--thm-white);
  border-bottom: 25px solid transparent;
}

.accordion-box-style1 .accordion .accord-btn .right-box h5 {
  position: relative;
  top: -5px;
  color: #a9a7a6;
  font-size: 16px;
  text-transform: uppercase;
}

.accordion-box-style1 .accordion .accord-btn.active {
}

.accordion-box-style1 .accordion .accord-btn.active h4 {
  color: var(--thm-primary-color);
}

.accordion-box-style1 .accordion .accord-btn::after {
  font-family: "icomoon" !important;
  position: absolute;
  content: "\e907";
  top: 50%;
  left: 30px;
  margin-top: 0px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-black);
  font-size: 16px;
  transform: translateY(-50%);
  transition: all 500ms ease 0s;
}

.accordion-box-style1 .accordion .accord-btn.active {
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.accordion-box-style1 .accordion .accord-btn.active:after {
  color: var(--thm-primary-color);
  content: "\e93a";
}

.accordion-box-style1 .accordion .accord-content {
  position: relative;
  background-color: var(--thm-white);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.12);
  padding-top: 23px;
  padding-left: 30px;
  padding-bottom: 23px;
  padding-right: 30px;
  display: none;
  z-index: 2;
}

.accordion-box-style1 .accordion .accord-content.collapsed {
  display: block;
}

.accordion-box-style1 .accordion .accord-content p {
  margin: 0;
}

/*== Search Popup Css ======*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 300px;
  padding-left: 20px;
  padding-right: 20px;
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10%);
  transform: translateY(-10%);
  z-index: 9999;
}

.search-popup.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.search-popup__overlay {
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0%;
  height: 300px;
  background-color: var(--thm-primary-color);
  opacity: 1;
  cursor: pointer;
}

.search-popup__close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-color: var(--thm-black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-white);
  font-size: 24px;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
  background-color: #000000;
  padding: 10px;
  z-index: 10;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 0px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
  background-color: #fff;
  color: var(--thm-black);
  font-size: 16px;
  border: none;
  outline: none;
  padding-left: 30px;
  padding-right: 80px;
}

.search-popup__content .thm-btn {
  position: absolute;
  top: 0;
  right: 0px;
  padding: 0;
  width: 60px;
  height: 70px;
  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;
  text-align: center;
  border-radius: 0;
  background-color: var(--thm-black);
  border: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.search-popup__content .thm-btn i {
  background-color: transparent;
  margin-left: 0;
}

.search-popup__content .thm-btn:hover {
  color: #ffffff;
  background-color: var(--thm-primary-color);
}

/* Preloader */
.handle-preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  z-index: 9999999;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  margin: 0 auto 45px auto;
  animation: spinner 1s infinite linear;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
  position: relative;
  display: inline-block;
  font-family: var(--thm-font-3);
  font-weight: 700;
  letter-spacing: 15px;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  animation-delay: 0.1s;
}

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  animation-delay: 0.2s;
}

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  animation-delay: 0.3s;
}

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  animation-delay: 0.4s;
}

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  animation-delay: 0.5s;
}

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  animation-delay: 0.6s;
}

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  animation-delay: 0.7s;
}

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(9):before {
  animation-delay: 0.8s;
}

.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  color: #ffffff;
}

.handle-preloader .animation-preloader .spinner {
  border: 3px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.7);
}

/* AnimaciĆĀ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

.loader-wrap .layer-one {
  position: absolute;
  left: 0%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer-two {
  position: absolute;
  left: 33.3333%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer-three {
  position: absolute;
  left: 66.6666%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--thm-black);
}

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}

@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }

  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 40px;
    letter-spacing: 10px;
  }
}

@-webkit-keyframes pulse10 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #ee212b;
    box-shadow: 0 0 0 0 #ee212b;
  }

  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
  }

  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
  }
}

@keyframes pulse10 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #ee212b;
    box-shadow: 0 0 0 0 #ee212b;
  }

  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
  }

  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
  }
}

/*================================
    Video Style1 Css
================================*/
.video-style1 {
  padding: 176px 0px 188px;
}

.video-style1__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  z-index: -1;
}

.video-style1__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgb(25, 26, 28, 0.6);
}

.video-style2__bg::before {
  background-color: rgb(30, 30, 23, 0.4);
}

.video-style1__inner {
  position: relative;
  display: block;
  padding-left: 30px;
}

.video-style1__inner::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  bottom: 12px;
  width: 2px;
  background-color: var(--thm-white);
}

.video-style1__inner .top-title {
  position: relative;
  display: flex;
  align-items: center;
}

.video-style1__inner .top-title .big-title {
  position: relative;
  display: block;
  color: var(--thm-white);
  font-size: 120px;
  line-height: 1em;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
}

.video-style1__inner .top-title .video-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 25px;
  width: 70px;
  height: 70px;
  background-color: transparent;
  border: 1px solid var(--thm-white);
  margin-left: 26px;
  top: 7px;
  z-index: 3;
}

.video-style1__inner .top-title .video-popup::after,
.video-style1__inner .top-title .video-popup::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 0%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.video-style1__inner .top-title .video-popup::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.video-style1__inner .bottom-title {
  position: relative;
  display: flex;
  align-items: center;
}

.video-style1__inner .bottom-title .sub-title {
  position: relative;
  display: block;
  max-width: 205px;
  width: 100%;
  color: #aeb0b4;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
}

.video-style1__inner .bottom-title .big-title {
  position: relative;
  display: block;
  color: var(--thm-white);
  font-size: 120px;
  line-height: 1em;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
}

/*================================
    Book Event Style1 Css
================================*/
.book-event-style1 {
  background-color: var(--thm-gray-bg);
  padding: 140px 0px 100px;
}

.book-event-style1--style2 {
  padding: 0px 0px 100px;
}

.book-event-style1__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
}

.book-event-style1__inner {
  position: relative;
  display: block;
  z-index: 5;
}

.single-book-event-style1 {
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.single-book-event-style1 .event-name {
  position: relative;
  display: block;
  max-width: 530px;
  width: 100%;
  background-color: var(--thm-white);
  clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
  border: 1px solid var(--thm-border-color);
  border-bottom: 0;
  padding: 14px 30px 15px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-book-event-style1:hover .event-name {
  background-color: var(--thm-primary-color);
  border-color: var(--thm-primary-color);
}

.single-book-event-style1 .event-name::before {
  content: "";
  position: absolute;
  top: -31px;
  right: 22px;
  bottom: 0;
  width: 4px;
  height: 100px;
  background-color: var(--thm-border-color);
  transform: rotate(-32deg);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 10;
}

.single-book-event-style1:hover .event-name::before {
  background-color: var(--thm-primary-color);
}

.single-book-event-style1 .event-name h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  transition: all 220ms linear;
  transition-delay: 0.1s;
}

.single-book-event-style1:hover .event-name h3 {
  color: var(--thm-white);
}

.single-book-event-style1 .event-number {
  position: absolute;
  top: 15px;
  right: 0;
}

.single-book-event-style1 .event-number h3 {
  color: #c6c5c5;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}

.single-book-event-style1 ul {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--thm-white);
  border: 1px solid var(--thm-border-color);
  padding: 9px 9px 9px;
}

.single-book-event-style1 ul .date-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100px;
  height: 100px;
  background-color: var(--thm-gray-bg);
  padding-left: 20px;
}

.single-book-event-style1 ul .date-box h2 {
  font-size: 44px;
  line-height: 1em;
}

.single-book-event-style1 ul .date-box .month-year {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  transform: rotate(180deg);
  writing-mode: vertical-lr;
  background-color: var(--thm-white);
  padding: 14px 0px 0px;
}

.single-book-event-style1 ul .date-box .month-year h6 {
  color: #a9a7a6;
  font-size: 14px;
  line-height: 25px;
  text-transform: uppercase;
}

.single-book-event-style1 ul li {
  position: relative;
  display: block;
  max-width: 317px;
  width: 100%;
  padding-left: 30px;
  flex: 1;
}

.single-book-event-style1 ul li:first-child {
  flex: none;
}

.single-book-event-style1 ul li::before {
  content: "";
  position: absolute;
  top: -30px;
  right: 0;
  bottom: -30px;
  width: 1px;
  background-color: var(--thm-border-color);
}

.single-book-event-style1 ul li:first-child::before {
  display: none;
}

.single-book-event-style1 ul li:nth-child(4)::before {
  display: none;
}

.single-book-event-style1 ul li:last-child::before {
  display: none;
}

.single-book-event-style1 ul li .duration-box {
  position: relative;
  display: flex;
  align-items: center;
}

.single-book-event-style1 ul li .duration-box .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--thm-gray-bg);
  color: var(--thm-primary-color);
  font-size: 20px;
  line-height: 20px;
}

.single-book-event-style1 ul li .duration-box .icon img {
  width: auto;
}

.single-book-event-style1 ul li .duration-box .left-title {
  position: relative;
  display: block;
  padding-left: 20px;
  flex: 1;
}

.single-book-event-style1 ul li .duration-box .left-title .sub-title {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin-bottom: 14px;
  top: -8px;
}

.single-book-event-style1 ul li .duration-box .left-title .sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  border-bottom: 2px dashed #e2dfdf;
}

.single-book-event-style1 ul li .duration-box .left-title .sub-title h4 {
  color: #a9a7a6;
  font-size: 16px;
  line-height: 12px;
  text-transform: uppercase;
}

.single-book-event-style1 ul li .duration-box .left-title h3 {
  font-size: 20px;
  line-height: 15px;
  text-transform: uppercase;
}

.single-book-event-style1 ul li .duration-box .left-title .title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 175px;
  width: 100%;
}

.single-book-event-style1 ul li .duration-box .left-title .title h3 {
  font-size: 20px;
  line-height: 15px;
  text-transform: uppercase;
}

.single-book-event-style1 ul li .duration-box .left-title .title .icon1 {
  position: relative;
  display: block;
  line-height: 0;
}

.single-book-event-style1 ul li .duration-box .left-title .title .icon1 a {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 20px;
  line-height: 14px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-book-event-style1
  ul
  li
  .duration-box
  .left-title
  .title
  .icon1
  a:hover {
  color: var(--thm-primary-color);
}

.single-book-event-style1 ul .btn-box {
  position: relative;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  max-width: 255px;
}

.single-book-event-style1 ul .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100px;
  height: 100px;
  padding-top: 23px;
  background-color: var(--thm-gray-bg);
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.single-book-event-style1:hover ul .btn-box a {
  color: var(--thm-white);
  background-color: var(--thm-primary-color);
}

.single-book-event-style1 ul .btn-box a i {
  margin-top: 4px;
  font-size: 22px;
}

.single-book-event-style1 ul .btn-box a::before {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: translateX(10px);
  background-color: var(--thm-white);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.single-book-event-style1:hover ul .btn-box a::before {
  opacity: 1;
  transform: translateX(0px);
}

/*================================
    Subscribe Style1 Css
================================*/
.subscribe-style1 {
  overflow: hidden;
  background-color: var(--thm-white);
  padding: 140px 0px 140px;
  min-height: 705px;
}

.subscribe-style1 .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  opacity: 0.04;
  z-index: -1;
}

.subscribe-style1 .shape1 ul {
  position: absolute;
  top: 0px;
  left: 0px;
  will-change: transform;
  transform: translateY(0);
  white-space: nowrap;
  -webkit-animation: marqueeinvert 50s linear infinite;
  animation: marqueeinvert 50s linear infinite;
}

.subscribe-style1 .shape1 ul li {
  position: relative;
  display: flex;
  align-items: center;
  transform: rotate(0deg);
}

.subscribe-style1 .shape1 ul li + li {
  margin-top: 0px;
}

.subscribe-style1 .shape1 ul li img {
  width: auto;
}

@keyframes marqueeinvert {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-moz-keyframes marqueeinvert {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes marqueeinvert {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

.subscribe-style1 .sec-title {
  padding-top: 53px;
  padding-bottom: 12px;
  margin: 0;
}

.subscribe-style1-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 425px;
  height: 425px;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.subscribe-style1-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background-color: var(--thm-white);
  border: 1px solid var(--thm-border-color);
  z-index: -2;
}

.subscribe-style1-img img {
  width: auto;
  opacity: 0.1;
}

.subscribe-style1-content {
  position: relative;
  display: block;
  z-index: 1;
}

.subscribe-style1-content .text {
  position: relative;
  display: block;
}

.subscribe-style1-content .text p {
  margin: 0;
}

.subscribe-style1-form {
  position: relative;
  display: block;
  max-width: 770px;
  width: 100%;
  margin: 32px auto 0px;
}

.subscribe-style1-form form {
  position: relative;
  display: block;
}

.subscribe-style1-form form .form-group {
  position: relative;
  display: block;
}

.subscribe-style1-form form .form-group .icon {
  position: absolute;
  top: 50%;
  left: 20px;
  color: var(--thm-primary-color);
  font-size: 25px;
  line-height: 20px;
  z-index: 1;
  transform: translateY(-50%);
}

.subscribe-style1-form form input[type="email"] {
  position: relative;
  display: block;
  border: 0px solid transparent;
  background-color: var(--thm-white);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.12);
  border-radius: 0;
  max-width: 770px;
  width: 100%;
  height: 60px;
  color: var(--thm-black);
  font-size: 17px;
  font-family: var(--thm-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 60px;
  padding-right: 180px;
  text-transform: capitalize;
  transition: all 500ms ease;
}

.subscribe-style1-form form input[type="email"]::-webkit-input-placeholder {
  color: var(--thm-black);
}

.subscribe-style1-form form input[type="email"]:-moz-placeholder {
  color: var(--thm-black);
}

.subscribe-style1-form form input[type="email"]:-ms-input-placeholder {
  color: var(--thm-black);
}

.subscribe-style1-form form .btn-box {
  position: absolute;
  display: inline-flex;
  align-items: center;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  background-color: transparent;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.subscribe-style1-form form .btn-box i {
  margin-right: 5px;
}

.subscribe-style1-form form .btn-box:hover {
  color: var(--thm-primary-color);
}

.subscribe-style1-form .title {
  position: relative;
  display: block;
  padding-top: 22px;
}

.subscribe-style1-form .title h4 {
  color: var(--thm-body-font-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
}

/*** 
======================
    Choose Style1      
======================
***/
.choose-style1 {
  background-color: var(--thm-gray-bg);
}

.choose-style1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background-color: var(--thm-gray-bg);
  z-index: 1;
}

.choose-style1__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
}

.choose-style1 .auto-container {
  max-width: 1670px;
}

.choose-style1__inner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--thm-black-bg);
  z-index: 10;
}

.choose-style1__inner .row {
  --bs-gutter-x: 0px;
}

.choose-style1__content {
  position: relative;
  display: block;
  padding: 132px 0px 133px;
  margin-right: 55px;
}

.choose-style1__content li + li {
  margin-top: 55px;
}

.single-choose-style1 {
  position: relative;
  display: block;
  padding: 0px 0px 0px;
  padding-right: 65px;
  z-index: 1;
}

.single-choose-style1::before {
  content: "";
  position: absolute;
  top: 42px;
  left: -235px;
  right: 0;
  height: 1px;
  background-color: #2d2e31;
  z-index: -1;
}

.single-choose-style1 .count {
  position: relative;
  display: block;
}

.single-choose-style1 .count h4 {
  color: #aeb0b4;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
}

.single-choose-style1 .icon {
  position: absolute;
  top: 8px;
  right: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #212325;
  color: var(--thm-primary-color);
  font-size: 40px;
  line-height: 40px;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.single-choose-style1:hover .icon {
  color: var(--thm-white);
  background-color: var(--thm-primary-color);
}

.single-choose-style1 .title {
  position: relative;
  display: block;
  padding: 67px 0px 0px;
}

.single-choose-style1 .title h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.single-choose-style1 .title h3 a {
  color: var(--thm-white);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-choose-style1 .title h3 a:hover {
  color: var(--thm-primary-color);
}

.single-choose-style1 .title p {
  color: #aeb0b4;
}

.choose-style1__img {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #212325;
  margin: 0px -55px 0px;
  padding-top: 32px;
  z-index: 2;
}

.choose-style1__img img {
  position: relative;
  width: 100%;
  z-index: 2;
}

.choose-style1__img-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  z-index: -1;
}

.choose-style1-scrolling-text {
  position: absolute;
  top: 0;
  right: 11px;
}

.choose-style1-scrolling-text ul {
  position: absolute;
  top: 0px;
  right: 0px;
  will-change: transform;
  transform: translateY(0);
  white-space: nowrap;
  top: 0px;
  -moz-animation: scroll-top1 100s linear infinite;
  -webkit-animation: scroll-top1 100s linear infinite;
  animation: scroll-top1 100s linear infinite;
}

.choose-style1-scrolling-text ul li {
  position: relative;
  display: flex;
  align-items: center;
  transform: rotate(-90deg);
  margin-top: 55px;
  color: rgb(255, 255, 255, 0.08);
  font-size: 100px;
  line-height: 1em;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(180deg);
  writing-mode: vertical-lr;
}

@-moz-keyframes scroll-top1 {
  0% {
    -moz-transform: translateY(0%);
  }

  100% {
    -moz-transform: translateY(-100%);
  }
}

@-webkit-keyframes scroll-top1 {
  0% {
    -webkit-transform: translateY(0%);
  }

  100% {
    -webkit-transform: translateY(-100%);
  }
}

.choose-style1__content11 {
  text-align: right;
  margin-right: 0;
  margin-left: 55px;
}

.single-choose-style1--style1 {
  padding-right: 0;
  padding-left: 65px;
}

.single-choose-style1--style1::before {
  left: 0;
  right: -235px;
}

.single-choose-style1--style1 .icon {
  left: 65px;
}

/*** 
=============================
    Choose Style1--Style2      
============================
***/
.choose-style1--style2 {
  overflow: hidden;
  padding: 140px 0px 133px;
}

.choose-style1--style2 .shape1 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 167px;
  left: 500px;
  bottom: 0;
  right: 0;
}

.choose-style1--style2::before {
  display: none;
}

.choose-style1__content--style2 {
  padding: 0px 0px 0px;
  margin-right: 0;
}

.single-choose-style1--style2 {
  padding-right: 0;
}

.single-choose-style1--style2::before {
  display: none;
}

.single-choose-style1--style2 .count h4 {
  color: #a1a19b;
}

.single-choose-style1--style2 .icon {
  right: 0px;
  background-color: transparent;
  border: 1px solid #d9d9d0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.single-choose-style1--style2:hover .icon {
  background-color: var(--thm-primary-color);
  border-color: var(--thm-primary-color);
  color: var(--thm-white);
}

.single-choose-style1--style2 .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -201px;
  height: 1px;
  width: 200px;
  background-color: #d9d9d0;
  right: 0;
  z-index: -1;
}

.single-choose-style1--style2 .title h3 a {
  color: var(--thm-black);
}

.single-choose-style1--style2 .title p {
  color: var(--thm-body-font-color);
}

.choose-style1__content11.style {
  margin-left: 0px;
}

.single-choose-style1--style1.style {
  padding-left: 0px;
}

.single-choose-style1--style1.style .icon {
  left: 0;
}

.single-choose-style1--style1.style .icon::before {
  left: auto;
  right: -201px;
}

.choose-style1__img--style2 {
  background-color: transparent;
  margin: 0px 0px 0px;
  padding-top: 0px;
  min-height: 490px;
  overflow: visible;
}

.choose-style1__img--style2 .inner {
  position: absolute;
  top: -43px;
  left: 0;
  right: 0;
  bottom: 0;
}

/*** 
=================================================
    Choose Style2      
=================================================
***/
.choose-style2 {
  background-color: var(--thm-black-bg);
  padding: 140px 0px 83px;
}

.choose-style2 .sec-title {
  padding-bottom: 57px;
}

.choose-style2 ul.row {
  --bs-gutter-x: 0px;
}

.choose-style2 .sec-title h2 {
  color: var(--thm-white);
}

li .single-choose-style2 {
  position: relative;
  display: block;
  margin-bottom: 50px;
  padding: 0 30px;
}

li .single-choose-style2::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 0;
  bottom: 7px;
  width: 1px;
  background-color: rgb(255, 255, 255, 0.15);
}

li:last-child .single-choose-style2::before {
  display: none;
}

.single-choose-style2 .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background-color: transparent;
  margin: 0 auto;
  color: var(--thm-white);
  font-size: 44px;
  line-height: 44px;
}

.single-choose-style2 .icon-box::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255, 0.3);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-choose-style2:hover .icon-box::before {
  border-color: var(--thm-primary-color);
}

.single-choose-style2 .icon-box__bg1 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.single-choose-style2:hover .icon-box__bg1 {
  opacity: 0;
}

.single-choose-style2 .icon-box__bg2 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.single-choose-style2:hover .icon-box__bg2 {
  opacity: 1;
}

.single-choose-style2 .content-box {
  position: relative;
  display: block;
  padding-top: 39px;
}

.single-choose-style2 .content-box h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.single-choose-style2 .content-box h3 a {
  color: var(--thm-white);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-choose-style2 .content-box h3 a:hover {
  color: var(--thm-primary-color);
}

.single-choose-style2 .content-box p {
  color: #a4a5a0;
}

/*** 
======================================
    Choose Style3      
======================================
***/
.choose-style3 {
  overflow: hidden;
  background-color: var(--thm-gray-bg);
  padding: 55px 0px 0px;
}

.choose-style3__img1 {
  position: absolute;
  top: 60px;
  left: 0;
  opacity: 0.08;
}

.choose-style3__img2 {
  position: absolute;
  left: 190px;
  bottom: 60px;
  opacity: 0.08;
}

.choose-style3__img {
  position: relative;
  display: block;
  margin-right: 30px;
}

.choose-style3__img .content-box {
  position: absolute;
  top: 85px;
  right: 0;
  padding: 47px 50px 130px;
  max-width: 300px;

  background: rgb(20, 18, 18);
  background: linear-gradient(
    0deg,
    rgba(20, 18, 18, 0) 5%,
    rgba(20, 18, 18, 0.3981967787114846) 20%,
    rgba(20, 18, 18, 0.7511379551820728) 35%,
    rgba(20, 18, 18, 0.9472163865546218) 55%,
    rgba(20, 18, 18, 1) 100%
  );
}

.choose-style3__img .content-box .icon {
  position: relative;
  display: block;
  color: var(--thm-primary-color);
  font-size: 36px;
  line-height: 0;
}

.choose-style3__img .content-box .title {
  position: relative;
  display: block;
  padding: 20px 0px 22px;
}

.choose-style3__img .content-box .title h3 {
  color: var(--thm-white);
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}

.choose-style3__img .content-box .border-line {
  position: relative;
  display: block;
  width: 85px;
  height: 4px;
  background-color: var(--thm-primary-color);
  clip-path: polygon(0% 0%, 100% 0, 95% 100%, 0% 100%);
}

.choose-style3__img .content-box .author-box {
  position: relative;
  display: block;
  padding-top: 19px;
}

.choose-style3__img .content-box .author-box h4 {
  color: var(--thm-white);
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
}

.choose-style3__img .content-box .author-box p {
  color: #e6dfdd;
}

.choose-style3__img .inner {
  position: relative;
  display: block;
  margin-left: -165px;
}

.choose-style3__img .inner img {
  width: auto;
}

.choose-style3__content {
  position: relative;
  display: block;
  padding: 85px 0px 143px;
}

.choose-style3__content .sec-title {
  padding-bottom: 39px;
}

.choose-style3__content .list-item {
  position: relative;
  display: block;
}

.choose-style3__content .list-item li {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.choose-style3__content .list-item li + li {
  margin-top: 26px;
}

.choose-style3__content .list-item li .icon {
  position: relative;
  display: block;
  color: var(--thm-primary-color);
  font-size: 30px;
  line-height: 20px;
  top: 8px;
}

.choose-style3__content .list-item li .text {
  position: relative;
  display: block;
  padding-left: 20px;
  flex: 1;
}

.choose-style3__content .list-item li .text h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.choose-style3__content .list-item li .text p {
  margin: 0;
}

/*=========================
    Banner Style1 Css
=========================*/
.banner-style1 {
  background-color: var(--thm-white);
  padding: 0px 0px 0px;
}

.banner-style1 .row {
  --bs-gutter-x: 0px;
}

.banner-style1 .container {
  max-width: 1670px;
}

.single-banner-style1 {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-banner-style1 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  mix-blend-mode: luminosity;
  background-color: var(--thm-black-bg);
  padding-left: 60px;
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.single-banner-style1:hover .img-box {
  opacity: 0;
  transform: translateY(70px);
}

.single-banner-style1 .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(25, 26, 28);
  background: linear-gradient(
    0deg,
    rgba(25, 26, 28, 0.19931722689075626) 0%,
    rgba(25, 26, 28, 1) 100%
  );
  z-index: 1;
}

.single-banner-style1 .img-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(25, 26, 28);
  background: linear-gradient(
    90deg,
    rgba(25, 26, 28, 1) 20%,
    rgba(25, 26, 28, 0.19931722689075626) 100%
  );
  z-index: 1;
}

.single-banner-style1 .img-box .inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-banner-style1 .img-box .inner img {
  width: 100%;
}

.single-banner-style1 .img-box .overlay-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
}

.single-banner-style1 .img-box .overlay-box .icon {
  position: absolute;
  top: 70px;
  left: 40px;
  color: var(--thm-black);
  font-size: 65px;
  line-height: 65px;
  z-index: 6;
}

.single-banner-style1 .img-box .overlay-box .icon::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: #212325;
  z-index: -1;
}

.single-banner-style1 .img-box .overlay-box .title {
  position: absolute;
  top: 50%;
  left: 125px;
  transform: translateY(-50%);
  z-index: 6;
}

.single-banner-style1 .img-box .overlay-box .title h4 {
  color: #aeb0b4;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
}

.single-banner-style1 .img-box .overlay-box .title h3 {
  color: var(--thm-white);
  font-size: 24px;
  line-height: 34px;
  text-transform: uppercase;
  margin-top: 4px;
}

.single-banner-style1 .img-box .overlay-box .stroke-text {
  position: absolute;
  right: 20px;
  bottom: 16px;
}

.single-banner-style1 .img-box .overlay-box .stroke-text h2 {
  color: transparent;
  -webkit-text-stroke: 1px rgb(255, 255, 255, 0.25);
  font-size: 48px;
  line-height: 1em;
  text-transform: uppercase;
}

.single-banner-style1 .img-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  border: 1px solid var(--thm-primary-color);
  transform: translateY(-70px);
  opacity: 0;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.single-banner-style1:hover .img-box-overlay {
  opacity: 1;
  transform: translateY(0px);
}

.single-banner-style1 .img-box-overlay img {
  width: 100%;
}

.single-banner-style1 .img-box-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgb(0, 0, 0, 0.5);
}

.single-banner-style1 .img-box-overlay .btn-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--thm-white);
  color: var(--thm-black);
  font-size: 20px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 3;
}

.single-banner-style1 .img-box-overlay .btn-box:hover {
  color: var(--thm-white);
  background-color: var(--thm-primary-color);
}

.single-banner-style1 .img-box-overlay .stroke-text {
  position: absolute;
  right: 20px;
  bottom: 16px;
}

.single-banner-style1 .img-box-overlay .stroke-text h2 {
  color: var(--thm-white);
  font-size: 48px;
  line-height: 1em;
  text-transform: uppercase;
}

/*=========================
    Banner Style2 Css
=========================*/
.banner-style2 {
  background-color: var(--thm-black-bg2);
  padding: 129px 0px 140px;
}

.banner-style2__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
}

.banner-style2__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(54, 47, 36);
  background: linear-gradient(
    90deg,
    rgba(54, 47, 36, 0) 20%,
    rgba(54, 47, 36, 1) 50%
  );
}

.banner-style2__icon {
  position: absolute;
  right: 210px;
  bottom: 55px;
  color: #2a2317;
  font-size: 270px;
  line-height: 0;
}

.banner-style2__content {
  position: relative;
  display: block;
  padding-left: 580px;
}

.banner-style2__content .text-box {
  position: relative;
  display: block;
}

.banner-style2__content .text-box h2 {
  color: var(--thm-white);
  font-size: 56px;
  line-height: 1em;
  text-transform: uppercase;
  margin-bottom: 17px;
}

.banner-style2__content .text-box p {
  color: #bfbdb9;
  font-size: 19px;
  line-height: 29px;
}

.banner-style2__content .discount-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 20px;
}

.banner-style2__content .discount-box .big-title {
  position: relative;
  display: block;
  color: var(--thm-primary-color);
  font-size: 110px;
  line-height: 1em;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
}

.banner-style2__content .discount-box h3 {
  position: relative;
  display: block;
  flex: 1;
  color: var(--thm-white);
  font-size: 24px;
  line-height: 34px;
  text-transform: uppercase;
  left: 14px;
}

.banner-style2__content .btn-box {
  position: relative;
  display: block;
  list-style: 0;
  padding-top: 27px;
}

.banner-style2__content .btn-box .btn-one::before {
  background-color: var(--thm-primary-color);
}

.banner-style2__content .btn-box .btn-one::after {
  background-color: transparent;
  border: 1px solid var(--thm-white);
}

/*
===========================================
    Banner Style2 Style2 Css
===========================================
*/
.banner-style2--style2 {
  background-color: var(--thm-white);
  padding: 0px 0px 0px;
}

.banner-style2--style2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-color: var(--thm-gray-bg);
}

.banner-style2--style2 .auto-container {
  max-width: 1670px;
}

.banner-style3__inner {
  position: relative;
  display: block;
  background-color: var(--thm-black-bg);
  padding: 129px 0px 140px;
}

.banner-style3__bg {
  right: 645px;
  background-position: left top;
}

.banner-style3__bg::before {
  left: auto;
  right: 0;
  width: 750px;
  background: rgb(30, 30, 23);
  background: linear-gradient(
    90deg,
    rgba(30, 30, 23, 0) 30%,
    rgba(30, 30, 23, 0.7259278711484594) 50%,
    rgba(30, 30, 23, 0.9808298319327731) 70%,
    rgba(30, 30, 23, 1) 100%
  );
}

.banner-style3__icon {
  right: 66px;
  color: #272720;
}

.banner-style3__content {
  padding-left: 590px;
}

.banner-style3__content .discount-box .big-title {
  top: -7px;
}

.banner-style3__content .text-box p {
  color: #a6a69d;
}

/*=========================
    Pricing Style1 Css
=========================*/
.pricing-style1 {
  background-color: var(--thm-white);
  padding: 140px 0px 140px;
}

.pricing-style1__shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 717px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.pricing-style1__content {
  position: relative;
  display: block;
}

.pricing-style1__content .sec-title {
  padding-bottom: 32px;
}

.pricing-style1__content .text {
  position: relative;
  display: block;
}

.pricing-style1__content .text p {
  margin: 0;
}

.pricing-style1__content .list-item {
  position: relative;
  display: block;
  padding-top: 15px;
}

.pricing-style1__content .list-item li {
  position: relative;
  display: flex;
  align-items: center;
}

.pricing-style1__content .list-item li + li {
  margin-top: 12px;
}

.pricing-style1__content .list-item li .icon {
  position: relative;
  display: block;
  color: #a9a7a6;
  font-size: 16px;
  line-height: 16px;
  top: 1px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.pricing-style1__content .list-item li:hover .icon {
  color: var(--thm-primary-color);
}

.pricing-style1__content .list-item li .title {
  position: relative;
  display: inline-block;
  margin-left: 10px;
  cursor: pointer;
}

.pricing-style1__content .list-item li .title h4 {
  color: #a9a7a6;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.pricing-style1__content .list-item li .title:hover h4 {
  color: var(--thm-primary-color);
}

.pricing-style1__content-img {
  position: absolute;
  left: 100px;
  bottom: -240px;
}

.pricing-style1__content-img img {
  width: auto;
}

.pricing-style1__box {
  position: relative;
  display: block;
}

.pricing-style1__steps {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.pricing-style1__steps > ul {
  position: relative;
  display: block;
}

.pricing-style1__steps > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  cursor: pointer;
}

.pricing-style1__steps > ul > li + li {
  margin-left: 90px;
}

.pricing-style1__steps > ul > li::before {
  content: "";
  position: absolute;
  left: -70px;
  bottom: 24px;
  width: 50px;
  height: 1px;
  background-color: var(--thm-border-color);
}

.pricing-style1__steps > ul > li:first-child::before {
  display: none;
}

.pricing-style1__steps > ul > li > .round-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--thm-white);
  border: 2px solid var(--thm-border-color);
  color: #a9a7a6;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  font-family: var(--thm-font-2);
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.pricing-style1-tab ul li:hover .round-box,
.pricing-style1-tab ul li.active-btn-item .round-box {
  color: var(--thm-primary-color);
  border-color: var(--thm-primary-color);
}

.pricing-style1__steps > ul > li > .title-box {
  position: relative;
  display: block;
  padding-left: 20px;
}

.pricing-style1__steps > ul > li > .title-box h3 {
  color: #a9a7a6;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.pricing-style1-tab ul li:hover .title-box h3,
.pricing-style1-tab ul li.active-btn-item .title-box h3 {
  color: var(--thm-black);
}

.pricing-style1__box-inner {
  position: relative;
  display: block;
  padding-top: 0;
}

.single-pricing-box {
  position: relative;
  display: block;
}

.single-pricing-box_top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--thm-white);
  border: 1px solid var(--thm-border-color);
  padding: 20px 30px 20px;
}

.single-pricing-box_top .left {
  position: relative;
  display: block;
}

.single-pricing-box_top .left h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}

.single-pricing-box_top .right {
  position: relative;
  display: block;
}

.single-pricing-box_top .right .round-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--thm-white);
  border: 2px solid var(--thm-border-color);
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.single-pricing-box:hover .single-pricing-box_top .right .round-box {
  border-color: var(--thm-primary-color);
  background-color: var(--thm-primary-color);
}

.single-pricing-box_top .right .round-box::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--thm-border-color);
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.single-pricing-box:hover .single-pricing-box_top .right .round-box::before {
  background-color: var(--thm-white);
}

.single-pricing-box_value {
  position: relative;
  display: block;
  background-color: var(--thm-black-bg);
  padding: 28px 0px 30px;
  z-index: 1;
}

.single-pricing-box_value-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.1;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  z-index: -1;
}

.single-pricing-box_value h3 {
  color: var(--thm-primary-color);
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
}

.single-pricing-box_value h4 {
  color: #aeb0b4;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
}

.single-pricing-box__scrooling {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--thm-gray-bg);
  border: 1px solid #d9d9d0;
  padding: 16px 0px 16px;
}

.single-pricing-box__scrooling ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: fit-content;
}

.single-pricing-box__scrooling ul li {
  position: relative;
  display: block;
  white-space: nowrap;
  float: left;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--thm-font-2);
  margin-left: 20px;
}

.single-pricing-box__list {
  position: relative;
  display: block;
  background-color: var(--thm-white);
  border: 1px solid var(--thm-border-color);
  border-top: none;
}

.single-pricing-box__list > li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--thm-border-color);
  padding: 17px 30px 16px;
}

.single-pricing-box__list > li:last-child {
  border-bottom: none;
}

.single-pricing-box__list > li .icon {
  position: relative;
  display: inline-block;
  color: var(--thm-primary-color);
  font-size: 15px;
  margin-right: 10px;
}

.single-pricing-box__list > li p {
  margin: 0;
}

.single-pricing-box__list li.bg {
  background: rgb(245, 244, 244);
  background: linear-gradient(
    90deg,
    rgba(245, 244, 244, 0.9752275910364145) 30%,
    rgba(255, 255, 255, 0.6306897759103641) 100%
  );
}

.single-pricing-box__list > li.deactivate .icon {
  position: relative;
  display: inline-block;
  color: #a9a7a6;
  font-size: 12px;
  margin-right: 10px;
  top: 1px;
}

.single-pricing-box__list > li.deactivate p {
  color: #a9a7a6;
  opacity: 0.7;
}

.pricing-style1-style1-carousel .owl-nav {
  position: relative;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 22px 0 0;
  z-index: 10;
}

.pricing-style1-style1-carousel .owl-nav [class*="owl-"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 0px solid var(--thm-border-color);
  margin: 0 0px;
  padding: 0;
  transition: all 700ms ease 3s;
  z-index: 1;
}

.pricing-style1-style1-carousel .owl-nav [class*="owl-"]:hover {
  color: var(--thm-primary-color);
}

.pricing-style1-style1-carousel .owl-nav [class*="owl-"] span {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #a9a7a6;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-style: normal;
}

.pricing-style1-style1-carousel .owl-nav [class*="owl-"]:hover span {
  color: var(--thm-primary-color);
}

.pricing-style1-style1-carousel .owl-nav .owl-prev span i {
  margin-left: 7px;
}

.pricing-style1-style1-carousel .owl-nav .owl-next span i {
  margin-left: 7px;
}

.pricing-style1-style1-carousel .owl-nav [class*="owl-"] span i {
  color: #a9a7a6;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  font-family: var(--thm-font-2);
}

.pricing-style1-tab .tabs-content-box {
  position: relative;
  display: block;
}

.pricing-style1-tab .tab-content-box-item {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.pricing-style1-tab .tab-content-box-item.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.pricing-style1-tab .tab-content-box-item .pricing-style1-tab-content-box-item {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.pricing-style1-tab
  .tab-content-box-item.tab-content-box-item-active
  .pricing-style1-tab-content-box-item {
  opacity: 1;
  transform: translateY(0px);
}

.pricing-style1-form {
  position: relative;
  display: block;
}

.pricing-style1-form .row {
  --bs-gutter-x: 0px;
}

.pricing-style1-form__img-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-right: 15px;
}

.pricing-style1-form__img-box img {
  width: 100%;
}

.pricing-style1-form__box {
  position: relative;
  display: block;
  background-color: var(--thm-white);
  border: 1px solid #dddbdb;
  padding: 31px 29px 43px;
  margin-left: -15px;
}

.pricing-style1-form__box .row {
  --bs-gutter-x: 10px;
}

.pricing-style1-form__box .inner-title {
  position: relative;
  display: block;
  padding-bottom: 23px;
}

.pricing-style1-form__box .inner-title h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}

.pricing-style1-form__box form {
  position: relative;
  display: block;
}

.pricing-style1-form__box form .input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.pricing-style1-form__box form .input-box .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  color: var(--thm-primary-color);
  font-size: 20px;
  line-height: 20px;
}

.pricing-style1-form__box form input[type="text"],
.pricing-style1-form__box form input[type="email"] {
  position: relative;
  display: block;
  border-radius: 0;
  border: 1px solid var(--thm-border-color);
  background-color: transparent;
  width: 100%;
  height: 60px;
  color: #a9a7a6;
  font-size: 17px;
  font-family: var(--thm-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 25px;
  padding-right: 60px;
  transition: all 500ms ease;
}

.pricing-style1-form__box form input[type="text"]:focus,
.pricing-style1-form__box form input[type="email"]:focus,
.pricing-style1-form__box form textarea:focus {
  border-color: var(--thm-primary-color);
}

.pricing-style1-form__box form input[type="text"]::-webkit-input-placeholder {
  color: #a9a7a6;
}

.pricing-style1-form__box form input[type="text"]:-moz-placeholder {
  color: #a9a7a6;
}

.pricing-style1-form__box form input[type="text"]::-moz-placeholder {
  color: #a9a7a6;
}

.pricing-style1-form__box form input[type="text"]:-ms-input-placeholder {
  color: #a9a7a6;
}

.pricing-style1-form__box form input[type="email"]::-webkit-input-placeholder {
  color: #a9a7a6;
}

.pricing-style1-form__box form input[type="email"]:-moz-placeholder {
  color: #a9a7a6;
}

.pricing-style1-form__box form input[type="email"]::-moz-placeholder {
  color: #a9a7a6;
}

.pricing-style1-form__box form input[type="email"]:-ms-input-placeholder {
  color: #a9a7a6;
}

.pricing-style1-form__box form textarea::-webkit-input-placeholder {
  color: #a9a7a6;
}

.pricing-style1-form__box form textarea:-moz-placeholder {
  color: #a9a7a6;
}

.pricing-style1-form__box form textarea::-moz-placeholder {
  color: #a9a7a6;
}

.pricing-style1-form__box form textarea:-ms-input-placeholder {
  color: #a9a7a6;
}

.pricing-style1-form__box form .nice-select {
  position: relative;
  display: block;
  border-radius: 0;
  background-color: var(--thm-white);
  border: 1px solid var(--thm-border-color);
  width: 100%;
  height: 60px;
  color: #a9a7a6;
  font-size: 17px;
  line-height: 60px;
  font-family: var(--thm-font);
  font-weight: 400;
  padding-left: 25px;
  padding-right: 25px;
  transition: all 500ms ease;
}

.pricing-style1-form__box form .nice-select:focus {
  border-color: var(--thm-primary-color);
}

.pricing-style1-form__box form .nice-select::after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #a9a7a6;
  border-right: 2px solid #a9a7a6;
  right: 25px;
  margin-top: 0px;
  top: 25px;
  z-index: 10;
}

.pricing-style1-form__box form .nice-select .list {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  padding: 0px 0 0px;
  margin-top: 10px;
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: scale(1) translateY(30px);
  -ms-transform: scale(1) translateY(30px);
  transform: scale(1) translateY(30px);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  height: 0;
  width: 100%;
  right: 0 !important;
  left: auto !important;
  z-index: 100;
}

.pricing-style1-form__box form .nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  height: auto;
}

.pricing-style1-form__box form .nice-select .option {
  color: var(--thm-black);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  line-height: 40px;
  min-height: 40px;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.pricing-style1-form__box form .nice-select .option + .option {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-style1-form__box form .nice-select .option:hover,
.pricing-style1-form__box form .nice-select .option.focus,
.pricing-style1-form__box form .nice-select .option.selected.focus {
  color: var(--thm-white) !important;
  background-color: var(--thm-primary-color);
}

.pricing-style1-form__box form .checked-box1 {
  position: relative;
  display: block;
  line-height: 0;
}

.pricing-style1-form__box form .checked-box1 label {
  color: #a4a5a0;
  font-weight: 700;
  font-family: var(--thm-font-2);
  text-transform: uppercase;
}

.pricing-style1-form__box
  form
  .checked-box1
  input[type="checkbox"]
  + label
  span {
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 0;
}

.pricing-style1-form__box form .checked-box1 label span:before {
  top: 1px;
  border-radius: 0%;
}

.pricing-style1-form__box
  form
  .checked-box1
  input[type="checkbox"]:checked
  + label
  span {
  border-color: #e3e4ea;
}

.pricing-style1-form__box
  form
  .checked-box1
  input[type="checkbox"]:checked
  + label
  span:before {
  transform: scale(1);
}

.pricing-style1-form__box form .btn-box {
  padding-top: 20px;
}

/*=========================
    Pricing Style1 Style3 Css
=========================*/
.pricing-style1--style3 {
  background-color: var(--thm-gray-bg);
}

/*=========================
    Pricing Style5 Css
=========================*/
.pricing-style1--style5 {
  background-color: var(--thm-gray-bg);
}

.pricing-style1--style5__inner {
  position: relative;
  display: block;
}

.pricing-style1__switch-toggle {
  position: absolute;
  right: 0;
  top: 77px;
}

.pricing-style1__switch-toggle ul.switch-toggler-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-style1__switch-toggle ul.switch-toggler-list li a {
  color: #a1a19b;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 10px;
  padding-right: 10px;
  display: block;
  font-family: var(--thm-font-2);
}

.pricing-style1__switch-toggle ul.switch-toggler-list li.active a {
  color: var(--thm-black);
}

.pricing-style1__switch-toggle .switch {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  border-radius: 15px;
  width: 45px;
  height: 25px;
}

.pricing-style1__switch-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: var(--thm-primary-color);
}

.pricing-style1__switch-toggle .slider.round {
  border-radius: 15px;
}

.pricing-style1__switch-toggle .slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 5px;
  right: 5px;
  top: 50%;
  -webkit-transform: translateX(0px) translateY(-50%);
  transform: translateX(0px) translateY(-50%);
  background-color: var(--thm-white);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.pricing-style1__switch-toggle .slider.round:before {
  border-radius: 50%;
}

.pricing-style1__switch-toggle .switch.off .slider:before {
  -webkit-transform: translateX(20px) translateY(-50%);
  transform: translateX(20px) translateY(-50%);
}

.pricing-style1--style5__inner .tabed-content {
  position: relative;
  display: block;
  overflow: hidden;
  height: 556px;
}

.pricing-style1--style5__btn {
  position: relative;
  display: block;
  text-align: center;
  padding-top: 60px;
}

/*
=======================================
    Pricing Style1 Style2 Css
=======================================
*/
.pricing-style1--style2 {
  background-color: var(--thm-black-bg);
}

.pricing-style1__shape {
  bottom: -160px;
}

.pricing-style1__content--style2 {
  position: relative;
}

.pricing-style1__content--style2 .sec-title h2 {
  color: var(--thm-white);
}

.pricing-style1__content--style2 .text p {
  color: #c0beb9;
}

.pricing-style1__content--style2 .list-item li .icon {
  color: #575045;
}

.pricing-style1__content--style2 .list-item li .title h4 {
  color: #575045;
}

.pricing-style1__box--style2 {
  position: relative;
}

.pricing-style1__box--style2 .pricing-style1__steps > ul > li > .round-box {
  background-color: transparent;
  border: 2px solid #484035;
  color: var(--thm-white);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.pricing-style1__box--style2
  .pricing-style1__steps
  > ul
  > li:hover
  > .round-box,
.pricing-style1__box--style2
  .pricing-style1__steps
  > ul
  > li.active-btn-item
  > .round-box {
  background-color: var(--thm-white);
  border: 2px solid var(--thm-white);
  color: var(--thm-primary-color);
}

.pricing-style1__box--style2 .pricing-style1__steps > ul > li > .title-box h3 {
  color: var(--thm-white);
}

.pricing-style1__box--style2 .pricing-style1__steps > ul > li::before {
  background-color: #484035;
}

.single-pricing-box--style2 {
  position: relative;
}

.single-pricing-box--style2 .single-pricing-box_top {
  background-color: var(--thm-black-bg2);
  border: 1px solid #484035;
}

.single-pricing-box--style2 .single-pricing-box_top .left h3 {
  color: var(--thm-white);
}

.single-pricing-box--style2 .single-pricing-box_top .right .round-box {
  background-color: transparent;
  border: 2px solid var(--thm-white);
}

.single-pricing-box--style2 .single-pricing-box__scrooling {
  background-color: var(--thm-black-bg);
  border: 1px solid #484035;
}

.single-pricing-box--style2 .single-pricing-box__scrooling ul li {
  color: var(--thm-white);
}

.single-pricing-box--style2 .single-pricing-box__list > li {
  border-bottom: 1px solid #484035;
  background-color: var(--thm-black-bg);
}

.single-pricing-box--style2 .single-pricing-box__list li.bg {
  background: rgb(54, 47, 36);
  background: linear-gradient(
    90deg,
    rgba(54, 47, 36, 1) 25%,
    rgba(42, 35, 23, 1) 70%,
    rgba(42, 35, 23, 1) 100%
  );
}

.single-pricing-box--style2 .single-pricing-box__list > li p {
  color: #c0beb9;
}

.single-pricing-box--style2 .single-pricing-box__list {
  border: 1px solid #484035;
}

/*=========================
    Pricing Style2 Css
=========================*/
.pricing-style2 {
  background-color: var(--thm-white);
}

.pricing-style2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background-color: var(--thm-gray-bg);
  z-index: -1;
}

.pricing-style2 .auto-container {
  max-width: 1670px;
}

.pricing-style2__inner {
  position: relative;
  display: block;
  background-color: var(--thm-black-bg);
  padding: 140px 0px 47px;
}

.pricing-style2__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.3;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
}

.pricing-style2__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(20, 18, 18);
  background: linear-gradient(
    0deg,
    rgba(20, 18, 18, 0.9528186274509804) 15%,
    rgba(20, 18, 18, 0.5074404761904762) 30%,
    rgba(20, 18, 18, 0) 50%,
    rgba(20, 18, 18, 0.6979166666666667) 70%,
    rgba(20, 18, 18, 0.9472163865546218) 85%
  );
}

.pricing-style2__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(20, 18, 18);
  background: linear-gradient(
    90deg,
    rgba(20, 18, 18, 0.9528186274509804) 15%,
    rgba(20, 18, 18, 0.5074404761904762) 30%,
    rgba(20, 18, 18, 0) 50%,
    rgba(20, 18, 18, 0.6979166666666667) 70%,
    rgba(20, 18, 18, 0.9472163865546218) 85%
  );
}

.pricing-style2 .sec-title h2 {
  color: var(--thm-white);
}

.single-pricing-style2 {
  position: relative;
  display: block;
}

.single-pricing-style2 .top-box {
  position: relative;
  display: block;
}

.single-pricing-style2 .top-box::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0px;
  height: 1px;
  width: 100px;
  background-color: rgb(255, 255, 255, 0.15);
}

.single-pricing-style2 .top-box::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0px;
  height: 1px;
  width: 100px;
  background-color: rgb(255, 255, 255, 0.15);
}

.single-pricing-style2 .top-box__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 370px;
  width: 100%;
  background-color: rgb(255, 255, 255, 0.15);
  clip-path: polygon(7% 0, 93% 0, 100% 50%, 93% 100%, 7% 100%, 0% 50%);
  padding: 11px 30px 11px;
  margin: 0 auto;
}

.single-pricing-style2 .top-box .rating {
  position: relative;
  display: flex;
  align-items: center;
}

.single-pricing-style2 .top-box .rating li {
  position: relative;
  display: block;
  color: var(--thm-primary-color);
  font-size: 14px;
  line-height: 10px;
}

.single-pricing-style2 .top-box .rating li + li {
  margin-left: 5px;
}

.single-pricing-style2 .top-box .title {
  position: relative;
  display: block;
}

.single-pricing-style2 .top-box .title h4 {
  color: var(--thm-white);
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
}

.single-pricing-style2__list {
  position: relative;
  display: block;
  padding-top: 50px;
}

.single-pricing-style2__list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(255, 255, 255, 0.15);
  padding: 0px 0px 30px;
}

.single-pricing-style2__list li + li {
  margin-top: 30px;
}

.single-pricing-style2__list li .content-box {
  position: relative;
  display: flex;
  align-items: center;
}

.single-pricing-style2__list li .content-box .number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgb(255, 255, 255, 0.08);
}

.single-pricing-style2__list li .content-box .number h3 {
  color: #b3afaf;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}

.single-pricing-style2__list li .content-box .title {
  position: relative;
  display: block;
  padding-left: 20px;
  flex: 1;
}

.single-pricing-style2__list li .content-box .title h4 {
  position: relative;
  top: -6px;
  color: var(--thm-white);
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.single-pricing-style2__list li .content-box .title p {
  position: relative;
  top: 3px;
  color: #b3afaf;
}

.single-pricing-style2__list li .price-box {
  position: relative;
  display: block;
}

.single-pricing-style2__list li .price-box h3 {
  color: var(--thm-white);
  font-size: 24px;
  line-height: 34px;
  text-transform: uppercase;
}

.pricing-style2__btn-box {
  position: relative;
  display: block;
  padding-top: 54px;
  z-index: 5;
}

.pricing-style2__btn-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-white);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.pricing-style2__btn-box a:hover {
  color: var(--thm-primary-color);
}

.pricing-style2__btn-box a i {
  margin-right: 10px;
  font-size: 20px;
}

.pricing-style2__bottom-title {
  position: relative;
  display: block;
  padding-top: 40px;
  margin-top: 90px;
}

.pricing-style2__bottom-title-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 300px;
  height: 1px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.15);
}

.pricing-style2__bottom-title-border::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -16px;
  height: 50px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  transform: rotate(38deg);
  z-index: 11;
}

.pricing-style2__bottom-title-border::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -16px;
  height: 50px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  transform: rotate(-38deg);
  z-index: 3;
}

.pricing-style2__bottom-title h3 {
  position: relative;
  display: block;
  color: var(--thm-white);
  font-size: 24px;
  text-transform: uppercase;
  height: 18px;
  line-height: 16px;
}

.pricing-style2__bottom-title h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.pricing-style2__bottom-title h3 span {
  position: relative;
  display: inline-block;
  background-color: var(--thm-black-bg);
  padding: 0 107px;
}

.pricing-style2__bottom-title .text {
  position: relative;
  display: block;
  padding-top: 16px;
}

.pricing-style2__bottom-title .text h4 {
  color: var(--thm-white);
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
}

.pricing-style2__bottom-title .text h4 a {
  position: relative;
  display: inline-block;
  color: var(--thm-primary-color);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.pricing-style2__bottom-title .text h4 a:hover {
  color: var(--thm-white);
}

.pricing-style2__bottom-title .text h4 a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  right: 0;
  height: 1px;
  background-color: var(--thm-primary-color);
}

/*
===========================================
    Pricing Style2 Pricing Page2 Css
===========================================
*/
.pricing-style2--pricing-page2 {
  background-color: var(--thm-white);
}

.pricing-style2--pricing-page2::before {
  top: 0;
  left: 0;
  bottom: auto;
  right: 0;
  background-color: var(--thm-gray-bg);
}

/*
=======================================
    Pricing Style3 Css
=======================================
*/
.pricing-style3 {
  background-color: var(--thm-white);
  padding: 140px 0px 140px;
}

.single-pricing-style3 {
  position: relative;
  display: block;
}

.single-pricing-style3 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-pricing-style3 .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: -moz-linear-gradient(
    90deg,
    rgb(30, 30, 23) 0%,
    rgba(30, 30, 23, 0) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(30, 30, 23) 0%,
    rgba(30, 30, 23, 0) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgb(30, 30, 23) 0%,
    rgba(30, 30, 23, 0) 100%
  );
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.single-pricing-style3:hover .img-box::before {
  opacity: 1;
}

.single-pricing-style3 .img-box img {
  width: 100%;
  transform: scale(1);
  transition: all 1500ms ease;
}

.single-pricing-style3:hover .img-box img {
  transform: scale(1.05) rotate(0deg);
}

.single-pricing-style3 .img-box .overlay-title {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(-30px);
  transform-origin: bottom;
  transition: all 500ms ease;
  z-index: 3;
}

.single-pricing-style3:hover .img-box .overlay-title {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 300ms;
}

.single-pricing-style3 .img-box .overlay-title .dollar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--thm-white);
}

.single-pricing-style3 .img-box .overlay-title .dollar h3 {
  font-size: 24px;
  line-height: 34px;
  text-transform: uppercase;
}

.single-pricing-style3 .img-box .overlay-title .dollar h4 {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
}

.single-pricing-style3 .img-box .category {
  position: absolute;
  top: -1px;
  right: -1px;
  background-color: var(--thm-white);
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 15% 100%);
  padding: 0px 30px 8px;
  padding-right: 0;
  z-index: 3;
}

.single-pricing-style3 .img-box .category h4 {
  color: var(--thm-primary-color);
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  margin-top: -6px;
}

.single-pricing-style3 .content-box {
  position: relative;
  display: block;
  background-color: var(--thm-white);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.12);
}

.single-pricing-style3 .content-box .top-box {
  position: relative;
  display: block;
  padding: 24px 25px 23px;
}

.single-pricing-style3 .content-box .top-box .text-box {
  position: relative;
  display: flex;
  align-items: center;
}

.single-pricing-style3 .content-box .top-box .text-box .icon {
  position: relative;
  display: block;
  margin-right: 10px;
  color: var(--thm-primary-color);
  font-size: 14px;
  line-height: 10px;
}

.single-pricing-style3 .content-box .top-box .text-box h4 {
  color: #a1a19b;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
}

.single-pricing-style3 .content-box .top-box .title-box {
  position: relative;
  display: block;
  padding-top: 1px;
}

.single-pricing-style3 .content-box .top-box .title-box h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}

.single-pricing-style3 .content-box .top-box .title-box h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-pricing-style3 .content-box .top-box .title-box h3 a:hover {
  color: var(--thm-primary-color);
}

.single-pricing-style3 .content-box .border-line {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e5e5e4;
}

.single-pricing-style3 .content-box .bottom-box {
  position: relative;
  display: block;
  padding: 14px 25px 14px;
}

.single-pricing-style3 .content-box .bottom-box ul {
  position: relative;
  display: flex;
  align-items: center;
}

.single-pricing-style3 .content-box .bottom-box ul li {
  position: relative;
  display: flex;
  align-items: center;
}

.single-pricing-style3 .content-box .bottom-box ul li + li {
  margin-left: 20px;
}

.single-pricing-style3 .content-box .bottom-box ul li .icon {
  position: relative;
  display: block;
  color: var(--thm-primary-color);
  font-size: 14px;
  line-height: 8px;
  margin-right: 10px;
}

.single-pricing-style3 .content-box .bottom-box ul li h4 {
  color: #a1a19b;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
}

.pricing-style3-carousel.owl-nav-style-one.owl-theme .owl-nav {
  position: absolute;
  top: -121px;
  right: 0;
}

.pricing-style3-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

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

.pricing-style3-carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/*
=======================================
    Pricing Page One Sec1 Css
=======================================
*/
.pricing-page-one-sec1 {
  background-color: var(--thm-white);
  padding: 140px 0px 90px;
}

.pricing-page-one-sec1 .single-pricing-style3 {
  margin-bottom: 50px;
}

/*** 
============================
    Project Style1 Css      
============================
***/
.project-style1 {
  background-color: var(--thm-white);
  padding: 140px 0px 110px;
}

.project-style1 .auto-container {
  max-width: 1880px;
  width: 100%;
}

.single-project-style1 {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.single-project-style1 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-project-style1 .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-color: var(--thm-black-bg);
  transition: opacity 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.single-project-style1:hover .img-box::before {
  opacity: 0.9;
}

.single-project-style1 .img-box img {
  width: 100%;
  transform: scale(1);
  transition: all 1500ms ease;
}

.single-project-style1:hover .img-box img {
  transform: scale(1.05) rotate(0deg);
}

.single-project-style1 .img-box .overlay-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  right: 20px;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateX(60px);
  transform-origin: right;
  transition: all 500ms ease;
  z-index: 3;
}

.single-project-style1:hover .img-box .overlay-icon {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 300ms;
}

.single-project-style1 .img-box .overlay-icon a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--thm-white);
  color: var(--thm-black);
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-project-style1:hover .img-box .overlay-icon a:hover {
  color: var(--thm-white);
  background-color: var(--thm-primary-color);
}

.single-project-style1 .img-box .overlay-content {
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: var(--thm-white);
  padding: 22px 30px 23px;
  opacity: 0;
  transform: scaleY(0);
  transition: all 400ms ease 200ms;
  z-index: 5;
}

.single-project-style1:hover .img-box .overlay-content {
  opacity: 1;
  transform: scaleY(1);
  transition: all 300ms linear;
  transition-delay: 0.1s;
}

.single-project-style1 .img-box .overlay-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 40px;
  background-color: var(--thm-primary-color);
}

.single-project-style1 .img-box .overlay-content h4 {
  color: var(--thm-primary-color);
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
}

.single-project-style1 .img-box .overlay-content h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}

.single-project-style1 .img-box .overlay-content h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-project-style1 .img-box .overlay-content h3 a:hover {
  color: var(--thm-primary-color);
}

/*** 
============================
    Project Style2 Css      
============================
***/
.project-style2 {
  background-color: var(--thm-white);
  padding: 140px 0px 131px;
}

.project-style2__gun-bullets {
  position: absolute;
  top: 30px;
  right: 190px;
}

.single-project-style2 {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.single-project-style2 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-project-style2 .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-color: var(--thm-black-bg);
  transition: opacity 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.single-project-style2:hover .img-box::before {
  opacity: 0.9;
}

.single-project-style2 .img-box img {
  width: 100%;
  transform: scale(1);
  transition: all 1500ms ease;
}

.single-project-style2:hover .img-box img {
  transform: scale(1.05) rotate(0deg);
}

.single-project-style2 .img-box .overlay-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(-30px);
  transform-origin: bottom;
  transition: all 500ms ease;
  z-index: 3;
}

.single-project-style2:hover .img-box .overlay-icon {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 300ms;
}

.single-project-style2 .img-box .overlay-icon a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--thm-white);
  color: var(--thm-black);
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-project-style2 .img-box .overlay-icon a:hover {
  color: var(--thm-white);
  background-color: var(--thm-primary-color);
}

.single-project-style2 .content-box {
  position: relative;
  display: block;
  padding-top: 19px;
}

.single-project-style2 .content-box h4 {
  color: #a5a4a4;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-project-style2:hover .content-box h4 {
  color: var(--thm-primary-color);
}

.single-project-style2 .content-box h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}

.single-project-style2 .content-box h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-project-style2 .content-box h3 a:hover {
  color: var(--thm-primary-color);
}

.project-style2__btn-box {
  position: relative;
  display: block;
  padding-top: 24px;
  z-index: 5;
}

.project-style2__btn-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-style2__btn-box a:hover {
  color: var(--thm-primary-color);
}

.project-style2__btn-box a i {
  margin-right: 10px;
  font-size: 20px;
}

/*** 
============================
    Project Style3 Css      
============================
***/
.project-style3 {
  background-color: var(--thm-white);
  padding: 140px 0px 131px;
}

.project-style3__inner {
  position: relative;
  display: block;
}

.single-project-style3 {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.single-project-style3 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-project-style3 .img-box img {
  width: 100%;
  transform: scale(1);
  transition: all 1500ms ease;
}

.single-project-style3:hover .img-box img {
  filter: blur(5px);
  transform: scale(1.05) rotate(0deg);
}

.single-project-style3 .img-box .overlay-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(-30px);
  transform-origin: bottom;
  transition: all 500ms ease;
  z-index: 3;
}

.single-project-style3:hover .img-box .overlay-icon {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 300ms;
}

.single-project-style3 .img-box .overlay-icon a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--thm-white);
  color: var(--thm-black);
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-project-style3 .img-box .overlay-icon a:hover {
  color: var(--thm-white);
  background-color: var(--thm-primary-color);
}

.project-style3-btn {
  position: relative;
  display: block;
  padding-top: 24px;
  text-align: center;
}

.project-style3-btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-style3-btn a:hover {
  color: var(--thm-primary-color);
}

.project-style3-btn a i {
  font-size: 20px;
  margin-right: 10px;
}

/*** 
=================================
    Gun Rentals Style1 Css      
=================================
***/
.gun-rantal-style1 {
  background-color: var(--thm-gray-bg);
  padding: 140px 0px 48px;
}

.single-gun-rantal-style1 {
  position: relative;
  display: block;
  background-color: var(--thm-white);
  padding: 22px 30px 30px;
}

.single-gun-rantal-style1 .title-box {
  position: relative;
  display: block;
  padding-bottom: 13px;
}

.single-gun-rantal-style1 .title-box h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}

.single-gun-rantal-style1 .title-box h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-gun-rantal-style1 .title-box h3 a:hover {
  color: var(--thm-primary-color);
}

.single-gun-rantal-style1 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #e6e8e3;
}

.single-gun-rantal-style1 .img-box img {
  width: 100%;
  -webkit-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.single-gun-rantal-style1:hover .img-box img {
  transform: scale(1.02) translateX(10px);
}

.single-gun-rantal-style1 .list-item {
  position: relative;
  display: block;
  margin-top: 30px;
}

.single-gun-rantal-style1 .list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 1px;
  background-color: #e6e8e3;
}

.single-gun-rantal-style1 .list-item li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e6e8e3;
  padding-bottom: 8px;
  margin-bottom: 7px;
}

.single-gun-rantal-style1 .list-item li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.single-gun-rantal-style1 .list-item li h4 {
  color: #a4a5a0;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-gun-rantal-style1:hover .list-item li h4 {
  color: var(--thm-black);
}

.single-gun-rantal-style1 .bottom-box {
  position: relative;
  display: block;
  padding-top: 30px;
  overflow: hidden;
}

.single-gun-rantal-style1 .bottom-box .price-box {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--thm-black-bg);
  padding: 10px 0px 10px;
  opacity: 1;
  transform: translateY(0px);
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.single-gun-rantal-style1:hover .bottom-box .price-box {
  opacity: 0;
  transform: translateY(50px);
}

.single-gun-rantal-style1 .bottom-box .price-box h4 {
  color: #a4a5a0;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
}

.single-gun-rantal-style1 .bottom-box .price-box h4 span {
  color: var(--thm-white);
  font-size: 20px;
  line-height: 30px;
}

.single-gun-rantal-style1 .bottom-box .btn-box {
  position: absolute;
  line-height: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform: translateY(50px);
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  z-index: 5;
}

.single-gun-rantal-style1:hover .bottom-box .btn-box {
  opacity: 1;
  transform: translateY(0px);
}

.single-gun-rantal-style1 .bottom-box .btn-box .btn-one {
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  justify-content: center;
}

.gun-rantal-style1__bottom-title {
  position: relative;
  display: block;
  padding-top: 40px;
  margin-top: 100px;
}

.gun-rantal-style1__bottom-title-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 300px;
  height: 1px;
  margin: 0 auto;
  background-color: #d3d5d1;
}

.gun-rantal-style1__bottom-title-border::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -15px;
  height: 50px;
  width: 1px;
  background-color: #d3d5d1;
  transform: rotate(38deg);
  z-index: 11;
}

.gun-rantal-style1__bottom-title-border::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -15px;
  height: 50px;
  width: 1px;
  background-color: #d3d5d1;
  transform: rotate(-38deg);
  z-index: 3;
}

.gun-rantal-style1__bottom-title h3 {
  position: relative;
  display: block;
  font-size: 24px;
  text-transform: uppercase;
  height: 18px;
  line-height: 16px;
}

.gun-rantal-style1__bottom-title h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #d3d5d1;
}

.gun-rantal-style1__bottom-title h3 span {
  position: relative;
  display: inline-block;
  background-color: var(--thm-gray-bg);
  padding: 0 133px;
}

.gun-rantal-style1__bottom-title .text {
  position: relative;
  display: block;
  padding-top: 16px;
}

.gun-rantal-style1__bottom-title .text h4 {
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
}

.gun-rantal-style1__bottom-title .text h4 a {
  position: relative;
  display: inline-block;
  color: var(--thm-primary-color);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.gun-rantal-style1__bottom-title .text h4 a:hover {
  color: var(--thm-black);
}

.gun-rantal-style1__bottom-title .text h4 a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  right: 0;
  height: 1px;
  background-color: var(--thm-primary-color);
}

.gun-rantal-style1-carousel.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
  width: 6px;
  height: 6px;
  margin: 0px 5px;
  background-color: #a3a69e;
  border-radius: 0%;
}

.gun-rantal-style1-carousel.owl-carousel.owl-dot-style1
  .owl-dots
  .owl-dot.active {
  width: 40px;
  border-radius: 0;
}

.gun-rantal-style1-carousel.owl-carousel.owl-dot-style1
  .owl-dots
  .owl-dot::before {
  border-radius: 0px;
}

/*** 
=================================
    Gun Rentals Style2 Css      
=================================
***/
.gun-rantal-style1--style2 {
  background-color: var(--thm-white);
  padding: 140px 0px 136px;
}

.gun-rantal-style1--style2 .single-gun-rantal-style1 {
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
}

.gun-rantal-style1--style2 .gun-rantal-style1__bottom-title h3 span {
  background-color: var(--thm-white);
}

.gun-rantal-style1-carousel--style2.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.gun-rantal-style1-carousel--style2.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.gun-rantal-style1-carousel--style2.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/*=========================
    Process Style1 Css
=========================*/
.process-style1 {
  background-color: var(--thm-gray-bg);
}

.process-style1 .auto-container {
  max-width: 1670px;
}

.process-style1__inner {
  background-color: var(--thm-black-bg);
  padding: 140px 0px 140px;
}

.process-style1 .sec-title h2 {
  color: var(--thm-white);
}

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

.process-style1__tab-btn {
  position: relative;
  display: block;
}

.process-style1__tab-btn ul {
  position: relative;
  display: block;
  padding: 22px 60px 22px;
  padding-right: 0;
  border-left: 1px solid #33342f;
}

.process-style1__tab-btn ul li {
  position: relative;
  display: block;
  cursor: pointer;
}

.process-style1__tab-btn ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -61px;
  width: 1px;
  height: 44px;
  opacity: 0;
  background-color: var(--thm-primary-color);
  transform: translateY(-30px);
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.process-style1__tab-btn ul li:hover::before,
.process-style1__tab-btn ul li.active-btn-item::before {
  opacity: 1;
  transform: translateY(0px);
}

.process-style1__tab-btn ul li + li {
  margin-top: 24px;
}

.process-style1__tab-btn ul li h4 {
  color: #5d5e59;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.process-style1__tab-btn ul li:hover h4,
.process-style1__tab-btn ul li.active-btn-item h4 {
  color: var(--thm-white);
}

.process-style1__tab-btn ul li h3 {
  color: #5d5e59;
  font-size: 24px;
  line-height: 34px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.process-style1__tab-btn ul li:hover h3,
.process-style1__tab-btn ul li.active-btn-item h3 {
  color: var(--thm-white);
}

.process-style1__tab .tabs-content-box {
  position: relative;
  display: block;
}

.process-style1__tab .tab-content-box-item {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.process-style1__tab .tab-content-box-item.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.process-style1__tab
  .tab-content-box-item
  .process-style1-tab-content-box-item {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.process-style1__tab
  .tab-content-box-item.tab-content-box-item-active
  .process-style1-tab-content-box-item {
  opacity: 1;
  transform: translateY(0px);
}

.single-process-style1 {
  position: relative;
  display: block;
  margin-left: 15px;
  padding-left: 85px;
}

.single-process-style1 .number-box {
  position: absolute;
  top: 30px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #30312d;
  border: 4px solid #3e3f3b;
}

.single-process-style1 .number-box h3 {
  color: var(--thm-white);
  font-size: 20px;
  line-height: 30px;
}

.single-process-style1 .content-box {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: rgb(41, 42, 38, 0.88);
  padding: 49px 60px 60px;
}

.single-process-style1 .content-box .title {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.single-process-style1 .content-box .title::before {
  content: "";
  position: absolute;
  left: -60px;
  bottom: 0;
  right: 0;
  height: 1px;
  background-color: #3e3f3b;
}

.single-process-style1 .content-box .title h3 {
  color: var(--thm-white);
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
}

.single-process-style1 .content-box .text {
  position: relative;
  display: block;
  padding-top: 33px;
}

.single-process-style1 .content-box .text p {
  color: #a4a5a0;
}

.single-process-style1 .content-box .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  padding-top: 32px;
}

.process-style1__img {
  position: absolute;
  top: 50px;
  left: 30%;
  right: 0;
  bottom: 0;
}

.process-style1__img img {
  width: auto;
}

/*=========================
    Process Style2 Css
=========================*/
.process-style1--style2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background-color: var(--thm-white);
  z-index: -1;
}

.process-style1--style2 .single-process-style1 .content-box {
  background-color: rgb(41, 42, 38, 0.5);
}

/*** 
===========================
    welcome Style1 Css      
===========================
***/
.welcome-style1 {
  background-color: var(--thm-white);
  padding: 140px 0px 131px;
}

.welcome-style1__box1 {
  position: relative;
  display: block;
}

.welcome-style1-experience-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-style1-experience-box__inner {
  position: absolute;
  left: -6px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  color: #eff2eb;
  font-size: 40px;
  line-height: 1em;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
}

.welcome-style1-experience-box__inner.color {
  color: #f5f4f4;
}

.welcome-style1__rotated-text {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: transparent;
  margin-left: 50px;
  z-index: 11;
}

.welcome-style1__rotated-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 30px solid var(--thm-gray-bg);
  border-radius: 50%;
}

.welcome-style1-rotated-text {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 200px;
  height: 200px !important;
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--thm-font-2);
  word-spacing: 0px;
  letter-spacing: -0.04em;
  transform: rotate(90deg);
}

.welcome-style1__rotated-text .overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.welcome-style1__rotated-text .overlay-text h3 {
  color: var(--thm-primary-color);
  font-size: 66px;
  list-style: 1em;
  font-weight: 700;
  margin-top: 0px;
}

.welcome-style1__content {
  position: relative;
  display: block;
  margin-top: -7px;
  padding-right: 40px;
}

.welcome-style1__content .title-box {
  position: relative;
  display: block;
  padding-bottom: 16px;
}

.welcome-style1__content .title-box h4 {
  color: #a3a69e;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
}

.welcome-style1__content .title-box h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}

.welcome-style1__content .text-box {
  position: relative;
  display: block;
}

.welcome-style1__content .text-box p {
  margin: 0;
}

.welcome-style1__content .btn-box {
  position: relative;
  display: block;
  padding-top: 15px;
}

.welcome-style1__content .btn-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.welcome-style1__content .btn-box a:hover {
  color: var(--thm-primary-color);
}

.welcome-style1__content .btn-box a i {
  margin-right: 10px;
  font-size: 20px;
}

.welcome-style1__list-item {
  position: relative;
  display: block;
  background-color: var(--thm-gray-bg);
  padding: 12px 0px 13px;
}

.welcome-style1__list-item li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dcdeda;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 13px;
  margin-bottom: 13px;
}

.welcome-style1__list-item li:last-child {
  border-bottom: 0px solid transparent;
  padding-bottom: 0;
  margin-bottom: 0;
}

.welcome-style1__list-item li .icon {
  position: relative;
  display: block;
  color: var(--thm-primary-color);
  font-size: 18px;
  line-height: 15px;
  margin-right: 10px;
}

.welcome-style1__list-item li h4 {
  color: #5a5b58;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--thm-font-2);
  font-weight: 600;
  text-transform: uppercase;
}

/*=================================
    Training Academy Style1 Css
=================================*/
.training-academy-style1 {
  background-color: var(--thm-white);
  padding: 140px 0px 140px;
}

.training-academy-style1__img {
  position: relative;
  display: block;
  overflow: hidden;
  margin-right: 30px;
  padding-bottom: 55px;
}

.training-academy-style1__img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  margin-right: 40px;
}

.training-academy-style1__img .inner::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: var(--thm-black-bg);
  border-radius: 0%;
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.training-academy-style1__img .inner:hover::before {
  opacity: 0.5;
}

.training-academy-style1__img .inner img {
  width: 100%;
}

.training-academy-style1__img .inner:hover img {
  -webkit-transform: scale(1.06) translateY(8px);
  transform: scale(1.06) translateY(8px);
}

.training-academy-style1__img .inner .overlay-experience {
  position: absolute;
  top: 0px;
  right: 0px;
  transform: rotate(180deg);
  writing-mode: vertical-lr;
  background-color: var(--thm-white);
  clip-path: polygon(0% 0%, 100% 10%, 100% 100%, 0% 100%);
  padding-right: 12px;
  padding-top: 40px;
  z-index: 5;
}

.training-academy-style1__img .inner .overlay-experience h3 {
  color: var(--thm-primary-color);
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  margin-left: -7px;
}

.training-academy-style1__img .inner .overlay-experience h3 span {
  color: #cfcbcb;
}

.training-academy-style1__img .bullets-img {
  position: absolute;
  right: 0;
  bottom: -10px;
  z-index: 5;
}

.training-academy-style1__img .bullets-img img {
  width: auto;
}

.training-academy-style1__content {
  position: relative;
  display: block;
}

.training-academy-style1__content .sec-title {
  padding-bottom: 39px;
}

.training-academy-style1__content-top {
  position: relative;
  display: block;
}

.training-academy-style1__content-top .single-text {
  position: relative;
  display: block;
  padding-bottom: 26px;
}

.training-academy-style1__content-top .single-text1 {
  padding-bottom: 0;
}

.training-academy-style1__content-top .single-text h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.training-academy-style1__content-top .single-text p {
  margin: 0;
}

.training-academy-style1__content-list {
  position: relative;
  display: block;
  padding-top: 17px;
}

.training-academy-style1__content-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.training-academy-style1__content-list li + li {
  margin-top: 11px;
}

.training-academy-style1__content-list li .icon {
  position: relative;
  display: block;
  color: var(--thm-primary-color);
  font-size: 20px;
  margin-right: 5px;
  line-height: 0;
}

.training-academy-style1__content-list li h4 {
  color: var(--thm-body-font-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  flex: 1;
}

.training-academy-style1__content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 33px;
}

.training-academy-style1__content-bottom .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--thm-primary-color);
  color: var(--thm-white);
  font-size: 25px;
  line-height: 25px;
}

.training-academy-style1__content-bottom .title {
  position: relative;
  display: block;
  padding-left: 20px;
  flex: 1;
}

.training-academy-style1__content-bottom h3 {
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
}

.training-academy-style1__content-bottom h3 a {
  color: var(--thm-primary-color);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.training-academy-style1__content-bottom h3 a:hover {
  color: var(--thm-black);
}

/*** 
=============================
    Club Offering Style1   
=============================
***/
.club-offerings {
  background-color: var(--thm-black-bg);
  padding: 140px 0px 140px;
}

.club-offerings__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.5;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
}

.club-offerings__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(20, 18, 18);
  background: linear-gradient(
    90deg,
    rgba(20, 18, 18, 0.28335084033613445) 60%,
    rgba(20, 18, 18, 1) 100%
  );
}

.club-offerings__scrolling {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.club-offerings__scrolling ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: fit-content;
}

.club-offerings__scrolling ul li {
  position: relative;
  display: block;
  white-space: nowrap;
  float: left;
  margin-left: 20px;
  opacity: 0.4;
  transition: all 0.4s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.club-offerings__scrolling2 {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.club-offerings__scrolling2 ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: fit-content;
}

.club-offerings__scrolling2 ul li {
  position: relative;
  display: block;
  white-space: nowrap;
  float: left;
  margin-left: 0px;
  opacity: 0.4;
  transition: all 0.4s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.club-offerings-content {
  position: relative;
  display: block;
}

.single-club-offerings {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.single-club-offerings::before {
  content: "";
  position: absolute;
  top: 0;
  left: -99999px;
  right: -99999px;
  height: 1px;
  background-color: rgb(255, 255, 255, 0.15);
}

.single-club-offerings:last-child::after {
  content: "";
  position: absolute;
  left: -99999px;
  bottom: 0;
  right: -99999px;
  height: 1px;
  background-color: rgb(255, 255, 255, 0.15);
}

.single-club-offerings .title-box {
  position: relative;
  display: block;
  max-width: 270px;
  width: 100%;
  padding: 43px 0;
  z-index: 1;
}

.single-club-offerings .title-box .title-box__bg {
  position: absolute;
  top: 0px;
  left: -99999px;
  bottom: -1px;
  right: 0;
  background-color: var(--thm-primary-color);
  opacity: 0;
  transform: translateX(-90px);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.single-club-offerings .title-box .title-box__bg::before {
  content: "";
  position: absolute;
  top: 0px;
  right: -100px;
  bottom: 0px;
  width: 100px;
  background-color: var(--thm-primary-color);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: -1;
}

.single-club-offerings:hover .title-box .title-box__bg {
  opacity: 1;
  transform: translateX(0px);
}

.single-club-offerings .title-box h3 {
  font-size: 24px;
  line-height: 34px;
  text-transform: uppercase;
}

.single-club-offerings .title-box h3 a {
  color: rgb(255, 255, 255, 0.3);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-club-offerings:hover .title-box h3 a {
  color: var(--thm-white);
}

.single-club-offerings .text-box {
  position: relative;
  display: block;
  margin-left: -30px;
  max-width: 510px;
  width: 100%;
  transform: scaleY(0);
  transition: all 400ms ease 200ms;
  z-index: 2;
}

.single-club-offerings:hover .text-box {
  transform: scaleY(1);
  transition: all 300ms linear;
  transition-delay: 0.1s;
}

.single-club-offerings .text-box p {
  color: #b3afaf;
}

.single-club-offerings .btn-box {
  position: relative;
  display: block;
}

.single-club-offerings .btn-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgb(255, 255, 255, 0.3);
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  font-family: var(--thm-font-2);
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-club-offerings:hover .btn-box a {
  color: var(--thm-white);
}

.single-club-offerings .btn-box a i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255, 0.15);
  margin-left: 20px;
}

/*** 
=============================
    Events Details Css      
=============================
***/
.events-details {
  background-color: var(--thm-white);
  padding: 140px 0px 140px;
}

.events-details-content {
  position: relative;
  display: block;
}

.events-details-content .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.events-details-content .img-box img {
  width: 100%;
}

.events-details-content-overview {
  position: relative;
  display: block;
  padding-top: 39px;
}

.events-details__title {
  position: relative;
  display: block;
}

.events-details__title h3 {
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.events-details__title .border-box {
  position: relative;
  display: block;
  width: 70px;
  height: 4px;
  background-color: var(--thm-primary-color);
  clip-path: polygon(0% 0%, 100% 0, 95% 100%, 0% 100%);
}

.events-details-content-overview .text-box {
  position: relative;
  display: block;
  padding-top: 33px;
}

.events-details-content-overview .text-box p {
  margin: 0;
}

.events-details-content-overview .text-box p + p {
  margin-top: 16px;
}

.events-details-content-provisions {
  position: relative;
  display: block;
  padding-top: 0;
}

.events-details-content-provisions .provisions-box {
  position: relative;
  display: block;
  margin-top: 35px;
}

.events-details-content-provisions .provisions-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 1px;
  background-color: #e3e3e3;
}

.events-details-content-provisions .provisions-box .row {
  --bs-gutter-x: 80px;
}

.events-details-content-provisions .provisions-box ul {
  position: relative;
  display: block;
}

.events-details-content-provisions .provisions-box ul li {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 15px;
}

.events-details-content-provisions .provisions-box ul li:first-child {
  padding-top: 0;
}

.events-details-content-provisions .provisions-box ul li + li {
  margin-top: 15px;
  border-top: 1px solid #e3e3e3;
}

.events-details-content-provisions .provisions-box ul li .icon {
  position: relative;
  display: block;
  color: var(--thm-primary-color);
  font-size: 16px;
  line-height: 0;
  margin-right: 15px;
}

.events-details-content-provisions .provisions-box ul li p {
  margin: 0;
}

.events-details-sidebar {
  position: relative;
  display: block;
  background-color: var(--thm-white);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.12);
  padding: 30px 30px 35px;
}

.events-details-sidebar .price-box {
  position: relative;
  display: block;
  background-color: var(--thm-black-bg);
  padding: 23px 30px 25px;
}

.events-details-sidebar .price-box .title {
  position: relative;
  display: block;
  padding-bottom: 4px;
}

.events-details-sidebar .price-box .title h3 {
  color: var(--thm-white);
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
}

.events-details-sidebar .price-box .title h3 span {
  font-size: 14px;
  line-height: 24px;
}

.events-details-sidebar .price-box .text {
  position: relative;
  display: flex;
  align-items: center;
}

.events-details-sidebar .price-box .text .icon {
  position: relative;
  display: block;
  color: var(--thm-primary-color);
  font-size: 16px;
  line-height: 0;
  margin-right: 5px;
}

.events-details-sidebar .price-box .text p {
  color: #aeb0b4;
}

.single-events-details-sidebar {
  position: relative;
  display: block;
  padding-top: 42px;
}

.events-details-sidebar-title {
  position: relative;
  display: block;
}

.events-details-sidebar-title h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.events-details-sidebar-title .border-box {
  position: relative;
  display: block;
  width: 50px;
  height: 1px;
  background-color: var(--thm-primary-color);
}

.events-details-sidebar-title .border-box::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--thm-primary-color);
  transform: translateY(-60%);
  z-index: 1;
}

.single-events-details-sidebar .list-item {
  position: relative;
  display: block;
  padding-top: 30px;
}

.single-events-details-sidebar .list-item li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 18px;
  margin-bottom: 17px;
}

.single-events-details-sidebar .list-item li:last-child {
  margin-bottom: 0px;
}

.single-events-details-sidebar .list-item li .date-time {
  position: relative;
  display: block;
}

.single-events-details-sidebar .list-item li .date-time h4 {
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: 1px;
}

.single-events-details-sidebar .list-item li .date-time p {
  margin: 0;
}

.single-events-details-sidebar .list-item li .left {
  position: relative;
  display: block;
}

.single-events-details-sidebar .list-item li .right {
  position: relative;
  display: block;
}

.single-events-details-sidebar .list-item li .right1 {
  position: relative;
  display: flex;
  align-items: center;
}

.single-events-details-sidebar .list-item li .right1 span {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0ea61c;
  margin-right: 10px;
}

.single-events-details-sidebar ul li.li2 {
  align-items: flex-end;
}

.events-details-sidebar-contact {
  position: relative;
  display: block;
  margin-top: 32px;
}

.events-details-sidebar-contact li {
  position: relative;
  display: block;
  padding-left: 45px;
}

.events-details-sidebar-contact li + li {
  margin-top: 15px;
}

.events-details-sidebar-contact li .icon {
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--thm-primary-color);
  font-size: 25px;
  line-height: 0;
}

.events-details-sidebar-contact li .title {
  position: relative;
  display: block;
}

.events-details-sidebar-contact li .title h4 {
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: 1px;
}

.events-details-sidebar-contact li .title p {
  margin: 0;
}

.events-details-sidebar-contact li .title p a {
  color: var(--thm-body-font-color);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.events-details-sidebar-contact li .title p a:hover {
  color: var(--thm-primary-color);
}

.events-details-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e3e3e3;
  padding-top: 40px;
  margin-top: 70px;
}

.events-details-bottom .btn-box {
  position: relative;
  display: flex;
  align-items: center;
}

.events-details-bottom .btn-box a + a {
  margin-left: 20px;
}

.events-details-bottom .btn-box .btn-one::before {
  background-color: var(--thm-primary-color);
}

.events-details-bottom .btn-box .btn-one::after {
  background-color: var(--thm-black-bg);
}

.events-details-bottom .btn-box .btn-one1 {
  color: var(--thm-black);
}

.events-details-bottom .btn-box .btn-one1:hover {
  color: var(--thm-white);
}

.events-details-bottom .btn-box .btn-one1::after {
  background-color: var(--thm-gray-bg);
}

.events-details-bottom .btn-box .btn-one1 i {
  color: var(--thm-primary-color);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.events-details-bottom .btn-box .btn-one1:hover i {
  color: var(--thm-white);
}

.events-details-bottom .social-links {
  position: relative;
  display: flex;
  align-items: center;
}

.events-details-bottom .social-links .title {
  position: relative;
  display: block;
}

.events-details-bottom .social-links .title h4 {
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
}

.events-details-bottom .social-links ul {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.events-details-bottom .social-links ul li {
  position: relative;
  display: block;
}

.events-details-bottom .social-links ul li + li {
  margin-left: 10px;
}

.events-details-bottom .social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 1px solid #e3e3e3;
  color: #b2b0af;
  font-size: 18px;
  line-height: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.events-details-bottom .social-links ul li a:hover {
  color: var(--thm-white);
  border-color: var(--thm-black-bg);
  background-color: var(--thm-black-bg);
}

.event-venue-map {
  position: relative;
  display: block;
  background-color: #ffffff;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.12);
  padding: 10px 10px 0;
  margin-top: 35px;
}

.event-venue-map .google-map {
  position: relative;
  display: block;
  background-color: #646464;
}

.event-venue-map__sidebar {
  position: relative;
  display: block;
  width: 100%;
  height: 260px;
  mix-blend-mode: luminosity;
}

.event-venue-map .text-box {
  position: relative;
  display: block;
  padding: 25px 20px 25px;
}

.event-venue-map .text-box h3 {
  font-size: 17px;
  margin: 0 0 10px;
}

.events-details-event-agenda {
  position: relative;
  display: block;
  padding: 52px 0 59px;
}

.events-details-event-agenda .events-details__title {
  padding-bottom: 40px;
}

/*** 
===============================
    About Club Style1 Css    
===============================
***/
.about-club-style1 {
  background-color: var(--thm-white);
  padding: 0px 0px 110px;
}

.about-club-style1 .container {
  max-width: 1670px;
}

.single-about-club-style1 {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.single-about-club-style1 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-about-club-style1 .img-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgb(25, 26, 28);
  background: linear-gradient(
    0deg,
    rgba(25, 26, 28, 1) 0%,
    rgba(25, 26, 28, 0.5018382352941176) 53%,
    rgba(25, 26, 28, 0.20211834733893552) 100%
  );
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.single-about-club-style1:hover .img-box::before {
  opacity: 1;
}

.single-about-club-style1 .img-box img {
  width: 100%;
}

.single-about-club-style1:hover .img-box img {
  -webkit-transform: scale(1.06) translateY(8px);
  transform: scale(1.06) translateY(8px);
}

/*** 
===============================
   Achivements Style1 Css    
===============================
***/
.achivements-style1 {
  background-color: var(--thm-gray-bg);
  padding: 140px 0px 110px;
}

.achivements-style1__content {
  position: relative;
  display: block;
  margin-right: 40px;
}

.achivements-style1__content .sec-title {
  padding-bottom: 22px;
}

.achivements-style1__content .text {
  position: relative;
  display: block;
}

.achivements-style1__content .text p {
  margin: 0;
}

.achivements-style1__img {
  position: relative;
  display: block;
}

.single-achivements-style1 {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--thm-white);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.06);
  padding: 40px 40px 33px;
  margin-bottom: 30px;
}

.single-achivements-style1 .shape1 {
  position: absolute;
  top: 0;
  right: 30px;
}

.single-achivements-style1 .icon {
  position: relative;
  display: block;
  z-index: 2;
}

.single-achivements-style1 .icon img {
  width: auto;
}

.single-achivements-style1 .content-box {
  position: relative;
  display: block;
  padding-top: 22px;
  z-index: 2;
}

.single-achivements-style1 .content-box .title {
  position: relative;
  display: block;
}

.single-achivements-style1 .content-box .title h4 {
  color: var(--thm-primary-color);
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
}

.single-achivements-style1 .content-box .title h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-top: 5px;
}

.single-achivements-style1 .content-box .title h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-achivements-style1 .content-box .title h3 a:hover {
  color: var(--thm-primary-color);
}

.single-achivements-style1 .content-box .year {
  position: relative;
  display: block;
  padding-top: 15px;
}

.single-achivements-style1 .content-box .year h4 {
  color: #a9a7a6;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
}

/*** 
===============================
    About Club Style1 Css    
===============================
***/
.callto-action-image-box {
  position: relative;
  display: block;
  min-height: 600px;
  z-index: 11;
}

.callto-action-image-box .container {
  max-width: 1750px;
}

.callto-action-image-box__inner {
  position: relative;
  display: block;
  min-height: 600px;
  margin-top: -300px;
}

.callto-action-image-box__inner-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

/*** 
=============================================
    Events Classes Style2 Css      
=============================================
***/
.events-classes-style2 {
  position: relative;
  display: block;
  background-color: var(--thm-gray-bg);
  padding: 140px 0 140px;
}

.events-classes-style2.training-pages-one {
  padding-bottom: 100px;
}

.events-classes-style2__inner {
  position: relative;
  display: block;
}

.events-classes__filter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--thm-white);
  box-shadow: 0px 0px 25px 0px rgba(25, 26, 28, 0.06);
  padding: 32px 40px 33px;
  margin-bottom: 40px;
}

.events-classes__filter .left-box {
  position: relative;
  display: block;
}

.events-classes__filter .left-box span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 50px;
  background-color: var(--thm-gray-bg);
  color: #a4a5a0;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.events-classes__filter .middle-box {
  position: relative;
  display: block;
  text-align: center;
}

.events-classes__filter .middle-box .middle-box__top {
  position: relative;
  display: block;
  width: 170px;
  margin: 0 auto;
}

.single-date-box-events-classes {
  position: relative;
  display: block;
}

.single-date-box-events-classes h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}

.events-classes__filter-carousel.owl-nav-style-one.owl-theme .owl-stage-outer {
  max-width: 170px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}

.events-classes__filter-carousel.owl-nav-style-one.owl-theme .owl-nav {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0px;
  justify-content: space-between;
  height: 0;
  width: 170px;
  margin: 0 auto;
}

.events-classes__filter-carousel.owl-nav-style-one.owl-theme
  .owl-nav
  [class*="owl-"] {
  width: 30px;
  height: 30px;
  background-color: transparent;
  z-index: 1;
  margin: 0 !important;
}

.events-classes__filter-carousel.owl-nav-style-one.owl-theme
  .owl-nav
  [class*="owl-"]::before {
  display: none;
}

.events-classes__filter-carousel.owl-nav-style-one.owl-theme
  .owl-nav
  [class*="owl-"]
  span {
  color: #a9a7a6;
}

.events-classes__filter-carousel.owl-nav-style-one.owl-theme
  .owl-nav
  [class*="owl-"]:hover
  span {
  color: var(--thm-primary-color);
}

.events-classes__filter .middle-box .inner {
  position: relative;
  display: block;
  margin-top: 20px;
}

.events-classes-style2__tab-btn {
  position: relative;
  display: block;
}

.events-classes-style2__tab-btn ul {
  position: relative;
  display: flex;
  align-items: center;
}

.events-classes-style2__tab-btn ul li {
  position: relative;
  display: block;
}

.events-classes-style2__tab-btn ul li + li {
  margin-left: 35px;
}

.events-classes-style2__tab-btn ul li .single-week-box {
  position: relative;
  display: block;
}

.events-classes-style2__tab-btn ul li .single-week-box h4 {
  color: #a4a5a0;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 200ms linear;
  transition: 0.1s;
}

.events-classes-style2__tab-btn ul li:hover .single-week-box h4,
.events-classes-style2__tab-btn ul li.active-btn-item .single-week-box h4 {
  color: var(--thm-black);
}

.events-classes__filter .right-box {
  position: relative;
  display: block;
}

.events-classes-filter-select-box {
  position: relative;
  display: block;
}

.events-classes-filter-select-box .nice-select {
  position: relative;
  display: block;
  border-radius: 0;
  background-color: transparent;
  border: 1px solid #e3e3e3;
  width: 200px;
  height: 50px;
  color: #a4a5a0;
  font-size: 16px;
  line-height: 48px;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 500ms ease;
}

.events-classes-filter-select-box .nice-select:focus {
  border-color: var(--thm-primary-color);
}

.events-classes-filter-select-box .nice-select::after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #a5a6a1;
  border-right: 2px solid #a5a6a1;
  right: 20px;
  margin-top: -2px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  z-index: 10;
}

.events-classes-filter-select-box .nice-select .list {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  padding: 0px 0 0px;
  margin-top: 10px;
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: scale(1) translateY(30px);
  -ms-transform: scale(1) translateY(30px);
  transform: scale(1) translateY(30px);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  height: 0;
  width: 100%;
  right: 0 !important;
  left: auto !important;
  z-index: 100;
}

.events-classes-filter-select-box .nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  height: auto;
}

.events-classes-filter-select-box .nice-select .option {
  color: var(--thm-black);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 40px;
  min-height: 40px;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.events-classes-filter-select-box .nice-select .option + .option {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.events-classes-filter-select-box .nice-select .option:hover,
.events-classes-filter-select-box .nice-select .option.focus,
.events-classes-filter-select-box .nice-select .option.selected.focus {
  color: var(--thm-black) !important;
  background-color: var(--thm-primary-color);
}

/** Events Classes Filter Tab Css **/
.events-classes-filter__tab .tabs-content-box {
  position: relative;
  display: block;
}

.events-classes-filter__tab .tab-content-box-item {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.events-classes-filter__tab .tab-content-box-item.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.events-classes-filter__tab .tab-content-box-item .tab-content-box-item-inner {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.events-classes-filter__tab
  .tab-content-box-item.tab-content-box-item-active
  .tab-content-box-item-inner {
  opacity: 1;
  transform: translateY(0px);
}

/** Events Classes Filter Tab Day Css **/
.events-classes-filter__tab-day .tabs-content-box2 {
  position: relative;
  display: block;
}

.events-classes-filter__tab-day .tab-content-box-item2 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.events-classes-filter__tab-day
  .tab-content-box-item2.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.events-classes-filter__tab-day
  .tab-content-box-item2
  .tab-content-box-item-inner-style2 {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.events-classes-filter__tab-day
  .tab-content-box-item2.tab-content-box-item-active
  .tab-content-box-item-inner-style2 {
  opacity: 1;
  transform: translateY(0px);
}

/** Events Classes Filter Tab Day Two Css **/
.events-classes-filter__tab-day2 .tabs-content-box2 {
  position: relative;
  display: block;
}

.events-classes-filter__tab-day2 .tab-content-box-item2 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.events-classes-filter__tab-day2
  .tab-content-box-item2.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.events-classes-filter__tab-day2
  .tab-content-box-item2
  .tab-content-box-item-inner-style2 {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.events-classes-filter__tab-day2
  .tab-content-box-item2.tab-content-box-item-active
  .tab-content-box-item-inner-style2 {
  opacity: 1;
  transform: translateY(0px);
}

/** Events Classes Filter Tab Day Three Css **/
.events-classes-filter__tab-day3 .tabs-content-box2 {
  position: relative;
  display: block;
}

.events-classes-filter__tab-day3 .tab-content-box-item2 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.events-classes-filter__tab-day3
  .tab-content-box-item2.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.events-classes-filter__tab-day3
  .tab-content-box-item2
  .tab-content-box-item-inner-style2 {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.events-classes-filter__tab-day3
  .tab-content-box-item2.tab-content-box-item-active
  .tab-content-box-item-inner-style2 {
  opacity: 1;
  transform: translateY(0px);
}

/** Events Classes Filter Tab Day Four Css **/
.events-classes-filter__tab-day4 .tabs-content-box2 {
  position: relative;
  display: block;
}

.events-classes-filter__tab-day4 .tab-content-box-item2 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.events-classes-filter__tab-day4
  .tab-content-box-item2.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.events-classes-filter__tab-day4
  .tab-content-box-item2
  .tab-content-box-item-inner-style2 {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.events-classes-filter__tab-day4
  .tab-content-box-item2.tab-content-box-item-active
  .tab-content-box-item-inner-style2 {
  opacity: 1;
  transform: translateY(0px);
}

/** Events Classes Filter Tab Day Five Css **/
.events-classes-filter__tab-day5 .tabs-content-box2 {
  position: relative;
  display: block;
}

.events-classes-filter__tab-day5 .tab-content-box-item2 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.events-classes-filter__tab-day5
  .tab-content-box-item2.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.events-classes-filter__tab-day5
  .tab-content-box-item2
  .tab-content-box-item-inner-style2 {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.events-classes-filter__tab-day5
  .tab-content-box-item2.tab-content-box-item-active
  .tab-content-box-item-inner-style2 {
  opacity: 1;
  transform: translateY(0px);
}

.events-classes-style2__content {
  position: relative;
  display: block;
}

.events-classes-style2__tab-btn2 {
  position: relative;
  display: block;
}

.events-classes-style2__tab-btn2 ul {
  position: relative;
  display: flex;
  align-items: center;
}

.events-classes-style2__tab-btn2 ul li {
  position: relative;
  display: block;
  width: 14.29%;
}

.events-classes-style2__tab-btn2 ul li .single-week-box {
  position: relative;
  display: block;
  cursor: pointer;
  text-align: center;
  border-right: 1px solid #454740;
  background-color: var(--thm-black-bg);
  padding: 17px 0px 18px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.events-classes-style2__tab-btn2 ul li:hover .single-week-box,
.events-classes-style2__tab-btn2 ul li.active-btn-item .single-week-box {
  background-color: var(--thm-primary-color);
  border-color: var(--thm-primary-color);
}

.events-classes-style2__tab-btn2 ul li .single-week-box.one {
  width: 168px;
}

.events-classes-style2__tab-btn2 ul li .single-week-box h4 {
  color: var(--thm-white);
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
}

.events-classes-style2__content-tab {
  position: relative;
  display: block;
  background-color: var(--thm-white);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.06);
  padding: 42px 40px 43px;
}

.events-classes-info-box {
  position: relative;
  display: block;
}

.single-events-classes-info-box {
  position: relative;
  display: block;
}

.single-events-classes-info-box::before {
  content: "";
  position: absolute;
  top: 59px;
  right: 90px;
  bottom: 7px;
  width: 1px;
  background-color: var(--thm-border-color);
}

.single-events-classes-info-box .date-box-top {
  position: relative;
  display: block;
  margin-bottom: 3px;
}

.single-events-classes-info-box .date-box-top::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--thm-border-color);
}

.single-events-classes-info-box .date-box-top h5 {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  background-color: var(--thm-white);
  color: #a4a5a0;
  font-size: 16px;
  text-transform: uppercase;
  z-index: 1;
}

.single-events-classes-info-box ul {
  position: relative;
  display: block;
}

.single-events-classes-info-box ul::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 460px;
  bottom: 7px;
  width: 1px;
  background-color: var(--thm-border-color);
}

.single-events-classes-info-box ul::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 360px;
  bottom: 7px;
  width: 1px;
  background-color: var(--thm-border-color);
}

.single-events-classes-info-box ul li {
  position: relative;
  display: flex;
  border-bottom: 1px solid var(--thm-border-color);
  padding-top: 22px;
  padding-bottom: 23px;
}

.single-events-classes-info-box ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.single-events-classes-info-box ul li .title-box {
  position: relative;
  display: block;
  width: 460px;
}

.single-events-classes-info-box ul li .title-box h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}

.single-events-classes-info-box ul li .time-box {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 270px;
  padding: 0 29px;
}

.single-events-classes-info-box ul li .time-box .time-box__left {
  position: relative;
  display: flex;
  align-items: center;
}

.single-events-classes-info-box ul li .time-box .time-box__left i {
  position: relative;
  display: inline-block;
  padding-right: 5px;
  color: #a4a5a0;
  font-size: 14px;
  top: 2px;
}

.single-events-classes-info-box ul li .time-box .time-box__left h5 {
  color: #a4a5a0;
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
}

.single-events-classes-info-box ul li .time-box .time-box__right {
  position: relative;
  display: block;
}

.single-events-classes-info-box ul li .time-box .time-box__right h5 {
  color: #a4a5a0;
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
}

.single-events-classes-info-box ul li .value-box {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 270px;
  padding: 0 29px;
}

.single-events-classes-info-box ul li .value-box .value-box__left {
  position: relative;
  display: flex;
  align-items: center;
}

.single-events-classes-info-box ul li .value-box .value-box__left i {
  position: relative;
  display: inline-block;
  padding-right: 5px;
  color: #a4a5a0;
  font-size: 14px;
  top: 1px;
}

.single-events-classes-info-box ul li .value-box .value-box__left h5 {
  color: #a4a5a0;
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
}

.single-events-classes-info-box ul li .value-box .value-box__right {
  position: relative;
  display: block;
}

.single-events-classes-info-box ul li .value-box .value-box__right h5 {
  color: #a4a5a0;
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
}

.single-events-classes-info-box ul li .btn-box {
  position: relative;
  display: block;
  width: 90px;
  text-align: right;
}

.single-events-classes-info-box ul li .btn-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--thm-font-2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-events-classes-info-box ul li .btn-box a:hover {
  color: var(--thm-primary-color);
}

.single-events-classes-info-box ul li .btn-box a i {
  position: relative;
  top: 1px;
  font-size: 11px;
  margin-left: 5px;
}

/***
.events-classes-style2__content-tab ul {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e6e8e3;
    padding-bottom: 22px;
    margin-bottom: 23px;
}

.events-classes-style2__content-tab ul:last-child {
    border-bottom: 0px solid #e6e8e3;
    margin-bottom: 0;
    padding-bottom: 0;
}

.events-classes-style2__content-tab ul li {
    position: relative;
    display: block;
}

.events-classes-style2__content-tab ul li.border-two {
    position: relative;
    display: block;
}

.events-classes-style2__content-tab ul li.border-two::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 246px;
    background-color: #e3e3e3;
}

.events-classes-style2__content-tab ul li.border-three {
    position: relative;
    display: block;
}

.events-classes-style2__content-tab ul li.border-three::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 246px;
    background-color: #e3e3e3;
}

.events-classes-style2__content-tab ul li .title {
    position: relative;
    display: block;
    width: 460px;
}

.events-classes-style2__content-tab ul li .title h3 {
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
}

.events-classes-style2__content-tab ul li .time-value {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 270px;
    padding: 0px 30px 0px;
}

.events-classes-style2__content-tab ul li .time-value .left {
    position: relative;
    display: flex;
    align-items: center;
}

.events-classes-style2__content-tab ul li .time-value .left .icon {
    color: #a4a5a0;
    font-size: 16px;
    line-height: 0;
    margin-right: 10px;
}

.events-classes-style2__content-tab ul li .time-value .left h4 {
    color: #a4a5a0;
    font-size: 16px;
    line-height: 30px;
}

.events-classes-style2__content-tab ul li .time-value .right {
    position: relative;
    display: block;
}

.events-classes-style2__content-tab ul li .time-value .right h4 {
    color: #a4a5a0;
    font-size: 16px;
    line-height: 30px;
}

.events-classes-style2__content-tab ul li .btn-box {
    position: relative;
    display: block;
    width: 90px;
    line-height: 30px;
}

.events-classes-style2__content-tab ul li .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: right;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 30px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.events-classes-style2__content-tab ul li .btn-box a:hover {
    color: var(--thm-primary-color);
}

.events-classes-style2__content-tab ul li .btn-box a i {
    font-size: 12px;
    margin-left: 10px;
}

***/

/*** 
=============================================
    Coming Soon Page Style1      
=============================================
***/
.coming-soon-page-style1 {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 10;
}

.coming-soon-page-style1__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: var(--thm-black);
  background-blend-mode: luminosity;
  z-index: -1;
}

.coming-soon-page-style1__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(0deg, #000000 5%, rgba(0, 0, 0, 0.5) 100%);
}

.coming-soon-page-style1__content {
  position: relative;
  display: block;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.coming-soon-page-style1__content .inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.coming-soon-page-style1__content .big-title {
  position: relative;
  display: inline-block;
  color: transparent;
  font-size: 80px;
  line-height: 1.1em;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
  -webkit-background-clip: text;
  -webkit-text-stroke: 1px var(--thm-white);
  word-spacing: 15px;
}

.timer-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 57px 0 42px;
  z-index: 2;
}

.timer-box .countdown-timer li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  width: 170px;
  height: 170px;
  margin: 0px 15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background-color: var(--thm-base);
  border-radius: 50%;
}

.timer-box .countdown-timer li span.days,
.timer-box .countdown-timer li span.hours,
.timer-box .countdown-timer li span.minutes,
.timer-box .countdown-timer li span.seconds {
  color: #ffffff;
  font-size: 55px;
  line-height: 60px;
  font-weight: 700;
  font-family: var(--thm-font);
}

.timer-box .countdown-timer li span.timeRef {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 11px;
  font-family: var(--thm-font);
}

.coming-soon-page-style1__content .inner .text {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.coming-soon-page-style1__content .inner .text p {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.subscribe-box-style1 {
  position: relative;
  display: block;
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
}

.subscribe-box-style1 form {
  position: relative;
  display: block;
  width: 100%;
}

.subscribe-box-style1 form input[type="email"] {
  position: relative;
  display: block;
  max-width: 560px;
  width: 100%;
  height: 70px;
  border-radius: 7px;
  background: #ffffff;
  border: 1px solid #ffffff !important;
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 400;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 500ms ease 0s;
  font-family: var(--thm-font);
}

.subscribe-box-style1 form button {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 195px;
  background: var(--thm-primary-color);
  border-radius: 7px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 70px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  text-align: center;
  border: 0px solid #e1e1e1 !important;
  transition: all 500ms ease 0s;
}

.subscribe-box-style1 form input[type="email"]:focus {
  color: var(--thm-black);
}

.subscribe-box-style1 form input[type="email"]:focus + button,
.subscribe-box-style1 form button:hover {
  color: var(--thm-black);
}

.subscribe-box-style1 form input::-webkit-input-placeholder {
  color: #444444;
}

.subscribe-box-style1 form input:-moz-placeholder {
  color: #444444;
}

.subscribe-box-style1 form input::-moz-placeholder {
  color: #444444;
}

.subscribe-box-style1 form input:-ms-input-placeholder {
  color: #444444;
}

/*** 
=============================================
    Error Page Css      
=============================================
***/
.error-page {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--thm-white);
}

.error-page__img {
  position: absolute;
  top: 50%;
  right: 35%;
  z-index: 3;
}

.error-page__img img {
  width: auto;
}

.error-page__scrolling {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--thm-gray-bg);
  padding: 16px 0 17px;
  z-index: 10;
}

.error-page__scrolling2 {
  top: auto;
  bottom: 0;
}

.error-page__scrolling .inner {
  position: relative;
  display: block;
}

.error-page__scrolling .inner ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: fit-content;
}

.error-page__scrolling .inner ul li {
  position: relative;
  display: block;
  white-space: nowrap;
  float: left;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 1.1em;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--thm-font-2);
  margin-left: 100px;
  transition: all 0.4s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.error-page .big-title {
  position: absolute;
  top: -116px;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  -webkit-text-stroke: 1px var(--thm-gray-bg);
  font-size: 1100px;
  line-height: 1.1em;
  font-family: var(--thm-font-2);
  font-weight: 700;
  font-style: italic;
  z-index: -1;
}

.error-page .content-box {
  position: relative;
  display: block;
  z-index: 4;
}

.error-page .content-box .title {
  position: relative;
  display: block;
  padding-bottom: 18px;
}

.error-page .content-box .title h3 {
  color: var(--thm-primary-color);
  font-size: 40px;
  line-height: 1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.error-page .content-box .title h2 {
  color: var(--thm-black);
  font-size: 100px;
  line-height: 1.1em;
  text-transform: uppercase;
}

.error-page .content-box .text {
  position: relative;
  display: block;
}

.error-page .content-box .text p {
  margin: 0;
}

.error-page .content-box .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  padding-top: 33px;
}

/*** 
==========================
    Faq Page One Css      
==========================
***/
.faq-page-one {
  background-color: var(--thm-white);
  padding: 140px 0px 120px;
}

.faq-page-one__tab {
  position: relative;
  display: block;
}

.faq-page-one__content {
  position: relative;
  display: block;
  top: -5px;
}

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

.faq-page-one__content .tabs-button-box {
  position: relative;
  display: block;
}

.faq-page-one__content .tabs-button-box li {
  position: relative;
  display: block;
}

.faq-page-one__content .tabs-button-box li + li {
  margin-top: 15px;
}

.faq-page-one__content .tabs-button-box li .title {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.faq-page-one__content .tabs-button-box li .title p {
  color: #a9a7a6;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-page-one__content .tabs-button-box li:hover .title p,
.faq-page-one__content .tabs-button-box li.active-btn-item .title p {
  color: var(--thm-black);
}

.faq-page-one__content .tabs-button-box li .title .icon {
  position: relative;
  display: block;
  opacity: 0;
  color: var(--thm-primary-color);
  font-size: 14px;
  line-height: 0;
  margin-left: 10px;
  transform: translateX(-20px);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.faq-page-one__content .tabs-button-box li:hover .title .icon,
.faq-page-one__content .tabs-button-box li.active-btn-item .title .icon {
  opacity: 1;
  transform: translateX(0px);
}

.faq-page-one__content .question-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background-color: var(--thm-gray-bg);
  background: linear-gradient(
    90deg,
    rgba(245, 244, 244, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  padding: 22px 25px 23px;
  padding-right: 0;
  margin-top: 51px;
}

.faq-page-one__content .question-box::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 4px;
  height: 70px;
  background-color: var(--thm-primary-color);
}

.faq-page-one__content .question-box .icon {
  position: relative;
  display: block;
  color: var(--thm-primary-color);
  font-size: 35px;
  line-height: 0px;
  top: 8px;
}

.faq-page-one__content .question-box .title {
  position: relative;
  display: block;
  padding-left: 15px;
  flex: 1;
}

.faq-page-one__content .question-box .title h5 {
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
}

.faq-page-one__content .question-box .title p {
  margin: 0;
}

.faq-page-one__content .question-box .title p a {
  color: var(--thm-body-font-color);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-page-one__content .question-box .title p a:hover {
  color: var(--thm-primary-color);
}

.faq-page-one__tab .tabs-content-box {
  position: relative;
  display: block;
  margin-left: 0px;
}

.faq-page-one__tab .tab-content-box-item {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.faq-page-one__tab .tab-content-box-item.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.faq-page-one__tab .tab-content-box-item .faq-page-one__content-tab-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.faq-page-one__tab
  .tab-content-box-item.tab-content-box-item-active
  .faq-page-one__content-tab-item {
  opacity: 1;
  transform: translateY(0px);
}

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

.faq-style1__content .accordion-box-style1 .accordion {
  margin-bottom: 20px;
}

.faq-style1__content .accordion-box-style1 .accordion .accord-btn {
  display: block;
  background-color: transparent;
  border: 1px solid #e3e3e3;
  padding: 0px 0px 0px;
  padding-right: 0px;
  border-radius: 0px;
  height: 60px;
}

.faq-style1__content .accordion-box-style1 .accordion .accord-btn::after {
  content: "\e907";
  right: 30px;
  left: auto;
  color: #a9a7a6;
}

.faq-style1__content .accordion-box-style1 .accordion .accord-btn.active:after {
  color: var(--thm-black);
  content: "\e93a";
}

.faq-style1__content .accordion-box-style1 .accordion .accord-btn h4 {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
}

.faq-style1__content .accordion-box-style1 .accordion .accord-btn h4 span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background-color: var(--thm-gray-bg);
  border-right: 1px solid #e3e3e3;
  color: #a9a7a6;
  margin-right: 30px;
}

.faq-style1__content
  .accordion-box-style1
  .accordion
  .accord-btn.active
  h4
  span {
  color: var(--thm-primary-color);
}

.faq-style1__content .accordion-box-style1 .accordion .accord-content {
  background-color: transparent;
  box-shadow: none;
  border: 1px solid #e3e3e3;
  border-top: none;
  padding: 33px 40px 33px;
}

/*** 
===================================
    Project Page One Css      
===================================
***/
.project-page-one {
  background-color: var(--thm-white);
  padding: 140px 0 140px;
}

.project-menu-box {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
  margin-bottom: 50px;
}

.project-filter {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.project-filter li {
  position: relative;
  display: flex;
  float: left;
  margin: 0 0px 10px;
}

.project-filter li:first-child {
  margin-left: 0;
}

.project-filter li:last-child {
  margin-right: 0;
}

.project-filter li .filter-text {
  position: relative;
  display: block;
  padding: 0 30px;
  background-color: transparent;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 60px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--thm-font-2);
  transition: all 0.4s ease;
  z-index: 1;
}

.project-filter li .filter-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  right: 0px;
  height: 100%;
  background-color: var(--thm-gray-bg);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  transition: all 900ms ease;
  z-index: -1;
}

.project-filter li:hover .filter-text:before,
.project-filter li.active .filter-text:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.project-filter li:hover .filter-text,
.project-filter li.active .filter-text {
  color: var(--thm-primary-color);
}

.project-filter li .count {
  display: none;
}

.project-page-one .single-project-style2 {
  margin-bottom: 43px;
}

.project-page-one__load-more-btn {
  position: relative;
  display: block;
  text-align: center;
  line-height: 0;
  padding-top: 10px;
}

/*** 
===================================
    Project Page One Css      
===================================
***/
.project-page-two {
  background-color: var(--thm-white);
  padding: 140px 0 140px;
}

.project-page-two__load-more-btn {
  position: relative;
  display: block;
  text-align: center;
  line-height: 0;
  padding-top: 30px;
}

/*** 
===================================
    Project Page Three Css      
===================================
***/
.project-page-three {
  background-color: var(--thm-white);
  padding: 140px 0 140px;
}

.project-page-three .container {
  max-width: 1880px;
}

.project-page-three__load-more-btn {
  position: relative;
  display: block;
  text-align: center;
  line-height: 0;
  padding-top: 30px;
}

/* Cursor */
.cursor {
  position: fixed;
  background-color: var(--thm-primary-color);
  width: 6px;
  height: 6px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: scale(1);
  transform: scale(1);
  display: none;
}

.cursor::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  bottom: -7px;
  right: -7px;
  border: 1px solid var(--thm-primary-color);
  border-radius: 50%;
}

.cursor.active {
  opacity: 1;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.cursor.menu-active {
  opacity: 1;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.cursor.hovered {
  opacity: 1;
}

.cursor-follower {
  position: fixed;
  background-color: var(--thm-primary-color);
  opacity: 0.3;
  width: 33px;
  height: 33px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background,
    0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background,
    0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background,
    0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
  display: none;
}

.cursor-follower.active {
  opacity: 0.1;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.cursor-follower.menu-active {
  opacity: 1;
  -webkit-transform: scale(3);
  transform: scale(3);
}

.cursor-follower.hovered {
  opacity: 1;
}

/* Cursor End */

#ui-datepicker-div.ui-widget-content {
  border: 1px solid #c5c5c5;
  background: #fff none repeat scroll 0 0;
  border: 1px solid #777;
  color: #252525;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 5px;
  z-index: 999 !important;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: #151515 none repeat scroll 0 0;
  border: 2px solid #252525;
  border-radius: 0;
  color: #fff;
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}

.ui-datepicker td a {
  color: #000000 !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #333333 !important;
  background: #333333 !important;
  color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  transition: all 500ms ease;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  background: #fff;
  border: none;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 0.4em;
  width: 100%;
}

.ui-datepicker th {
  border: medium none;
  font-weight: 600;
  padding: 2px 3px;
  text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
  background: #43c3ea;
  color: #fff;
  border-color: #43c3ea;
}

/*--------------------------------------------------
# End Css 
----------------------------------------------------*/
