/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --thm-font: 'Saira Semi Condensed', sans-serif;
  --thm-font-2: 'Poppins', sans-serif;
  --thm-reey-font: 'reeyregular';
  --thm-gray: #585b5e;
  --thm-gray-rgb: 110, 116, 120;
  --thm-base: #e72122;
  --thm-base-rgb: 234, 27, 41;
  --thm-black: #1c1c1c;
  --thm-black-rgb: 23, 41, 62;
  --thm-gray-bg: #f2f3f5;
  --thm-gray-bg-rgb: 242, 243, 245;
  --font-default: 'Outfit', sans-serif;
	--font-heading: 'Outfit', sans-serif;
	--font-secondary: 'Manrope', sans-serif;
	--fontawesome: "Font Awesome 5 Pro";
	--black: #000000;
	--dark: #1D2027;
	--dark-secondary: #022b6d;
	--dark-optional: #3e00a7;
	--white: #ffffff;
	--color-primary: #e72122;
	--color-secondary: #000000;
	--color-optional: #57B33E;
	--color-heading: #0e0e0e;
	--color-paragraph: #666666;
	--box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
	--box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
	--box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
	--bg-gray: #F7F7F7;
	--bg-gradient: linear-gradient(90deg, var(--color-secondary)  0%, var(--color-primary) 100%);
	--bg-gradient-secondary: linear-gradient(90deg, var(--color-secondary)  40%, var(--dark-secondary) 100%);
	--bg-gradient-reverse: linear-gradient(90deg, var(--color-primary)  0%, var(--color-secondary) 100%);
	--gradient-bg: linear-gradient(90deg, #DF0A0A  0%, #930707 100%);
	--bg-gradient-optional: linear-gradient(90deg, #57B33E  50%, #b59f11 100%);
}


.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: 20px;
  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 {
  color: var(--thm-black);
  font-family: var(--thm-font);
  margin: 0;
}

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

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
	position: relative;
}

.default-padding {
	padding-top: 120px;
	padding-bottom: 120px;
}

.default-padding-big {
	padding: 250px 0;
}

.default-padding-top {
	padding-top: 120px;
}

.bg-gray {
	background: var(--bg-gray);
}

.text-light {
  color: var(--white);
}

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

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

.default-padding {
	padding-top: 120px;
	padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
	.default-padding {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

.default-padding-big {
	padding: 250px 0;
}

@media only screen and (max-width: 767px) {
	.default-padding-big {
		padding: 50px 0;
	}
}

.default-padding-top {
	padding-top: 120px;
}

@media only screen and (max-width: 767px) {
	.default-padding-top {
		padding-top: 50px;
	}
}

.default-padding-bottom {
	padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
	.default-padding-bottom {
		padding-bottom: 50px;
	}
}

.default-padding.bottom-less {
	padding-top: 120px;
	padding-bottom: 90px;
}

@media only screen and (max-width: 767px) {
	.default-padding.bottom-less {
		padding-top: 50px;
		padding-bottom: 20px;
	}
}

.default-padding-bottom.bottom-less {
	margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
	.default-padding-bottom.bottom-less {
		margin-bottom: 0;
	}
}

.default-padding-top.bottom-less {
	margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
	.default-padding-top.bottom-less {
		margin-bottom: -20px;
	}
}

@media only screen and (min-width: 1200px) {
	.align-center {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}



/* ============================================================== 
    # About Style
=================================================================== */

.angle-shape {
	position: relative;
	z-index: 1;
}

.angle-shape:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	height: 0;
	border-right: 100vw solid #F7F7F7;
	border-top: 200px solid transparent;
	width: 0;
	z-index: -1;
}

.about-thumb {
	position: relative;
	margin-bottom: 80px;
}

.owner-info {
	display: flex;
	align-items: center;
	margin-top: 30px;
}

.owner-info img {
	height: 80px;
}

.owner-info h4 {
	font-weight: 600;
	margin-bottom: 5px;
}

.owner-info .left-info {
	margin-right: 30px;
	border-right: 1px solid #e7e7e7;
	padding-right: 30px;
}

.shape-animated-left img {
	position: absolute;
	left: 0;
	bottom: 30%;
}

.shape-animated-left img:nth-child(2) {
	position: rela;
	left: 50px;
	top: 120px;
}

.thumb-shape-bottom {
	position: absolute;
	right: -50px;
	bottom: -50px;
	text-align: right;
}

.thumb-shape-bottom img {
	position: relative;
}

.thumb-shape-bottom img:first-child {
	position: absolute;
	right: -50px;
	height: 140px;
}




/* ============================================================== 
     # Fun Fact
=================================================================== */

.fun-fact .counter {
	position: relative;
}

.fun-fact .counter {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 70px;
	font-weight: 600;
	color: var(--color-heading);
	line-height: 1;
	margin-bottom: 5px;
}

.fun-fact .medium {
	font-weight: 600;
	color: var(--color-heading);
}

.text-center .fun-fact .counter {
	justify-content: center;
	align-items: center;
}

.fun-fact {
	display: inline-block;
	text-align: left;
}

.text-center .fun-fact {
	text-align: center;
}

.about-card {
	display: inline-block;
	padding: 50px;
	background: var(--dark);
}

.about-card li {
	display: flex;
	margin-top: 30px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 15px;
}

.about-card li i {
	display: inline-block;
	font-size: 60px;
	min-width: 85px;
	position: relative;
	top: 30px;
	color: var(--color-primary);
}

.about-card .fun-fact .counter {
	color: var(--white);
	line-height: 1;
	font-size: 50px;
}

.about-card .fun-fact .medium {
	color: var(--white);
	font-weight: 600;
	opacity: 0.8;
}

.about-card li:first-child {
	margin: 0;
}

.about-style-one .about-card {
	position: absolute;
	left: -80px;
	bottom: -80px;
}

.fun-factor-style-one-area {
	background-size: 32%;
	background-repeat: no-repeat;
	background-position: bottom right;
}

.fun-factor-style-one-box {
	position: relative;
}

.shape-animated-up-down {
	position: absolute;
	top: -158px;
}

.shape-right-bottom-extra {
	position: absolute;
	left: 6%;
	bottom: -60px;
	max-width: 10%;
}

.sub-heading {
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 600;
	background: var(--bg-gradient-reverse);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
}

/***
=============================================
    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: -8px;
  padding-bottom: 48px;
}

.sec-title__tagline {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.sec-title__tagline h6 {
  color: var(--thm-base);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--thm-font);
}

.sec-title__title {
  color: var(--thm-black);
  font-size: 60px;
  line-height: 1.1em;
  font-weight: 600;
  text-transform: capitalize;
}

/***
=============================================
   Sec Title Style2
=============================================
***/
.sec-title.style2 {
  position: relative;
  display: block;
}

.sec-title.style2 .sec-title__tagline {
  margin-bottom: 13px;
}

.sec-title.style2 .sec-title__title {
  font-size: 55px;
  line-height: 1.1em;
}

/***
=============================================
   Thm Btn
=============================================
***/
.thm-btn {
  position: relative;
  display: inline-block;
  border-radius: 50px;
  padding: 0px 55px 0px;
  line-height: 65px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  background: var(--thm-base);
  overflow: hidden;
  font-family: var(--thm-font);
  text-transform: capitalize;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 1;
}

.thm-btn:before {
  -webkit-transition-duration: 600ms;
  transition-duration: 600ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background: var(--thm-black);
}

.thm-btn:hover:before {
  top: -40%;
}

.thm-btn .txt {
  position: relative;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.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: 30px;
  bottom: 200px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--thm-base);
  border: 2px solid var(--thm-base);
  color: #ffffff;
  font-size: 10px;
  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(-90deg);
}


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

.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: 600;
  border: 1px solid #dfe2e4;
  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-black);
  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: 15px;
  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-gray);
  opacity: 0.9;
  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 {
  background: var(--thm-black);
}

.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;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 5;
}

.search-popup__content .thm-btn:hover i::before {
  color: #ffffff;
}

.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: #ffffff; /* Arka plan beyaz */
  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;
  font-family: var(--thm-font);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading.red-text {
  color: #e72122; /* SEV yazısı kırmızı */
  -webkit-text-stroke-color: #e72122;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading.black-text {
  color: #1c1c1c; /* BETON yazısı siyah */
  -webkit-text-stroke-color: #1c1c1c;
}

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

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

.handle-preloader .animation-preloader .spinner {
  border: 3px solid #000000; /* Halka siyah */
}

/* 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;
  }
}




/***
=============================================
    xs Sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  cursor: url(../images/icon/cross-out.png), pointer;
  z-index: 99999999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .6;
  visibility: visible;
  transition-delay: 0.0s;
  right: 100%;
  background-color: #000000;
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 500px;
  background-color:#ffffff;
  overflow: hidden;
  overflow-y: auto;
  -webkit-transform: translateX(-300px);
  transform: translateX(-300px);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 1;
  z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  left: 0;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.sidebar-textwidget {
  padding: 70px 30px;
}

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

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

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

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

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  border: 2px solid #1c1c1c;
  border-radius: 50%;
  color: #1c1c1c;
  font-size: 16px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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


.xs-sidebar-group .content-inner .logo {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

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

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 14px;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--thm-base);
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 10px;
  padding-right: 15px;
}

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

.xs-sidebar-group .content-inner .content-box p {
  color: #000000;
  margin: 0;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn {
  position: relative;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn .thm-btn {
  position: relative;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn .thm-btn::before {
  background: #000000;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn .thm-btn:hover .txt {
  color: var(--thm-black);
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #000000;
  transition: all 500ms ease;
  outline: none;
  border-color: #c6b5b5;
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

.sidebar-contact-info {
  position: relative;
  display: block;
  padding-top: 43px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: #030303;
  line-height: 30px;
}

.sidebar-contact-info ul li span {
  position: relative;
  display: inline-block;
  width: 25px;
}

.sidebar-contact-info ul li span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
}

.sidebar-contact-info ul li a {
  color: #000000;
}

.xs-sidebar-group .content-inner .thm-social-link1 {
  overflow: hidden;
}

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

.thm-social-link1 ul {
  position: relative;
}

.thm-social-link1 ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

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

.thm-social-link1 ul li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background: var(--thm-base);
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: #ffffff;
  border-radius: 50%;
  transition: .5s;
  transform: scale(.5);
  opacity: 0;
  content: '';
  z-index: -1;
}

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

.thm-social-link1 ul li a:hover {
  color: var(--thm-base);
}

.submit-btn {
  background-color: var(--thm-base);;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  text-align: center;
}

.submit-btn:hover {
  background-color: black;
  transform: scale(1.1);
}

.form-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.form-control {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.thm-social-link1 {
  margin-top: 20px;
}

/*--------------------------------------------------------------
  # 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-gray);
  opacity: 0.7;
  cursor: pointer;
}

.mobile-nav__content {
  position: relative;
  width: 300px;
  background-color: white;
  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 rgb(0, 0, 0);
  border-bottom: 1px solid rgb(0, 0, 0);
}

.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 rgb(0, 0, 0);
}

.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: var(--thm-black);
  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: var(--thm-base);
}

.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-base);
  border: none;
  outline: none;
  color: #ffffff;
  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: var(--thm-black);
  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: var(--thm-black);
  -webkit-transition: 500ms;
  transition: 500ms;
}

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

.mobile-nav__contact li>i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 0%;
  background-color: var(--thm-base);
  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: var(--thm-base);
  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: white;
  background-color: var(--thm-black);
}



/* 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: 42px;
  padding-bottom: 42px;
}

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

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

.main-menu .main-menu__list>li.dropdown>a:before {
  position: absolute;
  top: 2px;
  right: 5px;
  font-family: 'icomoon' !important;
  content: "\e906";
  color: var(--thm-black);
  font-size: 11px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

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

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


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

.main-menu .main-menu__list>li>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-black-rgb, 53, 84, 209), 0.07);
}

.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: 17px;
  line-height: 30px;
  color: black;
  letter-spacing: 0;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  padding: 10px 25px;
  -webkit-transition: 500ms;
  transition: 500ms;
  font-family: var(--thm-font);
}

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

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}


/*-------------------------------------
    Stricky Header 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: var(--thm-black);
  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: 48px;
  padding-bottom: 49px;
}

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

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


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

.main-header-one__top {
  position: relative;
  display: block;
  background: #171827;
  padding: 0px 0px 0px;
}

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

.main-header-one__top-left p {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

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

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

.main-header-one__top-middle .btn-box .thm-btn {
  line-height: 90px;
}

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

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


.header-social-links {
  position: relative;
  display: block;
  margin-top: -8px;
}

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

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

.header-social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.header-social-links ul li a::before {
  position: absolute;
  top: 7px;
  left: -7px;
  bottom: -7px;
  right: 7px;
  background: rgba(255, 255, 255, 0.15);
  content: "";
  z-index: -1;
}

.header-social-links ul li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-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;
}

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

.header-social-links ul li a span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.header-social-links ul li a:hover span::before {
  color: var(--thm-base);
}

.side-content-button-box {
  position: relative;
  display: block;
}

.side-content-button-box .side-content-button {
  position: relative;
  display: block;
  line-height: 0;
}

.side-content-button-box .side-content-button a.navSidebar-button {
  position: relative;
  display: inline-block;
}

.side-content-button-box .side-content-button a.navSidebar-button .decor {
  position: relative;
  display: block;
  width: 35px;
  height: 2px;
  background: #ffffff;
  margin: 8px 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.side-content-button-box .side-content-button a.navSidebar-button .decor.style2 {
  width: 30px;
  margin-left: 5px;
}

.side-content-button-box .side-content-button a.navSidebar-button:hover .decor {
  background: var(--thm-base);
}


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

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

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

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

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

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

.main-header-one__bottom-left .logo-box a {
  position: relative;
  display: inline-block;
}

.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;
  margin-right: 45px;
}

.header-search-box a {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.header-contact-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.header-contact-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: #dcdfe2;
  content: "";
}

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

.header-contact-box .icon-box span:before {
  color: var(--thm-base);
  font-size: 35px;
}

.header-contact-box .text-box {
  position: relative;
  display: block;
  margin-left: 25px;
}

.header-contact-box .text-box p {
  color: #0d0e0f;
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--thm-font-2);
}

.header-contact-box .text-box a {
  color: black;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: -0.011em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

/***
=============================================
Main Header Two
=============================================
***/
.main-header-two {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
}

.main-header-two__top {
  position: relative;
  display: block;
  background: #010101;
  padding: 8px 0px 7px;
  overflow: hidden;
  z-index: 1;
}

.main-header-two__top::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 600px;
  border-top: 65px solid var(--thm-base);
  border-right: 45px solid transparent;
  content: "";
  z-index: -1;
}

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

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

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

.main-header-two__social-links ul {
  position: relative;
  display: block;
  padding-right: 7px;
}

.main-header-two__social-links ul::before {
  position: absolute;
  top: -20px;
  right: 0;
  bottom: -20px;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  content: "";
}

.main-header-two__social-links ul li {
  position: relative;
  display: inline-block;
  padding-left: 17px;
  margin-right: 11px;
}

.main-header-two__social-links ul li::before {
  position: absolute;
  top: -30px;
  left: 0;
  bottom: -30px;
  width: 1px;
  background: rgba(255, 255, 255, .15);
  content: "";
}

.main-header-two__social-links ul li a {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 17px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-two__social-links ul li a:hover {
  color: var(--thm-black);
}

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

.main-header-two__top-contact {
  position: static;
  display: block;
}

.main-header-two__top-contact-list {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.main-header-two__top-contact-list li {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 25px;
}

.main-header-two__top-contact-list li .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 35px;
  z-index: 1;
}

.main-header-two__top-contact-list li .icon-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  z-index: -1;
  content: "";
}

.main-header-two__top-contact-list li .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 17px;
}

.main-header-two__top-contact-list li .text-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-header-two__top-contact-list li .text-box p {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.main-header-two__top-contact-list li .text-box p a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-two__top-contact-list li .text-box p a:hover {
  color: var(--thm-base);
}


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

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

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

.main-header-two__bottom .main-menu__wrapper-inner {
  position: relative;
  display: block;
  border-top: 5px solid var(--thm-base);
  background: #ffffff;
}

.main-header-two__bottom .main-menu__wrapper-inner-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.main-header-two .main-menu .main-menu__list>li,
.stricky-header--two.stricky-header .main-menu__list>li {
  margin-left: 25px;
  padding-right: 25px;
  padding-top: 37px;
  padding-bottom: 37px;
}

.main-header-two .main-menu .main-menu__list>li:last-child,
.stricky-header--two.stricky-header .main-menu__list>li:last-child {
  padding-right: 0;
}

.main-header-two .main-menu .main-menu__list>li:first-child,
.stricky-header--two.stricky-header .main-menu__list>li:first-child {
  margin-left: 0;
}

.main-header-two .main-menu .main-menu__list>li::before,
.stricky-header--two.stricky-header .main-menu__list>li::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: #eeefef;
  content: "";
}

.main-header-two .main-menu .main-menu__list>li:last-child:before,
.stricky-header--two.stricky-header .main-menu__list>li:last-child:before {
  display: none;
}

.main-header-two__bottom-left .logo-box {
  position: relative;
  display: block;
}

.main-header-two__bottom-left .logo-box a {
  position: relative;
  display: inline-block;
}

.main-header-two__bottom-left .logo-box a img {
  width: 100%;
}

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

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

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

.main-header-two__bottom-right .btn-box a {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-left: 100px;
  z-index: 1;
}

.main-header-two__bottom-right .btn-box a::before {
  position: absolute;
  top: -43px;
  left: 0px;
  bottom: -38px;
  right: -106px;
  background: var(--thm-base);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 18% 100%);
  content: "";
  z-index: -1;
}


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

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

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

.main-header-three__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px 20px;
  border-bottom: 2px solid #f3f3f4;
}

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

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

.main-header-three__social-links ul {
  position: relative;
  display: block;
}

.main-header-three__social-links ul li {
  position: relative;
  display: inline-block;
  margin-right: 4px;
}

.main-header-three__social-links ul li:last-child {
  margin-right: 0;
}

.main-header-three__social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 60px;
  overflow: hidden;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 1;
}

.main-header-three__social-links ul li a:hover {
  border-color: var(--thm-base);
  transition: all 200ms linear;
  transition-delay: 0.4s;
}

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

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

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

.main-header-three__social-links ul li a:hover span::before {
  color: #ffffff;
}

.main-header-three__top-left-text {
  position: relative;
  display: block;
  margin-left: 25px;
}

.main-header-three__top-left-text p {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

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

.main-header-three__top-right .header-search-box {
  position: relative;
  display: block;
  margin-right: 0;
  padding-right: 35px;
}

.main-header-three__top-right .header-search-box::before {
  position: absolute;
  top: -12px;
  right: 0;
  bottom: -12px;
  width: 1px;
  background: #edeeee;
  content: "";
}

.main-header-three__top-right .header-search-box a {
  color: var(--thm-base);
  font-size: 20px;
}

.main-header-three__top-right .header-search-box a:hover {
  color: var(--thm-primary);
}

.main-header-three__top-right-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--thm-primary);
  margin-left: 35px;
  margin-right: 30px;
}

.main-header-three__top-right-icon span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 25px;
}


.main-header-three__top-location {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 160px;
  z-index: 1;
}

.main-header-three__top-location::before {
  position: absolute;
  top: -26px;
  left: 0;
  bottom: 0;
  right: -9999999px;
  content: "";
  z-index: -1;
  border-top: 102px solid var(--thm-base);
  border-left: 45px solid transparent;
}

.main-header-three__top-location .icon-box {
  position: relative;
  display: block;
}

.main-header-three__top-location .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 45px;
}

.main-header-three__top-location .content-box {
  position: relative;
  display: block;
  margin-left: 25px;
}

.main-header-three__top-location .content-box p {
  color: rgba(255, 255, 255, .87);
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.main-header-three__top-location .content-box h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}




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

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

.main-header-three__bottom .auto-container {
  max-width: 1530px;
  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-left .logo-box {
  position: relative;
  display: block;
}

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

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

.main-header-three__bottom .main-menu .main-menu__list>li {
  padding-top: 43px;
  padding-bottom: 44px;
}

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

.main-header-three__bottom-right .icon-box {
  position: relative;
  display: block;
}

.main-header-three__bottom-right .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 35px;
}

.main-header-three__bottom-right .content-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-header-three__bottom-right .content-box p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
}

.main-header-three__bottom-right .content-box a {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

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

.main-slider-one .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  background-position: center center;
  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;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.main-slider-one .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.main-slider-one .image-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000000;
  opacity: 0.3;
  content: "";
  z-index: -1;
}

.main-slider-one__img {
  position: absolute;
  left: 0;
  bottom: 0;
  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 .swiper-slide-active .main-slider-one__img {
  opacity: 1;
  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 .auto-container {
  max-width: 1530px;
  width: 100%;
}

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

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

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

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

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

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

.main-slider-one__content .btn-box .thm-btn {
  padding-right: 90px;
  padding-left: 40px;
}

.main-slider-one__content .btn-box .thm-btn .icon-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.main-slider-one__content .btn-box .thm-btn .icon-box i:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
}

.main-slider-one__outer-content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0px;
  left: 0px;
  bottom: 200px;
  background: #ffffff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg) translateX(0%);
  width: max-content;
  text-align: center;
  line-height: 0;
  z-index: 5;
  padding-top: 80px;
  padding-left: 25px;
  padding-right: 25px;
}

.main-slider-one__outer-content .social-links {
  position: relative;
  display: block;
}

.main-slider-one__outer-content .social-links ul {
  position: relative;
  display: block;
}

.main-slider-one__outer-content .social-links ul li {
  position: relative;
  display: inline-block;
  margin-bottom: 21px;
  padding-top: 33px;
}

.main-slider-one__outer-content .social-links ul li::before {
  position: absolute;
  top: 0;
  left: 12px;
  width: 2px;
  height: 10px;
  background: var(--thm-black);
  content: "";
}

.main-slider-one__outer-content .social-links ul li:last-child {
  margin-bottom: 0px;
}

.main-slider-one__outer-content .social-links ul li:first-child:before {
  display: none;
}

.main-slider-one__outer-content .social-links ul li:last-child {
  margin-right: 0;
}

.main-slider-one__outer-content .social-links ul li:first-child {
  padding-top: 0px;
}

.main-slider-one__outer-content .social-links ul li a {
  color: black;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider-one__outer-content .social-links ul li a:hover {
  color: var(--thm-base);
}

.main-slider-one__video {
  position: absolute;
  left: 575px;
  bottom: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 5;
  opacity: 0;
  transform: translateY(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 .swiper-slide-active .main-slider-one__video {
  opacity: 1;
  transform: translateY(0);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-one__video a {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  text-align: center;
  color: #ffffff;
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider-one__video a:hover {
  color: #ffffff;
  background: var(--thm-base);
}

.main-slider-one__video a::before,
.main-slider-one__video a::after {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.main-slider-one__video a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.main-slider__nav {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  line-height: 0;
  z-index: 100;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0px;
  color: #ffffff;
  font-size: 30px;
  line-height: 70px;
  text-align: center;
  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::before,
.main-slider__nav .swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-radius: 0%;
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-slider__nav .swiper-button-next:hover::before,
.main-slider__nav .swiper-button-prev:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.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: 30px;
  line-height: 70px;
  font-weight: 400;
  transform: rotate(90deg);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider__nav .swiper-button-next i::before {
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 70px;
  font-weight: 400;
  transform: rotate(90deg);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider__nav .swiper-button-prev:hover i::before,
.main-slider__nav .swiper-button-next:hover i::before {
  color: var(--thm-black);
}

/***
=============================================
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;
  opacity: 1;
  background-position: center center;
  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;
  background-repeat: no-repeat;
  background-size: cover;
  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: 0;
  background: #000000;
  opacity: 0.55;
  content: "";
  z-index: -1;
}

.main-slider-two .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  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-two .swiper-slide-active .shape1 {
  opacity: 1;
  transform: translateX(0);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider-two .shape2 {
  position: absolute;
  top: -20px;
  right: -170px;
  opacity: 0;
  z-index: 1;
  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-two .swiper-slide-active .shape2 {
  opacity: 0.04;
  transform: translateX(0);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.main-slider-two .shape3 {
  position: absolute;
  bottom: 25px;
  right: 140px;
  opacity: 0;
  z-index: 1;
  transform: translateY(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 .shape3 {
  opacity: 0.5;
  transform: translateY(0);
  -webkit-transition-delay: 1600ms;
  -moz-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.main-slider-two .container {
  padding: 352px 15px 200px;
}

.main-slider-two__content {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 2;
}

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

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

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

.main-slider-two__content .text-box {
  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 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

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

.main-slider-two__content .text-box p {
  color: #ffffff;
}

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

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


#main-slider-pagination {
  position: absolute;
  top: 44%;
  right: 70px;
  left: auto;
  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;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: scaleX(1.0) translateX(0px);
  counter-reset: count;
  z-index: 105;
  width: auto;
}

#main-slider-pagination .swiper-pagination-bullet {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 1;
  background-color: transparent;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  margin-bottom: 10px;
}

#main-slider-pagination .swiper-pagination-bullet:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
  line-height: 50px;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  counter-increment: count;
  content: ""counter(count);
  font-family: var(--alori-font);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  border: 1px solid transparent;
}

#main-slider-pagination .swiper-pagination-bullet::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0;
  content: "";
  transform: scale(0.5);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  color: #ffffff;
  transform: scale(1.0);
  opacity: 1;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
  margin-left: 0px;
}

.swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0px;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  color: #ffffff;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:focus,
#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:hover {
  outline: none;
  border: none;
}

/***
=============================================
Main Slider Three
=============================================
***/
.main-slider-two.style3 {
  position: relative;
  display: block;
  z-index: 1;
}

.main-slider-two.style3 .image-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000001;
  opacity: 0.52;
  content: "";
  z-index: -1;
}

.main-slider-two.style3 .container {
  padding: 192px 15px 210px;
}

.main-slider-two__content.style3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: inherit;
  text-align: right;
}

.main-slider-two__content-right {
  position: relative;
  display: block;
}

.main-slider-three__content-icon {
  position: relative;
  display: block;
  opacity: 0;
  transform: scale(0.8);
  -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: 2;
}

.main-slider .swiper-slide-active .main-slider-three__content-icon {
  transform: scale(1.0);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
  opacity: 1;
}

.main-slider-three__content-icon a {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 0%;
  background: #ffffff;
  border: 0px solid #ffffff;
  text-align: center;
  color: var(--thm-base);
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider-three__content-icon a:hover {
  color: #ffffff;
  background: var(--thm-base);
}

.main-slider-three__content-icon a::before,
.main-slider-three__content-icon a::after {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 0%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.main-slider-three__content-icon a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}


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

.page-header::before {
  position: absolute;
  top: -260px;
  left: 207px;
  bottom: -260px;
  width: 250px;
  background: var(--thm-base);
  opacity: 0.6;
  z-index: 0;
  content: "";
  transform: rotate(34deg);
}

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

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

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

.page-header__inner h2 {
  color: #ffffff;
  font-size: 72px;
  line-height: 1em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.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: 600;
  text-transform: capitalize;
}

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

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


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

.services-one .shape1 {
  position: absolute;
  bottom: 235px;
  right: 15px;
  z-index: -1;
}

.services-one::before {
  position: absolute;
  top: 200px;
  left: 210px;
  bottom: 240px;
  right: 0;
  background: var(--thm-gray-bg);
  content: "";
  z-index: -1;
}

.services-one__content {
  position: relative;
  display: block;
  margin-right: -30px;
  padding-top: 290px;
}

.services-one__content .sec-title {
  padding-bottom: 58px;
}

.services-one__content-inner {
  position: relative;
  display: block;
}

.services-one__content-single {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 50px 0px rgba(255, 255, 255, 0.06);
  padding: 0px 10px 32px;
  margin-bottom: 30px;
}

.services-one__content-single.mt30 {
  margin-top: 30px;
}

.services-one__content-single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 110px;
  background: #f9fafa;
  margin: 0 auto 29px;
  z-index: 1;
}

.services-one__content-single-icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: var(--thm-base);
  transition-delay: 0.6s;
  transition: .7s;
  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;
}

.services-one__content-single:hover .services-one__content-single-icon: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);
}

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

.services-one__content-single:hover .services-one__content-single-icon span:before {
  color: #ffffff;
}

.services-one__content-single-content {
  position: relative;
  display: block;
}

.services-one__content-single-content h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}

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

.services-one__content-single-content h2 a:hover {
  color: var(--thm-base);
}

.services-one__content-single-content .border-box {
  position: relative;
  display: block;
  width: 60px;
  height: 3px;
  background: #f2f3f5;
  margin: 0 auto;
  margin-top: 13px;
}

.services-one__content-single-content p {
  margin: 0;
  margin-top: 11px;
}

.services-one__img {
  position: relative;
  display: block;
  margin-left: 136px;
  z-index: 1;
}

.services-one__img-inner {
  position: relative;
  display: block;
}

.services-one__img-inner::before {
  position: absolute;
  top: 275px;
  left: -20px;
  bottom: 75px;
  width: 20px;
  background: var(--thm-base);
  content: "";
}

.services-one__img-inner img {
  max-width: none;
  float: left;
}

.services-one__img .icon-box {
  position: absolute;
  top: 0;
  left: -200px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background: var(--thm-base);
}

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

.services-one__img-bottom {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 515px;
  width: 100%;
  background: #ffffff;
  padding: 27px 35px 31px;
  margin-top: 50px;
}

.services-one__img-bottom .left-text {
  position: relative;
  display: block;
  margin-right: 40px;
}

.services-one__img-bottom .left-text h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}

.services-one__img-bottom .right-text {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.services-one__img-bottom .right-text::before {
  position: absolute;
  top: -12px;
  left: 0;
  bottom: -11px;
  width: 2px;
  background: #daf3f4;
  content: "";
}

.services-one__img-bottom .right-text .icon-holder {
  position: relative;
  display: block;
}

.services-one__img-bottom .right-text .icon-holder span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 40px;
}

.services-one__img-bottom .right-text .text-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.services-one__img-bottom .right-text .text-box p {
  font-size: 17px;
  line-height: 28px;
  font-weight: 500;
}

.services-one__img-bottom .right-text .text-box h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
}

.services-one__img-bottom .right-text .text-box h3 a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-one__img-bottom .right-text .text-box h3 a:hover {
  color: var(--thm-base);
}


/*** =============================================
Brand One
============================================= ***/
.brand-one {
  position: relative;
  display: block;
  padding: 60px 20px;
  z-index: 2;
  background: url('../images/shapes/YENİ2.png') no-repeat center center;
  text-align: center;
  background-size: cover; 
}



.brand-one .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0);
  height: 145px;
  transition: all 400ms linear;
  border-radius: 50px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}

.brand-one .swiper-slide:hover {
  border: 3px solid rgb(255, 255, 255);
  border-radius: 0px;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

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

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

@media (max-width: 768px) { 
  .brand-one .swiper-slide img {
    transition: 0.5s ease;
    transform: scale(1.02);
    opacity: 1.00;
    width: auto;
    height: 100%;
  }
}



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

.faq-one__left {
  position: relative;
  display: block;
  margin-right: 25px;
}

.faq-one__left-img {
  position: relative;
  display: block;
}

.faq-one__left-img img {
  max-width: none;
  float: right;
}

.faq-one__left-inner {
  position: absolute;
  right: 0;
  top: 226px;
  left: 0;
  display: block;
  background: #ffffff;
  padding: 30px 35px 30px;
  margin-left: -85px;
}

.faq-one__form {
  position: relative;
  display: block;
  padding: 50px 60px 60px;
  z-index: 1;
}

.faq-one__form::before {
  position: absolute;
  top: -6px;
  left: 0;
  right: 110px;
  height: 6px;
  background: var(--thm-base);
  content: "";
}

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

.faq-one__form-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #1a1a1a;
  opacity: 0.96;
  content: "";
  z-index: -2;
}

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

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

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

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

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

.faq-one__form .form-box form .form-group input[type="text"],
.faq-one__form .form-box form .form-group input[type="email"],
.faq-one__form .form-box form .form-group input[type="tel"],
.faq-one__form .form-box form .form-group input[type="url"],
.faq-one__form .form-box form .form-group textarea,
.faq-one__form .form-box form .form-group select {
  position: relative;
  display: block;
  font-size: 12px;
  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, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 0px;
  outline: none;
  font-family: var(--thm-font);
}

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

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

.faq-one__form .form-box form .form-group .nice-select {
  position: relative;
  display: block;
  font-size: 12px;
  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, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 0px;
  outline: none;
  font-family: var(--thm-font);
}

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

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

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

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

.faq-one__form .form-box form .button-box button.thm-btn {
  width: 100%;
}


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

.faq-one__accordion .sec-title {
  padding-bottom: 53px;
}

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

.accordion-box .block::before {
  position: absolute;
  left: 105px;
  bottom: 0;
  right: 0;
  height: 2px;
  background: #edeeee;
  content: "";
}

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

.accordion-box .block:first-child {
  margin-top: 0;
}

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

.accordion-box .block.bdrn::before {
  display: none;
}

.accordion-box .block .acc-btn {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn .number-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background: #f2f3f5;
  border-radius: 25px;
  border-top-right-radius: 0px;
  color: var(--thm-gray);
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.accordion-box .block .acc-btn.active .number-box {
  color: #ffffff;
}

.accordion-box .block .acc-btn .number-box::before {
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0;
  right: 0px;
  border-radius: 25px;
  border-top-right-radius: 0px;
  background: #f2f3f5;
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.accordion-box .block .acc-btn.active .number-box::before {
  background: var(--thm-base);
}

.accordion-box .block .acc-btn .number-box::after {
  position: absolute;
  top: -5px;
  left: 0;
  bottom: 0;
  right: -5px;
  border-radius: 25px;
  border-top-right-radius: 0px;
  background: #f8f9fa;
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -2;
}

.accordion-box .block .acc-btn.active .number-box::after {
  background: rgba(var(--thm-base-rgb), 0.8);
}

.accordion-box .block .acc-btn .text {
  position: relative;
  display: block;
  margin-left: 30px;
}

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

.accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding-top: 7px;
  padding-left: 105px;
}

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

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

.faq-one__accordion-bottom {
  position: relative;
  display: flex;
  align-items: center;
  background: #f8f8fa;
  padding: 35px 60px 35px;
  margin-top: 75px;
}

.faq-one__accordion-bottom .icon-box {
  position: relative;
  display: inline-block;
}

.faq-one__accordion-bottom .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 70px;
}

.faq-one__accordion-bottom .text-box {
  position: relative;
  display: block;
  margin-left: 40px;
}

.faq-one__accordion-bottom .text-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}

/***
=============================================
Features One
=============================================
***/
.features-one {
  position: relative;
  display: block;
  z-index: 1;
  margin-bottom: -65px;
  z-index: 5;
}

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

.features-one__inner {
  position: relative;
  display: block;
  background: #ffffff;
  padding-bottom: 60px;
}

.features-one__single {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.features-one__single.style2 {
  padding-left: 54px;
}

.features-one__single::before {
  position: absolute;
  top: 25px;
  right: -15px;
  bottom: 25px;
  width: 2px;
  background: #edeeee;
  content: "";
}

.features-one__single.style2::before {
  display: none;
}

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

.features-one__single-img .inner {
  position: relative;
  display: block;
  width: 250px;
  height: 250px;
  border: 10px solid #edeeee;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.features-one__single-img .inner::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  opacity: 0.5;
  content: "";
  z-index: 1;
}

.features-one__single-img .inner img {
  width: 100%;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1.0);
}

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

.features-one__single-img .inner .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.features-one__single-img .inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 75px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.features-one__single:hover .features-one__single-img .inner .icon-box span:before {
  transform: scale(0.9);
}

.features-one__single-content {
  position: relative;
  display: block;
  margin-left: 40px;
  flex: 1;
}

.features-one__single-content h3 {
  color: var(--thm-base);
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.features-one__single-content h2 {
  font-size: 35px;
  line-height: 45px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 11px;
}

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

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

.features-one__single-content p {
  font-size: 17px;
  line-height: 26px;
  margin: 0;
}


/***
=============================================
Why Choose One
=============================================
***/
.why-choose-one {
  position: relative;
  display: block;
  padding: 185px 0px 120px;
  z-index: 1;
}

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

.why-choose-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  opacity: 0.95;
  content: "";
  z-index: -2;
}

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

.why-choose-one .sec-title {
  padding-bottom: 0px;
}

.why-choose-one__top-text {
  position: relative;
  display: block;
  max-width: 550px;
  width: 100%;
}

.why-choose-one__img {
  position: relative;
  display: block;
  margin-right: -10px;
  z-index: 1;
}

.why-choose-one__img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

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

.why-choose-one__img:hover .inner::after {
  opacity: 1;
}

.why-choose-one__img .inner .shape1 {
  position: absolute;
  top: 115px;
  left: 25px;
  opacity: 0.5;
  z-index: 2;
}

.why-choose-one__img .inner::before {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--thm-base);
  width: 180px;
  height: 310px;
  content: "";
  z-index: 2;
}

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

.why-choose-one__img:hover .inner img {
  transform: scale(1);
}

.why-choose-one__img .content-box {
  position: absolute;
  top: 45px;
  left: 25px;
  z-index: 5;
}

.why-choose-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  margin-bottom: 81px;
  margin-left: 115px;
}

.why-choose-one__icon::before {
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  content: "";
}

.why-choose-one__icon a {
  position: relative;
  display: block;
  width: 75px;
  height: 75px;
  line-height: 75px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 1.0);
  text-align: center;
  color: var(--thm-base);
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.why-choose-one__icon a:hover {
  color: #ffffff;
  background: var(--thm-black);
}

.why-choose-one__icon a::before,
.why-choose-one__icon a::after {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.why-choose-one__icon a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.why-choose-one__img .content-box h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
}


.why-choose-one__progress {
  position: relative;
  display: block;
  margin-top: 32px;
}

.why-choose-one__progress-single {
  position: relative;
  display: block;
  margin-bottom: 27px;
}

.why-choose-one__progress-single.mb0 {
  margin-bottom: 0;
}

.why-choose-one__progress-single .title-box {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.why-choose-one__progress-single .title-box h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
}

.why-choose-one__progress-single .bar {
  position: relative;
  width: 100%;
  height: 8px;
  background: #e5e5e6;
  border-radius: 0px;
}

.why-choose-one__progress-single .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 8px;
  background: var(--thm-base);
  border-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;
}

.why-choose-one__progress-single .bar-inner::before {
  position: absolute;
  top: -8px;
  right: 0;
  bottom: -8px;
  width: 6px;
  background: var(--thm-base);
  content: "";
}

.why-choose-one__progress-single .count-text {
  position: absolute;
  top: -43px;
  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__content {
  position: relative;
  display: block;
  margin-left: 86px;
  padding-top: 65px;
  padding-bottom: 64px;
  z-index: 1;
}

.why-choose-one__content::before {
  position: absolute;
  top: 0;
  left: 60px;
  bottom: 0;
  right: -999999px;
  background: #ffffff;
  box-shadow: 0px 0px 80px 0px rgb(135, 140, 143, 0.01);
  content: "";
  z-index: -1;
}

.why-choose-one__content-bg {
  position: absolute;
  top: 0;
  left: 60px;
  bottom: 0;
  right: -310px;
  opacity: 0.1;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.why-choose-one__content-list {
  position: relative;
  display: block;
  overflow: hidden;
}

.why-choose-one__content-list li {
  position: relative;
  display: block;
  margin-bottom: 40px;
}

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

.why-choose-one__content-list li .inner {
  position: relative;
  display: flex;
  align-items: center;
}

.why-choose-one__content-list li .inner .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 170px;
  background: var(--thm-base);
  border-top-right-radius: 85px;
  border-bottom-right-radius: 85px;
  box-shadow: 0px 0px 40px 0px rgb(135, 140, 143, 0.01);
  z-index: 1;
}

.why-choose-one__content-list li .inner .icon-box::before {
  position: absolute;
  top: 35px;
  left: 30px;
  bottom: 35px;
  width: 6px;
  background: rgba(255, 255, 255, .25);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
}

.why-choose-one__content-list li:hover .inner .icon-box::before {
  background: rgba(var(--thm-base-rgb), 0.16);
}

.why-choose-one__content-list li .inner .icon-box:after {
  position: absolute;
  top: -1px;
  left: 0;
  right: -1px;
  bottom: -1px;
  content: "";
  background: #ffffff;
  border-top-right-radius: 85px;
  border-bottom-right-radius: 85px;
  transition-delay: 0.6s;
  transition: .7s;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(0);
  -ms-transform: perspective(400px) rotateX(0deg) scale(0);
  transform: perspective(400px) rotateX(0deg) scale(0);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  z-index: -1;
}

.why-choose-one__content-list li:hover .inner .icon-box:after {
  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);
  transition-delay: 0.6s;
  transition: .7s;
}

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

.why-choose-one__content-list li:hover .inner .icon-box span:before {
  color: var(--thm-base);
}

.why-choose-one__content-list li .inner .text-box {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 35px;
}

.why-choose-one__content-list li .inner .text-box h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.02em;
  margin-bottom: 7px;
}

.why-choose-one__content-list li .inner .text-box p {
  margin: 0;
}

.why-choose-one__content-list li .inner .text-box .btn-box {
  position: relative;
  display: block;
  margin-top: 13px;
}

.why-choose-one__content-list li .inner .text-box .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.why-choose-one__content-list li .inner .text-box .btn-box a:hover {
  color: var(--thm-base);
}

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

.team-one::before {
  position: absolute;
  top: 0;
  left: 53%;
  right: 0;
  height: 12px;
  background: var(--thm-base);
  clip-path: polygon(1% 0, 100% 0%, 100% 100%, 0% 100%);
  content: "";
  z-index: -1;
}

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

.team-one__single {
  position: relative;
  display: block;
  border: 2px solid #f2f3f3;
  padding: 15px 15px 15px;
  max-width: 300px;
  width: 100%;
  margin: 0 auto 30px;
}

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

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

.team-one__single-img .inner .shape1 {
  position: absolute;
  left: 0;
  bottom: 20px;
  transform: perspective(400px) translateY(40px) scaleY(1.0);
  transform-origin: bottom;
  transition-delay: .01s;
  transition-timing-function: ease-in-out;
  transition-duration: .6s;
  transition-property: all;
  opacity: 0;
  z-index: 1;
}

.team-one__single:hover .team-one__single-img .inner .shape1 {
  opacity: 0.5;
  transform: perspective(400px) translateY(20px) scaleY(1.0);
  transition-delay: .2s;
}

.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 .social-links {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0px;
  margin: 0 auto;
  text-align: center;
  z-index: 5;
}

.team-one__single-img .social-links li {
  position: relative;
  display: inline-block;
}

.team-one__single-img .social-links li.share {
  position: relative;
}

.team-one__single-img .social-links>li>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: #ffffff;
  border-radius: 0%;
  z-index: 1;
}

.team-one__single-img .social-links>li>a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 0%;
  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-one__single-img .social-links>li>a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.team-one__single-img .social-links>li>a>span {
  position: relative;
  display: block;
}

.team-one__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-one__single-img .social-links>li>a:hover span::before {
  color: #ffffff;
}


.team-one__single-img .social-links .share .social-links-inner {
  position: absolute;
  top: -88px;
  right: -37px;
  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-one__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-one__single-img .social-links .share .social-links-inner li {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.team-one__single-img .social-links .share .social-links-inner li:last-child {
  margin-bottom: 0px;
}

.team-one__single-img .social-links .share .social-links-inner li a {
  position: relative;
  display: block;
  z-index: 1;
}

.team-one__single-img .social-links .share .social-links-inner li a i {
  position: relative;
  display: block;
}

.team-one__single-img .social-links .share .social-links-inner li a i::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.team-one__single-img .social-links .share .social-links-inner li a:hover i::before {
  color: var(--thm-base);
}

.team-one__single-content {
  position: relative;
  display: block;
  border: 2px solid #f2f3f3;
  margin-top: 15px;
  padding: 24px 10px 22px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.team-one__single-content .shape2 {
  position: absolute;
  top: -37px;
  left: 0;
  right: 0;
  width: 38px;
  height: 40px;
  margin: 0 auto;
  transform: perspective(400px) translateY(-40px) scaleY(1.0);
  transform-origin: top;
  transition-delay: .01s;
  transition-timing-function: ease-in-out;
  transition-duration: .6s;
  transition-property: all;
  opacity: 0;
  z-index: -1;
}

.team-one__single-content .shape2::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  transform: rotate(45deg);
  content: "";
}

.team-one__single:hover .team-one__single-content .shape2 {
  opacity: 1.0;
  transform: perspective(400px) translateY(0px) scaleY(1.0);
  transition-delay: .2s;
}

.team-one__single:hover .team-one__single-content {
  border-color: #fbfbfc;
}

.team-one__single-content::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.8) rotateX(0deg);
  transition: all 0.4s linear;
  background: #fbfbfc;
  opacity: 0;
  content: "";
  z-index: -1;
}

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

.team-one__single-content h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 1px;
}

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

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

.team-one__single-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


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

.testimonial-one__img-two {
  position: absolute;
  right: 0;
  bottom: 0;
}

.testimonial-one::before {
  position: absolute;
  top: 55px;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-gray-bg);
  content: "";
  z-index: -3;
}

.testimonial-one::after {
  position: absolute;
  top: 55px;
  left: 0;
  bottom: 0;
  right: 41.8%;
  background: var(--thm-base);
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  content: "";
  z-index: -2;
}

.testimonial-one__pattern {
  position: absolute;
  top: 55px;
  left: 0;
  right: 42%;
  bottom: 0;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.testimonial-one__pattern::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  content: "";
  z-index: -2;
}

.testimonial-one__left {
  position: relative;
  display: block;
  max-width: 545px;
  width: 100%;
}

.testimonial-one__carousel-box {
  position: relative;
  display: block;
}

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

.testimonial-one__single-img {
  position: relative;
  display: block;
  margin-bottom: 37px;
}

.testimonial-one__single-img .inner {
  position: relative;
  display: block;
  width: 170px;
  margin: 0 auto;
  z-index: 1;
}

.testimonial-one__single-img .inner .shape1 {
  position: absolute;
  top: 25px;
  left: -20px;
  z-index: -1;
}

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

.testimonial-one__single-img .border-box {
  position: relative;
  display: block;
  width: 450px;
  height: 2px;
  background: rgba(255, 255, 255, .25);
  margin: 0 auto;
  margin-top: 45px;
}

.testimonial-one__single-img .border-box::before {
  position: absolute;
  top: 0;
  left: 100px;
  bottom: 0;
  right: 100px;
  background: #ffffff;
  content: "";
}

.testimonial-one__single-img .border-box:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  width: 26px;
  margin: 0 auto;
  content: "";
}

.testimonial-one__single-img .border-box .icon {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.testimonial-one__single-img .border-box .icon img {
  width: auto;
}

.testimonial-one__single-content {
  position: relative;
  display: block;
}

.testimonial-one__single-content .author-info {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.testimonial-one__single-content .author-info h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
}

.testimonial-one__single-content .author-info h3 {
  color: var(--thm-base);
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  text-transform: capitalize;
}

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

.testimonial-one__single-content .text-box p {
  color: #d5c9c9;
  margin: 0;
  font-style: italic;
}

.testimonial-one__single-content .icon-box {
  position: relative;
  display: block;
  margin-top: 33px;
}

.testimonial-one__single-content .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #676767;
  font-size: 40px;
}


.dot-style1.owl-theme .owl-dots {
  position: relative;
  display: block;
  margin-top: 45px !important;
  z-index: 10;
}

.dot-style1.owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  margin: 0px 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  opacity: 1;
}

.dot-style1.owl-theme .owl-dots .owl-dot.active span {
  background: #ffffff;
}

.dot-style1.owl-theme .owl-dots .owl-dot span::before {
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  transform: scale(0.5);
  opacity: 0;
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.dot-style1.owl-theme .owl-dots .owl-dot.active span::before {
  border-color: #ffffff;
  transform: scale(1.0);
  opacity: 1;
}



.testimonial-one__right {
  position: relative;
  display: block;
  padding-top: 135px;
  max-width: 470px;
  width: 100%;
}

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

.testimonial-one__right-list {
  position: relative;
  display: block;
}

.testimonial-one__right-list li {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.testimonial-one__right-list li:last-child {
  margin-bottom: 0;
}

.testimonial-one__right-list li .inner {
  position: relative;
  display: block;
  padding-left: 30px;
}

.testimonial-one__right-list li .inner .round-box {
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--thm-base);
  border-radius: 50%;
}

.testimonial-one__right-list li .inner .round-box::before {
  position: absolute;
  top: -3px;
  left: -3px;
  bottom: -3px;
  right: -3px;
  border: 1px solid var(--thm-base);
  border-radius: 50%;
  content: "";
}

.testimonial-one__right-list li .inner .text-box {
  position: relative;
  display: block;
}

.testimonial-one__right-list li .inner .text-box p {
  position: relative;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}

.testimonial-one__right-text {
  position: relative;
  display: block;
  padding: 22px 70px 22px;
  padding-right: 20px;
  margin-top: 36px;
  z-index: 1;
}

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

.testimonial-one__right-text::after {
  position: absolute;
  top: 1px;
  left: -3px;
  bottom: 1px;
  right: 1px;
  background: var(--thm-base);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
  content: "";
  z-index: -2;
}

.testimonial-one__right-text p {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

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

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

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

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

.gallery-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

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

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

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

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

.gallery-one__single-img .overlay-content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 0;
  bottom: -50px;
  right: 0;
  width: 520px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 5px 8.66px 20px 0px rgb(130, 132, 134, 0.08);
  padding: 36px 45px 35px;
  border-radius: 3px;
  overflow: hidden;
  z-index: 3;
  -webkit-transform: perspective(400px) rotateX(40deg) scaleY(0.7);
  -ms-transform: perspective(400px) rotateX(40deg) scaleY(0.7);
  transform: perspective(400px) rotateX(40deg) scaleY(0.7);
  -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;
  opacity: 0;
}

.gallery-one__single:hover .gallery-one__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;
  opacity: 1;
}

.gallery-one__single-img .overlay-content .text-box {
  position: relative;
  display: block;
}

.gallery-one__single-img .overlay-content p {
  color: var(--thm-base);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 700ms ease;
}

.gallery-one__single:hover .gallery-one__single-img .overlay-content p {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 900ms;
}

.gallery-one__single-img .overlay-content h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 8px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(2rem);
  clip-path: inset(0 100% 0 0);
  transition: all 0.5s ease-in-out 0s;
  transition-delay: 0.5s;
}

.gallery-one__single:hover .gallery-one__single-img .overlay-content h2 {
  text-transform: capitalize;
  visibility: visible;
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

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

.gallery-one__single-img .overlay-content h2 a:hover {
  color: var(--thm-base);
}

.gallery-one__link {
  position: relative;
  display: block;
}

.gallery-one__link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--thm-base);
  line-height: 0;
  border-radius: 0%;
  z-index: 1;
}

.gallery-one__link a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 0%;
  background: var(--thm-black);
  transform: scale(0.5);
  opacity: 0;
  transition: all 300ms linear;
  transition-delay: 0.1s;
  content: "";
}

.gallery-one__link a:hover::before {
  transform: scale(1);
  opacity: 1;
}

.gallery-one__link a span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}

.gallery-one__carousel.owl-carousel {
  display: block;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.gallery-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding: 0px 0px 0px;
}


.gallery-one__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-one__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;
  opacity: 1;
}

.gallery-one__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-one__single-img .overlay-content h2 {
  text-transform: capitalize;
  visibility: visible;
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.gallery-one__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-one__single-img .overlay-content p {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 900ms;
}

.gallery-one__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-one__single-img .inner::before {
  opacity: 1;
}

.gallery-one__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-one__single-img img {
  transform: scale(1);
}


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

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

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

/***
=============================================
Pricing One
=============================================
***/
.pricing-one {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
}

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

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

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

.pricing-one__single {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.pricing-one__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.pricing-one__single-img::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.pricing-one__single:hover .pricing-one__single-img::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

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

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

.pricing-one__single-content {
  position: relative;
  display: block;
  border: 1px solid #d7dadc;
  padding: 48px 0px 40px;
  flex: 1;
}

.pricing-one__single-content-inner {
  position: relative;
  display: block;
  padding: 0px 40px 0px;
}

.pricing-one__single-content-inner .title-box {
  position: relative;
  display: block;
  border-bottom: 1px solid #d7dadc;
  padding-bottom: 13px;
}

.pricing-one__single-content-inner .title-box h2 {
  font-size: 28px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
}

.pricing-one__single-content-inner .title-box p {
  color: var(--thm-base);
  font-size: 17px;
  line-height: 25px;
  font-weight: 600;
  text-transform: capitalize;
}

.pricing-one__single-content-inner .price-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d7dadc;
  margin-top: 15px;
  padding-bottom: 16px;
}

.pricing-one__single-content-inner .price-box .text-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}

.pricing-one__single-content-inner .price-box .text-box h2 span {
  font-size: 14px;
  font-weight: 600;
}

.pricing-one__single-content-inner .price-box .icon-box {
  position: relative;
  display: block;
}

.pricing-one__single-content-inner .price-box .icon-box span:before {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 40px;
}

.pricing-one__single-content-list {
  position: relative;
  display: block;
  padding-right: 40px;
  margin-top: 12px;
}

.pricing-one__single-content-list li {
  position: relative;
  display: block;
  padding: 6px 20px 6px;
  padding-left: 40px;
  z-index: 1;
}

.pricing-one__single-content-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #f2f3f5;
  border: 1px solid #d7dadc;
  content: "";
  transition: all 500ms ease;
  transform: scaleY(0);
  z-index: -1;
}

.pricing-one__single-content-list li:hover::before {
  transform: scaleY(1);
}

.pricing-one__single-content-list li p {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  padding-left: 17px;
}

.pricing-one__single-content-list li p::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--thm-base);
  border-radius: 50%;
  content: "";
}


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

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

.blog-one__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

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

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

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

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

.blog-one__single-img .date-box {
  position: absolute;
  top: 30px;
  left: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 70px;
  height: 80px;
  background: #ffffff;
  padding-top: 2px;
  z-index: 5;
}

.blog-one__single-img .date-box h2 {
  color: var(--thm-black);
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
}

.blog-one__single-img .date-box p {
  font-weight: 600;
  margin: 0;
}

.blog-one__single-img .text-box {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  background: #ffffff;
  padding: 13px 40px 13px;
  padding-left: 20px;
}

.blog-one__single-img .text-box p {
  position: relative;
  padding-left: 25px;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
}

.blog-one__single-img .text-box p::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--thm-base);
  content: "";
  transform: rotate(45deg);
}

.blog-one__single-img .text-box .border-box {
  position: relative;
  display: block;
  margin-left: -2px;
  width: 120px;
  height: 2px;
  background: var(--thm-base);
  margin-top: 13px;
}


.blog-one__single-content {
  position: relative;
  display: block;
  padding: 26px 25px 0px;
  padding-right: 5px;
}

.blog-one__single-content h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  letter-spacing: 0.012em;
}

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

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

.blog-one__single-content .btn-box {
  position: relative;
  display: block;
  margin-top: 12px;
}

.blog-one__single-content .btn-box a {
  color: var(--thm-gray);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.012em;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

/* ============================================================== 
    # Footer Style
=================================================================== */
footer .widget-title {
    font-weight: 600;
    font-size: 22px; /* Başlıkları biraz küçülttüm */
    margin-bottom: 15px;
    margin-top:0;
    color: white !important;
}

footer .logo img {
    height: 75px;
}

footer .logo {
    margin-bottom: 30px;
    height: 105px;
}

footer p, 
footer li,
footer li a {
    color: #d2d2d4 !important;
    transition: all 0.35s ease-in-out;
    font-size: 20px; /* Yazılar küçültüldü */
    line-height: 1.3; /* Satır aralıkları açıldı */
}

footer li a:hover {
    color: rgb(255, 255, 255) !important;
}

footer li a {
    font-weight: 600;
}

footer .link li {
    margin-top: 10px;
}

footer .link li:first-child {
    margin-top: 0;
}

.footer-item {
    margin-top: 50px;
}

/* Footer Üst ve Alt Bölümler Arasında Boşluk */
.f-items {
    padding-bottom: 50px; /* Daha fazla boşluk bırakıldı */
}

/* Footer Bottom */
.footer-bottom li {
    display: inline-block;
}

.footer-bottom p {
    margin: 0;
    font-size: 18px;
}

.footer-bottom {
    margin-top: 10px; /* Daha fazla boşluk eklendi */
    padding-top: 20px;
    padding-bottom: 20px;
    background: #0c0e13;
}

.footer-bottom .text-end li {
    margin-left: 20px;
}

.f-items {
    position: relative;
    z-index: 1;
}

.f-items .shape-animated-top {
    position: absolute;
    left: -200px;
    top: 80px;
}

.f-items .shape-animated-top img {
    max-width: 250px;
    opacity: 0.03;
}

.footer-bottom .container {
    position: relative;
}

footer {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

footer::after {
    position: absolute;
    left: -9%;
    top: -10%;
    content: "";
    height: 500px;
    width: 500px;
    background: rgba(0, 0, 0, 0) linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 130%) repeat scroll 0 0;
    z-index: -1;
    transform: skewX(10deg);
}

.footer-shape {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.footer-shape .item:first-child {
    position: absolute;
    right: 0;
    top: 50px;
    height: 250px;
}

.footer-shape .item:first-child img {
    height: 100%;
}

.footer-shape .item:nth-child(2) {
    position: absolute;
    left: 30px;
    bottom: 20px;
    height: 30px;
}

.footer-shape .item:nth-child(2) img {
    height: 100%;
    animation: spinner 20s infinite linear;
}

.footer-shape .item:nth-child(3) {
    position: absolute;
    left: 0;
    top: 0;
    height: 40%;
    opacity: 0.3;
}

.footer-shape .item:nth-child(3) img {
    height: 100%;
}

.footer-shape .item.bottom {
    top: auto;
    bottom: 60px;
    height: 70%;
}

.opening-hours {
  margin-top: 30px;
}

.opening-hours li {
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.opening-hours p {
    font-weight: 600;
    font-size: 22px;
    color: white !important;
}

.opening-hours .working-day, .opening-hours .working-hour {
    width: 1%;
    display: table-cell;
    white-space: nowrap;
}

.opening-hours .working-day {
    padding-right: 10px;
}

.opening-hours .working-hour {
    padding-left: 10px;
    text-transform: uppercase;
}

.opening-hours .marker {
    width: 98%;
    display: table-cell;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    bottom: 10px;
}

.footer-social li {
    display: inline-block;
    margin-right: 15px;
}

.footer-social li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white !important;
}

.footer-social {
    margin-top: 30px;
}

.footer-social li a:hover {
    background: #e72122;
}


/* Footer Alt Bölümündeki Linklerin Küçültülmesi */
.footer-bottom ul li a {
    font-size: 18px;
}

/***Mobile Responsive***/

@media (max-width: 768px) {
  .footer-bottom .row {
      text-align: center;
  }
  .footer-bottom .col-lg-6 {
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
  }
  .footer-bottom ul {
      padding: 0;
      list-style: none;
  }
  .footer-bottom ul li {
      display: inline-block;
      margin: 5px;
  }
}


@media (min-width: 768px) {
  footer .widget-title {
      margin-top: 130px; /* Sadece masaüstü cihazlar için uygulanacak */
  }
}

@media (min-width: 768px) {
  .opening-hours {
      margin-top: -100px;
  }
}

@media (min-width: 1200px) {
  .footer-bottom {
      margin-top: 100px;
  }
}

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

.features-two__inner {
  position: relative;
  display: block;
  margin-right: -300px;
}

.features-two__carousel {
  position: relative;
  display: block;
  border-left: 1px solid #e7e8e9;
}

.features-two__single {
  position: relative;
  display: block;
  max-width: 230px;
  width: 100%;
  border: 1px solid #e7e8e9;
  border-left: none;
  padding-top: 50px;
  padding-bottom: 50px;
}

.features-two__single .icon-box {
  position: relative;
  display: block;
  margin-bottom: 33px;
}

.features-two__single .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 60px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

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

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

.features-two__single .title-box h2 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

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

/***
=====================================================
Services Two
=====================================================
***/
.services-two {
  position: relative;
  display: block;
  padding: 120px 0px 282px;
  z-index: 1;
}

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

.services-two__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #01010127;
  opacity: 0.9;
  content: "";
  z-index: -2;
}

.services-two .shape1 {
  position: absolute;
  top: -75px;
  left: 150px;
  z-index: -1;
}

.services-two .shape2 {
  position: absolute;
  left: 475px;
  bottom: 115px;
  z-index: -1;
}

.services-two .shape2 img {
  -webkit-animation: animation1 5s ease-in infinite;
  animation: animation1 5s ease-in infinite;
}

.services-two .shape3 {
  position: absolute;
  top: 145px;
  right: -5px;
  opacity: 0.6;
  z-index: -1;
}

.services-two .sec-title__tagline h6 {
  color: var(--thm-base);
}

.services-two .sec-title__title {
  color: #ffffff;
}

.services-two__inner {
  position: relative;
  display: block;
  padding-left: 300px;
}

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

.services-two__single-inner {
  position: relative;
  display: block;
  padding: 0px 5px 0px;
  transition: 0.9s;
  opacity: 1;
}

.services-two__single:hover .services-two__single-inner {
  opacity: 0;
}

.services-two__single-inner .number-box {
  position: relative;
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .3);
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.services-two__single-inner h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 12px;
}

.services-two__single-inner h2 a {
  color: #ffffff;
}

.services-two__single-inner p {
  color: #cfcbcb;
  margin: 0;
}

.services-two__single-inner .icon-box {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 27px;
}

.services-two__single-inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, .3);
  font-size: 70px;
}

.services-two__single-inner .icon-box .border-box {
  position: relative;
  display: block;
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  margin-left: 20px;
  margin-bottom: 20px;
}

.services-two__single .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: 1s;
  transform: scaleX(.8);
  opacity: 0;
  z-index: 2;
}

.services-two__single:hover .overlay-content {
  transform: scaleX(1);
  opacity: 1;
}

.services-two__single .overlay-content .inner {
  position: relative;
  display: block;
  background: rgba(255, 255, 255, .1);
  padding: 32px 25px 40px;
}

.services-two__single .overlay-content .inner h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 12px;
}

.services-two__single .overlay-content .inner h2 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.services-two__single .overlay-content .inner p {
  color: #cfcbcb;
  font-size: 18px;
  margin: 0;
}

.services-two__single .overlay-content .inner .btn-box {
  position: relative;
  display: block;
  margin-top: 11px;
}

.services-two__single .overlay-content .inner .btn-box a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-two__single .overlay-content .inner .btn-box a:hover {
  color: var(--thm-base);
}

.services-two__single .overlay-content .inner .icon-box {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 37px;
  z-index: 1;
}

.services-two__single .overlay-content .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 70px;
}

.services-two__single .overlay-content .inner .icon-box .border-box {
  position: relative;
  display: block;
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  margin-left: 20px;
  margin-bottom: 20px;
}

.services-two__single .overlay-content .inner .round {
  position: absolute;
  top: -10px;
  left: -25px;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  z-index: -1;
}


/***
=====================================================
Features Three
=====================================================
***/
.features-three {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  margin-top: -110px;
  overflow: hidden;
  z-index: 3;
}

.features-three::before {
  position: absolute;
  top: 0px;
  left: 210px;
  right: 0;
  bottom: 0;
  background: #ffffff;
  content: "";
  z-index: -1;
}

.features-three .shape1 {
  position: absolute;
  top: 40px;
  right: 0;
  opacity: 0.03;
  z-index: -1;
}

.features-three .shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  line-height: 0;
  text-align: center;
  z-index: -1;
}

.features-three__inner {
  position: relative;
  display: block;
  z-index: 1;
}

.features-three__single {
  position: relative;
  display: block;
  border: 1px solid #e7e8e9;
  padding: 15px 15px 37px;
  margin-bottom: 30px;
}

.features-three__single::before {
  position: absolute;
  left: 155px;
  bottom: 0;
  right: 0;
  height: 5px;
  background: rgba(var(--thm-base-rgb), 0.2);
  content: "";
}

.features-three__single-inner {
  position: relative;
  display: block;
  padding-left: 145px;
}

.features-three__single-inner .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 115px;
}

.features-three__single-inner .icon-box .border-box {
  position: relative;
  display: block;
  width: 6px;
  height: 30px;
  background: #e2e3e4;
  margin: 15px auto 0px;
}

.features-three__single-inner .icon-box .border-box::before {
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 6px;
  height: 6px;
  background: var(--thm-base);
  border-radius: 50%;
  content: "";
}

.features-three__single-inner .icon-box .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 115px;
  height: 115px;
  background: var(--thm-base);
}

.features-three__single-inner .icon-box .inner span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 60px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.features-three__single:hover .features-three__single-inner .icon-box .inner span:before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.features-three__single-inner .content-box {
  position: relative;
  display: block;
  padding-top: 19px;
}

.features-three__single-inner .content-box span {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.21em;
  margin-bottom: 8px;
}

.features-three__single-inner .content-box h2 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 12px;
}

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

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

.features-three__single-inner .content-box p {
  margin: 0;
}


/***
=============================================
Brand Two
=============================================
***/
.brand-two {
  position: relative;
  display: block;
  padding: 81px 0 83px;
  z-index: 2;
}

.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;
  height: 145px;
  transition: all 400ms linear;
  transition-delay: 0.1s;
}

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

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

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

.gallery-two__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 53px;
}

.gallery-two__top .sec-title {
  padding-bottom: 0px;
}

.gallery-two__top-text {
  max-width: 475px;
  width: 100%;
}

.gallery-two__inner {
  position: relative;
  display: block;
}

.gallery-two__single {
  position: relative;
  display: block;
}

.gallery-two__single-inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

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

.gallery-two__single:hover .gallery-two__single-inner::before {
  opacity: 1;
}

.gallery-two__single-inner .shape1 {
  position: absolute;
  left: 0;
  bottom: -495px;
  right: 0;
  text-align: center;
  transform: scaleY(80%);
  transition: all 400ms linear;
  transition-delay: 0.2s;
  opacity: 0;
  z-index: 1;
}

.gallery-two__single:hover .gallery-two__single-inner .shape1 {
  transform: scaleY(100%);
  opacity: 0.8;
}

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

.gallery-two__single:hover .gallery-two__single-inner img {
  transform: scale(1);
}

.gallery-two__single-inner .content-box {
  position: absolute;
  left: 0;
  bottom: 50px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  z-index: 2;
}

.gallery-two__single-inner .content-box .icon-box {
  position: relative;
  display: block;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 700ms ease;
}

.gallery-two__single:hover .gallery-two__single-inner .content-box .icon-box {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 900ms;
}

.gallery-two__single-inner .content-box .icon-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.gallery-two__single-inner .content-box .icon-box a:hover {
  background: var(--thm-black);
}

.gallery-two__single-inner .content-box .icon-box a span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 30px;
  transform: rotate(90deg);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.gallery-two__single-inner .content-box .icon-box a:hover span:before {
  color: #ffffff;
}

.gallery-two__single-inner .content-box .text-box {
  position: relative;
  display: block;
  margin-top: 31px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 700ms ease;
}

.gallery-two__single:hover .gallery-two__single-inner .content-box .text-box {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 900ms;
}

.gallery-two__single-inner .content-box .text-box p {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.gallery-two__single-inner .content-box .text-box h2 {
  font-size: 34px;
  line-height: 44px;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 7px;
}

.gallery-two__single-inner .content-box .text-box h2 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.gallery-two__single-inner .content-box .text-box h2 a:hover {
  color: var(--thm-black);
}

.gallery-two__carousel.owl-carousel {
  display: block;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.gallery-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding: 0px 0px 0px;
}

.gallery-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-two__single-inner .content-box .icon-box {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 900ms;
}

.gallery-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-two__single-inner .content-box .text-box {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 900ms;
}

.gallery-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-two__single-inner:before {
  opacity: 1;
}

.gallery-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-two__single-inner img {
  transform: scale(1);
}

.gallery-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-two__single-inner .shape1 {
  transform: scaleY(100%);
  opacity: 0.8;
}

.gallery-two__arrows {
  display: flex;
  gap: 10px;
  align-items: center;
}

.gallery-two__arrow {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  transition: all 0.3s ease;
}

.gallery-two__arrow:hover {
  background: #000;
  color: #fff;
}

.gallery-two__arrow--prev span {
  transform: rotate(180deg);
}

/***
=============================================
Team Two
=============================================
***/
.team-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 60px;
  z-index: 1;
}

.team-two .shape1 {
  position: absolute;
  top: -85px;
  right: -30px;
  opacity: 0.08;
  z-index: -1;
}

.team-two__single {
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.team-two__single-img {
  position: relative;
  display: block;
  z-index: 1;
}

.team-two__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

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

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

.team-two__single-img .overlay-content {
  position: absolute;
  bottom: -30px;
  right: 0;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgb(0, 0, 0, 0.05);
  padding: 11px 35px 13px;
  transform: scaleX(0.8) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 0;
  z-index: 5;
}

.team-two__single:hover .team-two__single-img .overlay-content {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.team-two__single-img .overlay-content h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

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

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

.team-two__single-img .overlay-content p {
  color: var(--thm-base);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.18em;
}

.team-two__single-img .social-links {
  position: absolute;
  bottom: 30px;
  left: 15px;
  z-index: 5;
}

.team-two__single-img .social-links li {
  position: relative;
  display: inline-block;
}

.team-two__single-img .social-links li.share {
  position: relative;
}

.team-two__single-img .social-links>li>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 65px;
  z-index: 1;
}

.team-two__single-img .social-links>li>a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.20);
  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;
  clip-path: polygon(0 0, 100% 8%, 100% 92%, 0% 100%);
  z-index: 1;
}

.team-two__single-img .social-links>li>a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.team-two__single-img .social-links>li>a::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  clip-path: polygon(0 0, 100% 8%, 100% 92%, 0% 100%);
  content: "";
  z-index: -1;
}

.team-two__single-img .social-links>li>a .team-two__single-img .social-links>li>a>span {
  position: relative;
  display: block;
}

.team-two__single-img .social-links>li>a>span::before {
  position: relative;
  display: inline-block;
  top: 0px;
  color: #ffffff;
  font-size: 15px;
  line-height: 65px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-two__single-img .social-links>li>a:hover span::before {
  color: #ffffff;
}

.team-two__single-img .social-links .share .social-links-inner {
  position: absolute;
  top: -205px;
  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;
  padding: 15px 0px 31px;
  overflow: hidden;
  z-index: -1;
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 0% 100%);
}

.team-two__single-img .social-links .share .social-links-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 0% 100%);
  content: "";
  z-index: -1;
}

.team-two__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-two__single-img .social-links .share .social-links-inner li {
  position: relative;
  display: block;
  margin-bottom: 0px;
}

.team-two__single-img .social-links .share .social-links-inner li:last-child {
  margin-bottom: 0px;
}

.team-two__single-img .social-links .share .social-links-inner li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 45px;
  border-radius: 0%;
  z-index: 1;
}

.team-two__single-img .social-links .share .social-links-inner li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.22);
  border-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-two__single-img .social-links .share .social-links-inner li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.team-two__single-img .social-links .share .social-links-inner li a i::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-two__single-img .social-links .share .social-links-inner li a:hover i::before {
  color: #ffffff;
}


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

.work-one .shape1 {
  position: absolute;
  top: -80px;
  left: 0;
  opacity: 0.1;
  z-index: -1;
}

.work-one li {
  position: relative;
  display: block;
}

.work-one li::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 25px;
  width: 1px;
  background: #e7e8e9;
  content: "";
}

.work-one li:last-child:before {
  display: none;
}

.work-one__single {
  position: relative;
  display: block;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.work-one__single .icon-box {
  position: absolute;
  top: 100px;
  right: -62px;
  z-index: 2;
}

.work-one__single .icon-box a {
  position: relative;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #ffffff;
  border: 1px solid #e7e8e9;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.work-one__single .icon-box a:hover {
  background: var(--thm-base);
  border-color: var(--thm-base);
}

.work-one__single .icon-box a span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.work-one__single .icon-box a:hover span:before {
  color: #ffffff;
}

.work-one__single-img {
  position: relative;
  display: block;
  max-width: 270px;
  width: 100%;
  margin: 0 auto;
  padding: 15px;
  background: #ffffff;
  border: 2px solid var(--thm-base);
  border-radius: 50%;
  border-top-left-radius: 20%;
  border-bottom-right-radius: 20%;
  z-index: 1;
}

.work-one__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, 0.08);
  border-radius: 50%;
  border: 5px solid #fff;
  border-top-left-radius: 20%;
  border-bottom-right-radius: 20%;
  z-index: 1;
}

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

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

.work-one__single-img-inner .number-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #010101;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .5);
  font-size: 65px;
  line-height: 70px;
  font-weight: 700;
  transform: scale(0.9);
  transition: all 300ms linear;
  transition-delay: 0.2s;
  opacity: 0;
  z-index: 5;
}

.work-one__single:hover .work-one__single-img-inner .number-box {
  transform: scale(1.0);
  opacity: 1.0;
  transition: all 400ms linear;
  transition-delay: 0.3s;
}

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

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

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

.work-one__single-img .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 35px;
}


.work-one__single-content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.work-one__single-content h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 7px;
}

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

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

.work-one__single-content p {
  margin: 0;
}


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

.contact-one .shape2 {
  position: absolute;
  top: 45px;
  left: 0;
  opacity: 0.3;
  z-index: -1;
}

.contact-one::after {
  position: absolute;
  right: 0;
  height: 6px;
  background: var(--thm-base);
  width: 100%;
  content: "";
}


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

.contact-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #01010191;
  opacity: 0.9;
  content: "";
  z-index: -2;
}

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

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

.cta-one__content {
  position: relative;
  display: flex;
  align-items: center;
}

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

.cta-one__content .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 80px;
}

.cta-one__content .title-box {
  position: relative;
  display: block;
  margin-left: 55px;
}

.cta-one__content .title-box h2 {
  color: #ffffff;
  font-size: 46px;
  line-height: 56px;
  font-weight: 600;
}

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

.cta-one__btn a {
  position: relative;
  display: inline-block;
  border: 2px solid #8e8e8f;
  line-height: 65px;
  padding-left: 45px;
  padding-right: 45px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cta-one__btn a:hover {
  color: var(--thm-base);
  border-color: var(--thm-base);
}

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

.contact-one__content .sec-title {
  padding-bottom: 24px;
}

.contact-one__content .sec-title__title {
  color: #ffffff;
}

.contact-one__content .sec-title.style2 .sec-title__title {
  text-transform: none;
}

.contact-one__content-text {
  color: #ede0e0;
}

.contact-one__form {
  position: relative;
  display: block;
  padding-top: 75px;
  padding-left: 70px;
  padding-bottom: 75px;
  z-index: 1;
}

.contact-one__form .shape1 {
  position: absolute;
  right: -315px;
  bottom: 75px;
  opacity: 0.1;
  z-index: -1;
}

.contact-one__form::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: -999999px;
  background: #ffffff;
  box-shadow: 0px 0px 25px 0px rgb(0, 0, 0, 0.05);
  content: "";
  z-index: -1;
}

.contact-one__form .input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-one__form .input-box input[type="text"],
.contact-one__form .input-box input[type="email"],
.contact-one__form .input-box textarea {
  position: relative;
  display: block;
  background: #f3f3f4;
  width: 100%;
  height: 60px;
  border: none;
  color: #79817c;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding-left: 25px;
  padding-right: 20px;
  border-radius: 0px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.contact-one__form form input[type="text"]::-webkit-input-placeholder {
  color: #79817c;
}

.contact-one__form form input[type="text"]:-moz-placeholder {
  color: #79817c;
}

.contact-one__form form input[type="text"]::-moz-placeholder {
  color: #79817c;
}

.contact-one__form form input[type="text"]:-ms-input-placeholder {
  color: #79817c;
}

.contact-one__form form input[type="email"]::-webkit-input-placeholder {
  color: #79817c;
}

.contact-one__form form input[type="email"]:-moz-placeholder {
  color: #79817c;
}

.contact-one__form form input[type="email"]::-moz-placeholder {
  color: #79817c;
}

.contact-one__form form input[type="email"]:-ms-input-placeholder {
  color: #79817c;
}

.contact-one__form form textarea::-webkit-input-placeholder {
  color: #79817c;
}

.contact-one__form form textarea:-moz-placeholder {
  color: #79817c;
}

.contact-one__form form textarea::-moz-placeholder {
  color: #79817c;
}

.contact-one__form form textarea:-ms-input-placeholder {
  color: #79817c;
}

.contact-one__form .input-box textarea {
  width: 100%;
  height: 150px;
  background-color: #f3f3f4;
  border: none;
  color: #79817c;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding-top: 20px;
  padding-left: 25px;
  padding-right: 20px;
  border-radius: 0px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
  resize: none;
}

.contact-one__form .input-box .select-box {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
}

.contact-one__form .input-box .nice-select {
  background: #f3f3f4;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: none;
  color: #79817c;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding-left: 25px;
  padding-right: 20px;
  border-radius: 0px;
}

.contact-one__form .input-box .nice-select:after {
  width: 7px;
  height: 7px;
  border-bottom: 2px solid #79817c;
  border-right: 2px solid #79817c;
  right: 30px;
  margin-top: 0px;
  top: 25px;
  z-index: 10;
}

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

.contact-one__form-btn {
  position: relative;
  display: block;
}

.contact-one__form-btn button.thm-btn {
  line-height: 65px;
}


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

.faq-two .shape3 {
  position: absolute;
  right: -70px;
  bottom: -200px;
  opacity: 0.1;
  z-index: -1;
}

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

.faq-two__img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

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

.faq-two__img:hover .inner img {
  transform: scale(1);
}

.faq-two__img .inner .shape2 {
  position: absolute;
  left: 30px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  z-index: 1;
}

.faq-two__img .inner .shape1 {
  position: absolute;
  top: -265px;
  left: -60px;
  z-index: 1;
}

.faq-two__img .content-box {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 60px 27px 60px;
  border: 1px solid #e7e8e9;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg) translateX(0%);
  width: max-content;
  z-index: 5;
}

.faq-two__img .content-box .icon-box {
  position: relative;
  display: block;
  transform: rotate(90deg) translateX(0%);
}

.faq-two__img .content-box .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 50px;
}

.faq-two__img .content-box .text-box {
  position: relative;
  display: block;
  margin-top: 10px;
}

.faq-two__img .content-box .text-box p {
  font-size: 19px;
  line-height: 29px;
  font-weight: 500;
  text-transform: capitalize;
  margin-left: 5px;
}

.faq-two__img .content-box .text-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
}

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

.faq-two__img .content-box .text-box h3 a:hover {
  color: var(--thm-base);
}


.faq-two__icon {
  position: absolute;
  left: 120px;
  bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  z-index: 2;
}

.faq-two__icon::before {
  position: absolute;
  top: -10px;
  left: -10px;
  bottom: -10px;
  right: -10px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  content: "";
}

.faq-two__icon a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: var(--thm-base);
  text-align: center;
  color: #ffffff;
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.faq-two__icon a::before,
.faq-two__icon a::after {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.faq-two__icon a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}


.faq-two__accordion {
  position: relative;
  display: block;
  margin-left: 35px;
}

.faq-two__accordion .sec-title {
  padding-bottom: 56px;
}

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

.faq-two__accordion .accordion-box .block {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid #e7e8e9;
  transition: all 500ms ease;
  padding-top: 22px;
  padding-left: 30px;
  padding-right: 0px;
  padding-bottom: 22px;
  margin-top: 0;
}

.faq-two__accordion .accordion-box .block::before {
  display: none;
}

.faq-two__accordion .accordion-box .block.mb30 {
  margin-bottom: 0px;
}

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

.faq-two__accordion .accordion-box .block .acc-btn {
  position: relative;
  display: block;
  cursor: pointer;
  background: #ffffff;
  border: 0px solid #f0eeee;
  transition: all 500ms ease;
}

.faq-two__accordion .accordion-box .block .acc-btn.active {
  background: #ffffff;
}

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

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

.faq-two__accordion .accordion-box .block .acc-btn .icon-outer {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  right: 15px;
  width: 50px;
  height: 50px;
  background: #f3f3f4;
  border-radius: 0%;
  color: var(--thm-base);
  font-size: 15px;
  text-align: center;
  line-height: 50px;
  font-weight: 400;
  cursor: pointer;
  transform: translateY(-50%) rotate(0deg);
  transition: all 500ms ease;
  z-index: 1;
}

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

.faq-two__accordion .accordion-box .block .acc-btn .icon-outer i:before {
  position: relative;
  display: inline-block;
  font-weight: 700;
  transform: rotate(90deg);
}

.faq-two__accordion .accordion-box .block .acc-btn.active .icon-outer i:before {
  position: relative;
  font-size: 15px;
  font-family: 'icomoon' !important;
  font-weight: 700;
  margin: 0px;
  content: "\e90f";
  transform: rotate(-90deg);
}

.faq-two__accordion .accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding-top: 25px;
  padding-left: 0;
  padding-right: 100px;
  padding-bottom: 6px;
}

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

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


/***
=====================================================
Pricing Two
=====================================================
***/
.pricing-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 90px;
}

.pricing-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  padding-top: 20px;
  z-index: 1;
  padding-left: 20px;
}

.pricing-two__single::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 40px;
  right: 50px;
  background: #f5f5f5;
  content: "";
  z-index: -1;
}

.pricing-two__single-inner {
  position: relative;
  display: block;
  padding: 48px 45px 50px;
  background: #ffffff;
  box-shadow: 0px 0px 40px 0px rgb(0, 0, 0, 0.04);
  z-index: 1;
}

.pricing-two__single-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  transition: 1s;
  transform: scaleX(0.7);
  opacity: 0;
  z-index: -1;
}

.pricing-two__single:hover .pricing-two__single-bg {
  transform: scaleX(1);
  opacity: 1;
}

.pricing-two__single-bg::before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  background: #ffffff;
  opacity: 0.96;
  content: "";
  z-index: -2;
}

.pricing-two__single .table-header {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9eaeb;
  padding-bottom: 27px;
  margin-bottom: 22px;
}

.pricing-two__single .table-header .icon-box {
  position: relative;
  display: block;
}

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

.pricing-two__single:hover .table-header .icon-box span:before {
  transform: scale(0.9);
}

.pricing-two__single .table-header .title-box {
  position: relative;
  display: block;
  margin-left: 30px;
}

.pricing-two__single .table-header .title-box h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
}

.pricing-two__single .table-header .title-box p {
  font-weight: 600;
}

.pricing-two__single .table-content {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.pricing-two__single .table-content ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.pricing-two__single .table-content ul li {
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.pricing-two__single .table-content ul li:last-child {
  margin-bottom: 0;
}

.pricing-two__single .table-content ul li p {
  position: relative;
  display: block;
  padding-left: 27px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.pricing-two__single .table-content ul li p::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 9px;
  background: var(--thm-base);
  content: "";
}

.pricing-two__single .table-footer {
  position: relative;
  display: block;
  border-top: 1px solid #e9eaeb;
  padding-top: 30px;
}

.pricing-two__single .table-footer .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

/***
=====================================================
Video One
=====================================================
***/
.video-one {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 320px 0px 150px; /* Butonu biraz aşağıya almak için padding artırıldı */
  overflow: hidden;
  z-index: 1;
}

.video-one .shape1 {
  position: absolute;
  left: 100px;
  top: 0;
  opacity: 0.08;
  z-index: 1;
}

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

.video-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  content: "";
  opacity: 0.9;
  z-index: -2;
}

.video-one__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  width: 100%;
}

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

.video-one__icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px; /* Butonu biraz daha aşağıya almak için */
}

.video-one__icon a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px; /* Buton büyütüldü */
  height: 120px; /* Buton büyütüldü */
  line-height: 120px;
  border-radius: 50%;
  background: transparent;
  border: 3px solid #ffffff; /* Çerçeve biraz daha kalın yapıldı */
  text-align: center;
  color: #ffffff;
  font-size: 30px; /* İkon büyütüldü */
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-one__icon a:hover {
  color: var(--thm-base);
  border-color: var(--thm-base);
}

.video-one__icon a::before,
.video-one__icon a::after {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.video-one__icon a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.video-one__left .text-box {
  position: relative;
  display: block;
  margin-top: 30px;
  text-align: center;
}

.video-one__left .text-box p {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.video-one__left .text-box p a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-one__left .text-box p a:hover {
  color: var(--thm-base);
}

.video-one__left .text-box p a span:before {
  position: relative;
  display: inline-block;
  font-size: 35px;
  top: 8px;
  padding-right: 12px;
}

.video-one__right {
  position: relative;
  display: block;
  text-align: center;
}

.video-one__right h2 {
  color: #ffffff;
  font-size: 42px;
  line-height: 52px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.video-one__right h2 span {
  color: var(--thm-base);
}

/* Mobil cihazlar için butonu tam ortalamak ve aşağıya almak */
@media (max-width: 768px) {
  .video-one {
    padding: 200px 0px 120px; /* Mobilde de butonu aşağıya almak için padding artırıldı */
  }

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

  .video-one__left {
    text-align: center;
  }

  .video-one__icon {
    margin-top: 60px; /* Mobilde butonu biraz daha aşağıya almak için */
    margin-bottom: 20px;
  }

  .video-one__icon a {
    width: 100px; /* Mobilde buton biraz daha küçültüldü */
    height: 100px;
    line-height: 100px;
    font-size: 25px; /* Mobilde ikon boyutu ayarlandı */
  }

  .video-one__right h2 {
    font-size: 32px;
    line-height: 42px;
  }
}



/***
=====================================================
Counter Two
=====================================================
***/
.counter-two {
  position: relative;
  display: block;
  margin-bottom: -195px;
  z-index: 2;
}

.counter-two .row {
  --bs-gutter-x: 0px;
}

.counter-two__single {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 70px 0px rgb(0, 0, 0, 0.05);
  padding: 0px 30px 30px;
  z-index: 1;
}

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

.counter-two__single-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  opacity: 0.8;
  content: "";
  z-index: -2;
}

.counter-two__single-number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 80px;
  height: 80px;
  background: #f6f6f6;
  margin: 0 auto 35px;
}

.counter-two__single-number::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 3px;
  background: var(--thm-base);
  content: "";
}

.counter-two__single-number h3 {
  color: var(--thm-black);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}

.counter-two__single-icon {
  position: relative;
  display: block;
  margin-bottom: 7px;
}

.counter-two__single-icon span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 65px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.counter-two__single:hover .counter-two__single-icon span:before {
  transform: scale(0.9);
}

.counter-two__single-title {
  position: relative;
  display: block;
  border-bottom: 1px solid #e7e8e9;
  padding-bottom: 32px;
}

.counter-two__single-title h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.counter-two__single-bottom {
  position: relative;
  display: block;
  margin-top: 10px;
}

.counter-two__single-bottom h2 {
  color: var(--thm-base);
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: -0.07em;
}

.counter-two__single-bottom h2 .k {
  position: relative;
  display: inline-block;
  top: 2px;
}

.counter-two .odometer.odometer-auto-theme,
.counter-two .odometer.odometer-theme-default {
  font-family: var(--thm-font);
  line-height: 40px;
}

.counter-two__single.style2 {
  position: relative;
  display: block;
}

.counter-two__single.style2 .counter-two__single-number {
  background: rgba(255, 255, 255, .08);
}

.counter-two__single.style2 .counter-two__single-number h3 {
  color: #ffffff;
}

.counter-two__single.style2 .counter-two__single-icon span:before {
  color: #ffffff;
}

.counter-two__single.style2 .counter-two__single-title h4 {
  color: #ffffff;
}

.counter-two__single.style2 .counter-two__single-title {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.counter-two__single.style2 .counter-two__single-bottom::before {
  position: absolute;
  top: -10px;
  left: 0;
  bottom: -30px;
  right: 0;
  background: rgba(255, 255, 255, .08);
  content: "";
}

.counter-two__single.style2 .counter-two__single-bottom h2 {
  color: #ffffff;
}

/***
=====================================================
Blog Two
=====================================================
***/
.blog-two {
  position: relative;
  display: block;
  width: 100%;
  background: url('../assets/images/shapes/banner.png') no-repeat center top;
  background-size: cover; 
  padding: 120px 0px 90px;
  z-index: 1;
}

.blog-two .shape1 {
  position: absolute;
  top: 0;
  z-index: -1;
}

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

.blog-two__single-content {
  position: relative;
  display: block;
  border: 1px solid #e0e0e0;
  padding: 22px 30px 23px;
  margin-bottom: 15px;
}

.blog-two__single-content p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

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

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

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

.blog-two__single-content .btn-box {
  position: relative;
  display: block;
}

.blog-two__single-content .btn-box a {
  position: relative;
  display: block;
  color: var(--thm-base);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-two__single-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  top: 2px;
  padding-left: 4px;
}

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

.blog-two__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.blog-two__single-img:before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  right: 0px;
  flex-wrap: wrap;
  background: #010101;
  opacity: 0.7;
  z-index: 1;
  width: 100%;
  height: 100%;
  -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-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.blog-two__single:hover .blog-two__single-img:before {
  -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-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.blog-two__single-img img {
  width: 100%;
  transition: all 700ms ease;
}

.blog-two__single:hover .blog-two__single-img img {
  transform: scaleY(1.1);
}

.blog-two__single-img .date-box {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 120px;
  height: 35px;
  background: var(--thm-base);
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  z-index: 5;
}

.blog-two__single-img .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  opacity: 0;
  z-index: 5;
}

.blog-two__single:hover .blog-two__single-img .icon-box {
  transform: scale(1.0);
  opacity: 1.0;
  transition: all 600ms linear;
  transition-delay: 0.4s;
}

.blog-two__single-img .icon-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .30);
  z-index: 1;
}

.blog-two__single-img .icon-box a::before {
  position: absolute;
  top: -10px;
  left: -10px;
  bottom: -10px;
  right: -10px;
  background: rgba(255, 255, 255, .20);
  border-radius: 50%;
  content: "";
}

.blog-two__single-img .icon-box a:after {
  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;
}

.blog-two__single-img .icon-box a:hover:after {
  transform: scale(1.0);
  opacity: 1;
}

.blog-two__single-img .icon-box a span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 55px;
  z-index: 2;
}

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

.blog-two__right .btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-two__right .btn-box .date-box2 {
  position: relative;
  display: block;
}

.blog-two__right .btn-box .date-box2 span {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.blog-two__right .blog-two__single {
  margin-bottom: 16px;
}

.blog-two__right .blog-two__single-content {
  padding: 12px 30px 10px;
  margin-bottom: 0px;
}



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

.features-four .auto-container {
  max-width: 1530px;
  width: 100%;
}

.features-four__left {
  position: relative;
  display: block;
  max-width: 580px;
  width: 100%;
}

.features-four__left .sec-title {
  padding-bottom: 43px;
}

.features-four__left-text {
  position: relative;
  display: block;
}

.features-four__left-text p {
  margin: 0;
}


.features-four__right {
  position: relative;
  display: block;
}

.features-four__right-single {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 45px 0px 42px 35px;
  z-index: 1;
}

.features-four__right-single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  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;
}

.features-four__right-single:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.features-four__right-single-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.features-four__right-single-top .title-box {
  position: relative;
  display: block;
}

.features-four__right-single-top .title-box h2 {
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__right-single:hover .features-four__right-single-top .title-box h2 {
  color: #ffffff;
}

.features-four__right-single-top .border-box {
  position: relative;
  display: block;
  width: 50px;
  height: 4px;
  background: var(--thm-base);
  margin-top: 16px;
  margin-bottom: 18px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__right-single:hover .features-four__right-single-top .border-box {
  background: rgba(255, 255, 255, .3);
}

.features-four__right-single-top .title-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__right-single:hover .features-four__right-single-top .title-box h2 a {
  color: #ffffff;
}

.features-four__right-single-top .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--thm-primary);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__right-single:hover .features-four__right-single-top .icon-box {
  background: #ffffff;
}

.features-four__right-single-top .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 35px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__right-single:hover .features-four__right-single-top .icon-box span:before {
  color: var(--thm-primary);
}

.features-four__right-single-bottom {
  position: relative;
  display: block;
  padding-right: 30px;
}

.features-four__right-single-bottom p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__right-single:hover .features-four__right-single-bottom p {
  color: #ffffff;
}

.features-four__right-single-bottom .btn-box {
  position: relative;
  display: block;
  margin-top: 6px;
}

.features-four__right-single-bottom .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__right-single:hover .features-four__right-single-bottom .btn-box a {
  color: #ffffff;
}


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

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

.services-three__single-img {
  position: relative;
  display: block;
  z-index: 1;
}

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

.services-three__single-img .inner::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.services-three__single:hover .services-three__single-img .inner::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.services-three__single-img .inner .number-box {
  position: absolute;
  right: 30px;
  bottom: 26px;
  color: #ffffff;
  font-size: 60px;
  line-height: 1em;
  font-weight: 400;
  z-index: 5;
}

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

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

.services-three__single-content {
  position: relative;
  display: block;
  padding: 0px 25px 0px;
  margin-top: -55px;
  z-index: 5;
}

.services-three__single-content .inner {
  position: relative;
  display: block;
  padding-left: 160px;
}

.services-three__single-content .inner .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 125px;
  background: #ffffff;
  box-shadow: 0px 0px 50px 0px rgba(135, 140, 143, 0.15);
}

.services-three__single-content .inner .icon-box::before {
  position: absolute;
  left: -6px;
  bottom: -10px;
  right: -6px;
  background: var(--thm-base);
  height: 4px;
  content: "";
}

.services-three__single-content .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 65px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-three__single:hover .services-three__single-content .inner .icon-box span::before {
  transform: scale(0.9);
}

.services-three__single-content .inner .icon-box .left-border {
  position: absolute;
  left: -10px;
  bottom: -10px;
  width: 4px;
  height: 60px;
  background: var(--thm-base);
  content: "";
}

.services-three__single-content .inner .icon-box .left-border::before {
  position: absolute;
  top: -14px;
  left: -3px;
  width: 10px;
  height: 10px;
  background: var(--thm-primary);
  content: "";
}

.services-three__single-content .inner .icon-box .right-border {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 4px;
  height: 60px;
  background: var(--thm-base);
  content: "";
}

.services-three__single-content .inner .icon-box .right-border::before {
  position: absolute;
  top: -14px;
  left: -3px;
  width: 10px;
  height: 10px;
  background: var(--thm-primary);
  content: "";
}

.services-three__single-content .inner .content-box {
  position: relative;
  display: block;
  padding-top: 75px;
}

.services-three__single-content .inner .content-box p {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 7px;
}

.services-three__single-content .inner .content-box p::before {
  position: absolute;
  top: 12px;
  right: -58px;
  width: 45px;
  height: 1px;
  background: #dbdbdb;
  content: "";
}

.services-three__single-content .inner .content-box h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

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

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

.services-three__single-content .inner .content-box .btn-box {
  position: relative;
  display: block;
  margin-top: 8px;
}

.services-three__single-content .inner .content-box .btn-box a {
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-three__single-content .inner .content-box .btn-box a:hover {
  color: var(--thm-base);
}


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

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

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

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

.video-two__content {
  position: relative;
  display: block;
}

.video-two__content h2 {
  color: #ffffff;
  font-size: 56px;
  line-height: 1.1em;
  font-weight: 600;
  margin-bottom: 25px;
}

.video-two__content p {
  color: #ffffff;
}

.video-two__content .border-box {
  position: relative;
  display: block;
  width: 330px;
  height: 2px;
  background: var(--thm-primary);
  margin-bottom: 31px;
  margin-top: 32px;
}

.video-two__content .border-box::before {
  position: absolute;
  top: -4px;
  right: 0px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  content: "";
}

.video-two__content .contact-box {
  position: relative;
  display: flex;
  align-items: center;
}

.video-two__content .contact-box .icon-box {
  position: relative;
  display: block;
}

.video-two__content .contact-box .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 40px;
}

.video-two__content .contact-box .content-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.video-two__content .contact-box .content-box p {
  color: #ffffff;
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
}

.video-two__content .contact-box .content-box a {
  color: #ffffff;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-two__content .contact-box .content-box a:hover {
  color: var(--thm-base);
}


.video-two__video {
  position: relative;
  display: block;
}

.video-two__video .shape3 {
  position: absolute;
  left: -80px;
  bottom: 55px;
}

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

.video-two__video-icon .shape1 {
  position: absolute;
  top: 30px;
  left: 33px;
  z-index: -1;
}

.video-two__video-icon .shape2 {
  position: absolute;
  top: 30px;
  left: 43px;
  opacity: 0.35;
  z-index: -1;
}

.video-two__video-icon a {
  position: relative;
  display: block;
  width: 200px;
  height: 200px;
  line-height: 200px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .20);
  text-align: center;
  color: var(--thm-primary);
  font-size: 35px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-two__video-icon a:hover {
  color: var(--thm-base);
  border-color: #ffffff;
}

.video-two__video-icon a::before,
.video-two__video-icon a::after {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.video-two__video-icon a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.video-two__video .title-box {
  position: relative;
  display: block;
  margin-top: 76px;
  margin-left: -200px;
}

.video-two__video .title-box h2 {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}


/***
=====================================================
Counter Three
=====================================================
***/
.counter-three {
  position: relative;
  display: block;
  z-index: 5;
  margin-top: -150px;
  margin-bottom: -103px;
}

.counter-three .auto-container {
  max-width: 1530px;
  width: 100%;
}

.counter-three__inner {
  position: relative;
  display: block;
  background: var(--thm-base);
  z-index: 1;
}

.counter-three__inner::after {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0px;
  background: var(--thm-base);
  content: "";
  z-index: -1;
}

.counter-three__inner::before {
  position: absolute;
  top: -10px;
  left: 105px;
  bottom: 0;
  right: 105px;
  background: #ffffff;
  content: "";
  z-index: -2;
}

.counter-three__inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 57px 0px 66px;
  z-index: 1;
}

.counter-three__inner-box .shape1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.03;
  z-index: -1;
}

.counter-three__inner-box .shape2 {
  position: absolute;
  top: -20px;
  left: -170px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  z-index: -1;
}

.counter-three__inner-box .shape3 {
  position: absolute;
  top: 15px;
  left: 0px;
  right: 0px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  margin: 0 auto;
  z-index: -1;
}

.counter-three__inner ul {
  position: relative;
  display: block;
}

.counter-three__inner ul li {
  position: relative;
  display: block;
  float: left;
  width: 25%;
  text-align: center;
}

.counter-three__inner ul li::before {
  position: absolute;
  top: -60px;
  bottom: -70px;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, .2);
  content: "";
}

.counter-three__inner ul li:last-child:before {
  display: none;
}

.counter-three__inner ul li h2 {
  color: #ffffff;
  font-size: 80px;
  line-height: 1em;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.counter-three__inner ul li h2 .plus {
  position: relative;
  display: inline-block;
  right: 12px;
  top: 4px;
}

.counter-three__inner ul li h2 .k {
  position: relative;
  display: inline-block;
  top: 6px;
  right: 5px;
}

.counter-three__inner ul li h3 {
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-top: 7px;
}

.counter-three .odometer.odometer-auto-theme,
.counter-three .odometer.odometer-theme-default {
  font-family: var(--thm-font);
  line-height: 0.9em;
}

/***
=====================================================
Faq Three
=====================================================
***/
.faq-three {
  position: relative;
  display: block;
  padding: 103px 0px 120px;
  overflow: hidden;
  z-index: 1;
}

.faq-three .shape1 {
  position: absolute;
  top: -460px;
  left: -10px;
  z-index: -1;
}

.faq-three .shape2 {
  position: absolute;
  right: 0;
  bottom: 50px;
  opacity: 0.5;
  z-index: -1;
}

.faq-two__accordion.style3 {
  position: relative;
  display: block;
  margin-left: 0;
  padding-top: 131px;
}

.faq-two__accordion.style3 .sec-title.style2 .sec-title__title span {
  color: var(--thm-primary);
}

.faq-two__accordion.style3 .sec-title {
  padding-bottom: 49px;
}

.faq-two__accordion.style3 .accordion-box .block .acc-btn h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}

.faq-two__accordion.style3 .accordion-box .block .acc-content p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.faq-two__accordion.style3 .accordion-box .block {
  margin-bottom: 25px;
}

.faq-two__accordion.style3 .accordion-box .block.mb0 {
  margin-bottom: 0;
}

.faq-three__img {
  position: relative;
  display: block;
  max-width: 630px;
  width: 100%;
  margin-left: 110px;
}

.faq-three__img .inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.faq-three__img .inner::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(5deg);
  z-index: 1;
}

.faq-three__img:hover .inner::before {
  -webkit-animation: shine 1.5s;
  animation: shine 1.5s;
}

.faq-three__img .inner img {
  width: 100%;
  transition: all 600ms linear;
  transition-delay: 0.2s;
}

.faq-three__img:hover .inner img {
  transform: scale(1.1) rotate(0deg);
}

.faq-three__img .overlay-content {
  position: absolute;
  left: -50px;
  bottom: 320px;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg) translateX(0%);
  width: max-content;
  padding: 40px 30px 40px 20px;
  z-index: 5;
}

.faq-three__img .overlay-content::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-primary);
  content: "";
  z-index: -1;
}

.faq-three__img .overlay-content::after {
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: 0;
  left: 0;
  background: var(--thm-base);
  content: "";
  z-index: -2;
  width: 58px;
  height: 100px;
}

.faq-three__img .overlay-content .icon-box {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.faq-three__img .overlay-content .icon-box span::before {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, .55);
  font-size: 65px;
  transform: rotate(90deg);
}

.faq-three__img .overlay-content .content-box {
  position: relative;
  display: block;
}

.faq-three__img .overlay-content .content-box p {
  color: #ffffff;
  font-size: 22px;
  line-height: 24px;
  font-weight: 500;
  margin-left: 8px;
}

.faq-three__img .overlay-content .content-box h2 {
  color: #ffffff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
}


/***
=====================================================
Features Five
=====================================================
***/
.features-five {
  position: relative;
  display: block;
  padding: 0px 0px 90px;
}

.features-five__inner {
  position: relative;
  display: block;
}

.features-five__box {
  position: relative;
  display: block;
  margin-left: -15px;
  margin-right: -15px;
}

.features-five__box li {
  position: relative;
  display: block;
  width: 20%;
  float: left;
  text-align: center;
  padding: 0px 15px 0px;
  margin-bottom: 30px;
}

.features-five__box li:last-child {
  margin-right: 0;
}

.features-five__box li .img-box {
  position: relative;
  display: block;
  border: 1px solid #e5e6e6;
  padding: 30px 0px 30px;
  transition: all 0.4s linear;
  z-index: 1;
}

.features-five__box li:hover .img-box {
  border-color: #f8f8f8;
}

.features-five__box li .img-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.8) rotateX(0deg);
  transition: all 0.4s linear;
  background: #f8f8f8;
  opacity: 0;
  content: "";
  z-index: -1;
}

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

.features-five__box li .img-box .inner {
  position: relative;
  display: block;
  z-index: 1;
}

.features-five__box li .img-box .inner .shape1 {
  position: absolute;
  top: -12px;
  left: 0px;
  right: 0;
  margin: 0 auto;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: #f8f8f8;
  z-index: -1;
}

.features-five__box li .img-box img {
  width: auto;
}


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

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

.team-three__single-img {
  position: relative;
  display: block;
  max-width: 280px;
  width: 100%;
}

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

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

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

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

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

.team-three__single-img .social-links {
  position: absolute;
  top: 8px;
  left: 5px;
  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: 45px;
  height: 45px;
  background: #ffffff;
  z-index: 1;
}

.team-three__single-img .social-links>li>a::after {
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--thm-base);
  content: "";
  z-index: 2;
}

.team-three__single-img .social-links>li>a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-primary);
  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: 15px;
  line-height: 15px;
  font-weight: 700;
  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: 55px;
  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: top 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: 45px;
  height: 45px;
  background: #ffffff;
  border-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-primary);
  border-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: 15px;
  line-height: 15px;
  font-weight: 700;
  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-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(184, 188, 190, 0.24);
  border-radius: 10px;
  padding: 16px 0px 25px;
  margin-left: 70px;
  margin-top: -55px;
  z-index: 1;
}

.team-three__single-content::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 5px;
  background: #efeff0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  content: "";
  z-index: -1;
}

.team-three__single-content::after {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 5px;
  background: var(--thm-primary);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: 1s;
  transform: scaleX(0.7);
  opacity: 0;
  content: "";
  z-index: -1;
}

.team-three__single:hover .team-three__single-content::after {
  transform: scaleX(1);
  opacity: 1;
}

.team-three__single-content h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 3px;
}

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

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

.team-three__single-content p {
  color: var(--thm-primary);
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
}


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

.work-two__content {
  position: relative;
  display: block;
  max-width: 700px;
  width: 100%;
}

.work-two__content-single {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.work-two__content-single.mb0 {
  margin-bottom: 0;
}

.work-two__content-single.style2 {
  position: relative;
}

.work-two__content-single.style2 .number-box .border-box {
  background: var(--thm-base);
}

.work-two__content-single.style2 .number-box {
  margin-left: 0px;
  margin-right: 70px;
}

.work-two__content-single .content-box {
  position: relative;
  display: block;
  max-width: 520px;
  width: 100%;
  border: 2px solid #e6e7e7;
  padding: 35px 45px 38px;
}

.work-two__content-single .content-box h2 {
  font-size: 34px;
  line-height: 44px;
  font-weight: 600;
  margin-bottom: 19px;
}

.work-two__content-single .content-box p {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.work-two__content-single .number-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.work-two__content-single .number-box .border-box {
  position: relative;
  display: block;
  width: 50px;
  height: 10px;
  background: var(--thm-primary);
  margin-right: 39px;
}

.work-two__content-single .number-box h2 {
  position: relative;
  font-size: 60px;
  line-height: 1em;
  font-weight: 600;
}

.work-two__content-single .number-box h2 span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  position: absolute;
  top: -10px;
}

.work-two__img {
  position: relative;
  display: block;
  margin-left: 42px;
}

.work-two__img .inner {
  position: relative;
  display: block;
}

.work-two__img .inner img {
  max-width: none;
  float: left;
}

.work-two__video {
  position: absolute;
  left: 350px;
  bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.work-two__video a {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  background: #ffffff;
  text-align: center;
  color: var(--thm-primary);
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.work-two__video a::before,
.work-two__video a::after {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.work-two__video a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}


/***
=============================================
Brand One
=============================================
***/
.brand-three {
  position: relative;
  display: block;
  margin-bottom: -185px;
  z-index: 2;
}

.brand-three .auto-container {
  max-width: 1740px;
  width: 100%;
}

.brand-three__inner {
  position: relative;
  display: block;
  padding: 40px 75px 40px;
  background: var(--thm-base);
  border: 1px solid var(--thm-gray);
}

.brand-three .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;
  height: 145px;
  transition: all 400ms linear;
  transition-delay: 0.1s;
}

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

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


/***
=====================================================
Testimonial Two
=====================================================
***/
.testimonial-two {
  position: relative;
  display: block;
  padding: 305px 0px 120px;
  z-index: 1;
}

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

.testimonial-two__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  opacity: 0.8;
  content: "";
  z-index: -2;
}

.testimonial-two .sec-title__title {
  color: #ffffff;
}

.testimonial-two__inner {
  position: relative;
  display: block;
  padding-left: 150px;
  width: 1595px;
}

.testimonial-two__single {
  position: relative;
  display: block;
  padding-top: 60px;
  z-index: 1;
}

.testimonial-two__single .quote-icon {
  position: absolute;
  left: 0;
  bottom: 120px;
  right: 0;
  text-align: center;
}

.testimonial-two__single .quote-icon span:before {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, .08);
  font-size: 100px;
}

.testimonial-two__single .img-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-two__single .img-box .inner {
  position: relative;
  display: block;
  width: 105px;
  height: 105px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid #ffffff;
  overflow: hidden;
  z-index: 1;
}

.testimonial-two__single .img-box .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.2);
  opacity: 0;
  z-index: 1;
  content: "";
}

.testimonial-two__single:hover .img-box .inner::before {
  opacity: 1;
}


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

.testimonial-two__single:hover .img-box .inner img {
  transform: scale(1);
}

.testimonial-two__single-inner {
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 104px 40px 42px;
  z-index: 1;
  transition: 1.5s;
}

.testimonial-two__single:hover .testimonial-two__single-inner {
  border-color: rgba(255, 255, 255, .06);
}

.testimonial-two__single-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, .06);
  transition: 1s;
  transform: scaleX(0.8);
  opacity: 0;
  content: "";
  z-index: -1;
}

.testimonial-two__single:hover .testimonial-two__single-inner::before {
  transform: scaleX(1);
  opacity: 1;
}

.testimonial-two__single-inner .author-box {
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.testimonial-two__single-inner .author-box h2 {
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  text-transform: capitalize;
}

.testimonial-two__single-inner .author-box p {
  color: var(--thm-base);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.testimonial-two__single-inner .text-box {
  position: relative;
  display: block;
  margin-bottom: 14px;
}

.testimonial-two__single-inner .text-box p {
  margin: 0;
}

.testimonial-two__single-inner .rating-box {
  position: relative;
  display: block;
}

.testimonial-two__single-inner .rating-box ul li span {
  color: #ffffff;
}

.testimonial-two .owl-theme .owl-nav {
  position: absolute;
  left: -155px;
  bottom: 95px;
  z-index: 5;
  display: block;
}

.testimonial-two .owl-carousel .owl-nav button.owl-prev,
.testimonial-two .owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 0%;
  background-color: rgba(255, 255, 255, .08);
  color: #ffffff;
  font-size: 20px;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonial-two .owl-carousel .owl-nav button.owl-prev {
  margin-bottom: 10px;
}

.testimonial-two .owl-carousel .owl-nav button.owl-prev span::before {
  position: relative;
  display: inline-block;
  transform: rotate(0deg);
}

.testimonial-two .owl-carousel .owl-nav button.owl-next span::before {
  position: relative;
  display: inline-block;
  transform: rotate(0deg);
}

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


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

.product-one .shape1 {
  position: absolute;
  bottom: 210px;
  left: 0;
  opacity: 0.2;
  z-index: -1;
}

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

.product-one__single {
  position: relative;
  display: block;
  margin-bottom: 34px;
  padding: 0px 35px 0px;
  z-index: 1;
}

.product-one__single::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 75px;
  right: 0;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  content: "";
  z-index: -1;
}

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

.product-one__single-content-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f5;
  padding: 14px 25px 13px;
  z-index: 1;
  margin-bottom: 19px;
}

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

.product-one__single:hover .product-one__single-content-btn::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

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

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

.product-one__single-content-btn .title h6 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

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

.product-one__single-content-btn .icon ul {
  position: relative;
  display: block;
  line-height: 0;
}

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

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

.product-one__single-content-btn .icon ul li a {
  color: var(--thm-black);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-one__single:hover .product-one__single-content-btn .icon ul li a {
  color: #ffffff;
}

.product-one__single-content-btn .icon ul li a span:before {
  position: relative;
  display: inline-block;
  font-size: 15px;
}

.product-one__single-content-btn .icon ul li a span.eye:before {
  font-size: 18px;
}

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

.product-one__single-content-inner h2 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 13px;
}

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

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

.product-one__single-content-inner p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.product-one__single-content-inner .rating-box {
  position: relative;
  display: block;
  margin-top: 11px;
  margin-bottom: 22px;
}

.product-one__single-img {
  position: relative;
  display: block;
  text-align: center;
}

.product-one__single-img::before {
  position: absolute;
  left: 0;
  bottom: -4px;
  right: 0;
  height: 4px;
  background: var(--thm-primary);
  content: "";
  z-index: 1;
}

.product-one__single-img::after {
  position: absolute;
  left: 0;
  bottom: -4px;
  right: 0;
  height: 4px;
  background: var(--thm-base);
  content: "";
  transition: 0.7s;
  transform: scaleX(0.7);
  opacity: 0;
  z-index: 1;
}

.product-one__single:hover .product-one__single-img::after {
  transform: scaleX(1);
  opacity: 1;
}

.product-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.product-one__single-img .inner::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;
}

.product-one__single:hover .product-one__single-img .inner::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.product-one__single-img .inner img {
  width: 100%;
  transform: scale(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

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


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

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

.blog-three__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.blog-three__single-img:before {
  background: #000000;
  position: absolute;
  height: 0;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -moz-transition: all 400ms ease-out 0s;
  -webkit-transition: all 400ms ease-out 0s;
  -ms-transition: all 400ms ease-out 0s;
  -o-transition: all 400ms ease-out 0s;
  transition: all 400ms ease-out 0s;
  content: "";
  z-index: 1;
}

.blog-three__single:hover .blog-three__single-img:before {
  height: 100%;
  opacity: 0.3;
}

.blog-three__single-img:after {
  position: absolute;
  content: "";
  background: #000000;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
  -moz-transition: all 600ms ease-out 0s;
  -webkit-transition: all 600ms ease-out 0s;
  -ms-transition: all 600ms ease-out 0s;
  -o-transition: all 600ms ease-out 0s;
  transition: all 600ms ease-out 0s;
}

.blog-three__single:hover .blog-three__single-img:after {
  height: 0;
  opacity: 0.2;
}

.blog-three__single-img .date-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  right: 15px;
  bottom: 15px;
  width: 130px;
  height: 40px;
  background: #ffffff;
  color: var(--thm-primary);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  z-index: 5;
}

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

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

.blog-three__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 41px 30px 37px;
  padding-right: 20px;
}

.blog-three__single-content p {
  color: var(--thm-base);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 7px;
}

.blog-three__single-content h2 {
  font-size: 21px;
  line-height: 31px;
  font-weight: 600;
}

.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 {
  color: var(--thm-base);
}

.blog-three__single-content .btn-box {
  position: relative;
  display: block;
  margin-top: 11px;
}

.blog-three__single-content .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-three__single-content .btn-box a span:before {
  position: relative;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  top: 0px;
  padding-left: 1px;
}

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

/***
=====================================================
Features One About
=====================================================
***/
.features-one--about {
  position: relative;
  display: block;
  padding: 120px 0px 30px;
  margin-bottom: 0;
}

/***
=====================================================
Video Two About
=====================================================
***/
.video-two--about {
  position: relative;
  display: block;
}

.video-two--about .video-two__content .border-box {
  background: var(--thm-base);
}

.video-two--about .video-two__video-icon a {
  color: var(--thm-base);
}

.video-two--about .video-two__bg::before {
  background: #1c1c1c;
  opacity: 0.88;
}

/***
=====================================================
Features Five About
=====================================================
***/
.features-five--about {
  position: relative;
  display: block;
}

.features-five--about .auto-container {
  max-width: 1530px;
  width: 100%;
}

.features-five__outer {
  position: relative;
  display: block;
  background: #ffffff;
  padding-top: 70px;
  margin-top: -160px;
  z-index: 2;
}

/***
=====================================================
Work Two About
=====================================================
***/
.work-two--about {
  position: relative;
  display: block;
  padding: 0px 0px 30px;
}

.work-two--about .work-two__content-single .number-box .border-box {
  background: var(--thm-base);
}

.work-two--about .work-two__video a {
  color: var(--thm-base);
}

.work-two--about .work-two__video a:hover {
  color: #ffffff;
}

/***
=====================================================
Counter One About
=====================================================
***/
.counter-one--about {
  position: relative;
  display: block;
  padding-bottom: 150px;
}

.counter-one--about .counter-one__inner ul li::before {
  top: -30px;
  bottom: -30px;
}


/***
=====================================================
Services Three Services
=====================================================
***/
.services-three--services {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
}

.services-three--services .services-three__single-content .inner .icon-box .left-border::before {
  background: #f7b751;
}

.services-three--services .services-three__single-content .inner .icon-box .right-border::before {
  background: #f7b751;
}

/***
=====================================================
Team One Team
=====================================================
***/
.team-one--team {
  position: relative;
  display: block;
}

.team-one--team.team-one::before {
  display: none;
}


/***
=============================================
Services Details
=============================================
***/
.services-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
}

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

.services-details__content-img1 {
  position: relative;
  display: block;
  margin-bottom: 45px;
}

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

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

.services-details__content .text-box1 h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 22px;
  font-family: var(--thm-font);
}

.services-details__content .text-box1 .text1 {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

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

.services-details__content .text-box1 ul {
  position: relative;
  display: block;
  margin-top: 47px;
}

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

.services-details__content .text-box1 ul li:last-child {
  margin-bottom: 0px;
}

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

.services-details__content .text-box1 ul li .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 17px;
}

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

.services-details__content .text-box1 ul li .text p {
  margin: 0;
}

.services-details__content .text-box2 {
  position: relative;
  display: block;
  margin-top: 32px;
}

.services-details__content .text-box2 p {
  margin: 0;
}

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

.services-details__content .text-box2 ul li {
  position: relative;
  display: block;
  margin-bottom: 13px;
}

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

.services-details__content .text-box2 ul li p {
  position: relative;
  margin: 0;
  padding-left: 25px;
}

.services-details__content .text-box2 ul li p:before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #bfc2c3;
  border-radius: 50%;
  content: "";
}

.services-details__content-img2 {
  position: relative;
  display: block;
  margin-top: 57px;
}

.services-details__content-img2 img {
  width: 100%;
}

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

.services-details__content .text-box3 .text1 {
  position: relative;
  display: block;
  margin-bottom: 19px;
}

.services-details__content .text-box3 .text2 {
  position: relative;
  display: block;
}

.services-details__content .text-box4 {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 37px;
}

.services-details__content .text-box4 .img-box {
  position: relative;
  display: block;
}

.services-details__content .text-box4 .img-box img {
  width: auto;
}

.services-details__content .text-box4 .content-box {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-top: -11px;
  flex: 1;
}

.services-details__content .text-box4 .content-box p {
  margin: 0;
  margin-bottom: 32px;
}

.services-details__content .text-box4 ul {
  position: relative;
  display: block;
}

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

.services-details__content .text-box4 ul li:last-child {
  margin-bottom: 0;
}

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

.services-details__content .text-box4 ul li .icon span:before {
  position: relative;
  display: inline-block;
  color: #8a8d97;
  font-size: 17px;
}

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

.services-details__content .text-box4 ul li .text p {
  margin: 0;
}

.services-details__content .text-box5 {
  position: relative;
  display: block;
  margin-top: 42px;
}

.services-details__content .text-box5 p {
  margin: 0;
}


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

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

.sidebar__title {
  position: relative;
  margin: 0;
  font-size: 27px;
  line-height: 37px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 30px;
  padding-left: 40px;
  font-family: var(--thm-font);
}

.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: #f5f5f5;
  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: 15px;
  font-weight: 500;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: 3px;
  border: 0px solid #dcdfe2;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--thm-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--thm-gray);
}

.sidebar__search-form button[type="submit"] {
  background-color: var(--thm-base);
  color: #ffffff;
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 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: #f5f5f5;
  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: 18px;
  line-height: 28px;
  font-weight: 600;
  padding: 17px 20px 18px;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
}

.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: 15px;
  font-weight: 600;
  background-color: #eae5e5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
}

.sidebar__category-list li a:hover span,
.sidebar__category-list li.active a span {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}


.sidebar__support {
  position: relative;
  display: block;
  text-align: center;
  padding: 77px 40px 90px;
  z-index: 1;
}

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

.sidebar__support-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #020202;
  opacity: 0.8;
  content: "";
  z-index: -2;
}

.sidebar__suppot-title {
  color: #ffffff;
  font-size: 52px;
  line-height: 60px;
  font-weight: 600;
  font-family: var(--thm-font);
}

.sidebar__suppot-text {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  margin-top: 25px;
  margin-bottom: 38px;
}

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

.sidebar__support-btn-box .thm-btn {
  border-radius: 32px;
}


.sidebar__single-button-box {
  position: relative;
  display: block;
  background-color: #f5f5f5;
  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: 18px;
  line-height: 28px;
  font-weight: 600;
  text-transform: capitalize;
  background: #ffffff;
  padding: 18px 25px 19px;
  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__post {
  position: relative;
  display: block;
  padding: 42px 30px 42px;
  background-color: #f5f5f5;
}

.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: 100%;
  height: 0%;
  background-color: rgba(var(--thm-black-rgb), .80);
  border-radius: 0%;
  -webkit-transform: translateY(90%, 90%);
  transform: translateY(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: 18px;
}

.sidebar__post-content-box h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--thm-font);
}

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

.sidebar__tags {
  position: relative;
  display: block;
  background-color: #f5f5f5;
  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: var(--thm-gray);
  font-size: 16px;
  font-weight: 500;
  background: #ffffff;
  padding: 6px 24px;
  border-radius: 3px;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__tags-list li a:hover {
  color: #ffffff;
  background: var(--thm-base);
}

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

.team-details__img {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 550px;
  width: 100%;
  z-index: 1;
}

.team-details__img::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.team-details__img:hover::before {
  width: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

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

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

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

.team-details__content-title {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.team-details__content-title h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.04em;
  margin-bottom: 5px;
}

.team-details__content-title p {
  font-weight: 500;
  margin: 0;
}

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

.team-details__content-social-links ul {
  position: relative;
  display: block;
  overflow: hidden;
}

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

.team-details__content-social-links ul li:last-child {
  margin-right: 0;
}

.team-details__content-social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f3f3f4;
  border-radius: 50%;
  z-index: 1;
}

.team-details__content-social-links ul li a::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;
}

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

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

.team-details__content-social-links ul li a:hover span:before {
  color: #ffffff;
}

.team-details__content-bottom {
  position: relative;
  display: block;
  margin-top: 22px;
}

.team-details__content-bottom h3 {
  color: var(--thm-base);
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 33px;
}

.team-details__content-bottom p {
  margin: 0;
}

.team-details__content-bottom-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 34px;
}

.team-details__content-bottom-list li {
  position: relative;
  display: block;
  margin-bottom: 9px;
}

.team-details__content-bottom-list li:last-child {
  margin-bottom: 0;
}

.team-details__content-bottom-list li p {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.team-details__content-bottom-list li p span {
  color: var(--thm-gray);
}

.team-details__content-bottom-list li p a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-details__content-bottom-list li p a:hover {
  color: var(--thm-base);
}

.team-details__experience {
  position: relative;
  display: block;
  border-top: 1px solid #dddddd;
  margin-top: 70px;
  padding-top: 60px;
}

.team-details__experience-content {
  position: relative;
  display: block;
  max-width: 500px;
  width: 100%;
}

.team-details__experience-content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.team-details__experience-content p {
  margin: 0;
}

.team-details__progress {
  position: relative;
  display: block;
  max-width: 600px;
  width: 100%;
}

.team-details__progress-single {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.team-details__progress-single.mb0 {
  margin-bottom: 0;
}

.team-details__progress-single .title-box {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.team-details__progress-single .title-box h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.team-details__progress-single .bar {
  position: relative;
  width: 100%;
  height: 10px;
  background: #f3f3f3;
  border-radius: 5px;
}

.team-details__progress-single .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 10px;
  background: var(--thm-base);
  border-radius: 5px;
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.team-details__progress-single .count-text {
  position: absolute;
  top: -40px;
  right: 0px;
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
  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;
}


/***
=====================================================
Project Page Two
=====================================================
***/
.project-page-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 4px 0px 55px;
  z-index: 1;
}

.projects-header-image {
  width: 90%;
  max-width: 75%;
  height: 300px;
  margin: 0 auto 20px;
  background: url(../images/project/projects-banner.jpg) no-repeat center center;
  background-size: cover;
  border-radius: 10px;
}

.project-page-two__single-img::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/resources/logo.png) no-repeat center;
  background-size: contain;
  opacity: 0.5;
  z-index: 3;
  pointer-events: none;
}

.project-page-two__menu-box {
  position: relative;
  display: block;
  text-align: center;
  padding: 23px 0px 23px;
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  margin-bottom: 75px;
}

.project-page-two__menu-box::before {
  position: absolute;
  top: 0;
  left: -9999999px;
  right: -999999px;
  height: 1px;
  background: #e2e2e2;
  content: "";
}

.project-page-two__menu-box::after {
  position: absolute;
  bottom: 0;
  left: -9999999px;
  right: -999999px;
  height: 1px;
  background: #e2e2e2;
  content: "";
}

.project-page-two__menu-box .project-filter {
  position: relative;
  display: block;
  z-index: 1;
}

.project-page-two__menu-box .project-filter li {
  position: relative;
  display: inline-block;
  padding-right: 55px;
  margin-left: 50px;
}

.project-page-two__menu-box .project-filter li::before {
  position: absolute;
  top: -3px;
  right: 0;
  bottom: -2px;
  width: 1px;
  background: #e2e2e2;
  content: "";
}

.project-page-two__menu-box .project-filter li:last-child:before {
  display: none;
}

.project-page-two__menu-box .project-filter li:last-child {
  margin-right: 0;
}

.project-page-two__menu-box .project-filter li .filter-text {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
  cursor: pointer;
  transition: all .4s ease;
  font-family: var(--thm-font);
  z-index: 1;
}

.project-page-two__menu-box .project-filter li:hover .filter-text,
.project-page-two__menu-box .project-filter li.active .filter-text {
  color: var(--thm-base);
}

.project-page-two__menu-box .project-filter li .count {
  position: absolute;
  top: -12px;
  right: -11px;
  color: var(--thm-base);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--thm-font);
  opacity: 0;
  transform: scale(0);
  transition: all 300ms ease;
  z-index: -1;
}

.project-page-two__menu-box .project-filter li:hover .count,
.project-page-two__menu-box .project-filter li.active .count {
  transform: scale(1);
  opacity: 1;
  transition-delay: 500ms;
}

.project-page-two__single {
  position: relative;
  display: block;
  margin-bottom: 56px;
}

.project-page-two__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.project-page-two__single-img:before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  right: 0px;
  flex-wrap: wrap;
  background: #010101;
  opacity: 0.8;
  z-index: 1;
  width: 100%;
  height: 100%;
  -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-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.project-page-two__single:hover .project-page-two__single-img:before {
  -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-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.project-page-two__single-img img {
  width: 100%;
  transition: all 700ms ease;
}

.project-page-two__single:hover .project-page-two__single-img img {
  transform: scaleY(1.1);
}

.project-page-two__single-img .icon-box {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: perspective(400px) translateY(20px);
  transform-origin: top;
  transition: all 0.1s ease-in-out 0s;
  z-index: 5;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.project-page-two__single:hover .project-page-two__single-img .icon-box {
  opacity: 1;
  transform: perspective(400px) translateY(0);
  transition: all 0.5s ease-in-out 0.5s;
}

.project-page-two__single-img .icon-box a {
  position: relative;
  display: inline-block;
}

.project-page-two__single-img .icon-box a span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-page-two__single-img .icon-box a:hover span:before {
  color: var(--thm-base);
}

.project-page-two__single-img .btn-box {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  opacity: 0;
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  transition-delay: 0.5s;
}

.project-page-two__single:hover .project-page-two__single-img .btn-box {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.project-page-two__single-img .btn-box a {
  position: relative;
  display: inline-block;
  background: var(--thm-base);
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg) translateX(0%);
  width: max-content;
  padding: 35px 13px 35px;
  padding-top: 25px;
}

.project-page-two__single-img .btn-box a span:before {
  position: relative;
  display: inline-block;
  font-size: 18px;
  top: 1px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-90deg) translateX(0%);
  width: max-content;
  top: 9px;
  right: 0px;
}

.project-page-two__single-content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.project-page-two__single-content h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
}

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

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






@media (max-width: 1024px) {
  .projects-header-image {
    width: 90%;
    max-width: 95%;
    height: 300px;
    margin: 0 auto 20px;
    background: url(../images/project/projects-banner.jpg) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
  }
}

@media (max-width: 820px) {
  .projects-header-image {
    width: 90%;
    max-width: 95%;
    height: 300px;
    margin: 0 auto 20px;
    background: url(../images/project/projects-banner.jpg) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
  }
}


@media (max-width: 768px) {
  .projects-header-image {
    width: 90%;
    max-width: 100%;
    height: 300px;
    margin: 0 auto 20px;
    background: url(../images/project/projects-banner.jpg) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .projects-header-image {
    width: 90%;
    max-width: 100%;
    height: 300px;
    margin: 0 auto 20px;
    background: url(../images/project/projects-banner.jpg) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
  }
}

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

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

.project-details__content-text1 {
  position: relative;
  display: block;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 42px;
}

.project-details__content-text1 h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 21px;
}

.project-details__content-text1 .text1 {
  margin: 0;
  margin-bottom: 23px;
}

.project-details__content-text1 .text2 {
  margin: 0;
}

.project-details__content-text2 {
  position: relative;
  display: block;
  margin-top: 37px;
}

.project-details__content-text2 h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 21px;
}

.project-details__content-text2 .text1 {
  margin: 0;
  margin-bottom: 52px;
}

.project-details__content-text2-list {
  position: relative;
  display: block;
  overflow: hidden;
}

.project-details__content-text2-list li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.project-details__content-text2-list li:last-child {
  margin-bottom: 0;
}

.project-details__content-text2-list li .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border-radius: 50%;
}

.project-details__content-text2-list li .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 40px;
  font-weight: 700;
}

.project-details__content-text2-list li .text-box {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 15px;
}

.project-details__content-text2-list li .text-box p {
  margin: 0;
}

.project-details__img {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 370px;
  width: 100%;
  margin-left: 40px;
  z-index: 1;
}

.project-details__img::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.project-details__img:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

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

.project-details__img:hover img {
  transform: scale(1);
}


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

.gallery-three__inner {
  position: relative;
  display: block;
}

.gallery-three__single {
  position: relative;
  display: block;
  overflow: hidden;
}

.gallery-three__single-img {
  position: relative;
  display: block;
  padding-left: 25px;
}

.gallery-three__single-img .overlay-content {
  position: absolute;
  top: 105px;
  left: 0;
  bottom: 105px;
  background: var(--thm-base);
  border-radius: 5px;
  overflow: hidden;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg) translateX(0%);
  width: max-content;
  text-align: center;
  padding: 0px 41px 0px;
  opacity: 0;
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  transition-delay: 0.4s;
  z-index: 5;
}

.gallery-three__single:hover .gallery-three__single-img .overlay-content {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.gallery-three__single-img .overlay-content h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.1em;
  transform: rotate(-180deg);
}

.gallery-three__single-img .overlay-content h2 a {
  color: #ffffff;
}

.gallery-three__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

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

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

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

.gallery-three__single:hover .gallery-three__single-img-inner img {
  transform: scale(1);
}

.gallery-three__carousel.owl-carousel {
  display: block;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.gallery-three__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding: 0px 0px 0px;
}

.gallery-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-three__single-img .overlay-content {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.gallery-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-three__single-img-inner img {
  transform: scale(1);
}

.gallery-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-three__single-img-inner::before {
  opacity: 1;
}


/***
=====================================================
Error Page
=====================================================
***/
.error-page {
  position: relative;
  display: block;
  padding: 108px 0px 120px;
  z-index: 1;
}

.error-page__inner {
  position: relative;
  display: block;
}

.error-page__inner h2 {
  color: var(--thm-base);
  font-size: 120px;
  line-height: 0.9em;
  font-weight: 600;
  font-family: var(--thm-font);
  margin-bottom: 35px;
}

.error-page__inner h3 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
  font-family: var(--thm-font);
  margin-bottom: 19px;
  text-transform: capitalize;
}

.error-page__inner p {
  margin: 0;
}

.error-page__search {
  position: relative;
  display: block;
  margin-top: 32px;
}

.error-page__search form.search-form {
  position: relative;
  display: block;
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
}

.error-page__search .search-form input[type="text"] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border-radius: 0px;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 500;
  padding-left: 30px;
  padding-right: 60px;
  transition: all 500ms ease 0s;
  font-family: var(--thm-font);
}

.error-page__search .search-form button {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--thm-base);
  text-align: center;
  border: 0px solid #f6f4ec;
  transition: all 500ms ease 0s;
  padding: 0;
  outline: none;
  border: none;
}

.error-page__search .search-form button:hover {
  background: var(--thm-black);
}

.error-page__search .search-form button i {
  color: #ffffff;
  font-size: 17px;
  line-height: 50px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.error-page__search .search-form button:hover i {
  color: #ffffff;
}

.error-page__search .search-form input[type="text"]:focus {
  outline: none;
}

.error-page__search .search-form input::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.error-page__search .search-form input:-moz-placeholder {
  color: var(--thm-gray);
}

.error-page__search .search-form input::-moz-placeholder {
  color: var(--thm-gray);
}

.error-page__search .search-form input:-ms-input-placeholder {
  color: var(--thm-gray);
}

.error-page__btn {
  position: relative;
  display: block;
  margin-top: 40px;
  line-height: 0;
}

.error-page__btn .thm-btn {
  background: transparent;
  border: 1px solid var(--thm-base);
  color: var(--thm-base);
  transition: all 100ms linear;
  transition-delay: 0.01s;
}

.error-page__btn .thm-btn:before {
  background: var(--thm-base);
}

.error-page__btn .thm-btn:hover {
  color: #ffffff;
}


/***
=====================================================
Gallery One Project One
=====================================================
***/
.gallery-one--project1 {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
}

.gallery-one--project1 .gallery-one__single {
  margin-bottom: 30px;
}

.gallery-one--project1 .gallery-one__single-img .overlay-content {
  left: 15px;
  bottom: 15px;
  right: 15px;
  width: auto;
  padding: 31px 30px 30px;
}

.gallery-one--project1 .gallery-one__single-img .overlay-content h2 {
  font-size: 24px;
  line-height: 34px;
  margin-top: 3px;
}

.gallery-one--project1 .gallery-one__single-img .overlay-content p {
  font-size: 17px;
  line-height: 27px;
  font-weight: 600;
}

.gallery-one--project1 .gallery-one__link a {
  width: 50px;
  height: 50px;
}

.gallery-one--project1 .gallery-one__link a span:before {
  font-size: 17px;
}


/***
=====================================================
Why Choose One Services
=====================================================
***/
.why-choose-one--services {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
}

/***
=====================================================
Blog Page
=====================================================
***/
.blog-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

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

.blog-page__single {
  position: relative;
  display: block;
  margin-bottom: 55px;
}

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

.blog-page__single-img .date-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  right: 70px;
  bottom: -20px;
  width: 70px;
  height: 70px;
  background: var(--thm-base);
  border-radius: 5px;
  color: #ffffff;
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
  z-index: 5;
}

.blog-page__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-page__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: "";
}

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

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

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

.blog-page__single-content {
  position: relative;
  display: block;
  margin-top: 26px;
}

.blog-page__meta {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.blog-page__meta li+li {
  margin-left: 20px;
}

.blog-page__meta li a {
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.blog-page__meta li a span {
  position: relative;
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  margin-left: 6px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-page__meta li a:hover span {
  color: var(--thm-base);
}


.blog-page__single-content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  margin-bottom: 20px;
}

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

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

.blog-page__single-content .text1 {
  margin: 0;
  margin-bottom: 13px;
}

.blog-page__single-content .text2 {
  margin: 0;
}

.blog-page__single-content .btn-box {
  position: relative;
  display: block;
  margin-top: 16px;
  line-height: 0;
}

.blog-page__single-content .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-page__single-content .btn-box a::before {
  position: absolute;
  left: 0;
  bottom: 5px;
  right: 0;
  height: 1px;
  background: var(--thm-gray);
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-page__single-content .btn-box a:hover::before {
  background: var(--thm-base);
}

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

.blog-page__content .styled-pagination {
  padding-top: 5px;
}

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

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

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

.blog-details__content-text1 {
  position: relative;
  display: block;
  margin-top: 25px;
}

.blog-details__content-text1 p {
  margin: 0;
}

.blog-details__content-blockquote {
  position: relative;
  display: block;
  padding-left: 60px;
  margin-top: 33px;
}

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

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

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

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

.blog-details__content-text2 {
  position: relative;
  display: block;
  margin-top: 33px;
}

.blog-details__content-text2 .text1 {
  margin: 0;
}

.blog-details__content-text2-list {
  position: relative;
  display: block;
  margin-top: 33px;
}

.blog-details__content-text2-list li {
  position: relative;
  display: block;
  padding-left: 24px;
}

.blog-details__content-text2-list li:before {
  position: absolute;
  top: 10px;
  left: 0;
  height: 10px;
  width: 10px;
  background-color: #bfc2c3;
  border-radius: 50%;
  content: "";
}

.blog-details__content-text2-list li+li {
  margin-top: 17px;
}

.blog-details__content-text2 .text2 {
  margin-top: 34px;
}

.blog-details__content-text2 .text3 {
  margin-top: 24px;
}


.blog-details__bottom {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 49px 0 40px;
}

.blog-details__bottom p {
  margin: 0;
}

.blog-details__tags a {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  background-color: #ffffff;
  border: 1px solid #dcdfe2;
  padding: 5px 30px;
  letter-spacing: 0.035em;
  font-family: var(--thm-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__tags a:hover {
  background-color: var(--thm-base);
  border: 1px solid var(--thm-base);
  color: #ffffff;
}

.blog-details__tags a+a {
  margin-left: 6px;
}

.blog-details__social-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.blog-details__social-list a {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--thm-black);
  font-size: 15px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.blog-details__social-list a:hover {
  color: #ffffff;
  background-color: var(--thm-base);
}

.blog-details__social-list a+a {
  margin-left: 10px;
}

.blog-details__social-list a:hover:before {
  transform: scaleX(1);
}

.author-one {
  background-color: #f5f5f5;
  padding: 32px 30px 30px;
  display: -webkit-box;
  display: flex;
  margin-bottom: 51px;
}

.author-one .inner {
  position: relative;
  display: block;
  padding-left: 130px;
}

.author-one__image {
  position: absolute;
  top: 7px;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.author-one__image img {
  width: 100%;
}

.author-one__content {
  position: relative;
  display: block;
}

.author-one__content h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 8px;
  font-family: var(--thm-font);
}

.author-one__content p {
  margin: 0;
}

.author-one__content {
  position: relative;
  display: block;
}

.author-one__content ul {
  position: relative;
  display: block;
  margin-top: 16px;
}

.author-one__content ul li {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.author-one__content ul li:last-child {
  margin-right: 0px;
}

.author-one__content ul li a {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.author-one__content ul li a:hover {
  color: var(--thm-primary);
}




/***
=====================================================
  Comments
=====================================================
***/
.comment-one {
  position: relative;
  display: block;
}

.comment-one__title {
  color: var(--thm-black);
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
  margin-bottom: 31px;
  font-family: var(--thm-font);
}

.comment-one__single {
  position: relative;
  display: -webkit-box;
  display: flex;
  align-items: center;
  margin-bottom: 53px;
}

.comment-one__image {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.comment-one__image img {
  width: auto;
}

.comment-one__content {
  position: relative;
  margin-left: 30px;
  flex: 1;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 11px;
  font-weight: 600;
  font-family: var(--thm-font);
}

.comment-one__content p {
  margin: 0;
  margin-bottom: 13px;
}

.comment-one__content span {
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
}

.comment-one__btn {
  position: relative;
  color: var(--thm-base);
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--thm-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding-left: 16px;
}

.comment-one__btn:hover {
  color: var(--thm-black);
}

.comment-form {
  position: relative;
  display: block;
}

.comment-form__title {
  color: var(--thm-black);
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
  margin-bottom: 40px;
  font-family: var(--thm-font);
}

.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: transparent;
  width: 100%;
  height: 60px;
  border: 1px solid #dcdfe2;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  font-style: normal;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 3px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.comment-form__input-box textarea {
  width: 100%;
  height: 200px;
  background-color: transparent;
  border: 1px solid #dcdfe2;
  outline: none;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  border-radius: 3px;
  padding: 12px 20px 20px;
  font-family: var(--thm-font);
  resize: none;
}

.comment-form__btn-box {
  position: relative;
  display: block;
}

.comment-form__btn-box button.thm-btn {
  border-radius: 32px;
}


/***
=====================================================
Contact Page
=====================================================
***/
.contact-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.contact-page__top {
  position: relative;
  display: block;
}

.contact-page__top-map {
  position: relative;
  display: block;
}

.contact-page-google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 600px;
  width: 100%;
}

.contact-page__top-content {
  position: relative;
  display: block;
  margin-left: 60px;
}

.contact-page__top-content .title-box {
  position: relative;
  display: block;
  margin-top: -12px;
  margin-bottom: 49px;
}

.contact-page__top-content .title-box h2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.contact-page__top-content .title-box p {
  margin: 0;
}


.contact-page__top-content-single {
  position: relative;
  display: block;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 26px;
  margin-bottom: 21px;
}

.contact-page__top-content-single.mb0 {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border: none;
}

.contact-page__top-content-single .inner {
  position: relative;
  display: block;
  padding-left: 70px;
}

.contact-page__top-content-single .inner .icon-box {
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--thm-base);
  font-size: 45px;
}

.contact-page__top-content-single .inner .icon-box.style2 {
  top: 3px;
}

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

.contact-page__top-content-single .inner .content-box h2 {
  font-size: 27px;
  line-height: 37px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-page__top-content-single .inner .content-box p {
  color: #878c8f;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  font-family: var(--thm-font-2);
}

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

.contact-page__top-content-single .inner .content-box .number1 a {
  color: #878c8f;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__top-content-single .inner .content-box .number1 a:hover {
  color: var(--thm-base);
}


.contact-page__top-content-single .inner .content-box .number2 {
  margin: 0px;
}

.contact-page__top-content-single .inner .content-box .number2 a {
  color: #878c8f;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__top-content-single .inner .content-box .number2 a:hover {
  color: var(--thm-base);
}

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

.contact-page__top-content-single .inner .content-box .email1 a {
  color: #878c8f;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__top-content-single .inner .content-box .email1 a:hover {
  color: var(--thm-base);
}


.contact-page__top-content-single .inner .content-box .email2 {
  margin: 0px;
}

.contact-page__top-content-single .inner .content-box .email2 a {
  color: #878c8f;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__top-content-single .inner .content-box .email2 a:hover {
  color: var(--thm-base);
}


.contact-page__bottom {
  position: relative;
  display: block;
  padding-top: 120px;
}

.contact-page__bottom-content {
  position: relative;
  display: block;
}

.contact-page__bottom-content .sec-title.style2 {
  position: relative;
  display: block;
  padding-bottom: 30px;
}

.contact-page__bottom .text-box {
  position: relative;
  display: block;
  max-width: 410px;
  width: 100%;
}

.contact-page__bottom .text-box p {
  margin: 0;
}


.contact-one__form--contact {
  position: relative;
  display: block;
  padding: 0;
}

.contact-one__form--contact.contact-one__form::before {
  display: none;
}

.contact-one__form--contact.contact-one__form .input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-one__form--contact.contact-one__form .input-box input[type="text"],
.contact-one__form--contact.contact-one__form .input-box input[type="email"],
.contact-one__form--contact.contact-one__form .input-box textarea {
  position: relative;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 60px;
  border: 1px solid #dfe0e5;
  color: #878c8f;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  padding-left: 25px;
  padding-right: 20px;
  border-radius: 15px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.contact-one__form--contact.contact-one__form form input[type="text"]::-webkit-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="text"]:-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="text"]::-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="text"]:-ms-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="email"]::-webkit-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="email"]:-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="email"]::-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="email"]:-ms-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form textarea::-webkit-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form textarea:-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form textarea::-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form textarea:-ms-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form .input-box textarea {
  width: 100%;
  height: 200px;
  background-color: #ffffff;
  border: 1px solid #dfe0e5;
  color: #878c8f;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  padding-top: 20px;
  padding-left: 25px;
  padding-right: 20px;
  border-radius: 15px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
  resize: none;
}

.contact-one__form--contact.contact-one__form button.thm-btn {
  border-radius: 33px;
}

.main-header-one__top-left {
  display: flex;
  align-items: center;
  gap: 8px; /* Simgeler ile metin arasına boşluk bırakır */
}

.main-header-one__top-left i {
  font-size: 16px;
  color: white; /* İkon rengini belirle */
}

	/* About Mobil Responsive */
  @media (max-width: 768px) {
    .triangle-shape img {
        display: none;
    }
}
  @media only screen and (max-width: 768px) {
    .shape-animated-left {
      display: none;
    }
  
    .thumb-shape-bottom {
      display: none;
    }
  
    .about-style-one .about-card {
      left: 0;
      top: 0;
      bottom: auto;
      position: relative;
      width: 100%;
      margin-top: 30px;
    }
  
    .about-thumb {
      margin-top: 30px;
      margin-bottom: 0;
    }
  
    .triangle-shape {
      display: none;
    }
  
    .about-card li:last-child {
      padding-bottom: 0;
      margin-bottom: 0;
      border: none;
    }
  
    .about-card li {
      padding-bottom: 30px;
    }
  }
  /* Wide Mobile Layout: 480px. */
  @media only screen and (min-width: 480px) and (max-width: 767px) {
  }
  
  @media only screen and (max-width: 500px) {
  	/* About */
	.owner-info .right-info {
		display: none;
	}

	.owner-info .left-info {
		margin: 0;
		padding: 0;
		border: none;
	}

	.about-card li {
		display: block;
		text-align: center;
	}

	.about-card li .fun-fact {
		text-align: center;
	}

	.about-card li .icon {
		margin-bottom: 40px;
	}

	.about-card .fun-fact .counter {
		justify-content: center;
	}

	.about-style-four .fun-fact {
		display: block;
		border: none;
		margin: 0;
		padding: 0;
		margin-top: 30px;
	}
}



/* ============================================================== 
    # Services Style
=================================================================== */
.triangle-shape {
	max-width: 12%;
	position: absolute;
	left: 0;
	top: -120px;
}

.service-nav-info {
	padding: 67px 50px;
	background: var(--white);
	margin-right: 50px;
	position: relative;
	z-index: 1;
	box-shadow: 0 5px 3px rgb(3 27 78 / 8%);
}

.service-nav-info::before {
	position: absolute;
	right: -30px;
	bottom: -30px;
	content: "";
	height: 100%;
	width: 100%;
	border-right: 30px solid var(--dark);
	border-bottom: 30px solid var(--dark);
	z-index: -1;
	opacity: 0.06;
}

.service-nav-info h2 {
	font-weight: 600;
	margin: 0;
}

.service-nav-info h2 strong {
	display: inline-block;
	font-weight: 600;
	position: relative;
	z-index: 1;
}

.service-tab-navs {
	border: none;
	margin: 0;
	margin-top: 20px;
}

.service-tab-navs .nav-link {
	display: block;
	width: 100%;
	border: none;
	margin: 0;
	border: 2px solid #e7e7e7 !important;
	margin-top: 15px;
	border-radius: 10px;
	color: var(--color-heading);
	padding: 12px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: auto;
	position: relative;
	z-index: 1;
}

.service-tab-navs .nav-link.active {
	background: var(--dark);
	border-color: var(--dark) !important;
	color: var(--white);
}

.service-tab-navs .nav-link i {
	display: inline-block;
	font-size: 40px;
	position: relative;
	top: 3px;
}

.center-shape {
	position: absolute;
	left: 70%;
	top: 0;
	height: 100%;
	width: 30%;
	background-repeat: no-repeat;
	background-size: contain;
}

.services-style-one {
	position: relative;
	z-index: 1;
}

.services-style-one i {
	display: inline-block;
	font-size: 60px;
	margin-bottom: 30px;
	color: var(--color-primary);
}

.services-style-one p {
	margin: 0;
}

.services-tab-content {
	margin-top: -30px;
}

.service-tab-navs .nav-link::after {
	left: 84px;
	bottom: -2px;
	content: "";
	height: 0;
	width: 30px;
	position: absolute;
	background: var(--color-primary);
	z-index: -1;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	transition: all 0.35s ease-in-out;
	opacity: 0;
}

.service-tab-navs .nav-link::before {
	left: 100px;
	bottom: -2px;
	content: "";
	height: 0;
	width: 40px;
	position: absolute;
	background: #a63131;
	z-index: -1;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	transition: all 0.35s ease-in-out;
	opacity: 0;
}

.service-tab-navs .nav-link.active::after,
.service-tab-navs .nav-link.active::before {
	opacity: 1;
}

.service-tab-navs .nav-link.active::after {
	height: 30px;
}

.service-tab-navs .nav-link.active::before {
	height: 50px;
}


/* ==============================================================
    # Main Product
=================================================================== */
.custom-row {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.main-products {
    width: 100%;
    background-color: 0;
    padding: 50px 0;
    min-height: auto;
    margin-left: 0px;
}

.main-products > div {
    max-width: 1380px;
    margin: auto;
    padding: 20px;
}

.main-products .title {
    text-align: left;
    color: var(--color-heading);
    font-size: 50px;
    font-family: var(--font-heading);
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.main-products .guide {
    display: table;
    width: 100%;
    height: 180px;
    background: #e72122;
    background-size: 100% 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
	
}

.main-products .guide > div {
    display: table-cell;
    vertical-align: middle;
    padding: 0 30px;
}

.main-products .pics {
    position: absolute;
    top: -78px;
    right: -50px;
	
}

.main-products .bar {
    display: inline-block;
    width: 70px;
    vertical-align: middle;
    margin: 0 6px 0 -6px;
	
	
}

.main-products .acc-bar {
    display: inline-block;
    width: 81%;
    height: 140px;
    overflow: hidden;
    margin: -30px 0 0 0;
    vertical-align: middle;
    color: #FFF;
}

.main-products .acc-bar-mob {
    display: none;
}

.main-products .con-accordion * {
    transition: all 0.3s ease;
}

.main-products .con-accordion {
    width: 100%;
    height: 180px;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}

.main-products .con-accordion ul {
    list-style-type: none;
    width: 90%;
    margin: 44px 0 0 0;
    padding: 0;
}

.main-products .con-accordion ul li {
    position: relative;
    display: inline-block;
    width: 19%;
    height: 100%;
    margin: 0;
    padding: 20px 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    vertical-align: top;
    transition: all 0.3s ease; 
}

.main-products .con-accordion ul:hover li {
    width: 19%; 
}

.main-products .con-accordion ul li:hover {
    width: 30%; 
    padding: 20px 10px; 
}

.main-products .con-accordion ul li .txt.b {
    display: none;
}

.main-products .con-accordion ul li:hover .txt.a {
    display: none;
}

.main-products .con-accordion ul li:hover .txt.b {
    display: block;
    white-space: normal;
    margin: -30px 0 0 0;
    padding: 20px 0 0 0;
}

.main-products .con-accordion ul li .txt.c {
    display: block;
    font-size: 18px; 
    white-space: normal; 
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-products .con-accordion ul li .txt.d {
    display: block;
    font-size: 12px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-products .con-accordion ul li .txt.e {
    display: block;
    width: 100%;
    margin: 4px 0;
    font-size: 12px;
    line-height: 1.3em;
}


/* Mobile */
.mobil-main-products {
  display: none;
}

/* Mobile (max-width: 768px) */
@media screen and (max-width: 768px) {
  .main-products {
      display: none;
  }

  .mobil-main-products {
      display: block;
      background-color: white;
      padding: 20px;
      width: 100%;
      box-sizing: border-box;
      overflow: hidden;
  }

  .mobil-main-products .mob-title {
      text-align: left;
      color: var(--color-heading);
      font-size: 36px;
      font-family: var(--font-heading);
      margin-bottom: 14px;
      letter-spacing: -1px;
      max-width: 100%;
      overflow: hidden;
  }

  .mobil-main-products .guide {
      width: 100%;
      background: #e72122;
      background-size: 100% 100%;
      border: 1px solid rgba(255, 255, 255, 0.05);
      padding: 20px;
      box-sizing: border-box;
      overflow: hidden;
  }

  .mobil-main-products .acc-bar-mob {
      display: block;
      color: #FFF;
      padding: 20px;
      box-sizing: border-box;
      overflow: hidden;
  }

  .mobil-main-products .acc-bar-mob ul {
      list-style: none;
      padding: 0;
      margin: 0;
      max-width: 100%;
  }

  .mobil-main-products .acc-bar-mob ul li {
      margin-bottom: 20px;
      max-width: 100%;
  }

  .mobil-main-products .acc-bar-mob ul li span {
      font-size: 14px;
      color: #FFF;
      max-width: 100%;
      overflow: hidden;
  }

  .mobil-main-products .acc-bar-mob ul li span u b {
      font-size: 21px;
      max-width: 100%;
      overflow: hidden;
  }
}

/* Desktop (min-width: 769px) */
@media screen and (min-width: 769px) {
  .main-products {
      display: block;
  }

  .mobil-main-products {
      display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .sec-title__title {
      font-size: 32px;
      line-height: 1.2em;
  }
}

/* ==============================================================
    # News 
=================================================================== */
.haberler-container {
  width: 100%;
  overflow: hidden;
  background: #040303e8;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
}
.haber-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.haber-marquee {
  display: flex;
  animation: kayanHaber 15s linear infinite;
  min-width: 200%;
}
.haber-marquee span {
  padding-right: 50px;
  font-size: 30px;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}
@keyframes kayanHaber {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-50%);
  }
}

/* ============================================================== 
    # Call Back Style
=================================================================== */
.request-call-back-area {
	position: relative;
	z-index: 1;
	background-size: cover;
	background-position: center;
	min-height: 800px; /* Yüksekliği daha fazla artırıldı */
	display: flex;
	align-items: center; /* İçeriği dikey olarak ortalamak için eklendi */
	justify-content: center; /* İçeriği yatayda ortalamak için eklendi */
	padding-top: 50px; /* Yazıları biraz aşağıya almak için eklendi */
}

.request-call-back-area::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 100%;
	background: rgba(255, 0, 0, 0.2); /* Kırmızı arka plan ve opaklık artırıldı */
  opacity: 88%;
	mix-blend-mode: multiply;
	z-index: -1;
}

.request-call-back-area.secondary::after {
	background: rgba(255, 0, 0, 0.7); /* Secondary için de aynı opak kırmızı */
}

.achivement-counter li {
	display: flex;
	margin-top: 50px;
	align-items: center;
}

.achivement-counter .fun-fact .counter {
	color: var(--white);
	font-size: 60px;
}

.achivement-counter .fun-fact .medium {
	color: var(--white);
	font-weight: 500;
}

.achivement-counter {
	display: inline-block;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	padding-left: 50px;
}

.achivement-counter li:first-child {
	margin: 0;
}

.achivement-counter li i {
	display: inline-block;
	font-size: 60px;
	margin-right: 20px;
	margin-top: 5px;
}

@media only screen and (max-width: 767px) {
  .request-call-back-area {
      text-align: center;
      min-height: 500px; /* Mobil için yükseklik biraz daha artırıldı */
  }
}

/* ============================================================== 
    # Process Two
=================================================================== */

.process-style-two-area {
	background-size: 60%;
	background-repeat: no-repeat;
	background-position: center;
}

.process-style-two .thumb {
	position: relative;
	z-index: 1;
	height: 300px;
	margin: auto;
}

.process-style-two .thumb::after {
	position: absolute;
	left: 50%;
	top: 50%;
	content: "";
	height: 100%;
	width: 100%;
	transform: translate(-50%, -50%) rotate(-30deg);
	background: url(../images/shapes/566.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-left: -6px;
	margin-top: 3px;
	z-index: -1;
	transition: transform 0.5s ease-in-out; /* Animasyon süresi ve tarzı */
}

.process-style-two .thumb:hover::after {
	transform: translate(-50%, -50%) rotate(0deg) scale(1.1); /* Fareyle gelindiğinde döndürme ve ölçekleme */
}


.process-style-two .thumb img {
	height: 100%;
	border-radius: 50%;
	padding: 36px;
}

.process-style-two .thumb span {
	position: absolute;
	right: 30px;
	top: 55px;
	font-size: 60px;
	font-weight: 900;
	-webkit-text-stroke: 1px var(--color-heading);
	color: transparent;
	font-family: sans-serif;
}

.process-style-two h3 {
	font-weight: 600;
	margin: 0;
	margin-top: 30px;
	border-bottom: 1px solid #e7e7e7;
  padding-bottom: 20px;
}

/* ============================================================== 
    # CHoose Us Style
=================================================================== */

.choose-us-style-one-area {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.choose-us-style-one-area::after {
	position: absolute;
	left: -10%;
	top: 0;
	content: "";
	height: 100%;
	width: 60%;
	background: var(--dark);
	z-index: -1;
	transform: skewX(-10deg);
}

.cover-bg {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 60%;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.choose-us-style-one-area .text-invisible {
  position: absolute;
  right: 0;
  bottom: 30px;
  font-size: 140px;
  text-transform: uppercase;
  z-index: 9;
  font-weight: 600;
  opacity: 0.5;
}

.list-item {
	position: relative;
	padding-left: 30px;
	z-index: 1;
}

.list-item li {
	margin-top: 35px;
}

.list-item li h4 {
	font-weight: 600;
	font-size: 22px;
}

.choose-us-style-one p {
	color: #d2d2d4;
	margin: 0;
}

.list-item::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 7px;
	background: var(--color-primary);
}

.choose-us-style-one {
	position: relative;
	z-index: 1;
}

.choose-us-style-one .shape-circle {
	position: absolute;
	left: -80px;
	top: -59px;
	z-index: -1;
}

.shape-left-top img {
  width: 100%;
  height: auto;
  object-fit: contain; 
  max-height: 100vh; 
}

.shape-left-top {
	max-width: 10%;
	position: absolute;
	left: 0;
	top: 0;
}

@media screen and (max-width: 480px) and (-webkit-device-pixel-ratio: 2),
       screen and (max-width: 480px) and (-webkit-device-pixel-ratio: 3) {
    .shape-left-top img {
        max-height: 15vh; 
        width: auto; 
        object-fit: contain; 
    }
}

@media only screen and (max-width: 767px) {
.choose-us-style-one-area .cover-bg {
  width: 100%;
  display: none;
}

.choose-us-style-one-area::after {
  transform: none;
  width: 100%;
  left: 0;
  opacity: 1;
}

.list-item::after {
  display: none;
}

.list-item {
  padding-left: 0;
}

.choose-us-style-one-area .text-invisible {
  font-size: 60px;
  right: auto;
  left: 10px;
  bottom: 0;
  opacity: 0.2;
  display: none;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.choose-us-style-one-area::after {
		width: 100%;
		transform: inherit;
		left: 0;
	}

	.choose-us-style-one-area .text-invisible {
		font-size: 100px;
		bottom: 20px;
	}

}
/*--------------------------------------------------------------
# Newsletter Two
--------------------------------------------------------------*/
.newsletter-two {
  position: relative;
  display: block;
  background-color: var(--thm-base);
  padding: 88px 0 79px;
  overflow: hidden;
  z-index: 1;
}

.newsletter-two__shape-1 {
  position: absolute;
  bottom: -70px;
  left: 0;
  opacity: 0.06;
  z-index: -1;
}

.newsletter-two__shape-1 img {
  width: auto;
}

.newsletter-two__left {
  position: relative;
  display: block;
}

.newsletter-two__sub-title {
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 16px;
}

.newsletter-two__title {
  font-size: 50px;
  color: white;
  font-weight: 600;
  line-height: 60px;
  margin-top: 10px;
}

.newsletter-two__right {
  position: relative;
  display: block;
  margin-top: 24px;
}

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

.newsletter-two__email-box {
  position: relative;
  display: block;
}

.newsletter-two__email-input-box {
  position: relative;
  display: block;
}

.newsletter-two__email-input-box input[type="email"] {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  background-color: white;
  border-radius: 25px;
  font-size: 13px;
  color: gray;
  padding-left: 30px;
  padding-right: 175px;
}

.newsletter-two__btn {
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 7px;
  border: none;
  background-color: var(--thm-base);
  color: white;
  font-size: 10px;
  line-height: 38px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 19px 45px;
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.newsletter-two__btn:hover {
  background-color: var(--thm-black);
}

.mc-form__response {
  margin-top: 15px;
  text-align: center;
}

.mc-form__response .success-message {
  color: #ffffff;
  background-color: rgba(0, 128, 0, 0.7);
  padding: 10px;
  border-radius: 25px;
  font-size: 14px;
}

.mc-form__response .error-message {
  color: #ffffff;
  background-color: rgba(255, 0, 0, 0.7);
  padding: 10px;
  border-radius: 25px;
  font-size: 14px;
}
/***
=====================================================
logo Mobile center
=====================================================
***/

@media screen and (max-width: 768px) {
  .main-header-one__bottom-left {
      justify-content: center !important;
      margin-left: 0 !important;
      width: 100%;
  }

  .logo-box {
      margin-left: 0 !important;
      text-align: center;
  }

  .logo-box a {
      display: flex;
      justify-content: center;
  }
}
/***
=====================================================
Header slider text 
=====================================================
***/
.custom-text {
  text-align: left;
  font-weight: bold;
  margin-left: 7px; /* Masaüstünde biraz sağda olacak */
  margin-top: 5px;
}

@media (max-width: 768px) { /* Ekran genişliği 768px'den küçükse */
  .custom-text {
  margin: 20px;
  margin-left: 1px; /* Mobilde daha sola kaydır */
  }
}


/* ============================================================== 
    # Reference List 
=============================================================== */
.reference-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.reference-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.logo-container {
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .logos-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .logos-grid {
      grid-template-columns: repeat(2, 1fr); 
  }
}

/* ============================================================== 
    # News Card
=============================================================== */
.news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch;
}

.news-card-container {
    position: relative;
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin: 20px 0;
    display: flex;
    flex-direction: column;
}

.news-card-container::after {
    content: "";
    display: block;
    width: 50%;
    height: 4px;
    background-color: var(--thm-base);
    margin: 10px auto 0 auto;
    border-radius: 2px;
    position: relative;
    transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.news-card-container:hover::after {
    width: 100%;
    background-color: var(--thm-base);
}

.news-card {
    height: 110%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: white;
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.news-card img {
    width: 100%;
    height: auto;
}

.news-content {
    padding: 15px;
    text-align: left;
    background-color: #fff;
    transition: background-color 0.3s ease-in-out;
    flex-grow: 1;
}

.news-card:hover .news-content {
    background-color: var(--thm-base);
}

.news-card-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease-in-out;
    line-height: 1.4;
}

.news-card:hover .news-card-title {
    color: white;
}

.news-card-title .icon {
    font-size: 24px;
    color: #333;
    margin-left: 10px;
}

.news-card:hover .news-card-title .icon {
    color: white;
}

.news-popup {
    display: none;
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9); 
    width: calc(3 * 420px + 80px);
    max-width: 1340px;
    height: 720px;
    background-color: white;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0; 
    transition: opacity 0.3s ease, transform 0.3s ease; 
}

.news-popup.visible {
    display: block;
    opacity: 1; 
    transform: translate(-50%, -50%) scale(1); 
}

.popup-content {
    text-align: left;
}

.popup-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.popup-content img {
    width: 300px;
    height: 250px;
    object-fit: cover; 
    margin-bottom: 10px; 
    transition: transform 0.3s ease-in-out;
}

.popup-content img.expanded {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.close-btn {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: var(--thm-base);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.close-btn:hover {
    background-color: var(--thm-base);
}

@media (max-width: 1024px) {
  .news-container {
    display: flex;
    width: 100%;
    justify-content: space-around;
    
}
  .news-card-container {
    flex: 1 1 auto;
    width: 100%;
    max-width: 65%;
  }

  .news-popup {
    width: 100%;
    max-width: 400px;
    height: auto;
    padding: 20px;
    overflow-y: auto; 
}
  .news-popup {
    width: 100%;
    max-width: 650px;
    height: auto;
    padding: 20px;
    overflow-y: auto; 
  }

  .popup-content {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    text-align: center;
  }

  .popup-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .popup-content img {
    width: calc(50% - 10px);
    height: auto;
    object-fit: cover;
    margin-bottom: 0;
  }

  .popup-content p {
    font-size: 14px;
    line-height: 1.4;
  }

  .close-btn {
    width: 100%;
    font-size: 14px;
    padding: 8px 16px;
  }
}


@media (max-width: 912px) {
  .news-container {
    display: flex; /* Flexbox kullanımı */
    flex-direction: column;
    align-items: center; /* Yatayda ortalama */
    justify-content: center; /* Dikeyde ortalama */
    max-width: 100%;
  }

  .news-card-container {
      flex: 1 1 100%;
      max-width: 85%;
  }
  .news-popup {
    width: 100%;
    max-width: 750px;
    height: auto;
    padding: 20px;
    overflow-y: auto; 
}

.popup-content {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    text-align: center;
}

.popup-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.popup-content img {
    width: calc(50% - 10px);
    height: auto;
    object-fit: cover;
    margin-bottom: 0;
}

.popup-content p {
    font-size: 14px;
    line-height: 1.4;
}

.close-btn {
    width: 100%;
    font-size: 14px;
    padding: 8px 16px;
}
}

@media (max-width: 820px) {
  .news-container {
    display: flex; /* Flexbox kullanımı */
    flex-direction: column;
    align-items: center; /* Yatayda ortalama */
    justify-content: center; /* Dikeyde ortalama */
    max-width: 100%;
  }

  .news-card-container {
      flex: 1 1 100%;
      max-width: 85%;
  }
  .news-popup {
    width: 100%;
    max-width: 600px;
    height: auto;
    padding: 20px;
    overflow-y: auto; 
}

.popup-content {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    text-align: center;
}

.popup-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.popup-content img {
    width: calc(50% - 10px);
    height: auto;
    object-fit: cover;
    margin-bottom: 0;
}

.popup-content p {
    font-size: 14px;
    line-height: 1.4;
}

.close-btn {
    width: 100%;
    font-size: 14px;
    padding: 8px 16px;
}
}

@media (max-width: 768px) {
    .news-container {
      display: flex; /* Flexbox kullanımı */
      flex-direction: column;
      align-items: center; /* Yatayda ortalama */
      justify-content: center; /* Dikeyde ortalama */
      max-width: 100%;
    }

    .news-card-container {
        flex: 1 1 100%;
        max-width: 85%;
    }
    .news-popup {
      width: 100%;
      max-width: 600px;
      height: auto;
      padding: 20px;
      overflow-y: auto; 
  }

  .popup-content {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      justify-content: center;
      text-align: center;
  }

  .popup-content h2 {
      font-size: 18px;
      margin-bottom: 10px;
  }

  .popup-content img {
      width: calc(50% - 10px);
      height: auto;
      object-fit: cover;
      margin-bottom: 0;
  }

  .popup-content p {
      font-size: 14px;
      line-height: 1.4;
  }

  .close-btn {
      width: 100%;
      font-size: 14px;
      padding: 8px 16px;
  }
}


@media (max-width: 540px) {
  .news-container {
    display: flex; /* Flexbox kullanımı */
    flex-direction: column;
    align-items: center; /* Yatayda ortalama */
    justify-content: center; /* Dikeyde ortalama */
    max-width: 100%;
  }

  .news-card-container {
      flex: 1 1 100%;
      max-width: 100%;
  }
  .news-popup {
      width: 100%;
      max-width: 520px;
      height: auto;
      padding: 20px;
      overflow-y: auto; 
  }

  .popup-content {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      justify-content: center;
      text-align: center;
  }

  .popup-content h2 {
      font-size: 18px;
      margin-bottom: 10px;
  }

  .popup-content img {
      width: calc(50% - 10px);
      height: auto;
      object-fit: cover;
      margin-bottom: 0;
  }

  .popup-content p {
      font-size: 14px;
      line-height: 1.4;
  }

  .close-btn {
      width: 100%;
      font-size: 14px;
      padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .news-popup {
      width: 90%;
      max-width: 360px;
      height: auto;
      padding: 20px;
      overflow-y: auto; 
  }

  .popup-content {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      justify-content: center;
      text-align: center;
  }

  .popup-content h2 {
      font-size: 18px;
      margin-bottom: 10px;
  }

  .popup-content img {
      width: calc(50% - 10px);
      height: auto;
      object-fit: cover;
      margin-bottom: 0;
  }

  .popup-content p {
      font-size: 14px;
      line-height: 1.4;
  }

  .close-btn {
      width: 100%;
      font-size: 14px;
      padding: 8px 16px;
  }
}

@media (max-width: 430px) {
  .news-container {
    display: flex; /* Flexbox kullanımı */
    flex-direction: column;
    align-items: center; /* Yatayda ortalama */
    justify-content: center; /* Dikeyde ortalama */
    max-width: 100%;
  }

  .news-card-container {
      flex: 1 1 100%;
      max-width: 100%;
 }

    .news-popup {
        width: 100%;
        max-width: 400px;
        height: auto;
        padding: 20px;
        overflow-y: auto; 
    }

    .popup-content {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
        text-align: center;
    }

    .popup-content h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .popup-content img {
        width: calc(50% - 10px);
        height: auto;
        object-fit: cover;
        margin-bottom: 0;
    }

    .popup-content p {
        font-size: 14px;
        line-height: 1.4;
    }

    .close-btn {
        width: 100%;
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Media query for screens smaller than 360px */
@media screen and (max-width: 360px) {
  .news-card-container {
      flex: 1 1 100%;
      max-width: 100%;
  }

  .news-container {
      flex-direction: column;
  }
}



/* ============================================================== 
    # Product list Faq
=================================================================== */
:root {
  --sev-primary-color: #e72122;
  --sev-secondary-color: #222222;
  --sev-light-bg: #f8f9fa;
  --sev-border-color: #e7e8e9;
  --sev-text-dark: #333333;
  --sev-text-light: #666666;
  --sev-white: #ffffff;
  --sev-transition: all 0.3s ease;
  --sev-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sev-products-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sev-products-title {
    text-align: center;
    position: relative;
    padding-top: 0;
    margin-top: 0;
}

.sev-products-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--sev-secondary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.sev-products-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--sev-primary-color);
}

.sev-products-list {
  margin-top: 30px;
}

.sev-product-box {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--sev-box-shadow);
  background-color: var(--sev-white);
  border: 1px solid var(--sev-border-color);
  transition: var(--sev-transition);
}

.sev-product-box:hover {
  transform: translateY(-5px);
}

.sev-product-title-bar {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background-color: var(--sev-white);
  border-bottom: 1px solid transparent;
  transition: var(--sev-transition);
  position: relative;
}

.sev-product-title-bar.sev-active {
  border-bottom: 1px solid var(--sev-border-color);
}

.sev-product-title-content {
  flex: 1;
}

.sev-product-title-bar h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--sev-secondary-color);
  margin-bottom: 10px;
  transition: var(--sev-transition);
}

.sev-product-title-bar.sev-active h3 {
  color: var(--sev-primary-color);
}

.sev-product-title-bar .sev-product-brief {
  font-size: 15px;
  color: var(--sev-text-light);
  font-weight: 500;
}

.sev-toggle-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--sev-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--sev-transition);
  margin-left: 20px;
  flex-shrink: 0;
}

.sev-product-title-bar.sev-active .sev-toggle-icon {
  background-color: var(--sev-primary-color);
  transform: rotate(180deg);
}

.sev-toggle-icon i {
  border-style: solid;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: var(--sev-transition);
}

.sev-product-title-bar.sev-active .sev-toggle-icon i {
  border-color: var(--sev-white);
}

.sev-product-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background-color: var(--sev-white);
}

.sev-product-detail-inner {
  padding: 30px;
  text-align: justify;
}

.sev-product-detail-inner p {
  margin-bottom: 15px;
  color: var(--sev-text-light);
  font-size: 16px;
  line-height: 1.8;
}

.sev-product-detail-inner strong {
  color: var(--sev-secondary-color);
  font-weight: 600;
}

.sev-product-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.sev-product-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.sev-product-table th {
  background-color: var(--sev-primary-color);
  color: var(--sev-white);
  font-weight: 600;
  text-align: center;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  font-size: 15px;
}

.sev-product-table td {
  padding: 10px 15px;
  text-align: center;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  color: var(--sev-text-dark);
}

.sev-product-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.sev-product-table tr:hover {
  background-color: #f3f3f3;
}

@media (max-width: 992px) {
  .sev-products-container {
    padding: 40px 15px;
  }
  .sev-products-title h2 {
    font-size: 30px;
  }
  .sev-product-title-bar {
    padding: 15px 20px;
  }
  .sev-product-detail-inner {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .sev-products-title h2 {
    font-size: 26px;
  }
  .sev-product-title-bar h3 {
    font-size: 18px;
  }
  .sev-product-title-bar .sev-product-brief {
    font-size: 14px;
  }
  .sev-toggle-icon {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 576px) {
  .sev-products-title h2 {
    font-size: 24px;
  }
  .sev-product-title-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .sev-toggle-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    margin-left: 0;
  }
  .sev-product-title-content {
    width: 85%;
  }
}

/***
=====================================================
Çerez Bildirimi
=====================================================
***/

#cookie-banner {
  display: none; /* Başlangıçta gizli olacak, JavaScript ile kontrol edilecek */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  padding: 10px 20px;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  color: white;
}

#cookie-banner p {
  margin: 0;
  padding-right: 20px;
}


#accept-cookies {
  white-space: nowrap;
}

@media (max-width: 768px) {
  #cookie-banner {
      flex-direction: column;
      text-align: center;
      z-index: 9999999999;


  }
  
  #cookie-banner p {
      margin-bottom: 10px;
      padding-right: 0;
      font-size: 14px;
  }
}


/***
=====================================================
End Css 
=====================================================
***/

