/*!
Theme Name: Renossance
Author: SEOrca
Author URI: https://seorca.com
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE

*/

:root {
	--Black: #000;
	--Camouflage: #0B1612;
	--Dark-Green: #0D291F;
	--Light-Grey: #F2F3EE;
	--White: #FFF;
	--Light-Green-Button: #E7EAE9;
	--Red: #E94335;
	--transition: ease 0.5s;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

@font-face {
  font-family: 'Copperplate Gothic Bold';
  src: url('assets/fonts/CopperplateGothicBoldRegular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Josefin Sans';
  src: url('assets/fonts/JosefinSansRegular/JosefinSansRegular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Josefin Sans';
  src: url('assets/fonts/JosefinSansBold/JosefinSansBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html {
	scrollbar-gutter: stable;
}
body {
	
	background: var(--Light-Grey);
}
main {
	margin: 0;
	padding: 30px 0 0 0;
	color: #000;
}
* {
	margin: 0;
	padding: 0;
	font-family: "Copperplate Gothic Bold";
	font-style: normal;
	font-weight: 400;
	box-sizing: border-box;
}
section {
	margin-bottom: 60px;
	position: relative;
}
.show-on-scroll {
	opacity:0;
  transform:translateY(0);
  transition:0.6s;
}
.show-on-scroll.show {
  opacity:1;
  /*transform:translateY(30px);*/
}
img {
	display: block;
	object-fit: cover;
}
h1 {
	font-size: 45px;
	line-height: normal;
	text-transform: capitalize;
}
h2 {
	margin-bottom: 30px;
	font-size: 28px;
	line-height: 30px;
	text-transform: capitalize;
}
h3, .h3 {
	font-size: 24px;
	line-height: 30px;
	text-transform: capitalize;
	font-family: 'Copperplate Gothic Bold';
}
h4, .h4 {
	font-size: 22px;
	line-height: 30px; 
	text-transform: capitalize;
	font-family: 'Copperplate Gothic Bold';
}
h5, .h5 {
	font-size: 20px;
	line-height: 30px; /* 150% */
	text-transform: capitalize;
	font-family: 'Copperplate Gothic Bold';
}
h6, .h6 {
	font-size: 18px;
	line-height: 30px; /* 166.667% */
	text-transform: capitalize;
	font-family: 'Copperplate Gothic Bold';
}
p, li, .p {
	color: var(--Black, #000);
	font-family: "Josefin Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
	letter-spacing: 0.16px;
}
ul {
	padding-left: 24px;
}
.btn,
.btn2,
.btn3 {
	display: block;
	position: relative;
	padding: 10px 0;
  width: fit-content;
	-webkit-tap-highlight-color: transparent;
	border-radius: 15px;
  background: var(--Dark-Green);
  border: none;
  color: var(--White);
  text-align: center;
  font-size: 16px;
	line-height: 30px;
  transition: var(--transition);
  cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
}
.btn span,
.btn2 span,
.btn3 span {
	padding: 0 30px;
	position: relative;
	transition: var(--transition);
}
.btn2 {
	background: var(--Light-Green-Button);
	color: #000;
}
.btn3 {
	background: transparent;
	color: var(--Dark-Green, #0D291F);
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
	text-transform: capitalize;
}
.btn span:after,
.btn2 span:after,
.btn3 span:after {
  content: '';
  position: absolute;
  opacity: 0;
  top: calc(50% - 3px);
  right: 5px;
  transition: var(--transition);
	display: block;
	width: 15px;
	height: 6px;
	background: url("assets/icons/btn-arrow.svg");
}
.btn3 span:after {
	background: url("assets/icons/btn-arrow2.svg");
}
.btn:hover span,
.btn.active span,
.btn2:hover span,
.btn3:hover span {
	padding: 0 45px 0 15px;
}
.btn:hover span::after,
.btn.active span::after,
.btn2:hover span::after,
.btn3:hover span::after {
	opacity: 1;
	right: 20px;
}
.btn2:hover {
	background: #0D291F;
	color: #FFF;
}
.container {
	margin: 0 auto;
	max-width: 100%;
	padding: 0 60px;
}
.glide__arrows {
	position: absolute;
	z-index: 2;
	bottom: 15px;
	right: 15px;
	width: 115px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.glide__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.50);
	background: rgba(255, 255, 255, 0.10);
	cursor: pointer;
}
.grecaptcha-badge {
	visibility: hidden;
}
/* === header === */

.header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 105px;
	padding-top: 30px;
	z-index: 5;
	transition:transform .35s ease, opacity .35s ease;
}
.header.hide{
  transform:translateY(-100%);
  opacity:0;
}
.header.show{
  transform:translateY(0);
  opacity:1;
}
/*.header.scrolled {
	padding-top: 0;
}*/
.header__box {
	height: 75px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 30px;
	border-radius: 15px;
	background: var(--White);
	transition:transform .35s ease, opacity .35s ease;
}

.header__pre-popup .header--btn,
.header__pre-popup .header__more-info,
.header--burger,
.header__submenu--remove {
	display: none;
}
.header__nav {
	display: flex;
	align-items: center;
	gap: 45px;
	flex-wrap: nowrap;
}
.header__nav--a {
	color: var(--Camouflage);
	font-size: 16px;
	text-transform: capitalize;
	text-decoration: none;
	transition: var(--transition);
}
.header__nav--a:hover {
	color: var(--Accessory-Green, #6A847B);
	border-bottom: 1px solid var(--Accessory-Green, #6A847B);
}
.header__nav--a.has-submenu {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	transition: var(--transition);
}
.header__nav--a.has-submenu svg {
	transition: var(--transition);
}
.header__nav--a.has-submenu .svg-2 {
	display: none;
}
.header__nav--a.has-submenu.active {
	color: var(--Accessory-Green, #6A847B);
	border-bottom: 1px solid var(--Accessory-Green, #6A847B);
}
.header__nav--a.has-submenu.active svg {
	transform: rotate(180deg);
}
.header__submenu-inner,
.header__submenu-blur {
	position: fixed;
	top: 150px;
	left: 0;
	z-index: 9;
	width: 100%;
	height: calc(100vh - 120px);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}
.header__submenu-inner.scrolled {
	top: 120px;
}
.header__submenu-inner {
	width: calc(100% - 120px);
	left: 60px;
}
.header__submenu-blur {
	position: fixed;
	z-index: 3;
	height: 100vh;
	top: 0;
	backdrop-filter: blur(4px);
	cursor: pointer;
}
.header__submenu-inner.active,
.header__submenu-blur.active {
	opacity: 1;
	visibility: visible;
}
.header__submenu {
	display: none;
	border-radius: 15px;
	background: var(--White, #FFF);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
	padding: 30px;
	gap: 15px;
	flex-wrap: wrap;
}
.header__submenu.active {
	display: flex;
	justify-content: space-between;
}
.header__submenu__col {
	width: calc(33% - 7px);
	padding: 15px;
}
.header__submenu__col:nth-child(2) {
	width: 100%;
}
.header__submenu__col:last-child {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	padding-bottom: 0;
}
.header__submenu--p {
	font-family: "Copperplate Gothic Bold";
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: 30px; /* 187.5% */
}
.header__submenu__items {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.header__submenu__col:nth-child(2) .header__submenu__items {
	flex-direction: row;
	justify-content: space-between;
}
.header__submenu__items--a {
	width: 100%;
	height: 40px;
	padding: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: 10px;
	background: var(--Light-Grey);
	color: var(--Black, #000);
	font-family: "Copperplate Gothic Bold";
	font-size: 14px;
	line-height: 30px; /* 214.286% */
	text-transform: capitalize;
	text-decoration: none;
	transition: 0.3s;
}
.header__submenu__items--a .arrow {
	margin-left: auto;
}
.header__submenu__col:nth-child(2) .header__submenu__items--a {
	width: calc(33% - 27px);
}
.header__submenu__items--a:hover {
	background: var(--Dark-Green);
  color: #fff;
}
.header__submenu__items--a:hover .arrow path {
	fill: #fff;
}
.header__submenu--btn {
	margin-left: auto;
}
.header--btn {
	align-items: center;
	display: flex;
	position: relative;
	overflow: hidden;
}
.header--btn:hover {
  opacity: .95;
}
.header--btn .animation {
  border-radius: 100%;
  animation: ripple 0.6s linear infinite;
	position: absolute;
}
.header--btn .animation:first-child {
	left: 20px;
}
.header--btn .animation:last-child {
	right: 20px;
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
  }
}
/* === hero === */

.hero {
	width: 100%;
	height: calc(100vh - 135px);
	overflow: hidden;
}
.hero .container {
	position: relative;
  	padding: 0 60px;
  	max-width: 100%;
	box-sizing: border-box;
}

/* Let Glide work normally */
.hero .glide {
  width: 100%;
}

.hero .glide__track {
  overflow: hidden;
  border-radius: 20px;
}

.hero__content {
	position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 5% 6%;
  box-sizing: border-box;
}
.hero--stars--img {
	display: block;
	margin-left: 30px;
}
.hero h1 {
	margin-bottom: 5px;
	margin-left: 30px;
	color: #FFF;
	font-size: 60px;
}
.hero--p {
	margin-left: 30px;
	margin-bottom: 2.2%;
	color: #FFF;
	text-shadow: 0 4px 10px #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%; /* 24px */
	letter-spacing: 0.16px;
}
.hero--button {
	width: 360px;
	height: 45px;
	padding: 0;
	display: block;
	font-size: 18px;
	margin-left: 30px;
}
.hero .glide__slide {
	height: calc(100vh - 145px);
	position: relative;
	overflow: hidden;
	border-radius: 30px;
}
.hero__gallery--img {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	object-fit: cover;

}
.hero .glide__slides {
	transform: translate3d(0,0,0)!important;
	width: 100%!important;
	height: calc(100vh - 145px);
	will-change: auto !important;
}
.hero .glide__slide {
	opacity: 0;
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 1.2s ease;
}
.hero .glide__slide.glide__slide--active {
	opacity: 1;
	z-index: 1;
}
@media(min-height: 820px){
	.hero__gallery--img {
		height: 100%;
	}
}

@media (min-width: 769px) {
  .hero .container {

  }
}
/* === home_services === */


.home_services__items {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}
.home_services__item {
	width: calc(33% - 17px);
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.home_services__item--img {
	width: 100%;
	max-width: 100%;
	object-fit: cover;
	border-radius: 15px;
	height: 279px;
}
.home_services__item--h3 {
	margin-bottom: 30px;
}
.home_services__item__description {
	margin-bottom: 30px;
	color: var(--Black, #000);
	font-family: "Josefin Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0.16px;
}
.home_services__item__description p {
	margin-bottom: 24px;
	
}
.home_services__item__btns {
	margin-top: auto;
	display: flex;
	gap: 16px;
}
.home_services__item--btn-1,
.home_services__item--btn-2 {
	width: calc(50% - 8px);
}
.home_services__item--btn-2 {
	background: #F2F3EE;
	color: #000;
}
.home_services__item:nth-child(1),
.home_services__item:nth-child(2),
.tabs_services .home_services__item:nth-child(3) {
	width: 100%;
	flex-direction: row;
}
.home_services__item:nth-child(1) .home_services__item__col:nth-child(1),
.home_services__item:nth-child(2) .home_services__item__col:nth-child(1),
.tabs_services .home_services__item:nth-child(3) .home_services__item__col:nth-child(1) {
	width: 750px;
}
.home_services__item:nth-child(1) .home_services__item__col:nth-child(2),
.home_services__item:nth-child(2) .home_services__item__col:nth-child(2),
.tabs_services .home_services__item:nth-child(3) .home_services__item__col:nth-child(2) {
	width: calc(100% - 780px);
	display: flex;
	flex-direction: column;
}
.home_services__item:nth-child(2) .home_services__item__col:nth-child(1) {
	order: 2;
}
.home_services--more {
	margin: 37px auto 0 auto;
}

/* === home_why_us === */

.home_why_us__box {
	display: flex;
	gap: 30px;
	border-radius: 30px;
	background: #FFF;
	padding: 30px;
}
.home_why_us__col-1 {
	width: 365px;
	position: relative;
}
.home_why_us--img-1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}
.home_why_us__col-2 {
	width: calc(100% - 395px);
	display: flex;
	gap: 60px 30px;
	flex-wrap: wrap;
}
.home_why_us__col-2 .mob {
	display: none;
}
.home_why_us__content {
	width: calc(100% - 313px);
}
.home_why_us--img-2 {
	width: 283px;
	height: 250px;
	border-radius: 15px;
}
.home_why_us--p {
	margin-bottom: 30px;
}
.home_why_us__numbers {
	width: 100%;
	display: flex;
	gap: 30px;
}
.home_why_us__number {
	width: 180px;
	max-width: calc(25% - 23px);
}
.home_why_us__number--part-1 {
	margin-bottom: 15px;
	color: #000;
	font-family: "Copperplate Gothic Bold";
	font-size: 45px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px; /* 66.667% */
	text-transform: capitalize;
}

/* === gallery === */

.gallery__box {
	display: flex;
	gap: 15px;
}
.gallery__col {
	width: calc(50% - 240px);
	position: relative;
}
.gallery__col:nth-child(1) {
  display: flex;
  flex-direction: column;
}

.gallery__col:first-child {
	width: 450px;
	max-width: 34%;
}
.gallery--img.change {
	display: block;
  flex: 1;
  min-height: 0;
  margin-bottom: 0;
  height: auto;
}
.gallery--p {
	padding-bottom: 30px;
}
.gallery--img {
	margin-bottom: 15px;
	width: 100%;
	height: 270px;
	position: relative;
	overflow: hidden;
	border-radius: 15px;
}
.gallery--img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: 0.3s;
}
.gallery--img:hover img {
	width: 110%;
	height: 110%;
	top: -5%;
	left: -5%;
}
.gallery--img.no-margin {
	margin-bottom: 0;
	height: 284px;
}
.gallery--img.small {
	height: 224px;
}
.gallery--a {
	padding: 0;
	width: 100%;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* === transform === */

.transform__box {
	display: flex;
	gap: 30px;
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
}
.transform__col:nth-child(1) {
	width: calc(100% - 480px);
    display: flex;
    flex-direction: column;
}
.transform__col:nth-child(2) {
	width: 450px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.transform__tabs {
	position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

@media (max-width: 798px) {
    .transform__tabs {
        height: auto;
    }
}

.transform__tab {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.0s ease;
}
.transform__tab.active {
	opacity: 1;
  	visibility: visible;
}
.transform__tab--p {
	margin-bottom: 30px;
}
.transform__tab--img {

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}
.transform__open-tab {
	border-radius: 15px;
	background: var(--Light-Grey);
	padding: 15px;
	transition: var(--transition);
	cursor: pointer;
}
.transform--h3,
.transform--p {
	transition: var(--transition);
}
.transform--h3 {
	margin-bottom: 15px;
	font-size: 18px;
	line-height: 30px; /* 166.667% */
	text-transform: capitalize;
}
.transform__open-tab.active {
	background: var(--Dark-Green);
}
.transform__open-tab.active .transform--h3,
.transform__open-tab.active .transform--p {
	color: var(--White);
}

/* === reviews === */

.reviews .glide__slide {
	padding: 15px;
	border-radius: 30px;
	background: var(--White);
}
.reviews--avatar {
	float: left;
	display: block;
	margin-right: 15px;
}
.reviews--name {
	margin-bottom: 5px;
	text-transform: capitalize;
}
.reviews--date {
	color: #7B7B7B;
	font-size: 14px;
	letter-spacing: 0.14px;
}
.reviews__stars {
	margin-top: 20px;
	margin-bottom: 15px;
	clear: both;
	display: flex;
	align-items: center;
	gap: 5px;
}
.reviews--comment .read-more {
	color: var(--Dark-Green, #0D291F);
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
	cursor: pointer;
}
.classic.glide__arrows {
	bottom: auto;
  top: -75px;
	right: 0;
	width: 105px;
}
.classic.glide__arrows .glide__arrow {
	border: none;
	background: var(--Light-Green-Button, #E7EAE9);
	transition: var(--transition);
}
.classic.glide__arrows .glide__arrow:hover {
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}
/* === banner === */

.banner__box {
	padding: 72px 15px;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
	border-radius: 30px;
}
.banner__box::after{
	content:"";
	position:absolute;
	inset:0;
	background:rgba(0,0,0,.4);
}
.banner--img {
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	object-fit:cover;
}
.banner--title {
	margin-bottom: 30px;
	text-align: center;
	color: var(--White);
	position: relative;
	z-index: 2;
}
.banner--btn {
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

/* === news === */
.news--h2 {
	margin-bottom: 0;
}
.news__box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: center;
}
.news--h2 {
	width: calc(100% - 238px);
}
.news--btn {
	width: 208px;
}
.news__col {
	width: calc(50% - 15px);
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.news__article {
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
	display: flex;
	gap: 30px;
	position: relative;
}
.news__article-big {
	flex-direction: column;
	gap: 15px;
	height: 100%;
}
.news__article--img {
	object-fit: cover;
	width: 100%;
  border-radius: 15px;
}
.news__article--img,
.news__article__content {
	width: calc(50% - 15px);
	height: auto;
}
.news__article-big .news__article__content,
.news__article-big .news__article--img {
	width: 100%;
}
.news__article-big .news__article--img {
	height: 100%;
}

.news__article {
	height: 100%;
}

.news__article--h4 {
	margin-bottom: 15px;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news__article--h3 {
	margin-top: 15px;
	margin-bottom: 15px;
}
.news__article__meta {
	display: flex;
	align-items: center;
	gap: 30px;
}
.news__article__meta--item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #000;
	font-family: "Josefin Sans";
	font-size: 14px;
	letter-spacing: 0.14px;
}
.news__article--a span {
	padding-left: 0!important;
}
.news__article--a.mt-30 {
	margin-top: 30px;
}
.news__article--excerpt {
	margin-bottom: 15px;
}
.news__article--link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}
/* === partners === */
.marquee {
  overflow: hidden;
  width: 100%;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.marquee__group {
  display: flex;
	align-items: center;
	height: 110px;
}
.marquee__group img {
  margin-right: 90px;
	height: 50px;
	width: auto;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* === footer === */

.footer {
	padding-bottom: 60px;
}
.footer__box {
	padding: 60px 30px 30px 30px;
	border-radius: 30px;
	background: var(--Camouflage);
	display: flex;
	gap: 30px 60px;
	flex-wrap: wrap;
}
.footer__col-1 {
	width: 350px;
	margin-right: auto;
}
.footer__col-2,
.footer__col-3,
.footer__col-4 {
	width: 263px;
	max-width: calc(33% - 173px);
	position: relative;
}
.footer--trent {
	position: absolute;
	bottom: 35px;
	left: 0;
}
.footer__col-5 {
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, 0.30);
	padding: 15px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer--logo {
	display: block;
	margin-bottom: 30px;
}
.footer--p {
	margin-bottom: 30px;
	color: var(--White);
	font-size: 14px;
	letter-spacing: 0.14px;
}
.footer--btn {
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 35px;
	padding: 0;
	background: #F2F3EE;
	color: #000;
	font-size: 14px;
	border-radius: 10px;
}
.footer__socials {
	display: flex;
	align-items: center;
	gap: 20px;
}
.footer__social {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.50);
	background: rgba(255, 255, 255, 0.10);
	position: relative;
	overflow: hidden;
}
.footer__social svg {
	position: relative;
	z-index: 2;
}
.footer__social svg path {
	transition: all 0.3s ease;
}
.footer__social::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	top: calc(100% + 3px);
	left: 0;
	transition: all 0.3s ease;
	background: var(--White);
}
.footer__social:hover::before {
	top: 0;
}
.footer__social:hover svg path {
	fill: var(--Dark-Green)
}
.footer--title {
	margin-bottom: 30px;
	color: var(--White);
	font-family: "Copperplate Gothic Bold";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px; /* 166.667% */
	text-transform: capitalize;
}
.footer__nav--a,
.footer--a {
	display: block;
	margin-bottom: 10px;
	color: var(--White);
	font-family: "Josefin Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
	letter-spacing: 0.16px;
	text-decoration: none;
}
.footer__nav--a:hover {
	color: var(--Accessory-Green, #6A847B);
}
.footer--a {
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer__col-5 .footer__nav {
	display: flex;
	gap: 30px;
}
.footer__col-5 .footer--a {
	margin-bottom: 0;
}
.footer--copyright p,
.footer--copyright a {
	color: var(--White, #FFF);
	font-family: "Josefin Sans";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 21px */
	letter-spacing: 0.14px;
	text-decoration: none;
}
.footer--copyright a {
	font-weight: 700;
}


/* === form === */
.form__box {
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.form__field--input,
.form__field--textarea,
.form .ts-control input {
	display: block;
	width: 100%;
	height: 48px;
	padding: 12px 15px;
	border-radius: 15px;
	border: 1px solid rgba(11, 22, 18, 0.50);
	color: rgba(11, 22, 18, 0.50);
	font-family: "Josefin Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
	letter-spacing: 0.16px;
	outline: none;
	transition: 0.3s;
}
.form .ts-control input  {
	height: auto;
	padding: 14.2px 15px !important;
	transition: none;
	position: static!important;
}
.form__field--textarea  {
	resize: none;
	height: 100px;
}
.form__field--input:focus,
.form__field--textarea:focus {
	border: 1px solid rgba(11, 22, 18, 1);
	color: rgba(11, 22, 18, 1);
}
.form--p {
	margin-bottom: 30px;
	color: rgba(11, 22, 18, 0.50);
}
.form--p button,
.form--p a {
	border: none;
	background: none;
	font: inherit;
	color: #0B1612;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
	cursor: pointer;
}
.form--success,
.form--error {
	margin-top: 30px;
	display: none;
}
.form--success {
	color: #056800;
}
.form--error {
	color: var(--Red);
}
.form .ts-wrapper {
	width: 100%;
}
.form .ts-control:not(.rtl) {
	border-radius: 15px;
  border: 1px solid rgba(11, 22, 18, 0.50);
	padding: 0!important;
	transition: 0.2s;
}
.form .dropdown-active .ts-control {
	border-radius: 15px 15px 0 0;
}
.form .has-items .ts-control input {
	opacity: 0;
	height: 0;
	padding-top: 0 !important;
	padding-bottom: 5.4px !important;
}
.form .ts-control::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 18px;
	right: 15px;
	width: 12px;
	height: 12px;
	background: url("assets/icons/select-arrow.svg");
	transition: 0.2s;
}
.form .dropdown-active .ts-control::after {
	transform: rotate(180deg);
}
.form .ts-dropdown {
	margin-top: 0;
	border-radius: 0 0 15px 15px;
	border-right: 1px solid rgba(11, 22, 18, 0.50);
	border-bottom: 1px solid rgba(11, 22, 18, 0.50);
	border-left: 1px solid rgba(11, 22, 18, 0.50);
	background: #FFF;
	padding: 15px;
}
.form .ts-dropdown-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.form .ts-dropdown .option {
	padding: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}
.form .ts-dropdown .option::before {
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	background: url("assets/icons/checkbook.svg");
}
.form .ts-dropdown .option.selected::before {
	background: url("assets/icons/checkbook-active.svg");
}
.form .ts-dropdown .option span {
	color: var(--Black, #000);
	font-family: "Josefin Sans";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 21px */
	letter-spacing: 0.14px;
}
.form .ts-dropdown .option.active {
	background-color: transparent;
	color: var(--Black, #000);
}
.ts-wrapper.multi .ts-control [data-value].active {
	background-image: none!important;
}
.form .ms-auto.text-muted,
.form .plugin-checkbox_options:not(.rtl) .option input {
	display: none;
}
.form .ts-wrapper.multi .ts-control [data-value] {
	margin: 0 40px 5px 15px;
	padding: 3px 0 3px 10px;
	border-radius: 10px;
	background: var(--Light-Grey, #F2F3EE);
	color: #000;
	font-family: "Josefin Sans";
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0.12px;
	border: none;
}
.form .ts-wrapper.multi .ts-control [data-value]:first-child {
	margin-top: 12px;
}
.form .ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
	border: none;
	margin: 0 10px;
	padding: 0;
	font-size: 0;
	width: 12px;
	min-width: 12px;
	height: 12px;
	background: url("assets/icons/select-remove.svg");
}
.form__file {
	position: relative;
	display: inline-block;
	cursor: pointer;
	border-radius: 15px;
	border: 1px solid rgba(11, 22, 18, 0.50);
	padding: 5px 5px 5px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.form__file--input {
	position: absolute;
	left: 0; top: 0;
	width: 100%; 
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
.form__file--button {
	width: 120px;
	height: 38px;
	padding: 10px;
	border-radius: 10px;
	background: var(--Dark-Green, #0D291F);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	color: #FFF;
	text-align: center;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px; /* 250% */
	text-transform: capitalize;
}
.form__file--button span {
	width: 80px;
}
.form__file--name {
  color: rgba(11, 22, 18, 0.50);
}
.form .ts-dropdown [data-selectable] {
 overflow: visible;
}
/* === popup === */

.no-scroll {
	height: 100dvh;
	overflow: hidden;
}
.popup {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 12;
	width: 100%;
	height: 100vh;
	opacity: 0;
	visibility: hidden;
	inset: 0;
  overflow-y: auto;
	overscroll-behavior: contain;
	backdrop-filter: blur(4px);
}
.popup.active {
	opacity: 1;
	visibility: visible;
}
.popup--fone {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.popup .container {
	padding: 30px 0;
	position: relative;
	overflow-y: auto;
	max-height: 100%;
}
.popup__box {
	margin: 30px auto;
	position: relative;
	z-index: 2;
	width: 750px;
	max-width: 100%;
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
.popup__form {
	padding-top: 28.5px;
}
.popup--h3 {
	text-align: center;
	margin-bottom: 30px;
}
.popup--img {
	max-width: 100%;
	border-radius: 15px;
}
.popup__form {
	margin-top: 30px;
}
.popup .form__field {
	width: calc(50% - 7.5px);
}
.popup .form__field.w-100 {
	width: 100%;
}
.popup__box--close {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 24px;
	height: 24px;
	cursor: pointer;
}
.popup .form__box {
	margin-bottom: 15px;
}
.popup .form--p {
	font-size: 14px;
	letter-spacing: 0.14px;
}
.popup__success {
	display: none;
}
.popup .form--submit {
	margin: 0 auto;
}
.popup .form .ts-dropdown .option span {
	font-size: 16px;
	letter-spacing: 0.16px;
}
.popup .ts-wrapper.multi.has-items .ts-control {
	padding: 12px 37px 0 15px!important;
}
.popup .form .ts-wrapper.multi .ts-control [data-value]:first-child {
	margin-top: 0;
}
.popup .form .ts-wrapper.multi .ts-control [data-value] {
	margin: 0 10px 10px 0;
	font-size: 14px;
	letter-spacing: 0.14px;
	overflow: hidden;
}
.popup .form .has-items .ts-control input {
	padding: 0;
}
.popup__text {
	margin-bottom: 30px;
}
.popup__text p {
	min-height: 24px;
}

/* === media === */

@media(max-width: 1599px){
	.footer--a svg {
		min-width: 20px;
	}
}
@media(max-width: 1379px){
	.header__nav {
		gap: 25px;
	}
}
@media(max-width: 1279px){
	section {
		margin-bottom: 45px;
	}
	.container {
		padding: 0 30px;
	}
	.header__submenu-inner {
		top: 110px;
		left: 30px;
    width: calc(100% - 60px);
	}
	.header {
		padding-top: 15px;
		z-index: 9;
		height: auto;
	}
	.header__box {
		position: relative;
	}
	.header__nav {
		gap: 15px;
	}
	.header__nav--a {
		font-size: 14px;
	}
	.header--btn {
		font-size: 16px;
	}
	.header--logo svg {
		width: 160px;
	}
	.hero--button {
		width: 39%;
    height: 11%;
	}
	.home_services__items {
		gap: 20px;
	}
	.home_services__item {
		width: calc(33% - 11px);
	}
	.home_services__item:nth-child(1) .home_services__item__col:nth-child(1), .home_services__item:nth-child(2) .home_services__item__col:nth-child(1), .tabs_services .home_services__item:nth-child(3) .home_services__item__col:nth-child(1) {
		width: 550px;
	}
	.home_services__item:nth-child(1) .home_services__item__col:nth-child(2), .home_services__item:nth-child(2) .home_services__item__col:nth-child(2), .tabs_services .home_services__item:nth-child(3) .home_services__item__col:nth-child(2) {
		width: calc(100% - 580px);
	}
	.home_services__item.default .home_services__item__btns {
		margin-top: auto;
		flex-direction: column;
		gap: 10px;
	}
	.home_services__item.default .home_services__item--btn-1,
	.home_services__item.default .home_services__item--btn-2 {
		width: 100%;
	}
	.home_services__item.default .home_services__item__col:last-child {
		display: flex;
		flex-direction: column;
		height: 100%;
	}
	.footer {
		padding-bottom: 30px;
	}
	.footer__box {
		gap: 30px;
	}
	.footer__col-1, 
	.footer__col-2,
	.footer__col-3,
	.footer__col-4 {
		width: calc(25% - 23px);
    max-width: 100%;
	}
	.gallery__col:first-child {
		max-width: none;
	}
	.news__article:not(.news__article-big) .news__article__meta {

    align-items: flex-start;
    gap: 10px;
	}
}
@media(max-width: 1023px){
	/* === */
	.container {
		padding: 0 15px;
	}
	h1 {
		font-size: 35px;
	}
	h2 {
		margin-bottom: 15px;
		font-size: 24px;
		line-height: 30px;
	}
	h3, .h3 {
		font-size: 20px;
		line-height: 30px;
	}
	h4, .h4 {
		font-size: 22px;
		line-height: 30px; 
	}
	h5, .h5 {
		font-size: 20px;
		line-height: 30px;
	}
	h6, .h6 {
		font-size: 18px;
		line-height: 30px;
	}
	.header--logo {
		display: flex;
		align-items: center;
	}
	.header__pre-popup {
		position: absolute;
    top: calc(100% + 10px);
    right: 0;
    padding: 20px 15px;
    background: #fff;
    border-radius: 15px;
    width: 100%;
		opacity: 0;
		visibility: hidden;
		transition: var(--transition);
	}
	.header__submenu-inner.scrolled {
		top: 66px;
	}
	.header--burger {
		display: block;
		width: 34px;
		height: 30px;
	}
	.header--burger svg:nth-child(2) {
		display: none;
	}
	.header--burger.active svg:nth-child(2) {
		display: block;
	}
	.header--burger.active svg:nth-child(1) {
		display: none;
	}
	.header__pre-popup.active {
		opacity: 1;
		visibility: visible;
		overflow-y: auto;
		max-height: calc(100dvh - 85px);
		-webkit-overflow-scrolling: touch;
		overscroll-behaviour: contain;
	}
	.header__nav {
		flex-wrap: wrap;
		gap: 10px;
		margin-bottom: 20px;
	}
	.header__nav--a {
		width: 100%;
    height: 40px;
    border-radius: 10px;
    background: var(--Light-Grey, #F2F3EE);
    line-height: 30px;
    padding: 4px 15px;
		font-size: 14px;
		justify-content: space-between;
	}
	.header__nav--a.has-submenu .svg-1 {
		display: none;
	}
	.header__nav--a.has-submenu .svg-2 {
		display: block;
	}
	.header--btn .animation {
		top: 20px;
	}
	.header__pre-popup .header--btn {
		display: block;
	}
	.header--btn {
		width: 100%;
		margin-bottom: 20px;
	}
	.header--btn.desktop {
		display: none!important;
	}
	.header__pre-popup .header__more-info {
		padding: 12px;
		border-radius: 15px;
		background: var(--Light-Grey, #F2F3EE);	
		display: flex;
		flex-direction: column;
		gap: 10px;	
	}
	.header__more-info--title {
		color: var(--Black, #000);
		font-size: 14px;
		line-height: 30px; /* 214.286% */
		text-transform: capitalize;
	}
	.header__more-info--a {
		display: flex;
		gap: 10px;
		align-items: center;
		color: var(--Black, #000);
		font-family: "Josefin Sans";
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		letter-spacing: 0.14px;
		text-decoration: none;
	}
	.header__more-info--a svg path {
		fill: #000;
	}
	.header__more-info__schedule {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.header__more-info__schedule--p {
		color: var(--Black, #000);
		font-size: 14px;
		font-weight: 400;
		line-height: 150%; /* 21px */
		letter-spacing: 0.14px;
	}
	.header__more-info__schedule--p::after {
		content: "|";
		margin: 0 10px;
	}
	.header__more-info__schedule--p:last-child:after {
		display: none;
	}
	.header__submenu-inner {
		top: 76px;
		left: 15px;
		max-height: calc(100dvh - 85px);
    	width: calc(100% - 30px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
    	overscroll-behavior: contain;
    	
	}
	.header__submenu {
		padding: 30px 15px 15px 15px;
		gap: 10px;
	}
	.header__submenu__items--a {
		line-height: 14px;
	}
	.header__submenu__col:nth-child(2) .header__submenu__items--a {
		width: 100%;
	}
	.header__submenu__col {
		padding: 0;
		width: 100%;
	}
	.header__submenu__col:nth-child(2) .header__submenu__items {
		flex-wrap: wrap;
	}
	.header__submenu--remove {
		margin-bottom: 15px;
		width: 100%;
		display: flex;
		align-items: center;
		gap: 5px;
		color: #0D291F;
		font-size: 14px;
		text-transform: capitalize;
		border: none;
		background: transparent;
	}
	.header__submenu__items {
		flex-wrap: wrap;
		flex-direction: row;
	}
	.header__submenu__col:last-child {
		display: block;
		margin-top: 15px;
	}
	.header__submenu--btn {
		margin-left: 0;
		background: transparent;
		color: var(--Dark-Green, #0D291F);
		font-size: 16px;
		text-decoration-line: underline;
		text-underline-position: from-font;
	}
	.header__submenu--btn span {
		padding-left: 0;
	}
	.header__submenu--btn span::after {
		display: none;
	}
	.hero__gallery--img {
		width: auto;
    height: 100%;
	}
	/* === footer === */
	/* === home_services === */
	.home_services__item--h3 {
		margin-bottom: 15px;
	}
	.home_services__item:nth-child(1) .home_services__item__col:nth-child(1), .home_services__item:nth-child(2) .home_services__item__col:nth-child(1), .tabs_services .home_services__item:nth-child(3) .home_services__item__col:nth-child(1),
	.home_services__item:nth-child(1) .home_services__item__col:nth-child(2), .home_services__item:nth-child(2) .home_services__item__col:nth-child(2), .tabs_services .home_services__item:nth-child(3) .home_services__item__col:nth-child(2) {
		width: calc(50% - 15px);
	}
	.home_services__item {
		width: calc(50% - 10px);
	}
	.main__front-page .home_services__item:nth-child(5),
	.main__front-page .home_services__item:nth-child(6),
	.main__front-page .home_services__item:nth-child(7) {
		display: none;
	}
	.home_why_us__col-1.desk {
		display: none;
	}
	.home_why_us__col-2 {
		width: 100%;
		gap: 30px;
	}
	.home_why_us__col-2 .mob {
		display: block;
	}
	.home_why_us--img-3,
	.home_why_us__content,
	.home_why_us__numbers,
	.home_why_us--img-2 {
		width: calc(50% - 15px);
	}
	.home_why_us--img-3 {
		border-radius: 15px;
	}
	.home_why_us--img-2 {
		order: 4;
		border-radius: 15px;
	}
	.home_why_us__numbers {
		flex-wrap: wrap;
		gap: 16px;
		justify-content: center;
		align-items: center;
	}
	.home_why_us__number {
		width: calc(50% - 8px);
		max-width: calc(50% - 8px);
	}
	.home_why_us__number--part-1,
	.home_why_us__number--part-2 {
		text-align: center;
	}
	.gallery__col,
	.gallery__col:first-child {
		width: calc(33% - 10px);
	}
	.news__box {
		gap: 20px;
	}
	.news__col {
		width: calc(50% - 10px);
		gap: 20px;
	}
	
	.footer {
		padding-bottom: 10px;
	}
	.footer__box {
		padding: 30px 15px 15px 15px;
	}
	.footer__col-1 {
		width: 100%;
	}
	.footer--logo,
	.footer--p {
		text-align: center;
	}
	.footer--btn {
		margin: 0 auto 30px auto;
	}
	.footer__socials {
		justify-content: center;
	}
	.footer__col-2 {
		width: 100%;
	}
	.footer--title {
		margin-bottom: 15px;
		text-align: center;
	}
	.footer__col-2 .footer__nav {
		display: flex;
		justify-content: space-between;
		padding: 0 17px;
	} 
	.footer__col-3,
	.footer__col-4 {
		width: calc(50% - 15px);
		padding-bottom: 90px;
	}
	.footer--trent {
		position: absolute;
		width: 200px;
		height: 54px;
		bottom: 0;
		left: calc(100% - 115px);
	}
	.footer--a {
		justify-content: center;
	}
	.footer__col-5 {
		border: none;
		flex-wrap: wrap;
		gap: 30px;
	}
	.footer--copyright,
	.footer__nav {
		width: 100%;
	}
	.footer__nav {
		justify-content: center;
	}
	.footer--copyright {
		order: 2;
		text-align: center;
	}
	.reviews--h2 {
		padding-right: 100px;
	}
}
@media(min-width: 798px){
	.mobile {
		display: none!important;
	}
	.news .glide__slides {
		display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
	}
	.news .glide__slides .glide__slide:first-child {
		grid-row: span 2;
	}
	.home_services__item.default .home_services__item--img {
    height: 227px;
	}
}
@media(max-width: 798px){
	.desktop {
		display: none!important;
	}
	p, li, .p {
		font-size: 14px;
		letter-spacing: 0.14px;
	}
	.btn, .btn2, {
		font-size: 16px;
	}
	.btn3 {
		font-size: 14px;
	}
	.btn, .btn2, .btn3 {
		padding: 0;
		height: 40px;
		line-height: 40px;
		font-size: 16px;
		display: flex;
		justify-content: center;
	}
	.classic.glide__arrows {
    top: -45px;
    right: 0;
    width: 75px;
	}
	.hero .container {
    	padding: 0 15px;
    	transform: none;

  	}
	.hero .glide__slide, .hero,
	.hero .glide__slides {
		max-height: none;
		height: calc(90dvh - 100px);
	}
	.hero__gallery--img {
		width: 100%;
    	height: 100%;
		clip-path: none;
		display: block;
		object-fit: cover;
	}
	.hero__content {
		position: absolute;
    	width: calc(100% - 50px);
    	inset: unset;
    	padding: 15px;
    	background: rgba(0, 0, 0, 0.20);
    	backdrop-filter: blur(2px);
    	-webkit-backdrop-filter: blur(2px);
    	border-radius: 12px;
    	display: flex;
    	flex-direction: column;
    	align-items: center;
    	justify-content: center;
    	gap: 15px;
    	text-align: center;
    	box-sizing: border-box;
    	z-index: 2;
		left: 25px;
		right: 25px;
		top: 50%;
		transform: translateY(-50%);
	}
	.hero--stars--img {
		margin: 0;
	}
	.hero h1 {
		margin: 0;
		font-size: 32px;
		line-height: 30px;
	}
	.hero--p {
		margin-bottom: 10px;
		margin-left: 0;
	}
	.hero--p br {
		display: none;
	}
	.hero--button {
		width: 216px;
		font-size: 16px;
	}
	.glide__arrows {
		width: 75px;
    height: 30px;
		right: calc(50% - 37.5px);
		bottom: 30px;
	}
	.glide__arrow {
		width: 30px;
		height: 30px;
	}
	.glide__arrow svg {
		width: 15px;
		height: 6px;
	}
	/* === home_services === */
	.home_services__items {
		gap: 15px;
	}
	.home_services__item:nth-child(2),
	.home_services__item {
		width: calc(50% - 7.5px);
		flex-direction: column;
		padding: 15px;
		gap: 15px;
	}
	.home_services__item:nth-child(2) .home_services__item__col:nth-child(1),
	.home_services__item:nth-child(2) .home_services__item__col:nth-child(2) {
		width: 100%;
		order: 2;
	}
	.home_services__item:nth-child(2) .home_services__item__btns {
		width: 100%;
		gap: 10px;
		flex-wrap: wrap;
	}
	.home_services__item:nth-child(2) .home_services__item--btn-1,
	.home_services__item:nth-child(2) .home_services__item--btn-2 {
		width: 100%;
	}
	.home_services__item--img {
		width: 100%;
		height: 150px;
	}
	.main__front-page .home_services__item:nth-child(4) {
		display: none;
	}
	.home_services__item:nth-child(1) .home_services__item__col:nth-child(1),
	.home_services__item:nth-child(1) .home_services__item__col:nth-child(2) {
		width: calc(50% - 7.5px);
	}
	.gallery__box {
		flex-wrap: wrap;
	}
	.gallery__col, .gallery__col:first-child {
		width: 100%;
		display: flex;
		gap: 15px;
		flex-wrap: wrap;
		justify-content: center;
	}
	.gallery__col:first-child {
		display: block;
	}
	.gallery--h2 {
		margin-bottom: 30px;
		text-align: center;
	}
	.gallery--p {
		text-align: center;
		padding-bottom: 15px;
	}
	.gallery--img {
		margin-bottom: 0;
		width: calc(50% - 7.5px);
		height: 150px!important;
	}
	.gallery__col:first-child .gallery--img {
		width: 100%;
	}
	.gallery--a {
		width: 250px;
		font-size: 16px;
	}
	.gallery--img.change {
		display: block;
	}
	.transform__box {
		flex-wrap: wrap;
	}
	.transform__col:nth-child(1),
	.transform__col:nth-child(2) {
		width: 100%;
		gap: 7.5px;
	}
	.transform--h2 {
		text-align: center;
	}
	.transform__tab--img {
		position: relative;
        width: 100%;
        height: auto;
        float: none;
        object-fit: cover;
        margin-bottom: 15px;
	}
	.transform__tab {
		position: static;
		position: relative;
		overflow: hidden;
		height: 0;
		padding-bottom: 7.5px;
	}
	.transform__tab.active {
		height: auto;
	}
	.transform__tab--p {
		margin-bottom: 0;
    width: calc(50% - 7.5px);
    float: right;
	}
	.banner--btn {
		width: 164px;
		font-size: 16px;
	}
	.news__col {
		width: 100%;
	}
	.news__col:nth-child(2) {
		display: none;
	}
	.footer--trent {
		left: -115px;
	}
	.news__box {
		padding-bottom: 70px;
	}
	.news--btn {
		width: 250px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 125px);
		font-size: 16px;
	}
	.news__article__content {
		display: flex;
		flex-direction: column;
	}
	.news__article__meta {
		order: 1;
	}
	.news__article--h3 {
		order: 2;
		font-size: 22px;
	}
	.news__article--excerpt {
		order: 3;
	}
	.news__article--a {
		order: 4;
		height: 30px;
		line-height: 30px;
	}
	.news__article--img {
		height: 227px;
	}
	.news__article--a.mt-30 {
		margin-top: 0;
	}
	.popup__box {
		width: calc(100% - 30px);
		max-height: calc(100dvh - 40px);
  		overflow-y: auto;
  		-webkit-overflow-scrolling: touch;
	}
	.footer--a svg {
		margin-bottom: 2px;
	}
}
@media(max-width: 480px){
	h5, .h5 {
		line-height: 30px;
	}
	h6, .h6 {
		font-size: 16px;
	}
	.header {
		padding-top: 10px;
	}
	.header--btn {
		display: none;
	}
	.header__box {
		padding: 15px;
		height: 56px;
	}
	.header--logo svg {
		width: 140px;
	}
	main {
		padding-top: 20px;
	}
	.hero .glide__slide, .hero,
	.hero .glide__slides {
		height: calc(90vh - 100px);
	}
	.hero__content {
		height: 220px;
		bottom: calc(50% - 110px);
	}
	.hero--stars--img {
		width: 95px;
		height: 15px;
	}
	.hero--p {
		font-size: 14px;
		text-align: center;
	}
	.glide__arrows {
		width: 65px;
		height: 30px;
		right: 15px;
		bottom: 15px;
	}
	.hero__gallery--img,
	.hero .glide__slide {
		border-radius: 15px;
	}
	/*  */
	.home_services__item:nth-child(1),
	.home_services__item:nth-child(2),
	.home_services__item {
		flex-direction: column;
		width: 100%;
		border-radius: 15px;
	}
	.popup .form .ts-dropdown .option span {
		font-size: 14px;
		
	}
	.home_services__item:nth-child(1) .home_services__item__col:nth-child(1), .home_services__item:nth-child(1) .home_services__item__col:nth-child(2) {
		width: 100%;
	}
	.home_services__item__btns {
		gap: 15px!important;
		flex-direction: row!important;
	}
	.home_services__item--btn-1,
	.home_services__item--btn-2 {
		width: calc(50% - 7.5px)!important;
		
	}
	.home_services--more {
		margin-top: 20px;
	}
	.home_why_us__box {
		padding: 15px;
		border-radius: 15px;
	}
	.home_why_us--img-3, .home_why_us__content, .home_why_us__numbers, .home_why_us--img-2 {
		width: 100%;
	}
	.home_why_us__number--part-1 {
		font-size: 36px;
	}
	.home_why_us--a {
		width: 100%;
	}
	.marquee__group img {
		margin-right: 30px;
	}
	.gallery--a {
		width: 100%;
	}
	.transform__box {
		padding: 15px;
		border-radius: 15px;
		gap: 15px;
	}
	.transform__tab--img,
	.transform__tab--p {
		width: 100%;
		height: auto;
		float: none;
		margin-top: 15px;
	}
	.transform__tab--p {
		margin-bottom: 15px;
	}
	
	.reviews .classic.glide__arrows {
		top: calc(100% + 15px);
		right: calc(50% - 37.5px);
	}
	.banner__box {
		padding: 60px 15px;
	}
	.news--h2 {
		width: calc(100% - 70px)
	}
	.news__box {
		padding-bottom: 70px;
		position: relative;
	}
	.news--btn {
		position: absolute;
		width: 100%;
		height: 40px;
		left: 0;
		bottom: 0px;
	}
	.news__article {
		padding: 20px 15px;
		border-radius: 15px;
	}
	.news__article__meta--item {
		gap: 5px;
    font-size: 12px;
		letter-spacing: 0.12px;
	}
	.news__article__meta--item svg {
		width: 15px;
		height: 15px;
		margin-bottom: 3px;
	}
	/* === */
	.footer__col-2 .footer__nav {
		flex-direction: column;
	}
	.footer__col-3, .footer__col-4 {
		width: 100%;
	}
	.footer--trent {
		left: 0;
	}
	.footer__nav--a, .footer--a {
		text-align: center;
		font-size: 14px;
		letter-spacing: 0.14px;
	}
	.footer--title {
		font-size: 16px;
	}
	.footer__col-3, .footer__col-4 {
		padding-bottom: 0;
	}
	.footer--trent {
		position: static;
		margin: 30px auto 0 auto;
	}
	.footer__col-5 {
		padding: 0;
	}
	.footer__col-5 {
		gap: 20px;
	}
	.reviews--h2 {
		padding-right: 0;
	}
	.news__box {
		gap: 30px;
	}
	.news .classic.glide__arrows {
		top: -75px;
	}
	.popup.d-f {
		display: flex;
		align-items: center;
	}
	.popup__box {
		border-radius: 15px;
		padding: 15px;
		margin-bottom: 60px;
	}
	.popup__box--close {
		top: 15px;
		right: 15px;
		width: 15px;
		height: 15px;
	}
	.popup__box--close svg {
		width: 15px;
		height: 15px;
	}
	.popup--h3 {
		margin-bottom: 15px;
		padding-top: 20px;
	}
	.popup--img {
		height: 70px;
	}
	.popup__form {
		padding-top: 15px;
		margin-top: 0;
	}
	.popup .form__field {
		width: 100%;
	}
	.popup__success .popup--img {
		height: 100px;
	}
	.popup__text {
		margin-bottom: 15px;
	}
	.form .ts-control input {
		user-select: none!important;
		pointer-events: none!important;
	}
	.form .ts-control::after {
		bottom: 14px;
	}
	/*.ts-control::before {
		content: "";
		display: block;
		width: 100%;
		height: 40px;
		position: absolute;
		bottom: 0;
		left: 0;
	}*/
	.front-page-main .home_services__item.default {
		display: none;
	}
	.front-page-main .home_services__item.default:nth-child(3) {
		display: flex;
	}
	.gallery--a {
		margin-top: 15px;
	}
	.transform__tab--img {
		height: 142px;
	}
}

.calendly-inline-widget {
  overflow-y: hidden !important;
}

@media (max-width: 798px) {
    .news__article {
        flex-direction: column;
    }

    .news__article--img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .news__article__content {
        width: 100%;
    }
	.news__article--h4 {
		order: 2;
		padding-top: 15px;
		-webkit-line-clamp: unset;
        overflow: visible;
        display: block;
	}
	.news__article--p {
    order: 3;
	}
	.form__field--input,
	.form__field--textarea,
	.form .ts-control input {
		font-size: 14px;
		padding: 10px 15px;
		height: auto;
	}
	.form__box {
		gap: 12px;
	}
}

@media (max-width: 798px) {
	.btn2.footer--btn {
		width: 250px;
	}
}

.img_text--content {
	margin-bottom: 30px;
}

.footer--recaptcha {
    display: inline-block;
    margin-right: 15px;
    font-size: 10px;
}

.footer--recaptcha a {
    text-decoration: underline;
	color: #fff;
}

@media (max-width: 768px) {

    .footer__col-5 .footer__nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px 18px;
    }

    .footer--recaptcha {
        flex: 0 0 100%;
        margin: 0 0 10px 0;
        display: block;
    }

    .footer__col-5 .footer__nav > a {
        display: inline-block;
        white-space: nowrap;
        margin: 0;
    }

}