@font-face {
    font-family: 'Alegreya Sans';
    src: local('Alegreya Sans'), local('Alegreya Sans'), url('../fonts/Alegreyasans.woff2') format('woff2'), url('../fonts/Alegreyasans.woff') format('woff'), url('../fonts/Alegreyasans.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Alegreya Sans';
    src: local('Alegreya Sans Bold'), local('AlegreyaSans-Bold'), url('../fonts/Alegreyasansbold.woff2') format('woff2'), url('../fonts/Alegreyasansbold.woff') format('woff'), url('../fonts/Alegreyasansbold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
	font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

::selection {
    background: var(--primary);
    color: #fff;
}

body {
	font-size: 16px;
	font-weight: normal;
	font-family: 'Montserrat', sans-serif;
	color: var(--dark);
	background: #fff;
}
.alert p {
	margin: 0;
}
a {
	color: var(--primary);
	transition: all .5s;
}
a:hover {
	color: var(--secondary);
	text-decoration: none;
}
.dark {
	color: #fff;
}
.dark a {
	color: #fff;
}
.dark a:hover {
	color: var(--secondary);
}
hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid var(--primary);
    max-width: 400px;
}
.color-green {
	color: green;
}
h1,
.h1 {
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1;
  font-size: 72px;
  padding-bottom: 30px;
  text-transform: uppercase;
}
h2,
.h2 {
	margin-bottom: 1rem;
	margin-top: 1.2rem;
	font-size: 64px;
	font-weight: bold;
	text-transform: uppercase;
}
h2 {
	font-size: 22px;
	text-transform: unset;
}
.modal-body .h2 {
	font-size: 42px;	
}
h3,
.h3 {
	margin-bottom: 1rem;
	margin-top: 0;
	font-size: 36px;
	font-weight: bold;
}
h3 {
	font-size: 18px;
	text-transform: unset;	
}
@media (max-width: 768px) {
	h1,
	.h1 {
	  font-size: 36px;
	}
	h2,
	.h2 {
		font-size: 24px;
	}
	h3,
	.h3 {
		font-size: 20px;
	}
}
.pagination {
	justify-content: center;	
}
.pagination .page-link {
	color: var(--primary);
	border-color: var(--gray);
}
.pagination .page-link:hover {
	background: var(--gray);
}
.pagination .page-item.active .page-link {
	background-color: var(--primary);
	border-color: var(--primary);	
}

button,
button:focus {
  outline: none;
}
.btn {
  padding: 0.75rem 2rem;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 0.15rem;
  transition: all 0.5s;
}
.btn-primary {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:hover,
.dark .btn-primary:hover {
  color: #fff;
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.btn-secondary {
	background-color: var(--secondary);
  	border-color: var(--secondary);	
}
label {
  margin-bottom: 0.1rem;
}
.form-control {
  height: calc(2em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  border-radius: 0.15rem;
  border-color: #dce2e8;
}
.modal-header {
  background: #fff;
  border-bottom: 1px solid var(--gray);
}
.modal-body {
  background: #fff;
}
.modal-title {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
}
.modal-header .close {
  padding: 1.11rem;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 11;
}
body.scrolled #header {
	background: rgb(0 0 0 / 50%);
}
#header .navbar-brand {
	padding-top: 15px;
	padding-bottom: 15px;
	margin: 0;
}
.navbar-nav.mainmenu {
	flex-direction: row;
	justify-content: flex-end;
}
.navbar-nav.mainmenu > li {
	padding-right: 30px;
	position: relative;
	display: block;
}
.navbar-nav.mainmenu > li:first-child {
	display: none;
}
.navbar-nav.mainmenu > li:last-child {
	padding-right: 0px;
}
.navbar-nav.mainmenu > li > a {
	color: #fff;
    font-size: 18px;
    font-weight: normal;
    text-transform: uppercase;
}
.navbar-nav.mainmenu > li:hover > a,
.navbar-nav.mainmenu > li.active > a,
.navbar-nav.mainmenu > li.child-active > a  {
	color: var(--primary);
}
.navbar-nav.mainmenu > li > ul {
	display: block;
	visibility: hidden;
	opacity: 0;
	margin: 0;
	padding: 10px 0;
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s;
	transform: translateY(10px);
}
.navbar-nav.mainmenu > li:hover > ul,
.navbar-nav.mainmenu > li:focus > ul,
.navbar-nav.mainmenu > li:focus-within > ul {
	display: block;
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
	transition-delay: 0s, 0s, 0.1s;
}
.navbar-nav.mainmenu > li > ul > li {
	padding: 0;
}
.navbar-nav.mainmenu > li > ul > li > a {
	padding: 5px 15px;
	color: var(--dark);
	background: #fff;
	display: block;
	font-weight: normal;
	white-space: nowrap;
}
.navbar-nav.mainmenu > li > ul > li:hover > a,
.navbar-nav.mainmenu > li > ul > li.active > a {
	color: #fff;
	background: var(--primary);
}

button.toggle-menu {
	background: transparent;
    border: 0;
    color: #fff;
    height: 37px;
    padding: 0;
    font-size: 2rem;
}
button.toggle-menu .svg-inline--fa {
	top: -3px;
    position: relative;
    font-size: 2rem;
}
button.toggle-menu .fa-times {
	display: none;
	top: -3px;
    position: relative;
    font-size: 2rem;
}
body.active-menu button.toggle-menu {
	color: var(--secondary);
	z-index: 9;
	position: relative;
}
body.active-menu button.toggle-menu .fa-times {
	display: block;
}
body.active-menu button.toggle-menu .fa-bars {
	display: none;
}

.mobile-menu-panel {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 12;
	transition: all .5s;
}
body.active-menu .mobile-menu-panel {
	left: 0;	
}
body.active-menu .mobile-menu-panel button.toggle-menu {
	position: absolute;
	top: 15px;
    right: 15px;
}
.mobile-menu-panel-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.navbar-nav.mobilemenu li {
	text-align: center;
}
.navbar-nav.mobilemenu li a {
	display: block;
	padding: 5px 15px;
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--dark);
}
.navbar-nav.mobilemenu li a:hover {
	color: var(--primary);
	transform: scale(1.2);
}
.navbar-nav.mobilemenu li ul {
	display: none;
}
.body-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	z-index: 6;	
}
body.active-menu .body-overlay {
	display: block;
}
.lang-picker {
	display: flex;
	margin-left: 30px;	
}
.lang-picker a {
	font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 50%;
}
.lang-picker a.selected {
	border-color: #fff;
}
.mobile-menu-panel .lang-picker {
	position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
}
.mobile-menu-panel .lang-picker a {
	color: var(--dark);
}
.mobile-menu-panel .lang-picker a.selected {
    border-color: var(--dark);
}
.mobile-menu-panel-logo {
	position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    text-align: center;	
}
.breadcrumb {
	padding-left: 0;
	padding-right: 0;
	background: transparent;
	font-size: 14px;
	padding-top: 40px;	
	margin-bottom: 0;
}
.breadcrumb-item+.breadcrumb-item::before {
	content: "—";
}
.dark .breadcrumb-item.active,
.dark .breadcrumb-item + .breadcrumb-item::before {
  color: var(--gray);
}
.header-bg {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 100vh;
	min-height: 480px;
	padding-top: 112px;
	display: flex;
    align-items: center;
	position: relative;
	z-index: 1;
}
.header-bg .header-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(180deg, rgba(19, 6, 8, 0.5) 0%, rgba(196, 196, 196, 0) 100%);
}
.header-bg .btn.btn-primary {
	position: absolute;
	bottom: 30px;
}
.header_phones {
	flex-direction: column;
    line-height: 1;
	padding-right: 20px;
}
.header_phones a {
	color: #fff;
	font-weight: bold;
}
.header_phones a:hover {
	color: var(--secondary);
}
.header_messangers {
	display: flex;
}
.header_messangers a {
	color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
	margin-left: 10px;
}
.header_messangers a:hover {
	color: var(--secondary);
}
.header_messangers a .svg-inline--fa {
	font-size: 1.2rem;
}

#main-content {
	margin-top: 112px;
}
#footer {
	background: var(--primary);
	padding-top: 60px;
	padding-bottom: 40px;
}
.contact-map {
	line-height: 0;
}

#fly-socials {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 8;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
    min-height: 480px;
    padding-top: 112px;
	padding-left: 15px;
}
#fly-socials a {
	font-size: 2rem;
	color: #fff;
}
#fly-socials a:hover {
	color: var(--secondary);
}
#fly-phone {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 9;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	bottom: 15px;
    left: 15px;
}
#fly-phone .fly-phone-btn {
	display: block;
    width: 85px;
    height: 85px;
    color: #fff;
    font-size: 1.8rem;
    line-height: 85px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary);
}
#fly-phone .fly-phone-btn:hover {
	background: var(--secondary);
}
#fly-phone .fly-phone-btn .svg-inline--fa {
	transform: translateY(3px);
}
.fly-phone-message {
	margin-bottom: 20px;
	position: relative;
}
.fly-phone-message > a {
	display: block;
	position: absolute;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 1.5rem;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary);
    left: 0;
    top: 20px;
	transition: all .5s;
	z-index: -1;
}
.fly-phone-message > a .svg-inline--fa {
	transform: translate(-1px, 2px);
}
.fly-phone-message > a:hover {
	background: var(--secondary);	
}
.active-messages .fly-phone-message > a {
	left: calc(100% + 20px);
}
.active-messages .fly-phone-message > a.fly-phone-message-block-2 {
	left: calc(100% + 80px);	
}
.fly-phone-message .fly-phone-message-title {
	display: block;
    width: 85px;
    height: 85px;
    color: #fff;
    font-size: 1.8rem;
    line-height: 85px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary);
	cursor: pointer;
}
.fly-phone-message .fly-phone-message-title:hover {
	background: var(--secondary);	
}
.fly-phone-message .fly-phone-message-title .svg-inline--fa {
	transform: translateY(3px);
}
.fly-phone-message .fly-phone-message-title .fa-times {
	display: none;
}
.active-messages .fly-phone-message .fly-phone-message-title .fa-times {
	display: inline-block;
}
.active-messages .fly-phone-message .fly-phone-message-title .fa-comment-dots {
	display: none;
}
#footer .footer-map {
	position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40%;
}
.footer-form {
	color: var(--dark);
	background: #fff;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
}
.footer-contacts {
	padding-top: 30px;
}
.footer-contacts-item {
	margin-bottom: 20px;
	display: flex;
}
.footer-contacts-item-icon {
	padding-right: 20px;
	width: 60px;
}
.footer-contacts-item-icon span {
	display: block;
    width: 38px;
    height: 38px;
    border: 1px solid;
    border-radius: 50%;
    line-height: 38px;
    text-align: center;
}
.footer-contacts-item-content p {
	margin: 0;
}
.footer-contacts-item-content p a {
	color: #fff;
}
.footer-contacts-item-content p a .svg-inline--fa {
    font-size: 1.5rem;
    margin-left: 10px;	
}

.about-section {
	position: relative;
}
.about-section:after {
	content: '';
	background: var(--primary);
	width: 40vw;
	height: calc(100% - 200px);
	left: 0;
	top: 100px;
	position: absolute;
	z-index: -1;
}
.about-section-image-img {
	position: relative;
}
.about-section-image-img:after {
	content: '';
	border: 3px solid var(--primary);
	width: calc(100% + 50px);
	height: 100%;
	right: -80px;
	top: -20px;
	position: absolute;
}
.modal-body .about-section-image-img:after {
    width: calc(100% + 5px);
    height: 100%;
    right: -15px;
    top: -20px;
}
.about-section-image-img .about_image_title {
	text-align: center;
    color: var(--primary);
    padding-top: 20px;
    font-weight: bold;
    font-size: 20px;
}
.about-section-inner:after {
	display: none;
}
.about-section-inner .about-section-image-img:after {
	display: none;
}
.about-section-inner .about-section-image-img img {
	width: 100%;
}

.section-why {
	background-size: cover;
}

.card.category-card {
	border: 0;
    border-radius: 0;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.card.category-card .card-body {
	background: rgb(255 255 255 / 50%);
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all .5s;
}
.card.category-card .card-body .card-title {
	font-size: 38px;
	font-weight: bold;
	color: var(--primary);
	text-transform: uppercase;
	text-align: center;	
	margin: 0;
    line-height: 1.2;
}
.card.category-card:hover .card-body {
	background: rgb(255 255 255 / 5%);
}

.card.project-card {
	border: 0;
	border-radius: 0;
	transition: all .5s;
}
.swiper-slide .card.project-card {
	transform: scale(.8);
}
.swiper-slide-active .card.project-card,
.swiper-slide-duplicate-active .card.project-card {
	transform: scale(1);
}
.card.project-card .card-img-overlay {
	display: flex;
    align-items: flex-end;
	border-radius: 0;
}
.card.project-card .card-img-overlay .card-title {
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0;
}

.section-overlay {
	background: rgb(18 5 7 / 50%);
}

.number-item .number-item-num {
	font-size: 66px;
    font-weight: bold;
    line-height: 97px;
}
.number-item .number-item-num:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 65px;
	height: 5px;
	background: var(--primary);
}
.number-item .number-item-text {
	font-weight: bold;
	font-size: 18px;
	text-transform: uppercase;
	padding-top: 15px;
}
.number-item-1 {
	padding-top: 320px;
}
.number-item-2 {
	padding-top: 220px;
}
.number-item-3 {
	padding-top: 120px;
}

.clients-hr {
	padding-top: 60px;
	margin-bottom: 60px;
	position: relative;
}
.clients-hr:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 5px;
	width: 300px;
	background: var(--primary);
}
.clients-swiper-button-next,
.clients-swiper-button-prev {
    color: #fff;
    background: var(--secondary);
    width: 27px;
    height: 27px;
    border-radius: 50%;	
	outline: none;
}
.clients-swiper-button-next {
	right: -10px;
}
.clients-swiper-button-prev {
	left: -10px;
}
.clients-swiper-button-next:after,
.clients-swiper-button-prev:after {
	font-size: 12px;
}
.clients-card {
	text-align: center;
}
.clients-card img {
	border: 2px solid #d6d6d6;
}

.rewiews-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-top: 135px;
	min-height: 343px;	
}
.rewiews-card .rewiew-img {
	margin-top: -135px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    overflow: hidden;
	margin-left: auto;
    margin-right: auto;
    display: block;	
}
.rewiews-card p {
	margin: 0;
	padding-top: 20px;
}
.rewiews-swiper-button-next,
.rewiews-swiper-button-prev {
    color: #fff;
    background: var(--secondary);
    width: 27px;
    height: 27px;
    border-radius: 50%;	
	outline: none;
}
.rewiews-swiper-button-next {
	right: 15px;
    top: 104px;
    margin-top: 0;
}
.rewiews-swiper-button-prev {
	left: auto;
    right: 55px;
    top: 104px;
    margin-top: 0;
}
.rewiews-swiper-button-next:after,
.rewiews-swiper-button-prev:after {
	font-size: 12px;
}

.section-description > .container {
	padding-left: 40px;
	position: relative;
}
.section-description > .container:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 15px;
	height: 100%;
	background: var(--primary);
}

.why-card .why-card-img {
	margin-bottom: 15px;
}
.why-card .why-card-title {
	font-weight: bold;
	margin-bottom: 15px;
}

.how-card .how-card-img {
	position: relative;
    padding-bottom: 0px;
    margin-bottom: 20px;
    font-size: 72px;
    font-weight: bold;
    color: var(--secondary);
}
.how-card .how-card-img:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 110px;
	height: 5px;
	background: var(--primary);
}
.how-card .how-card-title {
	line-height: 1.3;
    font-size: 16px;
    text-transform: none;
    font-weight: bold;
}

.article-card {
	border: 0;
	border-radius: 0;
}
.article-card .card-img-top {
	border-radius: 0;
}
.article-card .card-body {
	padding: 10px 0 0 0;
}
.article-card .card-title {
	color: var(--dark);
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
}
.article-card:hover .card-title {
	color: var(--primary);
}

.card.service-card {
	border: 0;
	border-radius: 0;
	transition: all .5s;
}
.card.service-card .card-img-overlay {
	display: flex;
    align-items: flex-end;
	border-radius: 0;
	background: linear-gradient(45deg, rgb(0 0 0 / 50%), rgb(0 0 0 / 0%));
}
.card.service-card .card-img-overlay .card-title {
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0;
}

.gallery a img {
	width: 100%;
}
.gallery-swiper-button-next,
.gallery-swiper-button-prev {
    color: #fff;
    background: var(--secondary);
    width: 27px;
    height: 27px;
    border-radius: 50%;	
	outline: none;
}
.gallery-swiper-button-next {
	right: -10px;
}
.gallery-swiper-button-prev {
	left: -10px;
}
.gallery-swiper-button-next:after,
.gallery-swiper-button-prev:after {
	font-size: 12px;
}

.product_description_text {
	overflow: hidden;
	max-height: 40000px;
	transition: all .5s;
}
.product_description_text.hide {
	max-height: 800px;
}
.product_description_text.hide:after {
	content: "";
	display: block;
	height: 100px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 75%);
}
.product_description h2 {
	text-transform: none;
    font-size: 22px;
}
.product_description h3 {
	text-transform: none;
    font-size: 20px;
}
.section-test {
	background: var(--primary);
	position: relative;
}
#msform {
	max-width: 775px;
    margin: 0 auto;
    background: #fff;
    border-radius: 5px;
    padding: 0 40px 40px 40px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 30%);
}
#msform fieldset {
    text-align: center;
    padding: 90px 0 0 0;	
}
#msform .form-check {
	text-align: left;
	padding-top: 5px;
    padding-bottom: 5px;
}
#msform .swiper-pagination-progressbar {
	top: 40px;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;	
}
#msform .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--secondary);
}
#msform label:not(.h3) {
	font-size: 18px;
	width: 100%;
	cursor: pointer;
}


@media (max-width: 992px) {
	.lang-picker {
		margin-left: 0;
	}
	#header .navbar-brand {
		max-width: 100px;
	}
	#fly-socials {
		display: none;
	}
	#footer .footer-map {
		position: relative;
		width: 100%;
		height: 400px;
	}
	.about-section:after {
		display: none;
	}
	.card.category-card {
		height: auto;
	}
	.card.category-card .card-body {
		padding: 150px 0;
	}
	.number-item .number-item-num {
		font-size: 44px;
		line-height: 70px;
	}
}

@media (max-width: 768px) {
	.about-section-image-img:after {
		width: calc(100% + 1px);
		height: 100%;
		right: -15px;
	}
	.card.category-card .card-body .card-title {
		font-size: 24px;
	}
	.card.project-card .card-img-overlay .card-title {
		font-size: 18px;
		line-height: 1;
	}
	.header-bg .btn.btn-primary {
		position: relative;
		bottom: unset;
	}
	.number-item-1,
	.number-item-2,
	.number-item-3,
	.number-item-4 {
		padding-top: 0px;
		text-align: center;
		padding-bottom: 0px;
		padding-top: 60px;
	}
	.number-item-1 {
		padding-top: 90px;
	}
	.number-item .number-item-num:after {
		left: 50%;
		transform: translateX(-50%);
	}

}