@font-face {
	font-family: MyUniqueFont;
	src: url('../fonts/TTFirsNeue-Medium.woff2');
	font-weight: 500;
}
@font-face {
	font-family: MyUniqueFont;
	src: url('../fonts/TTFirsNeue-Bold.woff2');
	font-weight: 700;
}
@font-face {
	font-family: MyUniqueFont;
	src: url('../fonts/TTFirsNeue-Regular.woff2');
	font-weight: 400;
}
@font-face {
	font-family: MyUniqueFont;
	src: url('../fonts/TTFirsNeue-DemiBold.woff2');
	font-weight: 600;
}
*,
*::before,
*::after {
	box-sizing: border-box;
	font-family: "Saira Condensed", sans-serif;
	font-weight: 400;
	color: #272727;
}

ul,
ol {
	padding: 0;
	list-style: none;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

body {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

img {
	max-width: 100%;
	display: block;
}

input,
button,
textarea,
select {
	font: inherit;
}
a {
	text-decoration: none;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}
.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	background: #fcfcfc;
	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.33);
	height: 80px;
	display: flex;
	align-items: center;
	z-index: 100;
}

.header_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav_link {
	color: #272727;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	margin-right: 25px;
}
.nav_link:last-child {
	margin-left: 0;
}
.nav_link:hover {
	color: #f24f46;
}
.input-burger {
	display: none;
}
.logo {
	padding-right: 40px;
}
.input-label {
	width: 32px;
	height: 32px;
	min-width: 32px;
	min-height: 32px;
	cursor: pointer;
	visibility: hidden;
	opacity: 0;
}

.hero {
	background-image: url(../images/hero-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-top: 81px;
    margin-bottom: 36px;
}
.hero_bg {
	position: absolute;
	z-index: 1;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	backdrop-filter: blur(5px);
    fill: rgba(255, 255, 255, 0.2);
	background-color: rgba(255, 255, 255, 0.2);
}
.hero_img-wrapper {
    z-index: 1;
}
.hero_wrapper {
    position: relative;
	
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 120px 20px 80px 140px;
}
.hero_content {
	max-width: 540px;
	text-align: center;
    z-index: 1;
}
.hero_title {
	color: #fcfcfc;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 16px;
	text-align: start;
}
.hero_title::after {
	content: "";
	position: absolute;
	top: -19px;
	left: -30px;
	background-image: url(../images/decor-hero.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 19px;
	height: 19px;
}
.subtitle {
	color: #fcfcfc;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 16px;
	text-align: start;
}
.btn {
	background: #f24f46;
	padding: 12px 64px;
	color: #fcfcfc;
	font-size: 18px;
	font-weight: 500;
	display: inline-block;
	margin-top: 36px;
    transition: .4s;
	border: none;
	cursor: pointer;
}
.btn:hover {
    
    background: #d5453d;
}

.main_header {
    color: #272727;
    font-size: 36px;
    font-weight: 700;
    line-height: 80px;
}
.title_decor {
    background:  #E7E7E7;
}
.advantages_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
    margin-top: 24px;
    margin-bottom: 22px;
}
.advantages_number {
    color: #595959;
    font-size: 20px;
    font-weight: 700;
    margin-right: 20px; 
}
.pink {
    color: #F24F46;
}
.advantages_item-list {
	margin-bottom: 20px;
}

.advantages_item {
    color:  #272727;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
.advantages_item-list .decor {
    color:  rgba(39, 39, 39, 0.60);
	font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.advantages_title {
    text-transform: uppercase;
    color: #272727;
    text-align: center;
    max-width: 580px;
    font-size: 24px;
}
.logo_wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.partners_wrapper {
    margin: 26px 0 76px;
    max-width: 100%;
}

.logo_wrapper {
    gap: 30px;
}
.partners_img {
    width: 18%;
}

.projects_wrapper {
    margin: 20px 0 60px;
}
.project_title {
    color:  #272727;
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.project_img {
	border-radius: 8px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15)
}
.project_top, .project_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.project_text {
    color: #272727;
    font-size: 19px;
    font-weight: 400;
    line-height: 30px; 
}

.project_text {
    max-width: 620px;
}
.services_wrapper {
    display: flex;
    margin: 48px 0;
    align-items: center;
}
.services_item {
    font-size: 15px;
    font-weight: 600;
}

.services_list {
    text-align: center;
}
.contacts {
	margin-bottom: 60px;
}
.contacts_title {
	color:  #272727;
	font-size: 42px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 24px;
	font-size: 36px;
    line-height: 1.2;
}
.form_wrapper {
	max-width: 610px;
	width: 100%;
	margin: 0 auto;
}
.form_title {
	background:  #272727;
	color: #FCFCFC;
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	padding: 24px 0;
}

.form_inner {
	border: 1px solid  #272727;
	background:  #FCFCFC;
	padding: 30px;
	display: flex;
    flex-direction: column;
    gap: 16px;
}
.form_inner input {
	border: 1px solid  #272727;
	background: #FCFCFC;
	line-height: 60px;
	padding-left: 16px;
}
.form_inner input::placeholder {
	color:  #888686;
	font-size: 18px;
	font-weight: 400;
	
}
.form_inner input:focus-visible {
	outline: none;
    border: 1.5px solid #f24f46;
}

.products_wrapper {
	margin: 40px 0 60px;
	overflow: auto;
}
.table {
	border-collapse: collapse;
	border: 2px solid  #D7D7D7;
	margin: 0 auto;
	min-width: 1140px;
	font-family: MyUniqueFont;
}

.table th {
	background:  #272727;
	border-right: 1px solid #D7D7D7;
}
.th_title {
	color:  #FCFCFC;
	font-size: 16px;
	font-weight: 500;
}
.th_title.num {
	padding: 0 26px;
	border: none;
}
.th_title.name {
	text-align: start;
	text-transform: uppercase;
	font-family: MyUniqueFont;
}
.table .table_number {
	color:  rgba(39, 39, 39, 0.60);
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	border-right: none;
	font-family: MyUniqueFont;
}
.table_title {
	color:  #272727;
	font-size: 16px;
	font-weight: 400;
	font-family: MyUniqueFont;
}
.th {
	color:  #FCFCFC;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	width: 100px;
}
.th img {
	margin: 0 auto;
}
.th_span {
	display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 100px;
    height: 100%;
}
.th_span img{
	max-height: 60px;
}
.th_span span {
	color:  #FCFCFC;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	margin-top: 8px;
	margin-bottom: 1px;
}
.table td {
	border-bottom: 1px solid #D7D7D7;
	border-right: 1px solid #D7D7D7;
}
.table td img {
	margin: 0 auto;
}

.footer {
	background:  #272727;
}
.copyright {
	color:  #FCFCFC;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	padding: 40px 0;
}



.form_submitted-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 107px);
}

.change_lang {
	padding-right: 20px;
	position: relative;
	margin-right: 0;
	cursor: pointer;
}
.change_lang::after {
	content: '';
    position: absolute;
    top: 9px;
    border: 1px solid #272727;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2px;
    margin-left: 10px;
    transform: rotate(45deg);
	transition: .4s;
}
.change_lang.rotate::after {
	transform: rotate(225deg);
	top: 11px;
}
.en {
	margin-right: 0;
	text-transform: uppercase;
}
.change_lang::before {
	content: '';
    position: absolute;
    width: 19px;
    height: 19px;
    border: 1px solid #272727;
    opacity: 0.7;
    border-radius: 50%;
    right: -2px;
    top: 3px;
}
.dropdown {
	display: none;
	position: absolute;
	text-transform: uppercase;
	bottom: -30px;
	left: 0;
	padding: 5px 11px;
	color: #272727;
	border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
	background: #fcfcfc;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.33);
}
.show.dropdown {
	display: block;
}

.inner_404 {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: calc(100vh - 107px);
}
.title_404 {
	font-size: 90px;
	font-weight: 500;
}
.subtitle_404 {
	color: #272727;
	font-size: 36px;
}
