@font-face {
    font-family: 'Open Sans';
    src:
		url('../fonts/OpenSans.ttf') format('truetype');
       
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
  font-family: "OpenSans", sans-serif;
  src:    url("../fonts/OpenSans.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
    font-family: 'Helvetica Neue';
        src: url('../fonts/HelveticaNeueBoldCondensed.eot?#iefix') format('embedded-opentype'),
        url('../fonts/HelveticaNeueBoldCondensed.woff2') format('woff2'),
        url('../fonts/HelveticaNeueBoldCondensed.woff') format('woff'),
        url('../fonts/HelveticaNeueBoldCondensed.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}



body {
	width: 100%;
	min-height: auto;
	font-family: "OpenSans", sans-serif;
	text-align: center;
	background: #fff;
	color: #000;
}

html{
	scroll-behavior: smooth;
}


header, section, footer{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
    text-align: center;
    font-family: "OpenSans", sans-serif;
}

*{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline:0 !important;
}

button,
input,
button:active,
input:active{
	outline:0 !important;
}

ul{
	list-style-type: none;
	margin: 0 auto;
}


a{
	text-decoration: none!important;
}

.wrapper{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

.padding{
	padding: 20px 0;
}


/* HEADER styles*/

header{
	width: 100%;
	height: auto;
	min-height: 100vh;
    /*background: url(../images/bg1.avif) no-repeat 0px 0px;
	background-size: cover;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;*/
	text-align: left;
	margin: 0 auto;
	display: flex;
    position: relative;
	color: #fff;
	font-family: "OpenSans", sans-serif;
}

header h2{
	font-family: "OpenSans", sans-serif;
	font-weight: bold;
	max-width: 100%;
	width: 100%;
	font-size: 40px;
	line-height: 44px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 20px;
	opacity: 0;
    animation-fill-mode: forwards;
}

header h1{
	font-family: "OpenSans", sans-serif;
	font-weight: bold;
	max-width: 100%;
	font-size: 35px;
	line-height: 40px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 20px;
	opacity: 0;
    animation-fill-mode: forwards;
}

header a{
	color: #fff;
}

header a:hover{
	color: #dacec2;
	text-decoration: none;
}

.header-container{
	width: 100%;
	height: auto;
	min-height: 100vh;
}

h1, h1, h3, p, a, li, span{font-family: "OpenSans", sans-serif;}

.logo{
    width: 260px;
	height: 120px;
	display: flex;
}

header .logo{	
	background:rgba(255,255,255,0.55);
}

.logo img{
    width: 100%;
	padding: 10px 30px;
	box-sizing:border-box;
}

.menu-container{
	position: relative;
    width:100%;
	height: 120px;
	line-height: 120px;
	background: rgba(76, 91, 34, 0.55);
	z-index: 50;
}

nav{
	width: 100%;
    position: relative;
	display: flex;
}

.menu{
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.menu-btn-class{
	position: relative;
	width: 80px;
	height: 120px;
	cursor: pointer;
	display: flex;
	float: right;
}

.menu-btn {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
}


.menu-btn-class:hover{
	color: #dacec2;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

.menu-btn-class:hover .menu-btn span{
	background: #dacec2;
}

.menu-btn span,
.menu-btn span:first-child,
.menu-btn span:last-child
{
	position: absolute;
	top: 50%;
	margin-top: -1px;
	width: 40px;
	height: 3px;
	background-color: #fff;
}

.menu-btn span:first-child,
.menu-btn span:last-child,
.menu-btn span:n-child(2)  {
	display: block;
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	-o-transition: transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
}

.menu-btn span:first-child {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

.menu-btn span:last-child {
	-webkit-transform: translateY(10px);
	-ms-transform: translateY(10px);
	transform: translateY(10px);
}

.menu-btn_active span:first-child {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.menu-btn_active span:nth-child(2) {
	display: none;
}

.menu-btn_active span:last-child {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.nav-block{
	width: 100%;
	height: auto;
	position:absolute;
    top:0;
    margin: auto;
	left:0;
	right:0; 
}

.nav-list{
	display: flex;
    margin-bottom: 0;
	padding: 0;
}

.nav-list li{
	display: flex;
}

.nav-list a{
	font-size: 28px;
	color: #fff;
	display: block;
	padding: 0 15px;
	text-decoration: none;
}

.nav-list a:hover{
	color: #dacec2;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
    text-decoration: none;
}

.nav-list a:active{
	text-shadow: 1px 1px 2px black, 0 0 1em #dacec2;
}

.header-content{
	position: absolute;
	top: calc(50% + 60px);
	left: 50%;
	transform: translate(calc(-50% - 20px),calc(-50% - 20px));
	
}
.header-content-mob{
	position: absolute;
	top: calc(25% + 60px);
	left: 50%;
	transform: translate(calc(-50% - 20px),-50%);
	display: none;
}
 .main-content{
	max-width: 980px;
	width: calc(100% - 80px);
	min-height: 300px;
	background:rgba(76, 91, 34, 0.55);
	border: 10px solid rgba(255,255,255, 0.55);
	padding:50px;
	margin: 20px;
}

.main-content-mob{
	max-width: 100%;
	width: calc(100% - 40px);
	min-height: auto;
	background:rgba(76, 91, 34, 0.55);
	border: 10px solid rgba(255,255,255, 0.55);
	padding:20px;
	margin: 20px;
}

.main-content p{
	font-size: 20px;
	line-height: 26px;
	margin-top: 20px;
	font-weight: 400;
}

.main-bg{
	margin-top: -120px;
	min-height: 630px;
}

.header-slider,
.aboutus-bg{
	width: 100%;
	height: 100vh;
	min-height: 630px;
} 

.header-slider img,
.aboutus-bg img,.services-bg img{
	width: 100%;
	min-height: 630px;
	height: 100vh;
	object-fit: cover;
}

.services-bg{
	width: 100%;
	min-height: 100vh;
	height: auto;
} 

.services-bg img{
	width: 100%;
	min-height: 100vh;
	height: 100%;
	object-fit: cover;
}

.services-main-block{
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 500px;
}

.header-menu-btn{
	display: flex;
}


.lang a{
	font-size: 25px;
	text-decoration: underline;
	font-weight: bold;
	padding: 10px;
}

.lang a:hover{
	text-decoration: underline! important;
}


/* Menu page styles*/

.menu-wrapper{
	display: none;
    position: fixed;
	width: 100%;
	height: 100vh;
	background: url(../images/menu-bg.png) no-repeat 0px 0px;
	background-size: cover;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	z-index: 6000;
}

.menu-wrapper-overlay{
	width: 100vw;
	position: absolute;
    background: rgba(180, 180, 143, 0.8);
	left: 0;top: 0;
}

.menu-wrapper-content{
	position: relative;
	width: 100vw;
	height: 100vh;
	text-align: center;
	margin: 0 auto;
	padding: 50px 100px;
	color: #fff;
	overflow-y: auto;
}

.menu-wrapper .menu-btn-class{
	position: absolute;
	right: 60px;
	top: 0;
}

.menu-list{
	width: 100%;
	height: 80%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	margin-top: 20px;
}

.menu-list-item{
	color: #fff;
	font-size: 30px;
	line-height: 100px;
	padding: 0 15px;
	font-weight: 700;
	transition: 0.5s;
}

.menu-list-item:hover,
.menu-contacts a:hover{
	color: #dacec2;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
    text-decoration: none;
}

.menu-list-item:active{
	text-shadow: 1px 1px 2px black, 0 0 1em #dacec2;
}

.nav-list-item.active,
.menu-list-item.active{
	color: #dacec2;
	text-shadow: 1px 1px 2px black, 0 0 1em #dacec2;
}


.menu-contacts{
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	text-align: center;
}

.menu-contacts a{
	padding-top: 10px;
	color: #fff;
	display: block;
	font-size: 20px;
}

/*Header styles end*/

.parallax-window {
	width: 100%;
    height: 100vh;
    background: transparent;
}

.parallax-mirror,
.parallax-slider{
	width: 100%;
}

.services-bg.parallax-window{
	min-height: 630px;
	height: auto;
}

.contacts-content h1{
	font-style: normal;
	font-weight: 500;
	font-size: 36px;
	line-height: 42px;
	color: #fff;
}

.oliv-hr{
	display: block;
	max-width: 538px;
	height: 2px;
	padding-bottom: 20px;
	margin: 10px auto;
}

.oliv-hr img{
	width: 100%;
}

/* Services  styles*/

.services{
	padding: 0 20px;
}

.services-container{
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	padding: 70px 0;
	margin: auto;
}

.services-block{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	height: 360px;
	background: #fcf9f4;
	border: 2px solid #ACAC80;
	box-sizing: border-box;
	box-shadow: 3px 5px 4px rgba(193, 193, 163, 0.5);
	padding: 20px;
	margin: 15px auto!important;
}

.mt-20 {
  margin-bottom: 20px !important;
}

.services-block img{
	width: auto;
	height: 100px;
	min-height: auto;
}

.services-block:hover{
	box-shadow: 10px 10px 10px rgba(193, 193, 163, 0.5);
}

.services-block h3{
	font-style: normal;
	font-weight: 300;
	font-size: 22px;
	line-height: 28px;
	text-align: center;
	color: #2F2F2E;
	margin: 15px 0 30px 0;
}

.services-block a{
	position: absolute;
	bottom: 10px;
	font-size: 18px;
	line-height: 24px;
	color: #756325;
	padding: 5px 10px;
	background: #fff;
	border-radius: 30px; 
}

.services-block a:hover{
	width: 120px;
	margin: auto;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
	text-decoration: none;
	padding: 5px 10px;
	background: #ACAC80;
	border-radius: 10px;
}


/*modal*/
 
.popup-overlay{
    display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
    background: rgba(180, 180, 143, 0.7);
    z-index: 100;
    overflow: auto;
}

.show{
	display: block;
}

.popup{
	position: fixed;
    max-width: 560px;
	width: calc(100% - 80px);
    min-height: 560px;
	left: 50%;
	top: 50%;
	transform: translate(calc(-50% - 20px),calc(-50% - 20px));
	text-align: center;
	margin: 20px;
	padding: 20px;
	background: #FFFFFF;
	border: 3px solid #ACAC80;
	box-sizing: border-box;
	box-shadow: 3px 5px 4px rgba(193, 193, 163, 0.5);
}

.popup-agree{
    max-width: 560px;
    width: calc(100% - 80px);
    min-height: 560px;
	padding: 20px;
}

.close-popup {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.close-popup:before {
	content: '';
	background-color: #ACAC80;
	position: absolute;
	height: 2.5px;
	width: 20px;
	top: 15px;
	left: 10px;
    border-radius: 4px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.close-popup:after {
	content: '';
	background-color: #ACAC80;
	position: absolute;
	height: 2.5px;
	width: 20px;
	top: 15px;
	left: 10px;
    border-radius: 4px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.popup-img{
    width: auto;
	height: 100px;
	min-height: auto;
	margin: 0 auto;
}

.popup-img img{
    width: auto;
	height: 80px;
	min-height: auto;
}

.popup-title{
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
	text-align: center;
    color: #4B4B49;
	margin: 20px 0;
}

.popup .oliv-hr{
	width: 100%;
}

.popup-content{
	width: 100%;
	min-height: 220px;
    font-size: 20px;
    line-height: 26px;
    text-align: left;
    color: #000;
    overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
	margin: 15px 0 25px 0;
}

.popup-content p{
    margin-bottom: 15px;
}


.popup-btn{
	width: 188px;
	height: 60px;
	background: #dacec2;
	box-shadow: 3px 4px 8px rgba(47, 47, 46, 0.44);
	border-radius: 10px;
	margin: 10px auto;
	cursor: pointer;
}
.popup-btn:hover{
	background: #ACAC80;
}

.popup-content::-webkit-scrollbar {
    width: 5px;
}
 
.popup-content::-webkit-scrollbar-track {
    background-color: #fff;
}
 
.popup-content::-webkit-scrollbar-thumb {
	max-height: 70px;
	background: rgb(203, 203, 175);
	border-radius: 5px;
}

.popup-form input{
	width: 100%;
	height: 40px;
	padding: 15px;
	background: #FFFFFF;
	border: 1px solid #ACAC80;
	border-radius: 10px;
	color: #4B4B49;
	font-size: 12px;
	outline: none;
	margin-bottom: 10px;
}

.popup-form textarea{
	width: 100%;
	height: 70px;
	padding: 15px;
	background: #FFFFFF;
	border: 1px solid #ACAC80;
	border-radius: 10px;
	font-size: 12px;
	color: #4B4B49;
	outline: none;
}

.popup-text{
	font-size: 22px;
	line-height: 26px;
	color: #ACAC80;
	padding: 30px;
}

.allow-link{
	display: block;
	font-size: 12px;
	line-height: 16px;
	color: #ACAC80;
	padding: 15px;
}

.allow-link:hover{
	display: block;
	text-decoration: none;
	color: #756325;
}

.popup-answer{
	padding-top: 50px;
}

.popup-icon{
	width: 30px;
	height: 30px;
	margin: 30px auto;
}

.popup-icon img{
	width: 30px;
    height: 30px;
	min-height: 30px;
    object-fit: contain;
}


#success-file{
	font-size:30px; 
	color:rgb(203, 203, 175); 
	position: relative; 
	left: 70px;
	bottom: 35px;
}

/* About styles*/

.about{
	width: 100%;
	height: auto;
	font-style: normal;
	font-weight: normal;
	font-size: 28px;
	line-height: 33px;
	margin: 0 auto;
	overflow: hidden;
}

.about-us{
	font-weight: normal;
	font-size: 23px;
	line-height: 27px;
	text-align: left;
}

.about-container{
	max-width: 1000px;
	justify-content: center;
	width: 100%;
	height: auto;
	display: flex;
	margin: 0 auto;
	text-align: center;
}

.about-block{
	display: flex;
	justify-content: space-around;
	width: 100%;
	height: auto;
	margin: 20px 10px;
}

.about-img-block{
	max-width: 400px;
	margin: 20px;
}

.about-img-block img{
	width: 100%;
}


.about-descr{
	max-width: 450px;
	height: auto;
	display: flex;
	flex-direction:column;
	align-items: flex-start;
	margin: 20px;
}


.about h3{
	font-size: 32px;
	line-height: 38px;
	text-align: left;
	margin-top: 10px;
	margin-bottom: 20px;
}

.about ol{
	font-size: 22px;
	text-align: left;
	margin-left: 30px;
}

.left{
	float: left;
}

.right{
	float: right;
}

.clear{
	float: none;
	clear: both;
}


/* Contacts styles*/

.contacts{
    position: relative;
	width: 100%;
	height: auto;
	min-height: 330px;
	text-align: center;
	margin: 0 auto;
	color: #fff;
}

.contacts-container{
	width: 100%;
	min-height: 100%;
	margin: 0 auto;
}

.contacts-content{
	position: absolute;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.contacts a{
	color: #fff;
}

.contacts a:hover{
	color: #dacec2;
}

.input-box{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.input-box div{
	width: 48%;
}

footer{
    position: absolute;
	width:100%;
	min-height: 140px;
	background: rgba(180, 180, 143, 0.7);
	bottom: 0;
	padding: 10px 30px;
}

.footer-form{
	margin: 0 auto;
	padding-top: 40px;
	max-width: 980px;
	width: 100%;
	height: auto;
	font-family: Roboto;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	text-align: center;
	color: #4B4B49;
}

.footer-form input{
	width: 100%;
	padding: 15px;
	background: #FFFFFF;
	border: 1px solid #ACAC80;
	color: #4B4B49;
	outline: none;
	margin-bottom: 20px;
	height: 44px;
}

.footer-form-email input,
.footer-form-phone input,
.footer-form-name input{
	width: 100%;
	height: 44px;
	
}


.footer-form-message textarea{
	width: 100%;
	height: 90px;
	padding: 15px;
	background: #FFFFFF;
	border: 1px solid #ACAC80;
	color: #4B4B49;
	font-family: Arial;
	outline: none;
	margin-bottom: 23px;
}

.footer-form-btn{
	width: 270px;
	height: 44px !important;
	background: #dacec2 !important;
	box-shadow: 2px 2px 3px rgba(47, 47, 46, 0.4);
	font-size: 22px;
	line-height: 14px;
	color: #000000 !important;
	cursor: pointer;
}

.footer-form-btn:hover{
	background: #ACAC80 !important;
	color: #fff !important;
	transition: 0.3s;
}

footer .logo{
	width: 180px;
	margin-right: 150px;
}

footer a{
	color: #fff;
}

footer a:hover{
	color: #dacec2;
	text-decoration: none;
	transition: 0.2s;
}

.footer-contacts{
	display: flex;
	text-align: right;
	padding-top: 10px;
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	float: right;
}

.footer-contacts a{
	display: block;
}

.footer-links{
	margin: 0 auto;
}

.footer-nav-list{
	
}

.footer-btm{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	background: #4c5b22;
	padding: 10px;
}

.footer-nav-list li{
	display: flex;
	padding: 10px 60px;
}

.social-icons{display: none;}

.social-icons{
	justify-content: space-around;
}

.social-icons a{
	width: 20px;
	height: 20px;
	margin: 10px;
}

.social-icons img{
	width: 20px;
	height: 20px;
}

.social-icons a:hover img{
	box-shadow: 0 0 30px #dacec2;
}



.all-rights{
	font-size: 14px;
	padding: 5px;
	
}

.mycreativewebsite{
	font-size: 14px;
	padding: 5px;
	color: #ccc !important;
}

.mycreativewebsite:hover{
	color: #ddd !important;
}

.footer{
	width: 100%;
	height: auto;
	min-height: 570px;
	background:#4c5b22;
} 

.footer-block{
	position: relative;
	width: 100%;
	height: 430px;
} 

.footer-top{
	width: 100%;
	height: 50%;
	background: #dacec2;
} 

.footer .footer-bottom{
	width: 100%;
	height: 50%;
	background:#4c5b22;
} 

.footer-info{
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 980px;
	width: calc(100% - 80px);
	height: 280px;
	background: #fcf9f4;
	margin:85px 40px 65px 40px;
	top: 0;
	left: 50%;
	transform: translateX(calc(-50% - 40px));
	z-index: 10;
} 

.footer-info a, .footer-info span{
	color: #000;
	font-size: 21px;
	font-weight: 600;
	text-align: left;
}

.footer .footer-contacts{
	display: flex;
	width: 100%;
	padding: 80px 10px;
	justify-content: space-between;
	align-items: center;
}

.footer-address{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	
}
.footer-phone{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.footer-address,
.footer-address div,
.footer-phone div{
	display: flex;
}

.footer-address div img,
.footer-phone div img{
	margin: 0 20px;
}

.footer .footer-logo{
	width: 240px;
	height: 120px;
}

.footer .footer-logo img{
	width: 100%;
}

.footer .footer-logo{
	/*border-right: 5px solid #4c5b22;*/
}

.footer .social-icons{
	background:#4c5b22;
}

.footer .footer-bottom,
.footer .footer-bottom a,
.footer .footer-bottom span{
	color: #dacec2;
	font-size: 14px;
	font-weight: 400;
}

.social-links{
	width: 100%;
	display: flex;
	justify-content: space-around;
	padding:40px 0 20px 0;
	font-size: 30px;
	color: #dacec2;
	background: #4c5b22;
}

.social-links a{color: #dacec2; padding: 5px;}

.social-links a:hover{color: #dacec2; text-decoration: underline!important;}

.social-links div{
	width: 1px;
	height: 44px;
	background: #dacec2;
}

.arrow-up{
	position: fixed;
	width: 50px;
	height: 50px;
    bottom: 140px;
    right: 40px;
	display: none;
	 z-index: 55;
	opacity: 0;
	transition: opacity 0.5s linear;
} 
.arrow-up a{
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(76, 91, 34, 0.55);
	border: 2px solid rgba(255, 255, 255, 0.55);
   
}

.arrow-up a:hover{
	border: 2px solid rgba(255, 255, 255, 0.7);
}

body ::-webkit-scrollbar {
    width: 6px;
    background-color: transparent;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

body ::-webkit-scrollbar-thumb {
    width: 4px;
    background: #dacec2;
    border-radius: 4px;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    min-height: 10px;
}
