/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --thm-font: 'Poppins', sans-serif;
  --thm-font-2: 'Open Sans', sans-serif;
  --thm-gray: #878c8f;
  --thm-gray-rgb: 135, 140, 143;
  --thm-base: #404B80;
  --thm-base-rgb: 64, 75, 128;
  --thm-black: #222429;
  --thm-black-rgb: 34, 36, 41;
  --thm-gray-bg: #f1f3f2;
  --thm-primary: #C2C5E3;
  --thm-primary-rgb: 194, 197, 227;
}

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

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

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

body {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--thm-font);
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--thm-gray);
}

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

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

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

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

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

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

p {
  margin: 0;
  margin-bottom: 10px !important; 
}

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

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

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

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

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

input:focus,
textarea:focus,
select:focus {
  border-color: #43c3ea;
  outline: none;
}

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

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

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

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


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


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

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

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

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

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

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

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

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


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

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

.bg-color {
	background-color: var(--thm-primary);
	padding: 50px;
}

.sec-title {
  position: relative;
  display: block;
  margin-top: -8px;
  padding-bottom: 57px;
}

.sec-title .sub-title {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.sec-title .sub-title .round-one {
  position: absolute;
  top: 10px;
  left: -25px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--thm-base);
  content: "";
  margin: 0 auto;
}

.sec-title .sub-title .round-one::before {
  position: absolute;
  top: 3px;
  left: -32px;
  width: 25px;
  height: 2px;
  background: var(--thm-base);
  content: "";
}

.sec-title .sub-title .round-two {
  position: absolute;
  top: 10px;
  right: -25px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--thm-base);
  content: "";
  margin: 0 auto;
}

.sec-title .sub-title .round-two::before {
  position: absolute;
  top: 3px;
  right: -32px;
  width: 25px;
  height: 2px;
  background: var(--thm-base);
  content: "";
}

.sec-title .sub-title h3 {
  color: var(--thm-base);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

.sec-title h2 {
  color: var(--thm-black);
  font-size: 50px;
  line-height: 1.2em;
  font-weight: 700;
  font-family: var(--thm-font);
}

.thm-btn {
  position: relative;
  display: inline-block;
  border-radius: 27px;
  padding: 0px 35px 0px;
  line-height: 55px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background: var(--thm-base);
  overflow: hidden;
  font-family: var(--thm-font);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out 0.1s;
}

.thm-btn:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  border-radius: 27px;
  background-color: #C2C5E3;
  color: #fff !important;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.5, 1);
  transform: scale(0.5, 1);
}

.thm-btn:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.thm-btn .txt {
  position: relative;
  z-index: 1;
}

.thm-btn:hover,
.thm-btn:focus {
  color: #ffffff;
}

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

.scroll-to-top {
  position: fixed;
  right: 15px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--thm-base);
  border: 2px solid var(--thm-base);
  color: #ffffff;
  font-size: 20px;
  line-height: 56px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  display: none;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 999999999;
}

.scroll-to-top:after {
  /*position: absolute;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  z-index: -1;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);*/
}

.scroll-to-top:before {
 /* position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;*/
}

.scroll-to-top:hover {
  color: #ffffff;
  background-color: var(--thm-black);
  border-color: var(--thm-black);
}

.scroll-to-top i::before {
  position: relative;
  display: inline-block;
  /*transform: rotate(180deg);*/
}

/*--------------------------------------------------------------
  # Mobile Nav
  --------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-black);
  opacity: 0.7;
  cursor: pointer;
}

.mobile-nav__content {
  position: relative;
  width: 300px;
  background-color: var(--thm-base);
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  z-index: 10;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.mobile-nav__close:hover {
  background-color: var(--thm-black);
}

.mobile-nav__close i:before {
  position: relative;
  display: inline-block;
  transform: rotate(45deg);
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.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__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 20px;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  line-height: 30px;
  color: #ffffff;
  font-size: 18px;
  font-family: var(--thm-font-2);
  font-weight: 500;
  height: 46px;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>ul>li>a {
  font-size: 16px;
  font-weight: 400;
}

.mobile-nav__content .main-menu__list>li>a.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: #945C65;
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  outline: none;
  color: #fff;
  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;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--thm-base);
}


.mobile-nav__content .home-showcase__title {
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: 0px;
}

.mobile-nav__contact {
  position: relative;
  display: block;
  margin-top: 40px;
  margin-bottom: 30px;
}

.mobile-nav__contact li {
  position: relative;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--thm-black);
}

.mobile-nav__contact li>i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
}

.mobile-nav__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 10px;
}

.mobile-nav__social a:hover {
  color: var(--thm-base);
  background-color: #ffffff;
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

/*--------------------------------------------------------------
# Main Header Css
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 99;
}

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

.main-menu__wrapper {
  position: relative;
  display: block;
  background: #fff;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-box {
  display: block;
  float: right;
  margin-left: auto;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}


.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  position: relative;
  padding-top: 38px;
  padding-bottom: 39px;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 35px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  position: relative;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  font-family: var(--thm-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.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: #C2C5E3 !important;
}

.main-menu .main-menu__list>li.dropdown>a,
.stricky-header .main-menu__list>li.dropdown>a {
  padding-right: 20px;
}

.main-menu .main-menu__list>li.dropdown>a:before {
  position: absolute;
  top: 1px;
  right: 2px;
  font-family: 'Font Awesome 5 Free' !important;
  content: "\f078";
  color: var(--thm-black);
  font-size: 11px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  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,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  transform-origin: top;
  transform-style: preserve-3d;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .3s;
  transition-property: all;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  z-index: 99;
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg);
  transition: all 700ms ease;
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  position: relative;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: 1px solid rgba(var(--thm-base-rgb, 53, 84, 209), 0.05);
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  display: flex;
  font-size: 15px;
  line-height: 30px;
  color: var(--thm-gray);
  letter-spacing: 0;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  padding: 10px 25px;
  -webkit-transition: 500ms;
  transition: 500ms;
  font-family: var(--thm-font);
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  color: #ffffff;
  background-color: var(--thm-base);
}

.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%;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.main-menu .mobile-nav__toggler {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 25px;
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--brote-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

.stricky-header.main-menu {
  background-color: #ffffff;
}

.stricky-header .main-menu-box {
  display: block;
  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;
}

.stricky-header .main-menu__wrapper {
  background-color: var(--thm-base);
}

.stricky-header .main-menu__wrapper-inner {
  justify-content: space-between;
}

.stricky-header .phone-number-box-style1 {
  display: none;
}

.stricky-header .main-menu__list>li {
  padding-top: 48px;
  padding-bottom: 49px;
}

.stricky-header .main-menu__list>li+li {
  margin-left: 30px;
}

.stricky-header .main-menu-style1-right {
  margin-left: 30px;
}


/*----------------------------------------
    Main Header One
  ---------------------------------------*/

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

.header-contact-info li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 25px;
}

.header-contact-info li:last-child {
  margin-right: 0;
}

.header-contact-info li .icon {
  position: relative;
  display: block;
}

.header-contact-info li .icon span:before {
  position: relative;
  display: inline-block;
  top: 2px;
  color: #945C65;
  font-size: 16px;
}

.header-contact-info li .text {
  position: relative;
  display: block;
  margin-left: 5px;
}

.header-contact-info li .text h6 {
  color: #945C65;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.025em;
  font-family: var(--thm-font);
}

.header-contact-info li .text h6 a {
  color: #945C65;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.header-contact-info li .text h6 a:hover {
  color: var(--thm-base);
}

.main-menu__wrapper .auto-container {
  max-width: 1530px;
  width: 100%;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 300px;
}


/*----------------------------------------
    Main Header Two
  ---------------------------------------*/
.logo-box-two {
  position: relative;
  display: block;
  padding-right: 60px;
  z-index: 1;
}

.logo-box-two::before {
  position: absolute;
  top: -30px;
  left: -9999999px;
  bottom: -30px;
  right: 0;
  background: rgba(var(--thm-black-rgb), .20);
  content: "";
  z-index: -1;
}

.stricky-header.style2 .logo-box-two::before {
  display: none;
}

.stricky-header.style2 .main-menu__list>li>a {
  color: #ffffff;
}

.stricky-header.style2 .main-menu__list>li.current>a,
.stricky-header.style2 .main-menu__list>li:hover>a {
  color: var(--thm-primary);
}

.stricky-header.style2.main-menu .main-menu__list>li.dropdown>a:before {
  color: #ffffff;
}

.stricky-header.style2.main-menu .main-menu__list>li.current.dropdown>a:before,
.stricky-header.style2.main-menu .main-menu__list>li:hover.dropdown>a:before {
  color: var(--thm-primary);
}

.stricky-header.style2 .main-menu__wrapper-inner {
  padding-left: 0px;
}

.stricky-header.style2 .header-one-social-links ul li a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.stricky-header.style2 .header-one-social-links ul li a:hover {
  color: var(--thm-black);
}

.stricky-header.style2 .header-search-box::before {
  background: #ffffff;
}

.stricky-header.style2 .header-search-box a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.stricky-header.style2 .header-search-box a:hover {
  color: var(--thm-black);
}

/*----------------------------------------
    Main Header Three
  ---------------------------------------*/
.main-header-three {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.main-header-three__inner {
  position: relative;
  display: block;
}

.main-header-three__top {
  position: relative;
  display: block;
  background-color: #C2C5E3;
  padding: 0px 0px 0px;
}

.main-header-three__top .auto-container {
  max-width: 1530px;
  width: 100%;
}

.main-header-three__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header-three__top-inner .text {
  position: relative;
  display: block;
}

.main-header-three__top-inner .text p {
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.03em;
}

.main-header-three__btn {
  position: relative;
  display: block;
}

.main-header-three__btn a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  text-transform: capitalize;
  letter-spacing: 0.03em;
  background: var(--thm-base);
  padding: 7px 25px 8px;
}

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

.main-header-three__bottom::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: -moz-linear-gradient(-90deg, rgb(4, 4, 0) 10%, rgba(4, 4, 0, 0.58) 48%, rgba(194, 182, 151, 0) 100%);
  background-image: -webkit-linear-gradient(-90deg, rgb(4, 4, 0) 10%, rgba(4, 4, 0, 0.58) 48%, rgba(194, 182, 151, 0) 100%);
  background-image: -ms-linear-gradient(-90deg, rgb(4, 4, 0) 10%, rgba(4, 4, 0, 0.58) 48%, rgba(194, 182, 151, 0) 100%);
  opacity: 0.839;
  content: "";
  z-index: -1;
}

.main-header-three__bottom-inner {
  position: relative;
  display: block;
}

.main-header-three__bottom-inner .auto-container {
  max-width: 1530px;
  width: 100%;
}

.main-header-three__bottom-inner .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header-three__bottom-inner .logo-box-two {
  position: relative;
  display: block;
  padding-right: 175px;
  z-index: 1;
}

.main-header-three__bottom-inner .logo-box-two::before {
  position: absolute;
  top: -18px;
  left: -9999999px;
  bottom: -18px;
  right: 0;
  background: var(--thm-base);
  content: "";
  z-index: -1;
}

.main-header-three__bottom-inner .main-menu-box {
  margin-left: 0;
}

.main-header-three__bottom .main-menu .main-menu__list>li>a {
  color: var(--thm-base);
}

.main-header-three__bottom .main-menu .main-menu__list>li.dropdown>a:before {
  color: var(--thm-base);
}

.stricky-header.style2 .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/***
=============================================
  Main Slider One
=============================================
***/
.main-slider {
  position: relative;
  display: block;
  z-index: 10;
}



.main-slider .swiper-slide {
  position: relative;
  height: 85vh;
  
}

.main-slider .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
 /* -webkit-transform: scale(1.15);
  transform: scale(1.15);*/
}

.main-slider .image-layer:before {
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0;
  width: 100%;
  content: "";
  /*background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9556197478991597) 41%, rgba(255, 255, 255, 0) 64%);*/
  z-index: -1;
}

.darken {
    box-shadow: inset 2000px 0 0 0 rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 1);
}

.main-slider__content {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 5;
}

.main-slider__content .title {
  position: relative;
  display: block;
  margin-bottom: 19px;
  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: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider .swiper-slide-active .main-slider__content .title {
  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: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider__content .title h2 {
  color: var(--thm-black);
  font-size: 90px;
  font-weight: 600;
  line-height: 1.1em;
  text-transform: capitalize;
}

.main-slider__content .title h2 span {
  color: var(--thm-base);
}

.main-slider__content .text {
  position: relative;
  display: block;
  margin-bottom: 47px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
  transform: perspective(400px) rotateY(0deg) translateX(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider .swiper-slide-active .main-slider__content .text {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider__content .text p {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.main-slider__content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  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: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider .swiper-slide-active .main-slider__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: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}


.main-slider__content .btn-box .thm-btn {
  border-radius: 30px;
  line-height: 60px;
}

.main-slider__content .btn-box .thm-btn::before {
  border-radius: 20px;
}

.main-slider__nav {
  position: absolute;
  top: 41%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 1500px;
  width: 100%;
  padding: 0 15px;
  height: 0;
  line-height: 0;
  z-index: 100;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  display: block;
  height: 60px;
  width: 60px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  line-height: 60px;
  opacity: 1;
  margin: 0;
  transition: all 500ms ease;
  z-index: 100;
}

.main-slider__nav .swiper-button-prev {
  float: left;
  left: 0;
  margin-bottom: 10px;
}

.main-slider__nav .swiper-button-next {
  float: right;
  right: 0;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  color: #ffffff;
  background: var(--thm-base);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev i::before {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 60px;
  font-weight: 700;
}

.main-slider__nav .swiper-button-next i::before {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 60px;
  font-weight: 700;
}

/***
=============================================
  Main Slider Three
=============================================
***/
.main-slider-three {
  position: relative;
  display: block;
  margin-top: 0;
  z-index: 1;
}

.main-slider-three .shape1 {
  position: absolute;
  top: 195px;
  left: 180px;
  z-index: 1;
}

.main-slider-three .shape2 {
  position: absolute;
  top: 260px;
  left: 790px;
  transform: rotate(45deg);
  -webkit-animation: animation1 5s ease-in infinite;
  animation: animation1 5s ease-in infinite;
  z-index: 1;
}


.main-slider-three__content {
    display: block;
	position: absolute;
    width: 100%;
    top: 50%;
    z-index: 99;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.main-slider-three__content .text {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.main-slider-three .swiper-slide-active .main-slider-three__content .text {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-three .swiper-slide-active .main-slider-three__content .text::before {
  width: 100%;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-three__content .text p {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--thm-font);
}

.main-slider-three__content .title {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transition: all 1300ms ease;
  transition: all 1300ms ease;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.main-slider-three .swiper-slide-active .main-slider-three__content .title {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.main-slider-three__content .title h2 {
  color: #fff;
  font-size: 64px;
  line-height: 80px;
  font-weight: 700;
  text-transform: capitalize;
}

.main-slider-three__content .btn-box {
  position: relative;
  display: block;
  margin-top: 45px;
  line-height: 0;
  opacity: 0;
  -webkit-transition: all 1300ms ease;
  transition: all 1300ms ease;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.main-slider-three .swiper-slide-active .main-slider-three__content .btn-box {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 2300ms;
  transition-delay: 2300ms;
}

.main-slider-three__content .btn-box .thm-btn {
  background: transparent;
  border: 2px solid var(--thm-black);
  color: var(--thm-black);
}

.main-slider-three__content .btn-box .thm-btn:hover {
  border-color: var(--thm-base);
}

.main-slider-three__content .btn-box .thm-btn::before {
  background: transparent;
}

.main-slider-three__content .btn-box .thm-btn:hover {
  color: var(--thm-base);
}


.main-slider__nav.style2 {
  top: 43%;
}

/***
=============================================
  Page Header
=============================================
***/
.page-header {
  position: relative;
  display: block;
  padding: 80px 0px;
  z-index: 1;
}

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

.page-header__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /*background: rgba(var(--thm-black-rgb), 0.88);*/
  content: "";
  z-index: -2;
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
}

.page-header__inner h2 {
  color: #ffffff;
  font-size: 42px;
  line-height: 52px;
  font-weight: 600;
  margin-bottom: 10px;
}


.page-header__inner .thm-breadcrumb {
  position: relative;
  display: block;
}

.page-header__inner .thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}

.page-header__inner .thm-breadcrumb li a {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.page-header__inner .thm-breadcrumb li a:hover {
  color: var(--thm-base);
}

/***
=============================================
   Video One
=============================================
***/
.video-one {
  position: relative;
  display: block;
  padding: 300px 0px 300px;
  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.1);
  content: "";
  z-index: -2;
}

.video-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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: 100px;
  height: 100px;
  line-height: 90px;
  text-align: center;
  font-size: 36px;
  color: #ffffff;
  background-color: var(--thm-base);
  border-radius: 50%;
  margin: 0 auto;
}


.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;
}


/***
=============================================
  Faq One
=============================================
***/
.faq-one {
  position: relative;
  display: block;
  background: var(--thm-gray-bg);
  overflow: hidden;
  padding: 120px 0px 95px;
  z-index: 1;
}

.faq-one__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.02;
  z-index: -1;
}

.faq-one .shape1 {
  position: absolute;
  top: -15px;
  left: 0;
  opacity: 0.05;
  z-index: -1;
}

.faq-one .shape2 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.05;
  z-index: -1;
}

.faq-one__content {
  position: relative;
  display: block;
  max-width: 540px;
  width: 100%;
}

.faq-one__content .sec-title {
  padding-bottom: 31px;
}

.faq-one__content-middle {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 500px;
  width: 100%;
}

.faq-one__content-middle .img-box {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.faq-one__content-middle .img-box img {
  width: 100%;
}

.faq-one__content-middle .text-box {
  position: relative;
  display: block;
  flex: 1;
}

.faq-one__content-middle .text-box p {
  color: var(--thm-gray);
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
}

.faq-one__accordion {
  position: relative;
  display: block;
  margin-top: 30px;
}

.accordion-box {
  position: relative;
  display: block;
}

.accordion-box .block {
  position: relative;
  display: block;
  margin-bottom: 20px;
  transition: all 500ms ease;
  background: rgba(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.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;
  padding-top: 23px;
  padding-left: 40px;
  padding-bottom: 22px;
  padding-right: 40px;
}

.accordion-box .block .acc-btn.active {
  padding-bottom: 10px;
}

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

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

.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: 'Font Awesome 5 Free' !important;
  font-weight: 700;
  margin: 0px;
  content: "\f068";
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding-top: 0px;
  padding-left: 40px;
  padding-bottom: 39px;
  padding-right: 40px;
}

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

.accordion-box .block .acc-content p {
  margin: 0;
  color: var(--thm-black);
  line-height: 24px;
  font-weight: 300;
}

/***
=============================================
Digital Agency One
=============================================
***/
.digital-agency-one {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
  background: #ffffff;
  z-index: 1;
}

.digital-agency-one__top {
  position: relative;
  display: block;
  padding: 150px 0px 310px;
}

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

.digital-agency-one__top-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #404B80;
  opacity: 0.6;
  content: "";
  z-index: -2;
}

.digital-agency-one__top .inner {
  position: relative;
  display: block;
}

.digital-agency-one__top .inner .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 120px;
  background: var(--thm-base);
  border-radius: 9px;
  margin: 0 auto 43px;
}

.digital-agency-one__top .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 75px;
  line-height: 75px;
}

.digital-agency-one__top .inner h2 {
  color: #ffffff;
  font-size: 54px;
  line-height: 1.2em;
  font-weight: 600;
  text-transform: capitalize;
}

.digital-agency-one__bottom {
  position: relative;
  display: block;
  margin-top: -110px;
  z-index: 5;
}

.digital-agency-one__bottom-inner {
  position: relative;
  display: block;
}

.digital-agency-one__bottom-inner::before {
  position: absolute;
  top: -60px;
  right: -160px;
  left: -160px;
  bottom: 0;
  background: #ffffff;
  content: "";
  border-radius: 10px;
}

.digital-agency-one__tab-box {
  position: relative;
  display: block;
  z-index: 2;
}

.digital-agency-one__tab-box .tab-buttons {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 80px;
}

.digital-agency-one__tab-box .tab-buttons .tab-btn {
  position: relative;
  float: left;
  max-width: 390px;
  width: 100%;
}

.digital-agency-one__tab-box .tab-buttons .tab-btn+.tab-btn {
  margin-left: 0px;
}

.digital-agency-one__tab-box .tab-buttons .tab-btn:nth-child(1) span {
  border-top-left-radius: 10px;
}

.digital-agency-one__tab-box .tab-buttons .tab-btn:nth-child(3) span {
  border-top-right-radius: 10px;
}

.digital-agency-one__tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  background-color: var(--thm-base);
  padding: 43px 0px 42px;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 390px;
  width: 100%;
  text-align: center;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.digital-agency-one__tab-box .tab-buttons .tab-btn.active-btn span {
  color: #fff;
  background-color: var(--thm-primary);
}

.digital-agency-one__tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background-color: var(--thm-primary);
  transition: all 0.3s ease;
  z-index: -1;
}

.digital-agency-one__tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}


.digital-agency-one__tab-box .tabs-content {
  position: relative;
  display: block;
}

.digital-agency-one__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -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: 10;
}

.digital-agency-one__tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.tabs-content__inner {
  position: relative;
  display: block;
  background-color: #ffffff;
}

.tabs-content__img {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
}

.tabs-content__img:hover::before {
  -webkit-animation: shine 1.9s;
  animation: shine 1.9s;
}

.tabs-content__img img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.tabs-content__img:hover img {
  transform: scale(1);
}

.tabs-content__content {
  position: relative;
  display: block;
  margin-top: -6px;
  margin-left: 45px;
}

.tabs-content__content h2 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 23px;
}

.tabs-content__content p {
  margin: 0;
}

.tabs-content__content .middle-text {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.tabs-content__content .middle-text .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: #f3f5f4;
}

.tabs-content__content .middle-text .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 50px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.tabs-content__content .middle-text:hover .icon-box span::before {
  transform: scale(0.9);
}

.tabs-content__content .middle-text .text-box {
  position: relative;
  display: block;
  margin-left: 25px;
  flex: 1;
}

.tabs-content__content .middle-text .text-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 11px;
}

.tabs-content__content .middle-text .text-box p {
  margin: 0;
}

.tabs-content__content .progress-box {
  position: relative;
  display: block;
  margin-top: 37px;
}

.tabs-content__content .progress-box .progress-single {
  position: relative;
  display: block;
}

.tabs-content__content .progress-box .progress-single .top {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.tabs-content__content .progress-box .progress-single .top h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.tabs-content__content .progress-box .progress-single .top .count-text {
  position: relative;
  color: var(--thm-black);
  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);
}

.tabs-content__content .progress-box .progress-single .bar {
  position: relative;
  width: 100%;
  height: 0px;
  background: transparent;
  margin-bottom: 0px;
}

.tabs-content__content .progress-box .progress-single .bar::before {
  position: absolute;
  left: 0;
  bottom: -9px;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--thm-base);
  content: "";
}

.tabs-content__content .progress-box .progress-single .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 5px;
  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;
}

/***
=============================================
Blog One
=============================================
***/
.blog-one {
  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;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: var(--thm-black);
}

.blog-one__single-img .date-box {
  position: absolute;
  right: 20px;
  bottom: -35px;
  background: var(--thm-base);
  border-radius: 10px;
  text-align: center;
  padding: 11px 15px 15px;
  z-index: 2;
}

.blog-one__single-img .date-box p {
  color: #ffffff;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  margin:0 !important;
}

.blog-one__single-img .inner {
  position: relative;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0;
  overflow: hidden;
  z-index: 1;
}

.blog-one__single-img .inner::before {
  position: absolute;
  top: 0%;
  left: 0%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .7);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.blog-one__single-img .inner::after {
  position: absolute;
  bottom: 0%;
  right: 0%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .7);
  border-radius: 50%;
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
  opacity: 0;
  z-index: 10;
}

.blog-one__single-img .inner img {
  width: 100%;
  transform: scale(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  border-top-left-radius: 0;
}

.blog-one__single:hover .blog-one__single-img .inner img {
  transform: scale(1.2) rotate(1deg);
}

.blog-one__single__content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 30px 40px 15px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.blog-one__single__content .meta-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 15px;
}

.blog-one__single__content .meta-box li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 30px;
}

.blog-one__single__content .meta-box li:last-child {
  margin-right: 0px;
}

.blog-one__single__content .meta-box li .icon {
  position: relative;
  display: block;
}

.blog-one__single__content .meta-box li .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  font-weight: 700;
}

.blog-one__single__content .meta-box li .text {
  position: relative;
  display: block;
  margin-left: 8px;
  margin-top: 0;
}

.blog-one__single__content .meta-box li .text p {
  font-size: 15px;
  font-weight: 600;
  font-family: var(--thm-font-2);
  margin-top: 5px;
}

.blog-one__single__content .meta-box li .text p a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single__content .meta-box li .text p a:hover {
  color: var(--thm-base);
}

.blog-one__single__content h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 26px;
}

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

.blog-one__single__content h2 a:hover {
  color: var(--thm-base);
}

.blog-one__single__content p {
  position: relative;
  margin: 0;
  margin-bottom: 34px;
}

.blog-one__single__content .bottom-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e4e4ea;
  padding-top: 9px;
}

.blog-one__single__content .bottom-box .read-more-btn {
  position: relative;
  display: block;
}

.blog-one__single__content .bottom-box .read-more-btn a {
  color: var(--thm-gray);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.blog-one__single__content .bottom-box .read-more-btn a:hover {
  color: var(--thm-base);
}

.blog-one__single__content .bottom-box .icon-box {
  position: relative;
  display: inline-block;
}

.blog-one__single__content .bottom-box .icon-box a {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single__content .bottom-box .icon-box a:hover {
  color: var(--thm-base);
}

.blog-one__single__content .bottom-box .icon-box a span:before {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
}


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

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

.cta-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-base-rgb), 0.9);
  content: "";
  z-index: -2;
}

.cta-one__inner {
  position: relative;
  display: block;
}

.cta-one__inner p {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cta-one__inner h2 {
  color: #ffffff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  text-transform: capitalize;
}

.cta-one__inner .btn-box {
  position: relative;
  display: block;
  margin-top: 37px;
  line-height: 0;
}

.cta-one__inner .btn-box .thm-btn {
  background: var(--thm-black);
}

.cta-one__inner .btn-box .thm-btn::before {
  background: var(--thm-base);
}

/***
=============================================
Cta Style2
=============================================
***/
.cta-one.style2 {
  position: relative;
  display: block;
}

.cta-one.style2 .cta-one__bg::before {
  background: rgba(var(--thm-black-rgb), 0.9);
}

.cta-one.style2 .cta-one__inner .btn-box .thm-btn {
  background: var(--thm-base);
}

.cta-one.style2 .cta-one__inner .btn-box .thm-btn::before {
  background: var(--thm-black);
}


/***
=============================================
Footer One
=============================================
***/
.footer-one {
  position: relative;
  display: block;
  padding: 118px 0px 0px;
  z-index: 1;
  background: var(--thm-base);
}

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

.footer-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  opacity: 0.95;
  z-index: -2;
  content: "";
}

.footer {
  position: relative;
  display: block;
  padding-bottom: 112px;
}

.footer-widget__single {
  position: relative;
  display: block;
}

.footer-widget__single.ml30 {
  margin-left: 30px;
}

.footer-widget__single .title {
  position: relative;
  display: block;
  margin-bottom: 46px;
  margin-top: -5px;
}

.footer-widget__single .title h2 {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.footer-widget__single-about {
  position: relative;
  display: block;
}

.footer-widget__single-about .logo-box {
  position: relative;
  display: block;
  margin-bottom: 34px;
}

.footer-widget__single-about .logo-box a {
  position: relative;
  display: inline-block;
}

.footer-widget__single-about .text-box {
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.footer-widget__single-about .text-box p {
  color: #fff;
}

.footer-widget__single-about .social-link {
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 20px;
}

.footer-widget__single-about .social-link li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.footer-widget__single-about .social-link li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--thm-primary);
}

.footer-widget__single-about .social-link li a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: #945C65;
  transform: scale(0.5);
  opacity: 0;
  transition: all 300ms linear;
  transition-delay: 0.1s;
  content: "";
}

.footer-widget__single-about .social-link li a:hover::before {
  transform: scale(1);
  opacity: 1;
}

.footer-widget__single-about .social-link li a span::before {
  position: relative;
  display: inline-block;
  color: #945C65;
  font-size: 20px;
  transition: all 300ms linear;
  transition-delay: 0.1s;
}

.footer-widget__single-about .social-link li a:hover span::before {
  color: #ffffff;
}

.footer-widget__single-explore {
  position: relative;
  display: block;
}

.footer-widget__single-list {
  position: relative;
  display: block;
}

.footer-widget__single-list li {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.footer-widget__single-list li:last-child {
  margin-bottom: 0;
}

.footer-widget__single-list li a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-widget__single-list li a:hover {
  padding-left: 20px;
}

.footer-widget__single-list li a::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--thm-base);
  border-radius: 50%;
  transform: scale(0.5);
  opacity: 0;
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-widget__single-list li a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.footer-widget__single-list li a:hover {
  color: #ffffff;
}


.footer-widget__single-contact {
  position: relative;
  display: block;
}

.footer-widget__single-contact .text {
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 29px;
}

.footer-widget__single-contact .number {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
}

.footer-widget__single-contact .number a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-widget__single-contact .number a:hover {
  color: var(--thm-primary);
}

.footer-widget__single-contact .email {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  margin-top: 3px;
}

.footer-widget__single-contact .email a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-widget__single-contact .email a:hover {
  color: var(--thm-primary);
}


.footer-widget__single-newsletter {
  position: relative;
  display: block;
  background: #17171a;
  padding: 48px 50px 44px;
  border-radius: 10px;
  margin-top: 2px;
}

.footer-widget__single-newsletter .title {
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.footer-widget__single-newsletter .title h3 {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.footer-widget__single-newsletter-form {
  position: relative;
  display: block;
}

.footer-widget__single-newsletter-form .input-box {
  position: relative;
  display: block;
}

.footer-widget__single-newsletter-form .input-box:before {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  content: "";
  height: 5px;
  background-color: rgba(255, 255, 255, 0.10);
  border-radius: 3px;
}

.footer-widget__single-newsletter-form .input-box input[type="email"] {
  font-size: 16px;
  color: #9e9ea7;
  font-weight: 400;
  height: 60px;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding-right: 40px;
  outline: none;
}

.footer-widget__newsletter-btn {
  position: absolute;
  top: 50%;
  right: 0;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-radius: 50%;
  background: transparent;
  border: 0;
  transform: translateY(-50%);
  transition: all 500ms ease;
  padding: 0;
}

.footer-widget__newsletter-btn i {
  font-size: 16px;
  color: #ffffff;
  transition: all 500ms ease;
}

.footer-widget__newsletter-btn:hover i {
  color: var(--thm-base);
}

.checked-box {
  position: relative;
  display: block;
  min-height: 30px;
  margin-top: 23px;
}

.checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: #9e9ea7;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  cursor: pointer;
  min-height: 30px;
  font-family: var(--thm-font);
}

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

.checked-box input[type="checkbox"]+label span {
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid #67676d;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box label span:before {
  position: absolute;
  top: 4px;
  left: 5px;
  display: block;
  border-bottom: 2px solid #69696f;
  border-right: 2px solid #69696f;
  content: '';
  width: 5px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

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

.checked-box input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}

.footer-one__bottom {
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 35px 0px 20px;
}

.footer-one__bottom .bottom-inner {
  position: relative;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}

.footer-one__bottom .bottom-inner .copyright {
  position: relative;
  display: block;
}

.footer-one__bottom .bottom-inner .copyright p {
  color: #ffffff;
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
}

.footer-one__bottom-menu {
  position: relative;
  display: block;
}

.footer-one__bottom-menu li {
  position: relative;
  display: inline-block;
  padding-right: 10px;
  margin-right: 5px;
}

.footer-one__bottom-menu li::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  right: 0;
  width: 1px;
  background: #ffffff;
  content: "";
}

.footer-one__bottom-menu li:last-child:before {
  display: none;
}

.footer-one__bottom-menu li a {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__bottom-menu li a:hover {
  color: var(--thm-base);
}

/***
=============================================
Services One
=============================================
***/
.services-one {
  position: relative;
  display: block;
  background: var(--thm-gray-bg);
  padding: 180px 0px 120px;
  margin-top: -60px;
  z-index: 1;
}

.services-one__inner {
  position: relative;
  display: block;
  counter-reset: count;
}

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

.services-one__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 325px;
  width: 100%;
  z-index: 1;
}

.services-one__single-img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--thm-base-rgb), 0.7);
  opacity: 0;
  z-index: 1;
  content: "";
}

.services-one__single:hover .services-one__single-img::before {
  opacity: 1;
}

.services-one__single-img img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.services-one__single:hover .services-one__single-img img {
  transform: scale(1);
}

.services-one .owl-theme .owl-nav {
  margin-top: 10px;
  position: absolute;
  top: -160px;
  right: 0;
}

.services-one .owl-carousel .owl-nav button.owl-prev,
.services-one .owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 0px;
  background-color: #ffffff;
  color: var(--thm-base);
  font-size: 20px;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-one .owl-carousel .owl-nav button.owl-prev:hover,
.services-one .owl-carousel .owl-nav button.owl-next:hover {
  background: var(--thm-base);
  color: #ffffff;
}


/***
=============================================
Video Two
=============================================
***/
.video-one--two {
  position: relative;
  display: block;
  padding: 230px 0px 230px;
}

.video-one--two .video-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, .2);
  content: "";
  z-index: -2;
}

.video-one--two .video-one__inner {
  flex-direction: column;
  text-align: center;
}

.video-one--two h2 {
  color: #ffffff;
  font-size: 50px;
  line-height: 1.2em;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 59px;
}

/***
=============================================
Features Four
=============================================
***/
.features-four {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 120px 0px 90px;
  z-index: 1;
}

.features-four .big-title {
  position: absolute;
  left: 0;
  bottom: -20px;
  right: 0;
  text-align: center;
}

.features-four .big-title h2 {
  color: rgba(0, 35, 90, .03);
  font-size: 400px;
  line-height: 0.8em;
  font-weight: 800;
  text-transform: uppercase;
}

.features-four__single {
  position: relative;
  display: block;
  background: #fdf9f9;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
  padding: 0px 44px 52px;
  border-radius: 50px;
  margin-bottom: 30px;
  z-index: 1;
}

.features-four__single::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.8) rotateX(0deg);
  transition: all 0.4s linear;
  background: var(--thm-primary);
  border-radius: 50px;
  opacity: 0;
  content: "";
  z-index: -1;
}

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

.features-four__single-icon {
  position: relative;
  display: block;
  background-color: transparent;
  text-align: center;
  padding: 20px 0 0 0;
  line-height: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 5;
}

.features-four__single-icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 80px;
  line-height: 80px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.features-four__single:hover .features-four__single-icon span::before {
  transform: scale(0.9);
}

.features-four__single-content {
  position: relative;
  display: block;
  margin-top: 25px;
  text-align: center;
}

.features-four__single-content h2 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  text-transform: capitalize;
}

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

.features-four__single:hover .features-four__single-content h2 a {
  color: #ffffff;
}

.features-four__single-content p {
  margin: 0;
  line-height: 24px;
  font-size: 14px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__single:hover .features-four__single-content p {
  color: #ffffff;
}

.features-four__single-content ul {
  position: relative;
  display: block;
  margin-top: 24px;
}

.features-four__single-content ul li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}

.features-four__single-content ul li:last-child {
  margin-bottom: 0px;
}

.features-four__single-content ul li .icon {
  position: relative;
  display: block;
  margin-right: 12px;
}

.features-four__single-content ul li .icon span::before {
  position: relative;
  display: inline-block;
  color: #f95729;
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;

  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__single:hover .features-four__single-content ul li .icon span::before {
  color: #ffffff;
}

.features-four__single-content ul li .text {
  position: relative;
  display: block;
}

.features-four__single-content ul li .text p {
  color: var(--thm-gray);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--thm-font-2);

  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__single:hover .features-four__single-content ul li .text p {
  color: #ffffff;
}

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

.about-three__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  z-index: 100;
  overflow: hidden;
}

.about-three__img {
  position: relative;
  display: block;
  margin-left: -85px;
  max-width: 655px;
  width: 100%;
}

.about-three__img1 {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.about-three__img1:hover::before {
  -webkit-animation: shine 1.9s;
  animation: shine 1.9s;
}


.about-three__img1 img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.about-three__img:hover .about-three__img1 img {
  transform: scale(1);
}

.about-three__img2 {
  position: absolute;
  left: -80px;
  bottom: -115px;
  overflow: hidden;
  border-radius: 10px;
  z-index: 5;
}

.about-three__img2 img {
  width: 100%;
}

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

.about-three__content .sec-title {
  padding-bottom: 37px;
}

.about-three__content-text1 {
  position: relative;
  display: block;
  margin-top: 0px;
}

.about-three__content-text1 .row {
  --bs-gutter-x: 15px;
}

.about-three__content-text1-single {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #e4e4ea;
  padding: 19px 35px 17px;
  border-radius: 10px;
}

.about-three__content-text1-single .icon {
  position: relative;
  display: block;
}

.about-three__content-text1-single .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 26px;
}

.about-three__content-text1-single .text {
  position: relative;
  display: block;
  margin-left: 16px;
}

.about-three__content-text1-single .text p {
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: none;
}

.about-three__content-text2 {
  position: relative;
  display: block;
  margin-top: 0;
}

.about-three__content-text2 p {
  color: var(--thm-black);
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
}

.about-three__content-text3 {
  position: relative;
  display: block;
  border: 1px solid rgb(242, 244, 251);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
  padding: 60px 55px 60px;
  margin-left: -240px;
  margin-top: 43px;
  z-index: 5;
  border-radius: 10px;
}

.about-three__content-text3 ul {
  position: relative;
  display: block;
  overflow: hidden;
  margin-left: -15px;
  margin-right: -15px;
}

.about-three__content-text3-single {
  position: relative;
  display: block;
  float: left;
  padding: 0px 15px 0px;
}

.about-three__content-text3-single .inner {
  position: relative;
  display: block;
  /*border: 1px solid rgb(242, 244, 251);*/
  border-radius: 10px;
  /*background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);*/
  padding: 40px 0px 35px;
  width: 210px;
  overflow: hidden;
  z-index: 1;
}

.inner.text-center.bg-1{
  background-color: var(--thm-base);
}

.inner.text-center.inner.bg-2{
  background-color: #C2C5E3;
}

.inner.text-center.inner.bg-3{
  background-color: #945C65;
}

.about-three__content-text3-single .inner::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.8) rotateX(0deg);
  transition: all 0.4s linear;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--thm-base);
  opacity: 0;
  content: "";
  z-index: -1;
}

.about-three__content-text3-single:hover .inner::before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.about-three__content-text3-single .inner::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
 /* border: 1px solid #fff;
  transform: rotate(40deg) scale(0.9);*/
  opacity: 0;
  transition: all 500ms linear;
  transition-delay: 0.4s;
  content: "";
}

.about-three__content-text3-single:hover .inner::after {
 /* transform: rotate(40deg) scale(1.0);
  opacity: 1;*/
}

.about-three__content-text3-single .icon-box img{
  position: relative;
  display: inline-block;
  filter: brightness(0) invert(1);
}

.about-three__content-text3-single .icon-box img::before {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 60px;
  line-height: 60px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.about-three__content-text3-single:hover .icon-box img::before {
  color: var(--thm-base);
}

.about-three__content-text3-single:hover .icon-box img::before {
  transform: scale(0.9);
}

.about-three__content-text3-single .title-box {
  position: relative;
  display: block;
  margin-top: 15px;
}

.about-three__content-text3-single .title-box h2 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.about-three__content-text3-single:hover .title-box h2 {
  color: var(--thm-base);
}

.about-three__content-text3-single:hover .icon-box img{
  filter: none;
}

/***
=============================================
About Four
=============================================
***/
.about-four {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.about-four .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.94;
  z-index: -1;
}

.about-four .shape2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.4;
  z-index: -1;
}


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

.about-four__left-img {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  float: left;
  border-radius: 10px;
}

.about-four__left-img:hover::before {
  -webkit-animation: shine 1.6s;
  animation: shine 1.6s;
}


.about-four__left-img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.9s ease 0s;
  border-radius: 10px;
}

.about-four__left-img:hover img {
  transform: scale(1.1);
}

.about-four__left-content {
  position: relative;
  display: block;
  float: left;
  margin-left: 30px;
}

.about-four__left-content .counter-box {
  position: relative;
  display: block;
  width: 270px;
  background-color: var(--thm-base);
  padding: 65px 0px 60px;
  padding-left: 33px;
  padding-right: 10px;
  margin-bottom: 60px;
}

.about-four__left-content .counter-box::before {
  position: absolute;
  top: 35px;
  right: -60px;
  bottom: 35px;
  width: 20px;
  background: var(--thm-base);
  content: "";
}

.about-four__left-content .counter-box h2 {
  position: relative;
  color: #ffffff;
  font-size: 60px;
  line-height: 1em;
  font-weight: 700;
}

.about-four__left-content .counter-box h2 .plus {
  position: absolute;
  top: -8px;
  display: inline-block;
  font-size: 30px;
}

.about-four__left-content .counter-box h3 {
  color: #ffffff;
  font-size: 40px;
  line-height: 55px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 9px;
}

.about-four__left-content .img-box {
  position: relative;
  display: block;
}

.about-four__left-content .img-box .inner {
  position: relative;
  display: block;
  z-index: 1;
}

.about-four__left-content .img-box .inner::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-black-rgb), 0.6);
  content: "";
  z-index: 1;
}

.about-four__left-content .img-box .inner img {
  width: 100%;
}

.about-four__left-content .img-box .inner .video-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.about-four__left-content .img-box .inner .video-box a {
  position: relative;
  display: inline-block;
  z-index: 5;
}

.about-four__video {
  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;
}

.about-four__video::before {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  content: "";
}

.about-four__content {
  position: relative;
  display: block;
  margin-left: 70px;
}

.about-four__content .sec-title {
  padding-bottom: 20px;
}

.about-four__content-text1 {
  position: relative;
  display: block;
  padding-left: 80px;
  margin-bottom: 40px;
}

.about-four__content-text1 .icon-box {
  position: absolute;
  top: 7px;
  left: 0;
}

.about-four__content-text1 .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 60px;
}

.about-four__content-text1 .text {
  position: relative;
  display: block;
}

.about-four__content-text1 .text h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
}


.about-four__content-text2 {
  position: relative;
  display: block;
}

.about-four__content-text2 .single-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.about-four__content-text2 .single-box h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 6px;
}

.about-four__content-text2 .single-box p {
  margin: 0;
}

.about-four__content-text3 {
  position: relative;
  display: block;
}

.about-four__content-text3 p {
  margin: 0;
}



.about-four__content-text4 {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 41px;
}

.about-four__content-text4 .counter-box {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px dashed var(--thm-black);
  max-width: 240px;
  border-radius: 10px;
  width: 100%;
  padding: 13px 20px 14px;
}

.about-four__content-text4 .counter-box h2 {
  position: relative;
  color: var(--thm-black);
  font-size: 50px;
  line-height: 60px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.about-four__content-text4 .counter-box h2 .k {
  position: relative;
  display: inline-block;
  top: -13px;
  font-size: 30px;
}

.about-four__content-text4 .counter-box .text {
  position: relative;
  display: block;
  margin-left: 10px;
}

.about-four__content-text4 .counter-box .text p {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}


.about-four__client-info-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 35px;
}

.about-four__client-info-box .img-box {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.about-four__client-info-box .img-box img {
  width: 100%;
}

.about-four__client-info-box .title-box {
  position: relative;
  display: block;
  margin-left: 25px;
}

.about-four__client-info-box .title-box h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.about-four__client-info-box .title-box p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-transform: capitalize;
}

/***
=============================================
Working Process One
=============================================
***/
.working-process-one {
  position: relative;
  display: block;
  padding: 135px 0px 83px;
  z-index: 3;
}

.working-process-one__bg {
  position: absolute;
  top: 0;
  left: 210px;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.working-process-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-top-left-radius: 10px;
  background: rgba(var(--thm-base-rgb), .88);
  content: "";
  z-index: -2;
}

.working-process-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.working-process-one__single .shape1 {
  position: absolute;
  top: 25px;
  right: -130px;
}

.working-process-one__single .shape2 {
  position: absolute;
  top: 15px;
  right: -139px;
}

.working-process-one__single .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}

.working-process-one__single .icon-box::before {
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  border: 1px dashed #fff;
  border-radius: 50%;
  content: "";
}

.working-process-one__single .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 70px;
  line-height: 70px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.working-process-one__single:hover .icon-box span::before {
  transform: scale(0.9);
}

.working-process-one__single .text-box {
  position: relative;
  display: block;
  margin-top: 38px;
}

.working-process-one__single .text-box h4 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 7px;
}

.working-process-one__single .text-box h4 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.working-process-one__single .text-box p {
  color: rgba(255, 255, 255, .7);
}


/***
=============================================
Portfolio Three
=============================================
***/
.portfolio-three {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  z-index: 1;
}

.portfolio-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.portfolio-three__single-img {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.portfolio-three__single-img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgb(22, 23, 53);
  background: linear-gradient(180deg, rgba(22, 23, 53, 0.028448879551820738) 65%, rgba(22, 23, 53, 0.5634628851540616) 100%, rgba(22, 23, 53, 0.9500175070028011) 60%);
  border-radius: 10px;
  opacity: 1;
  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;
}

.portfolio-three__single:hover .portfolio-three__single-img:before {
  opacity: 1;
}

.portfolio-three__single-img img {
  width: 100%;
  transition: all 500ms ease;
  transform: scale(1);
}

.portfolio-three__single:hover .portfolio-three__single-img img {
  transform: scale(1.05);
}

.portfolio-three__single-img .text-box {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 5;
}

.portfolio-three__single-img .text-box h2 {
  font-size: 24px;
  line-height: 35px;
  font-weight: 600;
  margin-bottom: 0;
  opacity: 1;
  transform: translateY(0%);
  /*transform: translateY(-30px);*/
  transition: all 700ms ease;
}

.portfolio-three__single:hover .portfolio-three__single-img .text-box h2 {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.portfolio-three__single-img .text-box h2 a {
  color: #ffffff;
}

.portfolio-three__single-img .text-box p {
  color: var(--thm-base);
  font-weight: 600;
  font-size: 13px;
  margin-bottom:0 !important;
  line-height: 21px;
  text-transform: uppercase;
  opacity: 1;
  /*transform: translateY(30px);*/
  transform: translateY(0%);
  transition: all 700ms ease;
}

.portfolio-three__single:hover .portfolio-three__single-img .text-box p {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 700ms;
}

.portfolio-three__link {
  position: absolute;
  top: 25px;
  right: 25px;
  transform: scale(0.5);
  opacity: 0;
  transition: all 700ms ease;
  z-index: 3;
}

.portfolio-three__single:hover .portfolio-three__link {
  transform: scale(1);
  opacity: 1;
  transition-delay: 500ms;
}

.portfolio-three__link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--thm-base);
  font-size: 18px;
  color: #ffffff;
  transition: .4s;
  -webkit-transition: all .4s ease-in-out;
}

.portfolio-three__link a:hover {
  color: #ffffff;
}

.portfolio-three__link a span::before {
  position: relative;
  display: inline-block;
  z-index: 5;
}

/***
=============================================
Video Three
=============================================
***/
.video-one--two.style3 {
  position: relative;
  display: block;
  padding: 0px 0px 0px;
}

.video-one--two.style3 .video-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-black-rgb), 0.8);
  content: "";
  z-index: -2;
}

.video-one--two.style3 .auto-container {
  max-width: 1630px;
  width: 100%;
}

.video-one--two.style3 .video-one__inner {
  padding: 160px 30px 243px;
}

.video-one--two.style3 .video-one__icon::before {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid #787889;
  border-radius: 50%;
  content: "";
}


.video-one--two.style3 .video-one__inner .video-box .border-animation {
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  border: 1px solid #787889;
  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--two.style3 .video-one__inner .video-box .border-animation.border-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.video-one--two.style3 .video-one__inner .video-box .border-animation.border-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/***
=============================================
Contact Two
=============================================
***/
.contact-two {
  position: relative;
  display: block;
  padding: 0px 0px 0px;
  margin-top: -110px;
  z-index: 3;
}

.contact-two .bg-color{
  border-radius: 10px;
}

.contact-two__pattern {
  position: absolute;
  top: 140px;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.35;
  z-index: -1;
}

/***
=============================================
Working Process One Services
=============================================
***/
.working-process-one--services {
  position: relative;
  display: block;
}

.working-process-one--services .working-process-one__bg::before {
  background-color: var(--thm-primary);
}

.working-process-one--services .working-process-one__single .icon-box::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: var(--thm-base);
  transform: scale(0.7);
  opacity: 0;
  transition: all 400ms linear;
  transition-delay: 0.2s;
  content: "";
  z-index: -1;
}

.working-process-one--services .working-process-one__single:hover .icon-box::after {
  transform: scale(1);
  opacity: 1;
}

.working-process-one--services .working-process-one__single:hover .icon-box span::before {
  color: #ffffff;
}

.working-process-one--services .working-process-one__single .text-box h4 a:hover {
  color: var(--thm-base);
}

/***
=====================================================
    Sidebar
=====================================================
***/
.sidebar {
  position: relative;
  display: block;
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  position: relative;
  margin: 0;
  font-size: 26px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 30px;
  padding-left: 40px;
}

.sidebar__title::before {
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 2px;
  width: 30px;
  background: var(--thm-base);
  content: "";
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: #f1f3f8;
  padding: 42px 30px 50px;
  border-radius: 10px;
}

.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: 600;
  padding: 17px 20px 18px;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
  border-radius: 10px;
}

.sidebar__category-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--thm-base);
  z-index: -1;
  border-radius: 10px;
  transform: scaleY(0.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.0);
}

.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__category-list li a:hover span,
.sidebar__category-list li.active a span {
  background: rgba(255, 255, 255, .05);
  color: #ffffff;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 42px 30px 42px;
  background-color: #f1f3f8;
  border-radius: 10px;
}

.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;
  border-radius: 10px;
}

.sidebar__post-single:hover .sidebar-post__img::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
  opacity: 1.0;
}

.sidebar-post__img img {
  width: 100%;
  transform: scale(1.0);
  transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.sidebar__post-single:hover .sidebar-post__img img {
  opacity: 0.70;
  transform: scale(1.1) rotate(1deg);
}

.sidebar__post-content-box {
  position: relative;
  margin-top: 18px;
}

.sidebar__post-content-box h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.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);
}

/***
=============================================
Blog Sidebar
=============================================
***/

.blog-sidebar {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0px 120px;
}

.blog-sidebar__content {
  position: relative;
  display: block;
}

.blog-sidebar__single {
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.blog-sidebar__single-img {
  position: relative;
  display: block;
}

.blog-sidebar__single-img .date-box {
  position: absolute;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  right: 70px;
  bottom: -20px;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: var(--thm-base);
  z-index: 3;
}

.blog-sidebar__single-img .date-box h4 {
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}

.blog-sidebar__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
}

.blog-sidebar__single-img .inner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--thm-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.blog-sidebar__single:hover .blog-sidebar__single-img .inner::before {
  opacity: 1;
}

.blog-sidebar__single-img .inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.blog-sidebar__single:hover .blog-sidebar__single-img .inner img {
  transform: scale(1);
}

.blog-sidebar__single-content {
  position: relative;
  display: block;
  margin-top: 27px;
}

.blog-sidebar__single-content .meta-box {
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.blog-sidebar__single-content .meta-box li {
  position: relative;
  display: inline-block;
  margin-right: 35px;
}

.blog-sidebar__single-content .meta-box li:last-child {
  margin-right: 0;
}


.blog-sidebar__single-content .meta-box li a {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.blog-sidebar__single-content .meta-box li a:hover {
  color: var(--thm-base);
}

.blog-sidebar__single-content ul li a i::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  line-height: 15px;
  padding-right: 5px;
}

.blog-sidebar__single-content h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.blog-sidebar__single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.blog-sidebar__single-content h2 a:hover {
  color: var(--thm-base);
}

.blog-sidebar__single-content .text1 {
  position: relative;
  margin-bottom: 10px;
}

.blog-sidebar__single-content .text2 {
  position: relative;
}


.blog-sidebar__single-content .btn-box {
  position: relative;
  display: inline-block;
  margin-top: 20px;
}

.blog-sidebar__single-content .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--thm-black);
  font-size: 14px;
  line-height: 23px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.blog-sidebar__single-content .btn-box a:hover {
  color: var(--thm-base);
}

.blog-sidebar__single-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 30px;
  font-weight: 700;
  margin-left: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.blog-sidebar__single-content .btn-box a:hover span::before {
  color: var(--thm-base);
}


/***
=============================================
 Portfolio Details
=============================================
***/
.portfolio-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.portfolio-details__content {
  position: relative;
  display: block;
}

.portfolio-details__content-img1 {
  position: relative;
  display: block;
}

.portfolio-details__content-img1 img {
  width: 100%;
}

.portfolio-details__content .text-box1 {
  position: relative;
  display: block;
}

.portfolio-details__content .text-box1 h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 36px;
  margin-bottom: 21px;
}

.portfolio-details__content .text-box1 .text1 {
  position: relative;
  margin-bottom: 14px;
}

.portfolio-details__content .text-box1 .text2 {
  position: relative;
}


.portfolio-details__content .text-box2 {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 34px;
}

.portfolio-details__content .text-box2 .img-box {
  position: relative;
  display: block;
}

.portfolio-details__content .text-box2 .img-box img {
  width: 100%;
}

.portfolio-details__content .text-box2 .content-box {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 30px;
}

.portfolio-details__content .text-box2 .content-box h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.portfolio-details__content .text-box2 .content-box p {
  margin: 0;
}

.portfolio-details__content .text-box2 ul {
  position: relative;
  display: block;
  margin-top: 29px;
}

.portfolio-details__content .text-box2 ul li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.portfolio-details__content .text-box2 ul li:last-child {
  margin-bottom: 0;
}

.portfolio-details__content .text-box2 ul li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f2f2f2;
  border-radius: 50%;
}

.portfolio-details__content .text-box2 ul li .icon span::before {
  position: relative;
  display: inline-block;
  color: #92949e;
  font-size: 17px;
}

.portfolio-details__content .text-box2 ul li .text {
  position: relative;
  display: block;
  margin-left: 15px;
  flex: 1;
}

.portfolio-details__content .text-box2 ul li .text p {
  margin: 0;
}

.portfolio-details__content .text-box3 {
  position: relative;
  display: block;
  margin-top: 55px;
}

.portfolio-details__content .text-box3 p {
  margin: 0px;
}

.portfolio-details-sidebar-single {
  position: relative;
  display: block;
}

.portfolio-details-sidebar-single.project-details {
  position: relative;
  display: block;
  background: #f2f2f2;
  padding: 41px 30px 50px;
}

.portfolio-details-sidebar-single .title {
  position: relative;
  display: block;
  margin-bottom: 31px;
}

.portfolio-details-sidebar-single .title h2 {
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
}

.portfolio-details-sidebar-single-list {
  position: relative;
  display: block;
}

.portfolio-details-sidebar-single-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 15px 20px 14px;
  margin-bottom: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.portfolio-details-sidebar-single-list li:hover {
  background: var(--thm-base);
}

.portfolio-details-sidebar-single-list li:last-child {
  margin-bottom: 0;
}

.portfolio-details-sidebar-single-list li .left-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 105px;
}

.portfolio-details-sidebar-single-list li .left-box p {
  color: var(--thm-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.portfolio-details-sidebar-single-list li:hover .left-box p {
  color: #ffffff;
}

.portfolio-details-sidebar-single-list li .left-box .dots {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.portfolio-details-sidebar-single-list li:hover .left-box .dots {
  color: #ffffff;
}

.portfolio-details-sidebar-single-list li .right-box {
  position: relative;
  display: block;
}

.portfolio-details-sidebar-single-list li .right-box p {
  color: var(--thm-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.portfolio-details-sidebar-single-list li:hover .right-box p {
  color: #ffffff;
}

.portfolio-details-sidebar-single-list li .right-box ul {
  position: relative;
  display: block;
}

.portfolio-details-sidebar-single-list li .right-box ul li {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0;
  background: transparent;
  margin-right: 5px;
}

.portfolio-details-sidebar-single-list li .right-box ul li a {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.portfolio-details-sidebar-single-list li:hover .right-box ul li a {
  color: #ffffff;
}

.portfolio-details-sidebar-single.img-box {
  position: relative;
  display: block;
  margin-top: 30px;
}

.portfolio-details-sidebar-single-img {
  position: relative;
  display: block;
}

.portfolio-details-sidebar-single-img img {
  width: 100%;
}

/***
=====================================================
    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;
  border-radius: 10px;
}

.blog-details__img img {
  width: 100%;
  transform: scale(1.0);
  transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.blog-details__img:hover img {
  opacity: 0.70;
  transform: scale(1.1) rotate(1deg);
}

.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: 400;
  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: 700;
  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: 59px;
}

.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.0);
  transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.blog-details__content-two-img:hover img {
  opacity: 0.70;
  transform: scale(1.1) rotate(1deg);
}

.blog-details__content-two-details {
  position: relative;
  display: block;
  margin-top: 26px;
}

.blog-details__content-two-text-1 {
  margin: 0;
}

.blog-details__content-two-text-2 {
  margin: 0;
  padding-top: 30px;
}

.blog-details__content-two-points {
  position: relative;
  display: block;
  margin-top: 20px;
}

.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__content-two .blockquote-box {
  position: relative;
  display: block;
  padding-left: 60px;
  margin-top: 19px;
}

.blog-details__content-two .blockquote-box .icon-box {
  position: absolute;
  top: 8px;
  left: 0;
}

.blog-details__content-two .blockquote-box .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 35px;
}

.blog-details__content-two .blockquote-box .text-box {
  position: relative;
  display: block;
}

.blog-details__content-two .blockquote-box .text-box p {
  margin: 0;
}

.blog-details__content-two-text-3 {
  position: relative;
  margin-top: 35px;
  margin-bottom: 20px;
}

.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;
  font-weight: 400;
  text-transform: capitalize;
  background-color: #ffffff;
  border: 1px solid #dcdfe2;
  padding: 5px 30px;
  font-family: var(--thm-font-2);
  -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);
}


/***
=====================================================
  Comments
=====================================================
***/

.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: 50px;
  border: 1px solid #dcdfe2;
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  font-style: normal;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 3px;
  transition: all 500ms ease;
  font-family: var(--thm-font-2);
  outline: none;
}

.comment-form__input-box textarea {
  width: 100%;
  height: 200px;
  background-color: #ffffff;
  border: 1px solid #dcdfe2;
  outline: none;
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 12px 20px 20px;
  font-family: var(--thm-font-2);
  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;
}

/***
=============================================
    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: 45px;
}


.contact-page__content-single-inner .content-box {
  position: relative;
  display: block;
}

.contact-page__content-single-inner .content-box h2 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 14px;
}

.contact-page__content-single-inner .content-box p {
  color: var(--thm-gray);
  font-size: 14px;
  line-height: 26px;
}


.contact-page__content-single-inner .content-box .number1 {
  margin: 0px;
  margin-bottom: 1px;
}

.contact-page__content-single-inner .content-box .number1 a {
  color: var(--thm-gray);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  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: var(--thm-gray);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  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: var(--thm-gray);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  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: var(--thm-gray);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  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;
}

.contact-page__form .comment-form__input-box input[type="text"],
.contact-page__form .comment-form__input-box input[type="email"] {
  text-transform: capitalize;
  font-size: 14px;
  border-radius: 10px;
}


.contact-page__form .comment-form__input-box textarea {
  text-transform: capitalize;
  font-size: 14px;
  border-radius: 10px;
}

.product-details h2{
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-details span{
    font-weight: 600;
    font-size: 20px;
}

.product-details .swiper-container {
  width: 100%;
  max-width: 940px;
}

.product-details .swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.5;
  overflow: hidden;
  cursor: pointer;
  margin: 0 10px 0 0;
}

.product-details .swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  cursor: pointer;
}

.swiper-container img {
	border-radius: 10px;
}

#map{
	width: 100%;
	height: 500px;
}

.swiper-button-next, .swiper-button-prev {
    color: #945C65;
}

.blog-desc ul, .about-desc ul{
    padding-left: 2rem;
    list-style-type: disc;
}

.blog-desc ul li, .about-desc ul li{
    list-style-type: disc;
}