:root{
	--purple: #270B78;
}
*{
	box-sizing: border-box;
}
a{
	cursor: pointer;
}
body{
	margin: 0;
	padding: 0;
	font-family: "montserrat"; 
	padding-top: 5vw;
	background: #EAE8F3;
}
@font-face {
	font-family: "montserrat-light"; 
	src: url("../fonts/montserrat/Montserrat-Light.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "montserrat"; 
	src: url("../fonts/montserrat/Montserrat-Medium.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "montserrat-bold"; 
	src: url("../fonts/montserrat/Montserrat-Bold.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "SourceSansPro"; 
	src: url("../fonts/Source_Sans_Pro/SourceSansPro-Light.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "SourceSansPro-regular"; 
	src: url("../fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "SofiaPro"; 
	src: url("../fonts/SofiaProMedium.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
.container{
	padding: 0 17.5vw;
}
header.container{
	margin: 0;
	background: #fff;
	position: fixed;
	z-index: 20;
	padding-bottom: 2vw;
	width: 100%;
	left: 0;
	top: 0;
	transition: .5s;
	box-shadow: 0px 0px 20px -15px;
}

header .top-section{
	width: 100%;
	height: 4vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: .5s;
}
header .top-section .logo{
	width: 9vw;
	transition: .5s;
}
header .top-section .logo img{
	width: 100%;
}
header .top-section .contacts{
	padding: 1vw .7vw;
	background: var(--purple);
	border-radius: .3vw;
	display: flex;
	transition: .5s;
}
header .top-section .contacts .soc-netw{
	width: 2vw;
	height: 2vw;
	display: flex;
	align-items: center;
	margin-right: 1.1vw;
	transition: .3s;
}
header.active .top-section{
	height: 4.3vw;
}
header.active{
	padding: 1vw 2vw;
}
header.active nav{
	width: 60%;
	margin-left: 15%;
	height: 4.3vw;
	margin-top: -4.3vw;
}
header.active nav>a,
header.active .drop-down a{
	font-size: .8vw;
}
header.active nav .drop-down>a:before{
	width: .3vw;
	height: .3vw;
	right: -.8vw;
}
header .top-section .contacts .soc-netw svg{
	width: 100%;
}
header .top-section .contacts .phone{
	display: flex;
	align-items: center;
	font-size: .8vw;
	text-decoration: none;
	background: #fff;
	padding: .2vw .6vw;
	border-radius: .3vw;
	color: var(--purple);
	transition: .3s;
}
header .top-section .contacts .phone img{
	width: 1vw;
	margin-right: .4vw;
}
header .top-section .contacts .soc-netw svg path{
	transition: .3s;
}
header .top-section .contacts .soc-netw:hover svg path{
	fill: #F7C51E;
}
header .top-section .contacts .phone:hover{
	background: #F7C51E;
}
header nav{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 1vw;
	height: 1.8vw;
	width: 120%;
	margin-left: -10%;
	transition: .5s;
}
header nav>a,
header nav .drop-down a{
	font-size: 1.1vw;
	line-height: 1.5;
	color: var(--purple);
	transition: .3s;
	text-decoration: none;
	position: relative;
}

header nav .drop-down{
	position: relative;
	z-index: 10;
	display: flex;
}
header nav .drop-down ul{
	position: absolute;
	margin: 0;
	left: -2vw;
	top: 1.2vw;
	padding: 2vw 0;
	list-style: none;
	width: 20vw;
	border-radius: .3vw;
	background: #fff;
	display: none;
}
header nav .drop-down:hover ul{
	display: block;
}
header nav .drop-down:hover ul li{
	border-bottom: 1px solid #eee;
}
header nav .drop-down:hover>a{
	color: #F7C51E;
}
header nav .drop-down ul a{
	display: block;
	padding: .5vw 2vw;
}
header nav .drop-down ul a:hover{
	background: #f7f7f7;
}
header nav .drop-down ul li:last-child a{
	margin-bottom: 0;
}
header nav a:hover{
	color: #F7C51E;
}
header nav .drop-down>a:before{
	position: absolute;
	content: '';
	width: .5vw;
	height: .5vw;
	right: -1.2vw;
	top: .2vw;
	transform: rotate(-45deg);
	border-radius: .1vw;
	border-left: 2px solid var(--purple);
	border-bottom: 2px solid var(--purple);
	transition: .3s;
}

header nav .drop-down>a:hover:before{
	top: .5vw;
	border-left: 2px solid #F7C51E;
	border-bottom: 2px solid #F7C51E;
}
header nav .drop-down:hover>a:before{
	top: .5vw;
	border-left: 2px solid #F7C51E;
	border-bottom: 2px solid #F7C51E;
}
.top-main-img{
	width: 100%;
	margin-top: 3.3vw;
}
.contact-us-title{
	margin: 0;
	margin-top: 4.8vw;
	text-align: center;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #F7C51E;
	font-size: 1vw;
	font-family: "SourceSansPro"; 
}
.contact-us-big-title{
	color: #F7C51E;
	text-align: center;
	margin: 0;
	font-size: 2.2vw;
	font-family: "montserrat-bold"; 
	margin-top: .6vw;
}
.bottom-form{
	margin: 0 auto;
	padding: 6vw 7vw;
	box-shadow: 0px -24px 48px rgba(0, 0, 0, 0.04);
	border-radius: .3vw;
	width: 34vw;
	margin-top: 5.4vw;
	margin-bottom: -16.8vw;
	background: #fff;
	z-index: 5;
	position: relative;
}
.bottom-form input,
.bottom-form textarea{
	width: 100%;
	margin-bottom: 1.35vw;
	border-radius: .3vw;
	border: 1px solid #F7C51E;
	text-transform: uppercase;
	font-size: 1vw;
	height: 2.5vw;
	padding: 0 .7vw;
	font-family: "SourceSansPro"; 
	outline: none;
	color: var(--purple);
}
.bottom-form textarea{
	padding: .7vw;
	min-width: 100%;
	max-width: 100%;
	min-height: 5.5vw;
}
.bottom-form input::-webkit-input-placeholder,
.bottom-form textarea::-webkit-input-placeholder{
	color: #000;
}
.bottom-form .send-row{
	display: flex;
	justify-content: space-between;
	margin-bottom: 1vw;
}
.bottom-form button{
	background: #F7C51E;
	color: #000;
	font-size: 1vw;
	line-height: 1.5;
	border-radius: .3vw;
	font-family: "SofiaPro"; 
	padding: .5vw .7vw;
	border: 2px solid #F7C51E;
	cursor: pointer;
	transition: .3s;
}
.bottom-form button:hover{
	background: #fff;
}
.bottom-form .contact img{
	width: 1.7vw;
	margin-right: 1.1vw
}
.bottom-form .contact{
	font-size: 1.1vw;
	color: #000;
	font-family: "SourceSansPro"; 
	text-decoration: none;
	display: flex;
	align-items: center;
}
footer.container{
	background: var(--purple);
	padding-top: 1.4vw;
}
.footer-cont{
	display: flex;
	justify-content: space-between;
	align-items: center;
	
}
footer .info{
	width: 14vw;
}
footer .info .soc-netws{
	display: flex;
	margin-top: 1vw;
}
footer .info .soc-netw svg{
	width: 100%;
}
footer .info .soc-netw svg path{
	transition: .3s;
}
footer .info .soc-netw:hover svg path{
	fill: #F7C51E;
}
footer .info .soc-netws a{
	width: 2.7vw;
	margin-right: 1vw;
}
footer .info .soc-netws a img{
	width: 100%;
}
footer p{
	margin: 0;
	font-size: .85vw;
	color: #F7C51E;
	font-family: "SourceSansPro"; 
	font-weight: 600;
	line-height: 1.5;
	margin-top: .6vw;
}
footer nav{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
footer nav a{
	color: #F7C51E;
	font-size: .85vw;
	text-decoration: none;
	margin-bottom: .6vw;
	line-height: 2;
	font-weight: 600;
	font-family: "SourceSansPro"; 
	position: relative;
}
footer nav a:before{
	top: 110%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #F7C51E;
	position: absolute;
	content: '';
	transition: .3s;
	transform: scaleX(0);
	transform-origin: left;
	border-radius: 2px;
}
footer nav a:hover:before{
	transform: scaleX(1);
}
footer .bottom-section{
	padding: 1.8vw 0;
	margin-top: 0;
	text-align: center;
	width: 100%;
}
.text-block{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 3vw;
}
.text-block.reverse{
	flex-direction: row-reverse;
}
.text-block .img{
	width: 30vw;
}
.text-block .img.size-1{
	width: 35vw;
}
.text-block .info{
	width: 30vw;
}
.main-title{
	font-size: 2.7vw;
	margin: 0;
	font-family: "montserrat-bold"; 
}
.main-text{
	margin: 0;
	font-family: "SourceSansPro"; 
	font-size: 1.2vw;
	margin-top: 1.5vw;
}
.main-text .bold-link{
	text-decoration: none;
	color: #000;
	font-family: 'montserrat';
}
.phone-btn{
	padding: .7vw;
	border: 1px solid #000000;
	border-radius: .3vw;
	font-size: 1.1vw;
	color: #000;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	margin-top: 1.5vw;
	position: relative;
	transition: .4s;
	overflow: hidden;
}
.phone-btn span{
	position: relative;
	z-index: 5;
}
.phone-btn img{
	width: 1.7vw;
	margin-right: .8vw;
	transition: .4s;
	position: relative;
	z-index: 5;
}
.phone-btn:before{
	right: 0;
	width: 0;
	height: 100%;
	position: absolute;
	z-index: 3;
	background: #000;
	transition: .5s;
	content: '';
}
.phone-btn:hover:before{
	left: 0;
	width: 100%;
}
.phone-btn:hover{
	color: #fff;
}
.phone-btn:hover img{
	filter: invert(100%);
}
.main-btn{
	padding: 1.1vw 2.5vw;
	border-radius: .3vw;
	font-size: 1vw;
	background: #F7C51E;
	border: 2px solid #F7C51E;
	transition: .4s;
	color: #000;
	text-decoration: none;
	display: inline-flex;
	position: relative;
}
.main-btn .hidden-input{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	outline: none;
}
.main-btn .hidden-input::-webkit-calendar-picker-indicator{
	width: 100%;
	height: 100%;
	margin: 0;
}
.main-btn:hover{
	background: #000;
	color: #F7C51E;
}
.burger{
	display: block;
}
.mt-0{
	margin-top: 0!important;
}
.mt-1{
	margin-top: 10.8vw;
}
.mt-2{
	margin-top: 7vw;
}
.mb-1{
	margin-bottom: 3vw;
}
span.main-text{
	font-size: 1vw;
	color: #fff;
	font-family: "montserrat";
}
body .mob-video{
	display: none;
}
.background-overlay{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 150;
	opacity: 0;
	display: none;
	transition: .4s;
}
.background-overlay.active{
	opacity: 1;
}
.overlay{
	position: fixed;
	width: 25vw;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	border-radius: .8vw;
	z-index: 170;
	background: #fff;
	padding: 3vw;
	opacity: 0;
	display: none;
	transition: .4s;
}
.overlay.active{
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}
.overlay form{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.overlay form input{
	width: 100%;
	height: 2vw;
	font-size: 1vw;
	border: none;
	border-bottom: 2px solid var(--purple);
	color: var(--purple);
	font-family: "montserrat-light"; 
	margin-bottom: 1.5vw;
	outline: none;
	background: none;
}
.overlay form input[type=date],
.overlay form input[type=time],
.overlay form input::-webkit-input-placeholder{
	color: #aaa;
}
.overlay form input[type=radio]{
	height: unset;
	width: unset;
	margin: 0;
	margin-right: .4vw;
}

.overlay form label{
	font-size: .8vw;
	margin-bottom: .3vw;
	color: var(--purple);
	margin: 0;
	width: 100%;
}
.overlay form button{
	cursor: pointer;
	margin-top: 1.5vw;
}
.overlay-btn{
	cursor: pointer;
}
.overlay .close{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 1vw;
	right: 1vw;
	width: 1vw;
	height: 1vw;
	cursor: pointer;
}
.overlay .close span{
	width: 1vw;
	height: 2px;
	background: var(--purple);
	border-radius: 2px;
	position: absolute;
	transition: .3s;
}
.overlay .close:hover span{
	background: #F7C51E;
}
.overlay .close span:nth-child(1){
	transform: rotate(45deg);
}
.overlay .close span:nth-child(2){
	transform: rotate(-45deg);
}
.overlay form label.formats{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 1vw;
}
.formats .format{
	margin-right: 1vw;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
@media (min-width: 1920px) {
	body{
		padding-top: 96px;
	}
	.container{
		padding: 0 336px;
		width: 1920px;
		margin: auto;
	}
	header.container{
		width: 1920px;
		left: 50%;
		padding-bottom: 39px;
		transform: translateX(-50%);
	}
	header.active .top-section{
		height: 83px;
	}
	header.active{
		padding: 19px 38px;
	}
	header.active nav{
		height: 83px;
		margin-top: -83px;
	}
	header.active nav>a,
	header.active .drop-down a{
		font-size: 15px;
	}
	header.active nav .drop-down>a:before{
		width: 6px;
		height: 6px;
		right: -15px;
	}
	header .top-section{
		height: 77px;
	}
	header .top-section .logo{
		width: 172px;
	}
	header .top-section .contacts{
		padding: 19px  14px;
		border-radius: 5px;
	}
	header .top-section .contacts .soc-netw{
		width: 39px;
		height: 39px;
		margin-right: 21px;
	}
	header .top-section .contacts .phone{
		font-size: 16px;
		padding: 4px 12px;
		border-radius: 5px;
	}
	header .top-section .contacts .phone img{
		width: 19px;
		margin-right: 8px;
	}
	header nav{
		margin-top: 19px;
		height: 35px;
	}
	header nav>a,
	header nav .drop-down a{
		font-size: 21px;
	}
	header nav .drop-down ul{
		left: -39px;
		top: 24px;
		padding: 39px 0;
		width: 384px;
		border-radius: 5px;
	}
	header nav .drop-down ul a{
		padding: 10px 39px;
	}
	header nav .drop-down>a:before{
		width: 10px;
		height: 10px;
		right: -23px;
		top: 4px;
		border-radius: 3px;
	}
	header nav .drop-down>a:hover:before{
		top: 10px;
	}
	header nav .drop-down:hover>a:before{
		top: 10px;
	}
	.top-main-img{
		width: 1920px;
		margin: auto;
		display: block;
		margin-top: 64px;
	}
	.contact-us-title{
		margin-top: 92px;
		font-size: 19px;
	}
	.contact-us-big-title{
		font-size: 42px;
		margin-top: 12px;
	}
	.bottom-form{
		padding: 115px 135px;
		border-radius: 5px;
		width: 652px;
		margin-top: 103px;
		margin-bottom: -322px;
	}
	.bottom-form input,
	.bottom-form textarea{
		margin-bottom: 26px;
		border-radius: 5px;
		font-size: 19px;
		height: 48px;
		padding: 0 14px;
	}
	.bottom-form textarea{
		padding: 14px;
		min-height: 105px;
	}
	.bottom-form .send-row{
		margin-bottom: 19px;
	}
	.bottom-form button{
		font-size: 19px;
		border-radius: 5px;
		padding: 10px 14px;
	}
	.bottom-form .contact img{
		width: 33px;
		margin-right: 21px;
	}
	.bottom-form .contact{
		font-size: 22px;
	}
	footer.container{
		padding-top: 27px;
	}
	footer .info{
		width: 270px;
	}
	footer .info .soc-netws{
		margin-top: 19px;
	}
	footer .info .soc-netws a{
		width: 52px;
		margin-right: 19px;
	}
	footer p{
		font-size: 17px;
		margin-top: 12px;
	}
	footer nav a{
		font-size: 17px;
		margin-bottom: 12px;
	}
	footer .bottom-section{
		padding: 35px 0;
	}
	.text-block{
		margin-top: 58px;
	}
	.text-block .img{
		width: 576px;
	}
	.text-block .img.size-1{
		width: 672px;
	}
	.text-block .info{
		width: 576px;
	}
	.main-title{
		font-size: 52px;
	}
	.main-text{
		font-size: 23px;
		margin-top: 29px;
	}
	.phone-btn{
		padding: 14px;
		border-radius: 5px;
		font-size: 21px;
		margin-top: 29px;
	}
	.phone-btn img{
		width: 32px;
		margin-right: 16px;
	}
	.main-btn{
		padding: 21px 48px;
		border-radius: 5px;
		font-size: 19px;
	}
	.mt-1{
		margin-top: 200px;
	}
	.mt-2{
		margin-top: 130px;
	}
	.mb-1{
		margin-bottom: 58px;
	}
	span.main-text{
		font-size: 18px;
	}
	.overlay{
		width: 480px;
		border-radius: 15px;
		padding: 58px;
	}
	.overlay form input{
		height: 38px;
		font-size: 19px;
		margin-bottom: 28px;
	}
	.overlay form label{
		font-size: 16px;
		margin-bottom: 6px;
	}
	.overlay form button{
		margin-top: 28px;
	}
	.overlay form label.formats{
		margin-bottom: 19px;
	}
	.formats .format{
		margin-right: 19px;
	}
	.overlay form input[type=radio]{
		margin-right: 8px;
	}
}
@media (max-width: 500px) {
	body{
		padding-top: 13vw;
	}
	body .desk-video{
		display: none;
	}
	body .mob-video{
		display: block;
	}
	.container{
		padding: 0 8vw;
	}
	.top-main-img{
		height: 115vw;
		object-fit: cover;
		object-position: 0 -5vw;
	}
	header .top-section{
		height: unset;
	}
	header.active .top-section{
		height: unset;
	}
	header.active{
		padding: 0 8vw;
	}
	header.active nav{
		height: unset;
		margin-top: 2vw;
		width: 100%;
		margin-left: 0;
	}
	header.active nav>a,
	header.active .drop-down a{
		font-size: 3.5vw;
	}
	.burger{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 8vw;
		height: 6vw;
		z-index: 10;
		order: 3;
	}
	.burger span{
		width: 100%;
		height: 3px;
		border-radius: 10px;
		background: var(--purple);
		position: relative;
		transition: .4s;
		top: 0;
	}
	.burger.active span:nth-child(2){
		opacity: 0;
	}
	.burger.active span:nth-child(1){
		transform: rotate(45deg);
		top: calc(3vw - 1.5px);
	}
	.burger.active span:nth-child(3){
		transform: rotate(-45deg);
		top: calc(-3vw + 1.5px);
	}
	header.container{
		max-height: 100vh;
		padding-bottom: 0!important;
		overflow-y: scroll;
	}
	header .top-section{
		flex-wrap: wrap;
		justify-content: space-between;
		margin-top: 2vw;
	}
	header .top-section .contacts{
		margin-top: 0;
		padding: 0;
		border-radius: 1vw;
		justify-content: space-between;
		background: none;
		order: 2;
	}
	header.active .top-section .contacts{
		margin-top: 0;
		transform: unset;
		
	}
	header .top-section .contacts .soc-netw{
		display: none;
	}
	header .top-section .contacts .phone{
		font-size: 3.5vw;
		padding: 2vw 5vw;
		border-radius: 1vw;
	}
	header .top-section .contacts .phone img{
		width: 4vw;
		margin-right: 3vw;
	}
	header .top-section .logo{
		width: 34vw;
		transform: scale(1)!important;
	}
	header nav{
		height: unset;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		transition: .5s;
		overflow: hidden;
		width: 100%;
		margin-left: 0;
		position: absolute;
		bottom: 100%;
	}
	header nav>a, header nav .drop-down a{
		font-size: 3.5vw;
		margin-top: 5vw;
	}
	header nav .drop-down{
		margin-top: 5vw;
		flex-direction: column;
	}
	header nav .drop-down:hover>a{
		color: var(--purple);
	}
	header nav .drop-down ul{
		display: block;
		position: relative;
		width: 100%;
		padding: 1vw 0;
		padding-left: 3vw;
		margin-left: 4vw;
		border-left: 2px solid var(--purple);
		margin-top: 4vw;
	}
	header nav .drop-down ul li:first-child a{
		margin-top: 0;
	}
	header nav .drop-down a:before{
		content: unset;
	}
	.text-block,
	.text-block.reverse{
		flex-direction: column;
		margin-top: 10vw;
	}
	.text-block .img,
	.text-block .info{
		width: 100%!important;
	}
	.text-block .info{
		margin-top: 3vw;
	}
	.main-title{
		font-size: 5.5vw;
	}
	.main-text{
		margin-top: 2vw;
		font-size: 4.2vw;
	}
	.contact-us-title{
		font-size: 3.5vw;
	}
	.contact-us-big-title{
		font-size: 5vw;
	}
	.bottom-form{
		width: 80vw;
		margin-bottom: -10vw;
		border-radius: 1vw;
	}
	footer.container{
		padding-top: 15vw;
	}
	.bottom-form input, .bottom-form textarea{
		font-size: 3.5vw;
		height: 8vw;
		border-radius: 1vw;
		padding: 0 2vw;
		margin-bottom: 6vw;
	}
	.bottom-form textarea{
		min-height: 20vw;
		padding: 2vw;
	}
	.bottom-form .contact{
		font-size: 3.5vw;
	}
	.bottom-form button{
		font-size: 3.5vw;
		padding: 1vw 3vw;
		border-radius: 1vw;
	}
	.bottom-form .contact img{
		width: 4vw;
	}
	.bottom-form .send-row{
		margin-bottom: 6vw;
	}
	footer nav a{
		font-size: 3.5vw;
	}
	footer .info{
		width: 45%;
	}
	footer p{
		font-size: 3.5vw;
	}
	footer .info .soc-netws{
		margin-top: 3vw;
	}
	footer .info .soc-netws a{
		width: 8vw;
		margin-right: 3vw;
	}
	footer .bottom-section{
		font-size: 3vw;
		padding: 7vw 0;
	}
	span.main-text{
		font-size: 4vw;
	}
	.mb-1{
		margin-bottom: 13vw;
	}
	.overlay{
		width: 90vw;
		border-radius: 2vw;
		padding: 7vw;
	}
	.overlay form label{
		font-size: 3vw;
	}
	.overlay form input{
		height: 9vw;
		font-size: 3.5vw;
		margin-bottom: 6vw;
	}
	.overlay .close{
		top: 4vw;
		right: 4vw;
	}
	.overlay .close span{
		width: 4vw;
	}
	.overlay form label.formats{
		margin-bottom: 6vw;
	}
	.formats .format{
		margin-right: 3vw;
	}
	.overlay form input[type=radio]{
		margin-right: 1.4vw;
	}
}