@charset "UTF-8";
@import url(font-awesome.min.css);
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body{
	height: fit-content;
	display: flex;
	flex-direction: column;
}
*{
	padding: 0;
	margin: 0;

	font-family: 'Roboto';
}
/* .iti{
	z-index: -1;
} */
a{
	font-weight: 400;
	text-decoration: none;
	color:black
}
/* header styles */
#header{
	background-color:rgb(237 237 237);
	position: fixed;
	display: flex;
	align-items: center;
	width: 100%;
	height:80px;
	justify-content: space-around;
}
#header div{
	height: 80px;
	display: flex;
	align-items: center;
}

#header nav a[href="#menu"]:before {
	content: "";
	display: inline-block;
	width: 40px;
	height: 40px;
	background-image: url(../../images/menu1.svg);
	background-size: cover;
	background-repeat: no-repeat;
	margin-right: 5px;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-transform: none !important;
}
#header nav a[href="#menu"] span {
	display: none;
}

.left{
	display: flex;
	align-items: center;
}
.left #ru,
.left #ua,
.left #en{
	font-weight: 400;
	margin-left: 0.8rem;
}
.space-div{
	padding-top: 80px; /*відступ від початку сторінки, бо хедер закриває контент, що має бути нижче нього */
}
/*osnova*/
#three{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height:90vh;
}
.tn-atom{
	font-weight: 600;
	padding	:5vh 0;
	text-align: center;
	font-size: 48px;
}
.block_flex{
	display: flex;
	justify-content: space-around;
	padding:20px;
}
.block_three{
	display: flex;
	padding: 0 50px;
	width:40vw;
	height:40vh;
}

/*Блок "Отримуєте"*/

.block_three .big_p{
	margin: 0 0 0.5rem -1.5rem;
	font-size: 16px;
	font-weight: 600;
}
.three_p{
	color: #262626;
    font-size: 16px;
    line-height: 2;
    font-weight: 400;
    text-align: left;
    padding-left: 15px;
}
.text-block{
	height:190px;
}

/*Блок з формою*/

.form-block{
	width:100%;
}
#myForm{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height:190px;
}
.form-block .big_p{
	margin:0 0 0.5rem 0;
	font-size: 16px;
	line-height: 2;
}

input[type="text"],
input[type="email"]{
	border: 1px solid #dee1e3;
	background: rgba(144, 144, 144, 0.075);
	width:100%;
	height: 45px;
	padding-left: 15px;
	margin-bottom: 16px;
}
#name{
	width:calc(100% - 15px);
}
input[type="submit"]{
	border: none;
	background-color: #ff3b14;
	color:white;
	font-weight: 600;
	width:100%;
	height: 45px;
}

/*Сервіси*/

#one{
	display: flex;
	flex-direction: column;
	height:60vh;
	margin-bottom: 15vh;
}
#one .inner.flex.flex-3{
	display: flex;
	justify-content: center;
	padding:20px;
}
#one .inner.flex.flex-3 .flex-container{
	display: flex;
	width:85vw;
	height:300px;
	justify-content: center;
}
#one .flex-item{
	height:270px;
	margin:4px;
	background-color: #ededed;
	padding:30px;	
	width:33%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#one .flex-item .content{
	width:100%;
	height:250px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	margin-top:1rem;
	text-align: center;
}
.content h1, 
.content h2, 
.content h3, 
.content h4, 
.content h5{
	height: 48px;
	color: #262626;
    font-size: 24px;
    font-family: 'Roboto';
    line-height: 1.55;
    font-weight: 600;
}

.content > p {
    margin: 0 0 24px 0;
    color: #262626;
    font-size: 16px;
    font-family: 'Roboto';
    font-weight: 400;
}
.content a{
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border: 2px solid #ff3b14;
	color: #ff3b14;
	height: 50px;
}

/*Контакти*/

#contact{
	padding:52px 33px;
	background: #ededed;
}
.contact-info{
	display: grid;
	grid-template-columns: 1fr 2fr;
}
.contact-details .tn-atom{
	padding:0;
	margin-bottom: 24px;
	text-align: left;
}
.contact-details p{
	max-width: 17rem;
	margin-bottom: 12px;
}
.contact-info .google-maps{
	box-sizing: border-box;
	padding:20px;
}
.contact-info .google-maps iframe{
	border:none;
}
.social-links{
	margin: 24px 0 0 0;
}
.social-links a{
	margin: 0 10px;
}
.copyright{
	width:100%;
	background: black;
	color:white;
	text-align: center;
	padding:32px 0;
}

/*меню*/
#menu{
	position: fixed;
	top:0;
	left:-320px;
	display: flex;
	color:#000000;
	width:320px;
	height:100vh;
	justify-content: center;
	background: #ffffff;
	z-index: 7;
	transition: 0.5s;
	font-weight: 600;
	font-size: 1rem;
}
#menu.visible{
	translate: 320px 0;
	transition: 0.5s;
}
#menu ul{
	width:inherit;
	padding-top: 4rem;
	height:50%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#menu li{
	margin:1.5rem 0;
	list-style: none;
	text-align: center;
}
#menu.visible ul li a {
	text-decoration: none;
	width:100%;
	color: #000000;
	font-size: 1rem;
	font-weight: 400;
	font-family: 'Roboto';
	letter-spacing: 0.5px;
	text-align: center;
	padding: 0.2rem 0;
}
#menu.visible ul li.selected a {
	text-decoration: none;
	width:100%;
	color: #000000;
	font-size: 1.2rem;
	font-weight: 600;
	font-family: 'Roboto';
	letter-spacing: 0.5px;
	text-align: center;
	padding: 0.2rem 0;
}
a.close{
	font-size: 1rem;
	text-decoration: none;
    border: none;
    color: #000000;
    cursor: pointer;
    height: 64px;
    line-height: 3.25em;
    padding-right: 1.25em;
    position: absolute;
    right: 0;
    text-align: right;
    top: 0;
    width: 64px;
	background-image: url(/images/xmark-solid.svg);
	background-size: 48px 48px;
	background-repeat: no-repeat;
	background-position-x: center;
	background-position-y: center;
}
#menu .close:before {
	text-align: center;
	display: block;
	width:128px;
	height: 128px;
	color:white;
    font-family: FontAwesome;
    text-transform: none !important;
}
#navPhoneMenu{
	display: none;
}
#langs{
	display: none;
}


/*Адаптація*/

@media (min-width:768px) and (max-width: 980px) {
	#one{
		display: flex;
		flex-direction: column;
		height:fit-content;
		margin-bottom: 15vh;
	}
	#one .inner.flex.flex-3{
		display: flex;
		height:fit-content;
		justify-content: center;
		padding:20px;
	}
	#one .inner.flex.flex-3 .flex-container{
		display: flex;
		width:85vw;
		height:fit-content;
		flex-direction: column;
		align-items: center;
	}
	#one .flex-item{
		height:270px;
		margin:4px;
		background-color: #ededed;
		padding:30px;	
		width:55vw;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#one .flex-item .content{
		width:100%;
		height:fit-content;
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		margin-top:1rem;
		text-align: center;
	}
	#three{
		height: calc(100vh - 80px);
	}
	#three .three_p{
		font-size:14px;
	}

	#contact{
		padding:52px 33px;
		background: #ededed;
	}
	.contact-info{
		display: grid;
		grid-template-columns: 1fr 2fr;
	}
	.contact-details .tn-atom{
		padding:0;
		margin-bottom: 24px;
		text-align: left;
	}
	.contact-details p{
		max-width: 17rem;
		margin-bottom: 12px;
	}
	.contact-info .google-maps{
		box-sizing: border-box;
		padding:20px;
	}
	.contact-info .google-maps iframe{
		border:none;
	}
	.social-links{
		margin: 24px 0 0 0;
	}
	.social-links a{
		margin: 0 10px;
	}
	.copyright{
		width:100%;
		background: black;
		color:white;
		text-align: center;
		padding:32px 0;
	}
	#menu{
		position: fixed;
		top:0;
		left:-320px;
		display: flex;
		color:#000000;
		width:320px;
		height:100vh;
		justify-content: center;
		background: #ffffff;
		z-index: 7;
		transition: 0.5s;
		font-weight: 600;
		font-size: 1rem;
	}
	#menu.visible{
		translate: 320px 0;
		transition: 0.5s;
	}
	#menu ul{
		width:inherit;
		padding-top: 4rem;
		height:50%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	#menu li{
		margin:1.5rem 0;
		list-style: none;
		text-align: center;
	}
	#menu.visible ul li a {
		text-decoration: none;
		width:100%;
		color: #000000;
		font-size: 1rem;
		font-weight: 600;
		font-family: 'Roboto';
		letter-spacing: 0.5px;
		text-align: center;
		padding: 0.2rem 0;
	}
	a.close{
		font-size: 1rem;
		text-decoration: none;
		border: none;
		color: #000000;
		cursor: pointer;
		height: 64px;
		line-height: 3.25em;
		padding-right: 1.25em;
		position: absolute;
		right: 0;
		text-align: right;
		top: 0;
		width: 64px;
		background-image: url(/images/xmark-solid.svg);
		background-size: 48px 48px;
		background-repeat: no-repeat;
		background-position-x: center;
		background-position-y: center;
	}
	#menu .close:before {
		text-align: center;
		display: block;
		width:128px;
		height: 128px;
		color:white;
		font-family: FontAwesome;
		text-transform: none !important;
	}
	#navPhoneMenu{
		display: none;
	}
	#langs{
		display: none;
	}
}
@media (min-width:480px) and (max-width: 768px) {
	#three{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		height:fit-content;
		min-height: 100vh;
	}
	.block_flex{
		align-items: center;
		height:fit-content;
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		padding:20px;
	}
	.block_three{
		display: flex;
		padding: 0 50px;
		width:80vw;
		height:fit-content;
		margin-bottom: 5vh;
	}
	.block_three .text-block{
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
		width:100%;
		height:fit-content;
		text-align: center;
	}
	.block_three .text-block .big_p{
		font-size: 20px;
		text-align: center;
	}

	.block_three .text-block ul .three_p{
		font-size: 16px;
	}

	#one{
		display: flex;
		flex-direction: column;
		height:fit-content;
		margin-bottom: 15vh;
	}
	#one .inner.flex.flex-3{
		display: flex;
		height:fit-content;
		justify-content: center;
		padding:20px;
	}
	#one .inner.flex.flex-3 .flex-container{
		display: flex;
		width:85vw;
		height:fit-content;
		flex-direction: column;
		align-items: center;
	}
	#one .flex-item{
		height:270px;
		margin:4px;
		background-color: #ededed;
		padding:30px;	
		width:55vw;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#one .flex-item .content{
		width:100%;
		height:fit-content;
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		margin-top:1rem;
		text-align: center;
	}

	#contact{
		padding:52px 33px;
		background: #ededed;
	}
	.contact-info{
		display: grid;
		grid-template-columns: 1fr 2fr;
	}
	.contact-details .tn-atom{
		padding:0;
		margin-bottom: 24px;
		text-align: left;
	}
	.contact-details p{
		max-width: 17rem;
		margin-bottom: 12px;
	}
	.contact-info .google-maps{
		box-sizing: border-box;
		padding:20px;
	}
	.contact-info .google-maps iframe{
		border:none;
	}
	.social-links{
		margin: 24px 0 0 0;
	}
	.social-links a{
		margin: 0 10px;
	}
	.copyright{
		width:100%;
		background: black;
		color:white;
		text-align: center;
		padding:32px 0;
	}
	#menu{
		position: fixed;
		top:0;
		left:-320px;
		display: flex;
		color:#000000;
		width:320px;
		height:100vh;
		justify-content: center;
		background: #ffffff;
		z-index: 7;
		transition: 0.5s;
		font-weight: 600;
		font-size: 1rem;
	}
	#menu.visible{
		translate: 320px 0;
		transition: 0.5s;
	}
	#menu ul{
		width:inherit;
		padding-top: 4rem;
		height:50%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	#menu li{
		margin:1.5rem 0;
		list-style: none;
		text-align: center;
	}
	#menu.visible ul li a {
		text-decoration: none;
		width:100%;
		color: #000000;
		font-size: 1rem;
		font-weight: 600;
		font-family: 'Roboto';
		letter-spacing: 0.5px;
		text-align: center;
		padding: 0.2rem 0;
	}
	a.close{
		font-size: 1rem;
		text-decoration: none;
		border: none;
		color: #000000;
		cursor: pointer;
		height: 64px;
		line-height: 3.25em;
		padding-right: 1.25em;
		position: absolute;
		right: 0;
		text-align: right;
		top: 0;
		width: 64px;
		background-image: url(/images/xmark-solid.svg);
		background-size: 48px 48px;
		background-repeat: no-repeat;
		background-position-x: center;
		background-position-y: center;
	}
	#menu .close:before {
		text-align: center;
		display: block;
		width:128px;
		height: 128px;
		color:white;
		font-family: FontAwesome;
		text-transform: none !important;
	}
	a#ru,
	a#en,
	a#uk,
	a#navPhone{
		display: none;
	}
	#navPhoneMenu{
		display: contents;
	}
	#langs{
		display: contents;
		width:100%;
		display: flex;
		justify-content: space-around;
	}
}
@media screen and (max-width: 480px) {
	#header{
		background-color:rgb(237 237 237);
		position: fixed;
		display: flex;
		align-items: center;
		width: 100%;
		height:80px;
		justify-content: space-around;
	}
	#header div{
		height: 80px;
		display: flex;
		align-items: center;
	}
	#header a img{
		height: 60px;
		width:260px;
	}
	#three{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		height:fit-content;
		min-height: 100vh;
	}
	.block_flex{
		align-items: center;
		height:fit-content;
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		padding:20px;
	}
	.block_three{
		display: flex;
		padding: 0 50px;
		width:80vw;
		height:fit-content;
		margin-bottom: 5vh;
	}
	.block_three .text-block{
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
		width:100%;
		height:fit-content;
		text-align: center;
	}
	.block_three .text-block .big_p{
		font-size: 20px;
		text-align: center;
	}

	.block_three .text-block ul .three_p{
		font-size: 16px;
	}

	#one{
		display: flex;
		flex-direction: column;
		height:fit-content;
		margin-bottom: 10vh;
	}
	#one .inner.flex.flex-3{
		display: flex;
		height:fit-content;
		justify-content: center;
		padding:20px;
	}
	#one .inner.flex.flex-3 .flex-container{
		display: flex;
		width:85vw;
		height:fit-content;
		flex-direction: column;
		align-items: center;
	}
	#one .flex-item{
		height:270px;
		margin:4px;
		background-color: #ededed;
		padding:30px;	
		width:55vw;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#one .flex-item .content{
		width:100%;
		height:fit-content;
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		margin-top:1rem;
		text-align: center;
	}

	#menu{
		position: fixed;
		top:0;
		left:-320px;
		display: flex;
		color:#000000;
		width:320px;
		height:100vh;
		justify-content: center;
		background: #ffffff;
		z-index: 7;
		transition: 0.5s;
		font-weight: 600;
		font-size: 1rem;
	}
	#menu.visible{
		translate: 320px 0;
		transition: 0.5s;
	}
	#menu ul{
		width:inherit;
		padding-top: 4rem;
		height:50%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	#menu li{
		margin:1.5rem 0;
		list-style: none;
		text-align: center;
	}
	#menu.visible ul li a {
		text-decoration: none;
		width:100%;
		color: #000000;
		font-size: 0.8rem;
		font-weight: 600;
		font-family: 'Roboto';
		letter-spacing: 0.5px;
		text-align: center;
		padding: 0.2rem 0;
	}
	a.close{
		font-size: 1rem;
		text-decoration: none;
		border: none;
		color: #000000;
		cursor: pointer;
		height: 64px;
		line-height: 3.25em;
		padding-right: 1.25em;
		position: absolute;
		right: 0;
		text-align: right;
		top: 0;
		width: 64px;
		background-image: url(/images/xmark-solid.svg);
		background-size: 48px 48px;
		background-repeat: no-repeat;
		background-position-x: center;
		background-position-y: center;
	}
	#menu .close:before {
		text-align: center;
		display: block;
		width: 64px;
		height: 64px;
		color:white;
		font-family: FontAwesome;
		text-transform: none !important;
	}
	a#ru,
	a#en,
	a#uk,
	a#navPhone{
		display: none;
	}
	#navPhoneMenu{
		display: contents;
	}
	#langs{
		display: contents;
		width:100%;
		display: flex;
		justify-content: space-around;
	}

	#contact{
		padding:52px 33px;
		background: #ededed;
	}
	.contact-info{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.contact-details .tn-atom{
		text-align: center;
		padding:0;
		margin-bottom: 24px;
	}
	.contact-details p{
		text-align: center;
		max-width: 17rem;
		margin-bottom: 12px;
	}
	.contact-info .google-maps{
		box-sizing: border-box;
		padding:20px;
	}
	.contact-info .google-maps iframe{
		border:none;
	}
	.social-links{
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 24px 0 0 0;
	}
	.social-links a{
		margin: 0 10px;
	}
	.copyright{
		width:100%;
		background: black;
		color:white;
		text-align: center;
		padding:32px 0;
	}		

	
}