/*============================================
	Theme Name:  GET LOAN 10X FASTER

    Author: OG Web Solutions

    Author URI: https://www.ogwebsolutions.com/

    Version:  1.0
============================================*/


/*============================================
	Index
============================================

# Global Style

	##Google Font
	## Preloader Spinner
	## Back to top

# Homepage
	## Header Section 
	## Banner Section
	## Process Section 
	## Static section
    ## Choose us section
	## Testimonials
	## FAQ
	## Footer
	## Responsive

# Order page
# Thank you page
# Order Cancelled page
# Privacy and policy Page
# Error page

/*============================================
	#Global Style
============================================*/


/*----- Google font------ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200;300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    line-height: 1.2;
    color: #3c3c3c;
    background-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}


/* ----------headings----------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 60px;

}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 20px;
     color: #fff
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 18px;
}


/* ----------headings----------*/

a {
    text-decoration: none;
    outline: none;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

a:hover {
    text-decoration: none;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}


/* section padding */

.sectionPadding {
    padding-top: 90px;
    padding-bottom: 50px;
}

@media (max-width: 991.98px) {
    .sectionPadding {
        padding-top: 50px;
        padding-bottom: 0px;
    }
}

@media (max-width: 767.98px) {
    .sectionPadding {
        padding-top: 40px;
        padding-bottom: 80px;
    }
}

@media (max-width: 414px) {
    .sectionPadding {
        padding-top: 40px;
        padding-bottom: 20px;
    }
}


/*------other typography-------*/


/* -----container--------------*/

.container {
    max-width: 1170px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}


/* ## Preloader Spinner */

.preloadSpinner {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 99999;
}

.preloadSpinner::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
    background-color: #074884;
    border: 1px solid #f0f0f0;
    border-radius: 100%;
    animation: spinner 500ms infinite ease-in-out;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media screen and (max-width:767.98px) {
    .preloadSpinner::after {
        width: 50px;
        height: 50px;
        margin-top: -25px;
        margin-left: -25px;
    }
}


/* ## Back to top */

.backtotop {
    position: fixed;
    right: 15px;
    bottom: 15px;
    height: 40px;
    width: 40px;
    background-color: #f0f0f0;
    cursor: pointer;
    border: 2px solid #074884;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
    border-radius: 50%;
    opacity: 0.9;
    transition: opacity 200ms linear;
    display: none;
}

.backtotop::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -7px;
    margin-top: -4px;
    transform: rotate(-45deg);
    height: 0px;
    width: 0px;
    border-width: 3px 3px 0 0;
    border-style: solid;
    padding: 5px;
    border-color: #074884;
}

.backtotop:hover {
    opacity: 1;
    transition: opacity 200ms linear;
}


/*============================================
	# Homepage
============================================*/


/* -------header----------------- */

.header {
    padding: 10px 0 10px 0;
    background: #ffffff;
    z-index: 4;
    box-shadow: 0px 0px 6px #c9cac5;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
}

.header .logo img {
    width: 175px;
}

.top-call ul {
    display: block;
}

.top-call ul img {
    max-width: 20px;
}

.top-call ul li {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    padding-right: 10px;
}

.top-call ul li a {
    color: #3c3c3c;
}

.green {
    color: #1B7837;
}

.q-color {
    color: #1B7837;
}


/* Banner section start here */

.banner-home {
    margin: 37px 0 0 0;
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: linear-gradient(135deg, #022E7E 0%, #011C4D 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.fam {
    padding: 15px 24px;
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    background-color: #031640;
    text-transform: uppercase;
    margin-top: 21px;
}

.get-offer h3 {
    padding: 15px 24px;
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    background-color: #031640;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 21px;
}

.banner-left h1 {
    position: relative;
    padding-top: 10px;
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    font-size: 60px;
    font-style: italic;
}

.banner-left p {
    font-size: 18px;
    padding-top: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-style: italic;
}

.banner-left ul {
    padding-top: 5px;
}

.banner-left ul li {
    padding-top: 16px;
    background: url(../images/cheak.png);
    background-repeat: no-repeat;
    padding-left: 44px;
    font-size: 18px;
    font-weight: 600;
    background-position: 10px 14px;
}

.banner-btn {
    text-align: center;
}


/* button */

.btn {
    border: 1px solid #1B7837;
    border-radius: 5px;
    margin-top: 31px;
    padding: 15px 67px;
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
}

.btn-yellow {
    background-image: linear-gradient(to right top, #145a29, #176930, #1b7837, #218b41, #279e4b);
}

.btn .title {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: bold;
    font-style: italic;
    color: #fff;
}

.btn .sub-title {
    font-size: 16px;
    font-weight: 600;
    color: #fffefe;
    display: block;
}

.banner-left h4 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-top: 18px;
    margin-bottom: 18px;
}


/* Banner section ends here */

.sub-heading h2 {
    font-size: 50px;
    text-align: center;
    font-weight: 800;
    font-family: 'oswald';
    font-style: italic;
}

.sub-heading p {
    padding-top: 15px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}


/* process section start here */

.process-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.process-heading h2 {
    margin-top: 10px;
}

.progress-content {
    padding-top: 55px;
}

.progress-content h3 {
    font-size: 24px;
    padding-top: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.progress-content p {
    padding: 20px 22px 22px 22px;
    font-weight: 500;
    font-size: 18px;
    margin: 0;
}


/* Statics section start here */

.statics {
    background: url(../images/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 70px 0 80px 0;
}

.statics .sub-heading h2 {
    color: #ffffff;
}

.static-sec {
    padding-top: 35px;
}

.wrap {
    color: white;
    display: -webkit-inline-box;
    font-size: 42px;
}

.static-content {
    margin-top: 10px;
    padding: 25px 36px;
    background: #243a53;
    border: 1px solid #ffffff;
}

.static-content h2 {
    font-size: 40px;
    font-family: 'oswald';
    font-weight: 700;
    color: #ffffff;
    font-style: italic;
}

.static-content p {
    color: #ffffff;
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 600;
}


/* Choose us section start hare */

.choose-us {
    padding: 70px 0 70px 0;
}

.choose-sec {
    padding: 40px 48px 25px 48px;
    box-shadow: 0 0 10px #f0f0f0;
    color: #2a2a2a;
    text-align: center;
}

.choose-sec img {
    border-radius: 100%;
}

.choose-sec h3 {
    text-transform: uppercase;
    padding-top: 19px;
    font-weight: 700;
    font-size: 24px;
}

.choose-sec p {
    padding-top: 13px;
    font-size: 18px;
    font-weight: 500;
}

.choose-sec h4 {
    font-size: 16px;
}

.main-btn {
    position: relative;
    margin-top: 70px;
}

.main-btn::after {
    background: url(../images/left-arrow.png);
    content: " ";
    background-repeat: no-repeat;
    position: absolute;
    height: 99px;
    width: 161px;
    top: -12px;
    left: -23px;
}

.main-btn::before {
    background: url(../images/right-arrow.png);
    content: " ";
    background-repeat: no-repeat;
    position: absolute;
    height: 99px;
    width: 128px;
    top: -7px;
    right: -30px;
}

.main-btn h4 {
    font-size: 16px;
}


/* testimonial-section start hare */

.testimonial-section {
    padding: 80px 0 80px 0;
    background-color: #fff9f2;
}

.testimonial {
    margin-top: 25px;
    background-color: #fff5e7;
    padding: 25px;
    border: 1px solid #f68b00;
}

.testimonial h3 {
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    color: #f18800;
}

.testimonial p {
    padding-top: 15px;
    font-style: italic;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-details {
    display: flex;
    align-items: center;
}

.testimonial-details img {
    border-radius: 100%;
}

.testimonial-details .details h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 2px;
    color: #2c2c2c;
}

.details {
    padding-left: 15px;
}

.testimonial-details .details h4 {
    color: #808080;
    font-weight: 600;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 0;
}


/* FAQ section start here */

.faq-section {
    padding: 80px 0 80px 0;
    background-color: #ffffff;
}

.faq {
    margin-top: 27px;
}

.faq .accordion-button {
    padding: 30px 0 30px 0;
}

.faq .accordion-body {
    padding: 30px 0px 30px 0px;
}

.faq-section .main-btn {
    margin-top: 42px;
}

.faq-section .main-btn::before {
    top: -8px;
    right: -114px;
}

.faq-section .main-btn::after {
    top: -8px;
    left: -114px;
}

.faq p {
    font-size: 18px;
}

.accordion-item {
    border: 0;
    border-bottom: 1px solid #d3d3d3;
}

.accordion-button {
    color: #3a3a3a;
    font-size: 22px;
    font-weight: 500;
}

.accordion-body {
    font-size: 18px;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: #2a2a2a;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
}

.accordion-button:not(.collapsed)::after {
    background: url(../images/up-arrow.png);
    transform: none;
}

.accordion-button:not(.collapsed) {
    border-bottom: 1px solid #f33212;
}

.accordion-button::after {
    background-repeat: no-repeat;
    height: 7px;
    width: 15px;
    background: url(../images/down-arrow.png);
}

.accordion-button:focus {
    box-shadow: none;
}


/* Footer section start */

.footer {
    padding-top: 20px;
    padding-bottom: 40px;
    font-size: 13px;
    color: rgb(255, 255, 255);
    border-top: 5px solid #237A37;
    background-color: #091617;
}

.footer-logo {
    margin-top: 15px;
    margin-left: 25px;
}



.footer p {
    margin-top: 20px;
    font-size: 14px;
    margin-bottom: 0;
    text-align: center;
}

.footer ul {
    display: inline-flex;
    margin-top: 27px;
    text-align: center;
}

.footer ul li {
    text-align: center;
    padding-left: 10px;
    padding: 0 10px;
}

.footer li:nth-child(1) {
    border-right: 1px solid rgb(255, 255, 255);
}

.footer a {
    color: rgb(255, 255, 255);
}

footer .copy-right {
    text-align: center;
    font-size: 14px;
    color: #afafaf;
}

.copy_right {
    color: #fff;
}


/*==========================================================
    # Order page
==========================================================*/

.sub-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, #022E7E 0%, #011C4D 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 122px;
    padding-bottom: 122px;
}

.sub-banner h1 {
    font-size: 40px;
    color: #1B7837;
    font-weight: 700;
}

.order-form-section {
    padding: 75px 0 75px 0;
}

.form-section {
    margin-top: 27px;
    padding: 50px 48px 0px 48px;
    box-shadow: 0px 0px 6px #c9cac5;
    border-radius: 10px;
}

.form-section .main-btn {
    margin-top: 4px;
}

.form-section .main-btn::after,
.form-section .main-btn::before {
    display: none;
}

::-webkit-input-placeholder {
    /* opacity: 1; */
    color: #9e9e9e;
}

:-moz-placeholder {
    /* opacity: 1; */
    color: #9e9e9e;
}

::-moz-placeholder {
    /* opacity: 1; */
    color: #9e9e9e;
}

:-ms-input-placeholder {
    opacity: 1;
}

.form-section input,
select {
    display: inline-block;
    max-width: 49%;
    height: 60px;
    font-size: 14px;
    margin-top: 20px;
    padding: 12px 18px;
    border-radius: 5px;
    color: #9e9e9e;
    border: 1px solid rgba(0, 0, 0, 0.2);
    /* width: 100%; */
    outline: none;
}

.form-section input,
.form-section select,
.form-section select option {
    font-size: 14px;
    font-weight: 500;
    color: #9e9e9e;
}

.form-section option {
    font-size: 14px;
    font-weight: 500;
    color: #9e9e9e;
}

.form-spacer {
    margin-top: 2.5rem; /* Adjust this number to increase/decrease space */
    margin-bottom: 1.5rem;
    display: block;
    width: 100%;
}

.form-section form select {
    display: inline;
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/drop-icon.png);
    background-position: 96% center;
    background-repeat: no-repeat;
    background-size: 14px !important;
}

.form-section .form-control {
    background-color: #fbfbfb;
}

.form-control:focus {
    box-shadow: none;
    border-color: #DC143C;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

.form-section h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: #031640;
}

.form-section h4 {
    margin-top: 18px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #3c3c3c;
}

.form-section form {
    padding-bottom: 50px;
}


/* check-box */

.check-box input[type=checkbox] {
    width: 23px;
    padding: 0;
    width: 23px;
    height: 20px;
    padding: 0;
    margin-top: 22px;
}

.form-check-input:focus {
    border-color: red;
    outline: 0;
    box-shadow: none;
}

.check-box {
    display: flex;
}

.check-box label {
    margin-top: 20px;
    max-width: 85%;
    margin-left: 5px;
    color: #9e9e9e;
    font-weight: 500;
    font-size: 14px;
}

.order-choose {
    background-color: #fff9f2;
}

.order-choose .choose-sec {
    background-color: #ffffff;
}

.order-test {
    background-color: #ffffff;
}


/*==========================================================
    # Thank you page
==========================================================*/

.thanks-content {
    padding: 80px 0 80px 0;
}

.thanks-content p {
    font-weight: 500;
    font-size: 22px;
}

.thanks-detail p {
    padding-top: 20px;
}

.thanks-detail a {
    color: #ffffff;
}

.thanks-detail {
    text-align: center;
}

.thanks-detail h3 {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 36px;
    border-radius: 10px;
    color: #ffffff;
    padding: 17px 70px;
    background-color: #f98d00;
}

.thanks-content figure {
    margin-top: 35px;
    margin-bottom: 26px;
}


/*==========================================================
    # Order Cancelled page
==========================================================*/

.cancel-page h1,
.privacy-policy h1 {
    font-size: 40px;
    font-weight: 700;
}

.cancel-page h2 {
    color: #3c3c3c;
    font-size: 23px;
    padding: 0px 60px;
    font-weight: 700;
}


/*==========================================================
    # Privacy and Policy page
==========================================================*/

.privacy-policy p {
    font-size: 22px;
    font-weight: 600;
}

.privacypolicyterms h2 {
    font-size: 32px;
    font-weight: 600 !important;
}

.privacypolicyterms h3 {
    font-size: 24px;
}

.privacypolicyterms h4 {
    font-size: 22px;
}

.privacypolicyterms p {
    font-size: 18px;
}

.privacypolicyterms p a {
    color: #1577da;
}

.privacypolicyterms li {
    font-size: 18px;
}

.privacypolicyterms .highlight {
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .privacypolicyterms h2 {
        font-size: 28px;
    }
    .privacypolicyterms h3 {
        font-size: 22px;
    }
    .privacypolicyterms h4 {
        font-size: 20px;
    }
    .privacypolicyterms p,
    .privacypolicyterms li {
        font-size: 16px;
    }
}


/*==========================================================
    # Error || 404 || Page not found
==========================================================*/

#notfound {
    position: relative;
    height: 50vh;
}

#notfound .notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.notfound {
    max-width: 920px;
    width: 100%;
    line-height: 1.4;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

.notfound .notfound-404 {
    position: absolute;
    height: 100px;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}

.notfound .notfound-404 h1 {
    color: #ececec;
    font-weight: 900;
    font-size: 276px;
    margin: 0px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.notfound h2 {
    font-size: 46px;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0px;
}

.notfound p {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 15px;
}

.notfound a {
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    background: #f98d00;
    display: inline-block;
    padding: 16px 38px;
    border: 2px solid transparent;
    border-radius: 40px;
    color: #fff;
    font-weight: 400;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.notfound a:hover {
    background-color: #fff;
    border-color: rgb(30, 25, 19);
    color: rgb(30, 25, 19);
}

@media only screen and (max-width: 480px) {
    .notfound .notfound-404 h1 {
        font-size: 162px;
    }
    .notfound h2 {
        font-size: 26px;
    }
}

.alert-danger {
    width: 70%;
    margin: 15px auto;
    font-size: 20px;
}


/* Responsive section start here */

@media only screen and (max-width: 1279px) {
    .choose-sec {
        padding: 40px 30px 40px 30px;
    }
    .banner-left h1 {
        font-size: 50px;
    }
    .btn .title {
        font-size: 27px;
    }
    .banner-home {
        background-position: 58%;
    }
    .sub-banner {
        background-position: 70%;
    }
    .choose-sec p {
        padding: 10px;
    }
    .choose-sec h3 {
        font-size: 21px;
        padding: 10px;
    }
    .testimonial p {
        font-size: 15px;
    }
    .choose-sec p {
        padding: 10px;
    }
    .main-btn {
        margin-top: 35px;
    }
}

@media only screen and (max-width: 1023px) {
    .banner-home {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .sub-banner {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .sub-heading h2 {
        font-size: 40px;
    }
    .btn .title {
        font-size: 27px;
    }
    .banner-left h1::after {
        display: none;
    }
    .progress-content h3 {
        font-size: 17px;
    }
    .progress-content p {
        padding: 12px 0px 22px 0px;
        font-size: 15px;
    }
    .static-content {
        padding: 21px 16px;
    }
    .static-content p {
        font-size: 16px;
    }
    .static-content h2 {
        font-size: 37px
    }
    .choose-sec {
        padding: 37px 0px 25px 0px;
    }
    .choose-sec h3 {
        font-size: 19px;
    }
    .choose-sec p {
        font-size: 15px;
    }
    .main-btn::before,
    .main-btn::after {
        display: none;
    }
    .accordion-button:not(.collapsed) {
        font-size: 18px;
    }
    .accordion-body {
        font-size: 15px;
    }
    .accordion-button {
        font-size: 18px;
    }
    .faq .accordion-button {
        padding: 20px 20px 20px 0px;
    }
    .faq-section .main-btn .btn {
        margin-top: 35px;
    }
    .form-section {
        padding-top: 45px;
    }
    .process-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .statics {
        padding: 55px 0 70px 0;
    }
    .choose-us {
        padding: 50px 0 50px 0;
    }
    .testimonial-section {
        padding: 60px 0 60px 0;
    }
    .faq-section {
        padding: 60px 0 60px 0;
    }
    .faq-section .main-btn {
        margin-top: 10px;
    }
    /* order-form  */
    .order-form-section {
        padding: 55px 0 55px 0;
    }
    /* thank you  */
    .thanks-content {
        padding: 60px 0 60px 0;
    }
    .thanks-content p {
        font-size: 18px;
    }
    .cancel-page h2 {
        font-size: 24px;
    }
    .privacy-policy h1 {
        font-size: 50px;
    }
    .privacy-policy p {
        font-size: 25px;
    }
    .notfound a {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .header {
        text-align: center;
    }
    .banner-home {
        margin-top: 89px;
        padding: 40px 0 40px 0;
        background-position: left top;
    }
    .top-call ul li {
        font-size: 15px;
        text-align: center;
    }
    .get-offer h3 {
        font-size: 24px;
    }
    .choose-sec {
        margin-top: 40px;
    }
    .choose-sec img {
        margin-top: 10px;
    }
    .banner-left h1 {
        font-size: 37px;
    }
    .banner-left p {
        padding-top: 15px;
    }
    .main-btn {
        margin-top: 40px;
    }
    .faq-section .main-btn .btn {
        margin-top: 40px;
    }
    .main-btn .btn {
        margin-top: 0px;
    }
    .main-btn h4 {
        font-size: 16px;
    }
    .form-section input,
    select {
        max-width: 100%;
    }
    .btn {
        padding: 15px 10px;
    }
    .btn .title {
        font-size: 19px;
    }
    .btn .sub-title {
        font-size: 14px;
    }
    .process-section,
    .statics,
    .choose-us,
    .testimonial-section,
    .faq-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .faq-section .main-btn {
        margin-top: 0;
    }
    .sub-banner {
        margin-top: 90px;
    }
    .sub-heading h2 {
        font-size: 35px;
    }
    .sub-heading p {
        font-size: 17px;
        margin-bottom: 0px
    }
    .accordion-body {
        font-size: 15px;
    }
    .form-section {
        padding: 46px 11px 0px 11px;
    }
    .form-section .btn .sub-title {
        font-size: 14px;
    }
    .form-section h3 {
        font-size: 22px;
    }
    .form-section h4 {
        font-size: 18px;
    }
    .form-section .main-btn {
        margin-top: 25px;
    }
    .sub-banner {
        background-position: top left;
        padding: 70px 0 70px 0;
    }
    .testimonial-section,
    .faq-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    /* thank  you */
    .sub-banner h2 {
        font-size: 30px;
    }
    .thanks-content {
        padding: 40px 0 40px 0;
    }
    .thanks-content p {
        font-size: 16px;
    }
    .thanks-detail h3 {
        font-size: 20px;
    }
    .cancel-page h1 {
        font-size: 44px;
    }
    .cancel-page h2 {
        padding: 0 10px;
        font-size: 17px;
    }
    .privacy-policy h1 {
        font-size: 40px;
    }
    .privacy-policy p {
        font-size: 18px;
    }
    .alert-danger {
        font-size: 12px;
    }
}

@media only screen and (max-width: 414px) {
    .sub-heading h2 {
        font-size: 24px;
    }
    .sub-banner h1 {
        font-size: 32px;
    }
}


/* responsive section ends here */