/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --thm-font: "Open Sans", sans-serif;
  --thm-font-2: "Roboto", sans-serif;

  /* CREST GOLD */
  --thm-base: #dc9302;
  --thm-base-rgb: 194, 133, 10;

  /* DARK NAVY */
  --thm-black: #001a57;
  --thm-black-rgb: 0, 26, 87;

  /* GRAY */
  --thm-gray: #838691;
  --thm-gray-rgb: 131, 134, 145;

  /* PRIMARY NAVY */
  --thm-primary: #00235a;
  --thm-primary-rgb: 0, 35, 90;
}

.row {
  /* --bs-gutter-x: 30px; */
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--thm-font);
  color: var(--thm-gray);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--thm-black);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-moz-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-black);
  font-weight: 700;
  font-family: var(--thm-font-2);
  margin: 0;
}

p {
  margin: 0;
}

.noSelect {
  -ms-user-select: none;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  outline: none;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1920px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--thm-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

/*==============================================
   Preloader
===============================================*/
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  background: var(--thm-black);
}

.loader {
  background: -webkit-linear-gradient(0deg, #ffffff 0%, #777777 100%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: inline-block;
}

@media (max-width: 991.98px) {
  .loader {
    width: 100px;
    height: 100px;
  }
}

.loader:before,
.loader:after {
  content: "";
  background: var(--thm-black);
  width: 100%;
  height: 100%;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  position: absolute;
  bottom: 45px;
  -webkit-clip-path: circle(50% at 50% 100%);
  clip-path: circle(50% at 50% 100%);
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
}

@media (max-width: 991.98px) {
  .loader:before,
  .loader:after {
    bottom: 45px;
  }
}

.loader:after {
  -webkit-transform-origin: center top;
  transform-origin: center top;
  top: 45px;
  -webkit-clip-path: circle(50% at 50% 0);
  clip-path: circle(50% at 50% 0);
}

@media (max-width: 991.98px) {
  .loader:after {
    top: 45px;
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/***
=============================================
    Thm Btn
=============================================
***/
.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--thm-base);
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 23px 40px 22px;
  border-radius: 0px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-family: var(--thm-font-2);
  letter-spacing: 0.01em;
  overflow: hidden;
  z-index: 1;
}

.thm-btn::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--thm-black);
  color: #ffffff;
  transition: 0.5s;
  transform-origin: bottom;
  transform: translateY(-100%) rotateX(90deg);
}

.thm-btn:hover::before {
  transform: translateY(0) rotateX(0deg);
}

.thm-btn::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--thm-base);
  color: #ffffff;
  transition: 0.5s;
  transform-origin: top;
  transform: translateY(0) rotateX(0deg);
}

.thm-btn:hover::after {
  transform: translateY(100%) rotateX(90deg);
}

/***
=============================================
    Section Title
=============================================
***/
.sec-title {
  position: relative;
  display: block;
  margin-top: -8px;
  padding-bottom: 57px;
}

.sec-title__tagline {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.sec-title__tagline span.left {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--thm-base);
  margin-right: 15px;
  top: -6px;
}

.sec-title__tagline span.right {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--thm-base);
  margin-left: 15px;
  top: -6px;
}

.sec-title__tagline h6 {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.sec-title__title {
  font-size: 50px;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
}

.sec-title__text {
  position: relative;
  color: var(--thm-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-top: 30px;
}

/***
=============================================
    Scroll To Top 
=============================================
***/
.scroll-to-top {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 70px;
  background: var(--thm-base);
  position: fixed;
  bottom: 93px;
  right: 20px;
  z-index: 99;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-align: center;
  transition: all 0.4s ease;
  display: none;
  transition: all 0.4s ease;
  overflow: hidden;
}

.scroll-to-top i {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
  line-height: 70px;
}

.scroll-to-top:hover {
  background-color: var(--thm-black);
}

.scroll-to-top:hover i {
  color: #fff;
}

/***
=============================================
    xs Sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  cursor: url(../images/icon/cross-out.png), pointer;
  z-index: 99999999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: 0.6;
  visibility: visible;
  transition-delay: 0s;
  right: 100%;
  background-color: #000000;
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 365px;
  background-color: var(--thm-black);
  overflow: hidden;
  overflow-y: auto;
  -webkit-transform: translateX(-300px);
  transform: translateX(-300px);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 1;
  z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  left: 0;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.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 600ms ease 800ms;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  z-index: 0;
  background-color: #000000;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--thm-base);
  border-color: var(--thn-base);
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
  position: relative;
  display: inline-block;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 14px;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--thm-base);
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
  position: relative;
  display: block;
  padding-top: 2px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn {
  position: relative;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn .thm-btn {
  position: relative;
}

.xs-sidebar-group
  .content-inner
  .form-inner
  .form-group.message-btn
  .thm-btn::before {
  color: var(--thm-base);
  background: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type="text"],
.xs-sidebar-group .content-inner .form-inner .form-group input[type="email"],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  transition: all 500ms ease;
  outline: none;
  border: none;
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

.sidebar-contact-info {
  position: relative;
  display: block;
  padding-top: 43px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: #b0b0bd;
  line-height: 30px;
}

.sidebar-contact-info ul li span {
  position: relative;
  display: inline-block;
  width: 25px;
}

.sidebar-contact-info ul li span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
}

.sidebar-contact-info ul li a {
  color: #b0b0bd;
}

.xs-sidebar-group .content-inner .thm-social-link1 {
  overflow: hidden;
}

.thm-social-link1 {
  position: relative;
  display: block;
}

.thm-social-link1 ul {
  position: relative;
}

.thm-social-link1 ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
  margin-right: 0;
}

.thm-social-link1 ul li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background: var(--thm-base);
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: #ffffff;
  border-radius: 50%;
  transition: 0.5s;
  transform: scale(0.5);
  opacity: 0;
  content: "";
  z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
  transform: scale(1);
  opacity: 1;
}

.thm-social-link1 ul li a:hover {
  color: var(--thm-base);
}

/***
=============================================
    Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin-top: 20px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin: 0px 2.5px;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #ffffff;
  color: var(--thm-base);
  font-size: 20px;
  line-height: 50px;
  font-weight: 400;
  text-align: center;
  font-family: var(--thm-font);
  box-shadow: 0px 0px 7px 0px rgb(0, 0, 0, 0.07);
  transition: all 500ms ease;
  z-index: 1;
}

.styled-pagination li a span::before {
  position: relative;
  top: -2px;
  color: var(--thm-base);
  font-size: 15px;
  transition: all 500ms ease;
}

.styled-pagination li a:hover span::before {
  color: #ffffff;
}

.styled-pagination li a:hover,
.styled-pagination li a.active {
  color: #ffffff;
  background: var(--thm-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  color: #ffffff;
  line-height: 50px;
}

/***
=============================================
    Main Header One
=============================================
***/
.main-header {
  position: relative;
  display: block;
}

.main-menu {
  position: relative;
  z-index: 91;
}

.main-menu__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  flex-wrap: wrap;
}

.main-menu__inner .left {
  display: flex;
  align-items: center;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
  position: relative;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 54px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 500ms ease;
  font-family: var(--thm-font-2);
  padding-top: 26px;
  padding-bottom: 26px;
  z-index: 1;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
  color: var(--thm-base);
}

.main-menu .main-menu__list > li.dropdown a,
.stricky-header .main-menu__list > li.dropdown a {
  padding-right: 0px;
}

.main-menu .main-menu__list > li.current > a::before,
.main-menu .main-menu__list > li:hover > a::before,
.stricky-header .main-menu__list > li.current > a::before,
.stricky-header .main-menu__list > li:hover > a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list > li.dropdown > a::before {
  position: absolute;
  right: -15px;
  font-family: "icomoon" !important;
  /* content: "\e916"; */
  color: var(--thm-black);
  font-size: 12px;
  line-height: 30px;
  font-weight: 700;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list > li.current.dropdown > a::before,
.main-menu .main-menu__list > li:hover.dropdown > a::before {
  color: var(--thm-base);
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition:
    opacity 200ms ease,
    visibility 200ms ease,
    -webkit-transform 400ms ease;
  transition:
    opacity 200ms ease,
    visibility 200ms ease,
    -webkit-transform 400ms ease;
  transition:
    opacity 200ms ease,
    visibility 200ms ease,
    transform 400ms ease;
  transition:
    opacity 200ms ease,
    visibility 200ms ease,
    transform 400ms ease,
    -webkit-transform 400ms ease;
  z-index: 99;
}

.main-header-two__bottom .main-menu .main-menu__list li ul {
  margin-top: 13px;
}

.stricky-header .main-menu__list li ul {
  margin-top: 0px;
}

.main-menu .main-menu__list li:hover > ul,
.stricky-header .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list li ul li,
.stricky-header .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list li ul li + li,
.stricky-header .main-menu__list li ul li + li {
  border-top: 1px solid #f7f7f7;
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
  position: relative;
  display: block;
  color: rgba(var(--thm-black-rgb), 0.8);
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: 500ms;
  font-family: var(--thm-font-2);
}

.main-menu .main-menu__list li ul li:hover > a,
.stricky-header .main-menu__list li ul li:hover > a {
  background-color: var(--thm-base);
  color: #ffffff;
}

.main-menu .main-menu__list li ul li > ul,
.stricky-header .main-menu__list li ul li > ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu .main-menu__list li ul li > ul ul,
.stricky-header .main-menu__list li ul li > ul ul {
  display: none;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #ffffff;
  width: 100%;
  visibility: hidden;
  transform: translateY(-120%);
  transition:
    transform 500ms ease,
    visibility 500ms ease;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.stricky-header.main-menu {
  padding: 0 0px;
}

.stricky-header.stricky-fixed {
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .stricky-one-logo img {
  max-height: 70px !important;
  width: auto;
  padding: 5px 0;
}

.stricky-header .stricky-one-logo {
  display: flex;
  align-items: center;
}

.stricky-header .main-menu__inner {
  box-shadow: none;
  padding-right: 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.mobile-nav__buttons {
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list ul {
    display: flex;
  }
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--thm-black);
  cursor: pointer;
}

.mobile-nav__buttons a + a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--thm-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 30px;
  color: var(--thm-base);
  cursor: pointer;
  transition: 500ms;
  margin-right: 0px;
}
.main-header-three .main-menu .mobile-nav__toggler {
  margin-top: -80% !important;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--thm-base);
}

.main-menu.main-menu--1--2 .mobile-nav__toggler {
  color: var(--thm-base);
}

.main-menu.main-menu--1--2 .mobile-nav__toggler:hover {
  color: #ffffff;
}

/***
=============================================
    Mobile Nav
=============================================
***/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transform: translateX(-50%);
  transform-origin: right center;
  transition:
    transform 500ms ease-in,
    opacity 500ms linear,
    visibility 500ms ease-in;
  z-index: 999;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background: var(--thm-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.mobile-nav__content .thm-btn {
  padding: 8px 0;
  width: 100%;
  text-align: center;
}

.mobile-nav__content .logo-box {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li ul {
  padding-left: 10px;
}

.mobile-nav__content .main-menu__list li a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 16px;
  font-family: var(--thm-font);
  font-weight: 400;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--thm-base);
}

.mobile-nav__content .main-menu__list li a:hover {
  color: var(--thm-base);
}

.mobile-nav__content .main-menu__list li a button {
  width: 28px;
  height: 28px;
  background-color: var(--thm-base);
  border: none;
  outline: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  border-radius: 0px;
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--thm-black);
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--thm-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--thm-base);
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: #ffffff;
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--thm-text-dark);
  font-size: 14px;
  font-weight: 400;
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 0.07em;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--thm-base);
}

.mobile-nav__contact li > i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--thm-base);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  margin-right: 10px;
  color: #fff;
}

/* =========================================================
   CREST SOLUTIONS - MOBILE NAV CONTACT
   LOCATION FIX
   ========================================================= */

.mobile-nav__contact {
  margin: 1rem;
  margin-top: 2rem;
  padding: 0;
}

/* -----------------------------------------
   All contact items
   ----------------------------------------- */

.mobile-nav__contact li {
  display: flex !important;
  align-items: center;

  width: 100%;

  margin-bottom: 18px;

  line-height: 1.5;
}

/* -----------------------------------------
   Location item
   ----------------------------------------- */

.mobile-nav__contact li:last-child {
  align-items: flex-start;

  margin-top: 8px;
}

/* -----------------------------------------
   Icons
   ----------------------------------------- */

.mobile-nav__contact li > i {
  flex: 0 0 40px;

  width: 30px !important;
  min-width: 30px;

  height: 40px !important;

  display: flex !important;

  align-items: center;
  justify-content: center;

  margin: 0 15px 0 0 !important;

  padding: 0 !important;

  border-radius: 50%;

  background: #c2850a;

  color: #ffffff;

  font-size: 22px;

  line-height: 1 !important;

  text-align: center;

  box-sizing: border-box;

  position: relative;

  top: 0 !important;
}

/* -----------------------------------------
   Location icon alignment
   ----------------------------------------- */

.mobile-nav__contact li:last-child > i {
  margin-top: 3px !important;

  flex-shrink: 0;
}

/* -----------------------------------------
   Text / links
   ----------------------------------------- */

.mobile-nav__contact li > a,
.mobile-nav__contact li > span {
  flex: 1;

  min-width: 0;

  color: #ffffff;

  font-size: 18px;

  line-height: 1.7;

  text-decoration: none;

  margin: 0 !important;

  padding: 0 !important;
}

/* -----------------------------------------
   Email + phone hover
   ----------------------------------------- */

.mobile-nav__contact li > a {
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.mobile-nav__contact li > a:hover {
  color: #c2850a;

  padding-left: 4px !important;
}

/* -----------------------------------------
   Location text
   ----------------------------------------- */

.mobile-nav__contact li:last-child > span {
  color: #aeb6c5;

  font-size: 17px;

  line-height: 1.85;

  padding-right: 5px !important;
}

/* -----------------------------------------
   Better spacing between items
   ----------------------------------------- */

.mobile-nav__contact li:not(:last-child) {
  margin-bottom: 20px;
}

/* -----------------------------------------
   Mobile
   ----------------------------------------- */

@media (max-width: 480px) {
  .mobile-nav__contact li > i {
    flex-basis: 54px;

    width: 54px !important;
    min-width: 54px;

    height: 54px !important;

    font-size: 20px;

    margin-right: 14px !important;
  }

  .mobile-nav__contact li > a {
    font-size: 16px;
  }

  .mobile-nav__contact li:last-child > span {
    font-size: 15px;

    line-height: 1.75;
  }
}

/* -----------------------------------------
   Very small screens
   ----------------------------------------- */

@media (max-width: 380px) {
  .mobile-nav__contact li > i {
    flex-basis: 48px;

    width: 48px !important;
    min-width: 48px;

    height: 48px !important;

    font-size: 18px;

    margin-right: 12px !important;
  }

  .mobile-nav__contact li > a {
    font-size: 15px;
  }

  .mobile-nav__contact li:last-child > span {
    font-size: 14px;

    line-height: 1.7;
  }
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/***
=============================================
    Search Popup
=============================================
***/

.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-110%);
  transition:
    transform 500ms ease,
    opacity 500ms ease;
}

.search-popup.active {
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-black);
  opacity: 0.9;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: flex;
  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"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
  padding-right: 90px;
}

.search-popup__content .thm-btn2 {
  padding: 0;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--thm-base);
  border: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.search-popup__content .thm-btn2::before {
  display: none;
}

.search-popup__content .thm-btn2:hover {
  background-color: var(--thm-black);
  color: #ffffff;
}

.search-popup__content .thm-btn2 i::before {
  margin: 0;
  color: #ffffff;
}

/***
=============================================
    Main Header One
=============================================
***/
.main-header-one {
  position: relative;
  display: block;
}

.main-header-one__wrapper {
  position: relative;
  display: block;
}

.main-header-one__top {
  position: relative;
  display: block;
}

.main-header-one__top .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}

.main-header-one__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--thm-primary);
}

.main-header-one__left {
  position: relative;
  display: block;
  width: 300px;
  height: 100px;
  background: var(--thm-base);
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.main-header-one__left .logo {
  position: relative;
  display: block;
}

.main-header-one__left .logo a {
  position: relative;
  display: inline-block;
}

.main-header-one__middle {
  position: relative;
  display: block;
}

.main-header-one__middle ul {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-one__middle ul li {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 35px;
  padding-right: 35px;
}

.main-header-one__middle ul li::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.main-header-one__middle ul li:last-child:before {
  display: none;
}

.main-header-one__middle ul li .icon {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 40px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-one__middle ul li:hover .icon {
  color: var(--thm-base);
}

.main-header-one__middle ul li .text {
  position: relative;
  display: block;
  padding-left: 20px;
}

.main-header-one__middle ul li .text span {
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  font-family: var(--thm-font-2);
  letter-spacing: 0.03em;
}

.main-header-one__middle ul li .text p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--thm-font-2);
  letter-spacing: 0.03em;
}

.main-header-one__middle ul li .text .email {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--thm-font-2);
  letter-spacing: 0.03em;
}

.main-header-one__middle ul li .text .email a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-one__middle ul li .text .email a:hover {
  color: #ffffff;
}

.main-header-one__middle ul li .text .number {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--thm-font-2);
  letter-spacing: 0.03em;
}

.main-header-one__middle ul li .text .number a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-one__middle ul li .text .number a:hover {
  color: #ffffff;
}

.main-header-one__right {
  position: relative;
  display: block;
  padding-right: 30px;
}

.main-header-one__right .side-content-button {
  position: relative;
  display: block;
}

.main-header-one__right .side-content-button a.navSidebar-button {
  position: relative;
  display: inline-block;
}

.main-header-one__right .side-content-button a.navSidebar-button .decor {
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background: #ffffff;
  margin: 5px 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-one__right .side-content-button a.navSidebar-button:hover .decor {
  background: var(--thm-base);
}

.main-header-one__bottom {
  position: relative;
  display: block;
  background: #f7f7f7;
}

.main-header-one__bottom .container-fluid {
  padding-left: 100px;
  padding-right: 0px;
}

.main-header-one__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header-one__bottom-left {
  position: relative;
  display: block;
}

.main-header-one__bottom-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-one__bottom-right .search-box {
  position: relative;
  display: block;
}

.main-header-one__bottom-right .search-box a {
  color: var(--thm-black);
  font-size: 17px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-one__bottom-right .search-box a:hover {
  color: var(--thm-base);
}

.main-header-one__bottom-right .cart-btn {
  position: relative;
  display: block;
  margin-left: 45px;
}

.main-header-one__bottom-right .cart-btn a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
  background: var(--thm-base);
  border-radius: 50%;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-one__bottom-right .cart-btn a span {
  color: #ffffff;
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-one__bottom-right .cart-btn a:hover span {
  color: #ffffff;
}

.main-header-one__bottom-right .cart-btn a .count {
  position: absolute;
  top: -3px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 9px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
  background: var(--thm-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background: var(--thm-black);
}

.main-header-one__bottom-right .cart-btn a:hover .count {
  color: #ffffff;
}

.main-header-one__bottom-right-btn {
  position: relative;
  display: block;
  margin-left: 70px;
}

.main-header-one__bottom-right-btn .thm-btn {
  padding: 26px 40px 26px;
}

.stricky-one-logo {
  position: relative;
  display: none;
}

.stricky-header.main-menu .stricky-one-logo {
  display: block;
}

.stricky-header .main-menu__list > li > a {
  padding-top: 36px;
  padding-bottom: 36px;
}

/***
=============================================
    Main Header Two
=============================================
***/
.main-header-one--two {
  position: relative;
  display: block;
}

.main-header-one--two .main-header-one__top-inner {
  padding: 18px 0px 16px;
}

.main-header-one--two__left {
  position: relative;
  display: block;
  padding-left: 30px;
}

.main-header-one--two__left h4 {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.025em;
}

.main-header-one--two__right {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 30px;
}

.main-header-one--two__right .social-links {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-one--two__right .social-links .title {
  position: relative;
  display: block;
  padding-right: 8px;
}

.main-header-one--two__right .social-links .title h4 {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.03em;
}

.main-header-one--two__right .social-links ul {
  position: relative;
  display: block;
}

.main-header-one--two__right .social-links ul li {
  position: relative;
  display: inline-block;
  padding-left: 22px;
}

.main-header-one--two__right .social-links ul li a {
  color: #ffffff;
  font-size: 15px;
  line-height: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-one--two__right .social-links ul li a:hover {
  color: var(--thm-base);
}

.main-header-one--two__right .login-register-box {
  position: relative;
  display: block;
  padding: 0px 25px 0px;
  margin-left: 80px;
}

.main-header-one--two__right .login-register-box::before {
  position: absolute;
  top: -20px;
  left: 0;
  bottom: -18px;
  right: 0;
  background: var(--thm-base);
  content: "";
}

.main-header-one--two__right .login-register-box ul {
  position: relative;
  display: block;
  line-height: 0;
}

.main-header-one--two__right .login-register-box ul li {
  position: relative;
  display: inline-block;
  padding-right: 5px;
}

.main-header-one--two__right .login-register-box ul li::before {
  position: absolute;
  top: 4px;
  right: 0;
  bottom: 7px;
  width: 1px;
  background: #ffffff;
  transform: rotate(15deg);
  content: "";
}

.main-header-one--two__right .login-register-box ul li:last-child:before {
  display: none;
}

.main-header-one--two__right .login-register-box ul li a {
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--thm-font-2);
}

.main-header-one--two .main-header-one__bottom .container-fluid {
  padding-left: 0px;
}

.main-header-one--two
  .main-header-one__right
  .side-content-button
  a.navSidebar-button
  .decor {
  background: var(--thm-black);
}

.main-header-one--two
  .main-header-one__right
  .side-content-button
  a.navSidebar-button:hover
  .decor {
  background: var(--thm-base);
}

.main-header-one--two .main-header-one__right {
  padding-left: 70px;
}

.main-header-one--two .main-header-one__bottom {
  background: #ffffff;
}

/***
=============================================
    Slider One
=============================================
***/
.slider-one-sec {
  position: relative;
  display: block;
}

.slider-one__single {
  position: relative;
  display: block;
  padding: 187px 0px 190px;
}

.slider-one__single .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 6000ms linear;
  -moz-transition: all 6000ms linear;
  -ms-transition: all 6000ms linear;
  -o-transition: all 6000ms linear;
  transition: all 6000ms linear;
  z-index: 1;
}

.slider-one-sec .active .slider-one__single .image-layer {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.slider-one__single .image-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--thm-black-rgb), 0.6);
  z-index: -1;
}

.slider-one__single-content {
  position: relative;
  display: block;
  z-index: 5;
}

.slider-one__single-content h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 1em;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 10;
}

.slider-one-sec .active .slider-one__single-content h3 {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1800ms;
  -moz-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.slider-one__single-content h2 {
  position: relative;
  color: #ffffff;
  font-size: 72px;
  line-height: 1.1em;
  font-weight: 700;
  margin-bottom: 28px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 10;
}

.slider-one-sec .active .slider-one__single-content h2 {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.slider-one__single-content p {
  color: #ffffff;
  margin: 0px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 10;
}

.slider-one-sec .active .slider-one__single-content p {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.slider-one__single-content .btn-box {
  position: relative;
  display: inline-block;
  margin-top: 42px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 10;
}

.slider-one-sec .active .slider-one__single-content .btn-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1800ms;
  -moz-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.slider-one-sec .slider-carousel.owl-carousel .owl-nav {
  display: block;
}

.slider-one-sec .slider-carousel.owl-theme .owl-nav {
  position: absolute;
  top: 39%;
  left: 0px;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  line-height: 0;
  height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  transform: scaleX(1) translateX(0px);
  z-index: 3;
}

.slider-one-sec .slider-carousel:hover.owl-theme .owl-nav {
  opacity: 1;
  left: 70px;
  transform: scaleX(1) translateX(0px);
}

.slider-one-sec .slider-carousel.owl-theme .owl-prev span,
.slider-one-sec .slider-carousel.owl-theme .owl-next span {
  display: block;
}

.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-prev,
.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-next {
  position: relative;
  display: block;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  font-size: 25px;
  line-height: 66px;
  font-weight: 100;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  margin: 0;
  padding: 0;
  transform: translateY(0px);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-prev {
  margin-bottom: 10px;
}

.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-prev::before,
.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-next::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-prev:hover::before,
.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-next:hover:before {
  transform: scaleX(1);
}

.slider-one-sec .slider-carousel.owl-theme .owl-prev span:before,
.slider-one-sec .slider-carousel.owl-theme .owl-next span:before {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 70px;
  font-weight: 700;
  transition: all 100ms ease;
}

.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-next {
  transform: rotate(180deg);
}

.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-prev:hover,
.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-next:hover {
  color: var(--thm-black);
}

.slider-one-sec .slider-carousel.owl-theme .owl-next span:before {
  position: relative;
  top: 1px;
}

.slider-one-sec .slider-carousel.owl-theme .owl-dots {
  display: none;
}

/***
=============================================
    Slider Two
=============================================
***/
.slider-one-sec--two {
  position: relative;
  display: block;
  background: #f2f3f5;
}

.slider-one-sec--two__img {
  position: absolute;
  top: 120px;
  right: 0;
  opacity: 0;
  transform: translateX(100%);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.slider-one-sec--two__img img {
  width: 100%;
}

.slider-one-sec--two .active .slider-one-sec--two__img {
  opacity: 1;
  transform: translateX(0);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.slider-one-sec--two .slider-one__single-content h3 {
  color: var(--thm-base);
}

.slider-one-sec--two .slider-one__single-content h2 {
  color: var(--thm-black);
}

.slider-one-sec--two .slider-one__single-content h2 span {
  color: var(--thm-base);
}

.slider-one-sec--two .slider-one__single-content p {
  color: var(--thm-gray);
}

.slider-one-sec--two.slider-one-sec .slider-carousel.owl-theme .owl-dots {
  display: block;
}

.slider-one-sec--two .slider-carousel.owl-theme .owl-dots {
  position: absolute;
  left: 363px;
  bottom: 22px;
}

.slider-one-sec.slider-one-sec--two .slider-carousel.owl-theme .owl-nav {
  display: none;
}

.slider-one-sec--two .slider-carousel.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0px 4px;
  background: var(--thm-black);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.slider-one-sec--two .slider-carousel.owl-theme .owl-dots .owl-dot.active span,
.slider-one-sec--two .slider-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--thm-base);
}

/***
=============================================
    Page Header
=============================================
***/
.page-header {
  position: relative;
  display: block;
  padding: 209px 0px 211px;
  overflow: hidden;
  z-index: 1;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.page-header__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    86deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.6446953781512605) 0%,
    rgba(255, 255, 255, 0.014443277310924318) 60%
  );
  z-index: -1;
}

.page-header__wrapper {
  position: relative;
  display: block;
  z-index: 2;
}

.page-header__content {
  position: relative;
  display: block;
}

.page-header__content h2 {
  color: var(--thm-black);
  font-size: 80px;
  line-height: 1em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 21px;
}

.page-header__menu {
  position: relative;
  display: block;
}

.page-header__menu ul {
  position: relative;
  display: block;
}

.page-header__menu ul li {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  padding-left: 5px;
  padding-right: 15px;
  font-family: var(--thm-font-2);
}

.page-header__menu ul li:first-child {
  padding-left: 0;
}

.page-header__menu ul li:last-child {
  padding-right: 0;
}

.page-header__menu ul li::before {
  position: absolute;
  top: 16px;
  right: 0;
  width: 5px;
  height: 2px;
  background: var(--thm-black);
  content: "";
}

.page-header__menu ul li:last-child:before {
  display: none;
}

.page-header__menu ul li a {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-family: var(--thm-font-2);
}

.page-header__menu ul li a:hover {
  color: var(--thm-base);
}

/*** 
============================================
	Feature One Sec
============================================
***/
.feature-one-sec {
  position: relative;
  display: block;
  padding: 0px 0px 90px;
  background: transparent;
  margin-top: -60px;
  z-index: 1;
}

.feature-one-sec .row {
  margin-left: 0px;
  margin-right: 0px;
}

.feature-one-sec .row [class*="col-"] {
  padding-left: 0px;
  padding-right: 0px;
}

.feature-one__single {
  position: relative;
  display: block;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 5%);
  padding: 43px 50px 42px;
  overflow: hidden;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  margin-bottom: 30px;
  z-index: 1;
}

.feature-one__single:hover {
  box-shadow: none;
}

.feature-one__single .shape1 {
  position: absolute;
  top: -245px;
  right: -240px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: perspective(380px) translateY(-100%);
  transform-origin: right;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.feature-one__single:hover .shape1 {
  transform: perspective(380px) translateY(0);
  transition: all 900ms ease;
  transition-delay: 0.1s;
  opacity: 1;
}

.feature-one__single::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--thm-base);
  z-index: -1;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.feature-one__single:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.feature-one__single-inner {
  position: relative;
  display: block;
  padding-left: 90px;
}

.feature-one__single-icon {
  position: absolute;
  top: 7px;
  left: 0;
  transition: all 500ms ease;
  transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__single-icon {
  transform: rotateY(180deg);
  transition-delay: 0.3s;
}

.feature-one__single-icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__single-icon span::before {
  color: #ffffff;
}

.feature-one__single-text {
  position: relative;
  display: block;
}

.feature-one__single-text h2 {
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 18px;
}

.feature-one__single-text h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__single-text h2 a {
  color: #ffffff;
}

.feature-one__single-text p {
  margin: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__single-text p {
  color: #ffffff;
}

.feature-one__single-btn {
  position: relative;
  display: block;
  margin-top: 20px;
}

.feature-one__single-btn a {
  color: var(--thm-black);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__single-btn a {
  color: #ffffff;
}

.feature-one__single-btn a i:before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 25px;
  line-height: 25px;
  padding-left: 10px;
  top: 6px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__single-btn a i:before {
  color: #ffffff;
}

/*** 
============================================
	About One
============================================
***/
.about-one-sec {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 114px;
  z-index: 1;
}

.about-one-sec .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.about-one-sec .row {
  margin-left: 0px;
  margin-right: 0px;
}

.about-one-sec .row [class*="col-"] {
  padding-left: 0px;
  padding-right: 0px;
}

.about-one__img-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  min-height: 555px;
}

.about-one__img-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.about-one__img-box-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--thm-base);
  padding: 30px 30px 36px;
}

.about-one__img-box-overlay h2 {
  color: #ffffff;
  font-size: 55px;
  line-height: 1em;
  text-transform: capitalize;
}

.about-one__img-box-overlay h2 .plus {
  position: relative;
  display: inline-block;
  top: 4px;
}

.about-one__content {
  position: relative;
  display: block;
  max-width: 700px;
  width: 100%;
  padding-left: 70px;
}

.about-one__content .sec-title {
  padding-bottom: 39px;
}

.about-one__conten-bottom {
  position: relative;
  display: block;
}

.about-one__conten-bottom p {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
}

.about-one__progress {
  position: relative;
  display: block;
  margin-top: 40px;
}

.about-one__progress-single {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.about-one__progress-single.mar0 {
  margin-bottom: 0px;
}

.about-one__progress-single-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 17px;
}

.about-one__progress .bar {
  position: relative;
  width: 100%;
  height: 15px;
  background: #f2f3f5;
  margin-bottom: 6px;
}

.about-one__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 15px;
  background: var(--thm-base);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 1;
}

.about-one__progress .count-text {
  position: absolute;
  top: -3px;
  right: 10px;
  color: #ffffff;
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  text-align: center;
  font-family: var(--thm-font);
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
}

/*** 
============================================
	project One
============================================
***/

.project-one-sec {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 120px 0px 117px;
  z-index: 1;
}

.project-one-sec .row {
  margin-left: -1px;
  margin-right: -1px;
}

.project-one-sec .row [class*="col-"] {
  padding-left: 1px;
  padding-right: 1px;
}

.project-one-sec .shape1 {
  position: absolute;
  top: 25px;
  left: -120px;
  opacity: 0.05;
  z-index: -1;
}

.project-one-sec .shape2 {
  position: absolute;
  top: 25px;
  right: -135px;
  opacity: 0.05;
  z-index: -1;
}

.project-one-sec .sec-title__title {
  color: #ffffff;
}

.project-one-sec .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.project-one__menu-box {
  position: relative;
  display: block;
  padding-bottom: 70px;
}

.project-one__menu-box .project-filter {
  position: relative;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.project-one__menu-box .project-filter li {
  position: relative;
  display: inline-block;
  float: left;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.project-one__menu-box .project-filter li:last-child {
  border-right: none;
}

.project-one__menu-box .project-filter li .filter-text {
  position: relative;
  display: block;
  padding: 14px 25px 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-transform: capitalize;
  background: var(--thm-black);
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: var(--thm-font-2);
  z-index: 1;
}

.project-one__menu-box .project-filter li .filter-text i::before {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  padding-right: 6px;
  top: 1px;
}

.project-one__menu-box .project-filter li .filter-text:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: -1px;
  content: "";
  background: var(--thm-base);
  border-radius: 0px;
  opacity: 1;
  transform: perspective(400px) rotateX(90deg);
  transform-origin: bottom;
  transition: all 300ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.project-one__menu-box .project-filter li:hover .filter-text:before,
.project-one__menu-box .project-filter li.active .filter-text:before {
  opacity: 1;
  transform: perspective(400px) rotateX(0deg);
  transition: all 300ms linear;
  transition-delay: 0.1s;
}

.project-one__menu-box .project-filter li:hover .filter-text,
.project-one__menu-box .project-filter li.active .filter-text {
  color: #ffffff;
}

.project-one__menu-box .project-filter li .count {
  display: none;
}

.project-one__single {
  position: relative;
  display: block;
  margin-bottom: 3px;
}

.project-one__single-img {
  position: relative;
  display: block;
}

.project-one__single-img .content-box {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 45px;
  background: var(--thm-base);
  text-align: center;
  padding: 13px 0px 13px;
  transform: perspective(1200px) rotateX(90deg);
  transform-origin: bottom;
  transition: all 700ms ease 100ms;
  z-index: 2;
}

.project-one__single:hover .project-one__single-img .content-box {
  transform: perspective(1200px) rotateX(0deg);
  transition: all 700ms ease 200ms;
}

.project-one__single-img .content-box h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  text-transform: capitalize;
}

.project-one__single-img .content-box h2 a {
  color: #ffffff;
}

.project-one__single-img .content-box p {
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--thm-font);
}

.project-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.project-one__single-img .inner:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(var(--thm-black-rgb), 0.5);
  transform: scaleX(0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.project-one__single:hover .project-one__single-img .inner:before {
  transform: scaleX(1);
}

.project-one__link {
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0;
  transform: scale(0);
  transition: all 700ms ease;
  z-index: 2;
}

.project-one__single:hover .project-one__link {
  transform: scale(1);
  opacity: 1;
  transition-delay: 500ms;
}

.project-one__link a {
  position: relative;
  display: block;
  height: 60px;
  width: 60px;
  background-color: var(--thm-base);
  border-radius: 50%;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  transition: 0.4s;
  -webkit-transition: all 0.4s ease-in-out;
}

.project-one__link a:hover {
  color: var(--thm-base);
  background: #ffffff;
}

.project-one__link a span::before {
  position: relative;
  display: inline-block;
  line-height: 60px;
}

.project-one__single-img .inner img {
  width: 100%;
  transition: all 500ms ease;
  transform: scale(1);
}

.project-one__single:hover .project-one__single-img .inner img {
  transform: scale(1.05);
}

/*** 
============================================
	Why Choose One
============================================
***/
.why-choose-one-sec {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
}

.why-choose-one__content {
  position: relative;
  display: block;
}

.why-choose-one__content .sec-title {
  padding-bottom: 35px;
}

.why-choose-one__content-top {
  position: relative;
  display: block;
  padding-left: 200px;
}

.why-choose-one__content-top .img-box {
  position: absolute;
  top: 8px;
  left: 0;
  width: 170px;
  height: 150px;
}

.why-choose-one__content-top .img-box img {
  width: 100%;
}

.why-choose-one__content-top .text-box {
  position: relative;
  display: block;
}

.why-choose-one__content-top .text-box p {
  margin: 0;
}

.why-choose-one__content-bottom {
  position: relative;
  display: block;
  margin-top: 40px;
}

.why-choose-one__content-bottom-single {
  position: relative;
  display: block;
}

.why-choose-one__content-bottom-single h2 {
  font-size: 25px;
  line-height: 35px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 13px;
}

.why-choose-one__content-bottom-single p {
  margin: 0;
}

.why-choose-one__img {
  position: relative;
  display: block;
  margin-left: 70px;
  margin-right: -114px;
}

.why-choose-one__img .row {
  margin-left: -2px;
  margin-right: -2px;
}

.why-choose-one__img .row [class*="col-"] {
  padding-left: 2px;
  padding-right: 2px;
}

.why-choose-one__img-single {
  position: relative;
  display: block;
  margin-bottom: 4px;
}

.why-choose-one__img-single .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.why-choose-one__img-single .img-box::before {
  content: "";
  position: absolute;
  top: 0%;
  right: 0%;
  width: 0;
  height: 0;
  background-color: rgba(var(--thm-base-rgb), 0.8);
  border-radius: 100%;
  -webkit-transform: translateX(90%, 90%);
  transform: translateX(90%, 90%);
  opacity: 0.7;
  z-index: 1;
}

.why-choose-one__img-single:hover .img-box::before {
  -webkit-animation: circle 0.95s;
  animation: circle 0.95s;
  opacity: 1;
}

.why-choose-one__img-single .img-box img {
  width: 100%;
  transform: scale(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.why-choose-one__img-single:hover .img-box img {
  transform: scale(1.1) rotate(1deg);
}

.why-choose-one__img-single .img-box.style2::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  content: "";
}

.why-choose-one__img-single .img-box .video-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.why-choose-one__video-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  font-size: 15px;
  color: #ffffff;
  background-color: var(--thm-base);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.video-one__video-icon:hover {
  background-color: var(--thm-base);
  color: #ffffff;
}

.why-choose-one__video-icon:before {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  content: "";
  border-radius: 50%;
  z-index: -1;
  background-color: var(--thm-base);
  opacity: 0.6;
}

.why-choose-one__video-icon:after {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  content: "";
  border-radius: 50%;
  z-index: -1;
  background-color: var(--thm-base);
  opacity: 0.45;
}

.why-choose-one__video-icon .ripple,
.why-choose-one__video-icon .ripple:before,
.why-choose-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115px;
  height: 115px;
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.why-choose-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.why-choose-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

/*** 
============================================
	Work Perfomance One
============================================
***/
.work-perfomance-one-sec {
  position: relative;
  display: block;
  background: #f2f3f5;
  padding: 120px 0px 120px;
}

.work-perfomance-one__content {
  position: relative;
  display: block;
}

.work-perfomance-one__content .sec-title {
  padding-bottom: 47px;
}

.work-perfomance-one__content-bottom {
  position: relative;
  display: block;
  padding-left: 145px;
}

.work-perfomance-one__content-bottom .progress-box {
  position: absolute;
  top: 1px;
  left: 0;
  line-height: 0;
}

.work-perfomance-one__content-bottom .progress-box .inner-box {
  position: relative;
  display: block;
}

.work-perfomance-one__content-bottom .progress-box .graph-outer {
  position: relative;
  display: inline-block;
  text-align: center;
  z-index: 1;
}

.work-perfomance-one__content-bottom .progress-box .graph-outer .count-box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  color: var(--theme-black);
  font-size: 24px;
  font-weight: 700;
  transform: translateY(-50%);
}

.work-perfomance-one__content-bottom .progress-box .graph-outer .count-text {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
  font-family: var(--thm-font);
}

.work-perfomance-one__content-bottom .progress-box .graph-outer .count-Parsent {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 25px;
  font-weight: 600;
}

.work-perfomance-one__content-bottom .text-box {
  position: relative;
  display: block;
}

.work-perfomance-one__content-bottom .text-box h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 13px;
}

.work-perfomance-one__content-bottom .text-box p {
  margin: 0px;
}

.work-perfomance-one__img {
  position: relative;
  display: block;
  border: 10px solid #ffffff;
  overflow: hidden;
  box-shadow: 2px 3.464px 18px 0px rgb(227, 222, 222, 1);
  margin-right: -65px;
}

.work-perfomance-one__img::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(var(--thm-base-rgb), 0.7) 0%,
    rgba(var(--thm-base-rgb), 0.3) 100%
  );
  transform: skewX(25deg);
  z-index: 2;
}

.work-perfomance-one__img:hover::before {
  -webkit-animation: shine 1.9s;
  animation: shine 1.9s;
}

.work-perfomance-one__img img {
  width: 100%;
  transition: all 500ms linear;
  transition-delay: 0.2s;
}

.work-perfomance-one__img:hover img {
  transform: scale(1.1) rotate(0deg);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

/*** 
============================================
	Feature Three
============================================
***/
.feature-three-sec {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
}

.feature-three__bg {
  position: absolute;
  top: 120px;
  left: 0px;
  bottom: 120px;
  right: 52%;
  background-repeat: no-repeat;
  background-size: cover;
}

.feature-three__title {
  width: 50%;
  float: right;
}

.feature-three-sec .feature-three__title .sec-title {
  padding-bottom: 43px;
}

.feature-three__tab-button {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.feature-three__tab-button .tab-buttons {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 2px solid rgba(131, 134, 145, 0.12);
}

.feature-three__tab-button .tab-buttons .tab-btn {
  position: relative;
  display: block;
  float: left;
  cursor: pointer;
  text-align: center;
  margin-right: 60px;
  z-index: 1;
}

.feature-three__tab-button .tab-buttons .tab-btn::before {
  position: absolute;
  left: 0;
  bottom: -24px;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--thm-black);
  transform: scaleX(0);
  transition: all 700ms ease 100ms;
  content: "";
}

.feature-three__tab-button .tab-buttons .tab-btn:hover:before,
.feature-three__tab-button .tab-buttons .tab-btn.active-btn:before {
  transform: scaleY(1);
}

.feature-three__tab-button .tab-buttons .tab-btn:last-child {
  margin-right: 0px;
}

.feature-three__tab-button .tab-buttons .tab-btn h3 {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-three__tab-button .tab-buttons .tab-btn:hover h3,
.feature-three__tab-button .tab-buttons .tab-btn.active-btn h3 {
  color: var(--thm-base);
}

.feature-three__tab {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 80px 60px 80px;
  border: 1px solid #dbdbdf;
  margin-left: 170px;
  margin-right: -170px;
}

.feature-three__tab .tabs-content {
  position: relative;
  display: block;
}

.feature-three__tab .tabs-content .tab {
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 1;
  display: none;
  opacity: 0.9;
  transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transform: scale(0.8, 1) translateX(0px);
  z-index: 1;
}

.feature-three__tab .tabs-content .tab.active-tab {
  position: relative;
  display: block;
  opacity: 1;
  transform: scale(1) translateX(0);
  z-index: 5;
}

.feature-three__tab-content-item {
  position: relative;
}

.tab-content-inner {
  position: relative;
  display: block;
}

.tab-content-inner-text {
  position: relative;
  display: block;
}

.tab-content-inner-text h2 {
  color: var(--thm-base);
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 13px;
}

.tab-content-inner-text p {
  margin: 0;
}

.tab-content-inner-text .btn-box {
  position: relative;
  display: block;
  margin-top: 22px;
}

.tab-content-inner-text .btn-box .thm-btn {
  padding: 15px 40px 14px;
}

.feature-three__history-single {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid rgba(var(--thm-base-rgb), 0.3);
  border-bottom-width: 5px;
  padding: 29px 29px 24px;
  z-index: 1;
}

.feature-three__history-single .history-text {
  position: absolute;
  top: 37px;
  right: 0;
  transform: rotate(45deg);
  z-index: -1;
}

.feature-three__history-single .history-text h2 {
  color: transparent;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  -webkit-text-stroke: 1px rgba(var(--thm-gray-rgb), 0.2);
  text-transform: uppercase;
}

.feature-three__history-single .date-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px 10px;
  background-color: rgba(var(--thm-base-rgb), 0.1);
}

.feature-three__history-single .date-box h2 {
  color: var(--thm-base);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

.feature-three__history-single p {
  margin: 23px 0 0;
}

.tab-content-inner-img {
  position: relative;
  display: block;
}

.tab-content-inner-img img {
  width: 100%;
}

/*** 
============================================
	Testimonials One
============================================
***/
.testimonials-one-sec {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 120px 0px 120px;
  z-index: 1;
}

.testimonials-one-sec .shape1 {
  position: absolute;
  top: 35px;
  left: -5px;
  opacity: 0.05;
  z-index: -1;
}

.testimonials-one-sec .shape2 {
  position: absolute;
  top: 35px;
  right: -5px;
  opacity: 0.05;
  z-index: -1;
}

.testimonials-one-sec .sec-title__title {
  color: #ffffff;
}

.testimonials-one__single {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 44px 40px 50px;
  z-index: 1;
}

.testimonials-one__single::before {
  position: absolute;
  left: 0;
  bottom: -45px;
  right: -1px;
  height: 200px;
  clip-path: polygon(0 75%, 100% 75%, 100% 83%, 20% 83%, 0 100%, 0 75%, 0 83%);
  background: #ffffff;
  z-index: -1;
  content: "";
}

.testimonials-one__single .rating {
  position: relative;
  display: block;
  margin-bottom: 9px;
}

.testimonials-one__single .rating ul {
  position: relative;
  display: block;
}

.testimonials-one__single .rating ul li {
  position: relative;
  display: inline-block;
  margin-right: 3px;
}

.testimonials-one__single .rating ul li:last-child {
  margin-right: 0px;
}

.testimonials-one__single .rating ul li span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
}

.testimonials-one__single .text-box {
  position: relative;
  display: block;
  margin-bottom: 37px;
}

.testimonials-one__single .text-box p {
  margin: 0;
}

.testimonials-one__single .client-info {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonials-one__single .client-info .img-box {
  position: relative;
  display: block;
}

.testimonials-one__single .client-info .img-box img {
  width: 100%;
}

.testimonials-one__single .client-info .title-box {
  position: relative;
  display: block;
  padding-left: 25px;
  line-height: 0;
}

.testimonials-one__single .client-info .title-box h2 {
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: -0.05em;
}

.testimonials-one__single .client-info .title-box span {
  color: var(--thm-gray);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: -0.05em;
  font-family: var(--thm-font);
}

.testimonials-one__carousel.owl-carousel .owl-stage-outer {
  padding-bottom: 60px;
}

/*** 
============================================
	Blog One
============================================
***/
.blog-one-sec {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
}

.blog-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-one__single-img {
  position: relative;
  display: block;
}

.blog-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-one__single-img .inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  background: rgba(var(--thm-black-rgb), 0.8);
  opacity: 0;
  z-index: 1;
  content: "";
}

.blog-one__single:hover .blog-one__single-img .inner::before {
  opacity: 1;
  opacity: 0.8;
}

.blog-one__single-img .inner img {
  width: 100%;
  transition: 0.5s ease;
  transform: scale(1.05);
}

.blog-one__single:hover .blog-one__single-img .inner img {
  transform: scale(1);
}

.blog-one__single-content {
  position: absolute;
  left: 20px;
  bottom: 0px;
  right: 0;
  padding-top: 32px;
}

.blog-one__single-content .date-box {
  position: absolute;
  top: 0;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 60px;
  height: 65px;
  background: var(--thm-base);
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.blog-one__single-content .date-box span {
  color: #ffffff;
  font-size: 15px;
  line-height: 16px;
  font-weight: 700;
  font-family: var(--thm-font);
}

.blog-one__single-content .date-box h4 {
  color: #ffffff;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--thm-font);
  margin-top: 3px;
}

.blog-one__single-content .inner-content {
  position: relative;
  display: block;
  background: rgba(242, 243, 245, 0.95);
  padding: 23px 20px 22px;
  z-index: 1;
}

.blog-one__single-content .inner-content .meta-info {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 13px;
}

.blog-one__single-content .inner-content .meta-info li {
  position: relative;
  display: inline-block;
  margin-right: 24px;
}

.blog-one__single-content .inner-content .meta-info li:last-child {
  margin-right: 0px;
}

.blog-one__single-content .inner-content .meta-info li span:before {
  position: relative;
  display: inline-block;
  padding-right: 11px;
  color: var(--thm-base);
  font-size: 20px;
  line-height: 20px;
  top: 4px;
  left: 1px;
  font-weight: 500;
}

.blog-one__single-content .inner-content .meta-info li a {
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content .inner-content .meta-info li a:hover {
  color: var(--thm-base);
}

.blog-one__single-content .inner-content h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 13px;
}

.blog-one__single-content .inner-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content .inner-content h2 a:hover {
  color: var(--thm-base);
}

.blog-one__single-content .inner-content p {
  color: var(--thm-black);
  margin: 0;
}

.blog-one__single-content .inner-content .btn-box {
  position: relative;
  display: block;
  margin-top: 17px;
}

.blog-one__single-content .inner-content .btn-box a {
  color: var(--thm-black);
  font-size: 15px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content .inner-content .btn-box a:hover {
  color: var(--thm-base);
}

.blog-one__single-content .inner-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 23px;
  line-height: 23px;
  font-weight: 600;
  padding-left: 10px;
  top: 4px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content .inner-content .btn-box a:hover span::before {
  color: var(--thm-base);
}

/*** 
============================================
	Brand One
============================================
***/
.brand-one-sec {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 85px 0px 85px;
  z-index: 1;
  margin-bottom: 8%;
}

.brand-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.15;
  z-index: -1;
}

.brand-one-sec .swiper-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.brand-one-sec .swiper-slide a {
  position: relative;
  display: inline-block;
}

.brand-one-sec .swiper-slide > a > img {
  opacity: 1;
  transition: all 0.2s ease-in-out 0.1s;
}

.brand-one-sec .swiper-slide:hover > a > img {
  opacity: 0.8;
  transition: all 0.8s ease-in-out 0.1s;
}

/* =========================================================
   CREST SOLUTIONS
   FOOTER ONE - COMPLETE RESPONSIVE CSS (FIXED)
   ========================================================= */

/* =========================================================
   MAIN FOOTER
   ========================================================= */

.footer-one-sec {
  position: relative;
  display: block;
  width: 100%;
  background: #0a1229;
  z-index: 1;
  overflow: hidden;
}

/* =========================================================
   FOOTER PATTERN
   ========================================================= */

.footer-one__pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

/* =========================================================
   FOOTER TOP
   ========================================================= */

.footer-one__top {
  position: relative;
  display: block;
  width: 100%;
  padding: 100px 0 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* =========================================================
   FOOTER BOTTOM DECORATIVE IMAGE
   ========================================================= */

.footer-one__top-img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  height: 69px;

  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto 69px;

  animation: slide 50s linear infinite;
  -webkit-animation: slide 50s linear infinite;

  pointer-events: none;
}

.footer-one__top-img img {
  width: auto;
}

/* =========================================================
   FOOTER INNER / CONTAINER
   ========================================================= */

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-one__top-inner {
  position: relative;
  display: block;
  width: 100%;
}

/* Make the bootstrap row behave like a proper flex grid that
   can re-wrap and re-center cleanly at every breakpoint */
.footer-one__top-inner .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.footer-one__top-inner .row > [class*="col-"] {
  padding: 0 15px;
  margin-bottom: 40px;
  display: flex;
}

.footer-one__top-inner .row > [class*="col-"]:last-child {
  margin-bottom: 0;
}

/* =========================================================
   GENERAL FOOTER COLUMN
   ========================================================= */

.footer-widget__column {
  position: relative;
  display: block;
  width: 100%;
  /* NOTE: removed the old blanket "margin-left: 20px" that was
     applied to every single column (about/services/explore/posts).
     That rule broke the grid gutters and pushed content out of
     alignment on smaller screens — the row/col padding above now
     handles spacing consistently, so no column needs its own
     extra left margin. */
}

/* =========================================================
   FOOTER HEADINGS
   ========================================================= */

.footer-widget__title {
  color: #ffffff;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin: 0 0 25px;
}

/* =========================================================
   ABOUT / LOGO COLUMN
   ========================================================= */

.footer-widget__about {
  position: relative;
  display: block;
  width: 100%;
  max-width: 330px;
  margin: 8px 0 0;
}

.footer-widget__about-logo {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 25px;
}

.footer-widget__about-logo a {
  position: relative;
  display: inline-block;
}

.footer-widget__about-logo img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-widget__about-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  margin: 0;
}

/* =========================================================
   SOCIAL LINKS
   ========================================================= */

.footer-widget__about-social-link {
  position: relative;
  display: block;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 30px;
  margin-top: 30px;
}

.footer-widget__about-social-link ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
}

.footer-widget__about-social-link li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.footer-widget__about-social-link li:last-child {
  margin-right: 0;
}

.footer-widget__about-social-link li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  background: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-widget__about-social-link li a:hover {
  background: var(--thm-base);
  color: #ffffff;
}

.footer-widget__about-social-link li a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 15px;
  line-height: 35px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.footer-widget__about-social-link li a:hover span::before {
  color: #ffffff;
}

.footer-widget__about-social-link li a .first {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.footer-widget__about-social-link li a .second {
  position: relative;
  display: block;
  transition: all 0.3s ease;
}

.footer-widget__about-social-link li a:hover .first {
  transform: translateY(0);
}

.footer-widget__about-social-link li a:hover .second {
  transform: translateY(-100%);
}

/* =========================================================
   SERVICES / EXPLORE LISTS
   ========================================================= */

.footer-widget__services,
.footer-widget__explore {
  position: relative;
  display: block;
  width: 100%;
}

.footer-widget__services-list,
.footer-widget__explore-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-widget__services-list-item,
.footer-widget__explore-list-item {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}

.footer-widget__services-list-item a,
.footer-widget__explore-list-item a {
  position: relative;
  display: inline-block;

  color: rgba(255, 255, 255, 0.7);

  font-size: 16px;
  line-height: 40px;
  font-weight: 500;
  font-family: var(--thm-font-2);

  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-widget__services-list-item a::before,
.footer-widget__explore-list-item a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  border-bottom: 1px dashed #ffffff;
  transform: perspective(400px) scaleX(0);
  transform-origin: bottom;
  transition: 0.5s;
  z-index: 2;
}

.footer-widget__services-list-item a:hover::before,
.footer-widget__explore-list-item a:hover::before {
  transform: perspective(400px) scaleX(1);
}

.footer-widget__services-list-item a:hover,
.footer-widget__explore-list-item a:hover {
  color: #ffffff;
}

/* =========================================================
   CONTACT COLUMN
   ========================================================= */

.footer-widget__posts {
  position: relative;
  display: block;
  width: 100%;
}

.footer-widget__posts-list {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 3px;
}

.footer-widget__posts-list ul {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-widget__posts-list ul li {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 0;
  margin-bottom: 20px;
}

.footer-widget__posts-list ul li:last-child {
  margin-bottom: 0;
}

.footer-widget__posts-list ul li .text-box {
  position: relative;
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.7);
}

.footer-widget__posts-list ul li .text-box p {
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  text-transform: none;
  margin: 0;
}

.footer-widget__posts-list ul li .text-box p strong {
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 3px;
}

.footer-widget__posts-list ul li .text-box p a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  word-break: break-word;
}

.footer-widget__posts-list ul li .text-box p a:hover {
  color: var(--thm-base);
}

.footer-widget__posts-list ul li .text-box span {
  color: var(--thm-base);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--thm-font);
}

/* Old image-box rules kept, harmless if unused by current HTML */

.footer-widget__posts-list ul li .img-box {
  position: absolute;
  top: 7px;
  left: 0;
  width: 70px;
  height: 75px;
  overflow: hidden;
  z-index: 1;
}

.footer-widget__posts-list ul li .img-box::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(var(--thm-black-rgb), 0.8);
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scale(0.5);
  transition: all 0.7s cubic-bezier(0.62, 0.21, 0.45, 1.22);
  z-index: 1;
}

.footer-widget__posts-list ul li:hover .img-box::before {
  opacity: 1;
  left: 0%;
  transform: scaleY(1) skew(0deg, 0deg);
}

.footer-widget__posts-list ul li .img-box img {
  width: 100%;
}

.footer-widget__posts-list ul li .img-box .overlay-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: perspective(400px) translateY(20px);
  transform-origin: top;
  transition: all 0.1s ease-in-out 0s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget__posts-list ul li:hover .img-box .overlay-icon {
  opacity: 1;
  transform: perspective(400px) translateY(0);
  transition: all 0.5s ease-in-out 0.5s;
}

.footer-widget__posts-list ul li .img-box .overlay-icon a {
  color: #ffffff;
  font-size: 15px;
  transition: all 200ms linear;
}

/* =========================================================
   FOOTER BOTTOM BAR
   ========================================================= */

.footer-one__bottom {
  position: relative;
  width: 100%;
  padding: 22px 0;
}

.footer-one__bottom .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-one__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.footer-one__bottom-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */

/* Large tablets / small laptops (<=1199px) */
@media (max-width: 1199px) {
  .footer-one__top {
    padding: 80px 0 70px;
  }
}

/* Tablets (<=991px) — 2 columns per row, centered */
@media (max-width: 991px) {
  .footer-one__top {
    padding: 70px 0 60px;
  }

  .footer-one__top-inner .row > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
    justify-content: center;
  }

  .footer-widget__column {
    text-align: center;
  }

  .footer-widget__about {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-widget__about-logo,
  .footer-widget__about-social-link ul {
    justify-content: center;
    display: flex;
  }

  .footer-widget__about-social-link ul {
    justify-content: center;
  }

  .footer-widget__services-list,
  .footer-widget__explore-list {
    display: inline-block;
    text-align: left;
  }
}

/* Small tablets / large phones (<=767px) — stack to 1 column, everything centered */
@media (max-width: 767px) {
  .footer-one__top {
    padding: 60px 0 50px;
  }

  .footer-one__top-inner .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 35px;
  }

  .footer-widget__title {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .footer-widget__posts-list ul li {
    text-align: center;
  }

  .footer-one__bottom {
    padding: 18px 0;
  }

  .footer-one__bottom-text p {
    font-size: 13px;
  }
}

/* Phones (<=575px) — tighter padding, smaller type */
@media (max-width: 575px) {
  .footer-container,
  .footer-one__bottom .container {
    padding: 0 16px;
  }

  .footer-one__top {
    padding: 50px 0 40px;
  }

  .footer-one__top-inner .row {
    margin: 0 -10px;
  }

  .footer-one__top-inner .row > [class*="col-"] {
    padding: 0 10px;
    margin-bottom: 30px;
  }

  .footer-widget__about-logo img {
    width: 150px;
    margin: 0 auto;
  }

  .footer-widget__about-text {
    font-size: 15px;
    line-height: 25px;
    text-align: center;
  }

  .footer-widget__title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-widget__services-list-item a,
  .footer-widget__explore-list-item a {
    font-size: 15px;
    line-height: 34px;
  }

  .footer-widget__posts-list ul li .text-box p a {
    font-size: 15px;
    line-height: 22px;
  }

  .footer-one__top-img {
    height: 40px;
    background-size: auto 40px;
  }
}

/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-one__bottom {
  position: relative;
  display: block;
  width: 100%;
  padding: 28px 0;
}

.footer-one__bottom-inner {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: space-between;

  width: 100%;
}

/* Copyright / developer text */

.footer-one__bottom-text {
  position: relative;
  display: block;
  width: 100%;
}

.footer-one__bottom-text p {
  color: rgba(255, 255, 255, 0.7);

  font-size: 15px;
  line-height: 26px;
  font-weight: 600;

  margin: 0;
}

/* Bottom links */

.footer-one__bottom-list {
  position: relative;
  display: block;
}

.footer-one__bottom-list ul {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}

.footer-one__bottom-list ul li {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.footer-one__bottom-list ul li:last-child {
  margin-right: 0;
}

.footer-one__bottom-list ul li a {
  color: rgba(255, 255, 255, 0.7);

  font-size: 15px;
  line-height: 26px;
  font-weight: 600;

  text-transform: capitalize;
  font-family: var(--thm-font);

  transition: all 200ms linear;
}

.footer-one__bottom-list ul li a:hover {
  color: #ffffff;
}

/* =========================================================
   LARGE DESKTOP
   1200px - 1399px
   ========================================================= */

@media (max-width: 1399px) {
  .footer-one__top {
    padding: 90px 0 90px;
  }

  .footer-widget__about {
    max-width: 310px;
  }

  .footer-widget__title {
    font-size: 23px;
    margin-bottom: 27px;
  }

  .footer-widget__about-text {
    font-size: 16px;
    line-height: 26px;
  }

  .footer-widget__services-list-item a,
  .footer-widget__explore-list-item a {
    font-size: 15px;
  }

  .footer-widget__posts-list ul li .text-box p a {
    font-size: 16px;
  }
}

/* =========================================================
   TABLET / SMALL DESKTOP
   992px - 1199px
   ========================================================= */

@media (max-width: 1199px) {
  .footer-one__top {
    padding: 80px 0 80px;
  }

  /*
     Bootstrap already changes the columns to 50% here.
     Add vertical spacing so the 2x2 layout looks intentional.
  */

  .footer-one__top-inner .row > div {
    margin-bottom: 45px;
  }

  .footer-one__top-inner .row > div:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }

  .footer-widget__about {
    max-width: 330px;
  }

  .footer-widget__explore,
  .footer-widget__posts {
    margin-left: 0;
  }

  .footer-widget__title {
    margin-bottom: 25px;
  }
}

/* =========================================================
   TABLET
   768px - 991px
   ========================================================= */

@media (max-width: 991px) {
  /*
     Center everything on tablet and mobile.
  */

  .footer-one-sec,
  .footer-one-sec * {
    text-align: center;
  }

  .footer-one__top {
    padding: 70px 0 70px;
  }

  /*
     Keep two-column layout on tablet.
  */

  .footer-one__top-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .footer-one__top-inner .row > div {
    margin-bottom: 45px;
  }

  /*
     About column
  */

  .footer-widget__about {
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-widget__about-logo {
    margin-bottom: 22px;
  }

  .footer-widget__about-logo a {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-widget__about-logo img {
    width: 175px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-widget__about-text {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  /*
     Center lists
  */

  .footer-widget__services-list,
  .footer-widget__explore-list {
    width: 100%;
  }

  .footer-widget__services-list-item,
  .footer-widget__explore-list-item {
    text-align: center;
  }

  /*
     Contact section
  */

  .footer-widget__posts-list {
    justify-content: center;
  }

  .footer-widget__posts-list ul {
    width: 100%;
  }

  .footer-widget__posts-list ul li {
    padding-left: 0;
    margin-bottom: 18px;
  }

  .footer-widget__posts-list ul li .text-box {
    width: 100%;
  }

  /*
     Bottom section
  */

  .footer-one__bottom {
    padding: 25px 0;
  }

  .footer-one__bottom-inner {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .footer-one__bottom-text {
    width: 100%;
  }

  .footer-one__bottom-list {
    width: 100%;
  }
}

/* =========================================================
   MOBILE
   576px - 767px
   ========================================================= */

@media (max-width: 767px) {
  .footer-one__top {
    padding: 60px 20px 65px;
  }

  /*
     On mobile make every Bootstrap column full width.
     This guarantees a clean vertical footer.
  */

  .footer-one__top-inner .row > div {
    width: 100%;
    margin-bottom: 45px;
  }

  .footer-one__top-inner .row > div:last-child {
    margin-bottom: 0;
  }

  /*
     Logo
  */

  .footer-widget__about-logo img {
    width: 165px;
  }

  /*
     About text
  */

  .footer-widget__about-text {
    font-size: 15px;
    line-height: 25px;
    max-width: 430px;
  }

  /*
     Headings
  */

  .footer-widget__title {
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  /*
     Services / Explore links
  */

  .footer-widget__services-list-item a,
  .footer-widget__explore-list-item a {
    font-size: 15px;
    line-height: 36px;
  }

  /*
     Contact
  */

  .footer-widget__posts-list {
    padding-top: 0;
  }

  .footer-widget__posts-list ul li {
    margin-bottom: 20px;
  }

  .footer-widget__posts-list ul li .text-box p {
    font-size: 14px;
    line-height: 23px;
  }

  .footer-widget__posts-list ul li .text-box p strong {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-widget__posts-list ul li .text-box p a {
    font-size: 15px;
    line-height: 24px;
  }

  /*
     Bottom
  */

  .footer-one__bottom {
    padding: 22px 20px;
  }

  .footer-one__bottom-text p {
    font-size: 13px;
    line-height: 22px;
  }

  /*
     Decorative image
  */

  .footer-one__top-img {
    height: 55px;
    background-size: auto 55px;
  }
}

/* =========================================================
   SMALL MOBILE
   400px - 575px
   ========================================================= */

@media (max-width: 575px) {
  .footer-one__top {
    padding: 55px 18px 60px;
  }

  .footer-one__top-inner .row > div {
    margin-bottom: 40px;
  }

  /*
     Logo
  */

  .footer-widget__about-logo {
    margin-bottom: 20px;
  }

  .footer-widget__about-logo img {
    width: 155px;
  }

  /*
     About
  */

  .footer-widget__about {
    max-width: 100%;
  }

  .footer-widget__about-text {
    font-size: 14px;
    line-height: 24px;
    max-width: 360px;
  }

  /*
     Headings
  */

  .footer-widget__title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 18px;
  }

  /*
     Links
  */

  .footer-widget__services-list-item a,
  .footer-widget__explore-list-item a {
    font-size: 14px;
    line-height: 34px;
  }

  /*
     Contact
  */

  .footer-widget__posts-list ul li {
    margin-bottom: 18px;
  }

  .footer-widget__posts-list ul li .text-box p {
    font-size: 13px;
    line-height: 22px;
  }

  .footer-widget__posts-list ul li .text-box p strong {
    font-size: 13px;
  }

  .footer-widget__posts-list ul li .text-box p a {
    font-size: 14px;
    line-height: 23px;
  }

  /*
     Bottom
  */

  .footer-one__bottom {
    padding: 20px 15px;
  }

  .footer-one__bottom-text p {
    font-size: 12px;
    line-height: 20px;
  }

  /*
     Bottom decorative image
  */

  .footer-one__top-img {
    height: 48px;
    background-size: auto 48px;
  }
}

/* =========================================================
   VERY SMALL PHONES
   360px AND BELOW
   ========================================================= */

@media (max-width: 380px) {
  .footer-one__top {
    padding: 50px 15px 55px;
  }

  .footer-widget__about-logo img {
    width: 145px;
  }

  .footer-widget__about-text {
    font-size: 13px;
    line-height: 22px;
  }

  .footer-widget__title {
    font-size: 19px;
    line-height: 27px;
  }

  .footer-widget__services-list-item a,
  .footer-widget__explore-list-item a {
    font-size: 13px;
    line-height: 32px;
  }

  .footer-widget__posts-list ul li .text-box p {
    font-size: 12px;
    line-height: 21px;
  }

  .footer-widget__posts-list ul li .text-box p strong {
    font-size: 12px;
  }

  .footer-widget__posts-list ul li .text-box p a {
    font-size: 13px;
  }

  .footer-one__bottom-text p {
    font-size: 11px;
    line-height: 19px;
  }
}

/* =========================================================
   ACCESSIBILITY / TOUCH FRIENDLY
   ========================================================= */

@media (hover: none) {
  .footer-widget__services-list-item a::before,
  .footer-widget__explore-list-item a::before {
    display: none;
  }
}

/* =========================================================
   PREVENT LONG CONTACT TEXT FROM BREAKING LAYOUT
   ========================================================= */

.footer-widget__posts-list a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* =========================================================
   REMOVE UNNECESSARY BOOTSTRAP / TEMPLATE SPACING
   ========================================================= */

.footer-one-sec .row {
  width: 100%;
}

.footer-one-sec ul {
  list-style: none;
}

.footer-one-sec p {
  margin-top: 0;
}

/* =========================================================
   END FOOTER RESPONSIVE CSS
   ========================================================= */

/*** 
============================================
	About Two
============================================
***/
.about-two-sec {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
}

.about-two__img {
  position: relative;
  display: block;
  max-width: 620px;
  width: 100%;
  padding-right: 70px;
}

.about-two__img1 {
  position: relative;
  display: block;
}

.about-two__img1::before {
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  width: 10px;
  background: var(--thm-base);
  content: "";
}

.about-two__img1 .inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.about-two__img1 .inner::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  transform: skewX(-25deg);
  z-index: 1;
}

.about-two__img:hover .about-two__img1 .inner::before {
  -webkit-animation: shine 1.5s;
  animation: shine 1.5s;
}

.about-two__img1 .inner img {
  width: 100%;
}

.about-two__img2 {
  position: absolute;
  left: -100px;
  bottom: 0;
  border-top: 5px solid #ffffff;
  border-right: 5px solid #ffffff;
  z-index: 5;
}

.about-two__content {
  position: relative;
  display: block;
}

.about-two__content .sec-title {
  padding-bottom: 30px;
}

.about-two__content-text1 {
  position: relative;
  display: block;
}

.about-two__content-text2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f2f3f5;
  padding: 33px 25px 31px;
  margin-top: 47px;
}

.about-two__content-text2 .text-box {
  position: relative;
  display: block;
}

.about-two__content-text2 .text-box p {
  color: var(--thm-gray);
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  font-family: var(--thm-font-2);
}

.about-two__content-text2 .icon-box {
  position: relative;
  display: block;
}

.about-two__content-text2 .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
}

.about-two__content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.about-two__content-bottom .btn-box {
  position: relative;
  display: block;
}

.about-two__content-bottom .author-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

.about-two__content-bottom .author-box .img-box {
  position: relative;
  display: block;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
}

.about-two__content-bottom .author-box .img-box img {
  width: 100%;
}

.about-two__content-bottom .author-box .title-box {
  position: relative;
  display: block;
  padding-left: 25px;
  line-height: 0;
}

.about-two__content-bottom .author-box .title-box h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
  text-transform: capitalize;
}

.about-two__content-bottom .author-box .title-box span {
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
  text-transform: capitalize;
}

/*** 
============================================
	Why Choose Two
============================================
***/
.why-choose-two-sec {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 120px 0px 120px;
}

.why-choose-two-sec .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  z-index: 3;
}

.why-choose-two__content {
  position: relative;
  display: block;
  padding-right: 30px;
}

.why-choose-two__content .sec-title {
  padding-bottom: 51px;
}

.why-choose-two__content .sec-title__tagline h6 {
  color: #ffffff;
}

.why-choose-two__content .sec-title__title {
  color: #ffffff;
}

.why-choose-two__content .sec-title__text {
  color: #ffffff;
}

.why-choose-two__content .sec-title__tagline span.right {
  background: #ffffff;
}

.why-choose-two__content-progress {
  position: relative;
  display: block;
}

.why-choose-two__content-progress-single {
  position: relative;
  display: block;
  margin-bottom: 32px;
}

.why-choose-two__content-progress-single.mar0 {
  margin-bottom: 0px;
}

.why-choose-two__content-progress-single .top {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.why-choose-two__content-progress-single .top .count-text {
  position: relative;
  color: #ffffff;
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
  padding-left: 7px;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
  font-family: var(--thm-font-2);
}

.why-choose-two__content-progress-single h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.why-choose-two__content-progress-single .bar {
  position: relative;
  width: 100%;
  height: 0px;
  background: transparent;
  margin-bottom: 0px;
}

.why-choose-two__content-progress-single .bar::before {
  position: absolute;
  left: 0;
  bottom: -9px;
  right: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  content: "";
}

.why-choose-two__content-progress-single .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 5px;
  background: #ffffff;
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 1;
}

.why-choose-two__img {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0;
  width: 50%;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
}

/*** 
============================================
	Feature Two 
============================================
***/
.feature-two-sec {
  position: relative;
  display: block;
  background: #f2f3f5;
  padding: 120px 0px 90px;
  overflow: hidden;
  z-index: 1;
}

.feature-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.7;
  z-index: -1;
}

.feature-two-sec .shape3 {
  position: absolute;
  top: -95px;
  left: 0;
  opacity: 0.08;
  z-index: -1;
}

.feature-two__single {
  position: relative;
  display: block;
  background: #001659;
  margin-bottom: 30px;
  padding: 40px 35px 31px;
  overflow: hidden;
  z-index: 1;
}

.feature-two__single .shape1 {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 185px;
  height: 185px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: perspective(380px) translateY(-100%);
  transform-origin: right;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.feature-two__single:hover .shape1 {
  transform: perspective(380px) translateY(0);
  transition: all 900ms ease;
  transition-delay: 0.1s;
  opacity: 1;
}

.feature-two__single .shape2 {
  position: absolute;
  left: -133px;
  bottom: -133px;
  width: 185px;
  height: 185px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: perspective(380px) translateY(100%);
  transform-origin: right;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.feature-two__single:hover .shape2 {
  transform: perspective(380px) translateY(0);
  transition: all 900ms ease;
  transition-delay: 0.1s;
  opacity: 1;
}

.feature-two__single::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--thm-base);
  transform: scaleX(0);
  transition: all 500ms ease;
  z-index: -1;
}

.feature-two__single:hover:before {
  transform: scaleX(1);
}

.feature-two__single .icon {
  position: relative;
  display: inline-block;
  margin-bottom: 19px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.feature-two__single:hover .icon {
  transform: rotateY(180deg);
  transition-delay: 0.3s;
}

.feature-two__single .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-two__single:hover .icon span::before {
  color: #ffffff;
}

.feature-two__single h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 13px;
}

.feature-two__single h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-two__single h3 a:hover {
  color: var(--thm-base);
}

.feature-two__single:hover h3 a {
  color: #ffffff;
}

.feature-two__single p {
  margin: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-two__single:hover p {
  color: #ffffff;
}

.feature-two__single .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 18px;
}

.feature-two__single .btn-box a {
  position: relative;
  display: inline-block;
}

.feature-two__single .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-two__single .btn-box a:hover span::before {
  color: var(--thm-base);
}

.feature-two__single:hover .btn-box a span::before {
  color: #ffffff;
}

/*** 
============================================
	Benefits One
============================================
***/
.benefits-one-sec {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.benefits-one__content {
  position: relative;
  display: block;
}

.benefits-one__content .sec-title {
  padding-bottom: 28px;
}

.benefits-one__content-list {
  position: relative;
  display: block;
}

.benefits-one__content-list li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.benefits-one__content-list li:last-child {
  margin-bottom: 0px;
}

.benefits-one__content-list li .icon {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  color: var(--thm-gray);
  font-size: 12px;
  font-weight: 700;
  background: #ffffff;
  box-shadow: 0px 0px 25px 0px rgb(0, 0, 0, 0.07);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.benefits-one__content-list li:hover .icon {
  color: #ffffff;
  background: var(--thm-base);
}

.benefits-one__content-list li .icon span::before {
  position: relative;
  display: inline-block;
  line-height: 40px;
}

.benefits-one__content-list li .text {
  position: relative;
  display: block;
  flex: 1;
  padding-left: 15px;
}

.benefits-one__content-list li .text p {
  margin: 0;
}

.benefits-one__content-progress {
  position: relative;
  display: block;
  max-width: 485px;
  width: 100%;
  margin-top: 50px;
}

.benefits-one__content-progress-single {
  position: relative;
  display: flex;
  align-items: center;
}

.benefits-one__content-progress-single .progress-box {
  position: relative;
  display: block;
  line-height: 0;
}

.benefits-one__content-progress-single .progress-box .graph-outer {
  position: relative;
  display: inline-block;
  text-align: center;
  z-index: 1;
}

.benefits-one__content-progress-single .progress-box .graph-outer .count-box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.benefits-one__content-progress-single .progress-box .graph-outer .count-text {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
  letter-spacing: -0.025em;
  font-family: var(--thm-font);
}

.benefits-one__content-progress-single
  .progress-box
  .graph-outer
  .count-Parsent {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 25px;
  font-weight: 600;
}

.benefits-one__content-progress-single .title-box {
  position: relative;
  display: block;
  padding-left: 20px;
}

.benefits-one__content-progress-single .title-box h4 {
  color: rgba(var(--thm-gray-rgb), 0.7);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.benefits-one__img {
  position: relative;
  display: block;
  border: 10px solid #f2f3f5;
  overflow: hidden;
  border-radius: 50%;
  margin-left: 60px;
  margin-right: -70px;
}

.benefits-one__img .shape1 {
  position: absolute;
  top: -170px;
  left: -75px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(var(--thm-base-rgb), 0.8);
}

.benefits-one__img .shape2 {
  position: absolute;
  bottom: -162px;
  right: -191px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(var(--thm-base-rgb), 0.8);
}

.benefits-one__img img {
  width: 100%;
}

/*** 
============================================
	Appointment One
============================================
***/
.appointment-one-sec {
  position: relative;
  display: block;
  padding: 245px 0px 0px;
  overflow: hidden;
  z-index: 2;
}

.appointment-one-sec .shape1 {
  position: absolute;
  top: -440px;
  left: -90px;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background: rgba(var(--thm-primary-rgb), 0.3);
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  z-index: 1;
}

.appointment-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 120px;
  right: 0;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.appointment-one-sec .video-box {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.appointment-one__video-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  font-size: 15px;
  color: #ffffff;
  background-color: var(--thm-base);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.appointment-one__video-icon:before {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  content: "";
  border-radius: 50%;
  z-index: -1;
  background-color: var(--thm-base);
  opacity: 0.6;
}

.appointment-one__video-icon:after {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  content: "";
  border-radius: 50%;
  z-index: -1;
  background-color: var(--thm-base);
  opacity: 0.45;
}

.appointment-one__video-icon .ripple,
.appointment-one__video-icon .ripple:before,
.appointment-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115px;
  height: 115px;
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.appointment-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.appointment-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.appointment-one__form {
  position: relative;
  display: block;
  background-color: var(--thm-base);
  padding: 51px 40px 60px;
  max-width: 470px;
  width: 100%;
  z-index: 2;
}

.appointment-one__form .title-box {
  position: relative;
  display: block;
}

.appointment-one__form .title-box h2 {
  color: #ffffff;
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  text-transform: none;
}

.appointment-one__form .form-box {
  position: relative;
  margin-top: 34px;
}

.appointment-one__form .form-box form {
  position: relative;
}

.appointment-one__form .form-box form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.appointment-one__form .form-box form .form-group input[type="text"],
.appointment-one__form .form-box form .form-group input[type="email"],
.appointment-one__form .form-box form .form-group input[type="tel"],
.appointment-one__form .form-box form .form-group input[type="url"],
.appointment-one__form .form-box form .form-group textarea,
.appointment-one__form .form-box form .form-group select {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 25px;
  color: #999999;
  font-weight: 400;
  padding: 14px 20px 15px;
  width: 100%;
  height: 70px;
  background-color: #ffffff;
  border-radius: 3px;
  outline: none;
  border: none;
  font-family: var(--thm-font);
}

.appointment-one__form .form-box form .form-group textarea {
  height: 150px;
  resize: none;
  padding-top: 23px;
}

.appointment-one__form .form-box form .button-box {
  position: relative;
  display: block;
}

.appointment-one__form .form-box form .button-box button {
  position: relative;
  z-index: 5;
}

.appointment-one__form .form-box form .button-box button.thm-btn {
  background-color: var(--thm-black);
  position: relative;
  display: block;
  width: 100%;
  z-index: 5;
}

.appointment-one__form .form-box form .button-box button.thm-btn::before {
  background: #ffffff;
  color: var(--thm-base);
}

.appointment-one__form .form-box form .button-box button.thm-btn::after {
  background: var(--thm-black);
}

/*** 
============================================
	Services Two
============================================
***/
.services-two-sec {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  z-index: 1;
}

.services-two-sec .shape1 {
  position: absolute;
  top: -185px;
  right: 0;
  opacity: 0.05;
  z-index: -1;
}

.services-two__single {
  position: relative;
  display: block;
  background: #f2f3f5;
  padding: 10px;
  margin-bottom: 30px;
}

.services-two__single-img {
  position: relative;
  display: block;
}

.services-two__single-img .icon-box {
  position: absolute;
  right: 20px;
  bottom: -25px;
}

.services-two__single-img .icon-box a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 46px;
  border: 2px solid #ffffff;
  background: var(--thm-base);
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 10px;
  z-index: 5;
}

.services-two__single-img .icon-box a:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 8px;
  background: var(--thm-black);
  content: "";
  z-index: -1;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.services-two__single-img .icon-box a:hover::before {
  transform: scaleX(1);
}

.services-two__single-img .icon-box a span::before {
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.services-two__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.services-two__single-img .inner:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-black);
  opacity: 0.7;
  content: "";
  transform: skew(-90deg) translateY(100%);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 900ms ease 100ms;
  z-index: 1;
}

.services-two__single:hover .services-two__single-img .inner:before {
  transform: skew(0deg) translateY(0);
}

.services-two__single-img .inner img {
  width: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.services-two__single:hover .services-two__single-img .inner img {
  transform: scale(1.2) rotate(1deg);
}

.services-two__single-content {
  position: relative;
  display: block;
  padding: 33px 10px 22px;
}

.services-two__single-content h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.services-two__single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-two__single-content h2 a:hover {
  color: var(--thm-base);
}

.services-two__single-content p {
  margin: 0;
}

.services-two__single-content .btn-box {
  position: relative;
  display: block;
  margin-top: 19px;
}

.services-two__single-content .btn-box a {
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--thm-font-2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-two__single-content .btn-box a:hover {
  color: var(--thm-base);
}

.services-two__single-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 12px;
  line-height: 12px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-two__single-content .btn-box a:hover span::before {
  color: var(--thm-base);
}

/*** 
============================================
	Project Two
============================================
***/
.project-two-sec {
  position: relative;
  display: block;
  background: #f2f3f5;
  padding: 120px 0px 120px;
  overflow: hidden;
  z-index: 5;
}

.project-two__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 70px;
}

.project-two__top .sec-title {
  padding-bottom: 0px;
}

.project-two__top .btn-box {
  position: relative;
  display: block;
}

.project-two__single {
  position: relative;
  display: block;
}

.project-two__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.project-two__single-img::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0px;
  right: 0;
  background-color: rgba(var(--thm-black-rgb), 0.65);
  transition: all 900ms ease 100ms;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotate(0deg) scaleX(0);
  opacity: 0;
  z-index: 1;
}

.project-two__single:hover .project-two__single-img::before {
  opacity: 1;
  transform: perspective(1200px) rotate(0deg) scaleX(1);
  transition: all 500ms ease 100ms;
}

.project-two__single-img img {
  transition: all 900ms ease 100ms;
  width: 100%;
}

.project-two__single-img .video-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.6);
  transition: all 900ms ease 100ms;
  z-index: 5;
}

.project-two__single:hover .project-two__single-img .video-box {
  opacity: 1;
  transform: scale(1);
  transition: all 900ms ease 500ms;
}

.project-two__video-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  font-size: 15px;
  color: var(--thm-base);
  background-color: #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.project-two__video-icon:before {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  content: "";
  border-radius: 50%;
  z-index: -1;
  background-color: #ffffff;
  opacity: 0.6;
}

.project-two__video-icon:after {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  content: "";
  border-radius: 50%;
  z-index: -1;
  background-color: #ffffff;
  opacity: 0.45;
}

.project-two__video-icon .ripple,
.project-two__video-icon .ripple:before,
.project-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115px;
  height: 115px;
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 1);
  -o-box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 1);
  box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 1);
  -webkit-animation: ripple2 3s infinite;
  animation: ripple2 3s infinite;
  border-radius: 50%;
}

.project-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.project-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.project-two__carousel.owl-carousel {
  display: block;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

.project-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding: 0px 0px 0px;
}

.project-two__carousel.owl-carousel
  .owl-stage-outer
  .owl-item.active
  .project-two__single-img
  img {
  transform: scale(1.1, 1.1);
}

.project-two__carousel.owl-carousel
  .owl-stage-outer
  .owl-item.active
  .project-two__single-img::before {
  opacity: 1;
  transform: perspective(1200px) rotate(0deg) scaleX(1);
  transition: all 500ms ease 100ms;
}

.project-two__carousel.owl-carousel
  .owl-stage-outer
  .owl-item.active
  .project-two__single-img
  .video-box {
  opacity: 1;
  transform: scale(1);
  transition: all 900ms ease 500ms;
}

/*** 
============================================
	Team One
============================================
***/
.team-one-sec {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  z-index: 1;
}

.team-one-sec .shape1 {
  position: absolute;
  top: -85px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0.03;
  z-index: -1;
}

.team-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-one__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
  z-index: 1;
}

.team-one__single-img::before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 0%;
  opacity: 0;
  transform: scale(0.5);
  background-color: rgba(var(--thm-black-rgb), 0.65);
  transition: all 0.8s ease-in-out 0s;
  content: "";
  z-index: 1;
}

.team-one__single:hover .team-one__single-img::before {
  opacity: 1;
  transform: scale(1);
  height: 100%;
}

.team-one__single-img img {
  width: 100%;
  transition: 0.5s ease;
  transform: scale(1.05);
}

.team-one__single:hover .team-one__single-img img {
  transform: scale(1);
}

.team-one__single-img .content-box {
  position: absolute;
  left: 30px;
  bottom: 30px;
  padding: 12px 45px 12px 25px;
  z-index: 1;
  opacity: 0;
  transform: translateY(100%);
  transition: all 800ms ease;
}

.team-one__single:hover .team-one__single-img .content-box {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 700ms;
}

.team-one__single-img .content-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  clip-path: polygon(0% 0%, 90% 0, 96% 59%, 100% 100%, 0% 100%);
  content: "";
  z-index: -1;
}

.team-one__single-img .content-box::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: var(--thm-base);
  content: "";
  z-index: -1;
}

.team-one__single-img .content-box h2 {
  font-size: 25px;
  line-height: 35px;
  font-weight: 500;
  text-transform: capitalize;
}

.team-one__single-img .content-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-one__single-img .content-box h2 a:hover {
  color: var(--thm-base);
}

.team-one__single-img .content-box span {
  color: var(--thm-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  font-family: var(--thm-font);
}

/*** 
============================================
	Testimonials Two
============================================
***/
.testimonials-two-sec {
  position: relative;
  display: block;
  background: #f2f3f5;
  padding: 120px 0px 76px;
  z-index: 2;
}

.testimonials-two__left-img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.testimonials-two__right {
  position: relative;
  display: block;
}

#testimonials-two__thumb {
  width: 350px;
  margin-left: 0;
}

.testimonials-two__right-img {
  position: relative;
  display: block;
  cursor: pointer;
  transition: all 500ms ease;
}

.testimonials-two__right-img .inner {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
}

.testimonials-two__right-img .inner::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(255, 255, 255, 0.2);
  transition: all 500ms ease;
  content: "";
}

#testimonials-two__thumb
  .swiper-slide-thumb-active
  .testimonials-two__right-img
  .inner::before {
  background-color: rgba(var(--moniz-base-rgb, 255, 255, 255), 0);
}

.testimonials-two__right-img .inner > img {
  width: 105px;
  border-radius: 50%;
  transition: all 0.5s ease-in-out 0.6s;
}

.testimonials-two__right-img .icon {
  position: absolute;
  bottom: 15px;
  right: -5px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  background: var(--thm-base);
  transform: scale(0);
  transition: all 500ms ease;
}

#testimonials-two__thumb
  .swiper-slide-thumb-active
  .testimonials-two__right-img
  .icon {
  transform: scale(1);
}

.testimonials-two-content {
  position: relative;
  display: block;
  margin-top: 62px;
  padding-bottom: 46px;
}

.testimonials-two-content__single {
  position: relative;
  display: block;
}

.testimonials-two-content__single-inner {
  position: relative;
  display: block;
  padding-left: 150px;
}

.testimonials-two-content__single-inner .icon-box {
  position: absolute;
  right: 0;
  bottom: 5px;
}

.testimonials-two-content__single-inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #c2c9d6;
  font-size: 50px;
  line-height: 50px;
  transform: rotate(180deg);
}

.testimonials-two-content__single-inner .img-box {
  position: absolute;
  top: 8px;
  left: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials-two-content__single-inner .img-box img {
  width: 100%;
}

.testimonials-two-content__single-inner .content-box {
  position: relative;
  display: block;
}

.testimonials-two-content__single-inner .content-box h4 {
  color: var(--thm-gray);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.testimonials-two-content__single-inner .content-box .name {
  position: relative;
  display: block;
  margin-top: 27px;
}

.testimonials-two-content__single-inner .content-box .name h4 {
  color: var(--thm-base);
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.testimonials-two-content__single-inner .content-box .name span {
  color: var(--thm-gray);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--thm-font);
  letter-spacing: 0.01em;
}

#testimonials-two__carousel-pagination {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  top: -117px;
  right: 0;
  left: auto;
  width: 100%;
  z-index: 20;
}

#testimonials-two__carousel-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 0px;
  background-color: rgba(var(--thm-black-rgb, 30, 30, 34), 0.2);
  border: 0px solid var(--thm-black);
  border-color: transparent;
  transition: all 500ms ease;
  opacity: 1;
  margin: 0;
  display: block;
}

#testimonials-two__carousel-pagination
  .swiper-pagination-bullet
  + .swiper-pagination-bullet {
  margin-left: 6px;
}

#testimonials-two__carousel-pagination .swiper-pagination-bullet-active {
  background-color: var(--thm-base);
}

/*** 
============================================
	Blog Two
============================================
***/
.blog-one-sec--two {
  position: relative;
  display: block;
}

.blog-one-sec--two .blog-one__single-content {
  position: relative;
  display: block;
  left: 0px;
  padding-top: 0px;
}

.blog-one-sec--two .blog-one__single-content .inner-content {
  padding: 23px 20px 30px;
  background: #f2f3f5;
}

.blog-one-sec--two .blog-one__single-content .inner-content .btn-box {
  position: relative;
  display: block;
  margin-top: 32px;
}

.blog-one-sec--two .blog-one__single-content .inner-content .btn-box .thm-btn {
  padding: 10px 20px 9px;
  border-radius: 5px;
}

/***
=============================================
    Work Perfomance One Sec About
=============================================
***/
.work-perfomance-one-sec--about {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 0px;
}

/***
=============================================
    About One Sec About
=============================================
***/
.about-one-sec--about {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
}

/***
=============================================
    Services One Sec Services
=============================================
***/
.services-one-sec--services {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
}

/***
=============================================
    Why Choose Two Sec Services
=============================================
***/
.why-choose-two-sec--services {
  position: relative;
  display: block;
  margin-top: 120px;
}

/***
=============================================
    Services Details Page
=============================================
***/
.services-details-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
}

.services-details__content {
  position: relative;
  display: block;
}

.services-details__img1 {
  position: relative;
  display: block;
  background-color: var(--thm-black);
  overflow: hidden;
}

.services-details__img1 img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0.1s opacity 0.2s ease-in;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.services-details__img1:hover img {
  opacity: 0.7;
  transform: scale(1.1) rotate(1deg);
}

.services-details__text-box1 {
  position: relative;
  display: block;
  margin-bottom: 67px;
}

.services-details__text-box1 .title {
  position: relative;
  display: block;
  margin-top: 31px;
  margin-bottom: 22px;
}

.services-details__text-box1 .title h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
}

.services-details__text-box1 .text-1 {
  position: relative;
  margin-bottom: 24px;
}

.services-details__text-box1 .text-2 {
  position: relative;
}

.services-details__text-box2 {
  position: relative;
  display: block;
}

.services-details__text-box2-img {
  position: relative;
  display: block;
  margin-right: -39px;
}

.services-details__text-box2-img img {
  width: 100%;
}

.services-details__text-box2-content {
  position: relative;
  display: block;
  margin-left: 47px;
}

.services-details__text-box2-content .title {
  position: relative;
  display: block;
  margin-top: -9px;
  margin-bottom: 17px;
}

.services-details__text-box2-content .title h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
}

.services-details__text-box2-content .text {
  position: relative;
  display: block;
  margin-bottom: 38px;
}

.services-details__text-box2-content .text p {
  margin: 0;
}

.services-details__text-box2-content ul {
  position: relative;
  display: block;
}

.services-details__text-box2-content ul li {
  position: relative;
  display: block;
  padding-left: 60px;
  margin-bottom: 32px;
}

.services-details__text-box2-content ul li:last-child {
  margin-bottom: 0px;
}

.services-details__text-box2-content ul li .icon {
  position: absolute;
  top: -6px;
  left: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #f2f2f2;
  border-radius: 50%;
  text-align: center;
  color: #b2b4ba;
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-details__text-box2-content ul li:hover .icon {
  color: #ffffff;
  background: var(--thm-base);
}

.services-details__text-box2-content ul li .text {
  position: relative;
  display: block;
  margin-bottom: 0px;
}

.services-details__text-box2-content ul li .text p {
  margin: 0;
}

.services-details__text-box3 {
  position: relative;
  display: block;
  margin-top: 62px;
}

.services-details__text-box3 p {
  margin: 0;
}

.services-details__text-box3 ul {
  position: relative;
  display: block;
  margin-top: 43px;
}

.services-details__text-box3 ul li {
  position: relative;
  display: block;
  padding-left: 60px;
  margin-bottom: 32px;
}

.services-details__text-box3 ul li:last-child {
  margin-bottom: 0px;
}

.services-details__text-box3 ul li .icon {
  position: absolute;
  top: -6px;
  left: 0;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #f2f2f2;
  text-align: center;
  color: var(--thm-gray);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-details__text-box3 ul li:hover .icon {
  color: #ffffff;
  background: var(--thm-base);
}

.services-details__text-box3 ul li .text {
  position: relative;
  display: block;
}

.services-details__text-box3 ul li .text p {
  margin: 0;
}

.services-details__tab-box {
  position: relative;
  display: block;
  margin-top: 76px;
}

.services-details__tab {
  position: relative;
  display: block;
}

.services-details__tab-button {
  position: relative;
  display: block;
}

.services-details__tab-button .tab-buttons {
  position: relative;
  display: block;
}

.services-details__tab-button .tab-buttons li {
  position: relative;
  display: inline-block;
  float: left;
  background: #f2f2f2;
  cursor: pointer;
  border-top: 1px solid #dcdcdf;
  border-bottom: 1px solid #dcdcdf;
  border-left: 1px solid #dcdcdf;
  padding: 18px 31px 18px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-details__tab-button .tab-buttons li:hover,
.services-details__tab-button .tab-buttons li.active-btn {
  border-color: var(--thm-base);
  background: var(--thm-base);
}

.services-details__tab-button .tab-buttons li:last-child {
  border-right: 1px solid #dcdcdf;
}

.services-details__tab-button .tab-buttons li:hover:last-child {
  border-color: var(--thm-base);
}

.services-details__tab-button .tab-buttons li h4 {
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
  letter-spacing: -0.025em;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-details__tab-button .tab-buttons li:hover h4,
.services-details__tab-button .tab-buttons li.active-btn h4 {
  color: #ffffff;
}

.services-details__tab-content-item {
  position: relative;
  display: block;
  border: 1px solid #dadade;
  border-radius: 5px;
  padding: 42px 30px 43px;
  margin-top: 60px;
}

.services-details__tab .tabs-content .tab {
  position: absolute;
  left: 0px;
  top: 0px;
  display: none;
  opacity: 1;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 1;
}

.services-details__tab .tabs-content .tab.active-tab {
  position: relative;
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  z-index: 5;
}

.quality-materials-tab-box {
  position: relative;
  display: block;
}

.quality-materials-tab-box-img {
  position: relative;
  display: block;
}

.quality-materials-tab-box-img img {
  width: 100%;
}

.quality-materials-tab-box-content {
  position: relative;
  display: block;
}

.quality-materials-tab-box-content .text1 {
  position: relative;
  font-size: 17px;
  margin-bottom: 15px;
}

.quality-materials-tab-box-content .text2 {
  position: relative;
  font-size: 17px;
}

.interior-design-tab-box {
  position: relative;
  display: block;
}

.interior-design-tab-box-img {
  position: relative;
  display: block;
}

.interior-design-tab-box-img img {
  width: 100%;
}

.interior-design-tab-box-content {
  position: relative;
  display: block;
}

.interior-design-tab-box-content .text1 {
  position: relative;
  font-size: 17px;
  margin-bottom: 15px;
}

.interior-design-tab-box-content .text2 {
  position: relative;
  font-size: 17px;
}

.personal-care-tab-box {
  position: relative;
  display: block;
}

.personal-care-tab-box-img {
  position: relative;
  display: block;
}

.personal-care-tab-box-img img {
  width: 100%;
}

.personal-care-tab-box-content {
  position: relative;
  display: block;
}

.personal-care-tab-box-content .text1 {
  position: relative;
  font-size: 17px;
  margin-bottom: 15px;
}

.personal-care-tab-box-content .text2 {
  position: relative;
  font-size: 17px;
}

.super-support-tab-box {
  position: relative;
  display: block;
}

.super-support-tab-box-form {
  position: relative;
  display: block;
}

.super-support-tab-box-form .comment-form__input-box textarea {
  height: 120px;
}

.services-details__sidebar {
  position: relative;
  display: block;
  padding-left: 40px;
}

.services-details__sidebar-single {
  position: relative;
  display: block;
  background: #f2f2f2;
  padding: 42px 40px 50px;
  margin-bottom: 30px;
}

.services-details__sidebar-single .title {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.services-details__sidebar-single .title h2 {
  color: var(--thm-black);
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  text-transform: capitalize;
}

.services-details-search {
  position: relative;
  display: block;
}

.services-details-search-form {
  position: relative;
}

.services-details-search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: #ffffff;
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  text-transform: capitalize;
  padding-left: 20px;
  padding-right: 35px;
  height: 65px;
  width: 100%;
  font-family: var(--thm-font-2);
}

.services-details-search-form ::-webkit-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.services-details-search-form ::-moz-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.services-details-search-form :-ms-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.services-details-search-form ::-ms-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.services-details-search-form ::placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.services-details-search-form :-ms-input-placeholder {
  color: var(--thm-gray);
}

.services-details-search-form ::-ms-input-placeholder {
  color: var(--thm-primary);
}

.services-details-search-form button[type="submit"] {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 17px;
  color: var(--thm-gray);
  font-size: 15px;
  width: 20px;
  outline: none;
  border: none;
  padding: 0;
  background-color: transparent;
}

.services-details-search-form button span::before {
  position: relative;
  display: inline-block;
  line-height: 65px;
  font-weight: 700;
}

.services-details-category {
  position: relative;
  display: block;
}

.services-details-category-list {
  position: relative;
  display: block;
}

.services-details-category-list li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.services-details-category-list li:last-child {
  margin-bottom: 0px;
}

.services-details-category-list li a {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 23px 25px 24px;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.services-details-category-list li a:hover,
.services-details-category-list li a.active {
  color: #ffffff;
}

.services-details-category-list li a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: -1;
  opacity: 1;
  transform: perspective(400px) rotateX(90deg);
  transform-origin: bottom;
  transition: all 300ms linear;
  transition-delay: 0.1s;
  background: var(--thm-base);
}

.services-details-category-list li a:hover::before,
.services-details-category-list li a.active::before {
  opacity: 1;
  transform: perspective(400px) rotateX(0deg);
  transition: all 300ms linear;
  transition-delay: 0.1s;
}

.services-details-category-list li a span::before {
  position: relative;
  display: inline-block;
  float: right;
  color: var(--thm-black);
  font-size: 25px;
  line-height: 28px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-details-category-list li a:hover span::before,
.services-details-category-list li a.active span::before {
  color: #ffffff;
}

.services-details-button-box {
  position: relative;
  display: block;
}

.services-details-button-box .btn-one {
  position: relative;
  display: block;
}

.services-details-button-box .btn-one a {
  position: relative;
  display: block;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  text-transform: capitalize;
  background: #ffffff;
  padding: 18px 25px 19px;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-details-button-box .btn-one a:hover {
  color: #ffffff;
  background: var(--thm-base);
}

.services-details-button-box .btn-one a span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  display: flex;
  align-items: center;
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-details-button-box .btn-one a:hover span::before {
  color: #ffffff;
}

.services-details-button-box .btn-one.btn-one--two {
  position: relative;
  display: block;
  margin-top: 20px;
}

.services-details-contact-box {
  position: relative;
  display: block;
  background: var(--thm-black);
}

.services-details-contact-box .title {
  position: relative;
  display: block;
  margin-bottom: 34px;
}

.services-details-contact-box .title h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
}

.services-details-contact-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 34px;
  font-weight: 600;
}

.services-details-contact-box .number {
  position: relative;
  display: block;
  margin-top: 33px;
}

.services-details-contact-box .number a {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--thm-font-2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-details-contact-box .number a:hover {
  color: var(--thm-base);
}

.services-details-contact-box .number a span::before {
  position: relative;
  display: inline-block;
  top: 6px;
  color: #ffffff;
  font-size: 25px;
  line-height: 25px;
  padding-right: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-details-contact-box .number a:hover span::before {
  color: var(--thm-base);
}

/***
=============================================
    Project One Sec Three
=============================================
***/
.project-one-sec--three {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
}

.project-one-sec--three .row {
  margin-left: -15px;
  margin-right: -15px;
}

.project-one-sec--three .row [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

.project-one-sec--three .project-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

/***
=============================================
    Protfolio Details
=============================================
***/
.protfolio-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
}

.protfolio-details__content {
  position: relative;
  display: block;
}

.protfolio-details__content-img1 {
  position: relative;
  display: block;
  background-color: var(--thm-black);
  overflow: hidden;
  margin-bottom: 33px;
}

.protfolio-details__content-img1 img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0.1s opacity 0.2s ease-in;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.protfolio-details__content-img1:hover img {
  opacity: 0.7;
  transform: scale(1.1) rotate(1deg);
}

.protfolio-details__content-text1 {
  position: relative;
  display: block;
  margin-bottom: 14px;
}

.protfolio-details__content-text1 p {
  margin: 0;
}

.protfolio-details__content-text2 {
  position: relative;
  display: block;
}

.protfolio-details__content-text2 p {
  margin: 0;
}

.protfolio-details__content-img2 {
  position: relative;
  display: block;
  background-color: var(--thm-black);
  overflow: hidden;
  margin-top: 62px;
}

.protfolio-details__content-img2 img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0.1s opacity 0.2s ease-in;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.protfolio-details__content-img2:hover img {
  opacity: 0.7;
  transform: scale(1.1) rotate(1deg);
}

.protfolio-details__content-img2 .icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.protfolio-details__content-img2 .icon a {
  position: relative;
  display: inline-block;
  width: 75px;
  height: 75px;
  line-height: 75px;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  background: var(--thm-base);
  z-index: 1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.protfolio-details__content-img2 .icon a:hover {
  background: var(--thm-black);
}

.protfolio-details__content-img2 .icon a::before {
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  border: 1px solid rgba(255, 255, 255, 0.31);
  border-radius: 50%;
  content: "";
}

.protfolio-details__content-text3 {
  position: relative;
  display: block;
  margin-top: 32px;
}

.protfolio-details__content-text3 p {
  margin: 0;
}

.protfolio-details__content-img3 {
  position: relative;
  display: block;
  margin-top: 62px;
  margin-bottom: 32px;
}

.protfolio-details__content-img3-single {
  position: relative;
  display: block;
  overflow: hidden;
}

.protfolio-details__content-img3-single img {
  width: 100%;
  height: 100%;
}

.protfolio-details__content-text4 {
  position: relative;
  display: block;
  margin-bottom: 41px;
}

.protfolio-details__content-text4 p {
  margin: 0;
}

.protfolio-details__content-text5 {
  position: relative;
  display: block;
}

.protfolio-details__content-text5 p {
  margin: 0;
}

.protfolio-details__sidebar {
  position: relative;
  display: block;
  padding-left: 40px;
}

.protfolio-details__sidebar-single {
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.protfolio-details__sidebar-single .title {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.protfolio-details__sidebar-single .title h2 {
  color: var(--thm-black);
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  text-transform: capitalize;
}

.protfolio-details-category {
  position: relative;
  display: block;
  background: #f2f2f2;
  padding: 42px 40px 50px;
}

.protfolio-details-category-list {
  position: relative;
  display: block;
}

.protfolio-details-category-list li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.protfolio-details-category-list li:last-child {
  margin-bottom: 0px;
}

.protfolio-details-category-list li a {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 23px 25px 24px;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.protfolio-details-category-list li a:hover,
.protfolio-details-category-list li a.active {
  color: #ffffff;
}

.protfolio-details-category-list li a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: -1;
  opacity: 1;
  transform: perspective(400px) rotateX(90deg);
  transform-origin: bottom;
  transition: all 300ms linear;
  transition-delay: 0.1s;
  background: var(--thm-base);
}

.protfolio-details-category-list li a:hover::before,
.protfolio-details-category-list li a.active::before {
  opacity: 1;
  transform: perspective(400px) rotateX(0deg);
  transition: all 300ms linear;
  transition-delay: 0.1s;
}

.protfolio-details-category-list li a span::before {
  position: relative;
  display: inline-block;
  float: right;
  color: var(--thm-black);
  font-size: 25px;
  line-height: 28px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.protfolio-details-category-list li a:hover span::before,
.protfolio-details-category-list li a.active span::before {
  color: #ffffff;
}

.protfolio-details-ads-banner {
  position: relative;
  display: block;
}

.protfolio-details-ads-banner-img {
  position: relative;
  display: block;
}

.protfolio-details-ads-banner-img img {
  width: 100%;
}

.protfolio-details-ads-banner-img2 {
  position: absolute;
  top: 18px;
  left: 40px;
  bottom: 18px;
  right: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.protfolio-details-tags {
  position: relative;
  display: block;
  margin-top: -8px;
}

.protfolio-details-tags-list {
  position: relative;
  display: block;
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.protfolio-details-tags-list li {
  position: relative;
  display: inline-block;
  float: left;
  padding: 0px 7.5px 0px;
  margin-bottom: 15px;
}

.protfolio-details-tags-list li a {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
  background: #f2f2f2;
  padding: 10px 35px 10px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.protfolio-details-tags-list li a:hover {
  color: #ffffff;
  background: var(--thm-base);
}

.protfolio-details-newsletter {
  position: relative;
  display: block;
  margin-top: -23px;
}

.protfolio-details-newsletter .newsletter-box {
  position: relative;
  display: block;
}

.protfolio-details-newsletter .newsletter-form {
  position: relative;
  display: block;
}

.protfolio-details-newsletter .newsletter-form input[type="email"] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background: #ffffff;
  border: 1px solid #e7eaeb;
  color: var(--thm-gray);
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  transition: all 500ms ease;
  font-family: var(--thm-font-2);
  outline: none;
}

.protfolio-details-newsletter
  .newsletter-form
  input::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.protfolio-details-newsletter .newsletter-form input:-moz-placeholder {
  color: var(--thm-gray);
}

.protfolio-details-newsletter .newsletter-form input::-moz-placeholder {
  color: var(--thm-gray);
}

.protfolio-details-newsletter .newsletter-form input:-ms-input-placeholder {
  color: var(--thm-gray);
}

.protfolio-details-newsletter .newsletter-form button {
  position: relative;
  margin-top: 20px;
}

.protfolio-details-newsletter .newsletter-form button.thm-btn {
  padding: 18px 45px 17px;
  border-radius: 40px;
}

/***
=============================================
    Team One Sec Two
=============================================
***/
.team-one-sec--two {
  position: relative;
  display: block;
}

.team-one-sec--two .team-one__single-img .content-box {
  left: 20px;
  bottom: 30px;
}

.team-one-sec--two .team-one__single-img .content-box h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
}

.team-one-sec--two .team-one__single-img .content-box span {
  font-size: 14px;
  line-height: 24px;
}

/***
=============================================
    Blog One Sec Two Blog
=============================================
***/
.blog-one-sec--two--blog {
  position: relative;
  display: block;
}

.blog-one-sec--two--blog.blog-one-sec--two
  .blog-one__single-content
  .inner-content
  .btn-box
  .thm-btn {
  border-radius: 5px;
}

/***
=====================================================
    Blog Details
=====================================================
***/
.blog-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.blog-details__left {
  position: relative;
  display: block;
}

.blog-details__img {
  position: relative;
  display: block;
  background-color: var(--thm-black);
  overflow: hidden;
}

.blog-details__img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0.1s opacity 0.2s ease-in;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.blog-details__img:hover img {
  opacity: 0.7;
  transform: scale(1.1) rotate(1deg);
}

.blog-details__date {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--thm-base);
  text-align: center;
  padding: 15px 25px;
}

.blog-details__date p {
  color: #ffffff;
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.blog-details__date p span {
  color: #ffffff;
  font-size: 22px;
  line-height: 25px;
  font-weight: 700;
  font-family: var(--thm-font);
}

.blog-details__content {
  position: relative;
  display: block;
  margin-top: 27px;
}

.blog-details__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__meta li + li {
  margin-left: 20px;
}

.blog-details__meta li a {
  font-size: 15px;
  color: var(--thm-base);
}

.blog-details__meta li a i::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  line-height: 15px;
  padding-right: 2px;
}

.blog-details__meta li a span {
  position: relative;
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
  margin-left: 6px;
}

.blog-details__meta li a span:hover {
  color: var(--thm-base);
}

.blog-details__title {
  font-size: 32px;
  line-height: 42px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 17px;
}

.blog-details__text-1 {
  margin: 0;
}

.blog-details__text-2 {
  margin: 0;
  padding-top: 19px;
}

.blog-details__content-two {
  position: relative;
  display: block;
  margin-top: 67px;
}

.blog-details__content-two-img {
  position: relative;
  display: block;
  background-color: var(--thm-black);
  overflow: hidden;
}

.blog-details__content-two-img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0.1s opacity 0.2s ease-in;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.blog-details__content-two-img:hover img {
  opacity: 0.7;
  transform: scale(1.1) rotate(1deg);
}

.blog-details__content-two-details {
  position: relative;
  display: block;
  margin-top: 26px;
}

.blog-details__content-two-title {
  font-size: 32px;
  line-height: 42px;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.blog-details__content-two-text-1 {
  margin: 0;
}

.blog-details__content-two-text-2 {
  margin: 0;
  padding-top: 20px;
}

.blog-details__content-two-points {
  position: relative;
  display: block;
  margin-top: 29px;
}

.blog-details__content-two-points li {
  position: relative;
  display: block;
  padding-left: 24px;
}

.blog-details__content-two-points li:before {
  position: absolute;
  top: 10px;
  left: 0;
  height: 10px;
  width: 10px;
  background-color: #bfc2c3;
  border-radius: 50%;
  content: "";
}

.blog-details__content-two-points li + li {
  margin-top: 17px;
}

.blog-details__bottom {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 47px 0 40px;
}

.blog-details__bottom p {
  margin: 0;
}

.blog-details__tags a {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 14px;
  letter-spacing: 0.035em;
  font-weight: 400;
  text-transform: capitalize;
  background-color: #ffffff;
  border: 1px solid #dcdfe2;
  padding: 6px 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__tags a:hover {
  background-color: var(--thm-base);
  border: 1px solid var(--thm-base);
  color: #ffffff;
}

.blog-details__tags a + a {
  margin-left: 6px;
}

.blog-details__social-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.blog-details__social-list a {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--thm-black);
  font-size: 15px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.blog-details__social-list a:hover {
  color: #ffffff;
  background-color: var(--thm-base);
}

.blog-details__social-list a + a {
  margin-left: 10px;
}

.blog-details__social-list a:hover:before {
  transform: scaleX(1);
}

.author-one {
  background-color: #f2f2f2;
  padding: 28px 30px 28px;
  display: -webkit-box;
  display: flex;
  margin-bottom: 51px;
}

.author-one .inner {
  position: relative;
  display: block;
  padding-left: 130px;
}

.author-one__image {
  position: absolute;
  top: 7px;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.author-one__image img {
  width: 100%;
}

.author-one__content {
  position: relative;
  display: block;
}

.author-one__content h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.author-one__content p {
  margin: 0;
}

.author-one__content {
  position: relative;
  display: block;
}

.author-one__content ul {
  position: relative;
  display: block;
  margin-top: 16px;
}

.author-one__content ul li {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.author-one__content ul li:last-child {
  margin-right: 0px;
}

.author-one__content ul li a {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.author-one__content ul li a:hover {
  color: var(--thm-base);
}

/***
=====================================================
    Comments
=====================================================
***/
.comment-one {
  position: relative;
  display: block;
}

.comment-one__title {
  color: var(--thm-black);
  font-size: 32px;
  line-height: 42px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
  margin-bottom: 31px;
}

.comment-one__single {
  position: relative;
  display: -webkit-box;
  display: flex;
  align-items: center;
  margin-bottom: 53px;
}

.comment-one__image {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.comment-one__image img {
  width: auto;
}

.comment-one__content {
  position: relative;
  margin-left: 30px;
  flex: 1;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 22px;
  margin-bottom: 11px;
  font-weight: 500;
}

.comment-one__content p {
  margin: 0;
  margin-bottom: 13px;
}

.comment-one__content span {
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
}

.comment-one__btn {
  position: relative;
  color: var(--thm-base);
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--thm-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding-left: 16px;
}

.comment-one__btn:hover {
  color: var(--thm-black);
}

.comment-form {
  position: relative;
  display: block;
}

.comment-form__title {
  color: var(--thm-black);
  font-size: 32px;
  line-height: 42px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
  margin-bottom: 40px;
}

.comment-one__form {
  position: relative;
  display: block;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  position: relative;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 60px;
  border: 1px solid #dcdfe2;
  color: #999999;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  font-style: normal;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 3px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.comment-form__input-box textarea {
  width: 100%;
  height: 200px;
  background-color: #ffffff;
  border: 1px solid #dcdfe2;
  outline: none;
  color: #999999;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 3px;
  padding: 12px 20px 20px;
  font-family: var(--thm-font);
  resize: none;
  height: 200px;
}

.comment-form__btn-box {
  position: relative;
  display: block;
  padding-top: 2px;
}

.comment-form__btn {
  position: relative;
  outline: none;
  border-radius: 40px;
  padding: 19px 45px 17px;
}

/***
=====================================================
    Sidebar
=====================================================
***/
.sidebar {
  position: relative;
  display: block;
  padding-left: 40px;
}

.sidebar__single + .sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  margin: 0;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.sidebar__search {
  position: relative;
  display: block;
  background-color: #f2f2f2;
  padding: 50px 40px 50px;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: #ffffff;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 600;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: 3px;
  border: 1px solid #dcdfe2;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--thm-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--thm-gray);
}

.sidebar__search-form button[type="submit"] {
  background-color: var(--thm-base);
  color: #ffffff;
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 0;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__search-form:hover button[type="submit"] {
  background-color: var(--thm-black);
  color: #ffffff;
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: #f2f2f2;
  padding: 42px 40px 50px;
}

.sidebar__category-list {
  position: relative;
  display: block;
  margin: 0;
}

.sidebar__category-list li + li {
  position: relative;
  margin-top: 15px;
}

.sidebar__category-list li a {
  position: relative;
  display: block;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  padding: 17px 25px 18px;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
}

.sidebar__category-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--thm-base);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__category-list li a:hover:before {
  transform: scaleY(1);
}

.sidebar__category-list li a:hover {
  color: #ffffff;
}

.sidebar__category-list li.active a {
  background-color: var(--thm-base);
  color: #ffffff;
}

.sidebar__category-list li a span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  right: 0;
  color: var(--thm-black);
  font-size: 15px;
  font-weight: 600;
  background-color: #dcdde0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 42px 40px 42px;
  background-color: #f2f2f2;
}

.sidebar__post-box {
  position: relative;
  display: block;
}

.sidebar__post-single {
  position: relative;
  display: block;
}

.sidebar__post-single + .sidebar__post-single {
  margin-top: 27px;
}

.sidebar-post__img {
  position: relative;
  display: block;
  background: var(--thm-black);
  overflow: hidden;
}

.sidebar-post__img::before {
  content: "";
  position: absolute;
  top: 0%;
  right: 0%;
  width: 0;
  height: 100%;
  background-color: rgba(var(--thm-base-rgb), 0.8);
  border-radius: 0%;
  -webkit-transform: translateX(90%, 90%);
  transform: translateX(90%, 90%);
  opacity: 0.7;
  z-index: 1;
}

.sidebar__post-single:hover .sidebar-post__img::before {
  -webkit-animation: circle 0.95s;
  animation: circle 0.95s;
  opacity: 1;
}

.sidebar-post__img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0.1s opacity 0.2s ease-in;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.sidebar__post-single:hover .sidebar-post__img img {
  opacity: 0.7;
  transform: scale(1.1) rotate(1deg);
}

.sidebar__post-content-box {
  position: relative;
  margin-top: 18px;
}

.sidebar__post-content-box h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.sidebar__post-content-box h3 a {
  color: var(--thm-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-single:hover .sidebar__post-content-box h3 a {
  color: var(--thm-base);
}

.sidebar__support {
  position: relative;
  display: block;
  text-align: center;
  padding: 77px 40px 90px;
  z-index: 1;
}

.sidebar__support-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.sidebar__support-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgb(9, 16, 37, 0.9);
  content: "";
  z-index: -2;
}

.sidebar__suppot-title {
  color: #ffffff;
  font-size: 48px;
  line-height: 58px;
  font-weight: 500;
}

.sidebar__suppot-text {
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
  margin: 0;
  padding-top: 25px;
  padding-bottom: 33px;
}

.sidebar__support-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar__support-btn-box .thm-btn {
  border: 0;
  border-radius: 40px;
  padding: 18px 40px 17px;
}

.sidebar__tags {
  position: relative;
  display: block;
  background-color: #f2f2f2;
  padding: 35px 40px 35px;
  overflow: hidden;
}

.sidebar__tags-list {
  position: relative;
  display: block;
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.sidebar__tags-list li {
  position: relative;
  display: inline-block;
  float: left;
  padding: 0px 7.5px 0px;
  margin-bottom: 15px;
}

.sidebar__tags-list li a {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 400;
  background: #ffffff;
  padding: 6px 35px;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__tags-list li a:hover {
  color: #ffffff;
  background: var(--thm-base);
}

/***
=============================================
    Google Map
=============================================
***/
.contact-page-google-map {
  position: relative;
  display: block;
  padding: 120px 0px 108px;
  z-index: 1;
}

.contact-page-google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 560px;
  width: 100%;
}

/***
=============================================
    Contact Page
=============================================
***/
.contact-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 120px;
}

.contact-page__content {
  position: relative;
  display: block;
}

.contact-page__content .title {
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.contact-page__content .title h2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  text-transform: capitalize;
}

.contact-page__content-single {
  position: relative;
  display: block;
  margin-bottom: 39px;
}

.contact-page__content-single-inner {
  position: relative;
  display: block;
  padding-left: 70px;
}

.contact-page__content-single-inner .icon-box {
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--thm-base);
  font-size: 50px;
}

.contact-page__content-single-inner .content-box {
  position: relative;
  display: block;
}

.contact-page__content-single-inner .content-box h2 {
  font-size: 27px;
  line-height: 37px;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-page__content-single-inner .content-box p {
  color: #5f6167;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
}

.contact-page__content-single-inner .content-box .number1 {
  margin: 0px;
  margin-bottom: 1px;
}

.contact-page__content-single-inner .content-box .number1 a {
  color: #5f6167;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__content-single-inner .content-box .number1 a:hover {
  color: var(--thm-base);
}

.contact-page__content-single-inner .content-box .number2 {
  margin: 0px;
}

.contact-page__content-single-inner .content-box .number2 a {
  color: #5f6167;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__content-single-inner .content-box .number2 a:hover {
  color: var(--thm-base);
}

.contact-page__content-single-inner .content-box .email1 {
  margin: 0px;
  margin-bottom: 1px;
}

.contact-page__content-single-inner .content-box .email1 a {
  color: #5f6167;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__content-single-inner .content-box .email1 a:hover {
  color: var(--thm-base);
}

.contact-page__content-single-inner .content-box .email2 {
  margin: 0px;
}

.contact-page__content-single-inner .content-box .email2 a {
  color: #5f6167;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__content-single-inner .content-box .email2 a:hover {
  color: var(--thm-base);
}

.contact-page__form {
  position: relative;
  display: block;
  margin-top: 126px;
}

/*============================================================================
   Update1.0
==============================================================================*/

/***
=============================================
    Slider Three
=============================================
***/
.slider-one-sec.style3 {
  position: relative;
  display: block;
  margin-top: -40px;
}

.slider-one-sec.style3 .slider-one__single {
  position: relative;
  display: block;
  padding: 207px 0px 170px;
}

.slider-one-sec.style3 .slider-carousel.owl-carousel .owl-nav {
  display: block;
}

.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav {
  position: absolute;
  top: 48%;
  left: 0px;
  right: 0px;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  line-height: 0;
  height: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: scaleX(1) translateX(0px);
  z-index: 999;
}

.slider-one-sec.style3:hover .slider-carousel.owl-theme .owl-nav {
  opacity: 1;
  left: 40px;
  right: 40px;
  transform: scaleX(1) translateX(0px);
  z-index: 99;
}

.slider-one-sec.style3 .slider-carousel.owl-theme .owl-prev span,
.slider-one-sec.style3 .slider-carousel.owl-theme .owl-next span {
  display: block;
}

.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav .owl-prev,
.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav .owl-next {
  position: relative;
  display: block;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  height: 60px;
  width: 60px;
  border-radius: 50%;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 17px;
  line-height: 60px;
  font-weight: 600;
  opacity: 1;
  margin: 0;
  padding: 0;
  transform: translateY(0px);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 99;
}

.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav .owl-prev::before,
.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav .owl-next::before {
  display: none;
}

.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav .owl-prev:hover,
.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav .owl-next:hover {
  color: #ffffff;
  background: transparent;
  border-color: #ffffff;
  z-index: 99;
}

.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav .owl-prev {
  transform: rotate(180deg);
}

.slider-one-sec.style3
  .slider-carousel.owl-theme
  .owl-nav
  .owl-prev
  span::before {
  position: relative;
  display: inline-block;
  top: -6px;
}

.slider-one-sec.style3
  .slider-carousel.owl-theme
  .owl-nav
  .owl-next
  span::before {
  position: relative;
  display: inline-block;
  top: -6px;
}

.slider-one-sec.style3 .slider-carousel.owl-theme .owl-dots {
  display: none;
}

/***
=============================================
    Main Header Three
=============================================
***/
.main-header-three {
  position: relative;
  display: block;
}

.main-header-three__wrapper {
  position: relative;
  display: block;
}
/* =========================================
   CREST SOLUTIONS TOP MOVING BAR
========================================= */

.main-header-three__top {
  position: relative;
  display: block;
  width: 100%;
  background: var(--thm-black);
  padding: 13px 0;
  overflow: hidden;
  z-index: 99;
}

.main-header-three__top-inner {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

/* Moving text wrapper */
.crest-marquee {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

/* Moving track */
.crest-marquee__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;

  animation: crestMarquee 30s linear infinite;
}

/* Individual text */
.crest-marquee__track span {
  position: relative;
  display: inline-flex;
  align-items: center;

  color: #ffffff;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;

  margin-right: 70px;
}

/* Small separator between texts */
.crest-marquee__track span::after {
  content: "";
  width: 5px;
  height: 5px;

  margin-left: 70px;

  background: var(--thm-base);
  border-radius: 50%;
}

/* Continuous right → left movement */
@keyframes crestMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =========================================
   HOVER PAUSE
========================================= */

.crest-marquee:hover .crest-marquee__track {
  animation-play-state: paused;
}

/* =========================================
   TABLET
========================================= *





/* =========================================
   TABLET
========================================= */

@media only screen and (max-width: 991px) {
  .main-header-three__top {
    padding: 11px 0;
    /* display: flex; */
  }

  .crest-marquee__track span {
    font-size: 15px;
    line-height: 26px;
    margin-right: 55px;
  }

  .crest-marquee__track span::after {
    margin-left: 55px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media only screen and (max-width: 600px) {
  .main-header-three__top {
    padding: 9px 0;
  }

  .crest-marquee__track span {
    font-size: 14px;
    line-height: 24px;
    margin-right: 40px;
  }

  .crest-marquee__track span::after {
    width: 4px;
    height: 4px;
    margin-left: 40px;
  }
}

.main-header-three__middle {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 10px 0px 10px;
}
.humburger {
  top: 50%;
}

.main-header-three__middle-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header-three__middle-inner .logo-box {
  position: relative;
  display: block;
}

.main-header-three__middle-inner .logo-box a {
  position: relative;
  display: inline-block;
}

.main-header-three__middle-inner .logo-box a img {
  width: 100%;
}

.main-header-three__middle .contact-info {
  position: relative;
  display: block;
}

.main-header-three__middle .contact-info ul {
  position: relative;
  display: block;
}

.main-header-three__middle .contact-info ul li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 25px;
  padding-right: 25px;
}

.main-header-three__middle .contact-info ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.main-header-three__middle .contact-info ul li::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: rgba(var(--thm-gray-rgb), 0.5);
  content: "";
}

.main-header-three__middle .contact-info ul li:last-child:before {
  display: none;
}

.main-header-three__middle .contact-info ul li .icon-box {
  position: relative;
  display: block;
}

.main-header-three__middle .contact-info ul li .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 40px;
}

.main-header-three__middle .contact-info ul li .text-box {
  position: relative;
  display: block;
  margin-left: 19px;
}

.main-header-three__middle .contact-info ul li .text-box h3 {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 5px;
}

.main-header-three__middle .contact-info ul li .text-box p {
  margin: 0;
  line-height: 22px;
}

.main-header-three__middle .contact-info ul li .text-box p a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-three__middle .contact-info ul li .text-box p a:hover {
  color: var(--thm-base);
}

.main-header-three__bottom {
  position: relative;
  display: block;
}

.main-header-three__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--thm-base);
  padding: 0px 30px 0px;
  z-index: 10;
}

.main-header-three__bottom .main-menu .main-menu__list > li > a {
  color: #ffffff;
}

.main-header-three__bottom
  .main-menu
  .main-menu__list
  > li.dropdown
  > a::before {
  color: #ffffff;
}

.main-header-three__bottom .main-menu .main-menu__list > li.current > a,
.main-header-three__bottom .main-menu .main-menu__list > li:hover > a {
  color: var(--thm-black);
}

.main-header-three__bottom
  .main-menu
  .main-menu__list
  > li.current.dropdown
  > a::before,
.main-header-three__bottom
  .main-menu
  .main-menu__list
  > li:hover.dropdown
  > a::before {
  color: var(--thm-black);
}

/* =========================================
   COMPANY PROFILE BUTTON
   ========================================= */

.company-profile-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  height: 38px;
  padding: 0 13px;

  background: #00235a;
  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;

  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;

  white-space: nowrap;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* PDF Icon */
.company-profile-button i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* Hover */
.company-profile-button:hover {
  background: #ffffff;
  color: #00235a;
  border-color: #ffffff;

  transform: translateY(-2px);

  box-shadow: 0 6px 16px rgba(0, 35, 90, 0.22);
}

.company-profile-button:hover i {
  transform: translateY(-1px);
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1100px) {
  .company-profile-button {
    height: 42px;
    padding: 0 15px;
    gap: 8px;
    font-size: 13px;
  }

  .company-profile-button i {
    font-size: 15px;
  }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {
  .company-profile-button {
    height: 40px;
    padding: 0 13px;
    gap: 7px;

    font-size: 12px;
    border-radius: 4px;
  }

  .company-profile-button i {
    font-size: 14px;
  }
}

/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {
  .company-profile-button {
    height: 37px;
    padding: 0 10px;
    gap: 6px;

    font-size: 11px;
  }

  .company-profile-button i {
    font-size: 13px;
  }
}
.main-header-three__bottom .main-header-one__bottom-right .search-box {
  padding-right: 21px;
  padding-left: 22px;
}

.main-header-three__bottom .main-header-one__bottom-right .search-box::before {
  position: absolute;
  top: -26px;
  right: 0;
  bottom: -26px;
  width: 1px;
  background: rgba(255, 255, 255, 0.5);
  content: "";
}

.main-header-three__bottom .main-header-one__bottom-right .search-box::after {
  position: absolute;
  top: -26px;
  left: 0;
  bottom: -26px;
  width: 1px;
  background: rgba(255, 255, 255, 0.5);
  content: "";
}

.main-header-three__bottom .main-header-one__bottom-right .search-box a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-three__bottom .main-header-one__bottom-right .search-box a:hover {
  color: var(--thm-black);
}

.main-header-three__bottom .main-header-one__bottom-right .cart-btn a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-three__bottom .main-header-one__bottom-right .cart-btn a .count {
  top: 4px;
  right: 2px;
}

.main-header-three__bottom .main-header-one__bottom-right .cart-btn {
  margin-left: 4px;
  padding-right: 19px;
}

.main-header-three__bottom .main-header-one__bottom-right .cart-btn::before {
  position: absolute;
  top: -26px;
  right: 0;
  bottom: -15px;
  width: 1px;
  background: rgba(255, 255, 255, 0.5);
  content: "";
}

.side-content-button-box {
  position: relative;
  display: block;
  padding-left: 20px;
}

.side-content-button-box .side-content-button {
  position: relative;
  display: block;
}

.side-content-button-box .side-content-button a.navSidebar-button {
  position: relative;
  display: inline-block;
}

.side-content-button-box .side-content-button a.navSidebar-button .decor {
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background: #ffffff;
  margin: 5px 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.side-content-button-box .side-content-button a.navSidebar-button:hover .decor {
  background: var(--thm-black);
}

/***
=============================================
  Services Three
=============================================
***/
.services-three {
  position: relative;
  display: block;
  background: var(--thm-black);
  padding: 120px 0px 90px;
  z-index: 1;
}

.services-three .shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.15;
  z-index: -1;
}

.services-three .shape2 {
  position: absolute;
  top: 90px;
  right: 50px;
  z-index: -1;
}

/* =============================================
   SERVICES TOP
============================================= */

.services-three__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 58px;
}

.services-three__top .sec-title {
  padding-bottom: 0px;
}

.services-three__top .sec-title__title {
  color: #ffffff;
}

.services-three__top .text-box {
  position: relative;
  display: block;
}

.services-three__top .text-box p {
  color: rgb(255, 255, 255, 0.7);
}

.services-three__single {
  position: relative;
  display: block;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
  padding: 40px 40px 40px;
  z-index: 1;
}

.services-three__single__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scaleX(0.7) rotateX(0deg);
  transition: all 0.4s linear;
  border-radius: 10px;
  opacity: 0;
  z-index: -1;
}

.services-three__single.active .services-three__single__bg {
  transform: scaleX(1) rotateX(0deg);
  opacity: 1;
}

.services-three__single:hover .services-three__single__bg {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.services-three__single__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-base-rgb), 0.95);
  border-radius: 10px;
  content: "";
  z-index: -2;
}

.services-three__single-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
  z-index: 1;
}

.services-three__single:hover .services-three__single-icon {
  transform: rotateY(180deg);
  transition-delay: 0.3s;
}

.services-three__single-icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 60px;
  line-height: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-three__single:hover .services-three__single-icon span::before,
.services-three__single.active .services-three__single-icon span::before {
  color: #ffffff;
}

.services-three__single h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.services-three__single h3 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-three__single h3 a:hover {
  color: var(--thm-black);
}

.services-three__single p {
  color: rgba(255, 255, 255, 0.7);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-three__single:hover p,
.services-three__single.active p {
  color: #ffffff;
}

.services-three__single .btn-box {
  position: relative;
  display: inline-block;
  margin-top: 21px;
}

.services-three__single .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  /* left: 280px; */
}

.services-three__single .btn-box a span::before {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-three__single:hover .btn-box a span::before,
.services-three__single.active .btn-box a span::before {
  color: #ffffff;
}

.services-three__single:hover .btn-box a:hover {
  color: white;
  background: rgb(11, 87, 217);
}

.services-three__single:hover .btn-box a {
  background: rgb(1, 47, 127);
}

/***
=============================================
  About Three
=============================================
***/
.about-three {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.about-three__img {
  position: relative;
  display: block;
  background: #f2f3f5;
  padding: 15px;
  border-top-right-radius: 200px;
  border-bottom-left-radius: 200px;
  overflow: hidden;
}

.about-three__img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-right-radius: 200px;
  border-bottom-left-radius: 200px;
}

.about-three__img .inner img {
  width: 100%;
}

.about-three__img-video {
  position: absolute;
  bottom: 70px;
  right: 70px;
  z-index: 5;
}

.about-three__img-video-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  font-size: 15px;
  color: #ffffff;
  background-color: var(--thm-base);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.about-three__img-video-icon:hover {
  background-color: var(--thm-base);
  color: #ffffff;
}

.about-three__img-video-icon:before {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  content: "";
  border-radius: 50%;
  z-index: -1;
  background-color: var(--thm-base);
  opacity: 0.6;
}

.about-three__img-video-icon:after {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  content: "";
  border-radius: 50%;
  z-index: -1;
  background-color: var(--thm-base);
  opacity: 0.45;
}

.about-three__img-video-icon .ripple,
.about-three__img-video-icon .ripple:before,
.about-three__img-video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115px;
  height: 115px;
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.about-three__img-video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.about-three__img-video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.about-three__content {
  position: relative;
  display: block;
  margin-left: 30px;
}

.about-three__content .sec-title {
  padding-bottom: 29px;
}

.about-three__content-inner {
  position: relative;
  display: block;
}

.about-three__content-inner .text1 {
  position: relative;
  display: block;
}

.about-three__content-inner .text1 p {
  margin: 0;
}

.about-three__content-inner .text2 {
  position: relative;
  display: block;
  padding-left: 15px;
  margin-top: 27px;
}

.about-three__content-inner .text2::before {
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 5px;
  width: 3px;
  background: var(--thm-base);
  content: "";
}

.about-three__content-inner .text2 h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.about-three__content-list {
  position: relative;
  display: block;
  margin-top: 27px;
}

.about-three__content-list li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}

.about-three__content-list li .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--thm-base);
}

.about-three__content-list li .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 10px;
  line-height: 20px;
  font-weight: 700;
}

.about-three__content-list li .text-box {
  position: relative;
  display: block;
  margin-left: 15px;
}

.about-three__content-list li .text-box p {
  color: var(--thm-black);
  font-size: 17px;
  font-weight: 700;
}

.about-three__content-btn {
  position: relative;
  display: block;
  margin-top: 24px;
}

/***
=============================================
    Project Three
=============================================
***/
.project-three {
  position: relative;
  display: block;
  background: #f2f3f5;
  padding: 120px 0px 120px;
}

.project-three .container-fluid {
  padding-left: 10px;
  padding-right: 10px;
}

.project-three__single {
  position: relative;
  display: block;
}

.project-three__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.project-three__single-img::before {
  position: absolute;
  content: "";
  top: 0%;
  left: 0%;
  right: auto;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  -o-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  background-color: var(--thm-black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
}

.project-three__single:hover .project-three__single-img::before {
  opacity: 0.9;
}

.project-three__single-img img {
  width: 100%;
}

.project-three__single-img .icon-box {
  position: absolute;
  top: 0px;
  right: 50px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.project-three__single:hover .project-three__single-img .icon-box {
  top: 50px;
  opacity: 1;
  visibility: visible;
}

.project-three__single-img .icon-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--thm-base);
  color: #ffffff;
  font-size: 15px;
}

.project-three__single-img .content-box {
  position: absolute;
  left: 50px;
  bottom: 0px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.project-three__single:hover .project-three__single-img .content-box {
  bottom: 43px;
  opacity: 1;
  visibility: visible;
}

.project-three__single-img .content-box p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.project-three__single-img .content-box h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-three__single-img .content-box h3 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-three__single-img .content-box h3 a:hover {
  color: var(--thm-base);
}

/***
=============================================
   Video One
=============================================
***/
.video-one {
  position: relative;
  display: block;
  padding: 140px 0px 165px;
  z-index: 1;
}

.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.video-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-black-rgb), 0.7);
  content: "";
  z-index: -2;
}

.video-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.video-one__inner .text-box {
  position: relative;
  display: block;
  margin-bottom: 81px;
}

.video-one__inner .text-box h2 {
  color: #ffffff;
  font-size: 45px;
  line-height: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}

.video-one__inner .text-box p {
  color: var(--thm-base);
  font-size: 17px;
  line-height: 30px;
  font-weight: 700;
}

.video-one__inner .video-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-one__inner .video-box a {
  position: relative;
  display: inline-block;
  z-index: 5;
}

.video-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 25px;
  color: #ffffff;
  background-color: var(--thm-base);
  border-radius: 50%;
  margin: 0 auto;
}

.video-one__icon::before {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid var(--thm-base);
  border-radius: 50%;
  content: "";
}

.video-one__inner .video-box .border-animation {
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  border: 1px solid var(--thm-base);
  animation: squares 2.9s linear 0s infinite;
  -webkit-animation: squares 2.9s linear 0s infinite;
  -ms-animation: squares 2.9s linear 0s infinite;
  -o-animation: squares 2.9s linear 0s infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
  border-radius: 50%;
}

.video-one__inner .video-box .border-animation.border-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.video-one__inner .video-box .border-animation.border-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/***
=====================================================
    Counter One
=====================================================
***/
.counter-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 0px;
  z-index: 100;
}

.counter-one__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.03;
  z-index: -1;
}

.counter-one .container {
  max-width: 1500px;
}

.counter-one .row {
  --bs-gutter-x: 0px;
}

.counter-one__single {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
  padding: 40px 0px 44px;
  padding-left: 25px;
  padding-right: 15px;
  margin-bottom: 1px;
  z-index: 1;
}

.counter-one__single::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-bottom: 2px solid var(--thm-base);
  transform: scaleX(0);
  transition: all 500ms ease;
  z-index: -1;
}

.counter-one__single:hover:before {
  transform: scaleX(1);
}

.counter-one__single-inner {
  position: relative;
  display: block;
  padding-left: 80px;
}

.counter-one__single-inner .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__single-inner .icon-box {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.counter-one__single-inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 65px;
  line-height: 65px;
}

.counter-one__single-inner .text-box {
  position: relative;
  display: block;
}

.counter-one__single-inner .text-box h3 {
  color: #222222;
  font-size: 35px;
  line-height: 32px;
  font-weight: 700;
  font-family: var(--thm-font-two);
}

.counter-one__letter {
  position: relative;
  display: inline-block;
  top: 5px;
  color: #222222;
  font-size: 35px;
  line-height: 32px;
  font-weight: 700;
  font-family: var(--thm-font-two);
}

.counter-one__plus {
  position: relative;
  display: inline-block;
  top: 5px;
  color: #222222;
  font-size: 35px;
  line-height: 32px;
  font-weight: 700;
  font-family: var(--thm-font-two);
}

.counter-one__text {
  margin: 0px;
  line-height: 20px;
  margin-top: 5px;
}

/***
=====================================================
Mission Vision One
=====================================================
***/
.mission-vision-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.mission-vision-one .slider-bg-slide {
  width: 100%;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.slider-bg-slide-overly::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0, 35, 90);
  background: linear-gradient(
    90deg,
    rgb(2 22 52) 0%,
    rgb(0 52 135) 32%,
    rgba(0, 35, 90, 0) 89%
  );
  content: "";
  z-index: 2;
}

.mission-vision-one__inner {
  position: relative;
  display: block;
  background: goldenrod;
  padding: 30px 40px 30px;
  width: 100% !important;
  z-index: 3;
}

.mission-vision-one__single {
  position: relative;
  display: block;
  padding: 50px 40px 42px;
  background: rgba(255, 255, 255, 0.1);
}

.mission-vision-one__single .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--thm-black);
  border-radius: 50%;
  margin-bottom: 23px;
}

.mission-vision-one__single .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 30px;
  line-height: 30px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.mission-vision-one__single:hover .icon-box span::before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.mission-vision-one__single h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 7px;
}

.mission-vision-one__single p {
  color: #000000;
}

.mission-vision-one__inner--style2 {
  background: rgba(0, 0, 0, 0.3);
  padding: 60px 60px 60px;
  margin-right: 0px;
  margin-left: 0px;
}

.mission-vision-one__inner--style2 .mission-vision-one__single {
  background: rgba(255, 255, 255, 0.1);
  background-color: var(--thm-base);
}

/***
=====================================================
Progress One
=====================================================
***/
.progress-one {
  position: relative;
  display: block;
  padding: 0px 0px 80px;
  border-bottom: 1px dashed #f2f3f5;
}

.progress-one__single {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.progress-one__single .progress-box {
  position: relative;
  display: block;
  line-height: 0;
}

.progress-one__single .progress-box .graph-outer {
  position: relative;
  display: inline-block;
  text-align: center;
  z-index: 1;
}

.progress-one__single .progress-box .graph-outer .count-box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.progress-one__single .progress-box .graph-outer .count-text {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 35px;
  line-height: 45px;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-family: var(--thm-font);
}

.progress-one__single .progress-box .graph-outer .count-Parsent {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 25px;
  font-weight: 600;
}

.progress-one__single .title-box {
  position: relative;
  display: block;
  padding-left: 30px;
}

.progress-one__single .title-box h4 {
  color: var(--thm-base);
  font-size: 19px;
  line-height: 29px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.progress-one__single .title-box p {
  margin: 0;
}

/***
=====================================================
Feature Four
=====================================================
***/
.feature-four {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  z-index: 1;
}

.feature-four__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.feature-four__single-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.feature-four__single-img::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  background: rgba(var(--thm-black-rgb), 0.8);
  opacity: 0;
  z-index: 1;
  content: "";
}

.feature-four__single:hover .feature-four__single-img::before {
  opacity: 0.8;
}

.feature-four__single-img img {
  width: 100%;
  transition: 0.5s ease;
  transform: scale(1.05);
}

.feature-four__single:hover .feature-four__single-img img {
  transform: scale(1);
}

.feature-four__single.style2 {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--thm-gray-rgb), 0.4);
  padding: 50px 35px 42px;
}

.feature-four__single-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.feature-four__single:hover .feature-four__single-icon {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.feature-four__single-icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-four__single-content {
  position: relative;
  display: block;
}

.feature-four__single-content span {
  color: var(--thm-gray);
  font-size: 12px;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-four__single-content h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 24px;
}

.feature-four__single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-four__single-content h2 a:hover {
  color: var(--thm-base);
}

.feature-four__single-content p {
  margin: 0;
}

/***
=====================================================
Testimonials Three
=====================================================
***/
.testimonials-three {
  position: relative;
  display: block;
  background: #f2f3f5;
  padding: 120px 0px 120px;
  z-index: 1;
}

.testimonials-three__img1 {
  position: absolute;
  top: 50px;
  left: 100px;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  background: #000000;
  opacity: 0.3;
  z-index: -1;
}

.testimonials-three__img1 img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.testimonials-three__img2 {
  position: absolute;
  top: 80px;
  left: 550px;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 50%;
  background: #000000;
  opacity: 0.3;
  z-index: -1;
}

.testimonials-three__img2 img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.testimonials-three__img3 {
  position: absolute;
  top: 80px;
  right: 550px;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  background: #000000;
  opacity: 0.3;
  z-index: -1;
}

.testimonials-three__img3 img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.testimonials-three__img4 {
  position: absolute;
  top: 50px;
  right: 100px;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  background: #000000;
  opacity: 0.3;
  z-index: -1;
}

.testimonials-three__img4 img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.testimonials-three__img5 {
  position: absolute;
  top: 150px;
  right: 50%;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  z-index: -1;
  transform: translateX(50%);
  opacity: 0.3;
  background: #000000;
}

.testimonials-three__img5 img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.testimonials-three__img6 {
  position: absolute;
  top: 44%;
  left: 50px;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  background: #000000;
  opacity: 0.3;
  z-index: -1;
}

.testimonials-three__img6 img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.testimonials-three__img7 {
  position: absolute;
  bottom: 50px;
  left: 100px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  background: #000000;
  opacity: 0.3;
  z-index: -1;
}

.testimonials-three__img7 img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.testimonials-three__img8 {
  position: absolute;
  top: 45%;
  right: 50px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  background: #000000;
  opacity: 0.3;
  z-index: -1;
}

.testimonials-three__img8 img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.testimonials-three__img9 {
  position: absolute;
  bottom: 50px;
  right: 100px;
  width: 100px;
  height: 100px;
  overflow: hidden;
  background: #000000;
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.testimonials-three__img9 img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.testimonials-three__single {
  position: relative;
  display: block;
  padding-top: 50px;
}

.testimonials-three__single .quote-icon {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
}

.testimonials-three__single .quote-icon span::before {
  position: relative;
  display: inline-block;
  color: rgba(var(--thm-gray-rgb), 0.2);
  font-size: 40px;
}

.testimonials-three__single .img-box {
  position: absolute;
  top: 0;
  right: 55px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 3;
}

.testimonials-three__single-inner {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 46px 40px 42px;
  border-radius: 10px;
  box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 10%);
}

.testimonials-three__single-inner .title-box {
  position: relative;
  display: block;
}

.testimonials-three__single-inner .title-box h3 {
  font-size: 22px;
  line-height: 25px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 6px;
}

.testimonials-three__single-inner .title-box span {
  color: var(--thm-base);
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
}

.testimonials-three__single-inner .text-box {
  position: relative;
  display: block;
  margin-top: 19px;
}

.testimonials-three__single-inner .text-box p {
  margin: 0;
}

.testimonials-three__single-inner .rating-box {
  position: relative;
  display: block;
  margin-top: 5px;
}

.testimonials-three__single-inner .rating-box li {
  position: relative;
  display: inline-block;
}

.testimonials-three__single-inner .rating-box li span::before {
  position: relative;
  display: inline-block;
  color: #ffaa01;
  font-size: 15px;
}

.testimonials-three__carousel.owl-theme .owl-nav {
  position: absolute;
  top: -135px;
  right: 0;
}

.testimonials-three__carousel.owl-carousel .owl-nav button.owl-next,
.testimonials-three__carousel.owl-carousel .owl-nav button.owl-prev {
  padding: 0 !important;
  font: inherit;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  border-radius: 10px;
  border: 1px solid rgba(var(--thm-gray-rgb), 0.5);
  color: rgba(var(--thm-gray-rgb), 0.5);
  font-size: 15px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonials-three__carousel.owl-carousel .owl-nav button.owl-next i::before,
.testimonials-three__carousel.owl-carousel .owl-nav button.owl-prev i::before {
  font-weight: 700;
}

.testimonials-three__carousel.owl-carousel .owl-nav button.owl-prev .left {
  position: relative;
  display: inline-block;
  transform: rotate(180deg);
}

.testimonials-three__carousel.owl-carousel .owl-nav button.owl-next:hover,
.testimonials-three__carousel.owl-carousel .owl-nav button.owl-prev:hover {
  border: 1px solid var(--thm-base);
  color: var(--thm-base);
  background: transparent;
}

.testimonials-three__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonials-three__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 500ms ease,
    visibility 500ms ease;
}

.testimonials-three__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/***
=============================================
    Blog Three
=============================================
***/
.blog-one-sec.style3 {
  position: relative;
  display: block;
}

.blog-one-sec.style3 .blog-one__single-content .date-box {
  position: absolute;
  top: -32px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 60px;
  height: 65px;
  background: var(--thm-base);
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

/***
=============================================
Faq One
=============================================
***/
.faq-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.faq-one__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.faq-one__img img {
  width: 100%;
}

.faq-one__accordion {
  position: relative;
  display: block;
}

.faq-one__accordion .sec-title {
  padding-bottom: 26px;
}

.accordion-box {
  position: relative;
  display: block;
}

.accordion-box .block {
  position: relative;
  display: block;
  margin-bottom: 15px;
  transition: all 500ms ease;
}

.accordion-box .block.mb20 {
  margin-bottom: 0px;
}

.accordion-box .block:last-child {
  margin-bottom: 0px;
}

.accordion-box .block .acc-btn {
  position: relative;
  display: block;
  cursor: pointer;
  transition: all 500ms ease;
  background: #f2f3f5;
  border-radius: 0px;
  padding-top: 23px;
  padding-left: 40px;
  padding-bottom: 22px;
  padding-right: 40px;
}

.accordion-box .block .acc-btn.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding-bottom: 22px;
}

.accordion-box .block .acc-btn h3 {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn .icon-outer {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 20px;
  height: 20px;
  color: var(--thm-black);
  font-size: 15px;
  text-align: right;
  line-height: 20px;
  font-weight: 700;
  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-black);
  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 {
  position: relative;
  font-size: 20px;
  font-family: "icomoon" !important;
  font-weight: 700;
  margin: 0px;
  content: "\e915";
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding-top: 0px;
  padding-left: 40px;
  padding-bottom: 39px;
  padding-right: 40px;
  background-color: #f2f3f5;
}

.accordion-box .block .acc-content .inner {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 22px 30px 22px;
}

.accordion-box .block .acc-content.current {
  display: block;
}

.accordion-box .block .acc-content p {
  margin: 0;
  color: var(--thm-black);
}

/***
=============================================
Cta One
=============================================
***/
.cta-one {
  position: relative;
  display: block;
  padding: 110px 0px 120px;
  z-index: 1;
}

.cta-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

.cta-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(var(--thm-black-rgb), 0.8);
  content: "";
  z-index: -2;
}

.cta-one__inner {
  position: relative;
  display: block;
}

.cta-one__inner h2 {
  color: #ffffff;
  font-size: 45px;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 29px;
}

.cta-one__list {
  position: relative;
  display: block;
}

.cta-one__list li {
  position: relative;
  display: inline-block;
  margin-right: 30px;
  padding-left: 30px;
}

.cta-one__list li:last-child {
  margin-right: 0;
}

.cta-one__list li p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.cta-one__list li::before {
  position: absolute;
  top: 5px;
  left: 0px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  content: "";
}

.cta-one__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.cta-one__btn-box .btn-box1 {
  position: relative;
  display: block;
  margin-right: 15px;
}

.cta-one__btn-box .btn-box1 .thm-btn {
  padding: 18px 40px 17px;
}

.cta-one__btn-box .btn-box2 {
  position: relative;
  display: block;
}

.cta-one__btn-box .btn-box2 .thm-btn {
  padding: 18px 40px 17px;
}

/*** 
==================================================================
    Update 12-2-2022
==================================================================
***/

/*** 
=============================================
    Blog List Page
=============================================
***/
.blog-list-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
}

.blog-list__left {
  position: relative;
  display: block;
}

.blog-list__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-list__single .row {
  margin-left: 0px;
  margin-right: 0px;
}

.blog-list__single .row [class*="col-"] {
  padding-left: 0px;
  padding-right: 0px;
}

.blog-list__single-img {
  position: relative;
  display: block;
  background: var(--thm-black);
  overflow: hidden;
}

.blog-list__single-img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0.1s opacity 0.2s ease-in;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.blog-list__single:hover .blog-list__single-img img {
  opacity: 0.7;
  transform: scale(1.1) rotate(1deg);
}

.blog-list__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 7px 0px rgb(0, 0, 0, 0.07);
  padding: 36px 30px 33px;
}

.blog-list__single-content .meta-info {
  position: relative;
  display: block;
  overflow: hidden;
  padding-bottom: 6px;
}

.blog-list__single-content .meta-info li {
  position: relative;
  display: inline-block;
  float: left;
  line-height: 24px;
  margin-right: 20px;
}

.blog-list__single-content .meta-info li:last-child {
  margin-right: 0px;
}

.blog-list__single-content .meta-info li span:before {
  position: relative;
  display: inline-block;
  padding-right: 6px;
  font-size: 20px;
  top: 3px;
  left: 1px;
}

.blog-list__single-content .meta-info li a {
  color: #84827c;
  font-size: 14px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list__single-content h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 9px;
}

.blog-list__single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list__single-content h2 a:hover {
  color: var(--thm-base);
}

.blog-list__single-content p {
  margin: 0;
}

.blog-list__single-content .btn-box {
  position: relative;
  display: block;
  margin-top: 20px;
}

.blog-list__single-content .btn-box a {
  color: var(--thm-gray);
  font-size: 17px;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0.015em;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list__single-content .btn-box a:hover {
  color: var(--thm-base);
}

.blog-list__single-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 14px;
  line-height: 14px;
  top: 1px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list__single-content .btn-box a:hover span::before {
  color: var(--thm-base);
}

.sidebar__blog-list {
  position: relative;
  display: block;
  padding-left: 0;
}

.blog-list__pagination {
  position: relative;
  display: block;
  padding-top: 10px;
}

.blog-list__pagination .styled-pagination li a {
  color: #ffffff;
  background: var(--thm-black);
}

.blog-list__pagination .styled-pagination li a:hover {
  background: var(--thm-base);
}

.blog-list__pagination .styled-pagination li a span::before {
  color: #ffffff;
}

/***
=============================================
    Blog Standard
=============================================
***/
.blog-standard {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
}

.blog-standard__left {
  position: relative;
  display: block;
}

.blog-standard__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-standard__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.blog-standard__single-img:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.blog-standard__single:hover .blog-standard__single-img:before {
  opacity: 1;
}

.blog-standard__single-img img {
  width: 100%;
  transition: 0.5s ease;
  transform: scale(1.05);
}

.blog-standard__single:hover .blog-standard__single-img img {
  transform: scale(1);
}

.blog-standard__date {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background-color: #ffffff;
  text-align: center;
  padding: 15px 20px;
  z-index: 1;
}

.blog-standard__date::before {
  content: "";
  position: absolute;
  top: 0px;
  right: -15px;
  z-index: -1;
  border-bottom: 20px solid rgba(255, 255, 255, 0.9);
  border-right: 15px solid transparent;
}

.blog-standard__date p {
  font-size: 15px;
  color: var(--thm-black);
  margin: 0;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.blog-standard__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 25px 0px 31px;
}

.blog-standard__single-content .meta-info {
  position: relative;
  display: block;
  overflow: hidden;
  padding-bottom: 6px;
}

.blog-standard__single-content .meta-info li {
  position: relative;
  display: inline-block;
  float: left;
  line-height: 24px;
  margin-right: 20px;
}

.blog-standard__single-content .meta-info li:last-child {
  margin-right: 0px;
}

.blog-standard__single-content .meta-info li span:before {
  position: relative;
  display: inline-block;
  padding-right: 6px;
  font-size: 18px;
  top: 2px;
  left: 1px;
}

.blog-standard__single-content .meta-info li a {
  color: #84827c;
  font-size: 14px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-standard__single-content h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-standard__single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-standard__single-content h2 a:hover {
  color: var(--thm-base);
}

.blog-standard__single-content p {
  margin: 0;
}

.blog-standard__single-content .btn-box {
  position: relative;
  display: block;
  margin-top: 29px;
}

.blog-standard__single-content .btn-box a {
  position: relative;
  color: #ffffff;
  font-size: 17px;
  line-height: 29px;
  font-weight: 500;
  background: var(--thm-black);
  padding: 10px 20px 10px;
  border-radius: var(--thm-bdr-radius);
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-standard__single-content .btn-box a:hover {
  background: var(--thm-base);
}

.blog-standard__single-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  padding-left: 2px;
  top: 1px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-standard__video-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 5;
}

.blog-standard__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 23px;
  color: var(--thm-base);
  background-color: #ffffff;
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.blog-standard__video-icon:hover {
  background-color: var(--thm-base);
  color: #ffffff;
}

.blog-standard__video-icon:before {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  content: "";
  border-radius: 50%;
  border: 1px solid #ffffff;
  opacity: 0.7;
  z-index: 1;
}

.blog-standard__video-link .ripple,
.blog-standard__video-icon .ripple:before,
.blog-standard__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.blog-standard__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.blog-standard__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.blog-standard__left .styled-pagination {
  position: relative;
  display: block;
  margin-top: 2px;
}

.blog-standard__left .styled-pagination li a {
  color: #ffffff;
  background: var(--thm-black);
}

.blog-standard__left .styled-pagination li a:hover {
  background: var(--thm-base);
}

.blog-standard__left .styled-pagination li a span::before {
  color: #ffffff;
}

.sidebar__blog-standard {
  position: relative;
  display: block;
  padding-left: 0;
}

/***
=============================================
    Blog Grid
=============================================
***/
.blog-one-sec--two--blog.grid {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
}

.blog-one-sec--two.grid .blog-one__single-content {
  margin-top: -30px;
  margin-left: 20px;
  margin-right: 20px;
  z-index: 5;
}

.blog-one-sec--two.grid .blog-one__single-content .inner-content h2 {
  font-size: 20px;
  line-height: 30px;
}

.blog-grid__content-bg {
  position: absolute;
  top: -10px;
  left: 10px;
  right: 10px;
  height: 10px;
  background-color: #ffffff;
  opacity: 0.8;
}

.blog-one-sec--two.grid .blog-one__single-content .inner-content {
  padding: 23px 20px 20px;
}

.blog-grid__pagination {
  position: relative;
  display: block;
}

/***
=====================================================
    Error Page
=====================================================
***/
.error-page {
  position: relative;
  display: block;
  padding: 84px 0px 120px;
  background: #ffffff;
}

.error-page__wrapper {
  position: relative;
  display: block;
}

.error-page__content {
  position: relative;
  display: block;
  margin-top: 20px;
}

.error-page__content h2 {
  color: transparent;
  -webkit-text-stroke: 4px var(--thm-black);
  font-size: 200px;
  line-height: 0.9em;
  font-weight: 700;
  margin-bottom: 15px;
}

.error-page__content h3 {
  font-size: 60px;
  line-height: 1.1em;
  font-weight: 600;
  margin-bottom: 25px;
}

.error-page__content p {
  font-weight: 500;
  margin: 0px;
}

.error-page__content .btn-box {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 41px;
}

/***
=============================================
Team Details Top
=============================================
***/
.team-details-top {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 0px;
  z-index: 1;
}

.team-details-top__client-info {
  position: relative;
  display: block;
  background: #f1f3f8;
  padding: 35px 25px 35px;
}

.team-details-top__client-info .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.team-details-top__client-info .img-box img {
  width: 100%;
}

.team-details-top__client-info .content-box {
  position: relative;
  display: block;
  margin-top: 31px;
}

.team-details-top__client-info .content-box h2 {
  color: var(--thm-black);
  font-size: 27px;
  line-height: 37px;
  font-weight: 700;
}

.team-details-top__client-info .content-box span {
  color: var(--thm-black);
}

.team-details-top__client-info .content-box p {
  margin-top: 19px;
}

.team-details-top__client-info .content-box ul {
  position: relative;
  display: block;
  margin-top: 29px;
}

.team-details-top__client-info .content-box ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.team-details-top__client-info .content-box ul li:last-child {
  margin-right: 0;
}

.team-details-top__client-info .content-box ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-details-top__client-info .content-box ul li a:hover {
  background: var(--thm-base);
}

.team-details-top__client-info .content-box ul li a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-details-top__client-info .content-box ul li a:hover span::before {
  color: #ffffff;
}

.team-details-top__content {
  position: relative;
  display: block;
  margin-top: -12px;
}

.team-details-top__content .title-box {
  position: relative;
  display: block;
  margin-bottom: 31px;
}

.team-details-top__content .title-box h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  text-transform: capitalize;
}

.team-details-top__content .text-box {
  position: relative;
  display: block;
}

.team-details-top__content .text-box p {
  margin: 0;
}

.team-details-top__content-info {
  position: relative;
  display: block;
  margin-top: 24px;
}

.team-details-top__content-info-single {
  position: relative;
  display: block;
}

.team-details-top__content-info-single ul {
  position: relative;
  display: block;
}

.team-details-top__content-info-single ul li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.team-details-top__content-info-single ul li:last-child {
  margin-bottom: 0px;
}

.team-details-top__content-info-single ul li .title {
  position: relative;
  display: block;
  width: 95px;
}

.team-details-top__content-info-single ul li .title h5 {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  text-transform: capitalize;
}

.team-details-top__content-info-single ul li .text {
  position: relative;
  display: block;
}

.team-details-top__content-info-single ul li .text p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.team-details-top__content-info-single ul li .text p a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-details-top__content-info-single ul li .text p a:hover {
  color: var(--thm-base);
}

.team-details-top__content-btn {
  position: relative;
  display: block;
  margin-top: 44px;
}

/***
=============================================
Testimonials Three Testimonials
=============================================
***/
.testimonials-three--testimonials {
  position: relative;
  display: block;
  background: #ffffff;
  /* padding: 120px 0px 90px; */
}

.testimonials-three--testimonials .testimonials-three__single {
  margin-bottom: 30px;
}

/***
=============================================
Faq One Faq
=============================================
***/
.faq-one--faq {
  position: relative;
  display: block;
}

.faq-one--faq .faq-one__accordion {
  position: relative;
  display: block;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

/***
=============================================
    Tiny Scrollbar
=============================================
***/
#scrollbar1 {
  width: 270px;
  margin: 0;
}

#scrollbar1 .viewport {
  position: relative;
  width: 270px;
  height: 530px;
  overflow: hidden;
}

#scrollbar1 .overview {
  list-style: none;
  position: absolute;
  left: 15px;
  top: 0;
  padding: 0;
  margin: 0;
  max-width: 500px;
  width: 100%;
  height: 100%;
}

#scrollbar1 .scrollbar {
  position: absolute;
  top: 0;
  right: 0px;
  background: #e7e7e7;
  width: 4px;
}

#scrollbar1 .track {
  background: transparent;
  height: 100%;
  width: 4px;
  position: relative;
  padding: 0;
}

#scrollbar1 .thumb {
  background: #fa401b;
  background-image: none;
  height: 20px;
  width: 4px;
  cursor: pointer;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0px;
  opacity: 1;
  z-index: 3;
}

#scrollbar1 .thumb .end {
  background: #353742 no-repeat 50% 0;
  overflow: hidden;
  height: 0px;
  width: 4px;
}

#scrollbar1 .disable {
  display: none;
}

.project-three-more-project-btn {
  position: relative;
  display: block;
  padding-top: 50px;
}

/* my changes */

.sidebar-logo {
  width: 170px;
  height: 145px;
}

.middle-top-bar-logo {
  height: 100px;
  width: 100px;
}

/* =========================================
   FIX STICKY LOGO OVERSIZED / COVERING SCREEN
========================================= */

.main-header-three__middle-inner .logo-box img {
  width: auto !important;
  max-width: 190px !important;
  height: auto !important;
  max-height: 70px !important;
  object-fit: contain !important;
}

/* Prevent sticky logo from becoming huge */

.stricky-header .logo-box img,
.sticky-header .logo-box img,
.stricky-header img,
.sticky-header img {
  width: auto !important;
  max-width: 190px !important;
  height: auto !important;
  max-height: 30px !important;
  object-fit: contain !important;
}

/* =========================================
   CREST MOVING TOP BAR - MOBILE FIX
========================================= */

@media only screen and (max-width: 767px) {
  .main-header-three__top {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 100% !important;
    height: auto !important;

    padding: 8px 0 !important;

    background: #0f2040 !important;

    overflow: hidden !important;

    position: relative !important;
    z-index: 999 !important;
  }

  .main-header-three__top-inner {
    display: block !important;

    width: 100% !important;
    height: auto !important;

    overflow: hidden !important;
  }

  .crest-marquee {
    display: block !important;

    width: 100% !important;

    overflow: hidden !important;

    white-space: nowrap !important;
  }

  .crest-marquee__track {
    display: inline-flex !important;

    align-items: center !important;

    width: max-content !important;

    white-space: nowrap !important;

    animation: crestMarquee 25s linear infinite !important;
  }

  .crest-marquee__track span {
    display: inline-flex !important;

    align-items: center !important;

    flex-shrink: 0 !important;

    color: #ffffff !important;

    font-size: 12px !important;

    line-height: 20px !important;

    margin-right: 35px !important;
  }

  .crest-marquee__track span::after {
    display: block !important;

    content: "" !important;

    width: 4px !important;
    height: 4px !important;

    flex-shrink: 0 !important;

    margin-left: 35px !important;

    background: #d4a72c !important;

    border-radius: 50% !important;
  }
}

/* =========================================
   VERY SMALL MOBILE
========================================= */

@media only screen and (max-width: 400px) {
  .main-header-three__top {
    padding: 7px 0 !important;
  }

  .crest-marquee__track {
    animation-duration: 22s !important;
  }

  .crest-marquee__track span {
    font-size: 11px !important;
    line-height: 18px !important;

    margin-right: 28px !important;
  }

  .crest-marquee__track span::after {
    width: 3px !important;
    height: 3px !important;

    margin-left: 28px !important;
  }
}

@media only screen and (max-width: 1000px) {
  .main-menu .mobile-nav__toggler {
    position: absolute !important;

    top: 50% !important;

    right: 20px !important;

    transform: translateY(-50%) !important;

    margin: 0 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    color: #d4a72c !important;

    z-index: 999 !important;
  }
}

/* =========================================================
   SERVICES SECTION
========================================================= */

#services {
  position: relative;
  background: #f7f9fc;
  padding: 85px 0 90px;
  overflow: hidden;
}

/* Subtle background decoration */
#services::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -250px;
  top: 120px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.035);
  pointer-events: none;
}

#services::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -220px;
  bottom: 80px;
  border-radius: 50%;
  background: rgba(11, 31, 58, 0.025);
  pointer-events: none;
}

/* =========================================================
   SECTION HEADER
========================================================= */

#services .container {
  position: relative;
  z-index: 2;
}

#services .eyebrow {
  position: relative;
  display: block;

  color: #c9a227;

  font-size: 12px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 2.8px;

  text-align: center;

  margin: 0 0 10px;
}

#services .eyebrow::after {
  content: "";
  display: inline-block;

  width: 32px;
  height: 2px;

  margin-left: 10px;

  vertical-align: middle;

  background: #c9a227;
}

#services h2 {
  position: relative;

  color: #0b1f3a;

  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;

  text-align: center;

  margin: 0 0 14px;
}

#services .section-lede {
  max-width: 680px;

  margin: 0 auto 48px;

  text-align: center;

  color: #687385;

  font-size: 15px;
  line-height: 1.75;
}

/* =========================================================
   SERVICES GRID
========================================================= */

#services .services-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 26px;

  max-width: 1160px;

  margin: 0 auto;
}

/* =========================================================
   SERVICE CARD
========================================================= */

#services .service-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-width: 0;
  min-height: 100%;

  background: #ffffff;

  border: 1px solid #e5e9ef;
  border-radius: 12px;

  overflow: hidden;

  padding: 10px 0 12px;

  box-shadow:
    0 6px 18px rgba(11, 31, 58, 0.055),
    0 1px 2px rgba(11, 31, 58, 0.03);

  transform: translateY(0);

  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;

  animation: serviceCardIn 0.7s ease both;
}

/* =========================================================
   GOLD TOP LINE
========================================================= */

#services .service-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 0;
  height: 3px;

  background: #c9a227;

  z-index: 20;

  transition: width 0.45s ease;
}

/* =========================================================
   CORNER ACCENT
========================================================= */

#services .service-card::after {
  content: "";

  position: absolute;

  right: -45px;
  bottom: -45px;

  width: 90px;
  height: 90px;

  background: #c9a227;

  opacity: 0;

  transform: rotate(45deg) scale(0.8);

  transition:
    opacity 0.4s ease,
    transform 0.5s ease;

  pointer-events: none;
}

/* =========================================================
   CARD HOVER
========================================================= */

#services .service-card:hover {
  transform: translateY(-9px);

  border-color: rgba(201, 162, 39, 0.65);

  box-shadow:
    0 18px 40px rgba(11, 31, 58, 0.12),
    0 4px 12px rgba(11, 31, 58, 0.05);
}

#services .service-card:hover::before {
  width: 100%;
}

#services .service-card:hover::after {
  opacity: 0.12;

  transform: rotate(45deg) scale(1.15);
}

/* =========================================================
   SERVICE IMAGE
========================================================= */

#services .service-media {
  position: relative;

  width: calc(100% - 20px);
  height: 180px;

  margin: 0 auto 10px;

  overflow: hidden;

  border-radius: 8px;

  background: #e9edf2;
}

/* Image */
#services .service-media img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1);

  transition:
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.45s ease;
}

/* =========================================================
   IMAGE OVERLAY
========================================================= */

#services .service-media::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(11, 31, 58, 0.03),
    rgba(11, 31, 58, 0.45)
  );

  opacity: 0.7;

  transition: opacity 0.45s ease;

  pointer-events: none;
}

/* Small image corner line */
#services .service-media::before {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 42px;
  height: 3px;

  background: #c9a227;

  z-index: 5;

  transition: width 0.4s ease;
}

/* Image hover */
#services .service-card:hover .service-media img {
  transform: scale(1.09);

  filter: brightness(1.06);
}

#services .service-card:hover .service-media::after {
  opacity: 0.32;
}

#services .service-card:hover .service-media::before {
  width: 75px;
}

/* =========================================================
   SERVICE CONTENT
========================================================= */

#services .service-card h3 {
  color: #0b1f3a;

  font-size: 19px;
  line-height: 1.35;

  font-weight: 750;

  padding: 0 20px;

  margin: 0 0 10px;

  min-height: 51px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

#services .service-card:hover h3 {
  color: #b28b17;

  transform: translateX(2px);
}

#services .service-card p {
  color: #687385;

  font-size: 13px;
  line-height: 1.7;

  padding: 0 20px;

  margin: 0 0 15px;

  flex: 1;
}

/* =========================================================
   VIEW DETAILS BUTTON
========================================================= */

#services .service-card a,
#services .service-card .view-details {
  position: relative;

  align-self: flex-start;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  margin-left: 20px;

  padding: 9px 16px;

  background: #0b1f3a;

  color: #ffffff;

  border: 1px solid #0b1f3a;

  border-radius: 4px;

  font-size: 10.5px;

  line-height: 1;

  font-weight: 750;

  text-decoration: none;

  text-transform: uppercase;

  letter-spacing: 0.8px;

  overflow: hidden;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Button shine */
#services .service-card a::before,
#services .service-card .view-details::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 80%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );

  transform: skewX(-20deg);

  transition: left 0.55s ease;
}

/* Arrow */
#services .service-card a::after,
#services .service-card .view-details::after {
  content: "→";

  position: relative;

  margin-left: 8px;

  font-size: 14px;

  line-height: 1;

  transition: transform 0.3s ease;
}

/* Button hover */
#services .service-card a:hover,
#services .service-card .view-details:hover {
  background: #c9a227;

  color: #0b1f3a;

  border-color: #c9a227;

  transform: translateX(4px);

  box-shadow: 0 7px 18px rgba(201, 162, 39, 0.25);
}

#services .service-card a:hover::before,
#services .service-card .view-details:hover::before {
  left: 130%;
}

#services .service-card a:hover::after,
#services .service-card .view-details:hover::after {
  transform: translateX(4px);
}

.services-three__single .btn-box a {
}
/* =========================================================
   CARD ENTRANCE ANIMATION
========================================================= */

@keyframes serviceCardIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   STAGGERED ANIMATION
========================================================= */

#services .service-card:nth-child(1) {
  animation-delay: 0.05s;
}

#services .service-card:nth-child(2) {
  animation-delay: 0.1s;
}

#services .service-card:nth-child(3) {
  animation-delay: 0.15s;
}

#services .service-card:nth-child(4) {
  animation-delay: 0.2s;
}

#services .service-card:nth-child(5) {
  animation-delay: 0.25s;
}

#services .service-card:nth-child(6) {
  animation-delay: 0.3s;
}

#services .service-card:nth-child(7) {
  animation-delay: 0.35s;
}

#services .service-card:nth-child(8) {
  animation-delay: 0.4s;
}

#services .service-card:nth-child(9) {
  animation-delay: 0.45s;
}

/* =========================================================
   LARGE DESKTOP
   1200px+
========================================================= */

@media (min-width: 1200px) {
  #services .services-grid {
    max-width: 1160px;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 25px;
  }

  #services .service-media {
    height: 178px;
  }
}

/* =========================================================
   EXTRA LARGE DESKTOP
   1400px+
   4 CARDS PER ROW
========================================================= */

@media (min-width: 1400px) {
  #services .services-grid {
    max-width: 1320px;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 22px;
  }

  #services .service-media {
    height: 175px;
  }

  #services .service-card h3 {
    font-size: 18px;
  }
}

/* =========================================================
   LARGE TABLET
   992px - 1199px
========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {
  #services {
    padding: 75px 25px 80px;
  }

  #services .services-grid {
    max-width: 1000px;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;
  }

  #services .service-media {
    height: 165px;
  }

  #services .service-card h3 {
    font-size: 18px;

    min-height: 49px;
  }

  #services .service-card p {
    font-size: 12.5px;
  }
}

/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {
  #services {
    padding: 70px 25px 75px;
  }

  #services h2 {
    font-size: 35px;
  }

  #services .section-lede {
    margin-bottom: 40px;
  }

  #services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px;

    max-width: 760px;
  }

  #services .service-media {
    height: 185px;
  }

  #services .service-card h3 {
    font-size: 19px;
  }

  #services .service-card p {
    font-size: 13px;
  }
}

/* =========================================================
   MOBILE
   481px - 767px
========================================================= */

@media (max-width: 767px) {
  #services {
    padding: 60px 15px 65px;
  }

  #services h2 {
    font-size: 31px;
  }

  #services .section-lede {
    max-width: 560px;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 34px;
  }

  #services .services-grid {
    grid-template-columns: 1fr;

    gap: 22px;

    max-width: 500px;
  }

  #services .service-card {
    border-radius: 11px;
  }

  #services .service-media {
    height: 205px;

    width: calc(100% - 18px);
  }

  #services .service-card h3 {
    font-size: 20px;

    min-height: auto;

    margin-bottom: 9px;
  }

  #services .service-card p {
    font-size: 13.5px;

    line-height: 1.7;

    margin-bottom: 20px;
  }

  #services .service-card a,
  #services .service-card .view-details {
    padding: 10px 17px;

    font-size: 10.5px;
  }
}

/* =========================================================
   SMALL MOBILE
   480px and below
========================================================= */

@media (max-width: 480px) {
  #services {
    padding: 50px 12px 55px;
  }

  #services .eyebrow {
    font-size: 11px;

    letter-spacing: 2.2px;
  }

  #services h2 {
    font-size: 28px;

    margin-bottom: 12px;
  }

  #services .section-lede {
    font-size: 13.5px;

    margin-bottom: 30px;
  }

  #services .services-grid {
    gap: 19px;
  }

  #services .service-card {
    padding-bottom: 20px;
  }

  #services .service-media {
    width: calc(100% - 14px);

    height: 190px;

    margin-top: -2px;

    margin-bottom: 18px;

    border-radius: 7px;
  }

  #services .service-card h3 {
    font-size: 18px;

    padding: 0 18px;

    line-height: 1.35;
  }

  #services .service-card p {
    font-size: 13px;

    padding: 0 18px;

    line-height: 1.65;
  }

  #services .service-card a,
  #services .service-card .view-details {
    margin-left: 18px;

    padding: 9px 15px;
  }
}

/* =========================================================
   VERY SMALL DEVICES
   360px and below
========================================================= */

@media (max-width: 360px) {
  #services {
    padding-left: 10px;
    padding-right: 10px;
  }

  #services h2 {
    font-size: 26px;
  }

  #services .service-media {
    height: 175px;
  }

  #services .service-card h3 {
    font-size: 17px;
  }

  #services .service-card p {
    font-size: 12.5px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  #services .service-card,
  #services .service-card img,
  #services .service-card::before,
  #services .service-card::after,
  #services .service-card a,
  #services .service-card a::before,
  #services .service-card a::after {
    animation: none !important;

    transition: none !important;
  }
}

/* =========================================
   Our Expertise
========================================= */

/* =========================================
   OUR EXPERTISE SECTION
========================================= */

.expertise-item {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 15px 10px;
}

.expertise-item i {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 10px;
}

.expertise-item h5 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1200px) {
  .expertise-item {
    min-height: 20px;
    padding: 10px 25px;
  }

  .expertise-item i {
    font-size: 80px;
    margin-bottom: 12px;
    color: #001659;
  }

  .expertise-item h5 {
    font-size: 18px;
    color: black;
  }
}

/* =========================================
   LAPTOP / SMALL DESKTOP
========================================= */

@media (max-width: 1199px) {
  .expertise-item {
    min-height: 70px;
    padding: 10px 25px;
  }

  .expertise-item i {
    font-size: 80px;
    margin-bottom: 12px;
    color: #001659;
  }

  .expertise-item h5 {
    font-size: 18px;
    color: black;
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .brand-one-sec {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 60px 0px 60px;
    z-index: 1;
  }
  .expertise-item {
    min-height: 90px;
    padding: 12px 5px;
  }

  .expertise-item i {
    font-size: 27px;
    margin-bottom: 9px;
  }

  .expertise-item h5 {
    font-size: 13px;
    line-height: 1.35;
  }
}

/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 767px) {
  .expertise-item {
    min-height: 85px;
    padding: 10px 5px;
  }

  .expertise-item i {
    font-size: 50px;
    margin-bottom: 8px;
  }

  .expertise-item h5 {
    font-size: 18px;
    line-height: 1.3;
  }
  .container {
    padding-left: 5px;
    padding-right: 5px;
    max-width: 600px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {
  .expertise-item {
    min-height: 80px;
    padding: 10px;
  }

  .expertise-item i {
    font-size: 50px;
    margin-bottom: 8px;
  }

  .expertise-item h5 {
    font-size: 14px;
    line-height: 1.3;
  }
  .brand-one-sec {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 50px 0px 50px;
    z-index: 1;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 375px) {
  .expertise-item {
    min-height: 75px;
    padding: 8px 5px;
  }

  .expertise-item i {
    /* font-size: 22px; */
    margin-bottom: 7px;
  }

  .expertise-item h5 {
    font-size: 11px;
  }
}

.brand-one-sec .swiper-slide {
  display: flex;
  justify-content: center;
}

.brand-one-sec .expertise-item {
  width: 100%;
  text-align: center;
}

.humburger {
  display: flex;
  margin-top: 100%;
  top: -50%;
}

/* =========================================================
   CERTIFICATIONS SECTION
   ========================================================= */

.certifications-section {
  overflow: hidden;
}

.certifications-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.certifications-intro {
  max-width: 600px;
}

.certifications-intro h2 {
  margin-bottom: 20px;
}

.certifications-intro .section-lede {
  max-width: 560px;
}

/* View Certificates Button */

.cert-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 13px 20px;

  border: 1px solid rgba(16, 30, 54, 0.18);
  background: transparent;
  color: var(--navy, #102038);

  font-family: inherit;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;
  transition: all 0.25s ease;
}

.cert-view-btn i {
  transition: transform 0.25s ease;
}

.cert-view-btn:hover {
  background: var(--navy, #102038);
  color: #fff;
  border-color: var(--navy, #102038);
}

.cert-view-btn:hover i {
  transform: translateX(5px);
}

/* =========================================================
   CERTIFICATE STACK
   ========================================================= */

.certificate-stack-wrapper {
  position: relative;
  min-height: 470px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.certificate-stack {
  position: relative;

  width: min(440px, 100%);
  height: 350px;

  cursor: pointer;

  transition: transform 0.35s ease;
}

.certificate-stack:hover {
  transform: translateY(-8px);
}

/* Individual certificate */

.certificate-card {
  position: absolute;

  width: 330px;
  height: 245px;

  left: 50%;
  top: 50%;

  transform-origin: center center;
  transform: translate(-50%, -50%);

  background: #fff;

  border: 7px solid #fff;

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.08);

  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.certificate-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

/* Back */

.certificate-card-back {
  z-index: 1;

  transform: translate(-50%, -50%) rotate(-8deg) translate(-20px, 14px);
}

/* Middle */

.certificate-card-middle {
  z-index: 2;

  transform: translate(-50%, -50%) rotate(6deg) translate(18px, 10px);
}

/* Second */

.certificate-card-second {
  z-index: 3;

  transform: translate(-50%, -50%) rotate(-3deg) translate(-8px, 4px);
}

/* Top */

.certificate-card-top {
  z-index: 4;

  transform: translate(-50%, -50%) rotate(1deg);
}

/* Hover stack */

.certificate-stack:hover .certificate-card-back {
  transform: translate(-50%, -50%) rotate(-11deg) translate(-30px, 20px);
}

.certificate-stack:hover .certificate-card-middle {
  transform: translate(-50%, -50%) rotate(8deg) translate(28px, 14px);
}

.certificate-stack:hover .certificate-card-second {
  transform: translate(-50%, -50%) rotate(-4deg) translate(-14px, 6px);
}

.certificate-stack:hover .certificate-card-top {
  transform: translate(-50%, -50%) rotate(0deg) translateY(-8px);
}

/* Certificate count badge */

.certificate-stack-label {
  position: absolute;

  right: 12px;
  bottom: 12px;

  display: flex;
  align-items: center;
  gap: 7px;

  padding: 7px 11px;

  background: rgba(10, 20, 35, 0.88);
  color: #fff;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.04em;

  border-radius: 4px;
}

.certificate-stack-label i {
  font-size: 12px;
}

/* Hint */

.certificate-hint {
  margin-top: 5px;

  display: flex;
  align-items: center;
  gap: 7px;

  font-size: 12px;
  color: #777;

  letter-spacing: 0.02em;
}

.certificate-hint i {
  font-size: 11px;
}

/* =========================================================
   CERTIFICATE MODAL
   ========================================================= */

.certificate-modal {
  position: fixed;

  inset: 0;

  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  visibility: hidden;
  opacity: 0;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.certificate-modal.is-open {
  visibility: visible;
  opacity: 1;
}

/* Dark background */

.certificate-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(5, 12, 23, 0.88);

  backdrop-filter: blur(7px);
}

/* Modal */

.certificate-modal-content {
  position: relative;

  z-index: 2;

  width: min(1000px, 94vw);

  max-height: 94vh;

  display: flex;
  flex-direction: column;
  align-items: center;

  transform: translateY(25px) scale(0.96);

  transition: transform 0.35s ease;
}

.certificate-modal.is-open .certificate-modal-content {
  transform: translateY(0) scale(1);
}

/* Certificate viewer */

.certificate-viewer {
  width: min(850px, 82vw);
  height: min(68vh, 620px);

  display: flex;
  align-items: center;
  justify-content: center;

  background: #111;

  border: 8px solid #fff;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);

  overflow: hidden;
}

.certificate-viewer img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;

  background: #fff;
}

/* =========================================================
   MODAL CONTROLS
   ========================================================= */

.certificate-close {
  position: absolute;

  top: -18px;
  right: -18px;

  z-index: 10;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;

  background: #fff;
  color: #18283f;

  cursor: pointer;

  font-size: 16px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.certificate-close:hover {
  transform: rotate(90deg);
  background: #f1f1f1;
}

/* Previous / Next */

.certificate-nav {
  position: absolute;

  top: 50%;

  z-index: 10;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.96);
  color: #172941;

  cursor: pointer;

  font-size: 16px;

  transform: translateY(-50%);

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.certificate-nav:hover {
  background: #fff;
}

.certificate-prev {
  left: -70px;
}

.certificate-next {
  right: -70px;
}

/* =========================================================
   MODAL FOOTER
   ========================================================= */

.certificate-modal-footer {
  width: min(850px, 82vw);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 4px 0;

  color: #fff;
}

.certificate-counter {
  display: block;

  margin-bottom: 4px;

  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;

  opacity: 0.65;

  text-transform: uppercase;
}

.certificate-modal-footer h3 {
  margin: 0;

  font-size: 18px;
  color: #fff;
}

/* Dots */

.certificate-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.certificate-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.35);

  cursor: pointer;

  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.certificate-dot.active {
  width: 22px;

  border-radius: 10px;

  background: #fff;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .certifications-header {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .certifications-intro {
    max-width: 100%;
  }

  .certificate-stack-wrapper {
    min-height: 430px;
  }

  .certificate-prev {
    left: -25px;
  }

  .certificate-next {
    right: -25px;
  }
}

@media (max-width: 600px) {
  .certifications-header {
    gap: 30px;
  }

  .certificate-stack-wrapper {
    min-height: 350px;
  }

  .certificate-stack {
    height: 280px;
  }

  .certificate-card {
    width: 280px;
    height: 205px;
  }

  .certificate-card-back {
    transform: translate(-50%, -50%) rotate(-8deg) translate(-13px, 10px);
  }

  .certificate-card-middle {
    transform: translate(-50%, -50%) rotate(6deg) translate(12px, 7px);
  }

  .certificate-card-second {
    transform: translate(-50%, -50%) rotate(-3deg) translate(-5px, 3px);
  }

  .certificate-stack:hover .certificate-card-back {
    transform: translate(-50%, -50%) rotate(-9deg) translate(-18px, 12px);
  }

  .certificate-stack:hover .certificate-card-middle {
    transform: translate(-50%, -50%) rotate(7deg) translate(17px, 9px);
  }

  .certificate-stack:hover .certificate-card-second {
    transform: translate(-50%, -50%) rotate(-4deg) translate(-8px, 4px);
  }

  .certificate-stack:hover .certificate-card-top {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-5px);
  }

  .certificate-viewer {
    width: 88vw;
    height: 65vh;

    border-width: 5px;
  }

  .certificate-modal-footer {
    width: 88vw;
  }

  .certificate-nav {
    width: 40px;
    height: 40px;
  }

  .certificate-prev {
    left: 5px;
  }

  .certificate-next {
    right: 5px;
  }

  .certificate-close {
    top: -15px;
    right: -5px;

    width: 38px;
    height: 38px;
  }

  .certificate-modal-footer h3 {
    font-size: 15px;
  }

  .certificate-counter {
    font-size: 9px;
  }

  .certificate-dots {
    display: none;
  }
}

/* =========================================================
   CREST SOLUTIONS
   PREMIUM CONTACT SECTION
   BRAND COLORS:
   GOLD  : #c2850a
   NAVY  : #00235a
   DARK  : #001a57
   ========================================================= */

#contact {
  position: relative;
  overflow: hidden;

  background: #ffffff;

  color: var(--thm-black);

  isolation: isolate;
  margin: 2rem 0;
}

/* =========================================================
   SUBTLE BACKGROUND DESIGN
   ========================================================= */

#contact::before {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  right: -250px;
  top: -250px;

  border-radius: 50%;

  background: rgba(194, 133, 10, 0.035);

  border: 1px solid rgba(194, 133, 10, 0.08);

  z-index: -1;

  animation: contact-circle 12s ease-in-out infinite;
}

#contact::after {
  content: "";
  position: absolute;

  width: 350px;
  height: 350px;

  left: -200px;
  bottom: -200px;

  border-radius: 50%;

  background: rgba(0, 35, 90, 0.025);

  border: 1px solid rgba(0, 35, 90, 0.06);

  z-index: -1;
}

/* =========================================================
   GRID
   ========================================================= */

#contact .contact-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);

  gap: 75px;

  align-items: center;
}

/* =========================================================
   LEFT SIDE
   ========================================================= */

#contact .contact-info {
  position: relative;

  animation: contact-left 0.8s ease both;
}

/* Small vertical gold line */

#contact .contact-info::before {
  content: "";

  position: absolute;

  left: -25px;
  top: 4px;

  width: 3px;
  height: 70px;

  border-radius: 10px;

  background: linear-gradient(to bottom, #c2850a, rgba(194, 133, 10, 0));
}

/* =========================================================
   EYEBROW
   ========================================================= */

#contact .eyebrow-light {
  display: inline-flex;

  align-items: center;
  gap: 10px;

  color: #c2850a;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 2.2px;

  text-transform: uppercase;

  margin-bottom: 15px;
}

#contact .eyebrow-light::before {
  content: "";

  width: 30px;
  height: 2px;

  background: #c2850a;

  border-radius: 10px;
}

/* =========================================================
   HEADING
   ========================================================= */

#contact .h2-light {
  max-width: 600px;

  color: #00235a;

  font-size: clamp(38px, 4vw, 58px);

  line-height: 1.08;

  font-weight: 700;

  letter-spacing: -1.2px;

  margin-bottom: 20px;
}

/* Gold underline */

#contact .h2-light::after {
  content: "";

  display: block;

  width: 65px;
  height: 4px;

  margin-top: 22px;

  background: #c2850a;

  border-radius: 20px;
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

#contact .contact-lede {
  max-width: 560px;

  color: #667085;

  font-size: 16px;

  line-height: 1.8;

  margin-bottom: 32px;
}

/* =========================================================
   CONTACT METHODS GRID
   ========================================================= */

#contact .contact-methods {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 15px;

  max-width: 700px;
}

/* =========================================================
   CONTACT CARD
   ========================================================= */

#contact .contact-method {
  position: relative;

  display: flex;

  align-items: center;

  min-height: 82px;

  padding: 16px 17px;

  background: #ffffff;

  border: 1px solid #e8e9ec;

  border-radius: 10px;

  text-decoration: none;

  overflow: hidden;

  box-shadow: 0 5px 20px rgba(0, 26, 87, 0.045);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

/* Gold left border */

#contact .contact-method::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 3px;

  background: #c2850a;

  transform: scaleY(0);

  transform-origin: bottom;

  transition: transform 0.35s ease;
}

/* Hover */

#contact .contact-method:hover {
  transform: translateY(-5px);

  border-color: rgba(194, 133, 10, 0.45);

  background: #fffdf8;

  box-shadow: 0 15px 35px rgba(0, 26, 87, 0.1);
}

#contact .contact-method:hover::before {
  transform: scaleY(1);
}

/* =========================================================
   REAL ICON
   ========================================================= */

#contact .contact-icon {
  flex: 0 0 48px;

  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-right: 14px;

  border-radius: 50%;

  color: #c2850a;

  background: rgba(194, 133, 10, 0.1);

  border: 1px solid rgba(194, 133, 10, 0.18);

  font-size: 18px;

  transition:
    transform 0.35s ease,
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

/* Icon hover */

#contact .contact-method:hover .contact-icon {
  transform: scale(1.08) rotate(-4deg);

  color: #ffffff;

  background: #c2850a;

  border-color: #c2850a;
}

/* =========================================================
   WHATSAPP
   ========================================================= */

#contact .whatsapp-icon {
  color: #25d366;

  background: rgba(37, 211, 102, 0.09);

  border-color: rgba(37, 211, 102, 0.18);
}

#contact .contact-method:hover .whatsapp-icon {
  color: #ffffff;

  background: #25d366;

  border-color: #25d366;
}

/* =========================================================
   CONTACT TEXT
   ========================================================= */

#contact .contact-method-content {
  min-width: 0;
}

#contact .contact-method-content strong {
  display: block;

  color: #00235a;

  font-size: 14px;

  font-weight: 700;

  margin-bottom: 5px;
}

#contact .contact-method-content > span {
  display: block;

  color: #737b88;

  font-size: 13px;

  line-height: 1.5;

  word-break: break-word;
}

/* =========================================================
   FORM CONTAINER
   ========================================================= */

#contact .contact-form-wrap {
  position: relative;

  padding: 38px;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-top: 4px solid #c2850a;

  border-radius: 12px;

  box-shadow: 0 20px 60px rgba(0, 26, 87, 0.1);

  animation: contact-right 0.9s 0.15s ease both;
}

/* Navy decorative corner */

#contact .contact-form-wrap::after {
  content: "";

  position: absolute;

  right: 0;
  bottom: 0;

  width: 90px;
  height: 90px;

  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(0, 35, 90, 0.035) 50%
  );

  pointer-events: none;
}

/* =========================================================
   FORM
   ========================================================= */

#contact .contact-form {
  position: relative;
  z-index: 2;

  display: flex;

  flex-direction: column;

  gap: 19px;
}

/* =========================================================
   FORM ROW
   ========================================================= */

#contact .form-row {
  position: relative;

  display: flex;

  flex-direction: column;
}

/* Label */

#contact .form-row label {
  color: #00235a;

  font-size: 13px;

  font-weight: 700;

  margin-bottom: 8px;
}

/* =========================================================
   INPUTS
   ========================================================= */

#contact .form-row input,
#contact .form-row textarea {
  width: 100%;

  color: #1d2939;

  background: #ffffff;

  border: 1px solid #dfe3e8;

  border-radius: 7px;

  outline: none;

  padding: 14px 15px;

  font-family: inherit;

  font-size: 14px;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

/* Placeholder */

#contact .form-row input::placeholder,
#contact .form-row textarea::placeholder {
  color: #98a2b3;
}

/* Focus */

#contact .form-row input:focus,
#contact .form-row textarea:focus {
  border-color: #c2850a;

  background: #fffdf8;

  box-shadow: 0 0 0 3px rgba(194, 133, 10, 0.1);

  transform: translateY(-1px);
}

/* Textarea */

#contact .form-row textarea {
  min-height: 125px;

  resize: vertical;
}

/* =========================================================
   BUTTON
   ========================================================= */

#contact .btn-full {
  position: relative;

  width: 100%;

  min-height: 54px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-top: 3px;

  color: #ffffff;

  background: #00235a;

  border: 2px solid #00235a;

  border-radius: 7px;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.4px;

  cursor: pointer;

  overflow: hidden;

  box-shadow: 0 8px 20px rgba(0, 35, 90, 0.18);

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Gold shine */

#contact .btn-full::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 80%;
  height: 100%;

  background: rgba(255, 255, 255, 0.16);

  transform: skewX(-25deg);

  transition: left 0.65s ease;
}

#contact .btn-full:hover {
  color: #ffffff;

  background: #c2850a;

  border-color: #c2850a;

  transform: translateY(-3px);

  box-shadow: 0 12px 28px rgba(194, 133, 10, 0.25);
}

#contact .btn-full:hover::before {
  left: 140%;
}

/* =========================================================
   FORM NOTE
   ========================================================= */

#contact .form-note {
  min-height: 20px;

  margin: 0;

  color: #667085;

  text-align: center;

  font-size: 12px;
}

/* =========================================================
   ERROR
   ========================================================= */

#contact .form-error {
  color: #d92d20;

  font-size: 11px;

  margin-top: 5px;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes contact-left {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contact-right {
  from {
    opacity: 0;
    transform: translateX(35px) translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes contact-circle {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
  #contact .contact-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  #contact .contact-info {
    max-width: 850px;
  }

  #contact .contact-form-wrap {
    width: 100%;

    max-width: 850px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {
  #contact .contact-grid {
    gap: 40px;
  }

  #contact .contact-info {
    text-align: center;
  }

  #contact .contact-info::before {
    display: none;
  }

  #contact .eyebrow-light {
    justify-content: center;
  }

  #contact .h2-light {
    font-size: 36px;

    letter-spacing: -0.6px;
  }

  #contact .h2-light::after {
    margin-left: auto;
    margin-right: auto;
  }

  #contact .contact-lede {
    margin-left: auto;
    margin-right: auto;

    font-size: 14px;
  }

  #contact .contact-methods {
    grid-template-columns: 1fr;

    text-align: left;
  }

  #contact .contact-form-wrap {
    padding: 28px 20px;

    border-radius: 10px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 450px) {
  #contact .h2-light {
    font-size: 31px;
  }

  #contact .contact-method {
    min-height: 76px;

    padding: 13px;
  }

  #contact .contact-icon {
    flex-basis: 43px;

    width: 43px;
    height: 43px;

    margin-right: 12px;

    font-size: 16px;
  }

  #contact .contact-method-content > span {
    font-size: 12px;
  }

  #contact .contact-form-wrap {
    padding: 24px 16px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  #contact *,
  #contact::before,
  #contact::after {
    animation: none !important;

    transition: none !important;
  }
}

/* ============================================
   OUR EXPERTISE - CONTINUOUS MARQUEE
============================================ */

.expertise-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.expertise-marquee-wrapper.dragging {
  cursor: grabbing;
}

.expertise-marquee-wrapper .swiper-container {
  width: 100%;
  overflow: hidden;
}

.expertise-marquee-wrapper .swiper-wrapper {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  gap: 30px;
  margin: 0 !important;
  padding: 0 !important;

  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.expertise-marquee-wrapper .swiper-slide {
  flex: 0 0 auto !important;
  width: 220px !important;
  margin: 0 !important;
}

/* Keep your existing expertise-item design */
.expertise-marquee-wrapper .expertise-item {
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

/* Mobile */
@media (max-width: 767px) {
  .expertise-marquee-wrapper .swiper-wrapper {
    gap: 0px;
  }

  .expertise-marquee-wrapper .swiper-slide {
    width: 220px !important;
  }
}

@media (max-width: 767px) {
  .about-three {
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .mission-vision-one {
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .faq-one {
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .testimonials-three {
    padding: 120px 40px 220px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .work-perfomance-one-sec {
    padding: 120px 40px 220px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .certifications-section {
    padding: 120px 40px 220px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .certificate-modal {
    padding: 120px 40px 220px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  #contact {
    padding: 120px 40px 220px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

/* =========================================================
   RESPONSIVE UI
   Small Android → Tablet → Desktop
   Paste this CSS at the END of your main CSS file
========================================================= */

/* =========================
   SMALL DEVICES
   320px - 767px
========================= */
@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* About */
  .about-three {
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  /* Mission / Vision */
  .mission-vision-one {
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  /* FAQ */
  .faq-one {
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  /* Testimonials */
  .testimonials-three {
    padding: 120px 40px 220px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  /* Work Performance */
  .work-perfomance-one-sec {
    padding: 120px 40px 220px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  /* Certifications */
  .certifications-section {
    padding: 120px 40px 220px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  /* Certificate Modal */
  .certificate-modal {
    padding: 120px 40px 220px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  /* Contact */
  #contact {
    padding: 120px 40px 220px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  /* Services */
  .services-three {
    padding-left: 30px;
    padding-right: 30px;
  }

  .services-three .row {
    margin-left: 0;
    margin-right: 0;
  }

  .services-three .col-xl-4,
  .services-three .col-lg-4,
  .services-three .col-md-6 {
    width: 100%;
    max-width: 100%;
  }

  /* Projects */
  .projects-one {
    padding-left: 25px;
    padding-right: 25px;
  }

  .projects-one .row {
    margin-left: 0;
    margin-right: 0;
  }

  .projects-one img {
    max-width: 100%;
    height: auto;
  }

  /* General images */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Text protection */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  /* Buttons */
  .thm-btn,
  button,
  a.thm-btn {
    max-width: 100%;
  }
}

/* =========================
   VERY SMALL PHONES
   320px - 400px
========================= */
@media (max-width: 400px) {
  .mobile-nav__content {
    width: 200px !important;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .about-three,
  .mission-vision-one,
  .faq-one {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonials-three,
  .work-perfomance-one-sec,
  .certifications-section,
  .certificate-modal,
  #contact {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .services-three,
  .projects-one {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* =========================
   TABLETS
   768px - 991px
========================= */
@media (min-width: 768px) and (max-width: 991px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .about-three,
  .mission-vision-one,
  .faq-one {
    padding-left: 30px;
    padding-right: 30px;
  }

  .services-three {
    padding-left: 30px;
    padding-right: 30px;
  }

  .projects-one {
    padding-left: 30px;
    padding-right: 30px;
  }

  .testimonials-three,
  .work-perfomance-one-sec,
  .certifications-section,
  .certificate-modal,
  #contact {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}

/* =========================
   LARGE TABLETS / SMALL LAPTOP
   992px - 1199px
========================= */
@media (min-width: 992px) and (max-width: 1199px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    max-width: 960px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-three,
  .mission-vision-one,
  .faq-one {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-three,
  .projects-one {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* =========================
   DESKTOP
   1200px+
========================= */
@media (min-width: 1200px) {
  html,
  body {
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .mobile-nav__content {
    width: 290px !important;
    height: 100%;
  }
}

@media (max-width: 370px) {
  .mobile-nav__content {
    width: 240px !important;
    height: 100%;
  }
}

@media (max-width: 400px) {
  .services-three,
  .projects-one {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .mission-vision-one__inner {
    margin-right: 0;
    margin-left: 0;
    /* padding: 0; */
  }
}

@media (max-width: 400px) {
  .mission-vision-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 10px 0px 10px;
    z-index: 1;
  }

  .mission-vision-one__inner {
    margin-right: 0px;
    margin-left: 0px;
    /* padding: 20px 20px 0 20px !important; */
  }
  .faq-one {
    padding: 0 !important;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1rem !important;
  }
  .certifications-section {
    padding: 3rem 0 !important;
  }
}

@media (max-width: 500px) {
  .mission-vision-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 10px 0px 10px;
    z-index: 1;
  }

  .mission-vision-one__inner {
    margin: 10px;
    /* padding: 20px 20px 0 20px !important; */
  }
  .faq-one {
    padding: 0 !important;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1rem !important;
  }
  .certifications-section {
    padding: 3rem 0 !important;
  }
}

/* top contact ba */

/* Default: mobile bar hidden, marquee visible (desktop/laptop) */
.mobile-topbar-contact {
  display: none;
}

/* Tablet + Mobile: marquee hide, contact bar show */
@media (max-width: 991px) {
  .crest-marquee {
    display: none !important;
  }
  .mobile-topbar-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    /* padding: 10px 15px; */
    flex-wrap: wrap;
  }

  .mobile-topbar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
  }

  .mobile-topbar-link i {
    color: #ffb400; /* apni theme ka gold/accent color yahan lagao */
  }
}

/* Small mobile par email hide kar do agar space tight ho, sirf call dikhao */
@media (max-width: 480px) {
  .mobile-topbar-link span {
    font-size: 14px;
  }
  .mobile-topbar-contact {
    gap: 25px;
  }
  .mobile-topbar-link {
    gap: 5px;
  }
}

@media (max-width: 767px) {
  .services-three__single {
    max-width: 700px;
    padding: 40px 20px 40px;
  }
  .services-three {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 378px) {
  .mobile-topbar-link span {
    font-size: 14px;
  }
  .mobile-topbar-contact {
    gap: 8px;
    /* background: red; */
    padding: 0;
  }
  .mobile-topbar-link {
    gap: 15px;
  }
  .main-header-three__top {
    padding: 1px 0 !important;
  }
}

.footer-one__bottom-text a {
  color: white !important;
}

/* =========================================================
   LARGE SCREEN HEADER WIDTH CONTROL
   Keeps existing design unchanged, only expands header
   containers on large screens.
   ========================================================= */

@media (min-width: 1201px) {
  .main-header-three .container {
    width: 100%;
    max-width: 1900px;
    margin-left: auto;
    margin-right: auto;
  }

  .main-header-three__top .container,
  .main-header-three__middle .container,
  .main-header-three__bottom .container {
    width: 94%;
    max-width: 1900px;
  }

  .stricky-header .main-menu__inner {
    box-shadow: none;
    padding-right: 0;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 100px;
  }
}

/* =========================================================
   LARGE SCREEN FOOTER WIDTH CONTROL
   Expands footer content on large screens only.
   Existing desktop/tablet/mobile styling remains unchanged.
   ========================================================= */

@media (min-width: 1201px) {
  .footer-one-sec .footer-container,
  .footer-one-sec > .footer-one__bottom .container {
    width: 94%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-one__top-inner {
    margin-left: 3rem;
  }
}
