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


@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(../fonts/poppins-400.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(../fonts/poppins-500.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --thm-font: 'Saira Semi Condensed', sans-serif;
  --thm-gray: #878c8f;
  --thm-gray-rgb: 135, 140, 143;
  --thm-base: #dd0429;
  --thm-base-rgb: 221, 4, 41;
  --thm-black: #1a1a1a;
  --thm-black-rgb: 26, 26, 26;
}

.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 {
  color: var(--thm-gray);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--thm-font);
}

body.locked {
  overflow: hidden;
}

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

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

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

:-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,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6
{
color: var(--thm-black);
font-family: var(--thm-font);
margin: 0;
font-weight: 600;
text-transform: uppercase;
}

p {
  margin: 0;
}

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

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

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

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

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


/***
=============================================
    Form Validation Styles
=============================================
***/
input:focus,
textarea:focus,
select:focus {
  border-color: var(--thm-base);
  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;
}

/***
=============================================
    Rating Box 
=============================================
***/
.rating-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.rating-box ul {
  overflow: hidden;
}

.rating-box ul li {
  position: relative;
  display: inline-block;
  margin-right: 0px;
  line-height: 0;
}

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

.rating-box ul li span {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

/***
=============================================
   Sec Title 
=============================================
***/
.sec-title {
  position: relative;
  display: block;
  margin-top: -10px;
  padding-bottom: 46px;
}

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


/***
=============================================
   Sec Title Two
=============================================
***/
.sec-title-two {
  position: relative;
  display: block;
  margin-top: -7px;
  padding-bottom: 46px;
}

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

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

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

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

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

.sec-title-two .sub-title h3,
.sec-title-two .sub-title .h3
{
color: var(--thm-base);
font-size: 22px;
line-height: 32px;
font-weight: 600;
}

.sec-title-two h2 {
  color: var(--thm-black);
  font-size: 45px;
  line-height: 1.2em;
  letter-spacing: -0.01em;
  font-family: var(--thm-font);
}

/***
=============================================
   Sec Title Three
=============================================
***/
.sec-title-three {
  position: relative;
  display: block;
  margin-top: -7px;
  padding-bottom: 48px;
}

.sec-title-three__tagline {
  position: relative;
  display: block;
  margin-bottom: 6px;
}

.sec-title-three__tagline p {
  color: var(--thm-base);
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sec-title-three h2,
.sec-title-three .h2
{
font-size: 45px;
line-height: 55px;
font-weight: 600;
  
}


/***
=============================================
   Thm Btn
=============================================
***/
.thm-btn {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  padding: 20px 40px;
  line-height: 27px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  background: var(--thm-black);
  overflow: hidden;
  font-family: var(--thm-font);
  
  transition: all 0.5s ease-in-out 0.2s;
  z-index: 1;
}


.thm-btn:before {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  content: '';
  margin: auto;
  background-color: var(--thm-base);
  transition: all .5s;
  z-index: -1;
  border-radius: 10px;
}

.thm-btn:hover:before
{
  transform: rotateX(90deg);
}

.thm-btn::after {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  content: '';
  margin: auto;
  background-color: var(--thm-base);
  transition: all .5s;
  z-index: -1;
  border-radius: 10px;
}

.thm-btn:hover::after {
  transform: rotateY(90deg);
}

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

.thm-btn i::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  top: 1px;
  font-weight: 700;
}

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



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

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

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


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

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


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

/***
=============================================
   Scroll To Top
=============================================
***/
.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);
}


/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 20px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 50%;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 60px;
  font-weight: 500;
  border: 1px solid #dee0e2;
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
}

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

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 50%;
  color: var(--thm-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: #ffffff;
}

.styled-pagination li a span:before {
  position: relative;
  top: 1px;
  color: var(--thm-black);
  font-size: 17px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: #ffffff;
}


.checked-box1 {
  position: relative;
  display: block;
  min-height: 20px;
}

.checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--thm-gray);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  min-height: 20px;
  font-family: var(--thm-font);
}

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

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

.checked-box1 label span:before {
  font-family: 'icomoon' !important;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "\e922";
  font-size: 10px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  margin: 0px;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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


/***
=============================================
   Search Popup
=============================================
***/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

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

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
  padding-right: 75px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--thm-base);
  border: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.search-popup__content .thm-btn::before {
  border-radius: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.search-popup__content .thm-btn i::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  background-color: transparent;
  margin-left: 0;
  z-index: 5;
}


.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--brote-primary);
  color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--brote-base);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
  background: var(--brote-white);
  color: var(--brote-base);
  cursor: pointer;
}


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

.preloader-close {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 30px;
  background: #fff;
  text-align: center;
  cursor: pointer;
  z-index: 99999999;
}

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

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

  animation-name: zoomInOut;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;

  -webkit-animation-name: zoomInOut;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;

  -moz-animation-name: zoomInOut;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;

  -ms-animation-name: zoomInOut;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;

  -o-animation-name: zoomInOut;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease-in-out;
}

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


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

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

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

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

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

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

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

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

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


/**
animation: spinner 1s infinite linear;


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

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

.handle-preloader .animation-preloader .txt-loading .letters-loading {}

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

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


/* Animation preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes letters-loading {

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

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


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

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

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



/*--------------------------------------------------------------
  # 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: 15px;
  font-family: var(--thm-font);
  font-weight: 500;
  height: 46px;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>ul>li>a {
  font-size: 14px;
  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: #fff;
}

.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: var(--thm-black);
  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: 30px;
  height: 30px;
  border-radius: 0%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
  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: 16px;
  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;
}

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

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


/****
  .main-menu__right {
    position: relative;
    display: block;
    float: right;
  }
  
  .main-menu__search-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 23px 0;
  }
  
  .main-menu__search-box:before {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: -30px;
    content: "";
    width: 1px;
    background-color: var(--brote-white);
    opacity: .10;
  }
  
  .main-menu__search {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 24px;
    color: var(--brote-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__search:hover {
    color: var(--brote-primary);
  }
  ***/


.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: 32px;
  padding-bottom: 32px;
}

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

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  position: relative;
  font-size: 17px;
  line-height: 27px;
  display: flex;
  align-items: center;
  font-family: var(--thm-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-header-three .main-menu .main-menu__list>li>a
{
color: #fff;
}

.main-header-three .main-menu .main-menu__list>li.current>a,
.main-header-three .main-menu .main-menu__list>li:hover>a {
  color: #fff;
}

.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: 'icomoon' !important;
  content: "\e90c";
  color: #ffffff;
  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: #fff;
  font-weight: 700;
}

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

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

.main-header-three .logo_couleur
{
display: none;
}

.stricky-header .logo_blanc
{
display: none;
}


/*-------------------------------------
    Stricky Header Css
  ---------------------------------------*/
.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;
}


/***
  .mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 0px;
  }
  
  @media (min-width: 1200px) {
    .mobile-nav__buttons {
      display: none;
    }
  }
  
  .mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-base);
    cursor: pointer;
  }
  
  .mobile-nav__buttons a+a {
    margin-left: 10px;
  }
  
  .mobile-nav__buttons a:hover {
    color: var(--brote-base);
  }
  **/

.main-menu .mobile-nav__toggler {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 25px;
  cursor: pointer;
  line-height: 0;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--thm-base);
}

@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: #ffffff;
}

.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: 36px;
  padding-bottom: 37px;
}

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

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



/***
=============================================
Main Header One
=============================================
***/
.main-header-one {
  position: relative;
  display: block;
}

.main-header-one__top {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 19px 0px 20px;
  z-index: 1;
}

.main-header-one__top::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 70%;
  background: #222429;
  content: "";
  z-index: -1;
}

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

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

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

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

.header-social-links {
  position: relative;
  display: block;
}

.header-social-links li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.header-social-links li:last-child {
  margin-right: 0;
}

.header-social-links li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #1a1e1f;
  z-index: 1;
}

.header-social-links li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 0px;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.header-social-links li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.header-social-links li a span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
}

.main-header-one__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-one__top-right-btn {
  position: relative;
  display: block;
}

.main-header-one__top-right-btn a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  background: #222429;
  padding: 16px 65px 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-one__top-right-btn a:hover {
  background: var(--thm-base);
}

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

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

.header-contact-info ul li {
  position: relative;
  display: inline-block;
  margin-left: 30px;
  padding-right: 36px;
}

.header-contact-info ul li:first-child {
  margin-left: 0;
}

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

.header-contact-info ul li::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: rgba(var(--thm-gray-rgb), 0.4);
  transform: rotate(15deg);
  content: "";
}

.header-contact-info ul li:last-child:before {
  display: none;
}

.header-contact-info ul li .inner {
  position: relative;
  display: flex;
  align-items: center;
}

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

.header-contact-info ul li .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 30px;
}

.header-contact-info ul li .content-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.header-contact-info ul li .content-box p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.header-contact-info ul li .content-box h4 {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.header-contact-info ul li .content-box h4 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.header-contact-info ul li .content-box h4 a:hover {
  color: var(--thm-base);
}


.main-header-one__bottom {
  position: relative;
  display: block;
  background: #222429;
  margin-top: 3px;
}

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

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

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

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

.logo-box-one {
  position: relative;
  display: block;
}

.logo-box-one a {
  position: relative;
  display: inline-block;
  width: 230px;
}

.logo-box-one a img {
  width: 100%;
}


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

.main-header-one__bottom-right {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search-box {
  position: relative;
  display: block;
  line-height: 0;
  padding-left: 30px;
}

.header-search-box::before {
  position: absolute;
  top: -6px;
  left: 0;
  bottom: -5px;
  width: 1px;
  background: rgba(255, 255, 255, .5);
  content: "";
}

.header-search-box a {
  color: #ffffff;
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.main-header-one__bottom-right-btn {
  position: relative;
  display: block;
  margin-left: 40px;
}

.main-header-one__bottom-right-btn a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  background: var(--thm-base);
  padding: 15px 40px 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.main-header-one__bottom-right-btn a:hover {
  color: var(--thm-base);
  background: #ffffff;
}

.main-header-one__bottom-right-btn a span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  top: 1px;
  margin-right: 6px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 28px;
}

.main-header-one__bottom-right-btn a:hover span:before {
  color: var(--thm-base);
}

.stricky-header.stricky-header--one .main-menu__wrapper {
  background: var(--thm-black);
}


/***
=============================================
Main Header Two
=============================================
***/
.main-header-two {
  position: relative;
  display: block;
}

.main-header-two__top {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 18px 0px 17px;
}

.main-header-two__top .auto-container {
  max-width: 1670px;
  width: 100%;
}

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

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

.main-header-two__contact-info {
  position: relative;
  display: block;
  line-height: 0;
}

.main-header-two__contact-info li {
  position: relative;
  display: inline-block;
  margin-right: 85px;
}

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

.main-header-two__contact-info li .inner {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__contact-info li .inner .icon-box {
  position: relative;
  display: block;
}

.main-header-two__contact-info li .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  top: -2px;
}

.main-header-two__contact-info li .inner .text-box {
  position: relative;
  display: block;
  margin-left: 15px;
}

.main-header-two__contact-info li .inner .text-box p {
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.main-header-two__contact-info li .inner .text-box a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-two__contact-info li .inner .text-box a:hover {
  color: var(--thm-black);
}


.main-header-two__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__top-right .number {
  position: relative;
  display: block;
  margin-right: 60px;
}

.main-header-two__top-right .number p {
  font-size: 17px;
  line-height: 27px;
  font-weight: 600;
}

.main-header-two__top-right .number p span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  top: 1px;
  margin-right: 5px;
}

.main-header-two__top-right .number p a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-two__top-right .number p a:hover {
  color: var(--thm-black);
}

.main-header-two__top-right .btn-box {
  position: relative;
  display: block;
}

.main-header-two__top-right .btn-box a {
  position: relative;
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0px 30px 0px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.main-header-two__top-right .btn-box a::before {
  position: absolute;
  top: -22px;
  left: 0;
  bottom: -19px;
  right: 0;
  background: rgba(255, 255, 255, .2);
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.main-header-two__top-right .btn-box a:hover:before {
  background: rgba(255, 255, 255, 1.0);
}

.main-header-two__top-right .btn-box a:hover {
  color: var(--thm-base);
}


.main-header-two__bottom {
  position: relative;
  display: block;
  background: #fefbfa;
}

.main-header-two__bottom::before {
  position: absolute;
  top: -40px;
  left: 0;
  bottom: 0;
  width: 410px;
  background: #fefbfa;
  clip-path: polygon(0 0, 79% 0, 100% 100%, 0% 100%);
  content: "";
}

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

.main-header-two__bottom .auto-container {
  max-width: 1670px;
  width: 100%;
}

.main-header-two__bottom .main-menu__wrapper-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
}

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

.main-header-two__bottom .main-menu .main-menu__list>li.current>a,
.main-header-two__bottom .main-menu .main-menu__list>li:hover>a {
  color: var(--thm-base);
}

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

.main-header-two__bottom .main-menu .main-menu__list>li.dropdown>a:before {
  display: none;
}

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

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


.main-header-two__bottom .main-menu .main-menu__list>li>a .line,
.main-header-two__bottom .stricky-header .main-menu__list>li>a .line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -32px;
  width: 2px;
  height: 0px;
  background: var(--thm-black);
  margin: 0px auto 0px;
  transition: all 0.4s ease-in-out 0.3s;
}

.main-header-two__bottom .main-menu .main-menu__list>li>a:hover .line,
.main-header-two__bottom .stricky-header .main-menu__list>li>a:hover .line,
.main-header-two__bottom .main-menu .main-menu__list>li.current>a .line,
.main-header-two__bottom .stricky-header .main-menu__list>li.current>a .line {
  transition: all 0.4s ease-in-out 0.3s;
  height: 20px;
}

.main-header-two__bottom .main-menu .main-menu__list>li>a .line::before,
.main-header-two__bottom .stricky-header .main-menu__list>li>a .line::before {
  position: absolute;
  top: 6px;
  left: -5px;
  bottom: 0;
  width: 2px;
  background: var(--thm-black);
  content: "";
}

.main-header-two__bottom .main-menu .main-menu__list>li>a .line::after,
.main-header-two__bottom .stricky-header .main-menu__list>li>a .line::after {
  position: absolute;
  top: 6px;
  right: -5px;
  bottom: 0;
  width: 2px;
  background: var(--thm-black);
  content: "";
}

.main-header-two__bottom-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__bottom .main-header-one__bottom-right-btn a:hover {
  color: #ffffff;
  background: var(--thm-black);
}

.main-header-two__bottom-right .header-search-box::before {
  position: absolute;
  top: -6px;
  left: 0;
  bottom: -5px;
  width: 1px;
  background: var(--thm-black);
  content: "";
}

.main-header-two__bottom-right .header-search-box a {
  color: var(--thm-black);
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-two__bottom-right .header-search-box a:hover {
  color: var(--thm-base)
}

.header-social-links-style2 {
  position: relative;
  display: block;
  margin-left: 40px;
}

.header-social-links-style2 li {
  position: relative;
  display: inline-block;
  margin-right: 5px;
}

.header-social-links-style2 li:last-child {
  margin-right: 0;
}

.header-social-links-style2 li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f2eeeb;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.header-social-links-style2 li a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.header-social-links-style2 li a:hover {
  background: var(--thm-base);
}

.header-social-links-style2 li a:hover span::before {
  color: #ffffff;
}

.stricky-header--two .header-social-links-style2 {
  display: none;
}

.stricky-header--two.stricky-header .main-menu__list>li>a {
  color: var(--thm-black);
}

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

.stricky-header--two.stricky-header .main-menu__list>li.dropdown>a:before {
  color: var(--thm-black);
}

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


/***
=============================================
Header Three
=============================================
***/
.main-header-three {
  position: relative;
  display: block;
}

.main-header-three__top {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 9px 0px 7px;
}

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

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

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

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

.main-header-three__contact-info li {
  position: relative;
  display: inline-block;
  margin-right: 95px;
}

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

.main-header-three__contact-info li .inner {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__contact-info li .inner .icon-box {
  position: relative;
  display: block;
}

.main-header-three__contact-info li .inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  top: -1px;
}

.main-header-three__contact-info li .inner .text-box {
  position: relative;
  display: block;
  margin-left: 6px;
}

.main-header-three__contact-info li .inner .text-box p {
  font-size: 15px;
  line-height: 25px;
}

.main-header-three__contact-info li .inner .text-box p a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-three__contact-info li .inner .text-box p a:hover {
  color: var(--thm-base);
}

.main-header-three__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__top-right .login-register {
  position: relative;
  display: block;
  padding-left: 35px;
  padding-right: 30px;
}

.main-header-three__top-right .login-register::before {
  position: absolute;
  top: -10px;
  left: 0;
  bottom: -7px;
  right: 0;
  background: #f2f7f7;
  content: "";
}

.main-header-three__top-right .login-register ul {
  position: relative;
  display: block;
}

.main-header-three__top-right .login-register ul li {
  position: relative;
  display: inline-block;
  margin-left: 5px;
  padding-right: 10px;
}

.main-header-three__top-right .login-register ul li::before {
  position: absolute;
  right: 0;
  width: 1px;
  top: 5px;
  bottom: 4px;
  background: var(--thm-gray);
  transform: rotate(10deg);
  content: "";
}

.main-header-three__top-right .login-register ul li:last-child:before {
  display: none;
}

.main-header-three__top-right .login-register ul li a {
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 23px;
  font-weight: 400;
  
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-three__top-right .login-register ul li a:hover {
  color: var(--thm-base);
}

.main-header-three__top-right .login-register ul li a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  top: 2px;
  padding-right: 5px;
}

.main-header-three__top-right .social-links {
  position: relative;
  display: block;
  margin-left: 40px;
}

.main-header-three__top-right .social-links li {
  position: relative;
  display: inline-block;
  margin-right: 20px;
}

.main-header-three__top-right .social-links li:last-child {
  margin-right: 0;
}

.main-header-three__top-right .social-links li a {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-three__top-right .social-links li a:hover {
  color: var(--thm-base);
}

.main-header-three__top-right .social-links li a span::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
}

.main-header-three__bottom {
  position: relative;
  display: block;
  background: var(--thm-black);
}

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

.main-header-three__bottom .auto-container,
.stricky-header--three .auto-container
{
  max-width: 1805px;
  width: 100%;
}

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

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

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

.main-header-three__bottom-right {
  position: relative;
  display: flex;
  align-items: center;
}


.main-header-three__bottom-right .contact-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.main-header-three__bottom-right .contact-box .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--thm-base);
  border-radius: 50%;

}

.main-header-three__bottom-right .contact-box .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
}

.main-header-three__bottom-right .contact-box .text-box {
  position: relative;
  display: block;
  margin-left: 10px;
}

.main-header-three__bottom-right .contact-box .text-box p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  
}

.main-header-three .main-header-three__bottom-right .contact-box .text-box p {
color: #ffffff;
}

.main-header-three__bottom-right .contact-box .text-box h4,
.main-header-three__bottom-right .contact-box .text-box .h4
{
font-size: 14px;
line-height: 22px;
font-weight: 400;
}

.main-header-three__bottom-right .contact-box .text-box h4 a,
.main-header-three__bottom-right .contact-box .text-box .h4 a
{
transition: all 200ms linear;
transition-delay: 0.1s;
}

.main-header-three .main-header-three__bottom-right .contact-box .text-box h4 a,
.main-header-three .main-header-three__bottom-right .contact-box .text-box .h4 a
{
color: #ffffff;
}

.main-header-three__bottom-right .contact-box .text-box h4 a:hover,
.main-header-three__bottom-right .contact-box .text-box .h4 a:hover
{
text-decoration: underline;
}

.stricky-header--three.stricked-menu .main-header-three__bottom-right .contact-box .text-box .h4 a:hover
{
color: #000;
}

.main-menu .main-menu__list>li>a:after {
  position: absolute;
  left: 0;
  bottom: 3px;
  right: 0;
  height: 6px;
  background: rgba(220,14,101, .5);
  content: "";
  z-index: -1;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
}

.sticky-header__content .main-menu__list>li>a:after
{
height: 4px;
background: rgb(220,14,101);
}

.sticky-header__content .main-menu__list>li>a:hover
{
color: var(--thm-black);
}

.main-menu .main-menu__list>li>a:hover:after,
.main-menu .main-menu__list>li.current-menu-item>a:after,
.main-menu .main-menu__list>li.current_page_parent>a:after
{
  transform: scale(1, 1);
  transform-origin: left center;
}

/*
.stricky-header.stricky-header--three .main-menu__wrapper {
  background-color: var(--thm-black);
}*/

/*
.stricky-header--three .main-header-one__bottom-right-btn {
  display: none;
}*/


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

.main-slider-one .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  -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-one .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.main-slider-one .shape1 {
  position: absolute;
  top: -20px;
  left: 0;
  bottom: 0;
  right: 30%;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  opacity: 0.8;
  z-index: 1;
  opacity: 0;
  transform: translateX(-10%);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-one .swiper-slide-active .shape1 {
  opacity: 0.8;
  transform: translateX(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.main-slider-one .shape2 {
  position: absolute;
  top: -135px;
  left: 0;
  opacity: 0.08;
  z-index: 1;
  opacity: 0;
  transform: translateX(-10%);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-one .swiper-slide-active .shape2 {
  opacity: 0.08;
  transform: translateX(0);
  -webkit-transition-delay: 1800ms;
  -moz-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.main-slider-one .shape3 {
  position: absolute;
  left: 0;
  bottom: 150px;
  opacity: 0.8;
  z-index: 1;
  opacity: 0;
  transform: translateX(-10%);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-one .swiper-slide-active .shape3 {
  opacity: 0.8;
  transform: translateX(0);
  -webkit-transition-delay: 2300ms;
  -moz-transition-delay: 2300ms;
  -ms-transition-delay: 2300ms;
  -o-transition-delay: 2300ms;
  transition-delay: 2300ms;
}

.main-slider-one__content {
  position: relative;
  display: block;
  padding: 159px 0px 166px;
  z-index: 5;
}

.main-slider-one__content .title {
  position: relative;
  display: block;
  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-one .swiper-slide-active .main-slider-one__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: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-one__content .title h2 {
  color: #ffffff;
  font-size: 80px;
  line-height: 1.1em;
  font-weight: 800;
}

.main-slider-one__content .btn-box {
  position: relative;
  display: block;
  margin-top: 49px;
  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-one .swiper-slide-active .main-slider-one__content .btn-box {
  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: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider__nav {
  position: absolute;
  top: 40%;
  right: 70px;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  line-height: 0;
  height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: scaleX(1.0) translateX(0px);
  z-index: 105;
}

.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.5);
  border-radius: 50%;
  color: var(--thm-black);
  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 Two
=============================================
***/
.main-slider-two {
  position: relative;
  display: block;
  z-index: 1;
}

.main-slider-two .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 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-two .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.main-slider-two .image-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 640px;
  background: #000000;
  opacity: 0.83;
  content: "";
  z-index: -2;
}

.main-slider-two__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-base-rgb), 0.83);
  width: 640px;
  content: "";
  z-index: -1;
}

.main-slider-two__img {
  position: absolute;
  top: 0;
  right: 150px;
  opacity: 0;
  transform: translateX(100%);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 99;
}

.main-slider-two .swiper-slide-active .main-slider-two__img {
  opacity: 1;
  transform: translateX(0);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider-two .shape1 {
  position: absolute;
  top: -40px;
  left: -80px;
  width: 320px;
  height: 320px;
  border: 45px solid #ffffff;
  opacity: 0.05;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transform: translateX(-100%);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-two .swiper-slide-active .shape1 {
  opacity: 0.05;
  transform: translateX(0);
  -webkit-transition-delay: 2200ms;
  -moz-transition-delay: 2200ms;
  -ms-transition-delay: 2200ms;
  -o-transition-delay: 2200ms;
  transition-delay: 2200ms;
}

.main-slider-two .shape2 {
  position: absolute;
  top: -110px;
  right: -80px;
  width: 320px;
  height: 320px;
  border: 45px solid #ffffff;
  opacity: 0.05;
  border-radius: 50%;
  z-index: -1;
}

.main-slider-two .shape3 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.5;
  z-index: -1;
  opacity: 0;
  -webkit-transform: perspective(400px) translateY(100%);
  -ms-transform: perspective(400px) translateY(100%);
  transform: perspective(400px) translateY(100%);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 1200ms ease;
  -moz-transition: all 1200ms ease;
  -ms-transition: all 1200ms ease;
  -o-transition: all 1200ms ease;
  transition: all 1200ms ease;
}

.main-slider-two .swiper-slide-active .shape3 {
  opacity: 1.0;
  -webkit-transform: perspective(400px) translateY(0px);
  -ms-transform: perspective(400px) translateY(0px);
  transform: perspective(400px) translateY(0px);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
  opacity: 0.5;
}

.main-slider-two__content {
  position: relative;
  display: block;
  padding: 151px 0px 190px;
}

.main-slider-two__list {
  position: relative;
  display: block;
  margin-bottom: 11px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 10;
}

.main-slider-two .swiper-slide-active .main-slider-two__list {
  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-two__list ul {
  position: relative;
  display: block;
}

.main-slider-two__list ul li {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-transform: uppercase;
  padding-right: 15px;
  margin-left: 10px;
}

.main-slider-two__list ul li:last-child {
  padding-right: 0;
}

.main-slider-two__list ul li:first-child {
  margin-left: 0;
}

.main-slider-two__list ul li::before {
  position: absolute;
  top: 9px;
  right: 0;
  bottom: 8px;
  width: 2px;
  background: #ffffff;
  content: "";
}

.main-slider-two__list ul li:last-child:before {
  display: none;
}

.main-slider-two__content .title {
  position: relative;
  display: block;
  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 1200ms ease;
  -moz-transition: all 1200ms ease;
  -ms-transition: all 1200ms ease;
  -o-transition: all 1200ms ease;
  transition: all 1200ms ease;
  z-index: 10;
}

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

.main-slider-two__content .title h2 {
  color: #ffffff;
  font-size: 80px;
  line-height: 1.2em;
  font-weight: 700;
  
}

.main-slider-two__content .btn-box {
  position: relative;
  display: block;
  line-height: 0px;
  margin-top: 35px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 10;
}

.main-slider-two .swiper-slide-active .main-slider-two__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__nav.style2 {
  position: absolute;
  top: 40%;
  left: 70px;
  right: auto;
}

.main-slider__nav.style2 .swiper-button-next,
.main-slider__nav.style2 .swiper-button-prev {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

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


/***
=============================================
Main Slider Three
=============================================
***/
.main-slider-three {
  position: relative;
  display: block;
}

.main-slider-three .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  -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-three .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/*
.main-slider-three .image-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #020009;
  opacity: 0.75;
  content: "";
  z-index: -1;
}*/

.main-slider-three__img {
  position: absolute;
  top: -10px;
  right: -30px;
  opacity: 0;
  transform: translateX(10%);
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 2;
}

.main-slider-three .swiper-slide-active .main-slider-three__img {
  opacity: 1;
  transform: translateX(0);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-three__content
{
position: relative;
display: block;
z-index: 5;
height: 700px;
display: flex;
flex-direction: column;
justify-content: center;
}



@media screen and (min-width: 1200px)
{
	.main-slider-three__content {
	max-width: 800px;
	}
}

@media screen and (min-width: 1400px)
{
	.main-slider-three__content {
	max-width: 600px;
	}
}

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

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

.main-slider-three__content .title h2,
.main-slider-three__content .title .h2
{
color: #ffffff;
font-size: 30px;
line-height: 33px;
line-height: 1.2em;
font-weight: 500;
}

@media screen and (min-width: 992px)
{
	.main-slider-three__content .title h2,
	.main-slider-three__content .title .h2
	{
	font-size: 2.6vw;
    line-height: 2.8vw;
	}
}

@media screen and (min-width: 1921px)
{
	.main-slider-three__content .title h2,
	.main-slider-three__content .title .h2
	{
	font-size: 43px;
	line-height: 45px;
	}
}

.main-slider-three__content p {
  color: #ffffff;
  font-weight: 500;
  opacity: 0;
  transition: all 1500ms ease;
  transform: translateY(80px);
}

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

.main-slider-three__content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 41px;
  opacity: 0;
  transition: all 1500ms ease;
  transform: translateY(80px);
}

.main-slider-three .swiper-slide-active .main-slider-three__content-bottom
{
opacity: 1;
transform: translateX(0);
transition-delay: 1600ms;
display: flex;
gap: 30px;
}

@media screen and (max-width: 575px)
{
	.main-slider-three .swiper-slide-active .main-slider-three__content-bottom
	{
	flex-direction: column;
	align-items: flex-start;
	}
}

.main-slider-three__content-bottom .btn-box {
  position: relative;
  display: block;
}

.main-slider-three__content-bottom .video-box {
  position: relative;
  display: block;
  margin-left: 35px;
}

.main-slider-three__content-bottom .video-box a {
  position: relative;
  display: inline-block;
}

.main-slider-three__content-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  text-align: center;
  font-size: 13px;
  color: var(--thm-base);
  z-index: 1;
}

.main-slider-three__content-icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  z-index: 5;
}

.main-slider-three__content-icon::before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background-color: #ffffff;
  content: "";
  z-index: 1;
}

.main-slider-three__content-icon::after {
  position: absolute;
  top: -4px;
  left: -4px;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background-color: var(--thm-base);
  content: "";
  z-index: -1;
}


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

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

.page-header__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000001;
  opacity: 0.7;
  content: "";
  z-index: -2;
}

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

.page-header__inner h2 {
  color: #ffffff;
  font-size: 80px;
  line-height: 1em;
  font-weight: 700;
  
  margin-bottom: 19px;
}

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

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

.page-header__inner .thm-breadcrumb li span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
  top: 2px;
}

.page-header__inner .thm-breadcrumb li a {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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


/***
=============================================
Feature One
=============================================
***/
.feature-one {
  position: relative;
  display: block;
  background: #f2f4f3;
  padding: 0px 0px 120px;
  z-index: 1;
}

.feature-one__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center center;
  background-repeat: repeat;
  z-index: -1;
}

.feature-one .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.22;
  z-index: -1;
}

.feature-one .shape2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.22;
  z-index: -1;
}

.feature-one__content {
  position: relative;
  display: block;
  margin-left: -45px;
  margin-right: 10px;
}

.feature-one__content-list {
  position: relative;
  display: block;
}

.feature-one__content-list li {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
  padding: 52px 35px 52px;
  margin-bottom: 30px;
  z-index: 1;
}

.feature-one__content-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 0px;
  background-color: var(--thm-base);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.feature-one__content-list li:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.feature-one__content-list li:last-child {
  margin-bottom: 0;
}

.feature-one__content-list li .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-one__content-list li .inner .left-content {
  position: relative;
  display: flex;
  align-items: center;
}

.feature-one__content-list li .inner .icon-box {
  position: relative;
  display: block;
}

.feature-one__content-list li .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 75px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-one__content-list li:hover .inner .icon-box span::before {
  color: #ffffff;
}

.feature-one__content-list li .inner .title-box {
  position: relative;
  display: block;
  margin-left: 40px;
}

.feature-one__content-list li .inner .title-box h2 {
  font-size: 35px;
  line-height: 40px;
  font-weight: 700;
  
}

.feature-one__content-list li .inner .title-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-one__content-list li:hover .inner .title-box h2 a {
  color: #ffffff;
}

.feature-one__content-list li .inner .btn-box {
  position: relative;
  display: block;
}

.feature-one__content-list li .inner .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background: var(--thm-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-one__content-list li:hover .inner .btn-box a {
  background: #ffffff;
}

.feature-one__content-list li .inner .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-one__content-list li:hover .inner .btn-box a span::before {
  color: var(--thm-base);
}


.feature-one__form {
  position: relative;
  display: block;
  padding: 40px 40px 52px;
  margin-left: 20px;
  margin-right: -45px;
  z-index: 1;
}

.feature-one__form-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.feature-one__form-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  content: "";
  mix-blend-mode: multiply;
  z-index: -2;
}

.feature-one__form .title-box {
  position: relative;
  display: block;
}

.feature-one__form .title-box h2 {
  color: #ffffff;
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  
}

.feature-one__form .form-box {
  position: relative;
  margin-top: 19px;
}

.feature-one__form .form-box form {
  position: relative;
}

.feature-one__form .form-box form .form-group {
  position: relative;
  margin-bottom: 15px;
}

.feature-one__form .form-box form .form-group input[type="text"],
.feature-one__form .form-box form .form-group input[type="email"],
.feature-one__form .form-box form .form-group input[type="tel"],
.feature-one__form .form-box form .form-group input[type="url"],
.feature-one__form .form-box form .form-group textarea,
.feature-one__form .form-box form .form-group select {
  position: relative;
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  font-weight: 600;
  text-transform: none;
  padding: 0px 20px 0px;
  width: 100%;
  height: 65px;
  background-color: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 0px;
  outline: none;
  font-family: var(--thm-font);
}

.feature-one__form .form-box form .form-group textarea {
  height: 135px;
  resize: none;
  padding-top: 10px;
}

.feature-one__form .form-box form .form-group .select-box {
  position: relative;
  display: block;
  width: 100%;
  height: 65px;
}

.feature-one__form .form-box form .form-group .nice-select {
  position: relative;
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  font-weight: 600;
  text-transform: none;
  padding: 0px 20px 0px;
  width: 100%;
  height: 65px;
  line-height: 65px;
  background-color: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 0px;
  outline: none;
  font-family: var(--thm-font);
}

.feature-one__form .form-box form .form-group .nice-select:after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, .8);
  border-right: 2px solid rgba(255, 255, 255, .8);
  right: 23px;
  margin-top: 0px;
  top: 25px;
  z-index: 10;
}

.feature-one__form .form-box form .form-group .nice-select .list {
  background-color: var(--thm-black);
}

.feature-one__form .form-box form .button-box {
  position: relative;
  display: block;
}

.feature-one__form .form-box form .button-box button {
  position: relative;
  z-index: 5;
}

.feature-one__form .form-box form .button-box button.thm-btn {
  background-color: var(--thm-black);
  position: relative;
  display: block;
  width: 100%;
  border-radius: 0;
  line-height: 65px;
  z-index: 5;
}

.feature-one__form .form-box form .button-box button.thm-btn::before {
  border-radius: 0;
}

.feature-one__form .form-box form .button-box button.thm-btn::after {
  border-radius: 0;
}


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

.about-one__bg {
  position: absolute;
  top: 120px;
  left: 0;
  bottom: 120px;
  right: 53%;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  border-top-right-radius: 270px;
  border-bottom-right-radius: 270px;
  background-blend-mode: luminosity;
  background: #222429;
  z-index: -1;
}

.about-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-top-right-radius: 270px;
  border-bottom-right-radius: 270px;
  background: #222429;
  opacity: 0.83;
  content: "";
  z-index: -2;
}

.about_one__row
{
margin-bottom: 40px;
}

@media screen and (min-width: 768px)
{
	.about_one__row
	{
	margin-bottom: 70px;
	}
}

@media screen and (min-width: 1200px)
{
	.about_one__row
	{
	margin-bottom: 130px;
	}
}

.about_one__row:nth-child(even) .about-one__img .inner
{
margin-left: auto;
}

.about-one .shape1 {
  position: absolute;
  top: 290px;
  left: 0;
  opacity: 0.9;
  z-index: -1;
}

.about-one .shape4 {
  position: absolute;
  bottom: 120px;
  right: -40px;
  opacity: 0.1;
  z-index: -1;
}

.about-one__img {
  position: relative;
  display: block;
  margin-top: 8px;
}

.about-one__img .inner {
  position: relative;
  display: block;
  max-width: 520px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}


@media screen and (max-width: 991px)
{
	.about-one__img .inner {
		margin: 0 auto;
	}
}

.about-one__img .inner .shape2 {
  position: absolute;
  left: -160px;
  bottom: 40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--thm-base);
  opacity: 0.8;
}

.about-one__img .inner .shape3 {
  position: absolute;
  left: -50px;
  bottom: 125px;
  opacity: 0.2;
  z-index: 1;
}

.about-one__img .inner img {
  width: 100%;
}


.about-one__content {
position: relative;
display: block;
margin-left: -15px;
}

@media screen and (max-width: 991px)
{
	.about-one__content {
	margin-bottom: 15px;
	}
}

.about-one__content .sec-title {
  padding-bottom: 27px;
}

.about-one__content .sec-title h2 {
	font-size: 25px;
}

@media screen and (min-width: 768px)
{
	.about-one__content .sec-title h2 {
		font-size: 35px;
	}
}

@media screen and (min-width: 992px)
{
	.about-one__content .sec-title h2 {
		font-size: 40px;
	}
}


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

.about-one__content-text p {
  margin: 0;
}


.about-one__content-text2 {
  position: relative;
  display: block;
  margin-top: 18px;
}

.about-one__content-text2-single {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.about-one__content-text2-single ul {
  position: relative;
  display: block;
}

.about-one__content-text2-single ul li {
  position: relative;
  display: block;
  padding-left: 40px;
}

.about-one__content-text2-single ul li .icon-box {
  position: absolute;
  top: 0;
  left: 0;
}

.about-one__content-text2-single ul li .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 25px;
  top: 3px;
}

.about-one__content-text2-single ul li .text-box {
  position: relative;
  display: block;
}

.about-one__content-text2-single ul li .text-box p {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.about-one__content-text2-single .text {
  position: relative;
  display: block;
  margin-top: 18px;
}

.about-one__content-text2-single .text p {
  margin: 0;
}


.about-one__content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 11px;
}

.about-one__content-bottom .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.about-one__content-bottom .contact-info {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 35px;
}

.about-one__content-bottom .contact-info .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid #e0e4e8;
  border-radius: 50%;
}

.about-one__content-bottom .contact-info .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 20px;
}

.about-one__content-bottom .contact-info .text-box {
  position: relative;
  display: block;
  margin-left: 10px;
}

.about-one__content-bottom .contact-info .text-box h4 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}

.about-one__content-bottom .contact-info .text-box h4 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.about-one__content-bottom .contact-info .text-box h4 a:hover {
  color: var(--thm-base);
}

.about-one__content-bottom .contact-info .text-box p {
  margin: 0;
}

/***
=============================================
Services One
=============================================
***/
.services-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 90px;
  z-index: 1;
}

.services-one .auto-container {
  max-width: 1360px;
  width: 100%;
}

.services-one__single {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 10%);
  padding: 50px 0px 40px;
  margin-bottom: 30px;
  z-index: 1;
}

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

.services-one__single-img .inner {
  position: relative;
  display: block;
  width: 200px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto;
}

.services-one__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.6);
  opacity: 0;
  z-index: 1;
  content: "";
}

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

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

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

.services-one__single-img .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--thm-base);
  margin: -50px auto 0px;
  z-index: 2;
}

.services-one__single-img .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 45px;
}

.services-one__single-title {
  position: relative;
  display: block;
  margin-top: 25px;
}

.services-one__single-title h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  
}

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

.services-one__single-title h2 a:hover {
  color: var(--thm-base);
}


/***
=============================================
Brand One
=============================================
***/
.brand-one {
  position: relative;
  display: block;
  padding: 100px 0 100px;
  z-index: 2;
}

.brand-one::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 200px;
  bottom: 0;
  background: var(--thm-base);
  border-bottom-right-radius: 60px;
  content: "";
  z-index: -1;
}

.brand-one .swiper-slide {
  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;
  border: 1px solid rgba(255, 255, 255, 0.8);
  height: 145px;
  transition: .5s ease;
}

.brand-one .swiper-slide:hover {
  border-color: #ffffff;
}

.brand-one .swiper-slide img {
  transition: .5s ease;
  transform: scale(1.02);
  opacity: 0.8;
  width: auto;
}

.brand-one .swiper-slide:hover img {
  opacity: 1;
  transform: scale(1);
}


/***
=============================================
Portfolio One
=============================================
***/
.portfolio-one {
  position: relative;
  display: block;
  background: #eff0f0;
  padding: 240px 0px 120px;
  z-index: 1;
  margin-top: -120px;
}

.portfolio-one__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;
  opacity: 0.17;
  z-index: -1;
}

.portfolio-one__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 46px;
}

.portfolio-one__top .sec-title {
  padding-bottom: 0;
}

.portfolio-one__top .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

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

.portfolio-one__tab-box {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.portfolio-one__tab-menu {
  position: relative;
  display: block;
  padding: 38px 50px 41px;
  max-width: 400px;
  width: 100%;
  z-index: 1;
}

.portfolio-one__tab-menu .title {
  position: relative;
  display: block;
  margin-bottom: 17px;
}

.portfolio-one__tab-menu .title h2 {
  color: #ffffff;
  font-size: 55px;
  line-height: 65px;
  font-weight: 700;
  
}

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

.portfolio-one__tab-menu-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.72);
  content: "";
  z-index: -1;
}


.portfolio-one__tab-menu .tab-buttons {
  position: relative;
  display: block;
}

.portfolio-one__tab-menu .tab-buttons .tab-btn {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  background-color: transparent;
  padding: 16px 0px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .6);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.portfolio-one__tab-menu .tab-buttons .tab-btn:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

.portfolio-one__tab-menu .tab-buttons .tab-btn span::before {
  position: relative;
  display: inline-block;
  float: right;
  color: #ffffff;
  font-size: 16px;
  top: 5px;
}

.portfolio-one__inner .tabs-content {
  position: relative;
  display: block;
  max-width: 800px;
  width: 100%;
  margin-top: 45px;
  margin-left: -30px;
  z-index: 5;
}

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

.portfolio-one__inner .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}


.tabs-content__inner {
  position: relative;
  display: block;
}

.tabs-content__img {
  position: relative;
  display: block;
}

.tabs-content__img .inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.tabs-content__img .inner img {
  width: 100%;
}

.tabs-content__img .content-box {
  position: absolute;
  left: 140px;
  bottom: 0;
  right: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 61px 40px 26px;
}

.tabs-content__img .content-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 5px 8.66px 20px 0px rgb(130, 132, 134, 0.08);
  clip-path: polygon(0 0, 100% 21%, 100% 100%, 0% 100%);
  content: "";
}

.tabs-content__img .content-box .text-box {
  position: relative;
  display: block;
}

.tabs-content__img .content-box .text-box h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  
  letter-spacing: -0.01em;
}

.tabs-content__img .content-box .text-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.tabs-content__img .content-box .text-box h2 a:hover {
  color: var(--thm-base);
}

.tabs-content__img .content-box .text-box p {
  font-weight: 500;
  margin: 0px;
}

.tabs-content__img .content-box .btn-box {
  position: relative;
  display: block;
}

.tabs-content__img .content-box .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--thm-base);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.tabs-content__img .content-box .btn-box a:hover {
  background: var(--thm-black);
}

.tabs-content__img .content-box .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
}


/***
=============================================
Features Two
=============================================
***/
.features-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 70px;
  z-index: 1;
}

.features-two__single {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.features-two__single-inner {
  position: relative;
  display: block;
  padding-left: 90px;
}

.features-two__single-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 9px;
  left: 0;
  width: 60px;
  height: 60px;
  background: var(--thm-black);
  border-radius: 50%;
  z-index: 1;
}

.features-two__single-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 50%;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.features-two__single:hover .features-two__single-icon::before {
  transform: scale(1.0);
  opacity: 1;
}

.features-two__single-icon span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 25px;
}

.features-two__single-content {
  position: relative;
  display: block;
}

.features-two__single-content h2 {
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
  
  margin-bottom: 7px;
}

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

}

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

.features-two__single-content p {
  margin: 0;
}


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

.product-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 center;
  z-index: -1;
}

.product-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000002;
  opacity: 0.75;
  content: "";
  z-index: -1;
}

.product-one__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: repeat;
  z-index: -1;
}

.product-one .sec-title h2 {
  color: #ffffff;
}

.product-one .shape1 {
  position: absolute;
  top: 200px;
  left: 0;
  z-index: -1;
}

.product-one .shape2 {
  position: absolute;
  right: 0;
  bottom: 80px;
  z-index: -1;
}

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

.product-one__single {
  position: relative;
  display: block;
  padding-top: 75px;
}

.product-one__single-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 205px;
  height: 205px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
  margin: 0 auto;
  z-index: 1;
}

.product-one__single-img img {
  width: auto;
  transform: scale(1);
  transition: all 0.7s ease 0s;
}

.product-one__single:hover .product-one__single-img img {
  transform: scale(1.1);
}

.product-one__single-inner {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
  border-radius: 8px;
  padding: 153px 30px 50px;
}

.product-one__single-inner .rating-box {
  position: relative;
  display: block;
  margin-bottom: 4px;
}

.product-one__single-inner .content-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.product-one__single-inner .content-box .left {
  position: relative;
  display: block;
}

.product-one__single-inner .content-box .left h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  
}

.product-one__single-inner .content-box .left h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-one__single-inner .content-box .left h3 a:hover {
  color: var(--thm-base);
}

.product-one__single-inner .content-box .left p {
  font-size: 16px;
  letter-spacing: 0.04em;
}

.product-one__single-inner .content-box .right {
  position: relative;
  display: block;
}

.product-one__single-inner .content-box .right p {
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.product-one__single-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--thm-base);
  padding: 10px 30px 10px;
  margin-top: 20px;
  z-index: 5;
}

.product-one__single-cart-btn .title {
  position: relative;
  display: block;
}

.product-one__single-cart-btn .title h6 {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

.product-one__single-cart-btn .title h6 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-one__single-cart-btn .title h6 a:hover {
  color: #ffffff;
}

.product-one__single-cart-btn .icon {
  position: relative;
  display: block;
}

.product-one__single-cart-btn .icon ul {
  position: relative;
  display: block;
}

.product-one__single-cart-btn .icon ul li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.product-one__single-cart-btn .icon ul li:last-child {
  margin-right: 0px;
}

.product-one__single-cart-btn .icon ul li a {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 15px;
}

.product-one__carousel.owl-carousel .owl-item img {
  width: auto;
}

.product-one .owl-theme .owl-nav {
  position: absolute;
  margin-top: 0;
  top: -107px;
  right: 0;
}

.product-one .owl-carousel .owl-nav button.owl-prev,
.product-one .owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 0px;
  background-color: rgba(255, 255, 255, .4);
  color: rgba(255, 255, 255, .7);
  font-size: 20px;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

/***
=============================================
Testimonial One
=============================================
***/
.testimonial-one {
  position: relative;
  display: block;
  background: #f2f4f3;
  padding: 120px 0px 120px;
  z-index: 1;
}

.testimonial-one__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: repeat;
  background-position: center center;
  z-index: -1;
}

.testimonial-one .shape1 {
  position: absolute;
  left: 0;
  bottom: -25px;
  right: 0;
  text-align: center;
  opacity: 0.04;
  z-index: -1;
}

.testimonial-one__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 46px;
}

.testimonial-one__top .sec-title {
  padding-bottom: 0px;
}

.testimonial-one__top .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

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

.testimonial-one__single {
  position: relative;
  display: block;
  border-radius: 0px;
  background-color: #ffffff;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
  padding: 50px 45px 50px;
}

.testimonial-one__single-top {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.testimonial-one__single-top .img-box {
  position: relative;
  display: block;
  width: 125px;
}

.testimonial-one__single-top .img-box .inner {
  position: relative;
  display: block;
  width: 125px;
  overflow: hidden;
  border-top-left-radius: 30px;
  border: 5px solid var(--thm-base);
}

.testimonial-one__single-top .img-box .inner::before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border: 5px solid #ffffff;
  border-top-left-radius: 25px;
  content: "";
}

.testimonial-one__single-top .img-box .inner img {
  width: 100%;
}

.testimonial-one__single-top .img-box .icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 5px 30px 0px rgb(0, 0, 0, 0.07);
}

.testimonial-one__single-top .img-box .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
}

.testimonial-one__single-top .text-box {
  position: relative;
  display: block;
  margin-left: 40px;
  margin-top: 12px;
}

.testimonial-one__single-top .text-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  
  letter-spacing: -0.02em;
}

.testimonial-one__single-top .text-box p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonial-one__single-top .rating-box {
  position: relative;
  display: block;
  margin-top: 1px;
}

.testimonial-one__single-bottom {
  position: relative;
  display: block;
  margin-top: 21px;
}

.testimonial-one__single-bottom .text-box {
  position: relative;
  display: block;
}

.testimonial-one__single-bottom .text-box p {
  margin: 0;
}

.testimonial-one__single-bottom .btn-box {
  position: relative;
  display: block;
  margin-top: 21px;
}

.testimonial-one__single-bottom .btn-box a {
  position: relative;
  display: inline-block;
  background: #f2f7f7;
  padding: 9px 20px 8px;
  color: var(--thm-gray);
  font-size: 12px;
  line-height: 22px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonial-one__single-bottom .btn-box a:hover {
  background: var(--thm-base);
  color: #ffffff;
}

.testimonial-one__single-bottom .btn-box a span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 15px;
  font-weight: 700;
  top: 2px;
  margin-left: 4px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonial-one__single-bottom .btn-box a:hover span:before {
  color: #ffffff;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .3s;
  transition-property: all;
}


/***
=============================================
Team One 
=============================================
***/
.team-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  z-index: 1;
}

.team-one .auto-container {
  max-width: 1600px;
  width: 100%;
}

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

.team-one__single-img {
  position: relative;
  display: block;
}

.team-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.team-one__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(0, 0, 0, 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

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

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

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

.team-one__single-img .inner .content-box {
  position: absolute;
  left: 35px;
  bottom: 0;
  right: 35px;
  padding: 0px 0px 21px;
  opacity: 0;
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
  transition-delay: 0.2;
  z-index: 5;
}

.team-one__single:hover .team-one__single-img .inner .content-box {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.team-one__single-img .inner .content-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
  clip-path: polygon(0 29%, 100% 0, 100% 100%, 0% 100%);
  content: "";
}

.team-one__single-img .inner .content-box ul {
  position: relative;
  display: block;
  transform: rotate(-10deg);
}

.team-one__single-img .inner .content-box ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.team-one__single-img .inner .content-box ul li:last-child {
  margin-right: 0;
}

.team-one__single-img .inner .content-box ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #f2f7f7;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-one__single-img .inner .content-box ul li a:hover {
  background: var(--thm-base);
}

.team-one__single-img .inner .content-box ul li a span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-one__single-img .inner .content-box ul li a:hover span:before {
  color: #ffffff;
}

.team-one__single-img .inner .content-box .text-box {
  position: relative;
  display: block;
  margin-top: 29px;
}

.team-one__single-img .inner .content-box .text-box h2 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
  
}

.team-one__single-img .inner .content-box .text-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-one__single-img .inner .content-box .text-box h2 a:hover {
  color: var(--thm-base);
}

.team-one__single-img .inner .content-box .text-box p {
  margin: 0;
}


/***
=============================================
   Video One
=============================================
***/
.video-one {
  position: relative;
  display: block;
  padding: 150px 0px 141px;
  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: #000001;
  opacity: 0.75;
  content: "";
  z-index: -2;
}

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

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

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

.video-one__inner .video-box a {
  position: relative;
  display: inline-block;
  z-index: 5;
}

.video-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 25px;
  color: #ffffff;
  background-color: var(--thm-base);
  border-radius: 50%;
  margin: 0 auto;
}

.video-one__icon::before {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid var(--thm-base);
  border-radius: 50%;
  content: "";
}

.video-one__inner .video-box .border-animation {
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  border: 1px solid var(--thm-base);
  animation: squares 2.9s linear 0s infinite;
  -webkit-animation: squares 2.9s linear 0s infinite;
  -ms-animation: squares 2.9s linear 0s infinite;
  -o-animation: squares 2.9s linear 0s infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
  border-radius: 50%;
}

.video-one__inner .video-box .border-animation.border-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

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

.video-one__inner h2 {
  color: #ffffff;
  font-size: 35px;
  line-height: 45px;
  font-weight: 600;
  
  letter-spacing: -0.02em;
  margin-top: 60px;
}


/***
=============================================
Faq One
=============================================
***/
.faq-one {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  background: #f2f4f3;
  z-index: 1;
}

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

.faq-one__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  background-position: center center;
  z-index: -2;
}

.faq-one .shape1 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.02;
  z-index: -2;
}

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

.faq-one__content {
  position: relative;
  display: block;
  max-width: 590px;
  width: 100%;
  float: right;
  margin-right: -90px;
}

.faq-one__accordion {
  position: relative;
  display: block;
}

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

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

.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: 27px;
  padding-left: 40px;
  padding-bottom: 27px;
  padding-right: 75px;
}

.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: 35px;
  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;
  display: inline-block;
  font-size: 15px;
  font-family: 'icomoon' !important;
  font-weight: 700;
  margin: 0px;
  content: "\e908";
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding-top: 27px;
  padding-left: 40px;
  padding-bottom: 42px;
  padding-right: 40px;
  border-top: 1px solid rgba(var(--thm-gray-rgb), 0.5);
}

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

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

.faq-one__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 758px;
  width: 100%;
  padding: 53px 85px 70px;
  z-index: 1;
}

.faq-one__progress-pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center center;
  background-repeat: repeat;
  clip-path: polygon(0 0, 87% 0, 100% 100%, 0% 100%);
  z-index: -1;
}

.faq-one__progress::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  clip-path: polygon(0 0, 87% 0, 100% 100%, 0% 100%);
  content: "";
  z-index: -1;
}

.faq-one__progress-inner {
  position: relative;
  display: block;
  max-width: 450px;
  width: 100%;
}

.faq-one__progress-single {
  position: relative;
  display: block;
  margin-bottom: 32px;
}

.faq-one__progress-single.mar0 {
  margin-bottom: 0px;
}

.faq-one__progress-single .top {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.faq-one__progress-single .top .count-text {
  position: relative;
  color: var(--thm-black);
  font-size: 22px;
  line-height: 22px;
  font-weight: 600;
  margin-top: 2px;
  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;
  letter-spacing: -0.02em;
  opacity: 1;
  font-family: var(--thm-font);
}

.faq-one__progress-single h3 {
  color: var(--thm-black);
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  
  letter-spacing: -0.02em;
}

.faq-one__progress-single .bar {
  position: relative;
  width: 100%;
  height: 0px;
  background: transparent;
  margin-bottom: 0px;
}

.faq-one__progress-single .bar::before {
  position: absolute;
  left: 0;
  bottom: -10px;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--thm-base);
  content: "";
}

.faq-one__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 130px;
  z-index: 1;
}

.blog-one .auto-container {
  max-width: 1530px;
  width: 100%;
}

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

.blog-one__single-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.blog-one__single-inner .img-box {
  position: relative;
  display: block;
  max-width: 365px;
  width: 100%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  overflow: hidden;
}

.blog-one__single-inner .img-box::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(0, 0, 0, 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

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

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

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

.blog-one__single-inner .img-box .meta-box {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 45px 12px;
  z-index: 5;
}

.blog-one__single-inner .img-box .meta-box li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 20px;
}

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

.blog-one__single-inner .img-box .meta-box li .icon {
  position: relative;
  display: block;
}

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

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

.blog-one__single-inner .img-box .meta-box li .text p {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--thm-font);
  margin: 0;
}

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

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

.blog-one__single-inner .img-box .date-box {
  position: absolute;
  bottom: 55px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 70px;
  height: 70px;
  background: var(--thm-base);
  border-top-left-radius: 10px;
  z-index: 5;
}

.blog-one__single-inner .img-box .date-box p {
  color: #ffffff;
  font-size: 17px;
  line-height: 23px;
  font-weight: 700;
}

.blog-one__single-inner .img-box .date-box span {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 11px;
  line-height: 15px;
  text-transform: uppercase;
  font-weight: 700;
}


.blog-one__single-inner .content-box {
  position: relative;
  display: block;
  margin-left: 40px;
  margin-bottom: -11px;
  flex: 1;
}

.blog-one__single-inner .content-box .text1 {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.blog-one__single-inner .content-box .text1 span {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  
  background: var(--thm-base);
  border-radius: 5px;
  padding: 6px 20px 5px;
}

.blog-one__single-inner .content-box h2 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 600;
  
  margin-bottom: 5px;
}

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

}

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

.blog-one__single-inner .content-box p {
  margin: 0px;
}

.blog-one__single-inner .content-box .text2 {
  position: relative;
  display: block;
  margin-top: 18px;
}

.blog-one__single-inner .content-box .text2 p {
  color: var(--thm-black);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.blog-one__single-inner .content-box .text2 p span {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 16px;
  font-weight: 600;
  
  padding-right: 5px;
}


/***
=============================================
Cta One
=============================================
***/
.cta-one {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 81px 0px 78px;
  z-index: 1;
}

.cta-one .shape1 {
  position: absolute;
  top: -40px;
  left: 680px;
  border-bottom: 40px solid #151518;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  content: "";
}

.cta-one__bg {
  position: absolute;
  top: -40px;
  left: 0;
  bottom: 0;
  width: 700px;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  z-index: -1;
}

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

.cta-one__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 780px;
  width: 100%;
  float: right;
  gap: 30px;
}

.cta-one__content .text-box {
  position: relative;
  display: block;
}

.cta-one__content .text-box p {
  color: #ffffff;
  letter-spacing: 0.2em;
}

.cta-one__content .text-box h2 {
  color: #ffffff;
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  
  margin-top: 1px;
}

.cta-one__content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

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

.cta-one__content .btn-box .thm-btn::before,
.bloc_cta_actu .thm-btn::before
{
  background: var(--thm-black);
}

.cta-one__content .btn-box .thm-btn::after,
.bloc_cta_actu .thm-btn::after
{
  background: var(--thm-black);
}


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

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

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

.footer-one::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000000;
  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: 39px;
  margin-top: -5px;
  margin-bottom: 15px;
}

.footer-widget__single .title h2,
.footer-widget__single .title .h2
{
color: #ffffff;
font-size: 24px;
line-height: 34px;
font-weight: 600;
}

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

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

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

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

.footer-widget__single-about .text-box p {
  color: rgba(255, 255, 255, .6);
}

.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: #17171a;
}

.footer-widget__single-about .social-link li a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: var(--thm-base);
  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: rgba(255, 255, 255, .6);
  font-size: 15px;
  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: 14px;
}

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

.footer-widget__single-list li a {
  position: relative;
  display: block;
  color: rgba(255, 255, 255, .6);
  font-size: 18px;
  line-height: 28px;
  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: rgba(255, 255, 255, .6);
  margin-bottom: 32px;
}

.footer-widget__single-contact .number {
  margin: 0;
}

.footer-widget__single-contact .number a {
  color: rgba(255, 255, 255, .6);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.footer-widget__single-contact .email {
  margin: 0;
}

.footer-widget__single-contact .email a {
  color: rgba(255, 255, 255, .6);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.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: 24px;
  line-height: 34px;
  font-weight: 400;
}

.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: 18px;
  color: rgba(255, 255, 255, .6);
  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: 50px;
  width: 50px;
  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: rgba(255, 255, 255, .6);
  font-size: 16px;
  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 rgba(255, 255, 255, .6);
  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 rgba(255, 255, 255, .6);
  border-right: 2px solid rgba(255, 255, 255, .6);
  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: rgba(255, 255, 255, .6);
}

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

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

.footer-one__bottom .bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 35px 0px 34px;
}

.footer-one__bottom .bottom-inner .copyright {
  position: relative;
  display: block;
  font-size: 12px;
  text-align: center;
}

.footer-one__bottom .bottom-inner .copyright a
{
color: #ccc;
}

.footer-one__bottom .bottom-inner .copyright p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}


.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: rgba(255, 255, 255, 0.6);
  content: "";
}

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

.footer-one__bottom-menu li a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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


/***
=============================================
Feature Four
=============================================
***/
.feature-four {
  position: relative;
  display: block;
}

.feature-four .auto-container {
  max-width: 1670px;
  width: 100%;
}

.feature-four__inner {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  margin-top: -60px;
  z-index: 5;
}

.feature-four__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 70px;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  z-index: -1;
}

.feature-four__single {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 10px 30px 0px rgb(0, 0, 0, 0.05);
  padding: 0px 50px 35px;
  margin-bottom: 30px;
}

.feature-four__single .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 115px;
  background: #f6f4f9;
  border-radius: 10px;
  margin-bottom: 23px;
  z-index: 1;
}

.feature-four__single .icon-box:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: var(--thm-base);
  transition-delay: 0.5s;
  transition: .5s;
  border-radius: 10px;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -ms-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: -1;
}

.feature-four__single:hover .icon-box:before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
  transform: perspective(400px) rotateX(0deg) scale(1.0);
}

.feature-four__single .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-four__single:hover .icon-box span:before {
  color: #ffffff;
}

.feature-four__single h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 33px;
}

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

.feature-four__single h2 a:hover {
  color: var(--thm-base);
}

.feature-four__single p {
  margin: 0;
}

.feature-four__single .btn-box {
  position: relative;
  display: block;
  margin-top: 27px;
}

.feature-four__single .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-four__single .btn-box a:hover {
  color: var(--thm-base);
}

.feature-four__single .btn-box a span::before {
  position: relative;
  display: inline-block;
  font-size: 30px;
}

.feature-four__right-content {
  position: relative;
  display: block;
  margin-right: -235px;
  padding-left: 60px;
  padding-bottom: 147px;
  z-index: 1;
}

.feature-four__right-content::before {
  position: absolute;
  top: -120px;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  content: "";
  z-index: -1;
}

.feature-four__right-content h2 {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 80px;
  line-height: 1.1em;
  font-weight: 600;
  
}

.feature-four__right-content h2::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 4px;
  background: #ffffff;
  content: "";
}

.feature-four__right-content h2 span {
  position: relative;
  display: inline-block;
}

.feature-four__right-content h2 .plus {
  position: relative;
  display: inline-block;
  top: 6px;
}

.feature-four__right-content .odometer.odometer-auto-theme,
.feature-four__right-content .odometer.odometer-theme-default {
  font-family: var(--thm-font);
  line-height: 1.1em;
}


/***
=============================================
Video Two
=============================================
***/
.video-two {
  position: relative;
  display: block;
  padding: 180px 0px 117px;
  z-index: 1;
}

.video-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background: #1b1825;
  background-blend-mode: luminosity;
  background-size: cover;
  z-index: -1;
}

.video-two__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #1b1825;
  opacity: 0.70;
  content: "";
  z-index: -2;
}

.video-two__inner {
  position: relative;
  display: block;
  z-index: 1;
}

.video-two__inner::before {
  position: absolute;
  top: 55px;
  left: 150px;
  bottom: -117px;
  right: 150px;
  background: rgba(var(--thm-base-rgb), 0.6);
  content: "";
  z-index: -1;
}

.video-two__inner .video-box {
  position: relative;
  display: block;
  margin-bottom: 48px;
}

.video-two__inner .video-box a {
  position: relative;
  display: inline-block;
}

.video-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  line-height: 110px;
  border-radius: 0px;
  text-align: center;
  font-size: 25px;
  color: #ffffff;
  background-color: var(--thm-base);
  margin: 0 auto;
}

.video-two__icon .ripple,
.video-two__icon .ripple:before,
.video-two__icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 0px;
}

.video-two__icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-two__icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.video-two__inner h2 {
  color: #ffffff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

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

.about-two__content {
  position: relative;
  display: block;
  margin-left: -10px;
  margin-right: 55px;
}

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

.about-two__content .text-box1 {
  position: relative;
  display: block;
}

.about-two__content .text-box1 p {
  margin: 0px;
}

.about-two__content-list {
  position: relative;
  display: block;
  padding-left: 20px;
  margin-top: 32px;
}

.about-two__content-list::before {
  position: absolute;
  top: 4px;
  left: 0px;
  bottom: 4px;
  width: 2px;
  background: var(--thm-base);
  content: "";
}

.about-two__content-list li {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.about-two__content-list li:last-child {
  margin-bottom: 0;
}

.about-two__content-list li .inner {
  position: relative;
  display: block;
  padding-left: 40px;
}

.about-two__content-list li .inner .icon-box {
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--thm-base);
  border-radius: 50%;
  text-align: center;
}

.about-two__content-list li .inner .icon-box span {
  position: relative;
  display: block;
  line-height: 0;
}

.about-two__content-list li .inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 12px;
  line-height: 20px;
}

.about-two__content-list li .inner .text-box {
  position: relative;
  display: block;
}

.about-two__content-list li .inner .text-box p {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.about-two__progress {
  position: relative;
  display: block;
  margin-top: 43px;
}

.about-two__progress-single {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.about-two__progress-single-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-two__progress .bar {
  position: relative;
  width: 100%;
  height: 15px;
  background: #f1f3f2;
  margin-bottom: 6px;
  border-radius: 7.5px;
}

.about-two__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 15px;
  background: var(--thm-base);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
  border-radius: 7.5px;
  z-index: 1;
}

.about-two__progress .count-text {
  position: absolute;
  top: -3px;
  right: 10px;
  color: #ffffff;
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  text-align: center;
  font-family: var(--thm-font);
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
}

.about-two__content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.about-two__content-bottom .author-box {
  position: relative;
  display: flex;
  align-items: center;
}

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

.about-two__content-bottom .author-box .img-box img {
  width: 100%;
}

.about-two__content-bottom .author-box .title-box {
  position: relative;
  display: block;
  padding-left: 25px;
  line-height: 0;
}

.about-two__content-bottom .author-box .title-box h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

.about-two__content-bottom .author-box .title-box span {
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
  
}

.about-two__content-bottom .btn-box {
  position: relative;
  display: block;
  margin-left: 50px;
  line-height: 0px;
}


.about-two__right {
  position: relative;
  display: block;
  margin-left: -15px;
  margin-right: -45px;
}

.about-two__right-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.about-two__right-single.mb30 {
  margin-top: 30px;
}

.about-two__right-single .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.about-two__right-single .img-box::before {
  position: absolute;
  top: 0%;
  right: 0%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .4);
  border-radius: 50%;
  -webkit-transform: translateX(-50%, -50%);
  transform: translateX(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.about-two__right-single:hover .img-box::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.about-two__right-single .img-box img {
  width: 100%;
  transform: scale(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.about-two__right-single:hover .img-box img {
  transform: scale(1.1) rotate(1deg);
}

.about-two__right-single .img-box .video-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-two__right-single .img-box .video-box a {
  position: relative;
  display: inline-block;
}

.about-two__right-single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  color: #ffffff;
  background-color: var(--thm-base);
  margin: 0 auto;
}

.about-two__right-single-icon .ripple,
.about-two__right-single-icon .ripple:before,
.about-two__right-single-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.about-two__right-single-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.about-two__right-single-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.about-two__right-single .counter-box {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 52px 40px 53px;
}

.about-two__right-single .counter-box h2 {
  position: relative;
  color: #ffffff;
  font-size: 55px;
  line-height: 1.1em;
  font-weight: 700;
  
}

.about-two__right-single .counter-box h2 .plus {
  position: absolute;
  top: -6px;
}

.about-two__right-single .counter-box .odometer.odometer-auto-theme,
.about-two__right-single .counter-box .odometer.odometer-theme-default {
  font-family: var(--thm-font);
  line-height: 1.1em;
}


/***
=============================================
Services Two
=============================================
***/
.services-two {
  position: relative;
  display: block;
  background: #eff0f0;
  padding: 120px 0px 90px;
  overflow: hidden;
  z-index: 1;
}

.services-two__img {
  position: absolute;
  top: 50px;
  left: -400px;
  z-index: -1;
}

.services-two .sec-title-two {
  margin-left: 170px;
}

.services-two__left-content {
  position: relative;
  display: block;
  margin-left: 170px;
}

.services-two__left-content-single {
  position: relative;
  display: block;
  padding-top: 50px;
  margin-bottom: 30px;
}

.services-two__left-content-single.mb30 {
  margin-top: 32px;
}

.services-two__left-content-single .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 125px;
  margin: 0px auto 0px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
  z-index: 5;
}

.services-two__left-content-single .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 65px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 5;
}

.services-two__left-content-single:hover .icon-box span::before {
  color: #ffffff;
}

.services-two__left-content-single .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 10px;
  background-color: var(--thm-base);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.services-two__left-content-single:hover .icon-box::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.services-two__left-content-single .inner {
  position: relative;
  display: block;
  padding: 97px 70px 41px;
  background: #ffffff;
  border-radius: 9px;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
}

.services-two__left-content-single .inner h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.services-two__left-content-single .inner h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-two__left-content-single .inner h2 a:hover {
  color: var(--thm-base);
}

.services-two__left-content-single .inner p {
  margin: 0;
}



.services-two__right-content {
  position: relative;
  display: block;
  margin-right: -100px;
}

.services-two__right-content-single {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0.175px 9.998px 38px 2px rgb(0, 0, 0, 0.1);
  padding: 35px 35px 35px;
  margin-bottom: 15px;
}

.services-two__right-content-single::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 4px;
  background: #ede8e4;
  content: "";
}

.services-two__right-content-single::after {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 4px;
  background: var(--thm-base);
  transform: scaleX(0.7) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 0;
  border-radius: 0px;
  content: "";
}

.services-two__right-content-single:hover::after {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.services-two__right-content-single .icon-box {
  position: relative;
  display: block;
}

.services-two__right-content-single .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 60px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-two__right-content-single:hover .icon-box span::before {
  transform: scale(0.9);
}

.services-two__right-content-single .title-box {
  position: relative;
  display: block;
  margin-left: 25px;
  flex: 1;
}

.services-two__right-content-single .title-box h2 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
}

.services-two__right-content-single .title-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-two__right-content-single .title-box h2 a:hover {
  color: var(--thm-base);
}







/***
=============================================
Team Two
=============================================
***/
.team-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 60px;
}

.team-two .auto-container {
  max-width: 1650px;
  width: 100%;
}

.team-two__single {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}

.team-two__single.mb40 {
  margin-top: 40px;
}

.team-two__single-img {
  position: relative;
  display: block;
}

.team-two__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.team-two__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(0, 0, 0, .5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.team-two__single:hover .team-two__single-img .inner::before {
  opacity: 1;
}

.team-two__single-img .inner .social-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  padding: 11px 10px 14px;
  border-radius: 30px;
  border-bottom-right-radius: 0px;
  z-index: 5;
  opacity: 0;
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}

.team-two__single:hover .team-two__single-img .inner .social-icon {
  transform: scale(1.0);
  opacity: 1;
}

.team-two__single-img .inner .social-icon li {
  position: relative;
  display: block;
  margin-bottom: 5px;
}

.team-two__single-img .inner .social-icon li:last-child {
  margin-bottom: 0;
}

.team-two__single-img .inner .social-icon li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--thm-base);
  border-radius: 50%;
  z-index: 1;
}

.team-two__single-img .inner .social-icon li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-radius: 50%;
  border-bottom-right-radius: 0px;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.team-two__single-img .inner .social-icon li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.team-two__single-img .inner .social-icon li a span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-two__single-img .inner .social-icon li a:hover span::before {
  color: var(--thm-base);
}

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

.team-two__single:hover .team-two__single-img .inner img {
  transform: scale(1);
}

.team-two__single-content {
  position: relative;
  display: block;
  width: 285px;
  background: var(--thm-base);
  border-radius: 10px;
  padding: 19px 0px 17px;
  margin-top: -64px;
  z-index: 5;
  opacity: 0;
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}

.team-two__single:hover .team-two__single-content {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.team-two__single-content h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  
}

.team-two__single-content h2 a {
  color: #ffffff;
}

.team-two__single-content p {
  color: #ffffff;
  font-size: 17px;
  line-height: 28px;
  
  margin: 0;
}


/***
=============================================
Portfolio Two
=============================================
***/
.portfolio-two {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  z-index: 1;
}

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

.portfolio-two .container-fluid {
  padding-right: var(--bs-gutter-x, .0rem);
  padding-left: var(--bs-gutter-x, .0rem);
}

.portfolio-two__single {
  position: relative;
  display: block;
  cursor: pointer;
}

.portfolio-two__single.mb30,
.owl-item:nth-child(even) .portfolio-two__single
{
margin-top: 30px;
}

.portfolio-two__single-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.portfolio-two__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(0, 0, 0, 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

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

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

.portfolio-two__single:hover .portfolio-two__single-img img {
  transform: scale(1);
}

.portfolio-two__single-img .overlay-content {
  position: absolute;
  left: 50px;
  bottom: 45px;
  right: 50px;
  background: rgba(255,255,255,0.9);
  padding: 107px 30px 51px;
  overflow: hidden;
  text-align: right;
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  z-index: 5;
}



.portfolio-two__single:hover .portfolio-two__single-img .overlay-content,
.touchevents .portfolio-two__single .portfolio-two__single-img .overlay-content
{
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.portfolio-two__single-img .overlay-content::before {
  position: absolute;
  top: 0;
  left: 60px;
  bottom: 0;
  width: 2px;
  background: var(--thm-base);
  content: "";
  transition: -webkit-transform 2.0s ease;
  transition: transform 2.0s ease;
  transition: transform 2.0s ease, -webkit-transform 2.0s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

.portfolio-two__single:hover .portfolio-two__single-img .overlay-content::before,
.touchevents .portfolio-two__single .portfolio-two__single-img .overlay-content::before
{
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
transform-origin: top center;
}

.portfolio-two__single-img .overlay-content::after
{
  position: absolute;
  left: 0px;
  bottom: 65px;
  right: 50%;
  height: 2px;
  background: var(--thm-base);
  content: "";
  transition: transform 2000ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
}

.portfolio-two__single:hover .portfolio-two__single-img .overlay-content::after,
.touchevents .portfolio-two__single .portfolio-two__single-img .overlay-content::after
{
transform: scale(1, 1);
transform-origin: left center;
}

.portfolio-two__single-img .overlay-content h2,
.portfolio-two__single-img .overlay-content .h2
{
font-size: 24px;
line-height: 34px;
font-weight: 500;
text-transform: uppercase;
margin-bottom: 3px;
opacity: 0;
transform: translateY(-50px);
transition: all 700ms ease;
position: relative;
z-index: 2;
background-color: var(--thm-base);
}

.portfolio-two__single:hover .portfolio-two__single-img .overlay-content h2,
.portfolio-two__single:hover .portfolio-two__single-img .overlay-content .h2,
.touchevents .portfolio-two__single .portfolio-two__single-img .overlay-content h2,
.touchevents .portfolio-two__single .portfolio-two__single-img .overlay-content .h2
{
opacity: 1;
transform: translateY(0%);
transition-delay: 700ms;
}

.portfolio-two__single-img .overlay-content h2 a,
.portfolio-two__single-img .overlay-content .h2 a
{
color: var(--thm-black);
transition: all 200ms linear;
transition-delay: 0.1s;
color: #fff;
display: inline-block;
padding: 15px;
font-size: 16px;
line-height: 19px;
}

.portfolio-two__single-img .overlay-content h2 a:hover,
.portfolio-two__single-img .overlay-content .h2 a:hover
{
color: #fff;
}

.portfolio-two__single-img .overlay-content p {
  margin: 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 700ms ease;
}

.portfolio-two__single:hover .portfolio-two__single-img .overlay-content p,
.touchevents .portfolio-two__single .portfolio-two__single-img .overlay-content p
{
opacity: 1;
transform: translateY(0%);
transition-delay: 500ms;
}

/*
.portfolio-two .owl-theme .owl-nav {
  position: absolute;
  margin-top: 0;
  top: -120px;
  right: 19%;
}*/

.portfolio-two .owl-carousel .owl-nav button.owl-prev,
.portfolio-two .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-black);
  font-size: 31px;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.realisation_accueil__btn_wrapper
{
text-align: center;
}

.portfolio-two__inner .owl-nav
{
position: absolute;
top: 0;
left: 0;
text-align: left;
z-index: 10;
}

/***
=============================================
Feature Three
=============================================
***/
.feature-three {
  position: relative;
  display: block;
  padding: 120px 0px 240px;
  overflow: hidden;
  z-index: 1;
}

.feature-three .shape1 {
  position: absolute;
  top: -390px;
  right: -130px;
  z-index: 2;
}

.feature-three .shape2 {
  position: absolute;
  top: -200px;
  right: -290px;
  mix-blend-mode: soft-light;
  z-index: 1;
}

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

.feature-three__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010007;
  opacity: 0.7;
  content: "";
  z-index: -2;
}

.feature-three__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: repeat;
  z-index: -1;
}

.feature-three__inner {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
  padding: 50px 0px 42px;
  overflow: hidden;
  border-radius: 50px;
  border-top-left-radius: 0px;
  z-index: 5;
}

.feature-three__box {
  position: relative;
  display: block;
}

.feature-three__single {
  position: relative;
  display: block;
  width: 20%;
  float: left;
}

.feature-three__single .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--thm-base);
  margin: 0 auto;
}

.feature-three__single .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 50px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.feature-three__single:hover .icon-box span::before {
  transform: scale(0.9);
}

.feature-three__single .title-box {
  position: relative;
  display: block;
}

.feature-three__single .title-box h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  
  margin-top: 11px;
}

.feature-three__single .title-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-three__single .title-box h2 a:hover {
  color: var(--thm-base);
}


/***
=============================================
Industry Skill One
=============================================
***/
.industry-skill-one {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  margin-top: -120px;
  z-index: 3;
}

.industry-skill-one .shape1 {
  position: absolute;
  top: 0;
  right: 115px;
  opacity: 0.03;
  z-index: -1;
}

.industry-skill-one::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 370px;
  background: #ffffff;
  content: "";
  z-index: -1;
}

.industry-skill-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 132px;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 745px;
}

.industry-skill-one__content {
  position: relative;
  display: block;
  max-width: 560px;
  width: 100%;
  margin-left: 61px;
}

.industry-skill-one__content .sec-title-two {
  padding-bottom: 22px;
}

.industry-skill-one__content .text-box {
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.industry-skill-one__content .text-box p {
  margin: 0px;
}


.industry-skill-one__progress {
  position: relative;
  display: block;
  width: 100%;
}

.industry-skill-one__progress-single {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.industry-skill-one__progress-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  
  margin-bottom: 15px;
}

.industry-skill-one__progress .bar {
  position: relative;
  width: 100%;
  height: 8px;
  background: #ffffff;
}

.industry-skill-one__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 8px;
  background: var(--thm-base);
  border-bottom-right-radius: 0px;
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.industry-skill-one__progress .bar::before {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid var(--thm-base);
  content: "";
}

.industry-skill-one__progress .count-text {
  position: absolute;
  top: -35px;
  right: 0px;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  -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;
}


/***
=============================================
Why Choose One
=============================================
***/
.why-choose-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 120px;
  z-index: 1;
}

.why-choose-one__inner {
  position: relative;
  display: block;
}

.why-choose-one__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.why-choose-one__img img {
  width: 100%;
}

.why-choose-one__list {
  position: relative;
  display: block;
  overflow: hidden;
}

.why-choose-one__list li {
  position: relative;
  display: block;
  max-width: 365px;
  width: 100%;
  padding-left: 130px;
  float: left;
  margin-bottom: 48px;
}

.why-choose-one__list li.style2 {
  float: right;
  padding-left: 0;
  padding-right: 130px;
  text-align: right;
}

.why-choose-one__list li.style2 .icon-box {
  left: auto;
  right: 0;
}

.why-choose-one__list li .icon-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 8px;
  left: 0;
  width: 100px;
  height: 100px;
  background: var(--thm-base);
  border-radius: 5px;
}

.why-choose-one__list li .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 50px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.why-choose-one__list li:hover .icon-box span::before {
  transform: scale(0.9);
}

.why-choose-one__list li .content-box {
  position: relative;
  display: block;
}

.why-choose-one__list li .content-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.why-choose-one__list li .content-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.why-choose-one__list li .content-box h2 a:hover {
  color: var(--thm-base);
}

.why-choose-one__list li .content-box p {
  margin: 0px;
}

.why-choose-one__list li .content-box .btn-box {
  position: relative;
  display: block;
  margin-top: 6px;
}

.why-choose-one__list li .content-box .btn-box a {
  color: var(--thm-base);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.why-choose-one__list li .content-box .btn-box a:hover {
  color: var(--thm-black);
}

.why-choose-one__list li .content-box .btn-box a span:before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  top: 2px;
  margin-left: 3px;
}


/***
=============================================
Testimonial Two
=============================================
***/
.testimonial-two {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  background: #eff0f0;
  z-index: 1;
}

.testimonial-two__img {
  position: absolute;
  top: 15px;
  left: -100px;
  z-index: -1;
}

.testimonial-two .shape2 {
  position: absolute;
  top: 150px;
  left: 250px;
  opacity: 0.45;
  z-index: -2;
}

.testimonial-two .shape3 {
  position: absolute;
  bottom: 50px;
  right: 430px;
  opacity: 0.45;
  z-index: -1;
}


.testimonial-two__single {
  position: relative;
  display: block;
  padding-top: 24px;
  z-index: 1;
}

.testimonial-two__single .shape1 {
  position: absolute;
  right: 45px;
  bottom: 60px;
  opacity: 0.5;
  z-index: 1;
}

.testimonial-two__single .quote-icon {
  position: absolute;
  top: 0;
  left: 45px;
  z-index: 2;
}

.testimonial-two__single .quote-icon span:before {
  color: var(--thm-base);
  font-size: 50px;
}

.testimonial-two__single-inner {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 35px 0px rgb(0, 0, 0, 0.05);
  padding: 61px 45px 50px;
}

.testimonial-two__single-inner .rating-box {
  position: absolute;
  top: -10px;
  right: 0px;
  display: block;
  background: var(--thm-base);
  padding: 6px 30px 6px;
  border-radius: 10px;
  border-top-right-radius: 0px;
  z-index: 5;
}

.testimonial-two__single-inner .rating-box ul li span {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 13px;
  line-height: 13px;
}

.testimonial-two__single .text-box {
  position: relative;
  display: block;
}

.testimonial-two__single .text-box p {
  font-size: 19px;
  line-height: 31px;
}

.testimonial-two__single .client-info {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 26px;
}

.testimonial-two__single .client-info .img-box {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
}

.testimonial-two__single .client-info .img-box .inner {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-two__single .client-info .img-box .icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 18px;
  right: -20px;
  width: 40px;
  height: 40px;
  background: var(--thm-base);
  border: 5px solid #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 2;
}

.testimonial-two__single .client-info .img-box .icon span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
}

.testimonial-two__single .client-info .img-box img {
  width: 100%;
}

.testimonial-two__single .client-info .text-box {
  position: relative;
  display: block;
  margin-left: 35px;
  flex: 1;
}

.testimonial-two__single .client-info .text-box h3 {
  color: var(--thm-black);
  font-size: 23px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 2px;
}

.testimonial-two__single .client-info .text-box p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .3s;
  transition-property: all;
}


.testimonial-two .owl-theme .owl-nav {
  position: absolute;
  margin-top: 0;
  top: -120px;
  right: 0px;
}

.testimonial-two .owl-carousel .owl-nav button.owl-prev,
.testimonial-two .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-black);
  font-size: 20px;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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


/***
=============================================
Blog Two
=============================================
***/
.blog-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 130px;
  z-index: 1;
}

.blog-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-two__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.blog-two__single-img:after {
  position: absolute;
  top: 0%;
  right: 0%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .4);
  border-radius: 50%;
  -webkit-transform: translateX(-50%, -50%);
  transform: translateX(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.blog-two__single:hover .blog-two__single-img::after {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.blog-two__single-img::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 400px;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5214460784313726) 60%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

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

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

.blog-two__single-img .overlay-content {
  position: absolute;
  left: 60px;
  bottom: 51px;
  right: 60px;
  z-index: 5;
}

.blog-two__single-img .overlay-content .top-text {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.blog-two__single-img .overlay-content .top-text .date-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 65px;
  background: var(--thm-base);
  border-radius: 10px;
}

.blog-two__single-img .overlay-content .top-text .date-box p {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  
}

.blog-two__single-img .overlay-content .top-text .meta-box {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-bottom: 4px;
}

.blog-two__single-img .overlay-content .top-text .meta-box p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  
}

.blog-two__single-img .overlay-content .top-text .meta-box p a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-two__single-img .overlay-content .top-text .meta-box p a:hover {
  color: var(--thm-base);
}

.blog-two__single-img .overlay-content .top-text .meta-box p a span::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  margin-right: 2px;
}

.blog-two__single-img .overlay-content .title {
  position: relative;
  display: block;
  margin-top: 12px;
}

.blog-two__single-img .overlay-content .title h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  
}

.blog-two__single-img .overlay-content .title h2 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-two__single-img .overlay-content .title h2 a:hover {
  color: var(--thm-base);
}

.blog-two__single-list {
  position: relative;
  display: block;
}

.blog-two__single-list-single {
  position: relative;
  display: block;
  margin-bottom: 28px;
}

.blog-two__single-list-single .inner {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-two__single-list-single .inner .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-two__single-list-single .inner .img-box::before {
  position: absolute;
  top: 0%;
  right: 0%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .4);
  border-radius: 50%;
  -webkit-transform: translateX(-50%, -50%);
  transform: translateX(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.blog-two__single-list-single:hover .inner .img-box::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.blog-two__single-list-single .inner .img-box img {
  width: 100%;
  transform: scale(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.blog-two__single-list-single:hover .inner .img-box img {
  transform: scale(1.1) rotate(1deg);
}

.blog-two__single-list-single .inner .content-box {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, 0.04);
  flex: 1;
  padding: 31px 30px 30px;
}

.blog-two__single-list-single .inner .content-box .meta-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-two__single-list-single .inner .content-box .meta-box li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 20px;
}

.blog-two__single-list-single .inner .content-box .meta-box li:last-child {
  margin-right: 0px;
}

.blog-two__single-list-single .inner .content-box .meta-box li .icon {
  position: relative;
  display: block;
}

.blog-two__single-list-single .inner .content-box .meta-box li .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 15px;
  font-weight: 700;
}

.blog-two__single-list-single .inner .content-box .meta-box li .text {
  position: relative;
  display: block;
  margin-left: 8px;
  margin-top: 0;
}

.blog-two__single-list-single .inner .content-box .meta-box li .text p {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--thm-font);
  margin: 0;
}

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

.blog-two__single-list-single .inner .content-box .meta-box li .text p a:hover {
  color: var(--thm-base);
}

.blog-two__single-list-single .inner .content-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  
  margin-top: 5px;
}

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

.blog-two__single-list-single .inner .content-box h3 a:hover {
  color: var(--thm-base);
}

/***
=============================================
Services One About
=============================================
***/
.services-one--about {
  position: relative;
  display: block;
  padding: 120px 0px 20px;
}

/***
=============================================
About One About
=============================================
***/
.about-one--about {
  position: relative;
  display: block;
  /*padding: 20px 0px 120px;*/
}

@media screen and (min-width: 768px)
{
	.about-one--about {
	padding-top: 70px;
	}	
}

@media screen and (min-width: 1200px)
{
	.about-one--about {
	padding-top: 140px;
	}	
}

.about-one--about .about-one__bg {
  position: absolute;
  top: 70px;
  left: 15.5%;
  bottom: 120px;
  right: 53%;
  border-top-left-radius: 260px;
  border-bottom-left-radius: 260px;
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}

.about-one--about .about-one__bg::before {
  border-top-left-radius: 260px;
  border-bottom-left-radius: 260px;
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}

.about-one--about .about-one__img {
  position: relative;
  display: block;
  margin-top: 8px;
  margin-left: -63px;
}

/***
=============================================
Blog One About
=============================================
***/
.blog-one--about {
  padding: 0px 0px 130px;
}

/***
=============================================
Services One Services
=============================================
***/
.services-one--services {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
}

/***
=============================================
Feature One Services
=============================================
***/
.feature-one--services {
  position: relative;
  display: block;
  padding: 120px 0px 160px;
}

/***
=============================================
Services Details
=============================================
***/

.services-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 30px 0px 30px;
  z-index: 1;
}

@media screen and (min-width: 768px)
{
	.services-details {
	padding-top: 60px;
	padding-bottom: 60px;
	}
}

@media screen and (min-width: 1200px)
{
	.services-details {
	padding-top: 120px;
	padding-bottom: 120px;
	}
}

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

.services-details__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.sidebar__title {
  position: relative;
  margin: 0;
  font-size: 27px;
  line-height: 37px;
  font-weight: 600;
  
  margin-bottom: 31px;
  padding-left: 40px;
}

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

.sidebar__search {
  position: relative;
  display: block;
  background-color: #f1f3f8;
  padding: 50px 30px 50px;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: #ffffff;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 600;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: 3px;
  border: 1px solid #dcdfe2;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--thm-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--thm-gray);
}

.sidebar__search-form button[type="submit"] {
  background-color: var(--thm-base);
  color: #ffffff;
  font-size: 15px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__search-form:hover button[type="submit"] {
  background-color: var(--thm-black);
  color: #ffffff;
}

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

.sidebar__category-list {
  position: relative;
  display: block;
  margin: 0;
}

.sidebar__category-list li+li {
  position: relative;
  margin-top: 15px;
}

.sidebar__category-list li a {
  position: relative;
  display: block;
  color: var(--thm-black);
  font-size: 17px;
  line-height: 30px;
  font-weight: 500;
  padding: 17px 85px 18px 20px;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
}

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

.sidebar__single-button-box {
  position: relative;
  display: block;
  background-color: #f1f3f8;
  padding: 50px 30px 50px;
}

.sidebar__single-button-box .btn-one {
  position: relative;
  display: block;
}

.sidebar__single-button-box .btn-one a {
  position: relative;
  display: block;
  color: var(--thm-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  
  background: #ffffff;
  padding: 16px 25px 17px;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__single-button-box .btn-one a:hover {
  color: #ffffff;
  background: var(--thm-base);
}

.sidebar__single-button-box .btn-one a span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  display: flex;
  align-items: center;
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__single-button-box .btn-one a:hover span::before {
  color: #ffffff;
}

.sidebar__single-button-box .btn-one.btn-one--two {
  position: relative;
  display: block;
  margin-top: 20px;
}

.sidebar__tags {
  position: relative;
  display: block;
  background-color: #f1f3f8;
  padding: 41px 30px 40px;
  overflow: hidden;
}

.sidebar__tags-list {
  position: relative;
  display: block;
  margin-left: -5px;
  margin-right: -5px;
}

.sidebar__tags-list li {
  position: relative;
  display: inline-block;
  float: left;
  padding: 0px 5px 0px;
  margin-bottom: 10px;
}

.sidebar__tags-list li a {
  position: relative;
  display: block;
  color: #7d7d7d;
  font-size: 15px;
  font-weight: 400;
  background: #ffffff;
  padding: 6px 24px;
  border-radius: 3px;
  
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__tags-list li a:hover {
  color: #ffffff;
  background: var(--thm-base);
}

.sidebar__contact {
  position: relative;
  display: block;
  background-color: #f1f3f8;
  padding: 41px 30px 42px;
  overflow: hidden;
}

.sidebar__contact .sidebar__title {
  margin-bottom: 24px;
}

.sidebar__contact-list {
  position: relative;
  display: block;
}

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

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

.sidebar__contact-list li .inner {
  position: relative;
  display: block;
  padding-left: 45px;
}

.sidebar__contact-list li .inner .icon-box {
  position: absolute;
  top: 0;
  left: 0;
}

.sidebar__contact-list li .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 30px;
  top: 6px;
}

.sidebar__contact-list li .inner .text-box {
  position: relative;
  display: block;
}

.sidebar__contact-list li .inner .text-box h4,
.sidebar__contact-list li .inner .text-box .h4
{
font-size: 16px;
line-height: 26px;
font-weight: 600;
}

.sidebar__contact-list li .inner .text-box p {
  font-size: 16px;
  line-height: 26px;
}

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

.sidebar__contact-list li .inner .text-box p a:hover {
  color: var(--thm-base);
}

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

.services-details__content-img1 {
position: relative;
display: block;
margin-bottom: 41px;
margin-top: 30px;
}

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

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

.services-details__content_img2_title
{
text-align: center;
}

.services-details__content-text-box1 h1 {
font-size: 34px;
line-height: 39px;
margin-bottom: 21px;
}

.services-details__content-text-box1 h2 {
font-size: 25px;
line-height: 32px;
margin-bottom: 21px;
}

.services-details__content-text-box1 .text1 {
  margin: 0;
}

.services-details__content-text-box1-list {
  position: relative;
  display: block;
  margin-top: 22px;
}

.services-details__content-text-box1-list li {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.services-details__content-text-box1-list li:last-child {
  margin-bottom: 0px;
}

.services-details__content-text-box1-list li p {
  position: relative;
  padding-left: 25px;
}

.services-details__content-text-box1-list li p::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #bfc2c3;
  border-radius: 50%;
  content: "";
}

.services-details__content-text-box1 .text2 {
  margin: 0px;
  margin-top: 21px;
}

.services-details__content-img2 {
  position: relative;
  display: block;
  z-index: 1;
  margin-top: 65px;
  margin-bottom: 45px;
}

.services-details__content-img2::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #222429;
  opacity: 0.3;
  content: "";
  z-index: 1;
}

.services-details__content-img2 img {
  width: 100%;
}

.services-details__content-img2 .icon-box {
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--thm-base);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 5;
}

.services-details__content-img2 .icon-box img
{
width: 50px;
filter: brightness(0) invert(1);
}

.services-details__content-img2 .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 50px;
}

.services-details__content-text-box2 {
  position: relative;
  display: block;
  margin-top: 60px;
}

.services-details__content-text-box2 .single-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.services-details__content-text-box2 .single-box .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  margin: 0 auto 16px;
  z-index: 1;
}

.services-details__content-text-box2 .single-box .icon-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #eeeff2;
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.services-details__content-text-box2 .single-box .icon-box .icon-box-bg {
  position: absolute;
  top: -8px;
  left: -5px;
  z-index: -2;
}

.services-details__content-text-box2 .single-box .icon-box img
{
width: 80px;
}

.services-details__content-text-box2 .single-box .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 80px;
}

.services-details__content-text-box2 .single-box .text-box {
  position: relative;
  display: block;
}

.services-details__content-text-box2 .single-box .text-box h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  
  margin-bottom: 8px;
}

.services-details__content-text-box2 .single-box .text-box h3 span {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-details__content-text-box2 .single-box .text-box h3 span:hover {
  color: var(--thm-base);
}

.services-details__content-text-box2 .single-box .text-box p {
  margin: 0;text-align: center;
}

.services-details__content-text-box3 {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.services-details__content-text-box3 .img-box {
  position: relative;
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px)
{
	.services-details__content-text-box3 .img-box
	{
	order: 1;
	}
}

/*
.services-details__content-text-box3 .img-box img {
  width: 100%;
}*/

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

@media screen and (max-width: 767px)
{
	.services-details__content-text-box3 .content-box
	{
	margin-bottom: 30px;
	}
}


@media screen and (min-width: 768px)
{
	.services-details__content-text-box3 .content-box
	{
	order: 2;
	/*margin-bottom: 30px;*/
	}
}

.services-details__content-text-box3 .content-box ul li .text-box {
  position: relative;
  display: block;
  margin-left: 15px;
  flex: 1;
}

.services-details__content-text-box3 .content-box ul li .text-box p {
  margin: 0;
}

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

.services-details__content-text-box4 {
  position: relative;
  display: block;
  margin-top: 31px;
}

.services-details__content-text-box4 p {
  margin: 0;
}

.services-details__accordion {
  position: relative;
  display: block;
  margin-top: 31px;
}


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

.portfolio-page__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 60px;
}

.portfolio-page__top .sec-title {
  padding-bottom: 0px;
}

.portfolio-page__top .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

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

.portfolio-page__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.portfolio-page__single-img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(var(--thm-black-rgb), 0.5);
  transform: scaleX(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.portfolio-page__single:hover .portfolio-page__single-img:before {
  transform: scaleX(1.0);
}

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

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

.portfolio-page__single-img .overlay-content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 0;
  bottom: 0;
  right: 40px;
  background: #ffffff;
  padding: 21px 30px 25px;
  transform: perspective(1200px) rotateX(90deg);
  transform-origin: bottom;
  transition: all 700ms ease 100ms;
  z-index: 5;
}

.portfolio-page__single:hover .portfolio-page__single-img .overlay-content {
  transform: perspective(1200px) rotateX(0deg);
  transition: all 700ms ease 200ms;
}

.portfolio-page__single-img .overlay-content .text-box {
  position: relative;
  display: block;
}

.portfolio-page__single-img .overlay-content .text-box h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  
}

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

.portfolio-page__single-img .overlay-content .text-box h3 a:hover {
  color: var(--thm-base);
}

.portfolio-page__single-img .overlay-content .text-box p {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}

.portfolio-page__single-img .overlay-content .btn-box {
  position: relative;
  display: block;
}

.portfolio-page__single-img .overlay-content .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--thm-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.portfolio-page__single-img .overlay-content .btn-box a:hover {
  background: var(--thm-black);
}

.portfolio-page__single-img .overlay-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 17px;
}

.portfolio-page__link {
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0;
  transform: scale(0);
  transition: all 700ms ease;
  z-index: 2;
}

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

.portfolio-page__link a {
  position: relative;
  display: block;
  height: 50px;
  width: 50px;
  background-color: var(--thm-base);
  border-radius: 50%;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  transition: .4s;
  -webkit-transition: all .4s ease-in-out;
}

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

.portfolio-page__link a span::before {
  position: relative;
  display: inline-block;
  line-height: 50px;
}

.portfolio-page__pagination {
  position: relative;
  display: block;
  margin-top: 20px;
}

/***
=============================================
Portfolio Page Contact
=============================================
***/
.portfolio-page-contact {
  position: relative;
  display: block;
  padding: 110px 0px 100px;
  background: #f2f7f7;
  z-index: 3;
}

.portfolio-page-contact__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 800px;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
}

.portfolio-page-contact .icon-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 60px;
  right: 550px;
  width: 200px;
  height: 135px;
  background: var(--thm-base);
  border-radius: 10px;
}

.portfolio-page-contact .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 90px;
}

.portfolio-page-contact__form {
  position: relative;
  display: block;
  margin-right: 40px;
}

.portfolio-page-contact__form .title-box {
  position: relative;
  display: block;
  margin-bottom: 47px;
}

.portfolio-page-contact__form .title-box p {
  color: #726d7b;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.portfolio-page-contact__form .title-box h2 {
  color: var(--thm-black);
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  
}

.portfolio-page-contact__form .input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.portfolio-page-contact__form .input-box input[type="text"],
.portfolio-page-contact__form .input-box input[type="email"],
.portfolio-page-contact__form .input-box textarea {
  position: relative;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 60px;
  border: none;
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 20px;
  border-radius: 0px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.portfolio-page-contact__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.portfolio-page-contact__form form input[type="text"]:-moz-placeholder {
  color: var(--thm-gray);
}

.portfolio-page-contact__form form input[type="text"]::-moz-placeholder {
  color: var(--thm-gray);
}

.portfolio-page-contact__form form input[type="text"]:-ms-input-placeholder {
  color: var(--thm-gray);
}

.portfolio-page-contact__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.portfolio-page-contact__form form input[type="email"]:-moz-placeholder {
  color: var(--thm-gray);
}

.portfolio-page-contact__form form input[type="email"]::-moz-placeholder {
  color: var(--thm-gray);
}

.portfolio-page-contact__form form input[type="email"]:-ms-input-placeholder {
  color: var(--thm-gray);
}

.portfolio-page-contact__form form textarea::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.portfolio-page-contact__form form textarea:-moz-placeholder {
  color: var(--thm-gray);
}

.portfolio-page-contact__form form textarea::-moz-placeholder {
  color: var(--thm-gray);
}

.portfolio-page-contact__form form textarea:-ms-input-placeholder {
  color: var(--thm-gray);
}


.portfolio-page-contact__form .input-box .select-box {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
}

.portfolio-page-contact__form .input-box .nice-select {
  background: #ffffff;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: none;
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 20px;
  border-radius: 0px;
}

.portfolio-page-contact__form .input-box .nice-select:after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--thm-gray);
  border-right: 2px solid var(--thm-gray);
  right: 30px;
  margin-top: 0px;
  top: 24px;
  z-index: 10;
}

.portfolio-page-contact__form .nice-select .list {
  background-color: rgba(255, 255, 255, .7);
  z-index: 99;
}


#ui-datepicker-div.ui-widget-content {
  background: #fff none repeat scroll 0 0;
  border: 1px solid var(--thm-black);
  color: #252525;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: var(--thm-base) none repeat scroll 0 0;
  border: 2px solid var(--thm-base);
  border-radius: 0;
  color: #ffffff;
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}

.ui-datepicker td a {
  color: #000000 !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #333333 !important;
  background: #333333 !important;
  color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  transition: all 500ms ease;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  background: #fff;
  border: none;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 0.4em;
  width: 100%;
}

.ui-datepicker th {
  border: medium none;
  font-weight: 600;
  padding: 2px 3px;
  text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
  background: #43c3ea;
  color: #fff;
  border-color: #43c3ea;
}

#ui-datepicker-div.ui-widget {
  font-family: var(--thm-font);
}

#ptTimeSelectCntr .ui-widget {
  font-family: var(--thm-font);
}

#ptTimeSelectCntr .ui-widget-header {
  color: #ffffff;
  background: var(--thm-black);
}

.portfolio-page-contact__form-btn {
  position: relative;
  display: block;
}

.portfolio-page-contact__form-btn button.thm-btn {
  width: 100%;
  line-height: 60px;
}


/***
=============================================
Portfolio One Portfolio
=============================================
***/
.portfolio-one--portfolio {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 160px;
  margin-top: 0px;
  z-index: 1;
}

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

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

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


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

.portfolio-details__sidebar-list {
  position: relative;
  display: block;
}

.portfolio-details__sidebar-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-list li:hover {
  background: var(--thm-base);
}

.portfolio-details__sidebar-list li:last-child {
  margin-bottom: 0;
}

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

.portfolio-details__sidebar-list li .left-box p {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

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

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

.portfolio-details__sidebar-list li .right-box {
  position: relative;
  display: block;
}

.portfolio-details__sidebar-list li .right-box p {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

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

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

.portfolio-details__sidebar-list li .right-box ul li a {
  position: relative;
  display: block;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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


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

.portfolio-details__content-img1 {
  position: relative;
  display: block;
  margin-bottom: 41px;
}

.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: 42px;
  font-weight: 700;
  
  margin-bottom: 21px;
}

.portfolio-details__content-text-box1 p {
  margin: 0px;
  margin-bottom: 17px;
}

.portfolio-details__content-text-box1 .text2 {
  margin: 0;
}


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

.portfolio-details__content-text-box2 .img-box {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

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


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

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

.portfolio-details__content-text-box2 .content-box ul li {
  position: relative;
  display: block;
  padding-left: 35px;
  margin-bottom: 17px;
}

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

.portfolio-details__content-text-box2 .content-box ul li .icon-box {
  position: absolute;
  top: 2px;
  left: 0;
}

.portfolio-details__content-text-box2 .content-box ul li .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 25px;
}

.portfolio-details__content-text-box2 .content-box ul li .text-box {
  position: relative;
  display: block;
}

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

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

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

.portfolio-details__content-text-box3-list li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.portfolio-details__content-text-box3-list li:last-child {
  margin-bottom: 0px;
}

.portfolio-details__content-text-box3-list li p {
  position: relative;
  padding-left: 25px;
}

.portfolio-details__content-text-box3-list li p::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #bfc2c3;
  border-radius: 50%;
  content: "";
}

.portfolio-details__content-img2 {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 46px;
  z-index: 1;
}

.portfolio-details__content-img2::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-black-rgb), 0.4);
  content: "";
  z-index: 1;
}

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

.portfolio-details__content-img2 .icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.portfolio-details__content-img2 .icon a {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  color: #ffffff;
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--thm-base);
  z-index: 1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.portfolio-details__content-img2 .icon a:hover {
  background: var(--thm-black);
}

.portfolio-details__content-img2 .icon a::before {
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  border: 1px solid var(--thm-base);
  border-radius: 50%;
  content: "";
}

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

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

.portfolio-details__content-img3 {
  position: relative;
  display: block;
  margin-top: 46px;
}

.portfolio-details__content-img3 .single-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.portfolio-details__content-img3 .single-box .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.portfolio-details__content-img3 .single-box .img-box img {
  width: 100%;
}


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

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

.portfolio-details__content-text-box5-list {
  position: relative;
  display: block;
  margin-top: 17px;
}

.portfolio-details__content-text-box5-list li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.portfolio-details__content-text-box5-list li:last-child {
  margin-bottom: 0px;
}

.portfolio-details__content-text-box5-list li p {
  position: relative;
  padding-left: 25px;
}

.portfolio-details__content-text-box5-list li p::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #bfc2c3;
  border-radius: 50%;
  content: "";
}


/***
=============================================
Team One Team
=============================================
***/
.team-one--team {
  position: relative;
  display: block;
}

.team-one--team .team-one__single-img .inner {
  border-top-left-radius: 50px;
}


/***
=============================================
Jobs One
=============================================
***/
.jobs-one {
  position: relative;
  display: block;
  background: #f1f3f2;
  padding: 110px 0px 110px;
  z-index: 1;
}

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

.jobs-one__content {
  position: relative;
  display: block;
  margin-right: -50px;
}

.jobs-one__content-title {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.jobs-one__content-title h2 {
  font-size: 55px;
  line-height: 1.1em;
  font-weight: 700;
  
}

.jobs-one__content-text1 {
  position: relative;
  display: block;
}

.jobs-one__content-text1 p {
  margin: 0;
}

.jobs-one__content-text2 {
  position: relative;
  display: block;
  margin-top: 21px;
  margin-bottom: 6px;
}

.jobs-one__content-text2 .single-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.jobs-one__content-text2 .single-box .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--thm-black);
  border-radius: 50%;
}

.jobs-one__content-text2 .single-box .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 30px;
}

.jobs-one__content-text2 .single-box .text-box {
  position: relative;
  display: block;
  margin-left: 20px;
  flex: 1;
}

.jobs-one__content-text2 .single-box .text-box h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  
}

.jobs-one__content-text3 {
  position: relative;
  display: block;
}

.jobs-one__content-text3 p {
  margin: 0;
}

.jobs-one__progress {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 38px;
}

.jobs-one__progress-single {
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.jobs-one__progress-single-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  
  margin-bottom: 12px;
}

.jobs-one__progress .bar {
  position: relative;
  width: 100%;
  height: 8px;
  background: rgba(var(--thm-black-rgb), 0.6);
}

.jobs-one__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 8px;
  background: var(--thm-black);
  border-bottom-right-radius: 0px;
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.jobs-one__progress .count-text {
  position: absolute;
  top: -44px;
  right: -49px;
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  text-align: center;
  background: var(--thm-black);
  padding: 3px 10px 1px;
  opacity: 0;
  -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;
  z-index: 1;
}

.jobs-one__progress .count-text::before {
  position: absolute;
  left: 0;
  bottom: -7px;
  border: 3px solid var(--thm-black);
  border-bottom: 4px solid transparent;
  border-right: 3px solid transparent;
  content: "";
  z-index: -1;
}

/***
=============================================
Blog One Team
=============================================
***/
.blog-one--team {
  position: relative;
  display: block;
  padding-top: 120px;
}


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

.team-details-top__client-info {
  position: relative;
  display: block;
  background: #f4f3f0;
  padding: 35px 25px 35px;
}

.team-details-top__client-info .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.team-details-top__client-info .img-box img {
  width: 100%;
}

.team-details-top__client-info .content-box {
  position: relative;
  display: block;
  margin-top: 31px;
}

.team-details-top__client-info .content-box h2 {
  color: var(--thm-black);
  font-size: 27px;
  line-height: 37px;
  font-weight: 700;
}

.team-details-top__client-info .content-box span {
  color: var(--thm-black);
}

.team-details-top__client-info .content-box p {
  margin-top: 19px;
}


.team-details-top__client-info .content-box ul {
  position: relative;
  display: block;
  margin-top: 29px;
}

.team-details-top__client-info .content-box ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.team-details-top__client-info .content-box ul li:last-child {
  margin-right: 0;
}

.team-details-top__client-info .content-box ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-details-top__client-info .content-box ul li a:hover {
  background: var(--thm-base);
}

.team-details-top__client-info .content-box ul li a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-details-top__client-info .content-box ul li a:hover span::before {
  color: #ffffff;
}

.team-details-top__content {
  position: relative;
  display: block;
  margin-top: -12px;
}

.team-details-top__content .title-box {
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.team-details-top__content .title-box h2 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  
}

.team-details-top__content .text-box {
  position: relative;
  display: block;
}

.team-details-top__content .text-box p {
  margin: 0;
}

.team-details-top__content-info {
  position: relative;
  display: block;
  margin-top: 24px;
}

.team-details-top__content-info-single {
  position: relative;
  display: block;
}

.team-details-top__content-info-single ul {
  position: relative;
  display: block;
}

.team-details-top__content-info-single ul li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.team-details-top__content-info-single ul li:last-child {
  margin-bottom: 0px;
}

.team-details-top__content-info-single ul li .title {
  position: relative;
  display: block;
  width: 95px;
}

.team-details-top__content-info-single ul li .title h5 {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  
}

.team-details-top__content-info-single ul li .text {
  position: relative;
  display: block;
}

.team-details-top__content-info-single ul li .text p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.team-details-top__content-info-single ul li .text p a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-details-top__content-info-single ul li .text p a:hover {
  color: var(--thm-base);
}

.team-details-top__content-btn {
  position: relative;
  display: block;
  margin-top: 44px;
  line-height: 0;
}

/***
=============================================
Portfolio Page Team
=============================================
***/
.portfolio-page--team {
  position: relative;
  display: block;
  padding: 0px 0px 210px;
}


/***
=============================================
Experience One
=============================================
***/
.experience-one {
  position: relative;
  display: block;
  background: #f7f7f7;
  padding: 120px 0px 152px;
  z-index: 1;
}

.experience-one__bg {
  position: absolute;
  top: -120px;
  left: 60%;
  bottom: 161px;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.experience-one .sec-title {
  margin-left: -55px;
}

.experience-one__content {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: -55px;
  margin-right: 60px;
  z-index: 1;
}

.experience-one__progress {
  position: relative;
  display: block;
  max-width: 120px;
  width: 100%;
}

.experience-one__progress-single {
  position: relative;
  display: block;
}

.experience-one__progress-single.style2 {
  position: relative;
  display: block;
  margin-top: 21px;
  padding-top: 28px;
}

.experience-one__progress-single.style2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #c4c7c8;
  content: "";
}

.experience-one__progress-single .progress-box {
  position: relative;
  display: block;
  line-height: 0;
}

.experience-one__progress-single .progress-box .graph-outer {
  position: relative;
  display: inline-block;
  text-align: center;
  z-index: 1;
}

.experience-one__progress-single .progress-box .graph-outer .count-box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.experience-one__progress-single .progress-box .graph-outer .count-text {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  font-family: var(--thm-font);
}

.experience-one__progress-single .progress-box .graph-outer .count-Parsent {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 24px;
  font-weight: 500;
}

.experience-one__progress-single .title-box {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 13px;
}

.experience-one__progress-single .title-box h5 {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  
}

.experience-one__accordion {
  position: relative;
  display: block;
  margin-left: 65px;
  margin-top: -11px;
}


/***
=============================================
Blog page
=============================================
***/
.blog-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 160px;
  z-index: 1;
}

.sidebar {
  position: relative;
  display: block;
}

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

.sidebar__recent-post {
  position: relative;
  display: block;
  padding: 42px 30px 42px;
  background-color: #f1f3f8;
}

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

.sidebar__post-single {
  position: relative;
  display: block;
}

.sidebar__post-single+.sidebar__post-single {
  margin-top: 27px;
}

.sidebar-post__img {
  position: relative;
  display: block;
  background: var(--thm-black);
  overflow: hidden;
}

.sidebar-post__img::before {
  content: '';
  position: absolute;
  top: 0%;
  right: 0%;
  width: 0;
  height: 100%;
  background-color: rgba(var(--thm-base-rgb), .80);
  border-radius: 0%;
  -webkit-transform: translateX(90%, 90%);
  transform: translateX(90%, 90%);
  opacity: 0.70;
  z-index: 1;
}

.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: 16px;
}

.sidebar__post-content-box h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.sidebar__post-content-box h3 a {
  color: var(--thm-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-single .sidebar__post-content-box h3 a:hover {
  color: var(--thm-base);
}

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

.blog-page__content-single {
  position: relative;
  display: block;
  margin-bottom: 51px;
}

.blog-page__content-single .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.blog-page__content-single .img-box::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(0, 0, 0, .5);
  opacity: 0;
  z-index: 1;
  border-radius: 10px;
  content: "";
}

.blog-page__content-single:hover .img-box::before {
  opacity: 1;
}

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

.blog-page__content-single:hover .img-box img {
  transform: scale(1);
}

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

.blog-page__content-single .content-box .tgaline {
  position: relative;
  display: inline-block;
  background: var(--thm-base);
  padding: 3px 25px 2px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.blog-page__content-single .content-box .tgaline p {
  color: #ffffff;
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-page__content-single .content-box h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  
}

.blog-page__content-single .content-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  margin-bottom: 5px;
}

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

.blog-page__content-single .content-box p {
  margin: 0;
}

.blog-page__content-single .content-box .meta-box {
  position: relative;
  display: block;
  margin-top: 17px;
}

.blog-page__content-single .content-box .meta-box ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-page__content-single .content-box .meta-box ul li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

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

.blog-page__content-single .content-box .meta-box ul li p {
  color: var(--thm-black);
}

.blog-page__content-single .content-box .meta-box ul li p span {
  color: #c4c4c4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.blog-page__content-text1 {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 42px 40px 45px;
  border-radius: 10px;
  z-index: 1;
  margin-bottom: 60px;
}

.blog-page__content-text1 .icon-box {
  position: absolute;
  top: 35px;
  left: 40px;
  z-index: -1;
}

.blog-page__content-text1 .icon-box span::before {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, .2);
  font-size: 30px;
}

.blog-page__content-text1 h2 {
  color: #ffffff;
  font-size: 26px;
  line-height: 36px;
  font-weight: 400;
}

.blog-page__content-text1 .bottom-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 18px;
}

.blog-page__content-text1 .bottom-box p {
  color: #ffffff;
  
  line-height: 28px;
}

.blog-page__content-text1 .bottom-box span {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  
}

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

.blog-page__pagination .styled-pagination {
  padding-top: 0px;
}

/***
=============================================
Blog Details
=============================================
***/
.blog-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 160px;
}

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

.blog-details__tag-share {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ebebeb;
  padding-top: 43px;
}

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

.blog-details__tags a {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  text-transform: uppercase;
  background: #f3f8f8;
  letter-spacing: 0.1em;
  padding: 4px 15px 3px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__tags a+a {
  margin-left: 6px;
}

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

.blog-details__social-list {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__social-list .title {
  position: relative;
  display: block;
  margin-right: 19px;
}

.blog-details__social-list .title h5 {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.blog-details__social-list .social-icon {
  position: relative;
  display: block;
}

.blog-details__social-list .social-icon a {
  position: relative;
  display: inline-block;
  color: #8b9094;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__social-list .social-icon a:hover {
  color: var(--thm-base);
}

.blog-details__social-list .social-icon a+a {
  margin-left: 11px;
}

.blog-details__social-list .social-icon a i:before {
  position: relative;
  display: inline-block;
  font-size: 17px;
}


.blog-details__text1 {
  position: relative;
  display: block;
  margin-top: 55px;
}

.blog-details__text1-single {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--thm-base);
  padding: 64px 40px 63px;
}

.blog-details__text1-single .icon-box {
  position: relative;
  display: block;
}

.blog-details__text1-single .icon-box a {
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.blog-details__text1-single .icon-box span::before {
  position: relative;
  display: inline-block;
  font-size: 25px;
  font-weight: 700;
}

.blog-details__text1-single .text-box {
  position: relative;
  display: block;
  margin-left: 30px;
}

.blog-details__text1-single .text-box h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  
}

.blog-details__text1-single .text-box h2 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__text1-single .text-box h2 a:hover {
  color: #ffffff;
}

.blog-details__text1-single.style2 .text-box {
  margin-left: 0px;
}

.blog-details__text1-single.style2 .text-box h2 {
  text-align: right;
}

.blog-details__text1-single.style2 .icon-box {
  margin-left: 30px;
}


.blog-details__text2 {
  position: relative;
  display: block;
  margin-top: 41px;
}

.blog-details__text2 .title {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.blog-details__text2 .title h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  
}

.blog-details__text2-single {
  position: relative;
  display: block;
}

.blog-details__text2-single .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.blog-details__text2-single .img-box img {
  width: 100%;
}

.blog-details__text2-single .content-box {
  position: relative;
  display: block;
  margin-top: 28px;
}

.blog-details__text2-single .content-box .tagline {
  position: relative;
  display: inline-block;
  background: var(--thm-base);
  padding: 5px 20px 4px;
  border-radius: 2px;
  margin-bottom: 23px;
}

.blog-details__text2-single .content-box .tagline p {
  color: #ffffff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.blog-details__text2-single .content-box h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 13px;
}

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

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

.blog-details__text2-single .content-box .date-box {
  position: relative;
  display: block;
}

.blog-details__text2-single .content-box .date-box span {
  color: #c4c4c4;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}


/***
=====================================================
  Comments
=====================================================
***/
.comment-one {
  position: relative;
  display: block;
  margin-top: 42px;
}

.comment-one__title {
  color: var(--thm-black);
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  
  margin: 0;
  margin-bottom: 23px;
}

.comment-one__single {
  position: relative;
  display: block;
  padding-left: 100px;
  margin-bottom: 53px;
}

.comment-one__single.style2 {
  position: relative;
  display: block;
  margin-left: 80px;
}

.comment-one__image {
  position: absolute;
  top: 12px;
  left: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.comment-one__image img {
  width: 100%;
}

.comment-one__content {
  position: relative;
  display: block;
  padding-left: 20px;
}

.comment-one__content::before {
  position: absolute;
  top: 12px;
  left: 0;
  bottom: 0;
  width: 1px;
  background: #e9e9e9;
  content: "";
}

.comment-one__content span {
  color: var(--thm-base);
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 4px;
  font-weight: 500;
}

.comment-one__content p {
  margin: 0;
}

.comment-one__content .btn-box {
  position: relative;
  display: block;
  margin-top: 16px;
}

.comment-one__content .btn-box a {
  position: relative;
  display: inline-block;
  border: 1px solid #d2d2d4;
  color: var(--thm-black);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 25px 3px;
  border-radius: 16px;
}

.comment-one__content .btn-box a+a {
  margin-left: 6px;
}

.comment-one__content .btn-box a:hover {
  color: #ffffff;
  background: var(--thm-base);
  border-color: var(--thm-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.comment-form {
  position: relative;
  display: block;
}

.comment-form__title {
  color: var(--thm-black);
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  
  margin: 0;
  margin-bottom: 40px;
}

.comment-one__form {
  position: relative;
  display: block;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  position: relative;
  display: block;
  background: #f1f3f8;
  width: 100%;
  height: 50px;
  border: 0px solid #dcdfe2;
  color: #8b9094;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  font-style: normal;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.comment-form__input-box textarea {
  width: 100%;
  height: 150px;
  background-color: #f1f3f8;
  border: 0px solid #dcdfe2;
  outline: none;
  color: #8b9094;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  border-radius: 0px;
  padding: 12px 20px 20px;
  font-family: var(--thm-font);
  resize: none;
}

.comment-form__btn-box {
  position: relative;
  display: block;
  padding-top: 2px;
}

.comment-form__btn {
  position: relative;
  outline: none;
}


/***
=============================================
Contact Page
=============================================
***/
.contact-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 160px;
}

@media screen and (min-width: 992px)
{
	.contact-page {
	padding-top: 120px;
	}
}

.contact-page__top {
  position: relative;
  display: block;
  padding-bottom: 78px;
}

.contact-page__top-single {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 35px 0px rgb(0, 0, 0, 0.05);
  border: 1px solid #f2f4fb;
  border-radius: 5px;
  padding: 40px 30px;
  height: 100%;
}

.contact-page__top-single .icon-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

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

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

.contact-page__top-single .content-box h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  
  margin-bottom: 9px;
}

.contact-page__top-single .content-box p {
font-size: 16px;
  line-height: 25px;
  font-weight: 400;
}

.contact-page__top-single .content-box p a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__top-single .content-box p a:hover {
  color: var(--thm-base);
}

.contact-page__bottom {
  position: relative;
  display: block;
}

.contact-page__form {
  position: relative;
  display: block;
}

.contact-page__form .title-box {
  position: relative;
  display: block;
  margin-bottom: 35px;
}

.contact-page__form .title-box h2,
.contact-page__form .title-box .h2
{
font-size: 45px;
line-height: 55px;
font-weight: 600;
margin-bottom: 20px;
}


.contact-page__form .comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.contact-page__form .comment-form__input-box input[type="text"],
.contact-page__form .comment-form__input-box input[type="email"],
.contact-page__form .comment-form__input-box input[type="tel"]
{
  position: relative;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 60px;
  border: 1px solid #e0e1e1;
  color: #606d78;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  font-style: normal;
  padding-left: 30px;
  padding-right: 20px;
  border-radius: 0px;
  letter-spacing: 0.02em;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.contact-page__form .comment-form__input-box textarea {
  width: 100%;
  height: 240px;
  background-color: #ffffff;
  border: 1px solid #e0e1e1;
  outline: none;
  color: #606d78;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  border-radius: 0px;
  padding: 15px 30px 20px;
  font-family: var(--thm-font);
  letter-spacing: 0.02em;
  resize: none;
}

.contact-page__map {
  position: relative;
  display: block;
  margin-top: 12px;
}

.contact-page__google-map {
  position: relative;
  display: block;
  border: none;
  height: 725px;
  width: 100%;
}

.page_contact__phone_number
{
font-size: 30px;
margin-top: 10px;
display: inline-block;
}

.ne_pas_remplir
{
display: none;
}


/***
=============================================
Feature Five
=============================================
***/
.feature-five {
  position: relative;
  display: block;
  padding: 0px 0px 50px;
  margin-top: -45px;
  z-index: 2;
}

.feature-five .shape1 {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  z-index: -1;
}

.feature-five .shape2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: left bottom;
  height: 91px;
  animation: slide 50s linear infinite;
  -webkit-animation: slide 50s linear infinite;
  z-index: -1;
}

.feature-five::before {
  position: absolute;
  top: 45px;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-black);
  content: "";
  z-index: -1;
}

.feature-five__bg {
  position: absolute;
  top: 45px;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.03;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  z-index: -1;
}

.feature_five__column
{
margin-bottom: 30px;
}

.feature-five__single {
position: relative;
display: block;
background: #ffffff;
padding: 40px 40px 31px;
cursor: pointer;
height: 100%;
}

.feature-five__single::before {
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  content: "";
}

.feature-five__single .icon-box {
  position: relative;
  display: block;
  margin-bottom: 11px;
  width: 50px;
}

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

.feature-five__single:hover .icon-box span::before {
  transform: scale(0.9);
}

.feature-five__single .title-box {
  position: relative;
  display: block;
}

.feature-five__single .title-box h2,
.feature-five__single .title-box .h2
{
font-size: 18px;
line-height: 30px;
font-weight: 600;
text-transform: uppercase;
}

.feature-five__single .title-box h2 a,
.feature-five__single .title-box .h2 a
{
color: var(--thm-black);
transition: all 200ms linear;
transition-delay: 0.1s;
}

.feature-five__single .title-box h2 a:hover,
.feature-five__single .title-box .h2 a:hover
{
color: var(--thm-base);
}


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

.about-three .shape1 {
  position: absolute;
  right: 0;
  bottom: 170px;
  opacity: 0.3;
  z-index: -1;
}

.about-three .big-title {
  position: absolute;
  top: 175px;
  left: 200px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg) translateX(0%);
  width: max-content;
}

.about-three .big-title h2,
.about-three .big-title .h2
{
color: rgba(var(--thm-base-rgb), 0.07);
font-size: 100px;
font-weight: 400;
letter-spacing: 0.18em;
text-transform: uppercase;
font-family: var(--thm-font);
cursor: default;
}

@media screen and (max-width: 1757px)
{
	.about-three .big-title h2,
	.about-three .big-title .h2
	{
	display: none;
	}
}

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

.about-three__img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

/*
.about-three__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(0, 0, 0, .5);
  opacity: 0;
  z-index: 1;
  content: "";
}*/

.about-three__img:hover .inner::before {
  opacity: 1;
}

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

.about-three__img:hover .inner img {
  transform: scale(1);
}*/

.about-three__content
{
position: relative;
display: block;
margin-left: 40px;
}

.about-three__content .title1
{
font-size: 33px;
line-height: 36px;
}

@media screen and (min-width: 768px)
{
	.about-three__content .title1
	{
	font-size: 40px;
	line-height: 43px;
	}
}

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

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

.about-three__content .text-box p {
  margin-bottom: 15px;
}

.about-three__content-list {
  position: relative;
  display: block;
  margin-top: 25px;
}

.about-three__content-list li {
  position: relative;
  display: block;
  margin-bottom: 14px;
}

.about-three__content-list li:last-child {
  margin-bottom: 0;
}

.about-three__content-list li p {
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.about-three__content-list li p span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  top: 2px;
  margin-right: 10px;
}

.about-three__content .client-info {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 32px;
}

.about-three__content .client-info .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.about-three__content .content-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 35px;
  max-width: 210px;
  width: 100%;
}

.about-three__content .content-box .img-box {
  position: relative;
  display: block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--thm-base);
}

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

.about-three__content .content-box .text-box {
  position: relative;
  display: block;
  margin-left: 15px;
}

.about-three__content .content-box .text-box h4 {
  color: var(--thm-base);
  font-size: 17px;
  line-height: 25px;
  font-family: var(--thm-reey-font);
}

.about-three__content .content-box .text-box p {
  font-size: 15px;
  line-height: 24px;
  float: right;
  margin-top: 5px;
}

.about-three__content-bottom {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 40px 0px 34px;
  overflow: hidden;
  margin-left: -340px;
  margin-top: 60px;
  z-index: 5;
}

.about-three__content-bottom ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.about-three__content-bottom ul li {
  position: relative;
  display: block;
  width: 25%;
  float: left;
}

.about-three__content-bottom ul li .number-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  z-index: 1;
}

.about-three__content-bottom ul li .number-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  content: "";
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.about-three__content-bottom ul li:hover .number-box::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.about-three__content-bottom ul li .number-box h2 {
  color: var(--thm-black);
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.about-three__content-bottom ul li:hover .number-box h2 {
  color: #ffffff;
}

.about-three__content-bottom ul li .text-box {
  position: relative;
  display: block;
}

.about-three__content-bottom ul li .text-box h2 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
}

.about-three__content-bottom ul li .text-box p {
  
  line-height: 25px;
}

.about-three__content-bottom .odometer.odometer-auto-theme,
.about-three__content-bottom .odometer.odometer-theme-default {
  font-family: var(--thm-font);
  line-height: 30px;
}

.about-three__content-bottom .odometer-formatting-mark {
  display: none;
}


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

.services-three::before {
  position: absolute;
  left: 580px;
  right: 0;
  height: 450px;
  background: #ffffff;
  bottom: 0;
  content: "";
  z-index: 0;
}

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

.services-three .big-title {
  position: absolute;
  right: 200px;
  bottom: 75px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg) translateX(0%);
  width: max-content;
  z-index: 2;
}

.services-three .big-title h2 {
  color: rgba(var(--thm-base-rgb), 0.07);
  font-size: 100px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--thm-font);

}

.services-three__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.services-three__top .sec-title-three {
  padding-bottom: 0px;
}

.services-three__top .counter-box {
  position: relative;
  display: block;
}

.services-three__top .counter-box h2 {
  position: relative;
  color: var(--thm-base);
  font-size: 60px;
  line-height: 0.8em;
  font-weight: 600;
}

.services-three__top .counter-box h2 .plus {
  position: absolute;
  top: -6px;
  font-size: 40px;
}

.services-three__top .counter-box p {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  
}

.services-three__top .odometer.odometer-auto-theme,
.services-three__top .odometer.odometer-theme-default {
  font-family: var(--thm-font);
  line-height: 0.8em;
}

.services-three__left {
  position: relative;
  display: block;
  margin-bottom: 30px;
  z-index: 3;
}

.services-three__left-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.services-three__left-img img {
  width: 100%;
}

.services-three__left-img .content-box {
  position: absolute;
  right: 10px;
  bottom: 0;
  background: #ffffff;
  box-shadow: 0px 10px 30px 0px rgb(0, 0, 0, 0.07);
  padding: 20px 30px 26px;
  border-top-left-radius: 10px;
}

.services-three__left-img .content-box span {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

.services-three__left-img .content-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  
  margin-bottom: 13px;
}

.services-three__left-img .content-box p {
  margin: 0;
}

.services-three__left-img .content-box .btn-box {
  position: relative;
  display: block;
  margin-top: 11px;
}

.services-three__left-img .content-box .btn-box a {
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-three__left-img .content-box .btn-box a:hover {
  color: var(--thm-base);
}

.services-three__left-img .content-box .btn-box a i:before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 15px;
  font-weight: 700;
  top: 1px;
  margin-right: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-three__left-img .content-box .btn-box a:hover i:before {
  color: var(--thm-base);
}

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

.services-three__right-single {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
  padding: 43px 45px 40px;
  margin-bottom: 30px;
  z-index: 3;
}

.services-three__right-single .inner {
  position: relative;
  display: block;
  padding-left: 80px;
}

.services-three__right-single .inner .icon-box {
  position: absolute;
  top: 7px;
  left: 0;
  z-index: 1;
}

.services-three__right-single .inner .icon-box .bg-box {
  position: absolute;
  top: 0;
  left: -15px;
  width: 40px;
  height: 40px;
  background: #edf3f6;
  content: "";
  z-index: -1;
}

.services-three__right-single .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 60px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-three__right-single:hover .inner .icon-box span::before {
  transform: scale(0.9);
}

.services-three__right-single .inner .content-box {
  position: relative;
  display: block;
}

.services-three__right-single .inner .content-box h2 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  
  margin-bottom: 4px;
}

.services-three__right-single .inner .content-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.services-three__right-single .inner .content-box h2 a:hover {
  color: var(--thm-base);
}

.services-three__right-single .inner .content-box p {
  margin: 0;
}


/***
=============================================
Video Three
=============================================
***/
.video-three {
  position: relative;
  display: block;
  padding: 220px 0px 220px;
  z-index: 1;
}

.video-three__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-three__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000001;
  opacity: 0.4;
  content: "";
  z-index: -2;
}

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

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

.video-three__inner .video-box a {
  position: relative;
  display: inline-block;
  z-index: 5;
}

.video-three__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 25px;
  color: #ffffff;
  background-color: var(--thm-base);
  border-radius: 50%;
  margin: 0 auto;
}

.video-three__icon::before {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid var(--thm-base);
  border-radius: 50%;
  content: "";
}

.video-three__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-three__inner .video-box .border-animation.border-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.video-three__inner .video-box .border-animation.border-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}


/***
=============================================
Feature Six
=============================================
***/
.feature-six {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  overflow: hidden;
}

.feature-six__bg {
  position: absolute;
  top: -2px;
  left: 0;
  bottom: 120px;
  right: 0;
  width: calc((100% - 0px) / 2);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.feature-six__inner {
  position: relative;
  display: block;
}

.feature-six__content {
  position: relative;
  display: block;
  max-width: 675px;
  width: 100%;
  float: right;
  margin-right: -130px;
}

.feature-six__content .sec-title-three {
  padding-bottom: 25px;
}

.feature-six__content .text-box1 {
  position: relative;
  display: block;
}

.feature-six__content .text-box1 p {
  margin: 0;
}

.feature-six__content-text2 {
  position: relative;
  display: block;
  margin-top: 51px;
}

.feature-six__content-text2-single {
  position: relative;
  display: block;
}

.feature-six__content-text2-single ul {
  position: relative;
  display: block;
}

.feature-six__content-text2-single ul li {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.feature-six__content-text2-single ul li:last-child {
  margin-bottom: 0;
}

.feature-six__content-text2-single ul li a {
  position: relative;
  display: block;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  
  background: #ffffff;
  box-shadow: 0px 2px 30px 0px rgb(9, 24, 84, 0.05);
  padding: 20px 30px 18px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-six__content-text2-single ul li a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 16px;
  margin-right: 10px;
  top: 1px;
}

.feature-six__content-text2-single ul li a:hover {
  color: var(--thm-base);
}

.feature-six__content-text2-single .text-box {
  position: relative;
  display: block;
}

.feature-six__content-text2-single .text-box h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 500;
  
  margin-bottom: 17px;
}

.feature-six__content-text2-single .text-box p {
  margin: 0;
}


.feature-six__progress {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 32px;
}

.feature-six__progress-single {
  position: relative;
  display: block;
}

.feature-six__progress-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  
  margin-bottom: 17px;
}

.feature-six__progress .bar {
  position: relative;
  width: 100%;
  height: 12px;
  background: #faf7f7;
  border-radius: 6px;
}

.feature-six__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 12px;
  background: var(--thm-base);
  border-radius: 6px;
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}


.feature-six__progress .count-text {
  position: absolute;
  top: -35px;
  right: 0px;
  color: #7a838b;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  -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;
}

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

.team-three::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 550px;
  background: #eff0f0;
  content: "";
  z-index: -1;
}

.team-three .sec-title-three h2 span {
  color: var(--thm-base);
}

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

.team-three__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  border-bottom-right-radius: 0px;
  background: #000000;
}

.team-three__single-img img {
  width: 100%;
  transition: all 500ms ease;
}

.team-three__single:hover .team-three__single-img img {
  opacity: 0.6;
  transform: scaleX(1.05);
}



.team-three__single-img .social-links {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 5;
}

.team-three__single-img .social-links li {
  position: relative;
  display: inline-block;
}

.team-three__single-img .social-links li.share {
  position: relative;
}

.team-three__single-img .social-links>li>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  border-bottom-right-radius: 0px;
  z-index: 1;
}

.team-three__single-img .social-links>li>a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 50%;
  border-bottom-right-radius: 0;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.team-three__single-img .social-links>li>a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.team-three__single-img .social-links>li>a>span {
  position: relative;
  display: block;
}

.team-three__single-img .social-links>li>a>span::before {
  position: relative;
  display: inline-block;
  top: -1px;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-three__single-img .social-links>li>a:hover span::before {
  color: #ffffff;
}

.team-three__single-img .social-links .share .social-links-inner {
  position: absolute;
  top: -180px;
  left: 0px;
  right: 0;
  line-height: 0;
  transform: scaleY(0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  transform-origin: bottom center;
}

.team-three__single-img .social-links .share:hover .social-links-inner {
  transform: scaleY(1.0);
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
}

.team-three__single-img .social-links .share .social-links-inner li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.team-three__single-img .social-links .share .social-links-inner li:last-child {
  margin-bottom: 0px;
}

.team-three__single-img .social-links .share .social-links-inner li a {
  position: relative;
  display: block;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.team-three__single-img .social-links .share .social-links-inner li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 50%;
  border-bottom-right-radius: 0;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.team-three__single-img .social-links .share .social-links-inner li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.team-three__single-img .social-links .share .social-links-inner li a i {
  position: relative;
  display: block;
}

.team-three__single-img .social-links .share .social-links-inner li a i::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.team-three__single-img .social-links .share .social-links-inner li a:hover i::before {
  color: #ffffff;
}

.team-three__single .title-box {
  position: relative;
  display: block;
  text-align: right;
  margin-top: 12px;
}

.team-three__single .title-box h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  
}

.team-three__single .title-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-three__single .title-box h2 a:hover {
  color: var(--thm-base);
}

.team-three__single .title-box p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}


.team-three__single .content-box {
  position: relative;
  display: block;
  margin-top: 90px;
  text-align: right;
}

.team-three__single .content-box h2 {
  position: relative;
  color: transparent;
  -webkit-text-stroke: 1px var(--thm-base);
  font-size: 70px;
  line-height: 0.8em;
  font-weight: 600;
  margin-bottom: 17px;
}

.team-three__single .content-box h2 .plus {
  position: relative;
  display: inline-block;
  margin-left: -15px;
}

.team-three__single .content-box .odometer.odometer-auto-theme,
.team-three__single .content-box .odometer.odometer-theme-default {
  font-family: var(--thm-font);
  line-height: 0.8em;
}

.team-three__single .content-box h3 {
  font-size: 45px;
  line-height: 55px;
  font-weight: 600;
  
}


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

.portfolio-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 220px;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.04;
  z-index: -1;
}

.portfolio-three::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 220px;
  right: 0;
  background: #f9f9f9;
  content: "";
  z-index: -1;
}

.portfolio-three__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 48px;
}

.portfolio-three__top .sec-title-three {
  padding-bottom: 0;
}

.portfolio-three__top .counter-box {
  position: relative;
  display: block;
}

.portfolio-three__top .counter-box h2 {
  position: relative;
  color: var(--thm-black);
  font-size: 60px;
  line-height: 0.8em;
  font-weight: 600;
}

.portfolio-three__top .counter-box h2 .plus {
  position: absolute;
  top: -6px;
  font-size: 40px;
}

.portfolio-three__top .counter-box p {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  
}

.portfolio-three__top .odometer.odometer-auto-theme,
.portfolio-three__top .odometer.odometer-theme-default {
  font-family: var(--thm-font);
  line-height: 0.8em;
}

.portfolio-three .container-fluid {
  padding-right: var(--bs-gutter-x, .0rem);
  padding-left: var(--bs-gutter-x, .0rem);
}

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

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

.portfolio-three__single-img {
  position: relative;
  display: block;
  overflow: hidden;
}


.portfolio-three__single-img::before {
  position: absolute;
  content: "";
  top: 0%;
  left: 0%;
  right: auto;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  -o-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  background-color: #000000;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
}

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

.portfolio-three__single-img img {
  width: 100%;
}

.portfolio-three__single-img .content-box {
  position: absolute;
  left: 50px;
  bottom: 0px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.portfolio-three__single:hover .portfolio-three__single-img .content-box {
  bottom: 40px;
  opacity: 1;
  visibility: visible;
}

.portfolio-three__single-img .content-box h2 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.portfolio-three__single-img .content-box h2 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.portfolio-three__single-img .content-box h2 a:hover {
  color: var(--thm-base);
}

.portfolio-three__single-img .btn-box {
  position: absolute;
  top: 0px;
  right: 50px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.portfolio-three__single:hover .portfolio-three__single-img .btn-box {
  top: 50px;
  opacity: 1;
  visibility: visible;
}

.portfolio-three__single-img .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 1;
}

.portfolio-three__single-img .btn-box a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: var(--thm-base);
  transform: scale(0.5);
  opacity: 0;
  transition: all 300ms linear;
  transition-delay: 0.1s;
  content: "";
  z-index: -1;
}

.portfolio-three__single-img .btn-box a:hover::before {
  transform: scale(1);
  opacity: 1;
}

.portfolio-three__single-img .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 15px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.portfolio-three__single-img .btn-box a:hover span::before {
  color: #ffffff;
}

/***
===============================================================
Prices plan One
===============================================================
***/
.prices-plan-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 90px;
  z-index: 1;
}

.prices-plan-one__single {
  position: relative;
  display: block;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 33px 40px 50px;
  z-index: 1;
}

.prices-plan-one__single-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 212px;
  background-attachment: scroll;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

.prices-plan-one__single-bg2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 212px;
  background-attachment: scroll;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition-delay: 0.5s;
  transition: .5s;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(0deg) translateY(-50px);
  -ms-transform: perspective(400px) rotateX(0deg) translateY(-50px);
  transform: perspective(400px) rotateX(0deg) translateY(-50px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: -1;
}

.prices-plan-one__single:hover .prices-plan-one__single-bg2 {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateX(0deg) translateY(0px);
  transform: perspective(400px) rotateX(0deg) translateY(0px);
}

.prices-plan-one__single .inner {
  position: relative;
  display: block;
}

.prices-plan-one__single .table-header {
  position: relative;
  display: block;
}

.prices-plan-one__single .category-wrapper {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.prices-plan-one__single .category-wrapper h3 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 500;
  
  margin-bottom: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.prices-plan-one__single:hover .category-wrapper h3 {
  color: #ffffff;
}

.prices-plan-one__single .category-wrapper p {
  font-size: 16px;
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.prices-plan-one__single:hover .category-wrapper p {
  color: #ffffff;
}

.prices-plan-one__single .table-header h2 {
  position: relative;
  display: block;
  padding-left: 12px;
  color: var(--thm-base);
  font-size: 60px;
  line-height: 1em;
  font-weight: 600;
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.prices-plan-one__single:hover .table-header h2 {
  color: #ffffff;
}

.prices-plan-one__single .table-header h2 .dollar {
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--thm-base);
  font-size: 35px;
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.prices-plan-one__single:hover .table-header h2 .dollar {
  color: #ffffff;
}

.prices-plan-one__single .table-header h2 span {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  margin-left: -9px;
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.prices-plan-one__single:hover .table-header h2 span {
  color: #ffffff;
}

.prices-plan-one__single .table-content {
  position: relative;
  display: block;
  margin-top: 81px;
  margin-bottom: 40px;
}

.prices-plan-one__single .table-content ul {
  position: relative;
  display: block;
}

.prices-plan-one__single .table-content ul li {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.prices-plan-one__single .table-content ul li:last-child {
  margin-bottom: 0;
}

.prices-plan-one__single .table-content ul li .inner {
  position: relative;
  display: flex;
  align-items: center;
}

.prices-plan-one__single .table-content ul li .inner .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ebeaea;
}

.prices-plan-one__single .table-content ul li .inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 15px;
}

.prices-plan-one__single .table-content ul li .inner .text-box {
  position: relative;
  display: block;
  margin-left: 15px;
}

.prices-plan-one__single .table-content ul li .inner .text-box p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  
}

.prices-plan-one__single .table-footer {
  position: relative;
  display: block;
  line-height: 0;
}

.prices-plan-one__single .table-footer .thm-btn {
  background: var(--thm-base);
  line-height: 60px;
  border-radius: 30px;
  color: var(--thm-gray);
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  width: 100%;
  text-align: center;
}

.prices-plan-one__single:hover .table-footer .thm-btn {
  color: #ffffff;
}

.prices-plan-one__single .table-footer .thm-btn i::before {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.prices-plan-one__single:hover .table-footer .thm-btn i::before {
  color: #ffffff;
}

.prices-plan-one__single .table-footer .thm-btn::before {
  background: #f9f9f9;
}

.prices-plan-one__single .table-footer .thm-btn::after {
  background: var(--thm-base);
  background: #f9f9f9;
}

.prices-plan-one__single:hover .table-footer .thm-btn::before {
  transform: rotateX(90deg);
}

.prices-plan-one__single:hover .table-footer .thm-btn::after {
  transform: rotateY(90deg);
}


/***
=============================================
Brand Two
=============================================
***/
.brand-two {
  position: relative;
  display: block;
  padding: 0px 0 0px;
  z-index: 2;
}

.brand-two__title {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 21px;
}

.brand-two__title h2 {
font-size: 27px;
line-height: 36px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: -0.02em;
margin-bottom: 0;
}

@media screen and (min-width: 768px)
{
	.brand-two__title h2 {
	font-size: 47px;
	line-height: 56px;
	margin-bottom: 50px;
	}
}

.brand-two__title h2 span {
  color: var(--thm-base);
}

.brand-two .odometer.odometer-auto-theme,
.brand-two .odometer.odometer-theme-default {
  font-family: var(--thm-font);
  line-height: 32px;
}

.brand-two__title h2 .plus {
  position: relative;
  display: inline-block;
}

.brand-two .swiper-slide {
  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;
  transition: .5s ease;
  height: auto;
}

.brand-two .swiper-slide img {
  transition: .5s ease;
  /*transform: scale(1.02);
  opacity: 0.5;*/
  width: auto;
}

.brand-two .swiper-slide:hover img {
  opacity: 1;
  transform: scale(1);
}


/***
=============================================
Faq Two
=============================================
***/
.faq-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 105px 0px 100px;
}

.faq-two__title {
  position: relative;
  display: block;
  margin-top: -16px;
  margin-bottom: 48px;
}

.faq-two__title h2 {
  font-size: 59px;
  line-height: 1.2em;
  font-weight: 600;
  
  color: transparent;
  -webkit-text-stroke: 1px var(--thm-base);
}

.faq-two__left {
  position: relative;
  display: block;
  margin-right: 10px;
}

.faq-two__left-text {
  position: relative;
  display: block;
  margin-bottom: 34px;
}

.faq-two__left-text p {
  margin-bottom: 0;
}

.faq-two__left-bottom {
  position: relative;
  display: block;
}

.faq-two__left-bottom-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}


.faq-two__left-bottom-single .img-box {
  /*position: relative;
  display: block;
  overflow: hidden;
  background: #000000;*/
  margin-bottom: 28px;
}

.faq-two__left-bottom-single .img-box img {
  width: 100%;
  transition: all 500ms ease;
}

/*
.faq-two__left-bottom-single:hover .img-box img {
  opacity: 0.5;
  transform: scaleX(1.05);
}*/

.faq-two__left-bottom-single p {
  font-size: 16px;
}

.faq-two__left-bottom-single p span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  top: 1px;
  padding-right: 5px;
}


.faq-two__accordion {
  position: relative;
  display: block;
}

.faq-two__accordion .accordion-box .block .acc-content p {
  margin: 0;
  font-size: 15px;
  line-height: 30px;
}

.faq-two__accordion .accordion-box .block .acc-btn {
  padding-top: 22px;
  padding-bottom: 22px;
}

.faq-two__accordion .accordion-box .block .acc-content {
  padding-top: 22px;
  padding-bottom: 38px;
}

/***
=========================================================
Testimonial Three
=========================================================
***/
.testimonial-three {
  position: relative;
  display: block;
  padding: 96px 0px 120px;
  z-index: 1;
}

.testimonial-three .border1 {
  position: absolute;
  top: 0;
  left: 16%;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.testimonial-three .border2 {
  position: absolute;
  top: 0;
  right: 16%;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.testimonial-three .middle-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 480px;
  margin: 0 auto;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1;
}

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

.testimonial-three__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000000;
  opacity: 0.3;
  content: "";
  z-index: -2;
}

.testimonial-three .container-fluid {
  padding-right: var(--bs-gutter-x, .0rem);
  padding-left: var(--bs-gutter-x, .0rem);
}

.testimonial-three__title {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 362px;
}

.testimonial-three__title h2 {
  font-size: 56px;
  line-height: 1.2em;
  font-weight: 600;
  color: #ffffff;
  -webkit-text-stroke: 1px var(--thm-base);
  padding-left: 15px;
  padding-right: 15px;
}

.testimonial-three__content {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: #f9f9f9;
}

.testimonial-three__content-inner {
  position: relative;
  display: block;
}

.testimonial-three__single {
  position: relative;
  display: block;
  padding: 52px 60px 51px;
}

.testimonial-three__single-content {
  position: relative;
  display: block;
}

.testimonial-three__single-content .text-box {
  position: relative;
  display: block;
  text-align: center;
}

.testimonial-three__single-content .text-box p {
  color: #7a838b;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  
}

.testimonial-three__single-content .text-box h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  
}

.testimonial-three__single-content .text-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonial-three__single-content .text-box h2 a:hover {
  color: var(--thm-base)
}

.testimonial-three__single .overlay-content {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding-top: 15px;
  z-index: 5;
  transition-delay: 0.8s;
  transition: .9s;
  -webkit-transform: perspective(400px) rotateX(0deg) translateY(100%);
  -ms-transform: perspective(400px) rotateX(0deg) translateY(100%);
  transform: perspective(400px) rotateX(0deg) translateY(100%);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
}

.testimonial-three__single .overlay-content .icon-box {
  position: absolute;
  top: 0;
  left: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.03);
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 5;
}

.testimonial-three__single .overlay-content .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 18px;
  z-index: 1;
}

.testimonial-three__single .overlay-content .inner {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 50px 45px 40px;
}

.testimonial-three__single .overlay-content .inner .text-box {
  position: relative;
  display: block;
}

.testimonial-three__single .overlay-content .inner .text-box p {
  font-size: 15px;
}

.testimonial-three__single .overlay-content .inner .client-info {
  position: relative;
  display: flex;
  align-items: center;
  border-top: 1px solid #e2ddda;
  padding-top: 35px;
  margin-top: 25px;
}

.testimonial-three__single .overlay-content .inner .client-info .img-box {
  position: relative;
  display: block;
  width: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-three__single .overlay-content .inner .client-info .img-box img {
  width: 100%;
}

.testimonial-three__single .overlay-content .inner .client-info .text {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
}

.testimonial-three__single .overlay-content .inner .client-info .text .h4
{
color: var(--thm-black);
font-size: 18px;
line-height: 28px;
font-weight: 500;
}

.testimonial-three__single .overlay-content .inner .client-info .text p {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  
}

.testimonial-three__carousel.owl-carousel {
  display: block;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.testimonial-three__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding: 0px 0px 0px;
}

.testimonial-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .testimonial-three__single .overlay-content {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) translateY(0%);
  -ms-transform: perspective(400px) rotateX(0deg) translateY(0%);
  transform: perspective(400px) rotateX(0deg) translateY(0%);
}


/***
=========================================================
Blog Three
=========================================================
***/
.blog-three {
  position: relative;
  display: block;
  background: #ffffff;
  z-index: 1;
}

.page_detail_actu,
.blog-three
{
padding: 120px 0px 90px;
}

.blog_three__column
{
margin-bottom: 30px;
}

@media screen and (max-width: 992px)
{
	.blog_three__column
	{
	max-width: 400px;
	}
}

.blog-three__single {
position: relative;
display: block;
height: 100%;
display: flex;
flex-direction: column;
cursor: pointer;
}

.blog-three__single.style2 {
  margin-bottom: 15px;
}

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

.blog-three__single-img::before {
  position: absolute;
  top: 0%;
  right: 0%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .4);
  border-radius: 50%;
  -webkit-transform: translateX(-50%, -50%);
  transform: translateX(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.blog-three__single:hover .blog-three__single-img::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

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

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

.blog-three__single-content {
  position: relative;
  display: block;
  border: 1px solid #eef1fa;
  border-radius: 5px;
  padding: 30px 25px 31px;
}

.blog-three__single-content.style2 {
  border-top: none;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog_three__date
{
margin-bottom: 15px;
font-weight: 500;
color: #333;
}

.blog-three__single-content h2,
.blog-three__single-content .h2
{
font-size: 21px;
line-height: 31px;
font-weight: 500;
}

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

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

.blog-three__single-content p {
  color: #333;
  font-size: 14px;
  line-height: 24px;
}

.blog_three__txt
{
flex-grow: 1;
margin-bottom: 15px;
}

.actus_accueil__btn_wrapper
{
margin-top: 30px;
text-align: center;
}

/***
===============================================================
Cta Two
===============================================================
***/
.cta-two {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 72px 0px 66px;
}

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

.cta-two__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-two__content .text-box {
  position: relative;
  display: block;
}

.cta-two__content .text-box p {
  color: #ffffff;
  letter-spacing: 0.2em;
  margin-bottom: 2px;
}

.cta-two__content .text-box h2 {
  color: #ffffff;
  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
  
}

.cta-two__content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

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

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

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


/***
===============================================================
Footer One Two
===============================================================
***/
.footer-one--two {
  position: relative;
  display: block;
}

.footer-one--two .footer-widget__single-about .text-box p {
  font-size: 15px;
}

.footer-one--two .footer-widget__single-list li a {
  font-size: 15px;
}

.footer-one--two .footer-widget__single-contact .text {
  font-size: 15px;
}

.footer-one--two .footer-widget__single-contact .number {
  font-size: 15px;
}

.footer-one--two .footer-widget__single-contact .email {
  font-size: 15px;
}

.footer-one--two .footer-widget__single .title h2,
.footer-one--two .footer-widget__single .title .h2
{
font-size: 18px;
}

.footer-one--two .footer-widget__single-newsletter .title h3 {
  font-size: 18px;
}

.footer-one--two .footer-widget__single-newsletter-form .input-box input[type="email"] {
  font-size: 16px;
}

.footer-one--two .checked-box label {
  font-size: 15px;
}

.footer-one--two .footer-widget__single .title {
  margin-top: -7px;
}

.footer-one--two .footer-one__bottom-menu li a {
  font-size: 16px;
}

/*
********
EVI***
********
*/

/*a
{
color: #000;
}

a:hover
{
color: #808080;
}*/

h1,h2,h3,h4,h5,h6
{
white-space: pre-line;
}

.faux_gras
{
font-weight: bold;
}

.faux_br
{
display:block;
}

.pl-0
{
padding-left: 0;	
}

.lstn
{
list-style-type: none;
}

/*zoom image*/

.img_zoom
{
overflow: hidden;
}

/*.img_zoom img*/
/*.no-touchevents */
.img_zoom img
{
transition: transform 0.5s ease-out;
margin: 0 auto;
}

.img_zoom_wrapper:hover
{
cursor: pointer;
}

/*.img_zoom_wrapper:hover .img_zoom img*/
@media screen and (min-width: 768px)
{
	/*.no-touchevents */
	.img_zoom_wrapper:hover .img_zoom img
	{
	transform: scale(1.1);
	transition: transform 0.5s ease-out;
	}
}

/*gras*/

.main_content_style strong,
.main_content_style b,
.main_content_style .faux_gras
{
color: #333;
}

/*liens*/

.main_content_style a
{
color: #e1003c;
text-decoration: none;
}

.main_content_style a:hover
{
text-decoration: underline;
}

/*listes*/

.main_content_style ul
{
padding: 0;
}

.main_content_style li
{
margin-bottom: 7px;
}

.main_content_style ul li
{
list-style-type: none;
position: relative;
padding-left: 30px;
line-height: 26px;
margin-bottom: 18px;
}

.main_content_style ul li:before
{
--li-value: 18px;
content: '\f00c';
font-family: 'Font Awesome 5 Free';
position: absolute;
top: 4px;
left: 0;
font-size: 9px;
font-weight: 900;
color: #fff;
background-color: var(--thm-base);
border-radius: 50%;
width: var(--li-value);
height: var(--li-value);
line-height: var(--li-value);
text-align: center;
}

.main_content_style ol
{
padding-left: 19px;
}

/*paragraphes*/

.main_content_style p
{
margin-bottom: 20px;
}

@media screen and (min-width: 768px)
{
	.main_content_style p
	{
	text-align: justify;
	}
}

/*
Hover effect
*/

.hover_effect
{
transition: opacity 0.5s ease;
}

.hover_effect:hover
{
opacity: 0.7;
}

.tos-caption
{
display: none!important;
}

.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-caption .tos-slide
{
padding-bottom: 20px!important;
}

/*
Bandeau header
*/

.bandeau_header
{
height: 25vw;
display: flex;
align-items: center;
background-size: cover;
background-position: center center;
color: #fff;
}

.bandeau_header__title1
{
font-size: 5vw;
line-height: 5vw;
text-transform: uppercase;
font-weight: 500;
color: #fff;
}

@media screen and (min-width: 1100px)
{
	.bandeau_header__title1
	{
	font-size: 43px;
    line-height: 46px;
	}
}




/*
Pagination
*/

.wp-pagenavi
{
margin-top: 30px;
text-align: center;
}

.wp-pagenavi .pages
{
border: none;
display: block;
margin-bottom: 10px;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current
{
background-color: #808080;
border-color: #808080;
color: #fff;
}

.wp-pagenavi a, .wp-pagenavi span
{
display: inline-block;
padding: 10px 16px;
border: 1px solid #E4E4E4;
line-height: 20px;
}

.wp-pagenavi a
{
color: #333;
}

/*
BANDE SERVICES
*/

.standard .bande_services__intro
{
max-width: 900px;
padding: 0 15px;
}

/*
BLOCS SERVICES
*/

.blocs_services
{
display: flex;
}

@media screen and (max-width: 1199px)
{
	.blocs_services
	{
	flex-wrap: wrap;
	}
}

.blocs_service__bloc
{
background-size: cover;
background-position: center center;
text-align: center;
cursor: pointer;
}

.blocs_service__bloc
{
min-height: 650px;
color: #fff;
padding: 30px;
transition: flex-basis 0.6s ease-in-out;
flex-basis: 100%;
}

@media screen and (min-width: 768px)
{
	.blocs_service__bloc
	{
	flex-basis: 50%;
	}
}

@media screen and (min-width: 1200px)
{
	.blocs_service__bloc
	{
	flex-basis: 20%;
	}
}

.blocs_service__bloc_container
{
max-width: 375px;
margin: 0 auto;
}

@media screen and (min-width: 1200px)
{
	.blocs_service__bloc.active
	{
	flex-basis: 40%;
	flex-shrink: 0;
	}
}

.blocs_service__bloc_icon_wrapper
{
background-color: var(--thm-base);
width: 100px;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
margin: 60px auto 60px auto;
padding: 23px;
}

.blocs_service__bloc_icon
{
filter: brightness(0) invert(1);
}

.blocs_service__bloc_title
{
color: #fff;
margin-bottom: 20px;
}

@media screen and (min-width: 1200px)
{
	.blocs_service__bloc_content_visible_on_hover
	{
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	}
}

@media screen and (min-width: 1200px)
{
	.blocs_service__bloc.active .blocs_service__bloc_content_visible_on_hover
	{
	opacity: 1;
	transition-duration: 0.6s;
	transition-delay: 0.6s;
	}
}

.blocs_service__bloc_content_txt
{
margin-bottom: 30px;
line-height: 25px;
}

/*
---
PAGE ACCUEIL
---
*/

/*
Bande services accueil
*/

.home .bande_services
{
padding-top: 80px;
}

/*
---
PAGE SERVICES
---
*/

.page_services .bande1
{
padding-top: 80px;
padding-bottom: 120px;
}

/*bande galerie*/

.page_service .bande_galerie
{
margin-bottom: 40px;
  margin-top: 35px;
}

.page_service .bande_galerie__title
{
margin-bottom: 30px;
}

/*
Carrousel images
*/


.carrousel_images
{
position: relative;
}

.carrousel_images .swiper-button-next::after,
.carrousel_images .swiper-button-prev::after
{
color: #fff;
background-color: rgba(0,0,0,0.5);
padding: 15px 12px;
display: block;	
}

.bande_galerie__voir_toutes
{
border-top-left-radius: 0;
}

@media screen and (max-width: 575px)
{
	.bande_galerie__voir_toutes
	{
	width: 100%;
	}
}

@media screen and (min-width: 576px)
{
	.bande_galerie__voir_toutes
	{
	margin-top: -35px;
	}
}

.bande_galerie__voir_toutes::before
{
border-top-left-radius: 0;
}

/*
---
ACTUS PAGE DETAIL
---
*/

.page_detail_actu h1
{
margin-bottom: 5px;
}

/*
@media screen and (min-width: 768px)
{
	.page_detail_actu h1
	{
	font-size: 30px;
	}
}*/

.page_detail_actu .chapeau
{
margin-bottom: 25px;
font-weight: bold;
color: #333;
text-align: justify;
}

/*
@media screen and (min-width: 500px)
{
	.page_detail_actu .chapeau,
	.page_detail_actu .txt p
	{
	text-align: justify;
	}
}*/

.page_detail_actu .txt h2 
{
font-size: 28px;
margin-top: 25px;
margin-bottom: 15px;
}

.page_detail_actu .txt h3
{
font-size: 23px;
margin-top: 25px;
margin-bottom: 15px;
}

.page_detail_actu .txt p
{
margin-bottom: 15px;
}

.page_detail_actu ul
{
margin-bottom: 15px;
}

.page_detail_actu .date
{
margin-bottom: 20px;
}

.page_detail_actu .image_actu
{
margin: 10px auto 30px auto;
}

.page_detail_actu .txt h2
{
font-size: 25px;
margin-top: 25px;
margin-bottom: 15px;
}

.page_detail_actu .txt h3
{
margin-top: 25px;
margin-bottom: 15px;
}

/*navigation entre posts*/

.post_navigation
{
margin-top: 30px;
}

.post_navigation .col2
{
text-align: right;
}

.post_navigation a
{
display: inline-block;
margin: 0 5px;
transition: opacity 0.3s linear;
}

.bloc_cta_actu
{
background-color: var(--thm-base);
padding: 30px 15px;
margin-top: 35px;
}

@media screen and (min-width: 576px)
{
	.bloc_cta_actu
	{
	padding: 45px;
	}
}

.bloc_cta_actu .title1
{
color: #fff;
margin-top: 0;
text-align: center;
margin-bottom: 15px;
}

.bloc_cta_actu .cta_txt
{
margin-bottom: 25px;
color: #fff;
}

.page_detail_actu main .bloc_cta_actu p
{
text-align: center;
}

.bloc_cta_actu .boutons
{
display: flex;
justify-content: center;
gap: 30px;
}

@media screen and (max-width: 767px)
{
	.bloc_cta_actu .boutons
	{
	flex-direction: column;
	}
}

.bloc_cta_actu .boutons a
{
background-color: transparent;
color: #fff;
}

.bloc_cta_actu .boutons a:hover
{
text-decoration: none;
}

/*
@media screen and (max-width: 767px)
{
	.bloc_cta_actu .boutons .btn_std:first-child
	{
	margin-bottom: 30px;
	}
	
	.bloc_cta_actu .boutons .btn_std
	{
	display: block;
	}
}

@media screen and (min-width: 768px)
{
	.bloc_cta_actu .boutons .btn_std
	{
	margin-left: 10px;
	margin-right: 10px;
	}
}*/

.post-template-default .main_content_style .lien_retour
{
font-size: 14px;
margin-top: 30px;
display: inline-block;
color: #808080;
}
	
/*
Contact (indispensables)
*/

.wpcf7-form-control.wpcf7-submit
{
background: var(--thm-base) none repeat scroll 0 0;
border: medium none;
border-radius: 1px;
color: #fff;
display: inline-block;
font-size: 16px;
padding: 10px 25px;
width: auto;
transition: background 0.3s linear;
}

.wpcf7-form-control.wpcf7-submit:hover
{
background: var(--thm-base);
transition: background 0.3s linear;
}

.wpcf7-submit:hover
{
opacity: 0.7;
transition: opacity 0.3s linear;
}
=

.formfield_wrapper.ne_pas_remplir
{
display: none;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output
{
background-color: #ffb900;
color: #fff;
font-weight: bold;
padding: 10px 15px;
margin-top: 0;
}

.wpcf7 form.sent .wpcf7-response-output
{
color: #fff;
background-color: #46b450;
padding: 10px 15px;
}

.wpcf7-list-item
{
margin: 0;
}

.mention_rgpd_formulaire
{
font-size: 12px;
}

.wpcf7-spinner
{
display: none;
}

form.submitting .wpcf7-spinner
{
display: block;
}

.map_contact
{
overflow: hidden;
position: relative;
height: 800px;
margin-bottom: 100px;
}

.map_contact iframe
{
width: 100%;
}

/*
Plan du site
*/

/*
Plan du site
*/

.html-sitemap-column
{
list-style-type: none;
margin: 0;
padding: 0;
}

.html-sitemap-column ul
{
padding: 0;
margin: 0;
}

.html-sitemap-column li
{
font-size: 16px;
border-bottom: 1px solid #bcd7d9;
padding-bottom: 5px;
margin-bottom: 5px;
}

.html-sitemap-column li ul
{
padding-top: 10px;
}

.html-sitemap-column li ul li
{
border-top: 1px solid #bcd7d9;
padding-left: 25px;
padding-top: 5px;
padding-bottom: 5px;
}

.html-sitemap-column a
{
text-decoration: none;
color: #333;
}

/*
---
BANDEAU COOKIES
---
*/

#tarteaucitronAlertBig #tarteaucitronCloseAlert, #tarteaucitronAlertBig #tarteaucitronPersonalize, #tarteaucitronAlertBig #tarteaucitronPersonalize2, .tarteaucitronCTAButton, #tarteaucitron #tarteaucitronPrivacyUrl, #tarteaucitron #tarteaucitronPrivacyUrlDialog, #tarteaucitronRoot .tarteaucitronDeny, #tarteaucitronRoot .tarteaucitronAllow
{
padding: 12px 28px!important;
}

#tarteaucitronRoot #tarteaucitronAlertBig
{
background: #fff!important;
}

body #tarteaucitronRoot div#tarteaucitronAlertBig
{
border-radius: 3px!important;
box-shadow: 0 0 9px #c5c5c5!important;
}

#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert
{
color: #333!important;
}

#tarteaucitronRoot .tarteaucitronDeny
{
background-color: transparent!important;
color: #333 !important;
}

#tarteaucitronRoot .tarteaucitronDeny,
#tarteaucitronCloseAlert
{
outline: 1px solid #e6e6e6;
}

#tarteaucitronRoot .tarteaucitronDeny .tarteaucitronCross
{
display: none;
}

#tarteaucitronPersonalize2
{
display: block!important;
margin: 0 auto 15px auto !important;
}

#tarteaucitronAllDenied2,
#tarteaucitronCloseAlert
{
display: inline-block !important;
}

#tarteaucitronScrollbarAdjust #tarteaucitronAllDenied
{
color: #fff!important;
outline: none;
}

#tarteaucitronScrollbarAdjust #tarteaucitronAllAllowed
{
outline: 1px solid #fff;
}

#tarteaucitronAllAllowed
{
background-color: green!important;
opacity: 1;
}

/*message quand les cookies ne sont pas autorisés*/

.tac_float
{
padding: 15px
}

.tac_float button
{
display: block!important;
margin: 15px auto 0 auto;
}

/*
Required WordPress CSS
*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.bypostauthor {
}


/* WordPress gallery */
.gallery-caption {
}
.gallery {
	margin-bottom: 1.6em;
}
.gallery-item {
	display: inline-block;
	padding: 1.79104477%;
	text-align: center;
	vertical-align: top;
	width: 100%;
}
.gallery-columns-2 .gallery-item {
	max-width: 50%;
}
.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
	max-width: 25%;
}
.gallery-columns-5 .gallery-item {
	max-width: 20%;
}
.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}
.gallery-icon img {
	margin: 0 auto;
}
.gallery-caption {
	color: #707070;
	color: rgba(51, 51, 51, 0.7);
	display: block;
	font-family: "Noto Sans", sans-serif;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.5;
	padding: 0.5em 0;
}
.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}


.sticky {
}
.wp-caption {
	border: 1px solid #f1f1f1;
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 1.2% auto 0;
	max-width: 98%;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}



/*
---
LISTE PROJETS / REALISATIONS V3
---
*/
/*
#realisationsWrapper .realisation {
    margin: 15px;
}

#realisationsWrapper {
    margin: -15px;
}*/

#realisationsWrapper .realisation a {
display: block;
padding: 15px;
}

/*
Menu projets
*/

#filtres_projets
{
padding: 0;
margin: 50px 0 0 0;
}

@media screen and (min-width: 768px)
{
	#filtres_projets
	{
	display: flex;
	width: 100%;
	}
}

#filtres_projets li
{
list-style-type: none;
border: 1px solid #e7dfd1;
border-radius: 2px;
padding: 12px 10px;
text-align: center;
/*color: var(--tonic-color);*/
cursor: pointer;
transition: all 0.5s ease-in-out;
display: flex;
align-items: center;
text-transform: none;
}

@media screen and (max-width: 767px)
{
	#filtres_projets li
	{
	margin-bottom: 20px;
	}
}

@media screen and (min-width: 768px)
{
	#filtres_projets li:not(:first-child)
	{
	margin-left: 5px;
	}

	#filtres_projets li:not(:last-child)
	{
	margin-right: 5px;
	}
}


#filtres_projets li .wrapper
{
width: 100%;
font-size: 16px;
}

@media screen and (min-width: 768px)
{
	#filtres_projets li
	{
	flex: 1;
	}
}

#filtres_projets li:hover,
#filtres_projets li.current
{
background: var(--thm-base);
border-color: var(--thm-base);
transition: all 0.5s ease-in-out;
}

#filtres_projets li:hover .wrapper,
#filtres_projets li.current .wrapper
{
color: #fff;
}


.bande_projets
{
padding-top: 60px;
}

.bande_projets .title1
{
margin-bottom: 25px;
}

@media screen and (max-width: 575px)
{
	.bande_projets .title1
	{
	font-size: 30px;
	}
}

.bande_projets .intro 
{
margin-bottom: 45px;
font-weight: 400;
}

.bande_projets .intro,
.bande_projets .intro p
{
text-align: center;
}

.bande_projets .intro .txt
{
margin-bottom: 30px;
}

.realisations_row_wrapper
{
padding: 0;
overflow: hidden;
}

.realisations_wrapper .realisation
{
display: block;
padding: 0;
min-height: 200px;
overflow: hidden;
}

@media screen and (min-width: 500px) and (max-width: 767px)
{
	.realisations_wrapper .realisation
	{
	float: left;
	width: 50%;
	}
}


.realisations_wrapper .realisation .layer_table
{
position: absolute;
top: 0;
left: 0;
display: flex;
align-items: center;
width: 100%;
height: 100%;
/*background-color: rgba(35, 16, 5, 0.5);*/
transition: all 0.5s ease-in;
}

.realisations_wrapper .realisation .img_zoom
{
background: #000;
}

.realisations_wrapper .realisation .img_zoom img
{
opacity: 0.6;
}

.realisations_wrapper .realisation .layer_cell
{
/*display: table-cell;*/
width: 100%;
/*height: 100%;*/
color: #fff;
text-align: center;
/*vertical-align: middle;*/
padding: 30px;
}

.realisations_wrapper .realisation .layer_cell .projet_nom
{
font-size: 23px;
margin-bottom: 15px;
}

.realisations_wrapper .realisation .layer_cell .pre_titre
{
font-size: 18px;
}

.realisations_wrapper .realisation .layer_cell .projet_txt
{
font-style: italic;
margin-bottom: 10px;
}

.realisations_wrapper .realisation .btn_wrapper
{
opacity: 0;
max-height: 0;
overflow: hidden;
transition: all 0.5s ease-in;
}

.no-touch .realisations_wrapper .realisation:hover .btn_wrapper
{
opacity: 1;
max-height: 200px;
transition: max-height 0.5s ease-in 0.5s, opacity 0.4s ease-in 0.5s;
}

.realisations_wrapper .realisation .btn_wrapper .travaux
{
margin-bottom: 15px;
font-size: 18px;
font-weight: 600;
}

.realisations_wrapper .realisation .btn_wrapper .btn_std
{
color: #fff;
border-color: #fff;
text-transform: uppercase;
border-radius: 3px;
font-size: 14px;
}

.no-touch .realisations_wrapper .realisation .btn_wrapper .btn_std:hover
{
background: #fff;
color: #444;
}

/*
Page détail réalisations
*/

.detail_realisation
{
padding-top: 80px;
padding-bottom: 120px;
}

.detail_realisation__container_wrapper
{
background-image: url(../images/escabeau_filigrane.png);
background-repeat: no-repeat;
background-position: right bottom;
}

.detail_realisation__main_title
{
margin-bottom: 35px;
font-size: 35px;
text-align: center;
}

.detail_realisation__liste_caracteristiques
{
align-items: center;
flex-direction: column;
margin-bottom: 30px;
display: flex;
}

@media screen and (min-width: 576px)
{
	.detail_realisation__liste_caracteristiques
	{
	flex-direction: row;
	justify-content: center;
	gap: 30px;
	}
}


.detail_realisation__main_image_wrapper
{
margin-bottom: 35px;
text-align: center;
}

.detail_realisation__main_image_wrapper img
{
display: inline-block;
border: 9px solid white;
box-shadow: 0 0 33px rgba(0,0,0,0.07);
}

.detail_realisation__txt
{
margin-bottom: 15px;
}

.detail_realisation__txt p:not(:last-child)
{
margin-bottom: 20px;
}

.detail_realisation__txt h2
{
margin-bottom: 25px;
}

.detail_realisation__txt h3
{
margin-bottom: 20px;
margin-top: 25px;
font-size: 20px;
}

.detail_realisation__bande_images
{
margin-bottom: 30px;
}

.detail_realisation__bande_images_titre
{
margin-bottom: 20px;
font-size: 28px;
}

.detail_realisation__lien_retour_wrapper
{
margin-bottom: 30px;
}

.detail_realisation__intro_avant
{
margin-top: 40px;
margin-bottom: 30px;
text-align: center;
padding: 0 15px;	
}

/*
Evi gallery
*/

.evi_gallery
{
display: flex;
flex-wrap: wrap;
max-width: 1920px;
margin: 0 auto;
justify-content: center;
}

ul.evi_gallery
{
list-style-type: none;
padding: 0;
gap: 30px;
}

@media screen and (min-width: 480px)
{
	.evi_gallery .column
	{
	flex-basis: 50%;
	}
}

@media screen and (min-width: 992px)
{
	.evi_gallery .column
	{
	flex-basis: 33.333333%;
	}
}

@media screen and (min-width: 1200px)
{
	.evi_gallery .column
	{
	flex-basis: 25%;
	}
}

.evi_gallery .column.avec_detail
{
position: relative;
}

.evi_gallery .column.avec_detail img
{
position: relative;
z-index: 1;
}

.evi_gallery .column.avec_detail .overlay
{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
color: #fff;
z-index: 2;
background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.66) 86%, rgba(0,0,0,0.66) 100%);
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 35%,rgba(0,0,0,0.66) 86%,rgba(0,0,0,0.66) 100%);
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 35%,rgba(0,0,0,0.66) 86%,rgba(0,0,0,0.66) 100%);
opacity: 0;
transition: all 0.5s ease;
display: flex;
padding: 20px;
align-items: flex-end;
font-size: 20px;
text-decoration: none;
}

.no-touchevents .evi_gallery .column.avec_detail:hover .overlay,
.touchevents .evi_gallery .column.avec_detail .overlay
{
opacity: 1;
}

/*
---
FOOTER
---
*/

.footer .textwidget h2
{
color: #fff;
font-size: 23px;
margin-bottom: 10px;	
}






.tos-close, .tos-next, .tos-prev
{
opacity: 1!important;
}

.tos-close span::after, .tos-close span::before
{
width: 10px;
height: 10px;
}

.tos-close span::after, .tos-next span
{
border-top: 5px solid #fff;
border-right: 5px solid #fff;
}

.tos-close span::before, .tos-prev span
{
border-bottom: 5px solid #fff;
border-left: 5px solid #fff;
}

/***
===============================================================
End Css 
===============================================================
***/