@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}
html{
	font-size: 10px;
}
body.ifah_body {
    height: 100vh;

    background: #ababab;

}
.content_wrapper {
    height: 100%;
        display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
.form_content {
       padding-top: 3.2rem;
    padding-bottom: 3.2rem;
    background: url(./form-bg.png)no-repeat right bottom;
    background-size: 40%;


}
h1{
	font-size: 8rem;
	line-height: 1.2;
	color: #793e97;
	font-weight: 900;
	text-transform: uppercase;
	position: relative;
	margin-top: 7rem;
	margin-bottom: 7rem;
}
h1 strong{
	position: absolute;
    bottom: 100%;
    line-height: 1.2;
    background: #df8a09;
    padding: 8px;
    display: inline-block;
    left: 0;
    transform: rotate(-5deg);
    font-size: 4.8rem;
    color: #fff;
        margin-bottom: -4px;
}
.logo{
	display: inline-block;
	margin-bottom: 7rem;
	max-width: 200px;
}
p{
	font-size: 20px;
	line-height: 1.45;
	color: #211f20;
	font-weight: 500;
	max-width: 90rem;
	margin-bottom: 2.4rem;
}
p span{
	color: #1f3162;
}
h3{
	text-transform: capitalize;
}
.form_field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0 0 7rem;
    position: relative;
    background: #104c95;
}
.form_field:after{
	position: absolute;
	content: "";
	width: 1000%;
	background:#104c95;
	left: calc(100% - 1px);
	top: 0;
	height: 100%;
}
h2{
	font-size: 4.2rem;
    line-height: 1.2;
	color: #fff;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom:5rem;
}
form.main_form {
    width: 100%;
}
form.main_form input{
	height: 48px;
	max-height:48px;
	width: 100%;
	display:block;
	background: #fff;
	font-size: 16px;
	border-radius: 10px;
	color: #211f20;
}
.container-custom{
	width: 100%;
	max-width:90%;
	margin: 0 auto;
	height: 100%;
}
.form_wrapper {
    height: 100%;
}
textarea.text_message{
	display: block;
	width: 100%;
	text-align: left;
	padding: 10px;
	background: #5782b5;
	    border: 0;
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
}
textarea.text_message:focus-visible{
	outline: 0;
	border:0;
}
textarea::placeholder{
  color: #fff;
}
form.main_form input::placeholder {
 color: #104c95;
}
.sbmt_wrapper{
	text-align: right;
}
button.submit_btn{
display: inline-block;
    border: 0;
    border-radius: 10px;
    background: #fff;
    padding: 5px 16px;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.2;
        width: 170px;
    max-width: 170px;
}
button.submit_btn:hover{
	background: #5782b5;
	color: #fff;
}
h3{
	font-size: 2.5rem;
}
.w-80{
	max-width: 80%;
}
.w-62{
	max-width: 62%;
}

/*media query start here*/

@media screen and (max-width:1500px){
:root {
    font-size: 8px;
}
}
@media screen and (max-width:1199px){
:root {
    font-size: 6.5px;
}
.form_content {

    padding-right:16px;
}
.container-custom {

    max-width: 95%;

}
.form_field {
    padding-left: 16px;
   
}
}
@media screen and (max-width:991px){
.form_content {

    width: 100%;
}
.form_field {

    width: 100%;
    padding: 16px 16px;
}
.form_field:after {
content: none;
}
.col-md-6 {

    width: 100%;
    margin-bottom: 16px;
}
}