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

header .uk-navbar-nav > li > a {
    color: #211539;
}

header .uk-navbar-nav > li > a {
    color: #211539!important;
}

header .lang-btn {
    color: #211539!important;
}

header .lang-btn i {
    border-top-color: #211539!important;
}

.hero-section .hero-image {
    max-width: 480px;
    position: relative;
    bottom: -140px;
    transform: rotate(1deg);
}



#req-form-section {
    padding: 32px 32px;
    border-radius: 16px;
    background-color: #fff;
}

#req-form-section .iti__selected-dial-code, #req-form-section .iti__country-name {
    color: #000!important;
}

#req-form-section h4 {
    color: #171717;
}

#req-form-section form {
    padding: 0;
}

#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: #B7150D;
	transition: all 0.35s ease;
}

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

@media (max-width: 767px) {
    #req-form-section {
        margin-top: 28px;
        margin-left: 0;
    }

    .hero-section .hero-image {
        max-width: 340px;
        position: relative;
        bottom: -40px;
        transform: rotate(0deg);
    }
    
    .hero-section .gb-shape.gb-shape-1 {
        display: none;
    }
}


 /* User Steps */

.steps-section {
    padding: 60px 20px;
    text-align: center;
}

.steps-section h2 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step {
    flex: 1;
    text-align: left;
    position: relative;
    padding: 0 15px;
}

.step-number {
    font-size: 64px;
    font-weight: bold;
    color: #00f69c;
    margin-bottom: 10px;
    line-height: 60%;
}

.dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    display: block;
    position: relative;
    margin-left: 10px;
    margin-top: 20px;
}

.step::after {
    content: "";
    position: absolute;
    top: 64px;
    left: 10%;
    width: 90%;
    height: 2px;
    background: #8e4ecb;
    z-index: -1;
}

.step:last-child::after {
    display: none;
}

.step h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 10px;
}

.step p {
    font-size: 16px;
    color: #e6e6e6;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 15px;
    }

    .step::after,
    .dot {
        display: none;
    }
    
}

/*End User Steps*/



