/*
Description:
	1 - Including files (fonts, theme-colors, "reset.css" and others)
	2 - Tags styles and General styles
	3 - header
	4 - .content
	5 - footer
	* - @media rules
*/

/* 1 - BEGIN Including files (fonts, theme-colors, "reset.css" and others)) ---------------------------------------------------------- */

@font-face {
	font-family: "Gotham SSm A", "Gotham SSm B";
	font-weight: 400;
	font-style: normal;

}

@font-face {
	font-family: "Gotham SSm A", "Gotham SSm B";
	font-weight: 500;
	font-style: normal;

}

@font-face {
	font-family: "Gotham SSm A", "Gotham SSm B";
	font-weight: 700;
	font-style: normal;

}

@font-face {
	font-family: "Surveyor Display A", "Surveyor Display B";
	font-weight: 400;
	font-style: normal;

}


/* THEME COLORS */

:root {
	--theme-color: #b60315;
	--theme-color-secondary: #ffff00;
	--theme-color-text: #333;
	--theme-bg: #f3f3f3;
}

/*  */

html body .bg-white {
	background-color: #ffffff;
}

html body .bg-gray {
	background-color: #dddddd;
}

html body .bg-black {
	background-color: #000000;
}

html body .bg-theme {
	background-color: var(--theme-bg);
}

html body .bg-theme-light {
	background-color: var(--theme-color-light);
}

html body .bg-theme-dark {
	background-color: var(--theme-color-dark);
	color: #ffffff;
}

html body .bg-theme-secondary {
	background-color: var(--theme-color-secondary);
	color: #ffffff;
}

/*  */

html body .color-white {
	color: #ffffff;
}

html body .color-gray {
	color: #666666;
}

html body .color-theme {
	color: var(--theme-color);
}

html body .color-theme-light {
	color: var(--theme-color-light);
}

html body .color-theme-dark {
	color: var(--theme-color-dark);
}

html body .color-theme-secondary {
	color: var(--theme-color-secondary);
}

/* BEGIN of CSS RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

/* END of CSS RESET */

/* 1 - END of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */
/* 2 - BEGIN of Tags and General styles ---------------------------------------------------------- */

html {
	scroll-behavior: smooth;
	scroll-padding-top: 0;
}

body {
	min-height: 500px;
	margin: 0 auto;
	font-family: "Gotham SSm A", "Gotham SSm B";
	font-size: 14px;
	line-height: 26px;
	color: var(--theme-color-text);
}

a {
	color: inherit;
	text-decoration: none;
	outline: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a:hover {
	opacity: 0.7;
	text-decoration: none;
	color: inherit;
	outline: none;
}

a:active {
	opacity: 0.6;
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: none;
	color: inherit;
	text-decoration: none;
}

button, input, textarea, select {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

button:hover, input:hover, textarea:hover, select:hover {
	opacity: 0.8;
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

img {
	max-width: 100%;
}

h1, .h1 {
	margin: 0 0 50px;
	font-size: 58px;
	line-height: 54px;
	color: #000000;
	font-family: "Surveyor Display A", "Surveyor Display B";
}

h2, .h2 {
	margin: 0 0 50px;
	font-size: 58px;
	line-height: 54px;
	color: #000000;
	font-family: "Surveyor Display A", "Surveyor Display B";
}

h3, .h3 {
	margin: 0 0 15px;
	font-size: 42px;
	line-height: 42px;
	color: #000000;
	font-family: "Surveyor Display A", "Surveyor Display B";
}

h4, .h4 {
	margin: 0 0 15px;
	font-size: 34px;
	line-height: 32px;
	color: #000000;
	font-family: "Surveyor Display A", "Surveyor Display B";
}

h5, .h5 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 18px;
}

h6, .h6 {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 400;
	font-family: "Gotham SSm A", "Gotham SSm B";
	text-transform: uppercase;
}

blockquote {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 20px;
	display: block;
	position: relative;
}

p {
	padding: 0 0 15px;
}

ul, ol {
	padding: 0 0 15px 20px;
}

ul ol, ul ul, ol ul, ol ol {
	padding-bottom: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
ul:last-child,
ol:last-child,
p:last-child {
	padding-bottom: 0;
}

.clear:before, .clear:after {
	content: "";
	display: block;
	clear: both;
}

.hide, .hidden {
	display: none;
}

.content-wrapper {
	width: 1000px;
	height: 100%;
	margin: 0 auto;
}

.alignleft, img.alignleft {
	float: left;
	display: block;
	margin: 0 5px 0 0;
}

.alignright, img.alignright {
	float: right;
	display: block;
	margin: 0 0 0 5px;
}

.aligncenter, img.aligncenter {
	float: none;
	display: block;
	margin: 0 auto 0;
}

.alignnone, img.alignnone {
	margin: 0 0 0;
	display: block;
}

/*  */

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

/*  */

.container {
	max-width: 1320px;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	padding-left: 15px;
	padding-right: 15px;
}

[class*="col-"] {
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

.container-630px {
	max-width: 630px;
	margin: 0 auto;
}

/* 2 - END of Tags styles and General styles ---------------------------------------------------------- */
/* 3 - BEGIN of header ---------------------------------------------------------- */

header {
	position: fixed;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
}

.navbar, header, .logo, header + * {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.header-fixed {
	position: fixed;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
	box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, .25);
	background: #000000;
}

.header-fixed .navbar-toggler-icon .icon-bar {
	background: #fff;
}

.header-fixed .logo {
	max-width: 80px;
	height: 80px;
	padding-top: 0px;
	padding-left: 6px;
	padding-right: 6px;
}

.header-fixed + * {
/*  padding-top: 100px;*/
}

.header-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	max-width: 135px;
	height: 135px;
	width: 100%;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--theme-color);
	transition: all .3s;
}

.logo img {
	display: block;
}

header a {
	color: inherit;
}

.navbar {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	clear: none;
	border: none;
	min-height: 0;
	float: right;
}

.navbar-collapse {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav {
	gap: 20px;
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav > li {
	outline: none;
	position: relative;
}

#navbar .nav-link {
	padding: 5px 0 5px;
	margin: 0 0 0;
	font-size: 13px;
	line-height: 20px;
	text-transform: uppercase;
	color: #fff;
	background: transparent;
	font-weight: 400;
	position: relative;
	background: transparent;
}

#navbar .nav-link:before {
	opacity: 0;
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: #fff;
	transform: translateY(-5px);
	transition: all .3s;
}

#navbar .nav-link.active:before,
#navbar .nav-link:hover:before {
	opacity: 1;
	transform: translateY(0);
}

#navbar .nav-link:focus, #navbar .nav-link:hover {
	background: transparent;
	opacity: 1;
}

#navbar .nav-link:not(:last-child):after {
	margin: 0 0 0 4px;
	font-size: 15px;
	content: "\f107";
	font-family: "FontAwesome";
}



/*  */

.subnav,
.container .subnav {
	padding: 10px 0 10px;
	margin: 0 0 0;
	position: absolute;
	left: 0;
	top: 99%;
	display: none;
	background: var(--theme-color);
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, .25);
}

.subnav li {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
	list-style: none;
}

.subnav a {
	font-size: 90%;
	padding: 5px 15px 5px;
	margin: 0 0 0;
	font-weight: 400;
	position: relative;
	display: block;
	white-space: nowrap;
	color: #fff;
}

li:hover > .subnav {
	display: block;
}

/*  */

.navbar-toggler {
	position: relative;
	padding: 0 0 0;
	margin: 0 0 0;
	border-radius: 0;
	border: none;
	float: right;
	position: relative;
	z-index: 10;
}

.navbar-toggler:focus, .navbar-toggler:active {
	box-shadow: none;
	outline: none;
}

.navbar-toggler-icon, .navbar-light .navbar-toggler-icon {
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	padding: 4px 0 0;
	margin: 0 0 0;
	background: transparent;
	z-index: 5;
	position: relative;
	display: inline-block;
	border: none;
}

.navbar-toggler-icon .icon-bar {
	width: 30px;
	height: 2px;
	border-radius: 10px;
	background: var(--theme-color);
	position: relative;
	display: block;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.navbar-toggler-icon .icon-bar+.icon-bar {
	margin-top: 8px;
}

.navbar-toggler-icon.active .icon-bar {
	margin: 0;
	height: 2px;
}

.navbar-toggler-icon.active .icon-bar:nth-of-type(1) {
	top: 10px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.navbar-toggler-icon.active .icon-bar:nth-of-type(2) {
	background-color: transparent;
}

.navbar-toggler-icon.active .icon-bar:nth-of-type(3) {
	top: 5px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.header-contact {
	display: flex;
	gap: 15px;
	font-size: 24px;
	line-height: 23px;
	color: #ffffff;
	font-family: "Surveyor Display A", "Surveyor Display B";
}

.header-contact .fa {
	font-size: 18px;
}

/*  */

/* spinner css start */

.spinner-wr {
	background: #ffffff;
	background: var(--theme-color-light);
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	/*!!!!!!!!!!!!!!!!!!!!!!!*/
	/*display: none;*/
}

.spinner {
	width: 60px;
	height: 60px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
}

.double-bounce1, .double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50px;
	border-radius: 50%;
	background-color: var(--theme-color);
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;

	-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
	animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
	0%, 100% {
	transform: scale(0.0);
	-webkit-transform: scale(0.0);
	} 50% {
	transform: scale(1.0);
	-webkit-transform: scale(1.0);
	}
}

/* spinner css end */
/* back-to-top css start */

.back-to-top {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 99;
	width: 36px;
	height: 36px;
	padding: 0 0 0;
	margin: 0 0 0;
	overflow: hidden;
	text-align: center;
	font-size: 18px;
	line-height: 1;
	background: transparent url('img/icon-arrow-up.svg') no-repeat center center;
	background-size: contain;
	cursor: pointer;
	text-decoration: none;
	text-indent: -9999px;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	opacity: 0;
}

.back-to-top.show {
	opacity: 1;
}

.back-to-top:not(.show):hover {
	opacity: 0;
	cursor: default;
}

.back-to-top:hover {
	-moz-animation: bounce 1.5s infinite;
	-webkit-animation: bounce 1.5s infinite;
	animation: bounce 1.5s infinite;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

/* back-to-top css end */

#ho_adv {
	display: none;
	position: absolute;
	width: 0;
	height: 0;
	left: -9999px;
}

/* 3 - END of header ---------------------------------------------------------- */
/* 4 - BEGIN of .content ---------------------------------------------------------- */

.content {
	position: relative;
}

.box-wr {
	padding: 90px 0 90px;
	position: relative;
	background-repeat: no-repeat;
}

.box-banner {
	margin: 0 auto 0;
	padding: 0 70px 0;
	max-width: 1700px;
}

.banner-slider {
	border-bottom: 6px solid var(--theme-color);
	overflow: hidden;
}

/*  */

.img-bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	-webkit-transition: all 1.5s ease;
	-o-transition: all 1.5s ease;
	transition: all 1.5s ease;
}

.slide-item:not(.slide-zoomIn) .img-bg {
	-webkit-animation: slowZoomMin 80s linear infinite;
}

.slider-top-banner .slide-item .img-overlay * {
	opacity: 0;
	-webkit-transition: all .9s ease;
	-o-transition: all .9s ease;
	transition: all .9s ease;
}

.slider-top-banner .slide-item.slick-current .img-overlay *:not(.fadeOut) {
	opacity: 1;
}

/*  */

.banner-item {
	position: relative;
}

.banner-item__media {
	display: block;
	height: auto;
	width: 100%;
	min-height: 667px;
	object-fit: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.box-banner-homepage .banner-item__media {
	min-height: 814px;
	height: auto;
}

.box-banner-h-505px .banner-item__media {
	min-height: 505px;
	height: auto;
	border-bottom: 6px solid var(--theme-color);
}

.banner-item .slick-slider {
	overflow: hidden;
}

.banner-item__overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	padding: 0 0 75px;
}

.banner-item__content {
	display: flex;
	justify-content: space-between;
	color: #fff;
}

.banner-item__content .h1 {
	margin: 0;
	color: #fff;
}

.banner-link__wrap {
	position: relative;
	display: flex;
	align-items: flex-end;
	width: 400px;
}

.banner-link__header {
	display: flex;
	flex-direction: column;
	padding-right: 22px;
}

.banner-link__header span {
	padding-left: 3px;
	font-size: 15px;
	line-height: 15px;
}

.banner-link__header strong {
	font-size: 21px;
	line-height: 21px;
}

.banner-link__list {
	position: absolute;
	right: 25px;
	bottom: -35px;
	transform: rotate(-90deg);
	padding: 0;
	list-style: none;
}

.banner-link__list li {
	position: relative;
}

.banner-link__list li a {
	position: relative;
	display: block;
	min-width: 110px;
	padding: 8px 0 8px 37px;
	border-top: 1px solid #fff;
}

.banner-link__list li:last-child a {
	border-bottom: 1px solid #fff;
}

.banner-link__list li span {
	font-size: 17px;
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
}

.banner-link__list li img {
	position: absolute;
	left: 0;
	top: 9px;
	max-width: 28px;
	max-height: 26px;
	transform: rotate(90deg);
}

.box-services {
	background-image: url(img/services-bg.png);
	background-position: right center;
	background-color: #fff;
}

.block-services__wrap div:first-child {
	padding-right: 45px;
}

.services-links {
	padding: 0;
	list-style: none;
}

.services-links li {
	display: flex;
	align-items: flex-start;
}

.services-links li span {
	padding-right: 20px;
	font-size: 31px;
	line-height: 36px;
	color: #8e8e8e;
	font-family: "Surveyor Display A", "Surveyor Display B";
}

.services-links li a {
	font-size: 31px;
	line-height: 36px;
	text-decoration: underline;
	color: #000000;
	font-family: "Surveyor Display A", "Surveyor Display B";
	text-decoration-thickness: 1px
}

.box-services p a {
	text-decoration: underline;
}










/*  */

.img-wr {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

.img-wr img {
	display: block;
	margin: 0 auto 0;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.img-wr > a {
	display: block;
	overflow: hidden;
	width: 100%;
	-webkit-backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	-webkit-transition: all .7s ease;
	transition: all .7s ease;
}

.img-wr:hover a img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

/*  */

.display-inline-block {
	display: inline-block;
	vertical-align: middle;
}

.display-block {
	display: block;
}

.display-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.display-inline-flex {
	display: inline-flex;
	align-items: center;
}

.vertical-align-wrapper {
	display: table;
	width: 100%;
	height: 100%;
}

.vertical-align-middle {
	display: table-cell;
	vertical-align: middle;
}

.vertical-align-bottom {
	display: table-cell;
	vertical-align: bottom;
}

/*  */

.tdu {
	text-decoration: underline;
}

.ttu {
	text-transform: uppercase;
}

.ttn {
	text-transform: none;
}

/*  */

.slide-item {
	outline: none;
}

/*  */

.bordered-bottom {
	padding: 0 0 20px;
	margin: 0 0 20px;
	position: relative;
	border: none;
}

.bordered-bottom:after {
	width: 80px;
	border-bottom: 4px solid;
	left: 0;
	bottom: 0;
	margin: auto;
	content: "";
	display: block;
	position: absolute;
}

.text-center.bordered-bottom:after {
	right: 0;
}

body .text-left.bordered-bottom:after {
	right: auto;
}

/*  */

.columns-2 {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
}

/*  */

body .gallery-thumb-item {
	margin: 0 0 15px;
	padding: 0 0 0;
	display: block;
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
}

.gallery-thumb-item img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.gallery-thumb-item:before {
	position: absolute;
	left: 0;
	right: 0;
	top: -100px;
	bottom: 100%;
	width: 30px;
	height: 30px;
	line-height: 1;
	font-size: 30px;
	color: #ffffff;
	margin: auto;
	text-shadow: 0px 1px 3px #222222;
	font-family: "FontAwesome";
	content: "\f00e";
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.gallery-thumb-item[href*="youtube"]:before {
	content: "\f01d";
}

.gallery-thumb-item:hover:before {
	top: 0;
	bottom: 0;
}

/*  */

body .padding-0 {
	padding: 0;
}

body .padding-top-0 {
	padding-top: 0;
}

body .padding-bottom-0 {
	padding-bottom: 0;
}

body .margin-0 {
	margin: 0;
}

body .margin-top-0 {
	margin-top: 0;
}

body .margin-bottom-0 {
	margin-bottom: 0;
}

/*  */

.border-radius-5px {
	border-radius: 5px;
}

.border-radius-10px {
	border-radius: 10px;
}

.border-radius-15px {
	border-radius: 15px;
}

.border-radius-20px {
	border-radius: 20px;
}

.border-radius-25px {
	border-radius: 25px;
}

.border-radius-30px {
	border-radius: 30px;
}

.img-rounded,
.block-rounded {
	border-radius: 500px;
	border-radius: 50%;
}

.block-shadowed {
	box-shadow: 20px 15px 30px 20px rgba(0, 0, 0, 0.05);
}

.block-bordered {
	border: 1px solid var(--theme-color);
}

.block-bordered-bottom {
	border-bottom: 1px solid var(--theme-color);
}

/*  */

.columns-same-height > * {
	margin-bottom: 30px;
}

.columns-same-height > * > * {
	height: 100%;
	margin-bottom: 0;
}

/*  */

.justify-content-center,
.display-flex.text-center {
	gap: 30px;
	justify-content: center;
}

.justify-content-start {
	justify-content: flex-start;
}

.justify-content-end {
	justify-content: flex-end;
}

.align-items-center {
	align-items: center;
}

.align-items-start {
	align-items: flex-start;
}

.align-items-end {
	align-items: flex-end;
}

/*  */

.row-reverse {
	flex-direction: row-reverse;
}
















/*  */

body .btn-main {
	padding: 12px 30px 12px;
	margin: 0 auto 30px;
	font-size: 16px;
	line-height: 30px;
	min-width: 230px;
	gap: 10px;
	border-radius: 5px;
	letter-spacing: 0.05em;
	font-weight: 400;
	width: auto;
	font-style: normal;
	color: #ffffff;
	background: var(--theme-color);
	border: none;
	text-align: center;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;

	box-shadow: inset 0 0 20px rgba(0, 0, 0, 0);
	outline: 1px solid;
	outline-color: var(--theme-color);
	outline-offset: -1px;
	text-shadow: none;
	transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

html body .btn-main:hover {
	opacity: 1;
	box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.15), 0 0 20px -10px var(--theme-color);
	outline-color: rgba(0, 0, 0, 0);
	outline-offset: 15px;
}

.btn-main.bg-white {
	color: var(--theme-color-text);
}

body .btn-main:last-child {
	margin-bottom: 0;
}

.btn-transparent {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 17px 48px 17px;
	min-width: 150px;
	gap: 10px;
	font-size: 13px;
	color: #ffffff;
	font-weight: 500;
	outline: 1px solid #fff;
	outline-color: #fff;
	outline-offset: -1px;
	background: transparent;
}

.btn-transparent:hover {
	background: #fff;
	opacity: 1;
	color: #000;
}

.btn-transparent:active {
	outline: 1px solid #fff;
	outline-color: #fff;
	color: #fff;
	opacity: 1;
}

.btn-transparent:focus {
	outline: 1px solid #fff;
	outline-color: #fff;
	opacity: 1;
}
/*  */

form {
	margin: 0 0 0;
	padding: 0 0 0;
}

form:after {
	content: "";
	display: block;
	clear: both;
}

form input, form textarea, form select {
	display: block;
	margin: 0 0 0;
	padding: 10px 20px 10px;
	font-size: 16px;
	line-height: 20px;
	color: #333333;
	background-color: #ffffff;
	clear: both;
	outline: none;
	width: 100%;
	border: 1px solid #cccccc;
	border-radius: 3px;
}

form input[type="submit"] {
	margin: 0 0 0;
	width: auto;
}

form input:hover, form textarea:hover, form select:hover {
	color: #333333;
	border-color: #666666;
	opacity: .65;
}

form input:focus, form textarea:focus, form select:focus {
	color: #333333;
	border-color: #666666;
	opacity: 1;
}

form label {
	display: block;
}

*::-webkit-input-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-moz-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*::-moz-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-ms-input-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:focus::-webkit-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus::-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-ms-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

/*  */

.list-styled-checkmarks {
	padding: 0 0 0;
	margin: 0 0 30px;
	position: relative;
}

.list-styled-checkmarks li {
	padding: 0 0 0 35px;
	margin: 0 0 15px;
	position: relative;
	list-style: none;
}

.list-styled-checkmarks li:before {
	font-size: 20px;
	line-height: 1;
	padding: 0 0 0;
	margin: 0 0 0;
	position: absolute;
	left: 0;
	top: 0;
	content: "\F26A";
	font-family: 'bootstrap-icons';
	color: var(--theme-color-secondary);
}

/*  */

.list-unstyled {
	padding: 0 0 0;
	margin: 0 0 0;
	list-style: none;
}

.list-unstyled li {
	margin: 0 0 10px;
}

/*  */

.list-inline {
	padding: 0 0 0;
	margin: 0 0 0;
}

.list-inline li {
	padding: 0 0 0;
	margin: 0 0 0;
	display: inline-flex;
}

.list-inline li+li:before {
	content: "|";
	padding: 0 0 0;
	margin: 0 10px 0;
}

/*  */

.block-heading {
	margin: 0 0 50px;
	padding: 0 0 0;
}

.block-heading .h2, .block-heading h2 {
	margin: 0;
}

.block-heading .h6 {
	display: inline-block;
	padding: 6px 15px;
	color: #fff;
	background: var(--theme-color);
}

.stories-item {
	position: relative;
	display: block;
	margin-bottom: 30px;
	overflow: hidden;
}

.stories-item:hover {
	opacity: 1;
}

.stories-item > img {
	display: block;
	transition: all .8s;
}

.stories-item:hover img {
	transform: scale(1.1);
}

.stories-item__overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-left: 35px;
	padding-bottom: 20px;
}

.stories-item__overlay .h2 {
	margin: 0 0 7px;
	color: #fff;
}

.stories-item__overlay .h6 {
	color: #fff;
}

.box-testimonials {
	padding: 110px 0 130px;
	color: #FFF;
}

.box-testimonials h4 {
	color: inherit;
	margin: 20px 0 3px;
	font-size: 25px;
}

.box-news + .box-testimonials {
	margin-bottom: 120px;
}

.testimonials-slider {
	padding: 0 0 60px;
}

.testimonials-slider__item {
	position: relative;
	padding-top: 70px;
}

.testimonials-slider__item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 29px;
	height: 23px;
	background: url(img/quotes-ic.png);
}

.testimonials-slider__item p {
	max-width: 880px;
	margin: 0 auto;
	font-size: 31px;
	line-height: 36px;
	font-family: "Surveyor Display A", "Surveyor Display B";
	text-align: center;
}

.testimonials-author {
	opacity: 0.502;
	font-size: 13px;
	text-align: center;
}

.slick-slide .testimonials-img {
	display: none;
}

.testimonials-dots li {
	width: 80px;
	height: 80px;
	margin: 0 10px;
	opacity: .7;
	transition: all .3s ease;
}

.testimonials-dots li:hover {
	opacity: 1;
}

.testimonials-dots li.slick-active {
	opacity: 1;
}

.testimonials-dots img {
	transition: all .3s;
}

.testimonials-dots  .slick-active img {
	transform: scale(1.2);
}

.news-main__img {
	display: block;
	margin: 0 0 20px;
}

.news-main__img img {
	display: block;
}

.news-main__info {
	display: flex;
	align-items: flex-start;
}

.news-main__date strong {
	display: block;
	font-size: 54px;
	line-height: 42px;
	font-weight: normal;
	color: #000000;
	font-family: "Surveyor Display A", "Surveyor Display B";
}

.news-main__date span {
	display: block;
	font-size: 15px;
	color: #000;
	text-align: center;
}

.news-main__text {
	padding-left: 25px;
}

.news-item {
	display: flex;
	align-items: flex-start;
	margin: 0 0 28px;
}

.news-item__img  {
	width: 208px;
}

.news-item__img img {
	display: block;
}

.news-item__info {
	width: calc(100% - 208px);
	padding-left: 30px;
	padding-top: 30px;
}

.news-item__top {
	display: flex;
	align-items: center;
	margin: 0 0 10px;
}

.news-item__tag {
	padding: 0px 8px;
	margin-right: 20px;
	font-size: 13px;
	color: #fff;
	background: var(--theme-color);
}

.news-item__tag:hover {
	color: #fff;
}

.box-work {
	position: relative;
	padding: 0;
}

.box-contact + .box-work {
	margin-bottom: 120px;
}

.box-work > img {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

.block-work {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	color: #fff;
}

.block-work h2 {
	margin: 0 0 35px;
	color: #fff;
}

.block-work .block-heading {
	margin: 0;
}

.box-team {
	background: #000;
}

.box-team h2 {
	color: #FFF;
}

.team-item {
	display: flex;
}

.team-item__img {
	width: 47.5%;
}

.team-item__img img {
	display: block;
}

.team-item__text {
	width: 52.5%;
	padding: 45px 20px 0 30px;
	color: #fff;
	background: #151a1c;
}

.team-item__text h4 {
	margin: 0;
	font-size: 31px;
	line-height: 31px;
	color: #ffffff;
	font-family: "Surveyor Display A", "Surveyor Display B";
}

.team-item__text p a {
	text-decoration: underline;
}

.team-slider {
	margin:0 -15px;
}
.team-slider__item {
	margin-right:15px;
	margin-left:15px;
}
.team-item__post {
	margin: 0 0 30px;
	font-size: 12px;
	opacity: .5;
}

.team-slider .slick-dots li {
	width: 12px;
	height: 12px;
	margin: 0;
}

.team-slider .slick-dots li button:before {
	width: 12px;
	height: 12px;
	color: #fff;
	font-size: 7px;
}

.block-contact__wrap {
	display: flex;
	justify-content: space-between;
	max-width: 1210px;
	margin: 0 auto;
}

.block-contact__item {
	position: relative;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.block-contact__item > a, .block-contact__item > span {
	position: relative;
	text-align: center;
	font-size: 34px;
	line-height: 36px;
	color: #000000;
	font-family: "Surveyor Display A", "Surveyor Display B";
}

.block-contact__number {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0.8;
	font-size: 165px;
	line-height: 165px;
	text-align: center;
	color: #eeeeee;
	font-family: "Surveyor Display A", "Surveyor Display B";
	text-shadow: 0 0 16px rgba(0,0,0,.4);
}

.inner .box-banner {
	border: 0;
}

.box-header {
	position: relative;
	top: -120px;
	margin-bottom: -130px;
	background: transparent;
}

.box-header .block-heading {
	max-width: 1062px;
	margin: 0 auto;
	padding: 40px 30px 50px;
	background: var(--theme-bg);
	border-top: 6px solid var(--theme-color);
}

.box-header .block-heading p {
	max-width: 880px;
	margin: 0 auto;
}

.box-header .block-heading h1 {
	margin-bottom: 30px;
}

.isotope-grid-item {
	margin-bottom: 30px;
}

.isotope-grid-item > a,
.isotope-grid-item img {
	display: block;
}

.filter-button-group {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	padding-left: 36px;
	margin: 0 0 30px;
}

.filter-button-group:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 36px;
	background-image: url(img/ic-stills.svg);
	background-repeat: no-repeat;
	background-position: 60% 50%;
	background-size: 69%;
	background-color: #000;
}

.btn-filter {
	padding: 3px 18px;
	border: none;
	font-size: 13px;
	border-right: 1px solid #fff;
	outline: none;
	text-transform: uppercase;
	background: var(--theme-bg);
}

.btn-filter.active {
	background: var(--theme-color);
	color: #fff;
}

.box-video {

}

.box-video__img {
	position: relative;
	min-height: 680px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.box-video__bg {
	position: absolute;
	left: 0;
	top: 0;
}

.box-video__item {
	position: relative;
	overflow: hidden;
	display: block;
}

.box-video__item img {
	display: block;
	max-height: 450px;
}

.box-video__item:hover {
	opacity: 1;
}

.box-video__item:hover img {
	transition: all .5s;
}

.box-video__item:hover img {
	transform: scale(1.1);
}

.play-btn {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.play-btn .fa {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 82px;
	border-radius: 50%;
	background: #fff;
	opacity: 0.9;
	color: var(--theme-color);
	transition: all .3s;
}

.play-btn .fa:hover {
	transform: scale(1.1);
}

.box-video__text {
	padding: 50px 0 0 90px;
}

.box-video__text ul {
	list-style: none;
}

.box-video__text ul li a {
	text-decoration: underline;
}

.bg-black h1, .bg-black .h1, .bg-black h2, .bg-black .h2 {
	color: #fff;
}

.box-carousel  {
	overflow: hidden;
}

.box-carousel .slick-list {
	overflow: visible;
}

.slider-video {
	margin: 0 -15px;
}

.slider-video__item {
	margin: 0 15px;
}

.box-carousel .container {
	position: relative;
}

.box-carousel .container:before {
	content: '';
	position: absolute;
	left: -1000px;
	top: 0;
	bottom: 0;
	width: 1000px;
	background: #000;
	z-index: 10;
}

.banner-inner .banner-item__media {
	height: auto;
}

.box-faces {
	padding-bottom: 10px;
}

.block-faces .team-item {
	margin-bottom: 80px;
}

.box-updates {
	padding: 180px 0;
}

.updates-item {
	margin-bottom: 30px;
	background: #f4f4f4;
}

.updates-item .news-item__info {
	width: auto;
	padding: 20px 30px;
}

.updates-item__img {
	overflow: hidden;
}

.updates-item__img a {
	display: block;
}

.updates-item__img img {
	display: block;
	transition: all .5s;
}

.updates-item__img a:hover img {
	transform: scale(1.1);
}

.updates-item h4 {
	margin: 0;
	font-size: 30px;
	padding: 0 0 4px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.updates-item__read {
	padding: 20px 30px;
}

.updates-read {
	text-transform: uppercase;
	opacity: .8;
}

.updates-read .fa {
	padding-left: 15px;
	font-size: 18px;
	color: var(--theme-color);
	transition: all .5s;
}

.updates-read:hover {
	opacity: 1;
}

.updates-read:hover .fa {
	transform: translateX(5px);
}

.block-heading > .news-item__top {
	justify-content: center;
	margin: 0;
}

.block-article p {
	max-width: 630px;
	margin: 0 auto;
	padding: 0 0 25px;
}

.block-article .row {
	margin-left: -4px;
	margin-right: -4px;
}

.block-article [class^=col] {
	padding-left: 4px;
	padding-right: 4px;
}

.block-article__img {
	margin: 40px 0 100px;
}

.block-article__img img {
	display: block;
	margin: 0 0 8px;
}

.box-article {
	padding-bottom: 0;
}

/*  */

.header-contact__tel {
	text-shadow: 0px 0px 4px rgba(0, 0, 0, .5);
}

/*  */

.slick-dots li button:before {
	font-size: 12px;
	line-height: 20px;
	width: 20px;
	height: 20px;
	content: '•';
	opacity: .75;
	color: var(--theme-color);
}

.slick-dots li.slick-active button:before {
	opacity: 1;
	color: var(--theme-color);
}

.slick-dots {
	bottom: -57px;
}

/*  */

.slick-prev, .slick-next {
	width: 40px;
	height: 40px;
	line-height: 40px;
	padding: 0 0 0;
	margin: 0 0 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	transition: all .3s ease;
}

.slick-prev {
	left: 15px;
}

.slick-next {
	right: 15px;
}

.slick-prev:hover, .slick-next:hover {
	margin: 0 -5px;
}

.slick-prev:before, .slick-next:before {
	font-family: 'bootstrap-icons';
	font-size: 45px;
	line-height: 1;
	opacity: 1;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--theme-color);
}

.slick-prev:before {
	content: '\F12F';
}

.slick-next:before {
	content: '\F138';
}

/*  */

.slider-arrows-bottom-right .slick-prev, .slider-arrows-bottom-right .slick-next {
	top: auto;
	bottom: -85px;
}

.slider-arrows-bottom-right .slick-prev {
	left: auto;
	right: 70px;
}

.slider-arrows-bottom-right .slick-prev:hover {
	margin: 0 5px;
}

/*  */

.lottie-player-wrapper {
	position: relative;
}

.lottie-player-wrapper lottie-player {
	width: 100%;
	height: 100%;
}

.logo .lottie-player-wrapper {
	width: 100%;
	height: 100%;
}

.styled-hr {
	border: none;
	height: 1px;
	background-color: #212529; /* Change the color as needed */
	width: 100%; /* Adjust width as needed */
	margin: 50px auto; /* Centers the line and adds space around it */
}

/*  */

.box-team-member .block-services__wrap div:first-child {
	padding-right: 20px;
}

span.nav-link {
    box-shadow: inset 0px 0px 5px 0px transparent;
}













/* 4 - END of .content ---------------------------------------------------------- */
/* 5 - BEGIN of footer ---------------------------------------------------------- */

footer {
	padding: 0 0 80px;
	background: #000;
	position: relative;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.footer-logo {
	max-width: 135px;
	height: 139px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--theme-color);
}

.footer-top {
	margin-bottom: 35px;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 0 20px;
	list-style: none;
}

.footer-nav li {
	margin-left: 18px;
}

.footer-nav li a {
	display: block;
	text-transform: uppercase;
	font-size: 13px;
	color: #ffffff;
	font-weight: 500;
}

.footer-wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 80px 0 0;
}

.footer-wrap:before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 60%;
	height: 1px;
	background: #383838;
}

.footer-item p {
	opacity: 0.8;
	font-size: 15px;
	line-height: 26px;
	color: #ffffff;
}

.footer-item a:hover {
	color: #fff;
	opacity: 1;
}

.footer-item__tel {
	display: block;
	margin: 0 0 15px;
	font-size: 24px;
	line-height: 24px;
	color: #ffffff;
	font-family: "Surveyor Display A", "Surveyor Display B";
}

.footer-item__mail {
	display: inline-block;
	font-size: 15px;
	line-height: 26px;
	text-decoration: underline;
	opacity: 0.8;
	color: #ffffff;
}

.footer-item a:hover {
	color: #fff;
}

.footer-item ul {
	padding: 0;
	list-style: none;
	text-align: right;
}

.footer-item ul li a {
	opacity: 0.8;
	font-size: 15px;
	line-height: 26px;
	text-decoration: underline;
	color: #ffffff;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	padding: 75px 0 0;
}

.footer-bottom p {
	opacity: 0.8;
	color: #fff;
}

.social-icons {
	padding: 0;
	list-style: none;
}

.social-icons li {
	display: inline-block;
}

.social-icons a {
	opacity: 0.8;
	color: #fff;
	font-size: 20px;
	margin: 0 16px 0;
}

/* 5 - END of footer ---------------------------------------------------------- */
/* * - BEGIN of @media ---------------------------------------------------------- */

@media (max-width: 1499px) {
.box-banner {
	margin: 0 auto 0;
	padding: 0 35px 0;
	max-width: 1700px;
}
.banner-slider {
	border-bottom: 4px solid var(--theme-color);
}
.box-banner-homepage .banner-item__media {
	min-height: 650px;
}
.banner-item__overlay {
	padding: 0 0 45px;
}
.banner-item__media {
	height: auto;
	min-height: 500px;
}













}

/* ----------------------------------------------------------------------------------- */

@media (max-width: 1300px) {
.updates-item h4 {
	font-size: 28px;
	line-height: 28px;
}
.box-updates {
	padding: 120px 0;
}












}

/* ----------------------------------------------------------------------------------- */

@media (max-width: 1199px) {
.stories-item__overlay {
	padding-left: 30px;
}
.block-stories > div {
	display: flex;
	justify-content: center;
}
.team-item__text {
	padding: 30px 15px 0 20px;
}
.team-item__text h4 {
	font-size: 25px;
	line-height: 25px;
}
.team-item__post {
	margin: 0 0 15px;
	font-size: 12px;
}
.team-item__text p {
	font-size: 13px;
	line-height: 16px;
}
.block-contact__item > a, .block-contact__item > span {
	font-size: 30px;
	line-height: 32px;
}
.box-header .block-heading {
	max-width: 90%;
}
.box-video__text {
	padding: 50px 0 0 50px;
}
.updates-item h4 {
	font-size: 22px;
	line-height: 22px;
}
.news-item__date {
	font-size: 13px;
}
.banner-item__overlay {
	padding: 0 0 45px;
}
.box-banner {
	margin: 0 auto 0;
	padding: 0 0 0;
}
.box-banner-homepage .banner-item__media {
	min-height: 550px;
}
.banner-item__media {
	min-height: 400px;
}
.box-banner-h-505px .banner-item__media {
	min-height: 450px;
	height: auto;
	border-bottom: 6px solid var(--theme-color);
}
.box-team-member .block-services__wrap div:first-child {
	padding-right: 0;
}
.box-team-member .block-services__wrap > div:first-child {
	padding-right: 15px;
}
.box-team-member .block-heading {
	padding-top: 20px;
}















}

/* ----------------------------------------------------------------------------------- */

@media (max-width: 991px) {

/*  */
.collapse:not(.show) {
	display: flex;
	left: -100vw;
	height: 100vh;
}
.navbar {
	margin: 15px 0 0;
	padding: 0 0 0;
	position: static;
}
.navbar-collapse {
	margin: 0 0 0;
	padding: 100px 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
	position: absolute;
	left: 0;
	right: 0;
	box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 15%);
	top: 0;
	text-align: left;
	background: var(--theme-bg);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
	width: 100vw;
	height: 100vh;
	max-width: 320px;
	transition: all .5s ease;
}
.navbar-collapse.collapsing {
	transition: all .5s ease;
}
.navbar-collapse.collapse.show {
	left: -15px;
	height: 100vh;
	box-shadow: 0px 0px 200px 200px rgb(0 0 0 / 15%);
	z-index: 999;
}
.navbar-nav {
	margin: 0 0 0;
	padding: 0 0 0;
	gap: 0;
	width: 100%;
}
.navbar-nav > li {
	margin: 0 0 0;
	padding: 15px 0 15px;
	position: relative;
	border-top: 1px solid var(--theme-color);
}
.navbar-nav > li:last-child {
	border-bottom: 1px solid var(--theme-color);
}
#navbar .nav-link {
	padding: 5px 15px 5px;
	margin: 0 0 0;
	font-size: 18px;
	line-height: 20px;
	color: var(--theme-color-text);
}
#navbar .nav-link:before {
	content: none;
	display: none;
}
header .container {
	position: static;
}
/*  */

.header-wrap {
	position: relative;
}

.header-contact {
	position: absolute;
	top: 0;
	right: 0;
}
.header-contact {
	font-size: 20px;
}
.banner-link__list {
	position: static;
	transform: none;
}
.banner-item__content .h1 {
  font-size: 40px;
  line-height: 40px;
}
.banner-item__overlay {
	padding: 0 0 40px;
}
.banner-link__list li img {
	transform: none;
}
.logo {
	max-width: 100px;
	height: 100px;
}
.box-wr {
	padding: 50px 0 50px;
}
.box-testimonials {
	padding: 50px 0 80px;
	background: #000;
	color: #FFF;
}
.news-main {
	margin: 0 0 50px;
}
.box-work {
	padding: 0;
}
.box-contact + .box-work {
	margin-bottom: 50px;
}

.box-work > img {
	height: 360px;
	object-fit: cover;
}
.block-work h2 {
	font-size: 40px;
	line-height: 40px;
}
.team-item {
	max-width: 600px;
	margin: 0 auto;
}
.team-slider .slick-dots {
	bottom: -33px;
}
.block-contact__item {
	height: 150px;
}
.block-contact__number {
	font-size: 130px;
	line-height: 130px;
}
.block-contact__item > a, .block-contact__item > span {
	font-size: 24px;
	line-height: 26px;
}
h1, .h1 {
	font-size: 40px;
	line-height: 40px;
}
.box-video__bg {
	display: none;
}
.box-video__img {
	min-height: auto;
	display: inline-block;
	margin: 0 0 30px;
}
.box-video__text {
	padding: 0;
}
.banner-inner .banner-item__media {
	height: calc(60vh - 6px);
}
.box-faces {
	padding-bottom: 10px;
}
.block-faces .team-item {
	margin-bottom: 40px;
}
.box-news + .box-testimonials {
	margin-bottom: 50px;
}
.box-updates {
	padding: 80px 0;
}
.updates-item .news-item__info {
	padding: 15px 15px;
}
.updates-item__img img {
	width: 100%;
}
.block-article__img {
	margin: 20px 0 40px;
}
.box-article {
	padding-bottom: 0;
}
body .slider-arrows-bottom-right {
	margin-bottom: 40px;
}
.subnav, .container .subnav {
	padding: 15px 0 10px 15px;
	margin: 0 0 0;
	position: relative;
	left: 0;
	top: 0;
	background: transparent;
	box-shadow: none;
}
.subnav a {
	font-size: 100%;
	padding: 5px 15px 5px;
	margin: 0 0 0;
	color: inherit;
}
.header-contact {
	display: none;
}






















}

/* ----------------------------------------------------------------------------------- */

@media (max-width: 767px) {
.block-services__wrap div:first-child {
	padding-right: 15px;
}
h2, .h2 {
	margin: 0 0 30px;
	font-size: 40px;
	line-height: 40px;
}
.block-heading {
	margin: 0 0 30px;
}
.news-item__img {
	width: 120px;
}
h4, .h4 {
	margin: 0 0 15px;
	font-size: 20px;
	line-height: 20px;
}
.news-item__info {
	width: calc(100% - 100px);
	padding-left: 15px;
	padding-top: 0;
}
.news-item__tag {
	margin-right: 10px;
}
.news-item__date {
	font-size: 13px;
}
.news-main__text h3 br {
	display: none;
}
.block-contact__wrap {
	flex-direction: column;
}
.box-contact {
	padding: 10px 0;
}
.block-contact__item {
	height: 110px;
}
.block-contact__number {
	font-size: 100px;
	line-height: 100px;
}
.footer-logo {
	max-width: 100px;
	height: 100px;
}
.footer-logo img {
	max-width: 80px;
}
.footer-top {
	align-items: flex-start;
}
.footer-nav {
	padding: 15px 0 0;
	margin: 0;
}
.footer-top {
	margin-bottom: 0;
}
.footer-wrap {
	padding: 15px 0 0;
}
.footer-wrap:before {
	display: none;
}
.footer-wrap {
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.footer-item__mail {
	margin: 0 0 15px;
}
.footer-bottom {
	padding: 20px 0 0;
}
.footer-bottom {
	flex-direction: column;
	align-items: center;
	padding: 20px 0 0;
}
.footer-bottom p {
	text-align: center;
}
footer {
	padding: 0 0 20px;
}
.isotope-grid-item {
	margin-bottom: 15px;
}
.isotope-grid-item a {
	width: 100%;
}
.isotope-grid-item img {
	display: block;
	width: 100%;
}
.slider-video {
	max-width: 400px;
	margin: 0 auto;
}
.box-video__item {
	height: 100%;
}
.box-carousel .slick-list {
	overflow: hidden;
}
.box-carousel .slick-track
{
	display: flex !important;
}

.box-carousel .slick-slide
{
	height: inherit !important;
}
.box-video__item img {
	height: 100%;
	object-fit: cover;
}
.box-faces {
	padding-bottom: 20px;
}
.block-faces .team-item {
	margin-bottom: 30px;
}
.box-updates {
	padding: 50px 0;
}
.banner-inner .banner-item__media {
	height: calc(100vh - 6px);
	height: 350px;
}
.box-header h1 br {
	display: none;
}
.slick-prev:before, .slick-next:before {
	font-size: 35px;
}
.slick-prev, .slick-next {
	width: 30px;
	height: 30px;
	line-height: 30px;
}
.slider-arrows-bottom-right .slick-prev {
	right: 55px;
}
.slider-arrows-bottom-right .slick-prev, .slider-arrows-bottom-right .slick-next {
	bottom: -75px;
}
.header-contact {
	display: none;
}
.stories-item__overlay {
	padding-left: 15px;
}
.block-services__wrap p:last-child {
	padding-bottom: 20px;
}

















}

/* ----------------------------------------------------------------------------------- */

@media (max-width: 575px) {
.banner-item__content {
	flex-direction: column;
}
.banner-link__wrap {
	width: auto;
	padding: 100px 0 0;
}
.banner-link__list {
	position: absolute;
	transform: rotate(-90deg);
}
.banner-link__list li img {
	transform: rotate(90deg);
}
.banner-link__list li span {
	font-size: 14px;
}
.banner-link__list li a {
	padding: 4px 0 4px 34px;
}
.banner-link__list li img {
	max-width: 20px;
	max-height: 20px;
}
.banner-link__header strong {
	font-size: 16px;
}
h2, .h2 {
	margin: 0 0 30px;
	font-size: 36px;
	line-height: 36px;
}
h1, .h1 {
	font-size: 36px;
	line-height: 36px;
}
.block-heading {
	margin: 0 0 30px;
}
.testimonials-slider__item {
	padding-top: 45px;
}
.testimonials-slider__item p {
	font-size: 24px;
	line-height: 28px;
}
.news-main {
	margin: 0 0 30px;
}
.block-work h2 {
	font-size: 30px;
	line-height: 30px;
}
.btn-transparent {
	padding: 10px 30px 10px;
}
.team-item__text {
	padding: 10px 10px 0 10px;
}
.team-item__text h4 {
	font-size: 18px;
	line-height: 18px;
}
.team-item__text p {
	font-size: 11px;
	line-height: 13px;
}
.team-item__post {
	margin: 0 0 5px;
	font-size: 9px;
}
.header-contact {
	display: none;
}
.stories-item__overlay {
	padding-left: 15px;
}
.news-main__text h3 {
	margin: 0 0 15px;
	font-size: 30px;
	line-height: 1;
}













}

/* ----------------------------------------------------------------------------------- */
/* * - END of @media ---------------------------------------------------------- */
