/* Headers */

.page-header {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.45);
	width: 100%;
	padding: 10px 0;
	z-index: 99;
}

.header-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	width: 100px;
}

.logo a,
.logo a img {
	display: block;
}

.btn-toggle {
	cursor: pointer;
	color: #fff;
	font-size: 24px;
	line-height: 1em;
}

.btn-toggle.close i::before {
	content: '\e905';
}

.nav-primary.open {
	right: 0;
}

.nav-primary {
	position: absolute;
	top: 100%;
	right: -100%;
	width: 100%;
	transition: all .3s;
	background: rgba(0, 0, 0, 0.45);
	padding: 20px;
	height: 100vh;
}

.nav-primary ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 0;
}

.nav-primary ul li {
	padding-bottom: 0;
}

.nav-primary ul li a {
	text-decoration: none;
	color: #fff;
	font-weight: 600;
	font-size: 22px;
	padding-bottom: 7px;
	position: relative;
	display: block;
}

.nav-primary ul li.active a {
	font-weight: 700;
}

.nav-primary ul li.active a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	bottom: 0;
	left: 0;
	background: #EF7D00;
	border-radius: 10px;
}

@media (min-width: 1200px) {

	.page-header {
		padding: 15px 0;
	}

	.logo {
		width: 187px;
	}

	.nav-primary {
		position: relative;
		top: auto;
		right: auto;
		width: auto;
		background: none;
		padding: 0;
		height: auto;
	}

	.nav-primary ul {
		flex-direction: row;
		gap: 50px;
	}

	.nav-primary ul li {
		padding-bottom: 0;
	}

	.nav-primary ul li a {
		font-size: 24px;
	}


	.nav-primary ul li a::after {
		content: '';
		position: absolute;
		width: 0;
		height: 3px;
		bottom: 0;
		left: 0;
		background: #EF7D00;
		border-radius: 10px;
		transition: all .3s;
	}

	.nav-primary ul li a:hover::after {
		width: 100%;
	}

}

/* masthead */

.masthead {
	position: relative;
	z-index: 1;
}

.masthead__bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	object-fit: cover;
}

.masthead--homepage {
	padding: 100px 0;
}

.masthead__wrapper h1 {
	color: #EF7D00;
	line-height: normal;
	font-size: 30px;
	font-weight: 700;
	margin: 0;
}

.masthead__wrapper h1 span {
	display: block;
	color: #444156;
}

.masthead__bttn {
	margin-top: 50px;
}

@media (min-width: 768px) {
	.masthead__wrapper h1 {
		font-size: 40px;
	}
}


@media (min-width: 1200px) {
	.masthead__wrapper h1 {
		font-size: 75px;
	}

	.masthead--homepage {
		padding: 174px 0 143px;
	}

	.masthead__bttn {
		margin-top: 107px;
	}
}

@media (min-width: 1440px) {
	.masthead--homepage {
		padding: 274px 0 243px;
	}

	.masthead__bttn {
		margin-top: 157px;
	}
}

/* partners */

.partners {
	border-radius: 15px;
	position: relative;
	background: linear-gradient(to bottom, rgba(231, 239, 255, 0.5) 0%, rgba(231, 239, 255, 0.5) 50%, rgba(255, 255, 255, 1) 100%);
	padding: 50px 22px 15px;
	overflow: hidden;
}

.partners__headlines {
	width: 100%;
	margin-bottom: 0px;
}

.partners__headlines :last-child {
	margin-bottom: 0;
}

.partners img {
	width: 100px;
}

.partners::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 638px;
	height: 2px;
	background: #000;
	opacity: 0.15;
}

.partners--inner::after {
	display: none;
}

.js-partner {
	margin: 0 -16px;
}

.partner {
	padding: 0 16px;
}

@media (min-width: 768px) {

	.partners {
		padding: 75px 52px;
	}

	.partners img {
		width: 150px;
	}
}

@media (min-width: 1200px) {

	.partners {
		padding: 102px 135px 116px;
	}

	.partners--inner {
		padding-top: 75px;
		padding-bottom: 46px;
		column-gap: 35px;
	}

	.partners img {
		width: auto;
	}

	.js-partner {
		margin: 0 -27px;
	}

	.partner {
		padding: 0 27px;
	}

	.partners__headlines {
		margin-bottom: 32px;
	}
}

/* about image text */

.about-image-text {
	padding: 30px 0;
}

.about-image-text__image,
.about-image-text__text {
	position: relative;
	width: 100%;
}

.about-image-text__image {
	max-width: 691px;
}

.about-image-text__image img {
	border-radius: 15px;
}

.about-image-text__text {
	padding-top: 20px;
}

.about-image-text__listings {
	display: flex;
	flex-wrap: wrap;
	gap: 32px 16px;
}

.about-list {
	width: calc(50% - 16px);
	text-align: center;
}

.about-list i {
	color: #444156;
	font-size: 100px;
	line-height: 1em;
}

.about-list p {
	margin-top: 15px;
	margin-bottom: 0;
	font-size: 18px;
	color: #65636D;
	font-weight: 400;
}

.about-image-text__listings {
	margin-top: 30px;
}

@media (min-width: 768px) {

	.about-image-text {
		padding: 50px 0;
	}

	.about-image-text__listings {
		gap: 16px;
	}

	.about-list {
		width: calc(25% - 16px);
	}
}

@media (min-width: 1200px) {

	.about-image-text {
		padding: 75px 0;
	}

	.about-image-text__listings {
		gap: 16px;
	}

	.about-image-text .flex-row {
		flex-direction: row-reverse;
		align-items: center;
	}

	.about-image-text__image {
		width: calc(50% - 31px);
		padding-left: 44px;
		max-width: 100%;
	}

	.about-image-text__text {
		width: calc(50% + 31px);
		padding: 0;
	}

	.about-image-text__listings {
		margin-top: 110px;
	}
}

@media (min-width: 1600px) {
	.about-image-text h2 {
		margin-right: 200px;
	}
}

/* expertise */

.expertise {
	background: linear-gradient(to bottom, rgba(231, 239, 255, 0.5) 0%, rgba(231, 239, 255, 0.5) 50%, rgba(255, 255, 255, 1) 100%);
	padding: 30px 0;
}

.image-text {
	margin-top: 25px;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.image-text__heading {
	background: #FAF9FB;
	clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 50%);
	padding: 32px;
}

.image-text .flex-row {
	align-items: center;
	background: #FAF9FB;
	padding: 32px;
	border-top: 1px solid #DBD8E0;
}

.image-text__img {
	position: relative;
	width: 100%;
}

.image-text__img img {
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.image-text__img::after {
	content: '';
	position: absolute;
	background: #FAF9FB;
	width: 30px;
	height: 30px;
	top: -6px;
	left: -6px;
	clip-path: polygon(0 0, 0 100%, 100% 0);
}

.image-text__text {
	padding-top: 30px;
	width: 100%;
}

.image-text__text p {
	margin-bottom: 0;
	color: #65636D;
	font-weight: 400;
}

@media (min-width: 768px) {

	.expertise {
		padding: 50px 0;
	}

	.image-text__heading {
		clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%, 0 50%);
		padding: 32px 62px;
	}

	.image-text .flex-row {
		padding: 35px 52px 41px 62px;
	}

	.image-text__img {
		height: 334px;
	}

}

@media (min-width: 1200px) {

	.expertise {
		padding: 80px 0;
	}

	.expertise__wrapper {
		padding: 0 26px;
	}

	.image-text .flex-row {
		flex-direction: row-reverse;
	}

	.image-text__heading {
		clip-path: polygon(3% 0, 100% 0, 100% 100%, 0 100%, 0 50%);
	}

	.image-text__text {
		padding-top: 0;
		width: 607px;
		padding-right: 42px;
	}

	.image-text__text p {
		font-size: 18px;
	}

	.image-text__img {
		width: calc(100% - 607px);
	}
}

/* half image listing */

.half-image-listing {
	padding: 30px 0;
}

.half-image {
	position: relative;
	width: 100%;
	height: 250px;
}

.half-image__wrapper {
	position: relative;
	height: 100%;
}

.half-image__wrapper img {
	border-radius: 15px;
}

.half-image__text {
	position: absolute;
	width: 100%;
	top: 0;
	padding: 32px;
}

.half-image__text h2 {
	margin: 0;
	color: #fff;
	font-size: 20px;
}

.half-listing {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	row-gap: 32px;
}

.half-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.half-list i,
.half-list img {
	font-size: 80px;
	line-height: 1em;
	width: 80px;
}

.half-list__details {
	width: calc(100% - 80px);
	padding-left: 20px;
}

.half-list__details h4 {
	color: #231F20;
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 10px;
}

.half-list__details p {
	margin-bottom: 0;
	color: #65636D;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.333em;
}

@media (min-width: 768px) {

	.half-image-listing {
		padding: 50px 0;
	}

	.half-image {
		height: 350px;
	}


	.half-image__text h2 {
		font-size: 30px;
	}

	.half-listing {
		gap: 32px 0;
		flex-wrap: wrap;
		flex-direction: row;
		margin: 0 -16px;
		margin-top: 30px;
	}

	.half-list-item {
		width: 50%;
		padding: 0 16px;
	}
}


@media (min-width: 1200px) {

	.half-image-listing {
		padding: 75px 0;
	}

	.half-image {
		height: auto;
		width: calc(100% - 696px);
	}

	.half-image__wrapper {
		position: absolute;
		width: calc(100% - 79px);
		top: 0;
		left: 0;
	}

	.half-listing {
		width: 696px;
		padding-right: 69px;
		margin-top: 0;
		margin: 0;
		row-gap: 40px;
		padding-top: 75px;
		padding-bottom: 75px;
	}

	.half-image__text h2 {
		font-size: 35px;
		max-width: 502px;
	}

	.half-image__text {
		padding: 62px 42px;
	}

	.half-list-item {
		width: 50%;
		padding: 0;
	}

	.half-list {
		width: 262px;
		flex-direction: column;
		align-items: flex-start;
	}

	.half-list-item:nth-child(2n) .half-list {
		margin-left: auto;
	}

	.half-list i {
		width: 100%;
		font-size: 135px;
	}

	.half-list__details {
		width: 100%;
		padding-left: 0;
		padding-top: 20px;
	}

	.half-list__details h4 {
		font-size: 20px;
		padding-right: 18px;
		margin-bottom: 18px;
	}

	.half-list__details p {
		font-size: 18px;
	}

	.half-list img {
		width: auto;
	}
}

@media (min-width: 1600px) {
	.half-image__text h2 {
		font-size: 45px;
		max-width: 502px;
	}

	.half-list__details h4 {
		font-size: 28px;
	}
}

/* image buttons */

.image-buttons {
	padding: 30px 0;
}

.image-buttons__headlines {
	margin-bottom: 50px;
}

.image-buttons__headlines :last-child {
	margin-bottom: 0;
}

.image-button-flex {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
	row-gap: 24px;
	justify-content: center;
}

.image-button-item {
	width: 100%;
	padding: 0 12px;
}

.image-button {
	display: block;
	position: relative;
	/* height: 250px; */
	text-decoration: none;
}

.image-button::after {
	content: '';
	position: absolute;
	width: 24px;
	height: 30px;
	top: -1px;
	left: -1px;
	background: #fff;
	clip-path: polygon(0 0, 0 100%, 100% 0);
}

.image-button::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(21, 26, 49, 1) 100%);
	z-index: 1;
}

.image-button__tag {
	position: absolute;
	width: 48px;
	height: 48px;
	background: #EF7D00;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	font-weight: 600;
	top: 24px;
	right: 10px;
	clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
	z-index: 2;
}

.image-button__details {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	/* height: 128px; */
	padding: 0 20px 30px 24px;
	transition: all ease-in-out 0.5s;
	z-index: 2;
}

.image-button__details h4 {
	color: #fff;
	font-size: 28px;
	transition: all ease-in-out 0.5s;
}

.image-button__description {
	padding-top: 35px;
	/* opacity: 0; */
}

.image-button__description p {
	color: #fff;
	font-size: 16px;
}

@media (min-width: 768px) {

	.image-buttons {
		padding: 50px 0;
	}

	.image-button-item {
		width: 50%;
	}

	.image-button {
		height: 450px;
	}

	.image-button__details {
		height: 158px;
	}
}

@media (min-width: 1200px) {

	.image-buttons {
		padding: 75px 0;
	}

	.image-button {
		overflow: hidden;
	}

	.image-button-item {
		width: 20%;
	}

	.image-button__details {
		height: 128px;
	}

	.image-button:hover .image-button__details {
		height: auto;
	}


	.image-button__description {
		max-height: 0;
		transition: all ease-in-out 0.1s;		
	   opacity: 0;
	}

	.image-button:hover .image-button__description {
		opacity: 1;
		max-height: 300px;
		padding-bottom: 20px;
		transition: all ease-in-out 0.4s;
	}

	.image-button img {
		transition: all ease-in-out 0.4s;
	}

	.image-button:hover img {
		transform: scale(1.2);
		transition: all ease-in-out 0.4s;
	}

	.image-button__details h4 {
		font-size: 22px;
	}

	.image-button__description p {
		font-size: 14px;
	}
}

@media (min-width:1600px) {
	.image-button__details h4 {
		font-size: 28px;
	}

	.image-button__description p {
		font-size: 16px;
	}

	.image-button-item {
		width: 20%;
	}
}

/* map text */

.map-text {
	margin-bottom: 30px;
}

.map-text__text,
.map-text__img {
	position: relative;
	width: 100%;
}

.map-text__text {
	margin: 0 0 20px;
	background: #113A7A;
	color: #fff;
	border-radius: 20px;
	padding: 20px 20px 30px;
}

.map-text__text h2 {
	color: #fff;
}

.map-text__text p {
	font-weight: 400;
}

.map-text__img img {
	border-radius: 10px;
	border: 3px solid #EF7D00;
	max-width: 645px;
	margin: 0 auto;
	display: block;
}

@media (min-width: 768px) {
	.map-text {
		margin-bottom: 50px;
	}

	.map-text__text {
		padding: 46px 35px;
	}
}

@media (min-width: 1200px) {
	.map-text {
		margin-bottom: 100px;
	}

	.map-text .flex-row {
		align-items: center;
		margin: 0 20px;
	}

	.map-text__text {
		padding: 46px 69px 46px 37px;
		margin-bottom: 0;
		width: calc(100% - 645px);
		border-radius: 20px 0 0 20px;
	}

	.map-text__text h2 {
		max-width: 592px;
	}

	.map-text__img {
		width: 645px;
	}
}

/* certified cards */

.certified-cards {
	position: relative;
	z-index: 1;
	padding-bottom: 30px;
}


.certified-cards::before {
	content: '';
	position: absolute;
	z-index: -1;
	height: calc(100% - 185px);
	width: 100%;
	left: 0;
	bottom: 0;
	border-radius: 15px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(231, 239, 255, 0.5) 100%);
}

.certified-cards__headlines {
	margin-bottom: 30px;
}

.certified-cards__headlines :last-child {
	margin-bottom: 0;
}

.certified-card-flex {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	row-gap: 0;
}

.certified-card-item {
	width: 100%;
}

.certified-card {
	display: block;
	width: 313px;
	margin: 0 auto;
	position: relative;
	cursor: pointer;
}

.certified-card__details {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	top: 0;
	left: 0;
	padding: 0 25px;
}

.certified-card__details p {
	display: none;
}

.certified-card:hover .certified-card__details p {
	display: block;
}

.certified-card:hover .certified-card__details img {
	display: none;
}

.certified-card__details p {
	color: #65636D;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.333em;
}

@media (min-width: 768px) {

	.certified-cards {
		padding-bottom: 50px;
	}

	.certified-cards::before {
		height: calc(100% - 112px);
	}

	.certified-card-item {
		width: 50%;
	}
}

@media (min-width: 1200px) {

	.certified-cards {
		padding-bottom: 72px;
	}

	.certified-cards__headlines {
		max-width: 773px;
		margin: 0 auto;
		margin-bottom: 93px;
	}

	.certified-cards::before {
		height: calc(100% - 211px);
	}

	.certified-card-item {
		width: 20%;
	}

	.certified-card {
		width: 100%;
	}

}

@media (min-width: 1600px) {

	.certified-card__details p {
		font-size: 18px;
	}
}

/* Footer */

.copyright {
	color: #fff;
	background: #EF7D00;
	padding: 12px 0;
}

.copyright__flex {
	text-align: center;
	font-size: 13px;
	font-weight: 600;
}

.copyright__flex a {
	color: #fff;
	font-weight: 700;
}

.copyright__right {
	padding-top: 10px;
}

.copyright__right a {
	text-decoration: none;
}

@media (min-width: 768px) {
	.copyright__flex {
		text-align: left;
		display: flex;
		justify-content: space-between;
	}

	.copyright__right {
		padding-top: 0;
	}

}

@media (min-width: 1200px) {
	.copyright__flex {
		text-align: center;
		font-size: 20px;
		font-weight: 600;
	}
}

.top-footer {
	background: #113A7A;
	color: #fff;
	padding: 40px 0;
}

.footer-social {
	padding-top: 30px;
}

.top-footer h4 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}

.footer-social ul {
	margin: 0;
	padding: 0;
}

.footer-social ul li {
	margin: 0;
	padding: 0;
}


.footer-social ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border: 2px solid #EF7D00;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: #fff;
	font-size: 24px;
	font-weight: normal;
}

.footer-content {
	padding-top: 30px;
}

.footer-link {
	padding-top: 30px;
}

.footer-link ul {
	margin-bottom: 0;
	padding: 0 0 0 11px;
	list-style: disc;
	list-style-position: inside;
	font-weight: 400;
}

.footer-link ul li {
	margin-bottom: 8px;
	padding: 0 0 0 0;
}

.footer-link ul li a {
	color: #fff;
	text-decoration: none;
}

.footer-information {
	padding-top: 30px;
}

.footer-information ul {
	margin: 0;
	padding: 0;
}

.footer-information li {
	display: flex;
	gap: 15px;
	margin-bottom: 8px;
}

.footer-information li i {
	margin-top: 4px;
}

.footer-information li a {
	color: #fff;
	text-decoration: none;
}

@media (min-width: 768px) {

	.top-footer {
		padding: 60px 0;
	}

	.footer-flex {
		display: flex;
		flex-wrap: wrap;
		row-gap: 32px;
	}

	.footer-left {
		width: 50%;
	}

	.footer-content {
		padding-top: 0;
		width: 50%;
	}

	.footer-link {
		padding-top: 0;
		width: 50%;
	}

	.footer-information {
		padding-top: 0;
		width: 50%;
	}

}


@media (min-width: 1200px) {

	.top-footer {
		padding: 77px 24px 27px 104px;
	}

	.footer-flex {
		row-gap: 0;
		margin: 0 -16px;
	}

	.footer-left,
	.footer-content,
	.footer-link,
	.footer-information {
		width: 32%;
		padding: 0 22px;
	}

	.footer-social {
		padding-top: 30px;
	}

	.top-footer a:hover {
		color: #EF7D00;
	}

	.footer-social ul li a:hover {
		background: #EF7D00;
		color: #fff;
	}

}

@media (min-width: 1600px) {

	.top-footer {
		padding: 77px 0 126px;
	}

	.footer-flex {
		row-gap: 0;
		margin: 0 -28px;
		justify-content: space-around;
		width: calc(100% + 56px);
	}

	.footer-left {
		width: 277px;
		padding: 0;
	}

	.footer-content {
		width: 470px;
		padding: 0;
		padding-right: 106px;
	}

	.footer-link {
		width: 416px;
		padding: 0;
	}

	.footer-information {
		width: 414px;
		padding: 0;
	}

	.footer-social {
		padding-top: 30px;
	}

	.top-footer a:hover {
		color: #EF7D00;
	}

	.footer-social ul li a:hover {
		background: #EF7D00;
		color: #fff;
	}

}

/* masthead innerpage */

.masthead--innerpage {
	margin-top: 77px;
}

.masthead--innerpage .masthead__wrapper {
	position: relative;
	padding: 50px 0;
}

.masthead--innerpage .masthead__wrapper h1 {
	color: #fff;
	position: relative;
	z-index: 2;
	text-transform: uppercase;
	letter-spacing: 3%;
}

.masthead--innerpage .masthead__wrapper::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.45;
	background: #000;
	top: 0;
	left: 0;
}

@media (min-width: 768px) {
	.masthead--innerpage .masthead__wrapper {
		padding: 70px 0;
	}
}

@media (min-width: 1200px) {
	.masthead--innerpage {
		margin-top: 146px;
	}

	.masthead--innerpage .masthead__wrapper {
		padding: 184px 0;
	}
}

@media (min-width: 1600px) {
	.masthead--innerpage .masthead__wrapper {
		margin: 0 -33px;
		width: calc(100% + 66px);
	}
}


/* expertise half image-text */

.expertise-half-image-text {
	padding: 25px 0 50px;
}

.expertise-image-text {
	padding: 25px 0;
	border-bottom: 1px solid #D9D9D9;
}

.expertise-image-text__img {
	height: 200px;
}

.expertise-image-text__img img {
	border-radius: 10px;
}

.count {
	font-family: "Alumni Sans", sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 32px;
	letter-spacing: -0.24px;
	color: #EF7D00;
}

.expertise-image-text__text__wrapper {
	padding: 15px 0 25px 20px;
}

.expertise-image-text__text__wrapper p {
	color: #65636D;
	font-weight: 400;
}

@media (min-width: 768px) {

	.expertise-half-image-text {
		padding: 50px 0 100px;
	}

	.expertise-image-text {
		padding-bottom: 62px;
	}

	.expertise-image-text__img {
		height: 272px;
		width: 562px;
	}

}

@media (min-width: 1200px) {

	.expertise-image-text {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
	}

	.expertise-image-text__text {
		width: calc(100% - 562px);
	}

	.expertise-image-text__text__wrapper {
		padding: 15px 116px 0 75px;
	}

	.expertise-image-text__text__wrapper p {
		font-size: 18px;
	}

}

/* residential image text */

.residential-image-text {
	padding: 40px 0;
}

.residential-image-text__img,
.residential-image-text__text {
	width: 100%;
	position: relative;
}

.residential-image-text__img__wrap {
	max-width: 562px;
	height: 250px;
}

.residential-image-text__img__wrap img {
	border-radius: 10px;
}

.residential-image-text__text {
	padding-bottom: 30px;
}

.residential-image-text__text p {
	font-weight: 400;
}

.residential-image-text__listing {
	display: flex;
	flex-wrap: wrap;
	row-gap: 20px;
}

.residential-image-text__list-item {
	width: 100%;
}

.residential-image-text__list {
	position: relative;
	padding-top: 19px;
	text-align: center;
}

.residential-image-text__list::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: #EF7D00;
	top: 0;
	left: 0;
}

.residential-image-text__list h4 {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.214em;
	letter-spacing: 0.03em;
	color: #231F20;
	margin-bottom: 15px;
}

.residential-image-text__list p {
	color: #65636D;
	font-size: 14px;
	line-height: 1.333em;
}

@media (min-width: 768px) {

	.residential-image-text {
		padding: 60px 0;
	}


	.residential-image-text__img__wrap {
		height: 350px;
	}


	.residential-image-text__listing {
		margin: 0 -7px;
	}

	.residential-image-text__list-item {
		width: 33.33%;
		padding: 0 7px;
	}

}

@media (min-width: 1200px) {

	.residential-image-text {
		padding: 100px 0 50px;
	}

	.residential-image-text .flex-row {
		flex-direction: row-reverse;
	}

	.residential-image-text__img {
		width: 362px;
	}

	.residential-image-text__img__wrap {
		height: auto;
	}

	.residential-image-text__text {
		width: calc(100% - 362px);
		padding: 0 15px 0 40px;
	}

	.residential-image-text__list h4 {
		font-size: 28px;
	}

	.residential-image-text__list p {
		font-size: 18px;
	}
}

@media (min-width:1600px) {
	.residential-image-text__img {
		width: 562px;
	}

	.residential-image-text__text {
		width: calc(100% - 562px);
		padding: 0 15px 0 66px;
	}
}

/* testimonials */

.testimonials {
	padding: 50px 0;
}

.testimonials__headlines {
	margin-bottom: 30px;
}

.testimonials__headlines :last-child {
	margin-bottom: 0;
}

.testimonials .flex-row {
	margin: 0 -16px;
	row-gap: 20px;
}

.testimonial-item {
	padding: 0 16px;
	width: 100%;
}

.testimonial {
	display: block;
	text-align: none;
	position: relative;
	height: 297px;
}

.testimonial img {
	border-radius: 20px;
}

.testimonial__details {
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translate(-50%, 0);
	background: #fff;
	border-radius: 10px;
	text-align: center;
	padding: 15px 0;
	width: 268px;
}

.testimonial__details h4 {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.214em;
	letter-spacing: 0.03em;
	color: #231F20;
	margin-bottom: 0;
}

.testimonial__details p {
	color: #65636D;
}

.testimonial__hover {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 10px;
	text-align: center;
	width: calc(100% - 50px);
	height: calc(100% - 50px);
	display: flex;
	align-items: center;
	padding: 25px;
	opacity: 0;
}

.testimonial__hover p {
	color: #65636D;
	line-height: 1.333em;
}

.testimonial.active .testimonial__hover {
		opacity: 1;
}

@media (min-width: 768px) {

	.testimonials {
		padding: 70px 0;
	}

	.testimonials .flex-row {
		row-gap: 32px;
	}

	.testimonial-item {
		width: 50%;
	}
}

@media (min-width: 1200px) {

	.testimonials {
		padding: 100px 0;
	}

	.testimonials__headlines {
		margin-bottom: 75px;
	}

	.testimonials .flex-row {
		row-gap: 49px;
	}

	.testimonial-item {
		width: 33.33%;
	}

	.testimonial__details {
		width: calc(100% - 120px);
	}

	.testimonial__details h4 {
		font-size: 28px;
	}

	.testimonial__hover {
		opacity: 0;
	}

	.testimonial.active .testimonial__hover {
		opacity: unset;
	}

	.testimonial:hover .testimonial__hover {
		opacity: 1;
	}

	.testimonial:hover .testimonial__details {
		opacity: 0;
	}

	.testimonial__hover p {
		font-size: 18px;
	}
}

/* service buttons */

.service-buttons {
	padding: 30px 0;
	background: #113A7A;
	color: #fff;
}

.service-buttons__headlines {
	max-width: 1166px;
	margin: 0 auto;
	margin-bottom: 48px;
}

.service-buttons__headlines :last-child {
	margin-bottom: 0;
}

.service-buttons__headlines h2 {
	color: #fff;
}

.service-buttons__bottom {
	max-width: 1202px;
	margin: 48px auto 0;
}

.service-button-item {
	width: 100%;
}

.service-button {
	display: block;
	position: relative;
	height: 290px;
	text-decoration: none;
}

.service-button::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.25;
}

.service-button__details {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 30px;
	z-index: 1;
}

.service-button__description {
	display: none;
}

.service-button__details h3 {
	color: #fff;
	margin-bottom: 0;
}

.service-button__description {
	color: #fff;
	font-weight: 400;
}


.service-button:hover .service-button__description {
	display: block;
}

@media (min-width: 768px) {

	.service-buttons {
		padding: 55px 0;
	}


	.service-button-item {
		width: 50%;
	}

}

@media (min-width: 1200px) {

	.service-button-item {
		width: 33.33%;
	}

	.service-button:hover img,
	.service-button:hover::after {
		opacity: 0;
	}

	.service-button__description {
		font-size: 18px;
		margin-top: 25px;
	}
}

@media (min-width: 1600px) {
	.service-button__details h3 {
		padding: 0 30px;
	}
}

/* form text */

.form-text__wrapper {
	background-color: #113A7A;
	padding: 38px 20px;
	color: #fff;
}

.form-text__text {
	margin-top: 30px;
}

.form-text__text p {
	margin-bottom: 10px;
	font-weight: 400;
}

.form-text__text h2 {
	color: #fff;
}

.form-text__form-wrapper {
	background: #fff;
	border-radius: 20px;
	padding: 20px;
}

.form-text--margin-bottom {
	margin-bottom: 40px;
}

@media (min-width: 768px) {

	.form-text__wrapper {
		padding: 38px 52px;
	}

	.form-text__form-wrapper {
		padding: 40px;
	}

	.form-text--margin-bottom {
		margin-bottom: 70px;
	}
}

@media (min-width: 1200px) {

	.form-text__wrapper {
		padding: 38px 0;
	}

	.form-text__form-wrapper {
		padding: 57px 78px;
	}

	.form-text__wrapper {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
	}

	.form-text__form {
		width: calc(50% + 11px);
		padding-left: 86px;
	}

	.form-text__text {
		width: calc(50% - 11px);
		margin-top: 0;
		padding: 0 42px;
	}

	.form-text--margin-bottom {
		margin-bottom: 100px;
	}
}

/* case cards */

.case-cards {
	padding: 30px 0;
}

.case-card {
	margin-top: 49px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}

.case-card__img {
	position: relative;
	z-index: 1;
	height: 250px;
	width: 100%;
}

.case-card__img::before {
	content: '';
	position: absolute;
	height: 150px;
	width: 250px;
	top: -15px;
	left: -15px;
	background: linear-gradient(180deg, #EF7D00 0%, #C7C7C7 100%);
	z-index: -1;
}

.case-card--right .case-card__img::before {
	left: auto;
	right: -15px;
}

.case-card__text {
	margin: -30px 20px 0;
	position: relative;
	z-index: 1;
	background: #FFFFFF;
	padding: 20px;
}

.case-card__text::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
	z-index: -1;
	background: linear-gradient(to top, rgba(239, 125, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
}


.case-card__text::after {
	content: '';
	position: absolute;
	height: calc(100% - 2px);
	width: calc(100% - 2px);
	top: 1px;
	left: 1px;
	background: #fff;
	z-index: -1;
}

.case-card__text h3 {
	color: #EF7D00;
}

.case-card__text p {
	color: #65636D;
	font-weight: 400;
}

@media (min-width: 768px) {
	.case-cards {
		padding-bottom: 60px;
	}

	.case-card__text {
		margin: -60px 40px 0;
		padding: 30px;
	}
}

@media (min-width: 1200px) {
	.case-cards {
		padding-bottom: 100px;
	}

	.case-card {
		margin-top: 69px;
		margin-left: 27px;
	}

	.case-card--right {
		margin-left: 0;
		margin-right: 27px;
	}

	.case-card__img {
		position: absolute;
		height: 100%;
		width: 839px;
		left: 0;
		top: 0;
	}

	.case-card__img img {
		position: absolute;
	}

	.case-card--right .case-card__img {
		left: auto;
		right: 0;
	}

	.case-card__img::before {
		height: 313px;
		width: 571px;
		top: -34px;
		left: -27px;
	}

	.case-card--right .case-card__img::before {
		left: auto;
		right: -27px;
	}

	.case-card__text p {
		font-size: 18px;
		line-height: 1.333em;
	}

	.case-card__text {
		margin: 42px 0;
		padding: 30px 45px;
		width: 950px;
		margin-left: auto;
	}

	.case-card--right .case-card__text {
		margin-left: 0;
	}

	.case-card__text::before {
		background: linear-gradient(to left, rgba(239, 125, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
	}

	.case-card--right .case-card__text::before {
		background: linear-gradient(to right, rgba(239, 125, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
	}

}

/* choose image text */

.choose-image-text {
	padding: 10px 0 30px;
}

.choose-gallery {
	display: flex;
	margin: 0 -5px;
	flex-wrap: wrap;
}

.choose-gallery img {
	border-radius: 10px;
}

.choose-left {
	padding: 0 5px;
	width: 60%;
}

.choose-right {
	padding: 0 5px;
	width: 40%;
}

.choose-left__top-image {
	height: 250px;
	margin-bottom: 10px;
}

.choose-left__bottom-image {
	height: 90px;
}

.choose-right__top-image {
	height: 110px;
	margin-bottom: 10px;
}

.choose-right__bottom-image {
	height: 230px;
}

.choose {
	margin-top: 35px;
	padding: 20px;
	border-top: 2px solid #EF7D00;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);

}

.choose__img {
	height: 201px;
}

.choose__img img {
	border-radius: 10px;
}

.choose__details {
	margin-top: 17px;
}

.choose__details p {
	font-weight: 400;
	line-height: 1.333em;
	color: #65636D;
}

.choose__details h4 {
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 0.03em;
	color: #231F20;
	margin-bottom: 10px;
}

@media (min-width: 768px) {

	.choose-image-text {
		padding: 50px 0;
	}

	.choose-gallery {
		width: 662px;
	}

	.choose-left {
		width: 390px;
	}

	.choose-right {
		width: 262px;
	}

	.choose-left__top-image {
		height: 486px;
	}

	.choose-left__bottom-image {
		height: 170px;
	}

	.choose-right__top-image {
		height: 192px;
	}

	.choose-right__bottom-image {
		height: 464px;
	}

	.choose {
		padding: 27px 35px 23px;
	}


	.choose__details h4 {
		font-size: 28px;
	}
}


@media (min-width: 1200px) {

	.choose-image-text {
		padding: 50px 0 50px 0;
	}

	.choose-image-text {
		position: relative;
	}

	.choose-image-text__left {
		width: 652px;
		position: sticky;
		top: 50px;
	}

	.choose-image-text__right {
		width: calc(100% - 662px);
		padding-left: 38px;
	}

	.choose:first-child {
		margin-top: 0;
	}

	.choose-image-text {
		position: relative;
	}

	.choose-gallery-sticky {
		position: sticky;
		top: 118px;
	}
}

/* careers */

.careers {
	margin: 40px 0;
}

.career-item {
	padding: 20px;
	border-bottom: 1px solid #DBD8E0;
}

.career-title h5 {
	font-size: 16px;
	line-height: 1.333em;
	font-weight: 400;
	color: #65636D;
	margin-bottom: 10px;
}

.career-title h4 {
	font-size: 20px;
	margin-bottom: 0;
	letter-spacing: 3%;
	margin-bottom: 20px;
	font-weight: 600;
}

.career-content {
	margin-bottom: 20px;
}

.career-content p {
	font-weight: 400;
	color: #65636D;
}


.career-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	height: 44px;
	background: #EF7D00;
	border: none;
	font-size: 16px;
	color: #fff;
	font-weight: 600;
	font-family: "Inter", sans-serif;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	cursor: pointer;
	clip-path: polygon(8% 0, 100% 0, 100% 75%, 92% 100%, 0 100%, 0 25%);
	text-decoration: none;
}

.career-btn:hover {
	background: #DB7402;
}

@media (min-width: 768px) {
	.careers {
		margin: 70px 0;
	}

	.career-item {
		padding: 40px;
		display: flex;
		align-items: center;
		column-gap: 32px;
	}

	.career-content {
		margin-bottom: 0;
	}
}

@media (min-width: 1200px) {
	.careers {
		margin: 100px 0;
	}

	.career-title h5 {
		font-size: 18px;
	}

	.career-title h4 {
		font-size: 28px;
	}

	.career-content p {
		font-size: 18px;
	}

}

@media (min-width: 1366px) {
	.career-item {
		padding: 58px 110px;
		column-gap: 50px;
	}

	.career-left {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 50px;
	}

	.career-title {
		width: 260px;
	}

	.career-right {
		width: 170px;
	}

	.career-content {
		width: calc(100% - 330px);
	}
}

@media (min-width: 1600px) {
	.career-item {
		column-gap: 109px;
	}

	.career-left {
		column-gap: 150px;
	}

	.career-content {
		width: calc(100% - 430px);
	}
}

/* about mult image */

.about-mult-image {
	margin: 40px 0;
}

.about-mult-image__text,
.about-mult-image__img {
	width: 100%;
	position: relative;
}

.multi-hanging {
	display: none;
}

.about-mult-image__text {
	margin-bottom: 30px;
}

.about-mult-image__list {
	margin-bottom: 25px;
}

.about-mult-image__list:last-child {
	margin-bottom: 0;
}

.about-mult-image__list h4 {
	color: #231F20;
	margin-bottom: 10px;
	font-weight: 600;
	font-weight: 20px;
	line-height: 1.333em;
}

.about-mult-image__list p {
	color: #65636D;
	font-weight: 400;
}

.about-mult-image__img {
	height: 390px;
}

.about-mult-image__img img {
	border-radius: 8px;
}

.about-mult-image__img__wrapper {
	position: relative;
	height: 100%;
}

@media (min-width: 768px) {

	.about-mult-image {
		margin: 70px 0;
	}

	.about-mult-image__img {
		height: 658px;
	}

	.about-mult-image__img__wrapper {
		width: 562px;
		margin-left: auto;
	}
}

@media (min-width: 1200px) {

	.about-mult-image {
		margin: 100px 0;
	}

	.about-mult-image__img {
		height: auto;
		width: 440px;
	}

	.about-mult-image__img__wrapper {
		width: 440px;
	}

	.about-mult-image__img img {
		position: absolute;
	}

	.about-mult-image__text {
		width: calc(100% - 440px);
		padding-right: 68px;
	}

	.about-mult-image__listing {
		max-width: 400px;
	}

	.about-mult-image__list h4 {
		font-size: 28px;
	}
}

@media (min-width: 1366px) {

	.multi-hanging {
		display: block;
		width: 556px;
		height: 256px;
		bottom: 0;
		left: -143px;
	}

	.multi-hanging {
		border-radius: 20px !important;
	}
}

@media (min-width: 1600px) {

	.multi-hanging {
		left: -243px;
	}


	.about-mult-image__img__wrapper {
		width: 562px;
	}

	.about-mult-image__img img {
		position: absolute;
	}

	.about-mult-image__text {
		width: calc(100% - 562px);
		padding-right: 68px;
	}

	.about-mult-image__listing {
		max-width: 562px;
	}
}


/* spotlights */

.spotlight-wrapper {
	color: #fff;
	background: #113A7A;
	padding: 30px 20px;
}

.spotlight-wrapper {
	display: flex;
	flex-wrap: wrap;
	row-gap: 20px;
	justify-content: center;
}

.spotlight-item {
	width: 100%;
}

.spotlight {
	text-align: center;
}

.spotlight h4 {
	font-weight: 600;
	font-size: 20px;
	line-height: normal;
	letter-spacing: 3%;
	margin-bottom: 10px;
}

.spotlight p {
	line-height: 1.2em;
	font-weight: 400;
}

@media (min-width: 768px) {

	.spotlight-wrapper {
		padding: 50px 30px;
		row-gap: 32px;
	}

	.spotlight-wrapper {
		margin: 0 -16px;
	}

	.spotlight-item {
		width: 50%;
		padding: 0 16px;
	}

}

@media (min-width: 1200px) {

	.spotlight-wrapper {
		padding: 50px 80px;
	}

	.spotlight-wrapper {
		margin: 0 -16px;
	}

	.spotlight-item {
		width: 33%;
		padding: 0 16px;
	}

}

@media (min-width: 1600px) {

	.spotlight-wrapper {
		padding: 50px 110px;
	}

	.spotlight-wrapper {
		margin: 0 -43px;
	}

	.spotlight-item {
		padding: 0 43px;
	}

}

/* stats image text */

.stats-image-text {
	margin: 40px 0;
}

.stats-image-text__img,
.stats-image-text__text {
	position: relative;
	width: 100%;
}

.stats-image-text__img img {
	border-radius: 8px;
}

.stats {
	background: #EF7D00;
	border-radius: 20px;
	margin: 15px 0 0 0;
	padding: 20px;
	text-align: center;
	color: #444156;
}

.stat {
	margin-bottom: 20px;
}

.stat:last-child {
	margin-bottom: 0;
}

.stat h3 {
	margin-bottom: 10px;
	color: #FFFFFF;
	font-size: 50px;
	line-height: 1em;
	font-weight: 600;
}

.stat p {
	font-weight: 400;
	line-height: 1.2em;
	font-family: "Syne", sans-serif;
}

.stats-image-text__text {
	margin-top: 30px;
}

.stats-image-text__text ul {
	margin: 0;
	padding: 0;
}

.stats-image-text__text ul li {
	margin: 0 0 25px 0;
	padding: 0;
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
	color: #65636D;
	font-weight: 400;
	padding: 15px 10px 15px 50px;
	position: relative;
}

.stats-image-text__text ul li:before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	left: 16px;
	background: #EF7D00;
	border-radius: 2px;
	top: 50%;
	transform: translate(0, -50%);
}

.stats-image-text__text ul li:last-child {
	margin-bottom: 0;
}


@media (min-width: 768px) {

	.stats-image-text {
		margin: 70px 0;
	}

	.stats-image-text__img__wrapper {
		position: relative;
		max-width: 601px;
		height: 704px;
	}

	.stats {
		position: absolute;
		bottom: 0;
		width: 242px;
		padding: 15px;
		right: -111px;
	}

	.stat {
		margin-bottom: 30px;
	}

	.stat:last-child {
		margin-bottom: 0;
	}

}

@media (min-width: 1200px) {

	.stats-image-text {
		margin: 75px 0;
	}

	.stats-image-text__img__wrapper {
		width: calc(100% - 164px);
	}

	.stats-image-text__img,
	.stats-image-text__text {
		width: 50%;
	}

	.stats-image-text__text {
		margin: 0;
		padding-left: 30px;
	}

	.stats-image-text__text ul li {
		font-size: 18px;
	}

}

/* Team */

.team {
	background: linear-gradient(180deg, rgba(231, 239, 255, 0.5) 53.25%, rgba(255, 255, 255, 0) 100%);
	border-radius: 15px;
	padding: 40px 0;
}

.team__top-content {
	margin-bottom: 30px;
}

.team-preview-col {
	position: relative;
	overflow: hidden;
	border-radius: 15px;

}

.team-nav-col {
	position: relative;
	height: 150px;
	overflow: hidden;
	border-radius: 15px;
}

.team-preview-image,
.team-preview-image img,
.team-nav-image,
.team-nav-image img {
	width: 100%;
	height: 100%;
}

.team-preview-image img,
.team-nav-image img {
	object-fit: cover;
}

.team-preview-info,
.team-nav-info {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(35, 31, 32, 0.75) 0%, rgba(137, 121, 125, 0) 100%);
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-end;
	flex-direction: column;
	color: #FFFFFF;
	padding: 20px 22px;
}

.team-preview-info h5 {
	margin: 0 0 14px;
	padding: 0;
	font-size: 30px;
	font-weight: 600;
	color: #FFFFFF;
	line-height: 1em;
}

.team-preview-info p {
	margin: 0 0 14px;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 1.2em;
	font-family: "Syne", sans-serif;
}

.js-team-nav .slick-slide {
	margin: 0 5px;
}

.team-nav-info {
	align-items: center;
}

.team-nav-info h5 {
	margin: 0 0 6px;
	padding: 0;
	/* font-size: 20px; */
	font-size: 14px;
	font-weight: 600;
	color: #FFFFFF;
	line-height: 1em;
	letter-spacing: 0.03em;
}

.team-nav-info p {
	margin: 0;
	padding: 0;
	/* font-size: 18px; */
	font-size: 12px;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 1.33em;
	font-family: "Syne", sans-serif;
}

.js-team-for {
	padding-bottom: 10px;
}


@media (min-width: 768px) {
	.js-team-for .slick-slide {
		margin: 0 16px;
	}

	.js-team-for {
		margin: 0 -16px;
	}
}

@media (min-width: 1200px) {
	.team {
		padding: 40px 0 120px;
	}

	.team__wrapper {
		max-width: 1156px;
		margin: 0 auto;
	}

	.team__top-content {
		margin-bottom: 60px;
		padding-left: 452px;
		max-width: 1210px;
	}

	.js-team-for .slick-slide {
		margin: 0;
	}

	.team-listings {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-end;
		margin-top: -180px;
	}

	.team-left {
		max-width: 424px;
		overflow: hidden;
		border-radius: 15px;
		width: 434px;
	}

	.team-right {
		width: calc(100% - 444px);
	}

	.js-team-for {
		margin: 0;
		padding-bottom: 0;
	}

	.js-team-nav {
		display: block;
		margin: 0 -10px;
	}

	.js-team-nav .slick-slide {
		margin: 0 10px;
	}

	.team-preview-col,
	.team-nav-col {
		position: relative;
		height: 327px;
		overflow: hidden;
		border-radius: 15px;
	}
	
	.team-nav-col {
		position: relative;
		height: 327px;
		overflow: hidden;
		border-radius: 15px;
	}

	.team-preview-info,
	.team-nav-info {
		display: flex;
	}

	.team-preview-col {
		height: 557px;
	}

	.team-preview-info p {
		font-size: 20px;
	}

	.js-team-nav .slick-prev,
	.js-team-nav .slick-next {
		top: -115px;
		transform: none;
	}

	.js-team-nav .slick-prev {
		right: 104px;
		left: auto;
	}

	.team__top-content p {
		padding-right: 150px;
	}

	.team-nav-info h5 {
		font-size: 15px;
	}

	.team-nav-info h5 {
		font-size: 20px;
		text-align: center;
	}

	.team-nav-info p {
		font-size: 18px;
		text-align: center;
	}
}

@media (min-width: 1366px) {
	.team__wrapper {
		max-width: 1322px;
	}

	.team__top-content {
		padding-left: 451px;
		padding-right: 140px;
	}

	.team__top-content p {
		padding-right: 50px;
	}

	.team-nav-info h5 {
		font-size: 18px;
	}
}

@media (min-width: 1600px) {
	.team__wrapper {
		max-width: 100%;
	}

	.team-left {
		max-width: 521px;
	}

	.team__top-content p {
		padding-right: 0;
	}

	.team-nav-info h5 {
		font-size: 20px;
	}

	.team__top-content {
		padding-left: 570px;
		padding-right: 0px;
	}

	.team-left {
		width: 518px;
	}

	.team-right {
	    width: calc(100% - 538px);
	}

	.team-listings {
		margin-top: -201px;
	}
}

/* value image text */

.value-image-text {
	margin: 40px 0;
}

.value-image-text__img,
.value-image-text__text {
	position: relative;
	width: 100%;
}

.value-image-text__text {
	margin-top: 30px;
}

.value-image-text__img__wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	height: 250px;
}

.value-image-text__img-left {
	width: calc(40% - 8px);
	height: 100%;
}

.value-image-text__img-right {
	width: calc(60% - 8px);
	height: 100%;
}

.value-image-text__img__wrapper img {
	border-radius: 20px;
}

.value-image-text__listing {
	position: relative;
	z-index: 1;
}

.value-image-text__listing::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 20px;
	left: 30px;
	background: #000000;
	width: 1px;
	height: calc(100% - 40px);
}

.value-image-text__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 25px;
}

.value-image-text__list:last-child {
	margin-bottom: 0
}

.value-image-text__list-img {
	width: 62px;
	height: 62px;
	background: #EF7D00;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 23px;
	border-radius: 50%;
}

.value-image-text__list-content {
	width: calc(100% - 62px);
	padding-left: 32px;
}

.value-image-text__list-content h4 {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.33em;
	letter-spacing: 0.03em;
	color: #231F20;
	margin-bottom: 10px;
}

.value-image-text__list-content p {
	line-height: 1.33em;
	color: #444156;
	font-weight: 400;
}

@media (min-width: 768px) {

	.value-image-text {
		margin: 75px 0;
	}


	.value-image-text__img__wrapper {
		max-width: 786px;
		height: 539px;
	}

	
	.value-image-text__img__wrapper {
		gap: 22px;
	}

	.value-image-text__img-left {
		width: calc(50% - 11px);
		height: 100%;
	}

	.value-image-text__img-right {
		width: calc(50% - 11px);
		height: 100%;
	}


	.value-image-text__listing::before {
		left: 45px;
	}

	.value-image-text__list-img {
		width: 92px;
		height: 92px;
		font-size: 33px;
	}

	.value-image-text__list-content {
		width: calc(100% - 92px);
		padding-left: 44px;
	}

	.value-image-text__list-content h4 {
		font-size: 28px;
	}

}


@media (min-width: 1200px) {

	.value-image-text .flex-row {
		flex-direction: row-reverse;
	}

	.value-image-text__img {
		width: 506px;
	}

	.value-image-text__text {
		width: calc(100% - 506px);
		margin: 0;
		padding-right: 32px;
	}

	.value-image-text__listing {
		margin-top: 55px;
	}

	.value-image-text__list {
		margin-bottom: 45px;
	}

	.value-image-text__list-content p {
		font-size: 18px;
	}

}


@media (min-width: 1600px) {

	.value-image-text__img {
		width: 786px;
	}

	.value-image-text__text {
		width: calc(100% - 786px);
		padding-right: 77px;
	}

	.value-image-text__img {
		width: 686px;
	}

	.value-image-text__text {
		width: calc(100% - 686px);
		margin: 0;
		padding-right: 32px;
	}

	.value-image-text__img-left {
		width: 294px;
		height: 100%;
	}

	.value-image-text__img-right {
		width: calc(100% - 316px);
	}

}




/* pop-form */

.pop-form {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 22px;
	display: none;
}

.pop-form__overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.8;
}

.pop-form__wrapper {
	position: relative;
	z-index: 2;
	max-width: 690px;
	width: 100%;
}

.pop-form.active {
	display: flex;
}

.pop-thankyou {
	text-align: center;
}

.check-img {
	margin: 0 auto 10px;
	width: 70px;
}

.pop-thankyou h3 {
	color: #41B900;
	font-weight: 600;
}

#thankyou {
	display: none;
}

.masthead__bttn .btn {
	padding-right: 28px;
}

.masthead__bttn .btn::after {
	display: none;
}

@media (min-width: 1200px) {
	
	.check-img {
		width: 100px;
	}

	.pop-thankyou h3 {
		font-size: 28px;
	}

	.pop-thankyou p {
		font-size: 16px;
	}

	.image-text__heading {
		position: relative;
	}

	.image-text__heading::after {
		content: '\e904';
		font-family: 'var-icon';
		position: absolute;
		right: 100px;
		top: 50%;
		transform: translate(0, -50%);
		color: #EEEEF0;
		font-size: 11px;
		font-weight: normal;
		background: #EF7D00;
		width: 48px;
		height: 48px;
		display: flex;
		align-items: center;
		justify-content: center;
		clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%)
	}
}

.menu li {
    position: relative;
}



/* SUBMENU DESKTOP */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 290px;
  
    display: none;
   background: #00000066;
}

.submenu a {
    padding: 12px 15px;
    font-size: 21px !important;
}

/* HOVER DESKTOP */
@media (min-width: 769px) {
    .has-submenu:hover .submenu {
        display: block;
    }
}

/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    padding: 15px;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
    }

    .menu.open {
        display: block;
    }

    .submenu {
        position: static;
        display: none;
        box-shadow: none;
    }

    .has-submenu.open .submenu {
        display: block;
    }

    .arrow {
        float: right;
    }
}

/* ALWAYS HIDE SUBMENU BY DEFAULT */
.submenu {
    display: none !important;
}

/* DESKTOP HOVER */
@media (min-width: 769px) {
    .has-submenu:hover > .submenu {
        display: block !important;
    }
}

/* MOBILE OPEN */
@media (max-width: 768px) {
    .has-submenu.open > .submenu {
        display: block !important;
    }
}
