/* === style-extra */


/* ===== other styles ===== */
.b-breadcrumbs {
	padding: 0;
}
.b-breadcrumbs__item {
	list-style: none;
	display: inline;
}
.b-breadcrumbs__link,
.b-breadcrumbs {
	color: #FFF;
	text-align: center;
	text-shadow: 0 4px 10px #000;
	font-family: "Josefin Sans", sans-serif !important;
	font-variant: normal;
    font-variant-caps: normal;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%; /* 18px */
	letter-spacing: 0.12px;
	text-decoration: none;
}
.b-breadcrumbs__link,
.b-breadcrumbs__link span,
.b-breadcrumbs__item span,
.b-breadcrumbs__item a,
.b-breadcrumbs__item a span {
    font-family: "Josefin Sans", sans-serif !important;
    font-weight: 700 !important;
}
a.b-breadcrumbs__link::after {
	content: " / "
}
a.b-breadcrumbs__link:hover {
	color: var(--Dark-Green);
}
.hero2 {

}
.hero2__box {
	padding: 105px 30px;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
}
.hero2 h1 {
	text-align: center;
	margin-bottom: 10px;
	color: #FFF;
}
.breadcrumbs {
	color: #FFF;
	text-align: center;
	text-shadow: 0 4px 10px #000;

	/* Breadcrumbs */
	font-family: "Josefin Sans";
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%; /* 18px */
	letter-spacing: 0.12px;
}

/* === story === */

.story__box {
	padding: 30px;
	display: flex;
	gap: 30px;
	border-radius: 30px;
	background: #FFF;
}
.story__col-1 {
	width: 350px;
	position: relative;
}
.story--img-l,
.story--img-r {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}
.story__col-2 {
	width: calc(100% - 380px);
}
.story--h5 {
	color: var(--Accessory-Green, #6A847B);
}
.story--h2 {
	margin: 30px 0;
}
.story__content {
	display: flex;
	gap: 30px;
	padding-top: 30px;
	padding-bottom: 24px;
	border-top: 1px solid var(--Accessory-Green, #6A847B);
}
.story__text {
	width: calc(100% - 258px);
}
.story__text p {
	margin-bottom: 24px;
}
.story__picture {
	width: 228px;
	position: relative;
}
.story__text--author {
	margin-top: 30px;
	color: var(--Dark-Green, #0D291F);
	font-weight: 400;
}
.story__text--author span:nth-child(1) {
	font-family: "Bad Script";
	font-size: 40px;
	font-style: normal;
	line-height: 30px; /* 75% */
	text-transform: capitalize;
}
.story__text--author span:nth-child(2) {
	font-family: Inter;
	font-size: 18px;
	font-style: italic;
	line-height: 30px;
	text-transform: capitalize;
}

/* === process === */

.process--h2 {
	margin-bottom: 37px;
}
.process__box {
	display: flex;
	gap: 30px;
	position: relative;
}
.process__item {
	width: calc(25% - 130px);
	height: 500px;
	transition: 0.7s;
	border-radius: 15px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	overflow: hidden;
  cursor: pointer;
}
.process__item--h3,
.process__item--p {
	margin-bottom: 15px;
	color: #FFF;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.process__item--btn {
  font-size: 14px;
  line-height: 30px;
  padding: 2.5px 0;
  border-radius: 10px;
}
.process__item.active {
	width: 500px;
}
.process__item--h3,
.process__item--p,
.process__item--btn-inner {
  -webkit-transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
  transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
}
.process__item--h3 {
  transition-delay: 50ms;
}
.process__item--p {
  transition-delay: 25ms;
}
.process__item--btn-inner {
  transition-delay: 2ms;
}
.process__item__content {
	opacity: 0;
}
.process__item.active .process__item__content {
	opacity: 1;
}
.process__item.active .process__item--h3,
.process__item.active .process__item--p,
.process__item.active .process__item--btn-inner {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.process__item.active .process__item--h3 {
  transition-delay: 100ms;
}
.process__item.active .process__item--p {
  transition-delay: 250ms;
}
.process__item.active .process__item--btn-inner {
  transition-delay: 320ms;
}
/* === experienced === */

.experienced__box {
	display: flex;
	gap: 30px;
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
}
.experienced__col-1 {
	width: 500px;
	position: relative;
	overflow: hidden;
	border-radius: 15px;
}
.experienced__tab--img,
.experienced__tab--img-2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1.2s ease;
}
.experienced__tab--img.active,
.experienced__tab--img-2 {
	opacity: 1;
  visibility: visible;
}
.experienced__tab--btn {
	max-width: none!important;
}
.experienced__col-2 {
	width: calc(100% - 530px);
}
.experienced__opens {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--Accessory-Green, #6A847B);
}
.experienced__open {
	width: fit-content;
	padding: 5px 30px;
	white-space: nowrap;
	border-radius: 15px;
	background: rgba(13, 41, 31, 0.10);
	color: #000;
	font-size: 14px;
	line-height: 30px; /* 214.286% */
	transition: var(--transition);
	cursor: pointer;
}
.experienced__open.active {
	background: #0D291F;
	color: #FFF;
}
.experienced__tabs {
	position: relative;
}
.experienced__tab {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1.2s ease;
}
.experienced__tab.active  {
	opacity: 1;
  visibility: visible;
}
.experienced__tab__content {
	margin-bottom: 30px;
	display: flex;
	gap: 30px;
}
.experienced__tab--col-1 {
	width: 180px;
	position: relative;
	overflow: hidden;
	border-radius: 15px;
}
.experienced__tab--col-2 {
	width: calc(100% - 210px);
}
.experienced__tab--col-2 p {
	margin-bottom: 30px;
}
.experienced__tab--col-2 ul {
	padding-left: 0;
}
.experienced__tab--col-2 li {
	margin-bottom: 8px;
	display: block;
	padding-left: 26px;
	position: relative;
	color: #000;
	font-family: "Josefin Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
	letter-spacing: 0.16px;
}
.experienced__tab--col-2 li::before {
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	background: url(assets/icons/experienced__tab--li.svg);
	position: absolute;
	top: 3px;
	left: 2.5px;
}

/* === all_services === */

.all_services--h2 {
	line-height: 60px;
}
.all_services .glide__slide {
	height: auto;
}
.all_services__item {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.all_services__item--btn {
	margin-top: auto;
	max-width: 100%!important;
	min-width: 100%!important;
	width: 100%;
	height: 45px;
	padding: 0;
	text-align: center;
	line-height: 45px;
}
.all_services__item--img {
	max-width: 100%;
	display: block;
	object-fit: cover;
	margin-bottom: 30px;
	border-radius: 15px;
	height: 227px;
}
.all_services__item--all {
	position: absolute;
	top: -75px;
	right: 115px;
}

/* === expertise === */

.expertise__box {
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
	display: flex;
	gap: 30px;
}
.expertise__col-1 {
	width: 50%;
}

.expertise--h2 {
	text-align: right;
}
.expertise__text p {
	margin-bottom: 30px;
	text-align: right;
}
.expertise__progress {
	margin-bottom: 15px;
	margin-left: auto;
	max-width: 100%;
	width: 600px;
}
.expertise__progress--name {
	text-align: right;
}
.expertise__progress__bar {
	margin: 5px 0;
	width: 100%;
	height: 5px;
	position: relative;
	background: var(--Light-Grey);
}
.expertise__progress__bar--change {
	position: absolute;
	right: 0;
	top: 0;
	width: 0%;
	height: 100%;
	transition: 0.1s;
	background: var(--Dark-Green);
}
.expertise__all {
	margin: 30px 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
}
.expertise__all--text {
	text-align: right;
}
.expertise__all--number {
	color: var(--Dark-Green, #0D291F);
	font-family: "Copperplate Gothic Bold";
	font-size: 90px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
}
.expertise__all--undertext {
	text-align: right;
	font-weight: 700;
	font-style: italic;
}
.expertise__col-2 {
	width: calc(50% - 30px);
	display: flex;
	gap: 15px;
}
.expertise--img {
	max-width: calc(25% - 12px);
	max-height: 100%;
	object-fit: cover;
	border-radius: 15px;
	animation: fly 4s linear infinite;
	height: calc(100% - 86.2px);
}
.expertise--img:nth-child(2n){
	animation-delay: 2s;
}
@keyframes fly {
  0% {
    transform: translateY(0);
  }
	50% {
    transform: translateY(80px);
  }
  100% {
    transform: translateY(0);
  }
}
/* === tabs_services === */

.tabs_services__opens {
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: center;
}
.tabs_services__open--inner {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}
.tabs_services .home_services__items {
	display: none;
}
.tabs_services .home_services__items.active {
	display: flex;
}
.tabs_services .home_services__item--h3 {
	font-size: 24px;
	line-height: 30px;
}

/* === map === */

.map__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	margin-bottom: 30px;
}
.map--h2 {
	margin-bottom: 0;
}
.map--p {
	margin-bottom: 30px;
}
.map--iframe {
	border-radius: 30px;
	height: 400px;
	width: 100%;
}

/* === text_block === */

.text_block__box {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
}
.text_block--h2 {
	width: 100%;
	margin-bottom: 0;
}
.text_block__col {
	width: calc(50% - 15px);
	display: flex;
    flex-direction: column;
}
.text_block--text {
	margin-bottom: 30px;
}
.text_block--img {
	width: 100%;
	max-width: 100%;
	border-radius: 15px;
	height: 100%;
}
.text_block__imgs {
	margin-bottom: 30px;
	display: flex;
	gap: 30px;
}
.text_block__imgs .text_block--img {
	width: calc(50% - 15px);
	max-height: 100%;
}

/* === faq === */

.faq__box {
	display: flex;
	gap: 30px;
}
.faq__col-1 {
	width: 450px;
	display: flex;
  	flex-direction: column;
}
.faq__col-2 {
	width: calc(100% - 480px);
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.faq--h3 {
	margin-bottom: 30px;
	width: 300px;
	max-width: 100%;
	font-size: 28px;
	line-height: 30px;
}
.faq--p {
	margin-bottom: 30px;
}
.faq--img {
	border-radius: 15px;
	max-width: 100%;
	height: 100%;
}
.faq__item {
	padding: 15px 30px;
	border-radius: 15px;
	background: #FFF;
	position: relative;
	cursor: pointer;
	transition: var(--transition);
}
.faq__item--btn {
	position: absolute;
	top: 15px;
	right: 30px;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	background: var(--Light-Green-Button);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.faq__item--h4 {
	font-size: 20px;
	line-height: 30px;
	padding-right: 60px;
}
.faq__item__answer {
	overflow: hidden;
	position: relative;
	height: 0;
	transition: var(--transition);
}
.faq__item__answer--text {
	padding-top: 15px;
}
.faq__item.active {
	background: var(--Light-Green-Button);
}
.faq__item--btn rect:last-child {
	transition: var(--transition);
}
.faq__item.active .faq__item--btn rect:last-child  {
	opacity: 0;
}

/* === index === */

.blog .hero2 {
	margin-bottom: 60px;
}
.index-post__box {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
.index-post__box .news__article {
	width: calc(50% - 15px);
}
.news__article--h2 {
	margin: 15px 0;
	font-size: 24px;
	line-height: 30px;
	height: auto;
}
.index-post .news__article-big .news__article--img {
	min-height: 227px;
}
.index-post .news__article__content {
	display: flex;
  flex-direction: column;
  height: 100%;
}
.index-post .news__article--a {
	margin-top: auto;
}
.pagination {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.pagination a,
.pagination span {
	width: 41px;
	height: 39px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--Light-Green-Button);
	color: var(--Camouflage, #0B1612);
	text-align: center;
	font-family: "Josefin Sans";
	font-size: 18px;
	transition: var(--transition);
	user-select: none;
	text-decoration: none;
}
.pagination svg,
.pagination path {
	transition: var(--transition);
}
.pagination span.current,
.pagination a:hover {
	color: var(--White, #FFF);
	background: var(--Dark-Green, #0D291F);
}
.pagination a:first-child,
.pagination a:last-child {
	width: 39px;
	margin: 0 20px;
}
.pagination a.disable svg {
	opacity: 0.5s;
}
.pagination a:first-child:hover svg,
.pagination a:last-child:hover svg {
	opacity: 1;
}
.pagination a:first-child:hover path,
.pagination a:last-child:hover path {
	fill: #fff;
}
.pagination a.pagination--prev {
	order: 1;
}
.pagination a.pagination--next {
	order: 9999;
}
.pagination a,
.pagination span {
	order: 3;
}
.pagination.show-pseudo-first .dots ~ a.page-numbers {
	order: 4;
}
.pagination.show-pseudo-last a:nth-child(2) {
	order: 3;
}
.pagination.show-pseudo-last a:nth-child(3) {
	order: 2;
}
.pagination.hide-dots .dots {
	display: none;
}

/* === single/post === */

article .hero2 {
	margin-bottom: 60px;
}
.single-main .hero2__box {
	height: 500px;
	position: relative;
}
.article--date {
	position: absolute;
	bottom: 15px;
	left: 15px;
	padding: 5px 15px;
	white-space: nowrap;
	border-radius: 10px;
	background: var(--Light-Green-Button);
	color: #000;
	font-family: "Josefin Sans";
	font-size: 14px;
	line-height: 150%; /* 21px */
	letter-spacing: 0.14px;
}
.entry-content {
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
}
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin: 30px 0;
}
.entry-content > *:first-child {
	margin-top: 0!important;
}
.entry-content img {
	width: 100%;
	height: auto;
}
.entry-content p {
	margin-bottom: 15px;
}
table {
	margin-bottom: 30px;
	border-left: 1px solid  rgba(128, 128, 128, 0.55);
	border-spacing: 0;
	position: relative;
	overflow-x: auto;
	max-width: calc(100% + 30px);
	margin-right: -30px;
	padding-right: 30px;
	display: block;
	width: fit-content;
}
thead {
	
	border-bottom: 1px solid  rgba(128, 128, 128, 0.55);
}
th,td {
	border-right: 1px solid  rgba(128, 128, 128, 0.55);
	border-bottom: 1px solid  rgba(128, 128, 128, 0.55);
	padding: 10px 12px;
	font-size: 18px;
	color: #000;
	font-weight: 400;
	line-height: 30px; 
	max-width: 210px;
	min-width: 163px;
}
th {
	border-top: 1px solid  rgba(128, 128, 128, 0.55);
	text-transform: capitalize;
	text-align: left;
}
td {
	font-family: "Josefin Sans";
	font-size: 16px;
	line-height: 150%; /* 24px */
	letter-spacing: 0.16px;
}
p a {
	color: var(--Dark-Green);
	font-family: "Josefin Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	letter-spacing: 0.16px;
	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;
}
blockquote {
	margin-bottom: 15px;
	display: flex;
	gap: 30px;
	padding: 30px;
	border-radius: 20px;
	background: var(--Light-Green-Button);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.10);
}
blockquote::before {
	content: "";
	display: block;
	min-width: 50px;
	width: 50px;
	height: 50px;
	background: url(assets/icons/blockquote.svg) no-repeat center center/cover;
}
.entry-content blockquote p {
	margin: 0;
}
.entry-content nav {
	margin-top: 45px;
}
.entry-content .nav-links {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.entry-content .nav-links div {
	width: fit-content;
}
.entry-content .nav-links a {
	display: flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	height: 45px;
	padding: 0 16px;
	color: var(--Black, #000);
	font-size: 18px;
	text-decoration: none;
	border-radius: 10px;
	background: var(--Light-Green-Button, #E7EAE9);
}

/* === service_block === */

.service_block_3 {
	margin-bottom: 0;
}
.service_block--text {
	margin-bottom: 30px;
}
.service_block__box {
	display: flex;
	gap: 30px;
}
.service_block--img {
	border-radius: 15px;
}
.service_block__col-1 {
	width: 450px;
	position: relative;
	overflow: hidden;
	border-radius: 15px;
}
.service_block__col-1 .service_block--img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.service_block_2 .service_block--img {
	width: 100%;
	height: 227px;
}
.service_block__col-2 {
	width: calc(100% - 480px);
}
.service_block__items {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.service_block__item {
	width: calc(33% - 27px);
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.service_block__item--text {
	margin-top: auto;
}
.service_faq .faq__col-2 {
	width: 100%;
}
.faq__item--h3 {
	font-size: 20px;
	line-height: 30px;
	padding-right: 40px;
}

/* === multimap === */

.multimap__box {
	padding: 30px;
	display: flex;
	gap: 30px;
	border-radius: 30px;
	background: #FFF;
}
.multimap__col-1 {
	width: calc(100% - 560px);
}
.map--iframe2 {
	width: 100%;
	height: 375px;
	border-radius: 15px;
}
.multimap__col-2 {
	width: 530px;
}
.multimap__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.multimap--btn {
	width: calc(50% - 8px);
	padding: 15px;
	
}
.multimap--btn h3 {
	font-size: 18px;
	line-height: 30px;
	text-align: left;
}
.error-404 {
	margin-bottom: 30px;
}
.error-404__box {
	border-radius: 30px;
	padding: 30px;
	height: 600px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
	justify-content: center;
}
.error-404-h1 {
	color: #FFF;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	font-size: 150px;
	text-transform: capitalize;
	text-align: center;
}
.error-404--h3 {
	text-align: center;
	color: #FFF;
}

/* === service_area === */

.multimap2 {

}
.multimap--text {
	margin-bottom: 30px;
}
.multimap2 .multimap__btns {
	margin-top: 30px;
}
.multimap2 .multimap--btn {
	width: calc(25% - 12px);
}
.multimap--btn span,
.multimap--btn:hover span {
	padding-left: 0;
}
.btn.multimap--btn span::after {
	opacity: 1;
}
.multimap2 .multimap--btn span::after,
.multimap2 .multimap--btn:hover span::after {
	right: 5px;
}
.multimap2 .multimap--btn span {
	display: block;
}
.img_text_1__box {
	display: flex;
	gap: 30px;
}
.img_text_1__col-1 {
	width: calc(100% - 620px);
	position: relative;
}
.img_text--img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 15px;
}
.img_text_1__col-2 {
	width: 590px;
}
.img_text--btn {
	margin-top: 30px;
}
.img_text--content * {
	margin-bottom: 15px;
}
.img_text--content *:last-child {
	margin-bottom: 0;
}
.img_text_1__box {
	display: flex;
	gap: 30px;
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
}
.img_text_2__col-1 {
	width: calc(100% - 395px);
}
.img_text_2__col-2 {
	width: 365px;
	position: relative;
}
.service_area-main .all_services__item {
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
}
.service_area-main .img_text_1 .img_text_1__box {
	padding: 0;
	border-radius: 0;
	background: transparent;
}
/* === single-service-area === */

.single-city-main .img_text_1 .img_text_1__box {
	padding: 0;
	background: transparent;
	border-radius: 0;
}
.single-city-main .img_text_1 .img_text_1__col-1 {
	width: 443px;
	order: 2
}
.single-city-main .img_text_1 .img_text_1__col-2 {
	width: calc(100% - 473px);
	order: 1;
}
.single-city-main .all_services__item {
	padding: 30px;
	background: #fff;
	border-radius: 30px;
}
/* === info === */

.info__box {
	display: flex;
	gap: 45px;
	justify-content: space-between;
}
.info__item {
	display: flex;
	align-items: center;
	gap: 15px;
	width: calc(33% - 30px);
	height: 143px;
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.10);
}
.info__item__content {
	width: calc(100% - 65px);
}
.info__item--p {
	margin-bottom: 5px;
	color: var(--Black, #000);
}
.info__item--a {
	text-decoration: none;
}

/* === discuss === */

.discuss__box {
	display: flex;
	gap: 30px;
	justify-content: space-between;
}
.discuss__col-1 {
	width: calc(100% - 675px);
	max-width: 615px;
	position: relative;
}
.discuss--text {
	margin-bottom: 30px;
}
.discuss--img {
	max-width: 100%;
	border-radius: 30px;
}
.discuss__col-2 {
	width: 100%;
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
}
.discuss--h3 {
	margin-bottom: 30px;
	text-align: center;
}
.discuss .form__field {
	width: calc(50% - 7.5px);
}
.discuss .form__field:last-child {
	width: 100%;
}

/* === careers === */

.careers_info {
	margin-bottom: 30px;
}
.careers__box {
	display: flex;
	gap: 30px;
}
.careers--btn,
.careers--close {
	display: none;
}
.careers__col-1 {
	width: calc(100% - 380px);
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.careers__item {
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
	display: flex;
	gap: 30px;
}
.careers__item__col-1 {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	width: calc(41.47% - 15px);
}
.careers__item--img {
	position: absolute;
	width: 100%;
	height: 100%;
}
.careers__item__col-2 {
	width: calc(58.53% - 15px);
}
.careers__item--h3 {
	margin-bottom: 30px;
}
.careers__col-2 {
	width: 350px;
	position: relative;
}
.careers__sticky {
	position: sticky;
  top: 30px;
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
}
.careers--h4 {
	text-align: center;
	margin-bottom: 15px;
}
.careers__form .form__box {
	margin-bottom: 15px;
}
.careers__form .form__field {
	width: 100%;
}
.careers__form  .form--p {
	margin-bottom: 15px;
}
.careers__form .form--submit {
	width: 100%;
	padding: 7.5px;
}
.careers__form .form--success,
.careers__form .form--error {
	margin-top: 15px;
}

/* === img_text_3 === */

.img_text_3__box {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
.img_text_3__col-1 {
	width: 590px;
}
.img_text_3__col-2 {
	width: calc(100% - 620px);
	position: relative;
}

/* === single-service_in_city === */

.single-service_in_city-main .hero2 {
	margin-bottom: 60px;
}
.sec_content .container p {
	margin-bottom: 15px;
}
.sec_content .container p:last-child {
	margin-bottom: 0;
}
.single-service_in_city-main .img_text_1 .img_text_2__col-1 {
	order: 2;
}
.single-service_in_city-main .img_text_1 .img_text_2__col-2 {
	order: 1;
}
.single-service_in_city-main .img_text_1 .img_text_1__box {
	padding: 0;
	background: transparent;
	border-radius: 0;
}
.single-service_in_city-main .img_text_2 .img_text_2__col-1 {
	order: 2;
}
.img_text_4__box {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
.img_text_4__col-2 {
	width: calc(100% - 480px);
}
.img_text_4__col-1 {
	width: 450px;
	position: relative;
}
.img_text_4__box .img_text--h2 {
	width: 100%;
	margin-bottom: 0;
}
/* === big_gallery === */

.big_gallery__box {
	display: flex;
	gap: 45px;
}
.big_gallery__col-1 {
	width: calc(100% - 475px);
}
.big_gallery__col-2 {
	width: 430px;
	position: relative;
}
.masonry {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-height: 1650px;
    overflow: hidden;
    grid-auto-flow: dense; /* ← add this */
}
.masonry__item {
	break-inside: avoid;
	height: 230px;
	position: relative;
}
.masonry__item.disable {
	display: none;
}
.masonry__item.big-verticale {
	grid-row: span 2;
	height: 475px;
}
.masonry__item.big-horizontal {
	grid-column: 1 / -1;
	height: 230px;
}
.masonry__item--img {
	width: 100%;
	height: 100%;
  break-inside: avoid;
	object-fit: cover;
	border-radius: 15px;
}

.big_gallery__services {
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
	display: flex;
	flex-direction: column;
	gap: 15px;
	opacity: 0;
	position: relative;
	width: 100%;
}
@media(min-width: 1023px){
  .big_gallery__col-2 {
    align-self: flex-start;

  }

  .big_gallery__services {
    position: relative;
  }
}
	.big_gallery__services.is-bottom {
		position: fixed;
		width: 100%;
		bottom: 20px;
	}
}

.big_gallery__services.small {
	max-height: 750px;
	overflow-y: auto;
}
.big_gallery--service {
	width: 100%;
	height: auto;
	padding: 15px;
	border-radius: 15px;
	background: var(--Light-Grey);
	transition: var(--transition);
	cursor: pointer;
	color: var(--Black, #000);
	font-size: 16px;
	line-height: 30px; /* 166.667% */
	text-transform: capitalize;
	white-space: normal;
    word-break: break-word;
}
.big_gallery--service.active {
	background: var(--Dark-Green);
	color: var(--White);
}
.big_gallery--show-more {
	display: none;
	margin: 30px auto 0 auto;
}
.big_gallery__popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 12;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	
}
.big_gallery__popup.active {
	opacity: 1;
	visibility: visible;
}
.big_gallery__popup--fone {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(4px);
	cursor: pointer;
}
.big_gallery__popup .container {
	padding-top: 15px;
	padding-bottom: 15px;
	height: 100%;
}
.big_gallery__popup__box {
	position: relative;
  display: flex;
  align-items: center;
	height: 100%;
	padding: 30px;
	border-radius: 30px;
	background: #FFF;
	box-shadow: 0 4px 20px 0 rgba(13, 41, 31, 0.30);
}
.big_gallery__popup--close {
	position: absolute;
	width: 18px;
	height: 18px;
	top: 13px;
	right: 13.5px;
	cursor: pointer;
}
.big_gallery__popup .glide {
	max-height: 100%;
}
.big_gallery__popup .glide__slides {
	align-items: center;
}
.big_gallery__popup .glide__slide {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.big_gallery__popup .glide__slide .inner {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	max-height: calc(100vh - 120px);
  width: 100%;
  height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.big_gallery__popup .glide__slide img {
	border-radius: 15px;
  width: 100%;
}
.big_gallery__popup .classic.glide__arrows {
	padding: 0 30px;
	top: calc(50% - 25px);
	right: 0;
	width: 100%;
}
.big_gallery__popup .classic.glide__arrow {
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

/* otger pages */
@media(min-width: 1440px){
	.discuss__box {
		justify-content: center;
		gap: 60px;
	}
}
@media(max-width: 1279px){
	.experienced__col-1,
	.experienced__col-2 {
		width: calc(50% - 15px);
	}
	.experienced__tab--col-1 {
		display: none;
	}
	.experienced__tab--col-2 {
		width: 100%;
	}
	.experienced__opens {
		flex-wrap: wrap;
	}
	.info__box {
		gap: 20px;
	}
	.info__item {
		width: calc(33% - 10px);
	}
	.discuss__col-1 {
		width: calc(45% - 30px);
	}
	.discuss__col-2 {
		width: 55%;
	}
	.index-post .news__article__content {
		height: auto;
	}
	.news__article--h2 {
		min-height: 60px;
		height: auto;
	}
	article .hero2 {
		margin-bottom: 45px;
	}
	.masonry {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media(max-width: 1023px){
	.story__text {
		width: 100%;
	}
	.story__picture {
		display: none;
	}
	.info__box {
		gap: 15px;
		flex-wrap: wrap;
		justify-content: center;
	}
	.info__item {
		width: calc(50% - 7.5px);
		padding: 15px 30px;
	}
	.service_block__items {
		gap: 15px;
	}
	.service_block__item {
		width: calc(33% - 8px);
	}
	.multimap__box {
		flex-wrap: wrap;
	}
	.multimap__col-1,
	.multimap__col-2 {
		width: 100%;
	}
	.multimap--btn,
	.multimap2 .multimap--btn {
		width: calc(33% - 8px);
	}
	.service_block__col-1,
	.service_block__col-2 {
		width: calc(50% - 15px);
	}
	.careers--btn {
		margin-top: 30px;
		width: 100%;
		max-width: 100%;
		display: block;
	}
	.careers__col-1 {
		width: 100%;
	}
	.careers__col-2 {
		position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
		opacity: 0;
		visibility: hidden;
		transition: var(--transition);
	}
	.careers__col-2::before {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 1;
		background: var(--Light-Grey, #F2F3EE);
    filter: blur(4px);
	}
	.careers__col-2.active {
		opacity: 1;
		visibility: visible;
	}
	.careers__sticky {
		max-width: 100%;
		width: 380px;
		position: relative;
		z-index: 2;
	}
	.careers__form .form--submit {
		line-height: 30px;
	}
	.careers--close {
		position: absolute;
		width: 15px;
		height: 15px;
		top: 15px;
		right: 15px;
		cursor: pointer;
		display: block;
		border: none;
	}
	.big_gallery__box {
		gap: 30px;
		flex-wrap: wrap;
	}
	.big_gallery__col-1,
	.big_gallery__col-2 {
		width: 100%;
	}
	.big_gallery__col-1 {
		order: 2;
	}
	.masonry {
		grid-template-columns: repeat(3, 1fr);
	}
	.img_text_1__col-1,
	.img_text_1__col-2 {
		width: calc(50% - 15px);
	}
	.faq--h2 {
		margin-bottom: 30px;
	}
	.img_text_4__col-1,
	.img_text_4__col-2 {
		width: calc(50% - 15px);
	}
	.img_text_3__col-1 {
		width: calc(100% - 330px);
	}
	.img_text_3__col-2 {
		width: 300px;
	}
}
@media(max-width: 798px){
	.single-service_in_city-main .hero2 {
		margin-bottom: 45px;
	}
	.experienced__box {
		flex-wrap: wrap;
	}
	.experienced__col-1, .experienced__col-2 {
		width: 100%;
	}
	.experienced__col-1 {
		order: 2;
		width: 100%;
		height: 274px;
	}
	.all_services__item--all {
		top: -65px;
		right: 90px;
	}
	.process__box {
		flex-direction: column;
		gap: 15px;
	}
	.process__item {
		width: 100%;
    height: 120px;
	}
	.process__item.active {
		width: 100%;
		height: 333px;
	}
	.process__item--btn {
		padding: 0 30px;
	}
	.discuss__box {
		flex-direction: column;
	}
	.discuss__col-1,
	.discuss__col-2 {
		width: 100%;
		max-width: none;
	}
	.discuss--img {
    border-radius: 15px;
    width: 100%;
    height: 210px;
    object-position: top;
	}
	.info__item {
		width: 100%;
		padding: 15px;
		border-radius: 15px;
		height: auto;
	}
	.info__item svg {
		width: 30px;
	}
	.info__item__content {
		width: calc(100% - 45px);
	}
	.text_block__col {
		width: 100%;
	}
	.text_block__box .text_block__col:nth-child(2) {
		display: flex;
		flex-direction: column;
	}
	.text_block__box .text_block__col:nth-child(2) .text_block--text {
		order: 2;
		margin-bottom: 0;
	}
	.text_block__box .text_block__col:nth-child(2) .text_block--img {
		margin: 0 auto 30px auto;
	}
	.faq__box {
		flex-wrap: wrap;
	}
	.faq__col-1,
	.faq__col-2,
	.faq--h3,
	.faq--img {
		width: 100%;
	}
	.handyman-services-main .tabs_services .home_services__item:nth-child(3) {
		width: calc(50% - 7.5px);
    flex-direction: column;
    padding: 15px;
    gap: 15px;
	}
	.handyman-services-main .tabs_services .home_services__item:nth-child(3) .home_services__item__col:nth-child(1), 
	.handyman-services-main .tabs_services .home_services__item:nth-child(3) .home_services__item__col:nth-child(2) {
		width: 100%;
	}
	.index-post__box {
		gap: 15px;
	}
	.index-post__box .news__article {
		width: 100%;
	}
	.news__article--h2 {
		min-height: 0;
		font-size: 22px;
		order: 2;
	}
	.service_block__items {
		gap: 15px;
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-right: 15px;
		margin-right: -15px;
		padding-bottom: 10px;
	}
	.service_block__item {
		min-width: 300px;
	}
	.multimap--btn, .multimap2 .multimap--btn {
		padding: 15px;
		height: auto;
		width: calc(50% - 7.5px);
	}
	.error-404-h1 {
		font-size: 120px;
	}
	.masonry {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.img_text_1__box {
		flex-wrap: wrap;
	}
	.img_text_1__col-1,
	.img_text_1__col-2 {
		width: 100%;
	}
	.img_text_1__col-1 {
		height: 180px;
	}
	.service_area-main .all_services .classic.glide__arrows,
	.single-city-main .all_services .classic.glide__arrows {
			display: none;
	}
	.service_area-main .all_services__item--all,
	.single-city-main .all_services__item--all {
		position: static;
		margin: 30px auto 0 auto;
		width: 100%;
		max-width: 400px;
		border-radius: 10px;
	}
	.img_text_2__col-1,
	.img_text_2__col-2 {
		width: 100%;
	}
	.img_text_2__col-2 {
		height: 180px;
	}
	.img_text_2__col-1 {
		order: 2;
	}
	.service_area-main .all_services__item {
		padding: 15px;
		border-radius: 15px;
	}
	.all_services__item--img {
		height: 180px;
	}
	.single-city-main .img_text_2 .img_text_2__col-2 {
		order: 3;
	}
	.single-city-main .img_text_1 .img_text_1__col-1,
	.single-city-main .img_text_1 .img_text_1__col-2 {
		width: 100%;
	}
	.single-city-main .img_text_1 .img_text_1__col-1 {
		order: 0;
	}
	.img_text_4__col-1,
	.img_text_4__col-2,
	.img_text_3__col-1,
	.img_text_3__col-2 {
		width: 100%;
	}
	.img_text_4__box .img_text--h2,
	.img_text_3__col-1 {
		order: 2;
	}
	.img_text_4__col-2 {
		order: 3;
	}
	.img_text_4__col-1,
	.img_text_3__col-2 {
		height: 180px;
	}
	.experienced__tab--btn {
		font-size: 16px;
	}
	.blog .hero2 {
		margin-bottom: 45px;
	}
	.blog .news__article--img,
	.index-post .news__article-big .news__article--img {
		height: 180px;
		min-height: 180px;
	}
	.news__article--excerpt {
		margin-bottom: 15px;
	}
	.service_block__item {
		padding: 15px;
		border-radius: 15px;
		gap: 15px;
	}
	.service_block--img {
		margin-bottom: 15px;
		height: 180px;
		border-radius: 15px;
	}
	.big_gallery--cat {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		height: 45px;
		min-height: 45px;
		padding: 0 15px;
		border-radius: 15px;
		background: var(--Dark-Green, #0D291F);
		color: var(--White, #FFF);
		font-size: 16px;
		line-height: 30px; /* 187.5% */
		text-transform: capitalize;
		border: none;
	}
	.big_gallery__services {
		padding: 30px 15px;
    border-radius: 15px;
    position: absolute;
    width: calc(100% + 2px);
    left: -1px;
    top: -30px;
		opacity: 0!important;
		visibility: hidden;
		z-index: 3;
		overflow: hidden;
		transition: var(--transition);
	}
	.big_gallery__col-2 {
		position: relative;
		z-index: 3;
	}
  .big_gallery__services.active {
    visibility: visible!important;
    opacity: 1!important;
  }
	.big_gallery--service {
		height: 45px;
    	min-height: 45px;
    	padding: 7.5px 15px;
    	border-radius: 15px;
    	font-size: 14px;
	}
	.story__box {
		flex-wrap: wrap;
		padding: 15px;
		border-radius: 15px;
	}
	.story__col-1,
	.story__col-2 {
		width: 100%;
	}
	.story__col-1 {
		order: 2;
		height: 350px;
	}
	.story__content {
		padding-bottom: 0;
	}
	.story__text--author span:nth-child(1) {
		font-size: 25px;
		line-height: 30px
	}
	.story__text--author span:nth-child(2) {
		font-size: 14px;
		line-height: 30px
	}
	.big_gallery__popup .container,
	.big_gallery__popup__box {
		height: auto;
		min-height: 100%;
		display: flex;
		align-items: center;
        justify-content: center;
	}
	.big_gallery__popup__box {
		padding: 15px;
		border-radius: 15px;
		width: 100%;
	}
	.big_gallery__popup .classic.glide__arrows {
		padding: 0 15px;
    top: calc(50% - 15px);
	}
	.big_gallery__popup--close {
		width: 10px;
    height: 10px;
    top: 8px;
    right: 8px;
	}
	.big_gallery__popup--close svg {
		width: 10px;
    height: 10px;
	}
	.big_gallery__popup .glide__slide img {
		width: 100%;
	}
}
@media(max-width: 480px){
	.hero2__box {
		min-height: 200px;
		padding: 68.5px 15px;
		border-radius: 15px;
	}
	.hero2 h1 {
		font-size: 28px;
	}
	
	.experienced__tab--btn {
		width: 100%;
	}
	.all_services__item--btn {
		font-size: 16px;
	}
	.all_services__item--all {
		position: static;
		margin: 15px auto 0 auto;
	}
	.about-renossance-main .all_services__item--all {
		background: transparent;
		color: var(--Dark-Green, #0D291F);
		text-decoration-line: underline;
	}
	.expertise__box {
		padding: 30px 15px;
		border-radius: 15px;
		flex-direction: column;
	}
	.expertise__col-1,
	.expertise__col-2 {
		width: 100%;
	}
	.expertise__all--text br {
		display: none;
		width: 125px;
		margin-left: auto;
	}
	.expertise__all--number {
		font-size: 60px;
	}
	.expertise__col-2 {
		gap: 10px;
		height: 300px;
	}
	.expertise--img {
		max-width: none;
		width: calc(25% - 10px);
		height: 270px;
	}
	.discuss__col-2 {
		padding: 15px;
		border-radius: 15px;
	}
	.discuss .form__field {
		width: 100%;
	}
	.form__field--input, .form__field--textarea, .form .ts-control input {
		font-size: 14px;
		letter-spacing: 0.14px;
		border-radius: 15px;
		height: 40px;
		padding: 0 15px;
	}
	.form__field--textarea {
		height: 100px;
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.form--submit {
		width: 100%;
	}
	.map .container {
		padding-bottom: 70px;
	}
	.map--iframe {
		height: 250px;
	}
	.map--btn {
		position: absolute;
    bottom: 0;
    width: calc(100% - 30px);
    left: 15px;
	}
	.map__head {
		height: auto;
    margin-bottom: 0;
	}
	.map--h2 {
		margin-bottom: 30px;
	}
	.info__item--p {
		margin-bottom: 0;
	}
	.handyman-services-main .tabs_services .home_services__item:nth-child(3) {
		width: 100%;
	}
	.text_block__box {
		padding: 15px;
		border-radius: 15px;
	}
	.text_block__box .text_block__col:nth-child(2) .text_block--img {
		margin-bottom: 15px;
		height: 180px;
	}
	.text_block__imgs {
		margin-bottom: 15px;
		gap: 15px;
	}
	.text_block__imgs .text_block--img {
		width: calc(50% - 7.5px);
		height: 150px;
	}
	.text_block--btn {
		width: 100%;
	}
	.faq--img {
		height: 180px;
	}
	.faq__item {
		padding: 15px;
	}
	.faq__item--h4 {
		padding-right: 35px;
		font-size: 18px;
	}
	.faq__item--btn {
		right: 15px;
	}
	.index-post__box .news__article {
		padding: 15px;
	}
	.news__article--h2 {
		font-size: 20px;
		height: auto;
	}
	.pagination {
		margin-top: 15px;
	}
	.pagination a, .pagination span {
		width: 30px;
		height: 30px;
		font-size: 14px;
	}
	.pagination a:first-child, .pagination a:last-child {
		width: 30px;
	}
	.pagination a svg {
		width: 15px;
		height: 6px;
	}
	.pagination a.pagination--prev {
		margin-left: 0;
		margin-right: auto;
	}
	.pagination a.pagination--next {
		margin-left: auto;
		margin-right: 0;
	}
	.single-main .hero2__box {
		height: 350px;
	}
	.entry-content {
		padding: 15px;
		border-radius: 15px;
	}
	.entry-content h2,
	.entry-content h3,
	.entry-content h4,
	.entry-content h5,
	.entry-content h6 {
		margin: 15px 0;
	}
	blockquote {
		padding: 15px;
		border-radius: 15px;
		display: block;
	}
	blockquote::before {
    min-width: 30px;
    width: 30px;
    height: 30px;
    float: left;
    margin-right: 15px;
	}
	.entry-content .nav-links a {
		padding: 0 11px;
		height: 40px;
		font-size: 14px;
	}
	.service_block__box {
		flex-wrap: wrap;
	}
	.service_block__col-1, .service_block__col-2 {
		width: 100%;
	}
	.service_block__col-1 {
		height: 180px;
	}
	.service_block--btn {
		width: 100%;
	}
	.multimap__box {
		padding: 15px;
		border-radius: 15px;
	}
	.map--iframe2 {
		height: 210px;
	}
	.multimap--btn, .multimap2 .multimap--btn {
		width: 100%;
	}
	.multimap--btn h3 {
		font-size: 16px;
	}
	.multimap--btn {
		padding: 7.5px 15px;
	}
	.process .glide__arrows {
		display: none;
	}
	.process--h2 {
		margin-bottom: 30px;
	}
	.careers__item {
		padding: 15px;
		border-radius: 15px;
		gap: 15px;
		flex-wrap: wrap;
	}
	.careers__item__col-1,
	.careers__item__col-2 {
		width: 100%;
	}
	.careers__item__col-1 {
		height: 180px;
	}
	.careers__item--h3 {
		margin-bottom: 15px;
	}
	.careers__sticky {
		width: calc(100% - 30px);
	}
	.error-404__box {
		padding: 15px;
		height: 560px;
	}
	.error-404-h1 {
		font-size: 90px;
	}
	.error-404--btn span {
		padding: 0 42px;
	}
	.masonry__item {
		height: 150px;
	}
	.masonry__item.big-verticale {
		height: 315px;
	}
	.masonry__item.big-horizontal {
		height: 150px;
	}
	.all_services--h2 {
		line-height: 30px;
	}
	.img_text--btn {
		width: 100%;
	}
	.img_text_1__box {
		padding: 15px;
		border-radius: 15px;
	}
	.faq__item--h3 {
		font-size: 18px;
    padding-right: 35px;
	}
	.process__item--btn {
		padding: 0;
		display: flex;
        align-items: center;
        justify-content: center;
	}
	.experienced__tab--col-2 {
		padding-top: 30px;
		border-top: 1px solid var(--Light-Green-Button, #E7EAE9);
	}
	.experienced__opens {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 30px;
	}
	.experienced__opens,
	.tabs_services__open--inner {
		gap: 0;
		border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
		height: 40px;

	}
	.experienced__opens::after,
	.tabs_services__open--inner::after {
		content: "";
		display: block;
		width: 9px;
		height: 9px;
		position: absolute;
		top: 16px;
		right: 30px;
		transition: var(--transition);
		background: url("assets/icons/experienced__open.svg") no-repeat center center/cover;
	}
	.experienced__opens.active {
		height: 120px;
	}
	.tabs_services__open--inner.active {
		height: 160px;
	}
	.experienced__opens.active::after,
	.tabs_services__open--inner.active::after  {
		transform: rotate(180deg);
	}
	.experienced__open {
		width: 100%;
    border-radius: 0;
    text-align: center;
    font-size: 16px;
		height: 40px;
		order: 2;
		border-top: 1px solid #747474;
	}
	.experienced__open.active {
		order: 1;
		border-top: none;
	}
	.experienced__open {
		
	}
	.experienced__open:last-child {
		border-bottom: none;
	}
	.experienced__box {
		border-radius: 15px;
		padding: 15px;
	}
	.all_services__item--img {
		margin-bottom: 15px;
		height: 150px;
	}
	.home_services__item__description p {
		margin-bottom: 18px;
	}
	.expertise--img {
		animation: fly 2s linear infinite;
	}
	.expertise--img:nth-child(2n){
		animation-delay: 1s;
	}
	@keyframes fly {
		0% {
			transform: translateY(0);
		}
		50% {
			transform: translateY(30px);
		}
		100% {
			transform: translateY(0);
		}
	}
	.service_area-main .hero2__box {
		padding: 52.5px 15px;
	}
	.single-city-main .hero2__box {
		padding: 42.5px 15px;
	}
	.b-breadcrumbs {
		width: 270px;
	}
	.single-city-main .all_services__item {
		padding: 15px;
		border-radius: 15px;
		background: #fff;
	}
	.single-city-main .all_services__item--img {
		height: 180px;
	}
	table {
    max-width: calc(100% + 15px);
    margin-right: -15px;
    padding-right: 15px;
	}
	.single-city-main .all_services__item {
		padding: 15px;
		border-radius: 15px;
	}
}

/* New Hero */

