/*
		Theme Name : Crsine Theme Template
		Author : Udayraj
		Author URI : https://themeforest.net/user/udayraj
		Description: A default stylesheet for crsine master theme template.
*/

/*=======================================================================
							[Table of Contents]
=========================================================================
01. Typography
02. General
03. Page Header
04. Blog
05. Slider
06. Features
07. Image Box
08. Video Box
09. About
10. Call To Action
11. Client Caraousel
12. Service
13. FAQ
14. Gallery
15. Testimonial
16. Team
17. Error
18. Contact
19. Help
20. Online Booking
21. Product
22. Search Popup
23. Footer

-- Animations

*/

:root {
	--thm-font: "Lato", sans-serif;
	--heading-font: "Lato", sans-serif;
	--special-font: "Lato", sans-serif;
	--thm-color: #727a84;
	--thm-color-rgb: 114, 122, 132;
	--thm-gray: #eef3f7;
	--thm-gray-rgb: 238, 243, 247;
	--thm-base: #ef530f;
	--thm-base-rgb: 239, 83, 15;
	--thm-primary: #02489d;
	--thm-primary-rgb: 2, 72, 157;
	--thm-secondary: #3fbfef;
	--thm-secondary-rgb: 63, 191, 239;
	--thm-special: #5366c2;
	--thm-special-rgb: 83, 102, 194;
	--thm-black: #072040;
	--thm-black-rgb: 7, 32, 64;
	--thm-black2: #383a39;
	--thm-black2-rgb: 56, 58, 57;
	--thm-text-dark: #afc0d6;
	--thm-text-dark-rgb: 175, 192, 214;
	--thm-border: #e2e9f0;
	--thm-border-rgb: 226, 233, 240;
	scroll-behavior: auto;
}

html,
body {
		height: 100%;
		-moz-osx-font-smoothing: grayscale;
		-webkit-font-smoothing: antialiased;
		font-smoothing: antialiased;
}
/* ================================= */
/* 01. Typography                   */
/* ================================= */
body {  
		font-family: var(--thm-font);
		font-weight: 400;
		color: var(--thm-color);
		font-size: 16px;
		line-height: 1.55;
		-moz-osx-font-smoothing: grayscale;
		-webkit-font-smoothing: antialiased;
		font-smoothing: antialiased;
}

body.locked{
	overflow: hidden;
}

#page-section{
		overflow: hidden;
}
/*------------------------------------------------------------------*/
/*   IE10 in Windows 8 and Windows Phone 8 Bug fix
/*-----------------------------------------------------------------*/
@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }
h1, h2, h3, h4, h5, h6 { 
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	color: #2e304d;
	line-height: 1.25;
	margin-bottom: 18px;
	font-weight: 600;
}
h1 {
	font-size: 38px;
}
h2 {
	font-size: 30px;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 20px;
}
h5 {
	font-size: 16px;
}
h6 {
	font-size: 12px;
}
a
{
		color: #4577c3;
		-webkit-transition: all 0.5s ease;
		-ms-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		transition: all 0.5s ease;
		text-decoration: none;
}

p {
	margin-bottom: 20px;
}

/* ================================= */
/* 02. General                     */
/* ================================= */

ul,ol {
	margin: 0 0 10px 0;
	padding: 0 0 0 25px;
}

ul ul {
	list-style: circle;
}

ul.list-none
{
		list-style-type: none;
}

input,select,textarea {
	outline: 0;
}

a
{
	color: var(--thm-black);
}

a:hover
{
	color: var(--thm-base);
}

a:focus,
a:active
{
	outline: none;
}

pre {
	background-color: var(--thm-gray);
}

em, strong {
	color: var(--thm-black);
}

table {
    border-bottom: 1px solid var(--thm-border);
    border-left: 1px solid var(--thm-border);
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 14px;
    line-height: 2;
    margin: 0 0 20px;
    width: 100%;
}

table th, table td {
	text-align: center;
    border-top: 1px solid;
    border-right: 1px solid;
    padding: 8px;
    border-color: var(--thm-border);
}

#main-page {
	position: relative;
}

.pt-100 {
	padding-top: 100px;
}

.pb-100 {
	padding-bottom: 100px;
}

.mt-100 {
	margin-top: 100px;
}

.blink {
	position: absolute;
	display: none;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	opacity: 0.2;
	background-color: #fff;
	z-index: 999;
}

.blink.active {
	display: block;
}

.thm-btn {
	display: inline-block;
	vertical-align: middle;
	-webkit-appearance: none;
	border: none;
	outline: none !important;
	font-size: 16px;
	font-weight: 400;
	font-family: var(--thm-font);
	padding: 14px 30px;
	transition: 500ms;
	background-color: var(--thm-base);
	color: #fff;
	line-height: normal;
}

.thm-btn:not(.disabled):hover {
	color: var(--thm-base);
	background-color: #fff;
}

.thm-btn.disabled{
	background-color: rgba(0, 0, 0, 0.1);
	color: rgba(0, 0, 0, 0.25);
	cursor: default;;
}

.thm-btn i {
	margin-left: 10px;
}

.thm-btn.hover-black:hover
{
	background-color: var(--thm-black);
	color: #fff;
}

.thm-btn.hover-white:hover
{
	background-color: #fff;
	color: var(--thm-base);
}

.btn:focus
{
	box-shadow: none;
	outline: none;
}

.entry-title a {
	color: var(--thm-black);
}

.entry-footer span {
	margin-right: 10px;
}

.search-page article.post,
.search-page article.product {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--thm-border);
}


/* Section Heading */

.section-title {
	margin-top: -10px;
	margin-bottom: 50px;
}

.section-title__tagline {
	display: inline-flex;
	color: var(--thm-secondary);
	font-size: 18px;
	font-weight: 400;
	align-items: center;
	line-height: 1;
}

.section-title__tagline::after {
	content: '';
	background-color: currentColor;
	width: 56px;
	height: 2px;
	margin-left: 10px;
	margin-top: 3px;
}

.section-title__title {
	margin: 0;
	font-weight: 700;
	color: var(--thm-black);
	margin-bottom: -9px;
	font-size: 32px;
}

.section-title__summery
{
	font-size: 18px;
	line-height: 32px;
	font-weight: 400;
	color: var(--thm-color);
}

@media (min-width: 768px) {
	.section-title__title {
		font-size: 44px;
	}
}

/* Wordpress */

.wp-block-search__button {
	height: 70px;
	border-radius: 0;
	background-color: var(--thm-primary);
	color: #fff;
	transition: all 500ms ease;
	border: 0;
}

.wp-block-search__button:hover {
	background-color: var(--thm-base);
}

.wp-block-button.is-style-squared .wp-block-button__link,
.wp-block-button__link.wp-block-button.is-style-squared .wp-block-button__link{
	border-radius: 0;
}

.blog-details__content .wp-block-group__inner-container {
	padding: 30px;
}

.wp-block-group,
.wp-block-media-text {
	margin-bottom: 20px;
}

.wp-block-button {
	margin-bottom: 15px;
}

.wp-block-column p {
	margin-bottom: 0;
}

.wp-block-button__link {
	color: #fff;
}

.blocks-gallery-caption, .wp-block-embed figcaption, .wp-block-image figcaption, figcaption {
	font-size: 17px;
	margin-top: 20px;
	color: var(--thm-black);
	font-weight: 500;
}

.wp-block-separator {
	opacity: 1;
}

.post-page-numbers {
	position: relative;
	color: var(--thm-black);
	display: inline-block;
	background-color: var(--thm-gray);
	height: 40px;
	width: 40px;
	margin-right: 5px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
}

.post-page-numbers.current {
	background-color: var(--thm-primary);
	color: #fff;
}

.wp-block-cover p.wp-block-cover-text,
.wp-block-cover p.wp-block-cover-text strong {
	color: #fff;
}

.wp-block-cover.has-background-dim.alignwide {
	margin-bottom: 20px;
}

.blocks-gallery-caption {
	color: #555;
	font-size: 13px;
	text-align: center;
	margin-bottom: 20px;
	margin-top: 10px;
}

.wp-block-gallery.alignleft {
	margin-right: 20px;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table table tr th {
	color: var(--thm-black);
}

.wp-block-table table tr th,
.wp-block-table table tr td {
	padding: 15px;
	border: 1px solid var(--thm-border);
	text-align: center;
}

.wp-block-calendar {
	margin-bottom: 20px;
}

.wp-block-calendar nav {
	text-align: left;
}

.wp-block-calendar nav .wp-calendar-nav-next {
	float: right;
}

.widget_calendar .wp-calendar-table tr {
	border-bottom: 1px solid var(--thm-border);
}

.widget_calendar .wp-calendar-table tr th,
.widget_calendar .wp-calendar-table tr td {
	padding: 8px;
	text-align: center;
}
.widget_calendar .wp-calendar-table tr td a,
.widget_calendar .wp-calendar-nav-prev a,
.widget_calendar .wp-calendar-nav-next a {
	color: var(--thm-black);
	text-decoration: underline;
}

.widget_calendar .wp-calendar-table tr td#today {
	background-color: var(--thm-primary);
	color: #fff;
}

.widget_calendar .wp-calendar-table tr td#today a {
	color: #fff;
}

.wp-block-file a {
    border-bottom: 1px solid;
}

.wp-block-embed.alignfull iframe {
    width: 100%;
}

.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.alignright {
	clear: both;
}

.wp-caption-text {
	color: var(--thm-color);
	display: block;
	line-height: 1.5;
	padding: 0.5em 0;
	font-size: 14px;	
}

.gallery-caption {
	color: var(--thm-color);
	display: block;
	line-height: 1.5;
	padding: 0.5em 0;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

.format-chat .blog-content-inner p {
	padding: 15px;
	margin-right: 20px;
	background: var(--thm-gray);
}

.format-chat .blog-content-inner p:nth-child(2n) {
    margin-right: 0;
    margin-left: 24px;
    text-align: right;
}

.entry-content {
	position: relative;
	margin: 0;
}

.entry-content:before,
.entry-content:after,
.full-width-content:before,
.full-width-content:after {
	content: "";
    display: table;
    table-layout: fixed;
}

.entry-content:after
.full-width-content:after {
	clear: both;
}

/* Preloader */

.preloader {
	position: fixed;
	background-color: #fff;
	background-position: center center;
	background-repeat: no-repeat;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9991;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
}

.preloader__image {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

/* scroll to top */
.scroll-to-top {
	width: 45px;
	height: 45px;
	background: var(--thm-base);
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 99;
	text-align: center;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	visibility: hidden;
	opacity: 0;
	border-radius: 50%;
	transition: all 0.5s ease;
}

.scroll-to-top.active{
	opacity: 1;
	visibility: visible;
}

.scroll-to-top i {
	color: #ffffff;
	font-size: 18px;
	line-height: 45px;
}

.scroll-to-top:hover {
	background-color: var(--thm-black);
}

.scroll-to-top:hover i {
	color: #fff;
}

/* post paginations */
.post-pagination {
	margin-bottom: 0;
	margin-top: 60px;
	column-gap: 10px;
}

.post-pagination a,
.post-pagination span {
	display: flex;
	width: 45px;
	height: 45px;
	background-color: #eff2f6;
	align-items: center;
	justify-content: center;
	color: var(--thm-black);
	font-size: 16px;
	font-weight: 400;
	border-radius: 50%;
	transition: 500ms ease;
}

.post-pagination span.current
{
	background-color: var(--thm-black);
	color: #fff;
}

@media (min-width: 992px) {
	.post-pagination a,
	.post-pagination span {
		width: 60px;
		height: 60px;
		font-size: 16px;
	}
}

.post-pagination a:hover {
	background-color: var(--thm-base);
	color: #fff;
}

.post-pagination a.prev,
.post-pagination a.next {
	background-color: var(--thm-base);
	color: #fff;
}

@media (max-width:1199px)
{
	.elementor-section .elementor-container
	{
		-ms-flex-wrap:wrap !important;
		flex-wrap:wrap !important
	}
}

.archive-page
{
	position: relative;
	padding-top: 100px;
}

.search-page{
	position: relative;
	padding-top: 100px;
	padding-bottom: 70px;
}

.search-page.site-main .posts-navigation {
	margin: 0;
}

.select2-results__option.select2-results__option--highlighted {
	background-color: var(--thm-primary) !important;
}

/* ================================= */
/* 03. Page Header                     */
/* ================================= */

.page-header-breadcrumb {
	background-color: var(--thm-black);
	position: relative;
}

.page-header-breadcrumb::after {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../images/shapes/top-shadow.png);
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
}

.page-header-breadcrumb__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
}

.page-header-breadcrumb .container {
	position: relative;
	z-index: 10;
	padding-top: 155px;
	padding-bottom: 155px;
}

.page-header-breadcrumb.header-extra-space .container{
	padding-top: 315px;
}

@media (max-width: 991px) {
	.page-header-breadcrumb .container
	{
		padding-top: 110px;
		padding-bottom: 110px;
	}
	.page-header-breadcrumb.header-extra-space .container {
		padding-top: 250px;
	}
}

@media (max-width: 767px) {
	.page-header-breadcrumb.header-extra-space .container {
		padding-top: 195px;
	}
}

.page-header-breadcrumb .container h2 {
	margin: 0;
	color: #fff;
	font-weight: 700;
	font-size: 44px;
}

.page-header-breadcrumb .container p{
	position: relative;
	color: #ffffff;
	font-size: 20px;
	font-weight: 300;
	
}

.page-header-breadcrumb .container h2 + p{
	margin: 0;  
	margin-top: 10px;
}

@media (max-width: 480px) {
	.page-header-breadcrumb .container h2 {
		font-size: 32px;
	}
}

.thm-breadcrumb {
	display: flex;
	margin-bottom: 0;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 0;
	right: 12px;
	background-color: #fff;
	padding: 17.5px 40px;
	text-transform: capitalize;
}

@media(max-width: 575px) {
	.thm-breadcrumb {
		max-width: calc(100% - 24px);
		justify-content: flex-start;
	}
}

.thm-breadcrumb span {
	font-size: 16px;
	font-weight: 400;
	color: var(--thm-black);
	display: flex;
	align-items: center;
	margin: 0;
	transition: all 500ms ease;
}

.thm-breadcrumb span:last-child {
	overflow: hidden;
}

.thm-breadcrumb > span:not(:last-of-type) {
	margin-right: 10px;
}

@media(max-width: 499px) {
	.thm-breadcrumb span {
		font-size: 14px;
	}

	.thm-breadcrumb > span:not(:last-of-type) {
		margin-right: 5px;
	}
}

.thm-breadcrumb span a {
	color: inherit;
	margin: 0;
	transition: all 500ms ease;
}

.thm-breadcrumb .current-item {
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	white-space: normal;
	overflow: hidden;
}

.thm-breadcrumb span:hover span,
.thm-breadcrumb .current-item{
	color: var(--thm-secondary);
}


/* ================================= */
/* 04. Blog
/* ================================= */

.blog-card {
	position: relative;
	background-color: #fff;
	box-shadow: 0px 5px 60px 0px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin: 0;
}

.blog-card__image,
.blog-details__image {
	position: relative;
	overflow: hidden;
}

.blog-details__image {
	margin-bottom: 20px;
}

.blog-card__image  img {
	width: 100%;
	transform: scale(1);
	transition: transform 500ms ease;
}

.blog-card__image > a {
	display: flex;
	width: 100%;
	height: 100%;
	background-color: rgba(var(--thm-black-rgb), 0.9);
	position: absolute;
	top: 0;
	left: 0;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transform: translateY(-20%);
	transition: opacity 500ms ease, transform 500ms ease;
}

.blog-card__image > a::before, .blog-card__image > a::after {
	content: "";
	width: 32px;
	height: 2px;
	background-color: #fff;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.blog-card__image > a::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.blog-card:hover .blog-card__image > a {
	opacity: 1;
	transform: translateY(0);
}

.blog-card:hover .blog-card__image > img {
	transform: scale(1.05);
}

.blog-card__content {
	padding: 30px;
	position: relative;
}

.blog-card.sticky .blog-card__content:before {
	position: absolute;
	right: 0;
	top: 0;
	height: 48px;
	width: 48px;
	transform: rotate(90deg);
	content: "\f1fc";
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--thm-primary);
	color: #fff;
	font-family: Essential;
	font-size: 20px;
	line-height: 1;
	text-transform: none;
}

.blog-card__content::after {
	content: '';
	width: 100%;
	height: 2px;
	background-color: var(--thm-secondary);
	position: absolute;
	bottom: 0;
	left: 0;
	transform: scale(0, 1);
	transform-origin: left center;
	transition: transform 500ms ease;
}

.blog-card:hover .blog-card__content::after {
	transform: scale(1, 1);
	transform-origin: right center;
}

.blog-card__date {
	width: 69px;
	height: 69px;
	background-color: var(--thm-base);
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	line-height: 1.2em;
	position: absolute;
	bottom: 0%;
	left: 30px;
}

.blog-card__meta {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
	margin-top: -5px;
}

.blog-card__meta-item {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--thm-color);
}

.blog-card__meta-item i {
	color: var(--thm-secondary);
	font-size: 14px;
	margin-right: 5px;
	transition: all 500ms ease;
}

.blog-card__meta-item a {
	color: inherit;
	transition: all 500ms ease;
}

.blog-card__meta-item:hover i {
	color: var(--thm-black);
}

.blog-card__meta-item:hover a {
	color: var(--thm-primary);
}

.blog-card__meta-item + .blog-card__meta-item {
	margin-left: 15px;
}

@media(max-width: 1199px) {
	.blog-card__meta-item.cat-links {
		display: none;
	}
}

.blog-card__title {
	margin: 0;
	color: var(--thm-black);
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 16px;
}

.blog-card__title a {
	color: inherit;
	transition: all 500ms ease;
	line-height: 1.44;
}

.blog-card__title a:hover {
	color: var(--thm-base);
}

.news-page {
	padding-top: 80px;
}

@media (min-width: 992px) {
	.news-page {
		padding-top: 100px;
	}
}

.blog-content-inner .post-password-form input[type="password"] {
	width: 100%;
	height: 50px;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 16px;
	font-weight: 400;
	color: var(--thm-color);
	border: none;
	outline: none;
	display: block;
	background-color: var(--thm-gray);
	margin-bottom: 20px;
}

.blog-content-inner .post-password-form input[type="submit"] {
	height: 50px;
	padding: 0 15px;
	background-color: var(--thm-primary);
	color: #fff;
	border: 0;
	border-radius: 0;
	line-height: 50px;
	margin-left: 10px;
	transition: all 500ms ease;
}

.blog-content-inner .post-password-form input[type="submit"]:hover {
	background-color: var(--thm-base);
}

.blog-content-inner .entry-title {
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}	

.blog-card-list {
	position: relative;
}

.blog-card-list .row {
	--bs-gutter-y: 40px;
}

.blog-swiper__slider {
	overflow: hidden;
}

.blog-card__more {
	display: inline-flex;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	align-items: center;
	color: var(--thm-primary);
}

.blog-card__more i {
	margin-left: 7px;
	margin-top: 1px;
}

.blog-card__more:hover {
	color: var(--thm-base);
}

.blog-card__bottom
{
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--thm-border);
}
	
.blog-card__share {
	position: relative;
	display: flex;
	align-items: center;
	font-weight: 600;
	overflow: hidden;
}

.blog-card__share .blog-card__social-icon {
	position: relative;
	transform: translateX(100%);
	overflow: hidden;
	white-space: nowrap;
	transition: all 500ms ease;
}

.blog-card__share .blog-card__social-icon a {
	margin-right: 10px;
}

.blog-card__share .blog-card__social-icon a.facebook {
	color: #4267B2;
}

.blog-card__share .blog-card__social-icon a.twitter {
	color: #1DA1F2;
}

.blog-card__share .blog-card__social-icon a.linkedin {
	color: #0077b5;
}

.blog-card__share .blog-card__social-icon a.pinterest {
	color: #E60023;
}

.blog-card__share .blog-card__social-icon.active {
	transform: translateY(0);
}

.blog-card__share .blog-card__share-icon {
	width: 16px;
	height: 20px;
	position: relative;
	display: flex;
	color: var(--thm-primary);
	font-weight: 700;
	align-items: center;
	cursor: pointer;
	justify-content: center;
	background-color: #fff;
}

.news-page .post-pagination {
	margin-top: 50px;
}

.news-page .row,
.search-page:not(.faq-search-page) .row {
	--bs-gutter-y: 40px;
}

.news-page__load {
	margin-top: 60px;
}

.news-page__load .thm-btn {
	font-size: 18px;
	font-weight: 700;
	padding: 20px 48px;
}

.news-page__load .thm-btn:hover {
	background-color: var(--thm-black);
	color: #fff;
}


.blog-details {
	padding-top: 80px;
	padding-bottom: 40px;
}

@media (min-width: 1200px) {
	.blog-details {
		padding-top: 100px;
		padding-bottom: 50px
	}
}

.blog-details .main-content {
	margin-bottom: 50px;
}

.blog-details .main-content.col-lg-12 .gallery-columns-9 {
	grid-template-columns: repeat(5, 1fr);
}

.blog-details__content {
	position: relative;
	padding: 0;
}

.blog-details__content:after {
	clear: both;
	display: block;
	content: '';
}

.blog-details__meta {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-top: 1px solid var(--thm-border);
	padding-top: 30px;
	padding-bottom: 30px;
	margin-top: 25px;
	clear: both;
}

@media (min-width: 992px) {
	.blog-details__meta {
		flex-direction: row;
		justify-content: space-between;
	}
}

.blog-details__tags {
	margin: 0;
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	word-wrap: break-word;
}

.blog-details__tags span {
	color: var(--thm-black);
	font-weight: 700;
	font-size: 20px;
}

.blog-details__tags a {
	font-size: 18px;
	color: var(--thm-color);
	transition: all 500ms ease;
	margin-left: 5px;
}

.blog-details__tags a:hover {
	color: var(--thm-black);
}

.blog-details__social {
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-details__social a {
	display: flex;
	font-size: 16px;
	color: var(--thm-color);
	transition: all 500ms ease;
}

.blog-details__social a + a {
	margin-left: 30px;
}

.blog-details__social a:hover {
	color: var(--thm-base);
}


.blog-author {
	border: 1px solid var(--thm-border);
	padding: 30px;
	padding-bottom: 20px;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	margin-bottom: 40px;
}

@media (min-width: 992px) {
	.blog-author {
		flex-direction: row;
		text-align: left;
		padding-bottom: 30px;
	}
}

.blog-author__image {
	margin-bottom: 20px;
}

@media (min-width: 992px) {
	.blog-author__image {
		margin-right: 30px;
		margin-bottom: 0px;
	}
}

.blog-author h3 a {
	margin: 0;
	font-size: 20px;
	color: var(--thm-black);
	margin: 0;
	font-weight: 700;
	margin-bottom: 20px;
	transition: all 0.5s ease;
}

.blog-author h3 a:hover
{
	color: var(--thm-secondary);
}

.blog-author p {
	margin: 0;
}

.thgenius-social-tag-box
{
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 20px;
}

.blog-post-nav-box
{
		position: relative;
		padding-top: 20px;
		padding-bottom: 10px;
}

.blog-post-nav-box .blog-post-nav-inner
{
		margin-bottom: 20px;
		background-color: var(--thm-gray);
		padding: 30px;
		border: 1px solid var(--thm-border);
}

.blog-post-nav-box .blog-post-nav-inner a
{
	color: var(--thm-black);
	position: relative;
	word-wrap: break-word;
}

.blog-post-nav-box .blog-post-nav-inner a:hover
{
	color: var(--thm-base);
}

.blog-post-nav-box .blog-post-nav-inner .blog-post-nav-top
{
	position: relative;
}

.blog-post-nav-box .blog-post-nav-inner .blog-post-nav-top a
{
	display: inline-block;
	margin-bottom: 20px;
}

.blog-post-nav-box .blog-post-nav-inner .blog-post-nav-top:after
{
	content: '';
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--thm-secondary);
}

.blog-post-nav-box .next-post .blog-post-nav-inner .blog-post-nav-top:after
{
	left: auto;
	right: 0;
}

.blog-post-nav-box .blog-post-nav-inner h4
{
	margin-bottom: 0;
}

.blog-details__social .crsine-widget-social-media-links
{
	margin: 0;
	display: flex;
	padding: 0;
	margin-right: -10%;
}

@media(max-width: 991px) {
	.blog-details__social .crsine-widget-social-media-links {
		margin: 0
	}
}

.blog-details__social .crsine-widget-social-media-links li
{
	position: relative;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
}

.blog-details__social .crsine-widget-social-media-links li + li
{
	margin-left: 15px;
}

.blog-details__social .crsine-widget-social-media-links li a
{
	position: relative;
	display: block;
}

.comment-form .blog-comment__content-top h3,
.blog-comment .blog-comment__content-top h3 {
	margin: 0;
	font-size: 30px;
	color: var(--thm-black);
	font-weight: 700;
	margin-bottom: 25px;
}

label {
	margin-bottom: 10px;
}

textarea,
select,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"] {
	width: 100%;
	height: 70px;
	padding-left: 30px;
	padding-right: 30px;
	font-size: 16px;
	font-weight: 400;
	color: var(--thm-color);
	border: none;
	outline: none;
	display: block;
	background-color: var(--thm-gray);
	margin-bottom: 0;
}

input[type="color"] {
	padding: 0;
}

textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"] {
	box-shadow: none;
	color: var(--thm-black);
}

select {
	-moz-appearance: none;
	-webkit-appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1024" height="1024" viewBox="0 0 1024 1024"><path fill="rgb(34, 36, 41)" d="M540.1 776.847l472.32-473.63c15.466-15.518 15.44-40.642-0.080-56.134-15.518-15.48-40.656-15.44-56.134 0.080l-444.208 445.438-444.206-445.454c-15.48-15.518-40.602-15.558-56.122-0.080-7.78 7.766-11.67 17.94-11.67 28.114 0 10.148 3.864 20.282 11.59 28.034l472.308 473.632c7.436 7.474 17.556 11.668 28.1 11.668s20.652-4.206 28.102-11.668z"></path></svg>');
	background-repeat: no-repeat;
	background-position: right 30px top 50%;
	background-size: .65em auto;
}

.comment-form textarea {
	height: 170px;
	padding-top: 15px;
}

.comment-form::placeholder {
	color: inherit;
	opacity: 1;
}

.comment-form .thm-btn {
	font-size: 18px;
	padding: 20px 48px;
	border-radius: 0;
	background-color: var(--thm-base);
	color: #fff;
	border: 0;
}

.comment-form .thm-btn:hover {
	background-color: var(--thm-black);
	color: #fff;
}

.blog-author {
	border: 1px solid var(--thm-border);
	padding: 30px;
	padding-bottom: 20px;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	margin-bottom: 40px;
}

@media (min-width: 992px) {
	.blog-author {
		flex-direction: row;
		text-align: left;
		padding-bottom: 30px;
	}
}

.blog-author__image {
	margin-bottom: 20px;
}

@media (min-width: 992px) {
	.blog-author__image {
		margin-right: 30px;
		margin-bottom: 0px;
	}
}

.blog-author h3 {
	margin: 0;
	font-size: 20px;
	color: var(--thm-black);
	margin: 0;
	font-weight: 700;
	margin-bottom: 20px;
}

.blog-author p {
	margin: 0;
}

.comment-form {
	margin-top: -10px;
}

.comment-form .contact-one__form {
	margin-top: 0;
	padding: 0;
	margin: 0;
}

.blog-comment__box {
	border-bottom: 1px solid var(--thm-border);
	padding-bottom: 50px;
	margin-bottom: 50px;
}

@media (min-width: 1200px) {
	.blog-comment__box {
		display: flex;
	}
}

.blog-comment__box .blog-comment__image {
	margin-right: 40px;
}

.blog-comment__box img {
	margin-bottom: 20px;
	max-width: none;
}

@media (min-width: 992px) {
	.blog-comment__box img {
		margin-bottom: 0;
	}
}

.blog-comment__box .blog-comment__content-top h3
{
	margin: 0;
	font-size: 20px;
}

.blog-comment__box h3 a {
	display: block;
	color: var(--thm-black);
	margin: 0;
	font-weight: 700;
}

@media (min-width: 1200px) {
	.blog-comment__box h3 a {
		margin-bottom: 15px;
		margin-top: 0;
	}
}

.blog-comment__box p {
	margin: 0;
	font-size: 16px;
	line-height: 1.889;
}

@media (min-width: 1200px) {
	.blog-comment__box p {
		font-size: 17px;
	}
}

.blog-comment__box .blog-comment__content {
	position: relative;
	width: calc(100% - 180px);
}

@media(max-width: 1199px) {
	.blog-comment__box .blog-comment__content {
		width: 100%;
	}
}

.blog-comment__box .blog-comment__content-top {
	display: flex;
	align-items: baseline;
}

.blog-comment__box .blog-comment__content-top a.comment-time
{
	position: relative;
	top: -2px;
	line-height: 1;
}

.blog-comment__box .blog-comment__content-top span {
	color: var(--thm-base);
	font-size: 13px;
	line-height: 1;
	position: relative;
	margin-left: 10px;
	display: block;
	white-space: nowrap;
}

.blog-comment__box .blog-comment__content-top span i {
	margin-right: 6px;
}

.blog-comment__box .crsine-reply {
	margin-top: 20px;
	display: inline-block;
}

.blog-comment__box .crsine-reply a{
	font-size: 15px;
	line-height: 1.1;
	padding: 13px 24px;
	display: flex;
	background-color: var(--thm-base);
	transition: all 500ms ease;
	color: #fff;
	align-items: center;
}

.blog-comment__box .crsine-reply a i{
	margin-left: 7px;
	line-height: 1.1;
	position: relative;
	top: 1px;
}

@media (min-width: 1200px) {
	.blog-comment__box .crsine-reply {
		position: absolute;
		top: -15px;
		right: 0;
		margin-top: 0;
	}
}

.blog-comment__box .crsine-reply:hover {
	background-color: var(--thm-black);
	color: #fff;
}

.blog-comment__content {
	margin-top: 0px;
}

.blog-details .blog-card__meta {
	margin-top: 0;
}


@media (min-width: 992px) {
	.blog-details .blog-card__title {
		font-size: 38px;
	}
}

.comment-list
{
	position: relative;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.comment-list li{
	position: relative;
}

.blog-comment ol.children
{
	list-style-type: none;
	padding-left: 60px;
}
.crsine-author-box .crsine-author-info h4 a,
.comment-list .comment-body .comment-author .comment-meta .crsine-owner-box a
{
	font-style: normal;
	display: block;
	color: #181515;
	font-size: 20px;
	font-weight: 500;
}

.crsine-author-box .crsine-author-info h4 a:hover,
.comment-list .comment-body .comment-author .comment-meta .crsine-owner-box a:hover
{
	color: #4577c3;
}
#cancel-comment-reply-link {
	font-size: 15px;
	margin-left: 20px;
}
.blog-post-nav-box .next-post
{
	text-align: right;
}

/* ================================= */
/* 05. Slider
/* ================================= */

.main-slider {
	overflow: hidden;
	position: relative;
}

.main-slider .swiper-slide {
	position: relative;
	background-color: var(--thm-black);
}

.main-slider .swiper-slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/shapes/top-shadow.png);
	background-repeat: repeat-x;
	background-position: top center;
	z-index: 20;
}

.main-slider .swiper-slide.fixed-height
{
	display: flex;
	align-items: center;
	height: 750px;
}

@media (max-width: 1200px) {
	.main-slider .swiper-slide.fixed-height {
	 height: 600px;
	}
}

@media (max-width: 991px) {
	.main-slider .swiper-slide.fixed-height {
	 height: 550px;
	}
}

@media (max-width: 767px) {
	.main-slider .swiper-slide.fixed-height {
	 height: 500px;
	}
}

.main-slider .swiper-slide .container {
	position: relative;
	z-index: 30;
}

.main-slider .image-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.6;
	background-repeat: no-repeat;
	background-size: cover;
	transform: scale(1);
	transition: transform 7000ms ease;
}

.main-slider .container {
	padding-bottom: 100px;
	padding-top: 100px;
}

@media (min-width: 1200px) {
	.main-slider .container {
		padding-top: 190px;
		padding-bottom: 190px;
	}
}

.main-slider .swiper-slide.swiper-extra-space .container {
	padding-bottom: 100px;
	padding-top: 190px;
}

@media (min-width: 1200px) {
	.main-slider .swiper-slide.swiper-extra-space .container {
		padding-top: 330px;
		padding-bottom: 190px;
	}
}

.main-slider h2 {
	margin: 0;
	margin-bottom: 40px;
	color: #fff;
	font-weight: 700;
	opacity: 0;
	visibility: hidden;
	transform: translateY(120px);
	transition-delay: 1000ms;
	transition: transform 2000ms ease, opacity 2000ms ease;
	font-size: 48px;
	line-height: 58px;
}

@media (min-width: 768px) {
	.main-slider h2 {
		font-size: 58px;
		line-height: 68px;
	}
}

@media (min-width: 992px) {
	.main-slider h2 {
		font-size: 75px;
		line-height: 65px;
	}
}

@media (min-width: 1200px) {
	.main-slider h2 {
		font-size: 90px;
		line-height: 100px;
	}
}

.main-slider .thm-btn {
	font-size: 18px;
	padding: 20px 48px;
	opacity: 0;
	transform: translateY(100px);
	transition-delay: 2500ms;
	transition: transform 2000ms ease,
	opacity 2000ms ease,
	color 500ms ease,
	background 500ms ease;
}

.main-slider .thm-btn:hover {
	background-color: var(--thm-primary);
	color: #fff;
}

.main-slider .swiper-slide-active .image-layer {
	transform: scale(1.15);
}

.main-slider .swiper-slide-active .thm-btn,
.main-slider .swiper-slide-active p,
.main-slider .swiper-slide-active h2 {
	visibility: visible;
	opacity: 1;
	transform: translateY(0) translateX(0);
}

.main-slider__nav {
	width: 100%;
	max-width: 720px;
	padding-left: 15px;
	padding-right: 15px;
	position: absolute;
	top: 54%;
	left: 50%;
	z-index: 100;
	transform: translateY(-50%) translateX(-50%);
	display: flex;
	align-items: flex-end;
	flex-direction: column;
}

@media (min-width: 992px) {
	.main-slider__nav {
		max-width: 1320px;
	}
}

@media (max-width: 425px) {
	.main-slider__nav {
		display: none;
	}
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
	z-index: 100;
	width: 63px;
	height: 63px;
	background: none;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 50%;
	opacity: 1;
	margin: 0;
	text-align: center;
	transition: all 500ms ease;
}

@media (max-width: 991px) {
	.main-slider__nav .swiper-button-next,
	.main-slider__nav .swiper-button-prev {
		width: 48px;
		height: 48px;
		font-size: 18px;
	}
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
	opacity: 0.3;
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
	display: none;
}

.main-slider__nav .swiper-button-prev {
	margin-bottom: 10px;
}

@media (max-width: 991px) {
	.main-slider__nav .swiper-button-prev {
		margin-top: 10px;
	}
}

.main-slider__nav-two {
	width: 100%;
	max-width: 1320px;
	padding-left: 15px;
	padding-right: 15px;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 100;
	transform: translateY(-50%) translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 425px) {
	.main-slider__nav-two {
		display: none;
	}
}

.main-slider__nav-two .swiper-button-next,
.main-slider__nav-two .swiper-button-prev {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
	z-index: 100;
	width: 63px;
	height: 63px;
	background: none;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 50%;
	opacity: 1;
	margin: 0;
	text-align: center;
	transition: all 500ms ease;
}

@media (max-width: 991px) {
	.main-slider__nav-two .swiper-button-next,
	.main-slider__nav-two .swiper-button-prev {
		width: 48px;
		height: 48px;
		font-size: 18px;
	}
}

.main-slider__nav-two .swiper-button-next:hover,
.main-slider__nav-two .swiper-button-prev:hover {
	opacity: .3;
}

.main-slider__nav-two .swiper-button-next::after,
.main-slider__nav-two .swiper-button-prev::after {
	display: none;
}

.main-slider__nav-two .swiper-button-prev {
	margin-bottom: 10px;
}

@media (max-width: 991px) {
	.main-slider__nav-two .swiper-button-prev {
		margin-top: 10px;
	}
}

.main-slider-two .swiper-slide::before {
	background-image: none;
}

.main-slider-two .swiper-slide .container {
	padding-top: 100px;
	padding-bottom: 100px;
}

@media (min-width: 992px) {
	.main-slider-two .swiper-slide .container {
		padding-top: 150px;
		padding-bottom: 150px;
	}
}

@media (min-width: 1200px) {
	.main-slider-two .swiper-slide .container {
		padding-top: 200px;
		padding-bottom: 216px;
	}
}

@media (min-width: 1200px) {
	.main-slider-two h2 {
		font-size: 90px;
		line-height: 100px;
	}
}

.main-slider p {
	margin: 0;
	font-size: 20px;
	color: #fff;
	display: inline-block;
	margin-bottom: 20px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(120px);
	transition-delay: 1500ms;
	transition: transform 2000ms ease, opacity 2000ms ease;
}

.main-slider p::after {
	position: absolute;
	content: '';
	width: 35px;
	height: 2px;
	background-color: var(--thm-secondary);
	right: -45px;
	top: 50%;
	transform: translateY(-50%);
}

@media (min-width: 992px) {
	.main-slider p::after {
		width: 55px;
		right: -65px;
	}
}

@media (min-width: 992px) {
	.main-slider p {
		font-size: 24px;
	}
}

/* ================================= */
/* 06. Features
/* ================================= */

.feature-one__list {
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 35px;
	margin-bottom: 45px;
}

@media (min-width: 768px) {
	.feature-one__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.feature-one__list li {
	position: relative;
	padding-left: 56px;
	background-color: #fff;
	box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
	font-size: 18px;
	font-weight: 400;
	padding-top: 15px;
	padding-bottom: 15px;
	color: var(--thm-black);
	transition: all 0.5s ease;
}

.feature-one__list li > i {
	color: var(--thm-secondary);
	font-size: 16px;
	position: absolute;
	top: 50%;
	left: 30px;
	transition: all 0.5s ease;
	transform: translateY(-50%);
}

.feature-one__list li span
{
	position: relative;
	transition: all 0.5s ease;
}

/* Feature Counter */

.feature-one__counter {
	background-color: var(--thm-primary);
	padding: 30px;
	text-align: center;
}

@media (min-width: 1200px) {
	.feature-one__counter {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		text-align: left;
		padding: 35px;
	}
}

.feature-one__counter-icon {
	width: 115px;
	height: 115px;
	display: flex !important;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 62px;
	background-color: var(--thm-secondary);
	border-radius: 50%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	flex-shrink: 0;
}

@media (min-width: 1200px) {
	.feature-one__counter-icon {
		margin-bottom: 0;
		margin: 0;
	}
}

.feature-one__counter-title,
.feature-one__counter-prefix,
.feature-one__counter-postfix {
	margin: 0;
	font-size: 40px;
	font-weight: 400;
	display: inline-block;
	color: #fff;
	line-height: 1;
	margin-bottom: 20px;
	font-family: var(--thm-font) !important;
	vertical-align: middle;
}

.feature-one__counter-title span {
	font-family: inherit;
}

@media (min-width: 1200px) {
	.feature-one__counter-title,
	.feature-one__counter-prefix,
	.feature-one__counter-postfix {
		margin-bottom: 10px;
		font-size: 50px;
	}
}

.feature-one__counter-text {
	margin: 0;
	line-height: 1;
	color: var(--thm-text-dark);
	font-size: 20px;
	font-weight: 400;
}

@media (min-width: 1200px) {
	.feature-one__counter-content {
		margin-right: auto;
	}
}

/* Feature Two */

.feature-two {
	background-color: var(--thm-primary);
	background-image: url(../images/shapes/features-shape-1.png);
	background-repeat: no-repeat;
	background-position: top left;
	padding-top: 80px;
	padding-bottom: 80px;
}

@media (min-width: 1200px) {
	.feature-two {
		padding-top: 0;
		padding-bottom: 25px;
	}
}

.feature-two__image {
	position: relative;
	margin-bottom: 50px;
}

@media (min-width: 1200px) {
	.feature-two__image {
		margin-bottom: 0;
	}
}

.feature-two__image img {
	max-width: 100%;
}

@media (min-width: 1200px) {
	.feature-two__image img {
		max-width: none;
		margin-left: 70px;
	}
}

.feature-two__image-line-left {
	border-left: 1px dashed var(--thm-border);
	width: 0;
	height: calc(100% - 60px);
	top: 50%;
	transform: translateY(-50%);
	left: 15px;
	position: absolute;
}

.feature-two__image-line-right {
	border-right: 1px dashed var(--thm-border);
	width: 0;
	height: calc(100% - 60px);
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	position: absolute;
}

.feature-two__image-line-top {
	border-top: 1px dashed var(--thm-border);
	height: 0;
	width: calc(100% - 50px);
	left: 50%;
	transform: translateX(-50%);
	top: 15px;
	position: absolute;
}

.feature-two__image-line-bottom {
	border-bottom: 1px dashed var(--thm-border);
	height: 0;
	width: calc(100% - 50px);
	left: 50%;
	transform: translateX(-50%);
	bottom: 15px;
	position: absolute;
}

.feature-two__image-text {
	width: 172px;
	height: 172px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	color: var(--thm-black);
	position: absolute;
	flex-direction: column;
	background-color: #fff;
	padding: 15px;
}

.feature-two__image-text::after {
	content: '';
	width: 60px;
	height: 50px;
	background-color: #dfdfdf;
	position: absolute;
	top: 100%;
	left: 0;
	clip-path: polygon(0 0, 100% 100%, 100% 0);
	display: none;
}

@media (min-width: 1200px) {
	.feature-two__image-text::after {
		display: block;
	}
}

@media (min-width: 1200px) {
	.feature-two__image-text {
		top: 100px;
		left: 1px;
		transform: translateY(0%) translateX(0%);
	}
}

.feature-two__image-text span {
	font-size: 54px;
	color: var(--thm-base);
	display: block;
	line-height: 1;
}

.feature-two .section-title__title {
	color: #fff;
}

@media (min-width: 1200px) {
	.feature-two__list {
		padding-right: 35px;
	}
}

.feature-two__list-item {
	margin-bottom: 20px;
}

.feature-two__list-item:last-child {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.feature-two__list-item {
		display: flex;
		align-items: flex-start;
		padding: 30px;
		margin-bottom: 0;
		transition: all 500ms ease;
	}
	.feature-two__list-item:hover {
		background-color: rgba(var(--thm-black-rgb), 0.15);
	}
	.feature-two__list-item:hover .feature-two__list-icon {
		color: var(--thm-base);
	}
}

.feature-two__list-icon {
	font-size: 62px;
	transition: all 500ms ease;
	color: var(--thm-secondary);
}

@media (min-width: 768px) {
	.feature-two__list-icon {
		margin-right: 20px;
	}
}

.feature-two__list-title {
	margin: 0;
	color: #fff;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 10px;
	transition: all 500ms ease;
}

@media (min-width: 768px) {
	.feature-two__list-title {
		margin-top: -3px;
	}
}

.feature-two__list-text {
	margin: 0;
	color: var(--thm-text-dark);
}

@media (min-width: 1200px) {
	.feature-two__content {
		padding-top: 100px;
	}
}

/* Feature Progress Bar */

.feature-one__progress {
	margin-bottom: 95px;
}

.feature-one__progress-item {
	margin-bottom: 10px;
}

.feature-one__progress-item:last-child {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
	border-bottom: 0 !important;

}

.feature-one__progress-title {
	margin: 0;
	color: var(--thm-black);
	font-size: 20px;
	display: block;
	margin-bottom: 7px;
}

.feature-one__progress-bar {
	position: relative;
	width: 100%;
	height: 13px;
	background-color: #fff;
	border-radius: 6.5px;
}

.feature-one__progress-main {
	position: absolute;
	left: 0;
	height: 100%;
	top: 0;
	border-radius: inherit;
	background-color: var(--thm-base);
}

.feature-one__progress-count {
	font-size: 16px;
	font-weight: 400;
	color: var(--thm-color);
	position: absolute;
	bottom: calc(100% + 5px);
	right: 0;
}

/* ================================= */
/* 07. Image Box
/* ================================= */

.image-box {
	position: relative;
}

.image-box-inner {
	display: inline-block;
	position: relative;
}

.image-box.img-full .image-box-inner {
	display: block;
}

.image-box img{
	position: relative;
	width: 100% !important;
}

.stretched-img .image-box-inner img {
	max-width: none !important;
	width: auto !important;
}

@media(max-width: 1199px)
{
	.image-box img{
		width: auto !important;
	}
	
	.image-box.img-full img{
		width: 100% !important;
	}

	.stretched-img .image-box-inner img {
		max-width: 100% !important;
		width: 100% !important;
	}
}

.image-box.style-none img {
	clip-path: none;
}

.image-box.style-one img {
	clip-path: polygon(0 0, 100% 0, 92% 101%, 0% 101%);
}

.image-box.style-two img {
	clip-path: polygon(0 0, 97% 0, 100% 100%, 0% 100%);
	z-index: 2;
}

.image-box.style-two .image-box-inner::after{
	content: '';
	position: absolute;
	top: 30px;
	left: 0;
	right: -12px;
	bottom: 0;
	background-color: var(--thm-base);
	clip-path: polygon(0 0, 100% 0, 97% 100%, 0% 100%);
}

.image-box.shape .image-box-inner::before {
	content: '';
	position: absolute;
	background-color: var(--thm-base);
	width: 100px;
	height: 89px;
	clip-path: polygon(0 0, 100% 0, 70.5% 101%, 0% 101%);
	right: 0px;
	z-index: 10;
	-webkit-animation-name: shapeMover;
	animation-name: shapeMover;
	-webkit-animation-duration: 9s;
	animation-duration: 9s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.image-box.style-none .image-box-inner::before {
	right: -40px;
}

.image-box.shape.shape-top .image-box-inner::before{
	top: 40px;
}

.image-box.shape.shape-center .image-box-inner::before{
	top: 50%;
	transform: translateY(-50%);
}

.image-box.shape.shape-bottom .image-box-inner::before{
	bottom: 40px;
}

/* ================================= */
/* 08. Video Box
/* ================================= */

.video-one__content {
	background-color: var(--thm-base);
	text-align: center;
	position: absolute;
	top: 30px;
	left: 30px;
	right: 30px;
	bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

@media (min-width: 768px) {
	.video-one__content {
		top: auto;
		left: auto;
		bottom: 0;
		right: 0;
		width: 308px;
		height: 249px;
	}
}

@media (max-width: 767px) {
	.video-one__content {
		top: -30px;
		transform: translateY(-50%);
	}
}

.video-one__text {
	margin: 0;
	color: #fff;
	font-size: 22px;
	font-weight: 400;
	padding-left: 15px;
	padding-right: 15px;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
}

@media (min-width: 768px) {
	.video-one__text {
	margin-top: 0;
	text-align: left;
	max-width: 180px;
	font-size: 30px;
	font-weight: 400;
	padding-left: 0;
	padding-right: 0;
	line-height: 1.3;
	}
}

.video-one__content .lightbox-image {
	width: 80px;
	height: 80px;
	background-color: var(--thm-secondary);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	color: #fff;
	margin-left: auto;
	margin-right: auto;
	transition: all 500ms ease;
}

.video-one__content .lightbox-image:hover {
	background-color: var(--thm-black);
	color: #fff;
}

@media (min-width: 768px) {
	.video-one__content .lightbox-image {
		position: absolute;
		bottom: 100%;
		right: 100%;
		width: 162px;
		height: 147px;
		font-size: 30px;
	}
}

/* ================================= */
/* 09. About
/* ================================= */

/* About Three */

.about-three__counter {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 10px;
	margin: 0;
}

@media (min-width: 576px) {
	.about-three__counter {
		grid-template-columns: repeat(2, 1fr);
	}
}

.about-three__counter-item {
	background-color: var(--thm-gray);
	display: flex;
	align-items: center;
	padding-right: 20px;
	padding-left: 30px;
	padding-top: 30px;
	padding-bottom: 30px;
	justify-content: center;
}

@media (min-width: 576px) {
	.about-three__counter-item {
		justify-content: flex-start;
	}
}

.about-three__counter-item > i {
	font-size: 58px;
	color: var(--thm-base);
	display: block;
	margin-right: 20px;
	position: relative;
	top: 5px;
}

.about-three__counter-number,
.about-three__counter-prefix,
.about-three__counter-postfix {
	margin: 0;
	color: var(--thm-primary);
	font-size: 34px;
	line-height: 1;
	font-weight: 700;
	vertical-align: middle;
	display: inline-block;
	font-family: var(--thm-font) !important;
}

@media (min-width: 768px) {
	.about-three__counter-number,
	.about-three__counter-prefix,
	.about-three__counter-postfix {
		font-size: 44px;
	}
}

.about-three__counter-text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	color: var(--thm-color);
	line-height: 1;
	margin-top: 5px;
}

/* About Five */

.about-five__progress-wrap {
	display: flex;
	row-gap: 30px;
	flex-wrap: wrap;
}

@media (max-width: 767px) {
	.about-five__progress-wrap {
		flex-direction: column;
	}
}

.about-five__progress {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	padding-right: 30px;
}

.about-five__progress-box {
	position: relative;
	display: inline-block;
}

.about-five__progress-box canvas {
	transform: rotate(90deg);
	display: block;
}

.about-five__progress-box span {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	transform: translateY(-50%) translateX(-50%);
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	color: var(--thm-secondary);
}

.about-five__progress h3 {
	margin: 0;
	font-size: 18px;
	line-height: 30px;
	font-weight: 700;
	color: var(--thm-black);
	margin-left: 20px;
}


.about-four__image-text {
	background-color: var(--thm-secondary);
	padding: 50px;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
}

@media (min-width: 992px) {
	.about-four__image-text {
		position: absolute;
		bottom: 0;
		right: 0;
		width: 100%;
		max-width: 300px;
		padding: 20px 30px;
		text-align: left;
	}
}

@media (min-width: 1200px) {
	.about-four__image-text {
		max-width: 335px;
		padding: 40px 50px;
		right: -30px;
	}
}

.about-four__image-text a {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	transition: all 500ms ease;
}

.about-four__image-text a:hover {
	color: var(--thm-primary);
}

@media (min-width: 1200px) {
	.about-four__image-text a {
		margin-top: 15px;
		display: inline-block;
	}
}

/* ================================= */
/* 10. Call To Action
/* ================================= */

.call-to-action {
	background-color: var(--thm-base);
	padding-top: 80px;
	padding-bottom: 80px;
}

@media (min-width: 992px) {
	.call-to-action {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

.call-to-action .container {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
}

@media (min-width: 992px) {
	.call-to-action .container {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

.call-to-action__title {
	margin: 0;
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 40px;
}

@media (min-width: 768px) {
	.call-to-action__title {
		font-size: 38px;
	}
}

@media (min-width: 992px) {
	.call-to-action__title {
		font-size: 44px;
		margin-bottom: 0;
	}
}

.call-to-action .thm-btn {
	font-size: 18px;
	padding: 20px 35px;
	background-color: var(--thm-primary);
	white-space: nowrap;
}

.call-to-action .thm-btn:hover {
	background-color: var(--thm-black);
	color: #fff;
}

/* Call to action 2 */

.call-to-action__home-two {
	background-color: var(--thm-black);
	padding-bottom: 230px;
}

@media (min-width: 992px) {
	.call-to-action__home-two {
		padding-bottom: 250px;
	}
}

.call-to-action__home-two #jarallax-container-0 {
	background-color: var(--thm-black);
	mix-blend-mode: luminosity;
	opacity: 0.3;
}

.call-to-action__home-two .jarallax-img {
	object-position: 50% 0% !important;
}

.call-to-action__home-two .thm-btn {
	background-color: var(--thm-base);
}

.call-to-action__home-two .thm-btn:hover {
	background-color: #fff;
	color: var(--thm-black);
}

.call-to-action__home-two .call-to-action__title{
	max-width: 660px;
}

.call-to-action-two {
	background-color: var(--thm-primary);
	position: relative;
}

.call-to-action-two__image {
	position: absolute;
	opacity: 0.1;
	mix-blend-mode: luminosity;
	top: 0;
	right: 0;
}

@media (min-width: 1200px) {
  .call-to-action-two #jarallax-container-0 {
	width: 55% !important;
	right: 0 !important;
	left: auto !important;
  }
}

.call-to-action-two [class*=col-]:nth-child(odd) {
  background-color: var(--thm-secondary);
  clip-path: none;
}

@media (min-width: 1200px) {
  .call-to-action-two [class*=col-]:nth-child(odd) {
	clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
  }
}

.call-to-action-two .row {
  --bs-gutter-x: 0;
}

.call-to-action-two .container-fluid {
  padding: 0;
}

.call-to-action-two__box {
  text-align: center;
  padding-top: 65px;
  padding-bottom: 80px;
  position: relative;
}

@media (min-width: 992px) {
  .call-to-action-two__box {
	padding-top: 85px;
	padding-bottom: 100px;
  }
}

.call-to-action-two .jarallax-img {
  opacity: 0.1;
  mix-blend-mode: luminosity;
}

.call-to-action-two .thm-btn {
  font-size: 18px;
  padding: 20px 48px;
}

.call-to-action-two .thm-btn:hover {
  background-color: var(--thm-black);
  color: #fff;
}

.call-to-action-two__title {
  margin: 0;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  max-width: 556px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

@media (min-width: 1200px) {
  .call-to-action-two__title {
	font-size: 44px;
  }
}

/* ================================= */
/* 11. Client Caraousel
/* ================================= */

.client-carousel {
	padding-top: 80px;
	padding-bottom: 80px;
}

@media (min-width: 1200px) {
	.client-carousel {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

.client-carousel .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.client-carousel img{
max-width: 100%;
}

.client-carousel img.hover-enable {
	transition: 500ms;
	opacity: 0.3;
}

.client-carousel img.hover-enable:hover {
	opacity: 0.8;
}

/* ================================= */
/* 12. Service
/* ================================= */

.service-card {
	position: relative;
	padding: 0 20px;
	border: 1px solid var(--thm-border);
	background-color: #fff;
	margin-bottom: 100px;
}

.service-card__image {
	position: relative;
	overflow: hidden;
	top: -20px;
}

.service-card__image > img {
	position: relative;
	width: 100%;
	transition: transform 500ms ease;
	transform: scale(1);
}

.service-card__image > a {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 10px;
	background-color: rgba(var(--thm-black-rgb), 0.9);
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 36px;
	color: #fff;
	transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-30%);
}

.service-card__image > a i {
	color: inherit;
	transition: all 500ms ease;
}

.service-card__image > a i:hover {
	color: var(--thm-base);
}

.service-card:hover .service-card__image > img {
	transform: scale(1.05);
}

.service-card:hover .service-card__image > a {
	visibility: visible;
	transform: translateY(0%);
	opacity: 1;
}

.service-card__content {
	text-align: center;
	position: relative;
	padding: 0 30px 50px;
}

.service-card__icon {
	width: 103px;
	height: 103px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 62px;
	color: var(--thm-base);
	background-color: #fff;
	border-radius: 50%;
	margin-left: auto;
	margin-right: auto;
	top: -71.5px;
	margin-bottom: -71.5px;
	position: relative;
	transition: all 500ms ease;
}

.service-card:hover .service-card__icon {
	background-color: var(--thm-base);
	color: #fff;
}

.service-card__title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	color: var(--thm-black);
	margin-top: 5px;
	margin-bottom: 15px;
}

.service-card__title a {
	color: inherit;
	transition: all 500ms ease;
}

.service-card__title:hover {
	color: var(--thm-base);
}

.service-card__text {
	margin: 0;
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
}

.service-card__more {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: var(--thm-border);
	width: 63px;
	height: 63px;
	border-radius: 50%;
	transition: all 500ms ease;
	position: absolute;
	bottom: -31.5px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--thm-black);
}

.service-card:hover .service-card__more {
	background-color: var(--thm-secondary);
	color: #fff;
}

.service-card__more i {
	color: inherit;
	font-size: 20px;
}

.service-details {
	padding-top: 80px;
	padding-bottom: 40px;
}

@media (min-width: 992px) {
	.service-details {
		padding-top: 100px;
		padding-bottom: 50px;
	}
}

.service-details .main-content {
	margin-bottom: 50px;
}

.service-details__icon {
	width: 103px;
	height: 103px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 62px;
	border-radius: 50%;
	position: relative;
	transition: all 500ms ease;
	background-color: var(--thm-base);
	color: #fff;
	margin-top: -51.5px;
	margin-left: 30px;
	margin-bottom: 10px;
}

.service-details__icon:hover {
	background-color: var(--thm-black);
	color: #fff;
}

.service-details__title {
	margin: 0;
	font-weight: 700;
	font-size: 36px;
	color: var(--thm-black);
	margin-bottom: 32px;
}

blockquote,
blockquote.wp-block-quote,
blockquote.wp-block-quote.is-style-large:not(.is-style-plain),
.service-details__blockqoute {
	background-color: var(--thm-gray);
	padding: 45px 45px 45px 90px;
	position: relative;
	margin: 0;
	margin-bottom: 40px;
}

blockquote::before,
blockquote.wp-block-quote::before,
.service-details__blockqoute::before {
	content: '\f10d';
	font-size: 40px;
	color: var(--thm-base);
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	top: 40px;
	left: 35px;
}

blockquote p,
.wp-block-pullquote blockquote p,
blockquote.wp-block-quote p,
.service-details__blockqoute p,
blockquote em,
blockquote a {
	margin: 0;
	color: var(--thm-black);
	font-weight: 700;
	font-style: italic;
	font-size: 20px;
	line-height: 34px;
	position: relative;
}

blockquote cite,
blockquote.wp-block-quote cite,
.service-details__blockqoute cite {
	color: var(--thm-black);
	margin-top: 10px;
	display: inline-block;
}

.wp-block-pullquote {
	text-align: center;
	border-bottom-style: solid;
	border-top-style: solid;
	color: currentColor;
	border-color: currentColor;
	position: relative;
	margin-bottom: 20px;
}

.wp-block-pullquote.is-style-solid-color blockquote,
.wp-block-pullquote blockquote {
	background-color: transparent;
}

.wp-block-pullquote blockquote {
	padding: 0;
	margin: 0;
}

.wp-block-pullquote blockquote:before {
	display: none;
}

.service-details .faq-one__call {
	margin-top: 30px;
}

/* ================================= */
/* 13. FAQ
/* ================================= */
@media(min-width: 992px)
{
	.faq-one {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}
.faq-one {
		padding-top: 80px;
		padding-bottom: 80px;
}
.thm-accordion {
	margin-top: -10px;
}

.thm-accordion__item {
	border: 1px solid var(--thm-border);
	margin-top: 10px;
}

.thm-accordion__title {
	font-size: 18px;
	color: var(--thm-black);
	position: relative;
	padding: 20px 30px;
	cursor: pointer;
	transition: all 500ms ease;
}

.thm-accordion__icon {
	width: 14px;
	height: 14px;
	color: var(--thm-secondary);
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
}

.thm-accordion__icon::before {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-color: currentColor;
	transition: all 500ms ease;
}

.thm-accordion__icon::after {
	content: '';
	width: 2px;
	height: 100%;
	background-color: currentColor;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: all 500ms ease;
}

.thm-accordion__content {
	font-size: 16px;
	line-height: 32px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 25px;
	margin-top: -10px;
}
.thm-accordion__content p {
	margin: 0;
}

.thm-accordion__item.active-item {
	box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.thm-accordion__item.active-item .thm-accordion__title {
	color: var(--thm-base);
}

.thm-accordion__item.active-item .thm-accordion__icon {
	color: var(--thm-black);
}

.thm-accordion__item.active-item .thm-accordion__icon::after {
	opacity: 0;
}

/* ================================= */
/* 14. Gallery                   */
/* ================================= */


.gallery-one {
	padding-top: 80px;
	padding-bottom: 80px;
}

@media (min-width: 992px) {
	.gallery-one {
		padding-bottom: 100px;
		padding-top: 100px;
	}
}

.gallery-one .row {
	margin-top: -30px;
}

.gallery-one .row [class*=col-] {
	margin-top: 30px;
}

.gallery-one__item {
	position: relative;
	overflow: hidden;
}

.gallery-one__item > img {
	width: 100%;
	transform: scale(1);
	transition: transform 500ms ease;
}

.gallery-one__item > a {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 10px;
	background-color: rgba(var(--thm-black-rgb), 0.9);
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	row-gap: 30px;
	font-size: 36px;
	color: #fff;
	transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-30%);
}

.gallery-one__item > a i {
	color: inherit;
	transition: all 500ms ease;
}

.gallery-one__item > a i:hover {
	color: var(--thm-base);
}

.gallery-one__item:hover > img {
	transform: scale(1.05);
}

.gallery-one__item:hover > a {
	visibility: visible;
	transform: translateY(0%);
	opacity: 1;
}

.gallery-one__item > a span{
	position: relative;
	font-size: 22px;
	transition: all  500ms ease;
}

.gallery-one__item > a span:hover
{
	color: var(--thm-base);
}

.post-filter {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
	flex-wrap: wrap;
	margin-top: -10px;
	margin-left: -10px;
}

.post-filter__item {
	font-size: 16px;
	font-weight: 700;
	color: var(--thm-black);
	margin-top: 10px;
	margin-left: 10px;
	background-color: var(--thm-gray);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12.5px 28px;
	transition: all 500ms ease;
	cursor: pointer;
}

.post-filter__item:hover, .post-filter__item.active {
	background-color: var(--thm-base);
	color: #fff;
}

.gallery-two {
	padding-top: 80px;
	padding-bottom: 80px;
	padding-left: 30px;
	padding-right: 30px;
}

@media (min-width: 992px) {
	.gallery-two {
		padding-top: 100px;
		padding-bottom: 100px;
		padding-left: 50px;
		padding-right: 50px;
	}
}

@media (min-width: 1440px) {
	.gallery-two {
		padding-left: 140px;
		padding-right: 140px;
	}
}

.gallery-two__home {
	padding-top: 0;
	padding-bottom: 0;
}

.gallery-two__home-title {
	background-color: var(--thm-secondary);
	text-align: center;
	position: relative;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	padding-top: 60px;
	padding-bottom: 60px;
	margin-bottom: 50px;
}

.gallery-two__home-title::before {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 24px 0 24px;
	border-color: #3fc0ef transparent transparent transparent;
}

@media (min-width: 992px) {
	.gallery-two__home-title {
		font-size: 38px;
	}
}

@media (min-width: 1200px) {
	.gallery-two__home-title {
		font-size: 44px;
	}
}

/* ================================= */
/* 15. Testimonial
/* ================================= */

.testimonials-one {
	padding-left: 12px;
	padding-right: 12px;
	margin-bottom: 15px;
}

@media (min-width: 992px) {
	.testimonials-one {
		margin-bottom: 30px;
	}
}

.testimonials-one__boxed {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	max-width: 1370px;
	background-color: var(--thm-primary);
	background-image: url(../images/shapes/testimonials-bg-1-1.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
}

@media (min-width: 992px) {
	.testimonials-one__boxed {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

.testimonials-one__boxed.shadow-yes::before {
	content: '';
	position: absolute;
	top: 30px;
	background-color: var(--thm-secondary);
	z-index: -1;
	left: 15px;
	right: 15px;
	bottom: -15px;
}

@media (min-width: 992px) {
	.testimonials-one__boxed.shadow-yes::before {
		left: 30px;
		right: 30px;
		bottom: -30px;
	}
}

.testimonials-one__thumb {
	width: 100%;
	max-width: max-content;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 17px;
}

.testimonials-one__thumb .swiper-slide img {
	width: 100%;
	border-radius: 50% ;
	border: 4px solid #fff ;
	transform: scale(0.8);
	cursor: pointer;
	transition: transform 500ms ease, border 500ms ease;
}

.testimonials-one__thumb .swiper-slide-thumb-active img {
	transform: scale(1);
	border-color: var(--thm-base);
}

.testimonials-one__carousel {
	text-align: center;
}

.testimonials-one__text {
	margin: 0;
	color: #fff;
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
	font-size: 20px;
	line-height: 38px;
}

@media (min-width: 992px) {
	.testimonials-one__text {
		font-size: 24px;
		line-height: 46px;
	}
}

.testimonials-one__name {
	margin: 0;
	color: #fff;
	font-weight: 700;
	margin-top: 40px;
	margin-bottom: 5px;
	margin-top: 20px;
}

@media (min-width: 992px) {
	.testimonials-one__name {
		font-size: 24px;
	}
}

.testimonials-one__designation {
	margin: 0;
	display: block;
	line-height: 1;
	font-size: 16px;
	font-weight: 600;
	color: var(--thm-secondary);
}
/* ================================= */
/* 16. Team
/* ================================= */

.team-card__row {
	--bs-gutter-x: 45px;
}

.team-card {
	position: relative;
	margin-left: 20px;
	margin-bottom: 30px;
	margin-bottom: 30px;
}

.team-card__image {
	position: relative;
}

.team-card__image:before {
	content: '';
	position: absolute;
	left: 8px;
	top: 20px;
	width: 100%;
	bottom: 0;
	background-color: var(--thm-base);
	clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.team-card__image:after {
	content: '';
	position: absolute;
	left: -20px;
	bottom: -20px;
	height: 100px;
	width: 30px;
	background-color: transparent;
	border: 1px solid var(--thm-black);
	border-right: 0;
	border-top: 0;
}

.team-card__image > img {
	position: relative;
	clip-path: polygon(0 0, 97% 0, 100% 100%, 0% 100%);
}

@media(max-width: 1199px) {
	.team-card__image > img{
		width: 100%
	}
}

.team-card__social {
	position: absolute;
	color: #fff;
	left: 20px;
	bottom: 20px;
	overflow: hidden;
}

.team-card__social > i {
	height: 36px;
	width: 36px;
	line-height: 36px;
	text-align: center;
	background-color: var(--thm-base);
	color: #fff;
	position: relative;
	display: inline-block;
	font-weight: 600;
}

.team-card__social-inner {
	bottom: 100%;
	transform: translateY(calc(100% + 2px));
	background-color: var(--thm-black);
	padding: 10px;
	overflow: hidden;
	transition: all 500ms ease
}

.team-card:hover .team-card__social-inner {
	transform: translateY(0);
}

.team-card__social a {
	color: #fff;
	font-size: 16px;
	transition: all 500ms ease;
	display: block;
}

.team-card__social a + a {
		margin-top: 10px;
}

.team-card__social a:hover {
	color: var(--thm-base);
}

.team-card__content {
	position: relative;
	padding-top: 40px;
}

.team-card__content h3 {
	margin: 0;
	font-size: 20px;
	color: var(--thm-black);
	font-weight: 700;
	margin-bottom: 10px;
}

.team-card__content p {
	margin: 0;
	color: var(--thm-color);
	font-size: 16px;
}


/* ================================= */
/* 17. Error
/* ================================= */

.error-section {
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
	position: relative;
}

@media (min-width: 992px) {
	.error-section {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

.error-section .image-layer {
	position: absolute;
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	height: 376px;
	background-repeat: no-repeat;
	background-size: cover;
	background-size: 100%;
	width: 100%;
}

@media (min-width: 992px) {
	.error-section .image-layer {
		top: 100px;
		width: 938px;
	}
}

.error-section .container {
	position: relative;
	z-index: 10;
}

.error-section__title {
	margin: 0;
	font-weight: 700;
	line-height: 1;
	color: var(--thm-primary);
	margin-top: 40px;
	font-size: 100px;
	margin-bottom: 10px;
}

@media (min-width: 768px) {
	.error-section__title {
		font-size: 180px;
	}
}

@media (min-width: 992px) {
	.error-section__title {
		font-size: 240px;
	}
}

@media (min-width: 1200px) {
	.error-section__title {
		font-size: 400px;
		margin-bottom: 52px;
	}
}

.error-section__subtitle {
	margin: 0;
	color: var(--thm-black);
	font-weight: 700;
	font-size: 30px;
}

@media (min-width: 768px) {
	.error-section__subtitle {
		font-size: 36px;
	}
}

@media (min-width: 1200px) {
	.error-section__subtitle {
		font-size: 44px;
	}
}

.error-section__text,
.search-section__text {
	margin: 0;
	font-weight: 400;
	color: var(--thm-color);
	font-size: 20px;
	margin-top: 7px;
}

.error-section .search-form,
.no-results .widget-search .blog-search-form {
	width: 100%;
	max-width: 470px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	margin-top: 30px;
}

.no-results .widget-search .blog-search-form {
	margin-left: 0;
}

.error-section .search-form input[type=search],
.error-section .search-form input[type=text],
.no-results .widget-search .blog-search-form input[type=search],
.no-results .widget-search .blog-search-form input[type=text] {
	width: 100%;
	background-color: var(--thm-gray);
	height: 84px;
	border: none;
	outline: none;
	display: block;
	font-weight: 600;
	font-size: 16px;
	color: var(--thm-color);
	padding-left: 30px;
	padding-right: 30px;
}

.error-section .search-form button[type=submit],
.no-results .widget-search .blog-search-form button[type=submit] {
	padding: 0;
	width: auto;
	border: none;
	outline: none;
	font-size: 24px;
	position: absolute;
	top: 50%;
	background-color: var(--thm-gray);
	transform: translateY(-50%);
	right: 30px;
	color: var(--thm-primary);
	transition: all 500ms ease;
}

.error-section .search-form button[type=submit]:hover {
	color: var(--thm-secondary);
}

.error-section .thm-btn {
	font-size: 18px;
	padding: 20px 48px;
	margin-top: 20px;
}

.error-section .thm-btn:hover {
	background-color: var(--thm-black);
	color: #fff;
}

/* ================================= */
/* 18. Contact
/* ================================= */

.contact-one__form textarea,
.contact-one__form select,
.contact-one__form input[type=text],
.contact-one__form input[type=email] {
	width: 100%;
	height: 70px;
	padding-left: 30px;
	padding-right: 30px;
	font-size: 16px;
	font-weight: 400;
	color: var(--thm-color);
	border: none;
	outline: none;
	display: block;
	background-color: var(--thm-gray);
	margin-bottom: 20px;
}

.contact-one__form textarea:focus,
.contact-one__form select:focus,
.contact-one__form input[type=text]:focus,
.contact-one__form input[type=email]:focus{
	box-shadow: none;
}

.contact-one__form select {
	-moz-appearance: none;
	-webkit-appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1024" height="1024" viewBox="0 0 1024 1024"><path fill="rgb(34, 36, 41)" d="M540.1 776.847l472.32-473.63c15.466-15.518 15.44-40.642-0.080-56.134-15.518-15.48-40.656-15.44-56.134 0.080l-444.208 445.438-444.206-445.454c-15.48-15.518-40.602-15.558-56.122-0.080-7.78 7.766-11.67 17.94-11.67 28.114 0 10.148 3.864 20.282 11.59 28.034l472.308 473.632c7.436 7.474 17.556 11.668 28.1 11.668s20.652-4.206 28.102-11.668z"></path></svg>');
	background-repeat: no-repeat;
	background-position: right 30px top 50%;
	background-size: .65em auto;
}

.contact-one__form textarea {
	height: 170px;
	padding-top: 15px;
}

.contact-one__form::placeholder {
	color: inherit;
	opacity: 1;
}

.contact-one__form .thm-btn {
	font-size: 18px;
	padding: 20px 48px;
	border-radius: 0;
}

.contact-one__form .thm-btn:not(.disabled):hover{
	background-color: var(--thm-black);
	color: #fff;
}

/* ================================= */
/* 19. Help
/* ================================= */

.help-search {
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
}

@media (min-width: 992px) {
	.help-search {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

.help-search__title {
	margin: 0;
	font-size: 44px;
	font-weight: 700;
	color: var(--thm-black);
}

.help-search .search-form {
	width: 100%;
	max-width: 830px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	text-align: left;
	margin-top: 40px;
}

.help-search .search-form input[type=search],
.help-search .search-form input[type=text] {
	width: 100%;
	background-color: var(--thm-gray);
	height: 84px;
	border: none;
	outline: none;
	display: block;
	border-radius: 0;
	font-weight: 600;
	font-size: 16px;
	color: var(--thm-color);
	padding-left: 30px;
	padding-right: 30px;
}

.help-search .search-form button[type=submit] {
	padding: 0;
	width: auto;
	border: none;
	outline: none;
	background-color: transparent;
	font-size: 24px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
	color: var(--thm-base);
	transition: all 500ms ease;
}

.help-search .search-form button[type=submit]:hover {
	color: var(--thm-secondary);
}

.help-one {
	padding-top: 80px;
	padding-bottom: 50px;
	background-color: var(--thm-gray);
}

@media (min-width: 992px) {
	.help-one {
		padding-top: 100px;
		padding-bottom: 70px;
	}
}

.help-one__card {
	background-color: #fff;
	border: 1px solid var(--thm-border);
	text-align: center;
	padding: 50px 40px 30px;
	margin-bottom: 30px;
}

.help-one__card-icon {
	font-size: 62px;
	color: var(--thm-base);
}

.help-one__card-title {
	margin: 0;
	color: var(--thm-black);
	font-weight: 700;
	font-size: 24px;
	margin-top: 22px;
	margin-bottom: 20px;
}

.help-one__card-title a {
	color: inherit;
	transition: all 500ms ease;
}

.help-one__card-title a:hover {
	color: var(--thm-base);
}

.help-one__card-text {
	margin: 0;
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	color: var(--thm-color);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 22px;
}

.help-one__card-more {
	width: 63px;
	height: 63px;
	background-color: var(--thm-gray);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--thm-black);
	font-size: 20px;
	transition: all 500ms ease;
	border-radius: 50%;
	margin-left: auto;
	margin-right: auto;
}

.help-one__card-more:hover {
	color: #fff;
	background-color: var(--thm-base);
}

/* ================================= */
/* 20. Online Booking
/* ================================= */

/* Pricing */

.pricing-one__tab-title {
	margin-bottom: 50px;
	/*max-width: 930px;*/
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
	justify-content: center;
	align-items: center;
	border: 0 !important;
}

@media (min-width: 768px) {
	.pricing-one__tab-title {
		grid-template-columns: repeat(4, 1fr);
	}
}

.pricing-one__tab-title-item {
	border: 1px solid var(--thm-border) !important;
	text-align: center;
	margin: 0 !important;
	padding-top: 10px;
	padding-bottom: 30px;
	cursor: pointer;
	transition: all 500ms ease;
	position: relative;
	border-radius: 0 !important;
}

.pricing-one__tab-title-item::before {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	opacity: 0;
	transition: all 500ms ease;
	border-width: 14px 15px 0 15px;
	border-color: #3fc0ef transparent transparent transparent;
}

.pricing-one__tab-title-item:hover, .pricing-one__tab-title-item.active-item,
.pricing-one__tab-title-item.active {
	background-color: var(--thm-secondary) !important;
	border-color: var(--thm-secondary) !important;
}

.pricing-one__tab-title-item:hover::before, .pricing-one__tab-title-item.active-item::before {
	opacity: 1;
	visibility: visible;
}

.pricing-one__tab-title-item:hover p,
.pricing-one__tab-title-item:hover i,
.pricing-one__tab-title-item.active-item p,
.pricing-one__tab-title-item.active-item i,
.pricing-one__tab-title-item.active p,
.pricing-one__tab-title-item.active i {
	color: #fff;
}

.pricing-one__tab-title-item i {
	font-size: 64px;
	color: var(--thm-primary);
	transition: all 500ms ease;
}

.pricing-one__tab-title-item p {
	margin: 0;
	line-height: 1;
	font-size: 18px;
	font-weight: 700;
	color: var(--thm-primary);
	margin-top: -5px;
	transition: all 500ms ease;
}

.online-booking__price-row {
	--bs-gutter-y: 30px;
}

.online-booking .pricing-one__tab-title-item::before {
	display: none;
}

.online-booking .pricing-one__tab-title {
	margin-left: 0;
	padding-left: 0;
	padding-right: 0;
	margin-right: 0;
	margin-bottom: 0;
	max-width: 100%;
}

@media (min-width: 768px) {
	.online-booking .pricing-one__tab-title {
		grid-template-columns: repeat(4, 1fr);
	}
}

.price-card {
	background-color: var(--thm-gray);
	text-align: center;
	padding: 20px;
	padding-top: 50px;
	margin-bottom: 30px;
}

@media(max-width: 991px){
	.price-card {
		margin-bottom: 30px;
	}
}

.price-card__name {
	line-height: 1;
	color: var(--thm-color);
	font-size: 16px;
	font-weight: 400;
	margin: 0;
	margin-bottom: 10px;
}

.price-card__amount {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 60px;
	color: var(--thm-black);
	position: relative;
	line-height: 1;
	font-weight: 400;
	margin: 0;
	margin-bottom: 22px;
}

.price-card__amount-symbol {
	position: relative;
	font-size: 35px;
	top: -10px;
}

.price-card__amount-fraction {
	position: relative;
	font-size: 35px;
	top: -10px;
}

.price-card__duration {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 30px;
	max-width: 200px;
	margin-left: auto;
	margin-right: auto;
	color: #fff;
	background-color: var(--thm-primary);
	font-size: 14px;
	margin-bottom: -15px;
	position: relative;
	z-index: 10;
}

.price-card__duration i {
	font-size: 14px;
	margin-right: 10px;
}

.price-card__list {
	margin-bottom: 0;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 35px;
	margin-bottom: 20px;
	text-align: left;
}

.price-card__list li {
	position: relative;
	padding-left: 30px;
	font-size: 16px;
	font-weight: 400;
}

.price-card__list li + li {
	margin-top: 10px;
}

.price-card__list li > i {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-size: 14px;
}

.price-card__list li > i.fa-check {
	color: var(--thm-base);
}

.price-card__list li > i.fa-times {
	color: var(--thm-color);
}

.price-card__bottom {
	background-color: #fff;
	padding-bottom: 30px;
}

.price-card .thm-btn {
	font-size: 18px;
	padding: 20px 48px;
	min-width: 220px;
}

.price-card .thm-btn:hover
{
	background-color: var(--thm-black);
	color: #fff;
}

.price-card .thm-btn.active-btn{
	background-color: #0a8811;
}

/* ================================= */
/* 21. Product
/* ================================= */

.products-page {
	padding-top: 80px;
	padding-bottom: 80px;
}

@media (min-width: 992px) {
	.products-page {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

.products-page .post-pagination {
	margin-top: 50px;
}


/* ================================= */
/* 22. Search Popup
/* ================================= */
.search-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 999;
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(-110%);
	transition: transform 500ms ease, opacity 500ms ease;
}

.search-popup.active {
	transform: translateY(0%);
}

.search-popup__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--thm-black);
	opacity: 0.75;
	cursor: pointer;
}

.search-popup__content {
	width: 100%;
	max-width: 560px;
}

.search-popup__content form {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	background-color: #fff;
	border-radius: 0px;
	overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
	width: 100%;
	background-color: #fff;
	font-size: 16px;
	border: none;
	outline: none;
	margin-bottom: 0;
	height: 66px;
	padding-left: 30px;
}

.search-popup__content button[type="submit"] {
	padding: 0;
	width: 68px;
	height: 68px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: absolute;
	top: 0;
	right: -1px;
	border-radius: 0;
}

.search-popup__content .thm-btn:hover {
	background-color: var(--thm-black);
	color: #fff;
}

.search-popup__content .thm-btn i {
	margin: 0;
}


/* ================================= */
/* 23. Footer
/* ================================= */

.main-footer {
	background-color: var(--thm-black);
	position: relative;
	clear: both;
}

.main-footer .image-layer {
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	width: 884px;
	height: 587px;
	opacity: 0.1;
}

.main-footer .container {
	position: relative;
}

.upper-footer {
	padding-top: 130px;
	padding-bottom: 70px;
}

.footer-widget {
	margin-bottom: 30px;
}

.main-footer .widget_block h2,
.footer-widget__title {
	margin: 0;
	color: #fff;
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 38px;
}

.footer-widget__links .footer-widget__title {
	margin-bottom: 36px;
}
@media (max-width: 767px) {
.footer-widget__links .footer-widget__title,.footer-widget__title {
	margin-bottom: 20px;
}
.upper-footer{
	padding-top:100px;
	}
}

.main-footer {
	color: var(--thm-text-dark);
}

.main-footer label {
	color: #fff;
	margin-bottom: 5px;
}

.main-footer input,
.main-footer select {
	width: 100%;
	height: 50px;
	color: var(--thm-color);
	border-radius: 0;
	padding: 0 15px !important;
}

.main-footer button[type="submit"] {
	background-color: var(--thm-base);
	color: #fff;
	border-radius: 0;
	border: 0;
}

.main-footer .widget-search {
	position: relative;
}

.main-footer .widget-search button[type="submit"] {
	position: absolute;
	right: 0;
	top: 7px;
	background-color: transparent;
	color: var(--thm-base);
}

.main-footer .widget ul,
.main-footer .widget ol,
.footer-widget ul,
.footer-widget ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-footer .widget li,
.footer-widget li {
	color: var(--thm-text-dark);
}

.main-footer .widget a,
.footer-widget a {
	color: inherit;
}

.main-footer .widget table caption,
.main-footer .footer-widget table caption {
	color: var(--thm-text-dark);
}

.main-footer .widget table th,
.main-footer .footer-widget table th {
	font-weight: 400;
	color: var(--thm-black);
	background: var(--thm-gray);
	border: 1px solid var(--thm-border);
	text-align: center;
}

.main-footer .widget table td,
.main-footer .footer-widget table td {
	color: var(--thm-text-dark);
	border: 1px solid var(--thm-border);
	text-align: center;
	padding: 5px;
}

.main-footer .widget table td a,
.main-footer .footer-widget table td a {
	color: var(--thm-base);
}

.wp-calendar-nav-prev,
.wp-calendar-nav-next {
	color: var(--thm-base);
}

.main-footer .widget ul li + li,
.main-footer .footer-widget ul li + li {
	margin-top: 6px;
}

.main-footer .widget ul ul,
.main-footer .widget ol ol,
.main-footer .widget ul ol,
.main-footer .widget ol ul,
.main-footer .footer-widget ul ul,
.main-footer .footer-widget ol ol,
.main-footer .footer-widget ul ol,
.main-footer .footer-widget ol ul {
	padding-left: 15px;
}

.main-footer .widget .wp-block-tag-cloud,
.main-footer .footer-widget .tagcloud {
	color: var(--thm-text-dark);
}

.main-footer .widget .wp-block-latest-posts .wp-block-latest-posts__featured-image {
	float: left;
	width: 70px;
	margin-right: 10px;
}

.footer-widget__logo img {
	display: block;
	margin-top: -33.5px;
}

.footer-widget__about .footer-widget__text {
	margin-top: 30px;
	margin-bottom: 20px;
}

.footer-widget__text {
	margin: 0;
	font-size: 16px;
	line-height: 30px;
	font-weight: 400;
	color: var(--thm-text-dark);
}

.footer-widget__contact .footer-widget__text,
.widget_mc4wp_form_widget .footer-widget__text {
	line-height: 26px;
}

.footer-widget__contact .footer-widget__text {
	max-width: 190px;
}

.widget_mc4wp_form_widget .footer-widget__text {
	max-width: 250px;
}

.footer-widget__social {
	display: flex;
	align-items: center;
}

.footer-widget__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: var(--thm-primary);
	color: #fff;
	width: 43px;
	height: 43px;
	font-size: 16px;
	transition: 500ms;
	border-radius: 50%;
	margin-right: 10px;
}

.footer-widget__social a:last-of-type {
	margin-right: 0;
}

.footer-widget__social a:hover {
	background-color: var(--thm-secondary);
	color: #fff;
}

.footer-widget__links-wrap {
	position: relative;
}

.footer-widget__links-wrap ul {
	margin: 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer-widget__links-wrap ul li {
	margin-bottom: 6px;
	width: 50%;
}

.main-footer .footer-widget .footer-widget__links-wrap ul li + li {
	margin-top: 0;
}

.footer-widget__links-wrap ul li a {
	font-size: 16px;
	font-weight: 400;
	display: block;
	color: var(--thm-text-dark);
	transition: 500ms ease;
}

.main-footer .widget ul a:hover,
.main-footer .widget ol a:hover,
.footer-widget a:hover,
.footer-widget__links-wrap a:hover {
	color: #fff;
}

.footer-widget .wp-block-social-links li {
	width: auto;
}

.footer-widget .footer-widget__contact-list {
	margin: 0;
	margin-top: 25px;
}

.footer-widget__contact-list li a {
	position: relative;
	padding-left: 25px;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
}

.footer-widget__contact-list li a > i {
	color: var(--thm-secondary);
	font-size: 15px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.footer-widget__mailchimp-form {
	margin-top: 13px;
	width: 100%;
	height: 61px;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
}

.footer-widget__mailchimp-form input[type=text],
.footer-widget__mailchimp-form input[type=email] {
	border: none;
	outline: none;
	width: 100%;
	height: auto;
	background-color: #fff;
	color: var(--thm-color);
	font-size: 14px;
	font-weight: 400;
	padding-left: 20px;
	margin-bottom: 0;
}

.footer-widget__mailchimp-form .thm-btn {
	flex-shrink: 0;
	padding: 15.5px 20px;
	color: #fff;
	font-size: 18px;
	border-radius: 0;
}

.footer-widget__mailchimp-form .thm-btn:hover {
	background-color: var(--thm-secondary);
	color: #fff;
}

.bottom-footer__inner {
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding: 25px 0;
	padding-right: 50px;
}

@media (min-width: 768px) {
	.bottom-footer__inner {
		flex-direction: row;
		justify-content: space-between;
		padding: 38px 0;
		padding-right: 80px;
	}
}

.bottom-footer__inner::before {
	content: '';
	width: 1000000px;
	height: 100%;
	background-color: var(--thm-primary);
	position: absolute;
	right: 100%;
	top: 0;
}

.bottom-footer__inner::after {
	content: '';
	height: 100%;
	background-color: var(--thm-primary);
	transform: skew(-18deg);
	position: absolute;
	top: 0;
	right: 20px;
	width: 110%;
}

.bottom-footer__text {
	margin: 0;
	position: relative;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	z-index: 1;
}

.bottom-footer__text a {
	color: inherit;
	transition: all 500ms ease;
}

.bottom-footer__text a:not(:last-of-type):after {
	content: '/';
	margin-left: 15px;
	margin-right: 10px;
}

.bottom-footer__text a:hover {
	color: var(--thm-secondary);
}


/* ================================= */
/* Animations
/* ================================= */

@keyframes shapeMover {
	0%,
	100% {
		transform: translateY(-50%) rotate(0deg) translateX(0);
	}
	50% {
		transform: rotate(0deg) translateY(calc(-50% + 20px)) translateX(20px);
	}
}