footer{
	background-color:var(--second-blue) ;
	position: relative;
}
.nextlevel-section{
	padding: 100px 15px;
}
.nextlevel-content{
	text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 25px;
}
.nextlevel-img{
	margin-bottom: 30px;
	max-width: 173px;
}
.footer-title{
	color: #fff;
	font-family: fontBold;
	font-size: 45px;
	text-align: right;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.footer-title strong{
	font-weight: 400;
	color: var(--pink);
}
.footer-text{
	text-align: right;
	color: #fff;
	font-size: 20px;
	max-width: 640px;
}

.custom-form{
	max-width: 600px;
	width: 44%;

}
.custom-form label{
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
}

.custom-form input ,.custom-form textarea{
	background-color: #003C89;
	min-height: 60px;
	border-radius: 0;
	border: none;
	resize: none;
	margin-bottom: 15px;
	color: #fff;
}
.custom-form textarea{
	min-height: 90px;
}

#minamount ,#maxamount{
	width: 100vw;
	max-width: 70px;
	max-height: 30px;
	min-height: 30px;
	background-color: #fff;
	border: 1px solid !important;
	border-color: var(--pink) !important;
	color: var(--dark-blue) !important;
	font-size: 11px !important;
	position: absolute;
	top: 20px;
	left: 50%;
    transform: translateX(-50%);
}

.minibox:before{
	content: "";
	position: absolute;
	top: calc(100% + 3px) ;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	pointer-events: none;
	width: 0;
	height: 0;
	border-width: 0 7px 7px 7px;
	border-color: transparent transparent var(--pink); transparent;
	border-style: solid;
}
.maxbox:before{
	content: "";
	position: absolute;
	top: calc(100% + 3px) ;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	pointer-events: none;
	width: 0;
	height: 0;
	border-width: 0 7px 7px 7px;
	border-color: transparent transparent var(--pink); transparent;
	border-style: solid;
}


#slider-range{
	position: relative;
	height: 5px !important;
	margin-bottom: 70px;
}

.ui-slider{
	background: #003C89 !important;
}

.ui-slider-handle{
	width: 16px !important;
	height: 16px !important;
	border-radius: 50% !important;
	border: 3px solid !important;
	border-color: var(--pink) !important;
	background: #fff !important;
}
.ui-state-active{
	border-radius: 50% !important;
	background: #fff !important;
	border-radius: 50% !important;
	border-color: var(--pink) !important;
}
.ui-state-focus{
	border-radius: 50% !important;
	color: var(--pink) !important;
}

.ui-state-disabled:active{
	border-radius: 50% !important;
}

.ui-widget-header{
	background: var(--pink) !important;
}

.form-button-content{
    justify-content: flex-end;
    padding: 0 15px;
}

#form-button{
	text-transform: uppercase;
	background-color: var(--pink);
	display: flex;
	align-items: center;
	color: #fff;
	transition: background-color 320ms ease;
	max-width: 275px;
	height: 60px;
	width: 100%;
	text-align: center;
	justify-content: center;
	border: none;
}

#form-button:hover{
	background-color: #6b0150;
}

.footer-last-section{
	background-color: #fff;
}

.footer-last-content{
	padding: 55px 15px 40px;
	text-align: center;
}

.footer-paragraph{
	font-size: 16px;
	font-weight: 700;
	color: var(--second-blue);
	margin-bottom: 10px;
}


.modal-section{
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  z-index: 0;
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;

}

.custom-modal{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 500px;
	width: 100%;
	background: #fff;
	height: 300px;
	border-radius: 10px;
	color: var(--dark-blue);
	display: flex;
    flex-direction: column;
}

.custom-modal-active{
	opacity: 1;
	z-index: 5;
	pointer-events: all;
}

.custom-modal svg{
	fill: var(--dark-blue);
	cursor: pointer;
	transition: fill 320ms ease;
}

.custom-modal p{
	margin: auto;
  font-size: 23px;
  text-align: center;
}

.custom-modal svg:hover{
	fill: var(--light-blue);
}

@media only screen and (max-width: 1200px){
	.range-section{
		/*max-width: 450px;*/
	}
	#minamount{
		left: 50%;
    	transform: translateX(calc(-50% + 27px));
	}
	#maxamount{
		left: 50%;
    	transform: translateX(calc(-50% + -27px));
	}
}

@media only screen and (max-width: 1024px){
	.footer-title{
		font-size: 35px;
	}
	.footer-text{
		font-size: 20px;
	}
	.footer-paragraph{
		font-size: 18px;
	}

}

@media only screen and (max-width: 768px){
	.nextlevel-content{
		justify-content: flex-start;
	}
	.nextlevel-img{
		max-width: 130px;
	}
	.footer-title{
		font-size: 28px;
	}
	.footer-text{
		font-size: 18px;
	}
	.footer-last-content{
	    padding: 35px 15px 20px;
	}
	.footer-paragraph{
		font-size: 14px;
	}
	.footer-email{
		font-size: 14px;
	}
		.custom-row{
		flex-direction: column;
	}
}

@media only screen and (max-width: 580px){
	.nextlevel-section{
		padding: 50px 15px;
	}
	.nextlevel-section{
		flex-direction: column;
	}
	.nextlevel-content, .custom-form{
		width: 100%;

	}
	.nextlevel-content{
		align-items: center;
		padding-right: 0px;
	}
	.footer-title, .footer-text{
		text-align: center;
	}
	.footer-text{
		margin-bottom: 20px;
	}

	.form-button-content{
    	justify-content: center;
	}
}