@charset "utf-8";
/* CSS Document */

:root {
	--font-family-sans-serif: 'Montserrat',-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--secondary: rgba(0, 0, 0, 0.73);
	--primary: #2a2a2a;
	--light: #e1e1e1;
	--dark-light: #c7c1b7;
	--green: #37a441;
	--dark-green: #27822f;
}

::selection{
    background-color:var(--green);
	color: var(--white);
}

html {
  scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat',Arial,sans-serif;
	overflow-x: clip;
}

h1 {
	color: var(--primary);
	margin: auto;
	margin-bottom: 1rem;
	font-weight: 700;
}

h2, h4 {
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 1rem;
}

header {
	
}

section {
	padding-top: 5rem;
	padding-bottom: 5rem;
	scroll-margin-top: 2rem;
}

@media (max-width: 575px) {
	section {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
}

.rounded, .rounded::before, .rounded img {
	border-radius: 30px !important;
}

.filter {
	filter: brightness(.8);
}

.btn {
	border: none;
	border-radius: 50px;
	padding: 0.5rem 2rem;
	font-size: 0.9rem;
}

button:focus, .btn:focus {
	outline: none;
}

.btn:focus {
	border: none;
	box-shadow: none !important;
}

.btn-primary {
	background-color: var(--light);
	color: var(--primary);
	font-weight: 700;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
	background-color: var(--dark-light);
	color: var(--primary);
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
	background-color: var(--dark-light);
	color: var(--primary);
}

.btn-lg {
	font-size: 1.2rem;
	padding: 1rem 4rem;
}

.btn-md {
	font-size: 1rem;
	padding: .8rem 3rem !important;
}

.btn-secondary:hover, .btn-secondary:active {
	background-color: var(--secondary);
	color: var(--white);
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
	background-color: var(--secondary);
	color: var(--white);
}

.btn-green {
	background-color: var(--green);
	color: var(--white);	
}

.btn-green:hover, .btn-green:active, .btn-green:focus {
	background-color: var(--dark-green);
	color: var(--white);	
}

.btn-green:not(:disabled):not(.disabled):active, .btn-green:not(:disabled):not(.disabled).active, .show > .btn-green.dropdown-toggle {
	background-color: var(--dark-green);
	color: var(--white);
}

.btn-outline-green {
	background-color: transparent;
	border: 2px solid var(--green);
	color: var(--green);
	font-weight: 700;
}

.btn-outline-green:hover, .btn-outline-green:active, .btn-outline-green:focus {
	border: 2px solid var(--dark-green);
	color: var(--dark-green);
}

.btn-outline-green:not(:disabled):not(.disabled):active, .btn-outline-green:not(:disabled):not(.disabled).active, .show > .btn-outline-green.dropdown-toggle {
	border: 2px solid var(--dark-green);
	color: var(--dark-green);
}

.btn-wide {
	width: 100%;
}

.navbar-dark {
	background-color: var(--primary);
	
}

.navbar-dark .navbar-nav .nav-link {
	font-weight: 600;
	color: var(--white);
	position: relative;
	padding-right: 1rem;
	padding-left: 1rem;
	line-height: 3;
}

.navbar-dark .navbar-nav .nav-link:hover {
	color: var(--white);
}

.nav-link::after {
	content: '';
	position: absolute;
	left: 1rem;
	bottom: 40%;
	opacity: 0;
	width: calc(100% - 2rem);
	height: 100%;
	border-bottom: 1px solid var(--white);
	box-shadow: inset 0px -1px 0px 0px var(--white);
	transition: all 0.3s ease;
}

.nav-link:hover::after, .nav-item.active .nav-link::after {
	opacity: 1;
	bottom: 33%;
}

@media (max-width: 1466px) {
	.nav-link:hover::after, .nav-item.active .nav-link::after {
		opacity: 1;
		bottom: 15%;
	}
}

.navbar-contact {
	display: flex;
	align-items: center;
	justify-content: right;
}

.wa-link {
	margin-right: 3rem;
}

.navbar-contact .phone, .contact-column .phone {
	margin-right: 2rem;
}

.navbar-contact .phone, .contact-column .phone {
	color: var(--white);
	text-decoration: none;
	font-size: 1.25rem;
	font-weight: 600;
}

.navbar-dark .navbar-toggler {
	float: right;
	border: none;
	top: 5px;
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1.0)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-mobile {
	width: 100%;
	display: flex;
	flex-direction: column;
	height: calc(100vh - 58px);
	justify-content: space-around;
	align-items: center;
	transition: all 0.3s ease;
}

.nav-mobile:not(.show) {
	height: 0 !important;
	opacity: 0;
	visibility: hidden;
}

.nav-mobile .navbar-nav {
	display: block;
	text-align: center;
}

@media (max-width: 1466px) {
	.navbar-contact .phone, .contact-column .phone {
		font-size: 1.125rem;
		margin-right: 1.5rem;
	}
	.navbar-dark .navbar-nav .nav-link {
		font-size: .9rem;
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}
}

@media (max-width: 1366px) {
	.navbar-contact .phone, .contact-column .phone {
		font-size: 1rem;
		margin-right: 1rem;
	}
	.navbar-dark .navbar-nav .nav-link {
		font-size: .8rem;
		padding-right: 0.5rem;
		padding-left: 0.5rem;
	}
}

@media (max-width: 1199px) {
	.navbar-contact .phone {
		font-size: .9rem;
		margin-right: .7rem;
	}
	.navbar-dark .navbar-nav .nav-link {
		font-size: .8rem;
		padding-right: 0.5rem;
		padding-left: 0.5rem;
	}
	.btn-primary {
		padding: 0.5rem 1rem;
		font-size: 0.8rem;
	}
}

@media (max-width: 1040px) {
	.navbar-brand img {
		width: 120px;
	}
	.navbar-dark .navbar-nav .nav-link {
		padding-right: 0.35rem;
		padding-left: 0.35rem;
	}
	.navbar-dark {
		padding: .5rem 0;
	}
}

@media (max-width: 991px) {
	
	.navbar-contact {
		justify-content: center;
	}
	.navbar-dark .navbar-brand img {
		height: 40px;
	}
	.navbar-dark .navbar-nav .nav-link {
		font-size: 1.5rem;
		line-height: 2;
	}
	.nav-link::after {
		width: calc(100% - 1rem);
		left: .5rem;
	}
	.navbar-contact {
		display: flex;
		flex-direction: column;
	}
	.navbar-contact .phone {
		font-size: 1.5rem;
		margin-right: 0;
		margin-bottom: 2rem;
	}
	.navbar-contact .btn {
		margin-bottom: 2rem;
	}
	.btn-primary {
		font-size: 1rem;
	}
}

@media (max-width: 575px) {
	.navbar-dark .navbar-brand {
		padding: 0.3125rem 0;
	}
	.container {
		padding-right: 1.5rem;
		padding-left: 1.5rem;
	}
}

.navbar-toggler {
	border-radius: 0;
	position: relative;
	padding: 0;
	width: 28px;
	height: 20px;
	transition: .5s ease-in-out;
}

.navbar-toggler span {
	display: block;
	position: absolute;
	width: 100%;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: .25s ease-in-out;
	height: 3px;
	background-color: #000;
	background-color: var(--white);
}

.navbar-toggler span:nth-child(1) {
	top: 0;
}

.navbar-toggler span:nth-child(2), .navbar-toggler span:nth-child(3) {
	top: 8px;
}

.navbar-toggler span:nth-child(4) {
	top: 16px;
}

.navbar-toggler.opened span:nth-child(1) {
	top: 8px;
	width: 0%;
	left: 50%;
}

.navbar-toggler.opened span:nth-child(2) {
	transform: rotate(45deg);
}

.navbar-toggler.opened span:nth-child(3) {
	transform: rotate(-45deg);
}

.navbar-toggler.opened span:nth-child(4) {
	top: 8px;
	width: 0%;
	left: 50%;
}

#about {
	background-color: var(--primary);
	padding-bottom: 10rem;
}

#about h1 {
	font-size: 5rem;
}

#about h3 {
	font-size: 2.25rem;
}

.promo-bg {
	position: relative;
	width: 100%;
	min-height: 750px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.promo-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/01.webp");
	background-size: cover;
	background-position: center;
	filter: brightness(.8);
}

.promo-inner {
	align-items: center;
}

.fs-modules-row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
	align-items: end;
}

#fs-modules {
	margin-top: -312px;
	background-color: var(--primary);
}

#fs-modules-mobile {
	background-color: var(--primary);
}

#module-l, #module-r {
	position: relative;
	width: 100%;	
}

#module-l {
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}

#module-r {
	-ms-flex: 0 0 66.666667%;
	flex: 0 0 66.666667%;
	max-width: 66.666667%;
	background-color: var(--secondary);
	left: 5%;
	backdrop-filter: blur(10px);
}

#module-r-mobile {
	background-color: var(--secondary);
}

#module-r h2, #module-r-mobile h2 {
	font-weight: 700;
	text-transform: uppercase;
}

#about-info {
	background-color: var(--light);
	padding-top: 12rem;
	margin-top: -130px;
}

.numb {
	font-weight: 700;
	font-size: 8rem;
	color: var(--light);
}

.mobile-subheader {
	position: relative;
	text-align: left;
	padding: 3rem;
	font-size: 1.5rem !important;
	width: 100%;
}

.mobile-subheader h3 {
	font-size: 1rem;
}

@media (max-width: 1199px) {
	.numb {
		font-size: 6rem;
	}
	#module-l {
		height: 270px;
		max-width: 40%;
		flex-basis: 37%;
	}
	#module-l img {
		width: 100%;
		height: 100%;
	}
	#module-r {
		left: 3%;
		max-width: 80%;
		flex-basis: 63%;
	}
	#fs-modules {
		padding-bottom: 5rem;
	}
	#about-info {
		padding-top: 5rem;
		margin-top: 0;
	}
	.btn-primary.btn-lg {
		font-size: 1rem;
		padding: 1rem 2rem;
	}
	.promo-bg {
		min-height: 700px;
	}
	.wa-link {
		  margin-right: .7rem;
	}
}

@media (max-width: 991px) {
	#about .container, #fs-modules .container {
		width: 100%;
		max-width: unset;
		padding: 3rem;
	}
	#fs-modules {
		margin-top: -420px;
	}
	.wa-link {
		margin-right: 3rem;
	}
	.promo-bg {
		min-height: 600px;
	}
}

@media (max-width: 767px) {
	
	.promo-bg {
		flex-direction: column;
		min-height: 520px;
	} 
	
	#fs-modules {
		margin-top: -370px;
	}
	.numb {
		font-size: 4rem;
	}
	#module-r {
		padding: 2rem !important;
	}
	#about h1 {
		font-size: 3rem;
	}
	.btn-primary.btn-lg {
		padding: .8rem 1rem;
	}
	.promo-inner {
		width: 100%;
		margin-top: 50px !important;
	}
	.promo-inner .pr-5 {
		padding-left: 0 !important;
	}
	.mobile-subheader {
		padding: 1rem 3rem;
	}
}

@media (max-width: 717px) {
	.mobile-subheader {
		padding-top: .5rem;
	}
	.promo-bg {
		min-height: 470px;
	} 
}

@media (max-width: 640px) {
	.promo-bg {
		min-height: 420px;
	}
	.promo-inner {
		margin-top: 55px !important;
		align-items: start;
	}
	.promo-inner .pr-5 {
		padding-right: 0 !important;
	}
	.promo-inner .pl-5 {
		padding-left: 1rem !important;
	}
	#about h1 {
		font-size: 2.5rem;
	}
	.mobile-subheader {
		padding-top: 0;
		padding-bottom: 0;
	}
	#module-l {
		height: 200px;
		flex-basis: 33%;
	}
	#module-r {
		flex-basis: 67%;
	}
	.mobile-subheader {
		padding-left: 1rem;
		font-size: 1.25rem !important;
	}
	#fs-modules {
		margin-top: -385px;
	}
	#module-r {
		padding: 1.5rem !important;
	}
	#module-r p {
		font-size: .75rem !important;
		margin-bottom: 0.5rem;
	}
	.numb {
		margin-bottom: 0.5rem;
	}
}

@media (max-width: 611px) {
	#fs-modules {
		margin-top: -400px;
	}
}

@media (max-width: 575px) {
	#about {
		padding-top: 2rem;
	}
	.promo-inner {
		margin-top: 0 !important;
		align-items: center;
	}
	.promo-inner p {
		font-size: .8rem;
	}
	.promo-inner .pl-5 {
		padding-left: 0 !important;
	}
	#about h1 {
		font-size: 2rem;
	}
	#about {
		padding-bottom: 0;
	}
	#fs-modules-mobile {
		overflow-x: hidden;
	}
	#fs-modules-mobile .container {
		padding: 0 calc(3rem - 15px) 5rem calc(3rem - 15px);
	}
	#about .container, #fs-modules .container {
		padding-bottom: 0;
	}
	#bg-e::after {
		content: '';
		background-image: url("../images/02.webp");
		width: 340px;
		display: block;
		height: 232px;
		border-radius: 50px;
		position: absolute;
		left: 0;
	}
	.promo-bg {
		min-height: 330px;
	} 
}

@media (max-width: 520px) {
	#about h1 {
		margin-bottom: 0;
	}
	.promo-inner .col-6 {
		width: 100% !important;
		max-width: unset;
		flex-basis: 100%;
		padding: 0;
	}
}

@media (max-width: 480px) {
	#module-r-mobile {
		background-color: var(--primary);
		padding: 0 !important;
	}
	#module-r-mobile .row {
		flex-direction: column;
	}
	#bg-e::after {
		display: none;
	}
	#fs-modules-mobile::before {
		content: '';
		background-image: url("../images/04.webp");
		width: 43%;
		display: block;
		height: 464px;
		border-radius: 30px 0 0 30px;
		position: absolute;
		right: 0;
		margin-top: 12rem;
	}
	#fs-modules-mobile .container {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
	.numb-block {
		max-width: 60%;
	}
	.promo-bg {
		min-height: 290px;
	} 
}

@media (max-width: 440px) {
	.promo-bg {
		min-height: 250px;
	}
}

@media (max-width: 390px) {
	.promo-bg {
		min-height: 220px;
	}
}

@media (max-width: 380px) {
	#fs-modules-mobile::before {
		margin-top: 13.5rem;
	}
}

@media (max-width: 379px) {
	#fs-modules-mobile::before {
		margin-top: 15rem;
	}
}

@media (max-width: 363px) {
	#fs-modules-mobile::before {
		margin-top: 16.5rem;
	}
}

@media (max-width: 348px) {
	#fs-modules-mobile::before {
		margin-top: 18rem;
	}
}

.description {
	font-size: .8rem;
}



@media (min-width: 1200px) {
	#about-info {
		scroll-margin-top: -3.5rem;
	}
}

.icon-block {
	margin: 3rem 0;
	display: flex;
}

.icon {
	width: 64px;
	height: 64px;
	display: block;
	background-color: var(--light);
	border-radius: 1rem;
	float: left;
	margin-right: 2rem;
}

.icon::before {
	content: '';
	position: relative;
	width: 77px;
	height: 77px;
	display: block;
}

#icon-1::before {
	background-image: url("../images/icons/01.svg");
	top: 8px;
	left: 0;
}

#icon-2::before {
	background-image: url("../images/icons/02.svg");
	top: 5px;
	left: 3px;
}

#icon-3::before {
	background-image: url("../images/icons/03.svg");
	top: 5px;
	left: 3px;
}

#icon-4::before {
	background-image: url("../images/icons/04.svg");
	top: 0;
	left: 7px;
}

#icon-5::before {
	background-image: url("../images/icons/05.svg");
	top: 8px;
	left: 2px;
}

@media (max-width: 767px) {
	.icon-block {
		margin-top: 2rem;
		margin-bottom: 2rem;
	}
}

@media (max-width: 575px) {
	.icon-block {
		margin-top: 1.5rem;
		margin-bottom: 1.5rem;
	}
}

@media (max-width: 400px) {
	.icon-block {
		margin-top: .75rem;
		margin-bottom: .75rem;
	}
	.icon {
		width: 55px;
		height: 55px;
	}
	.icon::before {
		width: 66px;
		height: 66px;
	}
}

#divider {
	background-color: var(--light);
	border-top: 2px solid var(--green);
}

#divider h4 {
	font-size: 1.25rem;
	font-weight: 400;
}

#icon-6 {
	background-color: var(--white);
}

#icon-6::before {
	background-image: url("../images/icons/check.svg");
	top: -5px;
	left: 5px;
}

#icon-7::before {
	background-image: url("../images/icons/error.svg");
}

#team {
	background-color: var(--primary);
}

.team-card {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	width: auto;
}

.team-card-upper {
	height: 708px;
}

.team-card-lower {
	height: 616px;
}

#team-1 {
	background-image: url("../images/team/team-1.webp");
}

#team-2 {
	background-image: url("../images/team/team-2.webp");
}

#team-3 {
	background-image: url("../images/team/team-3.webp");
}

#team-4 {
	background-image: url("../images/team/team-4.webp");
}

#team-5 {
	background-image: url("../images/team/team-5.webp");
}

.team-inner {
	width: 100%;
	height: 100%;
	background-color: rgba(28, 27, 27, 0.75);
	opacity: 0;
	transition: all 0.4s ease;
}

.team-inner:hover {
	opacity: 1;
}

.team-inner-text {
	display: flex;
	flex-direction: column;
	justify-content: end;
	height: 100%;
	transform: translateY(30px);
	transition: all 0.4s ease;
}

.team-inner-text:hover {
	transform: translateY(0);
}

.team-inner h3 {
	color: var(--white);
	font-weight: 600;
	font-size: 1.25rem;
	position: absolute;
	top: 3rem;
}

.team-inner h4 {
	position: absolute;
	top: 5rem;
}

.team-inner-lower p {
	font-size: 1rem;
}

.team-inner-lower h3 {
	top: 1.5rem;
}

.team-inner-lower h4 {
	top: 3.5rem;
}

.team-inner h4, .team-inner a {
	color: #77c16d;
	font-weight: 600;
	font-size: 1rem;
}

.team-inner p {
	color: var(--white);
}

@media (max-width: 1199px) {
	.team-card-upper .team-inner-text p, .team-inner-lower .team-inner-text p {
		font-size: .8rem;
	}
}

@media (max-width: 991px) {
	.team-card-upper {
		height: 600px;
	}
	.team-card-lower {
		height: 550px;
	}
	.team-inner-text {
		padding: 2rem !important
	}
}

@media (max-width: 575px) {
	.team-card-upper {
		height: 550px;
	}
	.team-card-lower {
		height: 550px;
	}
	.team-inner-text {
		padding: 1.5rem !important
	}
	.team-inner h3 {
		top: 1.5rem;
	}
	.team-inner h4 {
		top: 3.5rem;
	}
}

.service-header, .service-body {
	height: 265px;
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 2rem;
}

.service-header {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	border-radius: 30px 30px 0 0;
}

.service-body h4 {
	font-weight: 600;
	font-size: 1.25rem;
	flex: auto;
	text-align: center;
	margin-bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.service-body {
	background-color: var(--primary);
	color: var(--white);
	border-radius: 0 0 30px 30px;
}

.service-body .btn-primary, .swiper-video .btn-primary {
	background-color: var(--white);
	font-weight: 600;
	font-size: 1rem;
}

.service-body .btn-primary:hover, .swiper-video .btn-primary:hover {
	background-color: var(--dark-light);
}

#service-1 .service-header {
	background-image: url("../images/services/service-1.webp");
}

#service-2 .service-header {
	background-image: url("../images/services/service-2.webp");
}

#service-3 .service-header {
	background-image: url("../images/services/service-3.webp");
}

#service-4 .service-header {
	background-image: url("../images/services/service-4.webp");
}

#service-5 .service-header {
	background-image: url("../images/services/service-5.webp");
}

#service-6 .service-header {
	background-image: url("../images/services/service-6.webp");
}

#service-7 .service-header {
	background-image: url("../images/services/service-7.webp");
}

#service-8 .service-header {
	background-image: url("../images/services/service-8.webp");
}

#service-9 .service-header {
	background-image: url("../images/services/service-9.webp");
}

#service-10 .service-header {
	background-image: url("../images/services/service-10.webp");
}

#testimonials {
	background-color: var(--primary);
}

@media (max-width: 991px) {
	.service-header, .service-body {
		height: 250px;
		padding: 1.5rem;
	}
}
@media (max-width: 767px) {
	.service-header, .service-body {
		height: 235px;
		padding: 1.5rem;
	}
	.service-body p {
		flex: auto;
	}
}

.swiper {
	padding: 5rem 25rem !important;
	overflow-x: hidden;
}

.testimonial {
	background-color: var(--light);
}

.testimonial-name {
	font-size: 1.25rem;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.testimonial-name::before {
	content: '';
	width: 80px;
	height: 80px;
	margin-right: 1rem;
	display: inline-block;
	background-repeat: no-repeat;
}

.testimonial-name.m::before {
	background-image: url("../images/icons/m.svg");
}

.testimonial-name.f::before {
	background-image: url("../images/icons/f.svg");
}

.modal-header .testimonial-header .testimonial-name {
	margin-bottom: 0;
}

@media (max-width: 1199px) {
	.swiper {
		padding: 5rem 10rem !important;
	}
}

@media (max-width: 991px) {
	.swiper {
		padding: 5rem 5rem !important;
	}
}

@media (max-width: 767px) {
	.swiper {
		padding: 3rem 3rem !important;
	}
	.testimonial {
		padding: 2rem !important;
	}
}

@media (max-width: 575px) {
	.testimonial:not(.modal-content) {
		padding: 1.5rem !important;
		max-height: 520px;
		overflow-y: hidden;
		
	}
	.testimonial-name::before {
		width: 60px;
		height: 60px;
		
	}
	
	.testimonial:not(.modal-content)::after {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		border-radius: 50px;
		background: linear-gradient(to top, #e1e1e1 5%, #e1e1e1f0 10%, #fff0 25%);
	}
}

@media (max-width: 460px) {
	.swiper {
		padding: 2rem 3rem !important;
	}
}

.swiper-video {
	padding: 10rem 25rem !important;
	overflow-x: hidden;
}

@media (min-width: 576px) {
	.swiper-video .swiper-slide:not(.swiper-slide-next) .testimonial-video {
		transform: scale(0.85);
	}
}

.testimonial-video {
	min-height: 570px;
	display: flex;
	flex-direction: column;
	justify-content: end;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	transition: all 0.3s ease;
}

.testimonial-video, .testimonial-video h4 {
	color: var(--white);
}

.testimonial-video h4 {
	font-size: 1.25rem;
}

.testimonial-video::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
}

.testimonial-video-inner {
	position: relative
}

.testimonial-video-inner .btn-primary {
	font-size: 0.9rem;
	padding: .9rem 0;
	width: 100%;
}

#testimonial-video-1 {
	background-image: url("../images/testimonials/video-1.webp");
}

#testimonial-video-2 {
	background-image: url("../images/testimonials/video-2.webp");
}

#testimonial-video-3 {
	background-image: url("../images/testimonials/video-3.webp");
}

#testimonial-video-4 {
	background-image: url("../images/testimonials/video-4.webp");
}

@media (max-width: 1600px) {
	.swiper-video {
		padding: 10rem 15rem !important;
	}
}

@media (max-width: 1366px) {
	.swiper-video {
		padding: 10rem 10rem !important;
	}
}

@media (max-width: 1280px) {
	.swiper-video {
		padding: 7rem 7rem !important;
	}
}

@media (max-width: 1199px) {
	.swiper-video {
		padding: 5rem 0rem !important;
	}
}

@media (max-width: 575px) {
	.swiper-video {
	  padding: 5rem 5rem !important;
	}
	
	.swiper-video .swiper-slide:not(.swiper-slide-active) .testimonial-video {
		transform: scale(0.85);
	}
}

@media (max-width: 475px) {
	.swiper-video {
		padding: 5rem 4rem !important;
		padding-bottom: 0 !important;
	}
}

@media (max-width: 390px) {
	.swiper-video {
	  padding: 5rem 2.5rem !important;
	}
}


#career {
	background-color: var(--light)
}

.vacancy {
	background-color: var(--white);
}

.vacancy:hover {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px 0px;
}

.vacancy a {
	color: #212529;
	font-weight: 600;
	margin-right: 1.5rem;
}

.vacancy a img {
	border-radius: 0 !important;
}

span.distance {
	font-size: .8rem;
	opacity: .7
}

.vacancy .has-icon::after, span.distance::before {
	content: "\00a0→";
	font-family: Arial,Helvetica,sans-serif;
	margin-right: .5rem;
}

#contacts {
	background-color: var(--secondary);
	padding: 0;
	color: var(--light);
}

#contacts h2, #contacts h1 {
	color: var(--light);
}

.contact-row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.contact-column {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.metro-01, .metro-02, .metro-03 {
	width: 10px;
	height: 10px;
	display: inline-block;
	position: relative;
	border-radius: 50%;
	margin-right: .5rem;
}

.metro-01, .metro-02 {
	background-color: var(--green);
}

.metro-03 {
	background-color: rgb(234, 65, 132);
}

.contact-column .icon-block {
	margin: 0;
}

#icon-8 {
	background: none;
	width: 50px;
	height: 50px;
	margin-right: .5rem;
}

#icon-8::before {
	background-image: url("../images/icons/navi.svg");
	width: 50px;
	height: 50px;
	background-size: 40px;
	background-position: 0%, 0%;
	background-repeat: no-repeat;
}

footer {
	background-color: var(--primary)
}

.footer-nav {
	margin: 0;
	padding: 1rem;
	list-style: none;
	padding-left: 0;
}

ul.footer-nav li {
	display: inline;
	margin-right: .5rem;
}

ul.footer-nav li a {
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
}

.copy {
	color: var(--light);
	font-size: .8rem;
}

.navi {
	color: var(--light);
	text-decoration: none;
}

a.copy {
	text-decoration: underline;
}

a.copy:hover {
	color: var(--light);
}
a.navi:hover, .navi:hover, a.navi p:hover {
	color: var(--light);
	text-decoration: underline;
}

a.navi p {
	float: right;
}

.btn-outline-primary {
	color: var(--light);
	border: 2px solid var(--light);
	font-weight: 600;
}

.btn-outline-primary:hover, .btn-outline-primary:active {
	color: var(--primary) !important;
	background-color: var(--light) !important;
	border: 2px solid var(--light) !important;
}

@media (max-width: 767px) {
	.footer-nav, .copy {
		padding-left: 0;
	}
	.d-md-none {
		text-align: center;
	}
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	background-color: var(--primary);
	width: 100vw;
	height: 100vh;
	transition: all .8s ease-in-out;
	opacity: 0;
	display: none;
}

.overlay.h-fixed {
	display: block;
	opacity: 1;
}

.b-fixed {
	overflow: hidden;
}

.testimonial-modal .modal-dialog {
	margin: 0;
	border-radius: 0;
	width: 100%;
	height: 100%;
}

.testimonial-modal .modal-dialog .modal-content {
	border: none;
	border-radius: 0;
	height: 100%;
	padding: 2rem !important;
	background-color: var(--light);
}

button.close {
	position: fixed;
	top: 2rem;
	right: 2rem;
	opacity: 1;
	width: 28px;
	height: 20px;
}

button.close span {
	display: block;
	position: absolute;
	width: 100%;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: .25s ease-in-out;
	height: 3px;
	background-color: #646464;
}

.testimonial-modal button, .modal-header .close {
	margin: 0;
}

.testimonial-modal button.close span {
	background-color: var(--primary);
}

button.close span:nth-child(1) {
	transform: rotate(45deg);
}

button.close span:nth-child(2) {
	transform: rotate(-45deg);
}

@media (max-width: 991px) {
	button.close {
		top: 21px;
		right: 15px;
		padding: 0 !important;
		z-index: 100
			
	}
}

.modal-header {
	flex-direction: column;
	padding: 3rem 2rem 1rem;
	border-bottom: none;
}

.modal-body {
	padding: 2rem;
}

.modal-header h3, .form-card h3 {
	font-weight: 600;
	margin-bottom: 1.5rem;
	padding: 0 1rem;
	font-size: 1.5rem;
}

fieldset:not(:first-of-type) {
	display: none;
}

.form-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 288px;
}

.fs-resp .form-card {
	justify-content: center;
}

.form-group {
	margin-bottom: .25rem;
}

.form-control::placeholder {
	color: #6c757d;
	font-weight: 400;
}

.form-control {
	color: var(--dark);
	font-weight: 600;
}

.modal-footer {
	border-top: none;
	justify-content: flex-start;
}

.modal-footer:not(.form-footer) {
	padding: 1rem 2rem 2rem;
}

.modal-backdrop.show {
	opacity: 1;
	background: radial-gradient(circle, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 100%);
}

.form-control:focus, .form-control:invalid:focus, .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
	box-shadow: none;
}

.form-card .icon {
	float: none;
	width: 100%;
	margin: 1rem auto;
	display: flex;
	justify-content: center;
	background: none;
	height: 77px;
}

.form-card #icon-6::before {
	top: 0;
	left: 0;
}

@media (max-width: 991px) {
	.form-card h3 {
		margin-bottom: 1rem;
	}
}

.was-validated #service:valid, .was-validated textarea.form-control:valid {
	background: none;
}

#service select {
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
}

.service-modal h4 {
	font-size: 1.2rem;
	margin-bottom: .5rem;
}

.service-modal li, .service-modal p {
	font-size: .9rem;
}

@media (max-width: 1199px) {
	.modal.show:not(.testimonial-modal) .modal-dialog {
		width: 70%;
	}
}

@media (max-width: 991px) {
	.modal.show:not(.testimonial-modal) .modal-dialog {
		width: 90%
	}
	.modal-footer:not(.form-footer) {
		padding: .5rem 2rem 1.5rem;
	}
	.modal-body {
		padding: 2rem;
	}
	.modal-header {
		padding: 2rem 2rem .5rem;
	}
}

@media (max-width: 767px) {
	.modal.show:not(.testimonial-modal) .modal-dialog {
		width: 95%;
		margin: auto;
		margin-top: 62px;
	}
	.modal-footer.form-footer {
		padding: 0 1rem;
	}
	
	.modal-footer:not(.form-footer) {
		padding: .5rem 1.5rem 1.5rem;
	}
	.modal-body {
		padding: 1.5rem;
	}
	.modal-header {
		padding: 1.5rem 1.5rem .5rem;
	}
	.form-card {
		min-height: 270px;
	}
	.modal-header h3, .form-card h3 {
		font-size: 1.25rem;
		margin-bottom: .5rem;
	}
	.service-modal h4 {
		font-size: 1.125rem;
	}
	
}

@media (max-width: 660px) {
	.form-card {
		min-height: 290px;
	}
}

@media (min-width: 576px) {
	.modal-dialog {
		max-width: 80%;
	}
}


@media (max-width: 575px) {
	
	.modal-content.rounded {
		border-radius: 30px !important;
	}
	.modal-body {
		padding: 1rem 1.5rem;
	}
	.modal-header h3 {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 0;
	}
	.form-card h3 {
		text-align: center;
		margin: 0 0 .5rem 0;
		padding: 0 2rem;
	}
	.form-card {
		min-height: 280px;
	}
	.form-group {
		margin-bottom: 0;
		padding: .5rem 0;
	}
	.modal-footer, .modal-footer.form-footer {
		padding: 0;
		justify-content: center;
	}
	.form-card.text-center {
		justify-content: center;
	}
}

@media (max-width: 360px) {
	.modal-body {
		padding: 1rem;
	}
	ol, ul, dl {
		padding-left: 1.5rem;
	}
}

@media (min-width: 1366px) {
	.modal-dialog {
		max-width: 60%;
	}
}

@media (min-width: 1600px) {
	.modal-dialog {
		max-width: 50%;
	}
}

.swiper-pagination {
	position: relative !important;
	margin-top: 2rem;
}

.swiper-pagination-bullet {
	border-radius: 0 !important;
	height: 2px !important;
	width: 20% !important;
	background: var(--white) !important;
}

.swiper-pagination-bullet-active {
	background: var(--white) !important;
}

.form-control {
	border-radius: 0;
	border-top: 0;
	border-right: 0;
	border-left: 0;
}