/*request-form-windows*/

.wrapper {
    display: none;
    top: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    z-index: 1000;
}
.request-window {
    margin: auto;
    margin-top: 160px;
	padding-bottom: 10px;
    width: 800px;
    background: linear-gradient(270deg, #203A78 0%, #295197 100%);
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.request-window > div {
	margin: 10px;
	width: 370px;
	display: inline-block;
	vertical-align: top;
}
.request-window > .image > img {
	margin-top: 40px;
}
.close-window {
    padding: 0;
	float: right;
}
.request-window > .close-window-mobile {
	display: none;
}
.close-window > img, .close-window-mobile > img {
    width: 20px;
    cursor: pointer;
}
.send-data > h4 {
	margin-top: 40px;
    font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	font-size: 30px;
	line-height: 120%;
	color: #FFFFFF;
}
.send-data > p {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 200%;
	color: #FFFFFF;
}
.send-data > form {
	margin: 20px 0 0;
	width: 320px;
}

form > #send {
	padding-top: 17px;
	padding-bottom: 15px;
	background: transparent; 
    color: #FB581B;
    font-family: 'Open Sans';
    font-style: normal;
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	text-transform: uppercase;
    border: 1px solid #FB581B;
	outline: none;
}

form > #send:hover {
    background: #FB581B;
	color: #203A78;
    cursor: pointer;
}


/*request-form*/

form {
	margin: 30px auto 0;
	width: 320px;
}
form input {
	margin: 0;
	margin-bottom: 30px;
	padding: 0;
	padding-bottom: 5px;
	border: none;
	background: transparent; 
	border-bottom: 1px solid #fff; 
	color: #fff;
	width: 100%;
	outline: none;
	box-sizing: none;
	font-family: Inter;
	font-size: 15px;
	font-weight: 400;
}

form input::-webkit-input-placeholder {
    color: #98ABCD; 
	font-size: 12px;
   } 
form input::-moz-placeholder {
    color: #98ABCD;
	font-size: 12px;
   }

form > div.checkbox {
	position: relative;
}
form > div.checkbox > input {
	position: absolute;
	z-index: -1;
	opacity: 0;
	margin: 10px 0 0 7px;
}
form > div.checkbox > input + label {
	position: relative;
	padding: 0 0 0 35px;
	cursor: pointer;
	color: #fff;
	font-family: Inter;
	font-size: 12px;
	font-weight: 400;

}
form > div.checkbox > input + label:before {
	content: '';
	position: absolute;
	top: -2px;
	left: 0;
	width: 24px;
    height: 24px;
	border: 1px solid #CDD1DA;
	
}
form > div.checkbox > input + label:after {
	content: url(/images/v.svg);
	position: absolute;
	top: 1px;
    left: 5px;
	opacity: 0;
	transition: .2s;
}
form > div.checkbox > input:checked + label:after {
	opacity: 1;
}
form > div.checkbox > input:focus + label:before {
	
}
form > div.checkbox > input + label > p {
	margin: 0;
	padding: 0;
	width: 290px;
	position: absolute;
    top: -5px;
    left: 40px;
}

form > p.error {
	display: none;
	margin-top: 20px;
	font-family: 'Inter'; 
	font-weight: 400; 
	font-size: 12px; 
	color: #FB581B;
}
#send-button, #send {
	margin-top: 30px;
}

#send-button {
    
}

/*Carousel*/

.carousel-2 .owl-item {
    padding: 10px 0 30px 0;
}
.carousel-2 .owl-pic  {
    margin: 40px 0;
    transition: all 0.4s ease;
    height: 240px;
	background: #203A78;
}
.carousel-2 .owl-item.center .owl-pic {
    opacity: 1;
    margin: 0 0 0 -15%;
    width: 130%;
    height: 320px;
	box-shadow: 0 0 6px rgba(140,140,140,1);
}
.carousel-2 .owl-item.center + .owl-item {
    position: relative;
    z-index: -1;
}
.carousel-2 .owl-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: 0.3s opacity ease, 0.3s transform ease;
	opacity: 0.6;
}
.carousel-2 .owl-item .owl-pic:hover img,
.carousel-2 .owl-item.center .owl-pic img {
    opacity: 1;
}
.carousel-2 .owl-nav .owl-prev,
.carousel-2 .owl-nav .owl-next {
    position: absolute;
    cursor: pointer;
    font-size: 60px!important;
    color: #FFF!important;
    top: 0;
    height: 100%;
    width: 45px;
    margin: 0;
    padding: 0;
	outline: none;
}
.carousel-2 .owl-nav .owl-prev:hover,
.carousel-2 .owl-nav .owl-next:hover {
    color: #FB581B!important;
}
.carousel-2 .owl-nav .owl-prev,
.carousel-2 .owl-nav .owl-prev:hover {
    left: 0;
}
.carousel-2 .owl-nav .owl-next,
.carousel-2 .owl-nav .owl-next:hover {
    right: 0;
}

@media (max-width: 1000px) {
   
    
}
@media (max-width: 786px) {
	.wrapper {
        overflow-y: scroll;
    }
	.request-window {
		width: 100%;
		padding: 20px 10px 50px;
	}
	.request-window > div {
		margin: 0;
		display: block;
		width: 100%;
	}
	.request-window > .image {
		margin-top: 10px;
	}
	.request-window > .image > img {
		margin: 0;
	}
	.request-window > div.send-data {
		margin-top: 40px;
	}
	.close-window {
		display: none;
	}
	.request-window > div.close-window-mobile {
		display: block;
		text-align: right;
	}
	.send-data > form {
		margin: 30px auto 0;
	}
	.request-window h4, p {
		text-align: center;
	}
	form > div.checkbox > input + label > p, form > p.error {
		text-align: left;
	}
}