@charset "UTF-8";
/*
Theme Name: BauenKomfort
*/


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* BODY
-----------------------------------------------------------------*/
body {
    font-family: "Montserrat", sans-serif;
    font-family: 'Inter', sans-serif;
    padding: 0px;
    margin: 0px;
    font-size: 24px;
    position: relative;
    font-weight: 400;
    color: #fff;
    -webkit-tap-highlight-color: transparent;
    background: #3E3E3E;
    position: relative;
}

.head-bg {
    position: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
}

@media (max-width: 479px) {
	.head-bg {
    	background-position: 70% center;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p {
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

pre {
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    white-space: pre-wrap;
    word-wrap: break-word;
}

button {
    border: none;
    background: transparent;
    cursor: pointer;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: 40px;
}


/* scroll
-----------------------------------------------------------------*/
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #c2c2c2;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #fff;
}


/* header
-----------------------------------------------------------------*/
.header {
	padding: 0px 20px;
	background: #333333;
	position: fixed;
	width: 100%;
	z-index: 99;
}

.header-home-opacity{
	opacity:0;
}

.nav {
	height: 60px;
	display: flex;
	align-items: center;
}

.nav-logo img {
	max-height: 60px;
	margin-top: 5px;
}

.nav-menu {
	margin-left: 40px;
	margin-bottom: 10px;
	display: flex;
}

.nav-menu__item {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	padding: 20px;
	transition: all 0.2s ease;

}

.nav-menu__item:hover {
	color: #FC8817;
}

.nav-btn {
	margin-left: auto;
	border-radius: 50px;
	color: #ffffff;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
	background: #FC8817;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
}

.nav-btn span {
	padding-top: 2px;
}

.nav-btn img {
	max-width: 20px;
	margin-right: 10px;
}

.nav-btn:hover {
	background: #b75a00;
}

.nav-btn:active {
	font-weight: 600;
}

.nav-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50px;
	display: block;
	overflow: hidden;
	margin-left: 20px;
}

.nav-avatar__img {
	width: 100%;
	height: 100%;
	object-fit: cover;

}

@media (max-width: 1023px) {

	.nav-menu {
		margin-left: 10px;
	}

	.nav-menu__item {
		padding: 10px;
	}
}

@media (max-width: 767px) {

	.header {
		padding: 0px 15px;
	}

	.nav-menu {
		display: none;
	}

	.nav-avatar {
		margin-left: 16px;
	}

}

@media (max-width: 424px) {

	.nav-btn {
		padding: 4px 8px;
	}

	.nav-logo img {
		max-width: 50px;
	}

	.nav-avatar {
		margin-left: 12px;
	}

	.nav-btn img {
		margin-right: 6px;
	}
}

@media (max-width: 374px) {
	.nav-btn {
		display: none;
	}

	.nav-avatar {
		margin-left: auto;
	}
}


/* burger
-----------------------------------------------------------------*/
.button-burger {
	display: none;
	margin-left: 8px;
}

.burger {
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.menu-icon {
	z-index: 12;
	position: relative;
	width: 30px;
	height: 30px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu-icon-line {
	position: relative;
	width: 30px;
	height: 2px;
	border-radius: 2px;
	background-color: #fff;
}

.menu-icon-line::before {
	position: absolute;
	top: -8px;
	content: '';
	right: 0;
	width: 30px;
	height: 2px;
	border-radius: 2px;
	background-color: #fff;
	transition: transform 0.1s ease-in, top 0.1s linear 0.1s;
}

.menu-icon-line::after {
	position: absolute;
	top: 8px;
	content: '';
	width: 30px;
	height: 2px;
	right: 0px;
	border-radius: 2px;
	background-color: #fff;
	transition: transform 0.1s ease-in, top 0.1s linear 0.1s;
}

.menu-icon-active .menu-icon-line {
	background-color: transparent;
}

.menu-icon-active .menu-icon-line::before {
	transform: rotate(45deg);
	top: 0;
	background-color: #fff;
	transition: top 0.1s linear, transform 0.1s ease-in 0.1s;
}

.menu-icon-active .menu-icon-line::after {
	transform: rotate(-45deg);
	top: 0;
	background-color: #fff;
	transition: top 0.1s linear, transform 0.1s ease-in 0.1s;
	width: 30px;
}

@media (max-width: 767px) {
	.button-burger {
		display: block;
	}

	.nav-btn {
		padding: 8px 16px;
	}
}


/* head
-----------------------------------------------------------------*/
.head {
    background-image: linear-gradient(180deg, rgba(22, 22, 22, 0.2), #161616);
    position: relative;
    overflow: hidden;
}

.head__inner {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.head__top {
    position: absolute;
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.burger {
    height: 24px;
    width: 32px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}


.head__language {
    display: flex;
}

.language {
    color: #fff;
    opacity: 0.8;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    padding: 5px 0px;
    margin-left: 12px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.3;
}

.language:hover,
.language-active {
    border-bottom: 2px solid #E6CF90;
    opacity: 1;
}

.head__main {
    display: flex;
    flex-direction: column;
    align-items: center;
	margin-top: 20px;
}

.head__logo {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    display: inline-block;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    padding: 16px 32px;
    border-bottom: 2px solid #E6CF90;
    border-left: 2px solid #E6CF90;
    border-right: 2px solid #E6CF90;
    margin-bottom: 6vh;
    position: relative;
}

.head__logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 35%;
    height: 1.6px;
    background-color: #E6CF90;
}

.head__logo::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    height: 1.6px;
    background-color: #E6CF90;
}

.min-logo {
    position: absolute;
    width: 50px;
    height: 50px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.head__title {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: transparent;
    background-clip: text;
    background-image: linear-gradient(180deg, #E9D398, #D2B354);
    color: #fff;
    margin-bottom: 3vh;
}

.head__title span {
    color: transparent;
    background-clip: text;
    background-image: linear-gradient(180deg, #E9D398, #fc8817);
}

.head__subtitle {
	font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 8vh;
}

.head__btns {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}

.head__btn {
    display: flex;
    align-items: center;
    height: 68px;
    padding: 0px 72px;
    font-size: 24px;
}

.btn {
    color: #fff;
    background: linear-gradient(180deg, rgba(252, 136, 23, 1), rgba(150, 81, 14, 1));
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.btn-span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 24px;
    color: #FC8817;
    background-color: #fff;
    transform: scale(5);
    transition: all 0.5s ease;
    opacity: 0;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 80px;
    border: 2px solid rgba(252, 136, 23, 0.4);
}

.btn:hover .btn-span {
    transform: scale(1);
    opacity: 1;
}

.head__btn+.head__btn {
    margin-left: 32px;
}

.head__btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-image: linear-gradient(180deg, #E9D398, #D2B354);
    border-radius: 60px;
    margin-right: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1439px) {
    .head__title {
        font-size: 50px;
    }
}


@media (max-width: 1023px) {
    .head__title {
        font-size: 40px;
    }
	
	.head__btn {
        height: 60px;
        font-size: 20px;
    }

    .btn-span {
        font-size: 28px;
    }
	
	.head__logo {
        font-size: 14px;
        padding: 14px 32px;
    }
	
	.min-logo {
    	width: 50px;
   	 	height: 50px;
    	top: -32px;
	}
}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .head__title {
        font-size: 22px;
        margin-bottom: 2vh;
    }

    .head__subtitle {
        font-size: 15px;
		margin-bottom: 16vh;
    }

    .head__btn {
        height: 56px;
        padding: 0px;
        font-size: 18px;
        width: 96%;
        display: flex;
        justify-content: center;
    }
	
	.head__btns {
    	width: 80%;
	}

    .btn-span {
        font-size: 18px;
    }

    .head__logo {
        font-size: 14px;
        padding: 12px 24px;
        margin-bottom: 8vh;
    }

    .language {
        font-size: 14px;
        margin-left: 10px;
    }
}

@media (max-width: 389px) {
    .head__title {
        font-size: 21px;
    }
}

@media (max-width: 374px) {

    .head__language {
        top: 10px;
    }

    .head__title {
        font-size: 26px;
    }

    .head__logo {
        font-size: 14px;
        padding: 12px 24px;
    }

}



/* works
-----------------------------------------------------------------*/
.works {
    background: #161616;
    padding: 80px 0px 100px;
    overflow: hidden;
}

.works__title {
    text-transform: uppercase;
    text-align: center;
    text-align: center;
    margin-bottom: 60px;
}

.works__main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    gap: 16px;
}

.work {
    height: 460px;
    position: relative;
    overflow: hidden;
}

.work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(22, 22, 22, 0.1), rgba(22, 22, 22, 0.8));
}

.work__inner {
    position: absolute;
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 30%;
    transform: translateY(180px);
    transition: all 0.5s ease;
}

.work__title {
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
	text-align: center;
}

.work__description {
    font-family: 'Montserrat';
    font-weight: 400;
    color: #E6CF90;
    font-size: 16px;
    width: 92%;
    text-align: center;
    margin: 0 auto;
}

.work__btn {
    text-transform: uppercase;
    background: linear-gradient(180deg, #E6CF90, #E6CF90);
    color: #161616;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60%;
    font-size: 14px;
    border-radius: 40px;
    cursor: pointer;
    margin-top: 50px;
    transition: all 0.5s ease;
    font-weight: 600;
    opacity: 0;
}

.work:hover .work__inner {
    transform: translateY(80px);
}

.work:hover .work__btn {
    margin-top: 16px;
    opacity: 1;
}

.work__btn:hover {
    letter-spacing: 0.12em;
}

@media (max-width: 1439px) {
    .work {
        height: 340px;
    }

    .work__inner {
        padding: 24px;
        top: 7%;
    }

    .work__inner {
        padding: 24px 12px;
    }

    .work__description {
        width: 100%;
    }

    .work:hover .work__inner {
        transform: translateY(100px);
    }
}

@media (max-width: 1023px) {
    h2 {
        font-size: 32px;
    }

    .works {
        padding: 60px 0px 80px;
    }

    .works__title {
        margin-bottom: 40px;
    }

    .work__inner {
        top: -6%;
        width: 100%;
    }

    .work__title {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .work__description {
        font-size: 16px;
    }

    .works__main {
		grid-template-columns: 1fr 1fr;
    }

    .work__btn {
        height: 50px;
        width: 70%;
        font-size: 12px;
    }

    .work .work__inner {
        top: 70%;
        transform: translateY(-50%);
        justify-content: flex-end;
    }

    .work:hover .work__inner {
        transform: translateY(-50%);
    }

    .work .work__btn {
        margin-top: 16px;
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .work .work__inner {
        top: 70%;
    }
	
	 .works__main {
		grid-template-columns: 1fr;
		 gap: 12px;
    }

    .works {
        padding: 60px 0px;
    }

    .works__main .block {
        width: 100%;
    }

    .works__main.works__main-mob .work {
        margin-bottom: 8px;
    }

    .works__main.works__main-mob .work img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    h2 {
        font-size: 20px;
    }

    .works__title {
        margin-bottom: 32px;
    }

    .work__description {
        font-size: 14px;
    }

    .work__btn {
		height: 50px;
        width: 70%;
        font-size: 12px;
    }
	
	
}

@media (max-width: 374px) {

    .works__title {
        margin-bottom: 24px;
    }
}


/* form
-----------------------------------------------------------------*/
.form-popup,
.form-end {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.form-popup__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.form-page__inner,
.form-popup__form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.form,
.form-end__inner {
    width: 720px;
    background-color: #ffffff;
    padding: 60px 40px 50px;
    border-radius: 32px;
    position: relative;
}

.form-popup__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: all 0.2s ease;
    opacity: 0.4;
}

.form-popup__close img {
    width: 30px;
    height: 30px;
}

.form-popup__close:hover {
    opacity: 1;
}

.form-popup-active,
.form-end-active {
    opacity: 1;
    visibility: visible;
}

.form-checkbox {
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 300;
    color: #909090;
    margin-bottom: 32px;
}

.real-checkbox {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.new-checkbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #c2c2c2;
    border-radius: 4px;
    margin-right: 16px;

}

.new-checkbox::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    top: 0;
    background-image: url('assets/img/check.svg');
    background-repeat: no-repeat;
    transform: scale(0);
    transition: all 0.2s ease-in;
}

.real-checkbox:checked+.new-checkbox::before {
    transform: scale(1.0);
}

.form-popup__title,
.form-page__title {
    text-align: center;
    color: #ffffff;
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 60px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.form-end__title {
    color: #333;
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.form-end__text {
    color: #000;
    text-align: center;
    margin-bottom: 40px;
}

.form-page__title span,
.form-popup__title span {
    color: #FC8817;
}

.form-inp {
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    border-bottom: 1px solid #333333;
    font-size: 30px;
    padding: 0 12px;
}

.form-inp-tel {
    margin-top: 16px;
}


.form-inp::placeholder {
    font-family: 'Inter';
    font-weight: 300;
    font-size: 24px;
    color: #909090;
    font-weight: 300;
}

.input-submit,
.form__btn {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    width: 100%;
    height: 80px;
    border-radius: 40px;
    background: linear-gradient(180deg, rgba(252, 136, 23, 1), rgba(150, 81, 14, 1));
    background: #FC8817;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.5s ease;
    border: 2px solid transparent;
}

.input-submit:hover {
    border: 2px solid #FC8817;
    color: #FC8817;
    background: #fff;
}

.form__btn:hover {
    border: 2px solid #FC8817;
    color: #FC8817;
    background: #fff;
}

.soc {
    display: flex;
    width: 700px;
    margin-top: 50px;
    justify-content: space-evenly;
}

.soc__item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    border-radius: 40px;
    width: 150px;
    position: relative;
    overflow: hidden;
}

.soc__ab {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    background-color: #fff;
    border-radius: 50px;
    transform: scale(5);
    opacity: 0;
    transition: all 0.5s ease;
}

.soc__ab.soc__ab-email {
    border: 2px solid #63A7BC;
}

.soc__ab.soc__ab-telegram {
    border: 2px solid #29A9EA;
}

.soc__ab.soc__ab-whatsapp {
    border: 2px solid #00E76F;
}

.soc__item:hover .soc__ab {
    transform: scale(1);
    opacity: 1;
}

.soc__item-email {
    background: linear-gradient(180deg, #A3D1DF, #63A7BC);
}

.soc__item-teleg {
    background: linear-gradient(180deg, #86CFF4, #29A9EA);
}

.soc__item-whats {
    background: linear-gradient(180deg, #6AECA8, #00E76F);
}

.form-page {
    padding: 100px 0px;
}

.form {
    position: relative;
}



/* Wordpress Form
-----------------------------------------------------------------*/

form br {
    display: none !important;
}

.wpcf7-spinner {
    display: none !important;
}

.wpcf7 form .wpcf7-response-output {
    display: none !important;
}

.form-page__form p {
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    display: block;
    width: 100%;
}

.loc p {
    display: flex;
    justify-content: space-between;
}

.wpcf7-not-valid-tip {
    margin-top: 8px;
    margin-bottom: 0px;
    font-size: 16px;
    text-align: left;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
    /* color: #AA8AF6; */
}

.form-inp.wpcf7-not-valid {
    /* border-bottom: 1px solid #F11313; */
}

@media (max-width: 767px) {
    .wpcf7-not-valid-tip {
        margin-top: 8px;
        font-size: 14px;
    }
}



@media (max-width: 1439px) {
    .form-page {
        padding: 80px 0px 100px;
    }
}

@media (max-width: 1023px) {

    .form-popup__title,
    .form-page__title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .input-submit,
    .form__btn {
        height: 70px;
        font-size: 28px;
        font-weight: 700;
    }

    .soc {
        margin-top: 40px;
    }

    .form-page {
        padding: 60px 0px 80px;
    }
}

@media (max-width: 767px) {

    .form,
    .form-end__inner {
        width: 100%;
        padding: 40px 16px 28px;
        border-radius: 24px;
    }

    .form-popup__title,
    .form-page__title {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .form-end__title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .form-end__text {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .form-end {
        padding: 0px 16px;
    }

    .input-submit,
    .form__btn {
        height: 57px;
        font-size: 16px;
    }

    .form-page {
        padding: 40px 0px 60px;
    }

    .soc {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .soc__item {
        height: 50px;
        width: auto;
    }

    .soc__item img {
        width: 24px;
    }

    .form-inp {
        height: 56px;
        font-size: 24px;
        padding: 0 8px;
    }

    .form-inp::placeholder {
        font-size: 20px;
    }

    .form-inp:nth-child(2) {
        margin-bottom: 32px;
    }

    .form-popup__inner {
        padding: 0px 16px;
    }

    .form-popup__close img {
        width: 24px;
        height: 24px;
    }

    .form-popup__close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;

    }
}

@media (max-width: 374px) {

    .form-popup__title,
    .form-page__title {
        margin-bottom: 24px;
    }

    .form-end__title {
        font-size: 22px;
        margin-bottom: 12px;
    }
}


/* etaps
-----------------------------------------------------------------*/
.etaps {
    padding: 80px 0px 100px;
}

.cos-bg {
    background: url('assets/img/bg.png')0 0/100% 100%;
    position: relative;
}

.cos-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.etaps__title {
    text-align: center;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #fff;
    margin-bottom: 60px;
}

.etaps__cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.etap {
    background-color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 220px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

.etap__nomber {
    position: absolute;
    right: 30px;
    top: 10px;
    font-family: 'Montserrat';
    font-weight: 700;
    color: rgba(210, 179, 84, 0.4);
    font-size: 80px;
}

.etap__img {
    width: 80px;
    margin-bottom: 20px;
}

.etap__text {
    font-size: 16px;
    color: #333;
    text-align: center;
    padding: 0 8px;
}



@media (max-width: 1023px) {
    .etaps__title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .etaps__cards {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .etaps {
        padding: 60px 0px 80px;
    }

    .cos-bg {
        background: url(assets/img/bg.png) no-repeat center center/cover;
    }
}

@media (max-width: 767px) {

    .etaps {
        padding: 40px 0px 60px;
    }

    .etaps__title {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .etaps__cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .etap {
        width: 448px;
    }
}

@media (max-width: 479px) {
    .etap {
        width: 343px;
    }
}

@media (max-width: 374px) {
    .etap {
        width: 288px;
        height: 200px;
    }

    .etaps__title {
        margin-bottom: 24px;
    }
}



/* about
-----------------------------------------------------------------*/
.about {
    padding: 180px 0px 100px;
    background: #3E3E3E;
    overflow-x: hidden;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(180deg, rgba(22, 22, 22, 0.0), #161616);
}

.about__inner {
    position: relative;
}

.about__title {
    text-transform: uppercase;
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 0.02em;
    margin-bottom: 60px;
}

.about__block {
    border: 10px solid #fff;
    background-color: #161616;
}

.about__info {
    border: 12px solid #161616;
    background-color: #fff;
    color: #333333;
    padding: 70px 50px;
    font-family: 'Montserrat';
    font-weight: 400;
}

.about__info p {
    margin-bottom: 16px;
    width: 69%;
    line-height: 140%;
    font-size: 16px;
}

.about__info p:last-child {
    margin-bottom: 0;
}

.about__strong {
    font-family: 'Montserrat';
    font-weight: 600;
}

.about__img {
    position: absolute;
    bottom: 4px;
    right: 24px;
    width: 30%;
}

.about__img img {
    max-width: 500px;
}


@media (max-width: 1439px) {
    .about {
        padding: 100px 0px 80px;
    }

    .about__img {
        right: 170px;
        width: 20%;
    }

    .about__info {
        padding: 60px 40px;
    }

    .about__img img {
        max-width: 400px;
    }
}

@media (max-width: 1023px) {
    .about__img img {
        max-width: 420px;
    }

    .about__img {
        right: 150px;
        width: 20%;
    }

    .about__title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .about__info p {
        width: 66%;
    }

    .about__info {
        padding: 50px 30px;
    }

    .about {
        padding: 60px 0px 80px;
    }
}

@media (max-width: 767px) {

    .about {
        padding: 40px 0px 60px;
    }

    .about__img {
        display: none;
    }

    .about__title {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .about__block {
        border: 5px solid #fff;
    }

    .about__info {
        border: 6px solid #161616;
        padding: 24px 16px;
    }

    .about__info p {
        margin-bottom: 16px;
        width: 100%;
        font-size: 16px;
    }
}

@media (max-width: 374px) {
    .about__title {
        margin-bottom: 24px;
    }
}



/* footer
-----------------------------------------------------------------*/
.footer {
    border-top: 50px solid #3e3e3e;
    padding: 100px 0px;
    background: #161616;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
    border-bottom: 2px solid #757575;
}

.footer__logo {
    margin-bottom: 32px;
}

.footer__text {
    font-family: 'Montserrat';
    font-weight: 400;
    color: #999999;
    font-size: 20px;
    line-height: 140%;
}

.footer__top-menu {
    display: flex;
    transition: all 0.2s ease;
}

.footer__top-link {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    margin-left: 32px;
    font-weight: 300;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    padding-bottom: 2px;
}

.footer__top-link:hover {
    border-bottom: 2px solid #E6CF90;
    opacity: 1;
}

.footer__bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom-ps {
    color: #999999;
    font-size: 14px;
}

.footer__bottoms-web {
    font-size: 14px;
    font-weight: 300;
    color: #999999;
}

.footer__bottoms-web a {
    font-size: 16px;
    font-weight: 300;
    color: #FC8817
}

@media (max-width: 1439px) {
    .footer .head__logo {
        font-size: 20px;
        padding: 20px 40px;
    }

    .footer__text {
        font-size: 16px;
    }

    .footer__top-link {
        font-size: 14px;
        margin-left: 24px;
    }

    .footer__bottom-ps {
        font-size: 12px;
    }

    .language {
        font-size: 12px;
    }
}

@media (max-width: 1023px) {
    .footer .head__logo {
        font-size: 16px;
        padding: 16px 32px;
    }

    .footer__text {
        font-size: 14px;
    }

    .footer__top {
        padding-bottom: 40px;
    }

    .footer__top-menu {
        flex-direction: column;
        align-items: flex-end;
    }

    .footer__bottoms-web {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .footer {
        border-top: 20px solid #3e3e3e;
        padding: 60px 0px 80px;
    }

    .footer__top {
        padding-bottom: 40px;
        flex-direction: column;
        align-items: center;
    }

    .footer__text {
        text-align: center;
    }

    .footer__top-head {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 30px;

    }

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

    .footer .head__logo {
        width: 240px;
        display: flex;
        text-align: center;
        justify-content: center;
        margin: 0 auto 30px;
    }

    .footer__bottom {
        flex-direction: column;
    }

    .language {
        margin: 10px;
    }

    .footer__bottoms-web {
        margin-top: 8px;
    }

    .footer__bottoms-web a {
        font-size: 14px;
    }
}


/* footer
-----------------------------------------------------------------*/
.popup-work {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 22;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    background-color: rgba(0, 0, 0, 0.8);
}

.popup-work__inner {
    background-color: #fff;
    max-width: 700px;
    padding: 10px;
    position: relative;
}

.popup-work__body {
    border: 10px solid #161616;
    background-color: #fff;
    padding: 24px 24px 32px;
}

.popup-work__title {
    font-size: 32px;
    color: #161616;
    text-align: center;
    margin-bottom: 16px;
}

.popup-work__inner p {
    font-size: 18px;
    line-height: 140%;
    color: #3E3E3E;
    margin-bottom: 12px;
}

.popup-work__close {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 32px;
    right: 32px;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 0.4;
}

.popup-work__close:hover {
    opacity: 1;
}

.popup-work__close img {
    width: 100%;
    height: 100%;
}


@keyframes scale-up-center-big {
    0% {
        transform: scale(5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 1023px) {
    .popup-work__title {
        font-size: 24px;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .popup-work {
        padding: 16px 16px 0px;
    }

    .popup-work__inner {
        padding: 5px;
    }

    .popup-work__title {
        margin-bottom: 14px;
    }

    .popup-work__inner p {
        font-size: 15px;
    }

    .popup-work__body {
        border: 6px solid #161616;
        padding: 18px 16px 16px;
    }

    .popup-work__close {
        width: 20px;
        height: 20px;
        top: 32px;
        right: 24px;
    }
}

@media (max-width: 479px) {}

@media (max-width: 374px) {}





@media (max-width: 1439px) {}

@media (max-width: 1023px) {}

@media (max-width: 767px) {}

@media (max-width: 479px) {}

@media (max-width: 374px) {}




#headerimg,
#footer,
hr {
    display: none !important;
}







.prava {
    display: flex;
}

.footer__bottom-link {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    transition: all 0.2s ease;
    margin-left: 40px;
}

.footer__bottom-link:hover {
    color: #FC8817;
}

@media (max-width: 1023px) {
    .footer__bottom-link {
        font-size: 12px;
    }
}

@media (max-width: 479px) {
    .prava {
        flex-direction: column;
    }

    .footer__bottom-link {
        margin-left: 0px;
        margin-top: 8px;
        text-align: center;
    }
}




.page-content {
    padding-top: 32px;
    padding-bottom: 32px;
    max-width: 1500px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.5;
}

.page-content p {
    margin: 0 0 1.2em 0;
}

.prava-text {
    font-size: 15px;
    padding-top: 20px;
}

.btn-home {
    border: 2px solid #E6CF90;
    background-color: transparent;
    color: #fff;
    padding: 4px 24px;
    border-radius: 16px;
    transition: all 0.2s ease;
    font-size: 20px;
    margin-top: 32px;
    display: inline-block;
}

.btn-home:hover {
    background-color: #fff;
    border: 2px solid #fff;
    color: #3E3E3E;
}

.wp-block-list {
    margin-bottom: 20px;
}

@media (max-width: 479px) {
    .page-content {
        line-height: 1.2;
    }

    .container.page-content h1 {
        font-size: 32px;
    }
    
    .min-logo {
        width: 50px;
        height: 50px;
        top: -30px;
    }

}



/* servecis
-----------------------------------------------------------------*/
.section-services {
	padding: 100px 0px;
	text-align: center;
	background: #fff;
}

.section-services__title {
	color: #000;
	font-weight: 900;
	font-size: 40px;
	text-transform: uppercase;
	margin-bottom: 60px;
}

.services {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	padding: 0px 0px 60px;
}

.service-card {
	color: #000;
	text-align: center;
	padding: 32px 24px 40px;
	transition: 0.3s;
	border: 1px solid #eee;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
}

.service-card__img {
	max-width: 70px;
	margin-bottom: 8px;
}

.service-card__title {
	color: #000;
	font-weight: 900;
	font-size: 22px;
	margin-bottom: 12px;
}

.service-card__text {
	font-size: 16px;
	line-height: 140%;
	color: #617179;
	margin-bottom: 10px;
}

.service-card__btn {
	color: #ed9c00;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.2s ease;
	position: relative;
	padding-left: 12px;
}

.service-card__btn::before {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-top: 2px solid;
	border-right: 2px solid;
	left: -4px;
	top: 8px;
	transform: rotate(45deg);
}

.service-card__btn:hover {
	color: #222;
}

.services__ps {
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

@media (max-width: 1439px) {
	.service-card__title {
		letter-spacing: 0em;
		font-size: 20px;
		margin-bottom: 8px;
	}
}

@media (max-width: 1023px) {
	.services {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
		padding: 0px 0px 100px;
	}
}

@media (max-width: 767px) {
	.services {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 0px 0px 60px;
	}
	
	.service-card__btn::before {
	top: 6px;
}

	.section-services {
		padding: 60px 0px;
	}

	.section-services__title {
		font-size: 20px;
		margin-bottom: 40px;
	}

	.service-card__text {
		line-height: 130%;
	}

	.service-card {
		padding: 24px 16px 32px;
	}

	.service-card__img {
		margin-bottom: 4px;
	}

	.service-card__btn {
		font-size: 16px;
	}
}

@media (max-width: 479px) {}

@media (max-width: 374px) {}


