header {
    background-color: #fff!important;
}

header .logo {
    color: #211539;
}

header .header-menu a {
    color: #211539!important;
}

header .language span {
    color: #211539!important;
}

header .language span i {
    border-top-color: #211539!important;
}

#section-hero {
    padding: 82px 0;
    background-color: #060B3E;
    background-image: url('../images/hero-bg-fr.webp');
    background-repeat: no-repeat;
    
}

#section-hero h1 {
    font-size: 52px;
    color: #fff;
    line-height: 62px;
    font-weight: 600;
}

#section-hero .hero-bottom-info.mob {
    display: none;
}

#req-form-section {
    padding: 32px 32px;
}

#req-form-section input[type="text"],
#req-form-section input[type="tel"],
#req-form-section input[type="email"] {
	background: #F4F3FB;
	border-color: #F4F3FB !important;
	padding: 10px 20px;
	transition: border-color .35s ease;
}

#req-form-section input[type="text"]::placeholder,
#req-form-section input[type="tel"]::placeholder,
#req-form-section input[type="email"]::placeholder {
	color: #9FA6A3;
}

#req-form-section input[type="text"]:focus,
#req-form-section input[type="tel"]:focus,
#req-form-section input[type="email"]:focus {
	border-color: #dddddd !important;
}

#req-form-section input[type="submit"] {
	width: 187px;
	height: 48px;
	margin: 10px auto 0 auto;
	border-radius: 36px;
	display: block;
	background-color: #276CF7;
	transition: all 0.35s ease;
}

#req-form-section input[type="submit"]:hover {
	background-color: #1149B9;
}


@media (max-width: 767px) {
    #section-hero {
        padding: 60px 0;
    }
    
    header .header-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    #req-form-section {
        margin-top: 28px;
    }
    
    #section-hero h1 {
        font-size: 32px;
        line-height: 38px;
    }
    
    #section-hero .hero-bottom-info:not(.mob) {
        display: none;
    }
    
    #section-hero .hero-bottom-info.mob {
        display: block;
    }
    
}


