@import url('https://fonts.googleapis.com/css2?family=Poppins: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&display=swap');

/* Avenir Font Family */
@font-face {
    font-family: AvenirLTProBook;
    src: url("../fonts/avenir/AvenirLTProBook.otf");
}
@font-face {
    font-family: AvenirLTProBookOblique;
    src: url("../fonts/avenir/AvenirLTProBookOblique.otf");
}
@font-face {
    font-family: AvenirLTProRoman;
    src: url("../fonts/avenir/AvenirLTProRoman.otf");
}
@font-face {
    font-family: AvenirLTProOblique;
    src: url("../fonts/avenir/AvenirLTProOblique.otf");
}
@font-face {
    font-family: AvenirLTProMedium;
    src: url("../fonts/avenir/AvenirLTProMedium.otf");
}
@font-face {
    font-family: AvenirLTProMediumOblique;
    src: url("../fonts/avenir/AvenirLTProMediumOblique.otf");
}
@font-face {
    font-family: AvenirLTProHeavy;
    src: url("../fonts/avenir/AvenirLTProHeavy.otf");
}
@font-face {
    font-family: AvenirLTProHeavyOblique;
    src: url("../fonts/avenir/AvenirLTProHeavyOblique.otf");
}
@font-face {
    font-family: AvenirLTProBlack;
    src: url("../fonts/avenir/AvenirLTProBlack.otf");
}
@font-face {
    font-family: AvenirLTProBlackOblique;
    src: url("../fonts/avenir/AvenirLTProBlackOblique.otf");
}

/* Neue Haas Display Font */
@font-face {
    font-family: NeueHaasDisplayRoman;
    src: url("../fonts/neuehaasdisplay/NeueHaasDisplayRoman.ttf");
}

html, body {
    overflow-x: hidden;
}

body {
    padding: 0 !important;
}

a {
    color: #233c7b;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: AvenirLTProBlack, sans-serif;
    font-weight: 700;
}
h1 {font-size: 48px;}
h2 {font-size: 36px;}
h3 {font-size: 30px;}
h4 {font-size: 24px;}
h5 {font-size: 21px;}
h6 {font-size: 18px;}

label {
    font-family: NeueHaasDisplayRoman, sans-serif;
}

input, select, textarea, button, input[type=submit] {
    font-family: NeueHaasDisplayRoman, sans-serif;
    height: auto;
}

textarea {resize: none;}

ul {
    font-family: 'Poppins', sans-serif;
    list-style: none;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 100px;
}

.text-justify {text-align: justify !important;}

.form-control {
    /* background: #f4f4f4; */
    font-size: 15px;
    background: transparent;
    border: 1px solid #EEEEEE !important;
    border: none;
    padding: 0.6rem 0.75rem;
}

.input-group-text {
    font-size: 15px;
    background: transparent; 
    border: 1px solid #EEEEEE;
}

button, input[type=submit] {
    border: none !important;
}

.orange_bg {
    background: #f3632e;
}
.text_orange {
    color: #f3632e;
}
.blue_bg {
    background: #233c7b;
    color: #FFFFFF;
}
.blue_bg:hover {color: #FFFFFF;}
.text_blue {
    color: #233c7b;
}
.form-check-input:focus {box-shadow: none !important;}

.text_yellow {
    color: #ffed6a;
}

.text_navy_blue {color: #193176;}

/* Navigation bar */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 4;
    padding: 6px 0 8px 0;
}
.navbar.bg-white {
    box-shadow: 0 0 30px rgba(0,0,0,0.08);
}
.navbar .navbar-brand {padding: 0;}
.navbar .navbar-brand img {
    width: 120px;
}
.navbar .navbar-nav .nav-item {
    margin-left: 20px;
}
.navbar ul li a {
    color: #FFFFFF;
}
.navbar.bg-white ul li a {
    color: #222222;
}

/* Header */
.header {
    width: 100%;
    background-image: linear-gradient(0deg,#1ca6fb, #2076c5, #2178cb, #253c82);
    /* background: url(../images/HeaderBg2.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 90px 0 50px 0;
}
.header:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 400px;
    top: -75px;
    left: 48%;
    background: url(../images/HoldingRupee.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: none;
}
.header h1 {
    color: #FFFFFF;
    line-height: 1.1;
    margin: 0;
    padding-top: 20px;
    margin-bottom: 20px;
}
.header p {
    color: #FFFFFF;
}
.header .card.form {
    position: relative;
    box-shadow: 0 1px 80px rgba(0,0,0,0.2);
    z-index: 1;
}
.header .card.form h3{
    color: #D31145;
}
.header .card.form i {
    color: #742399;
}
.header .card.form #submit_form {
    background: linear-gradient(0deg, transparent 0px, #742399 100%) top, 
                linear-gradient(180deg, transparent 0px, #551970 0px) bottom;
}
.header .card.form #submit_form:active {
    background: linear-gradient(180deg, transparent 0px, #742399 100%) top, 
                linear-gradient(0deg, transparent 0px, #551970 0px) bottom;
}

/* Assets */
.assets_section .card {
    box-shadow: 0 5px 50px rgba(0,0,0,0.15);
    border: none;
    display: inline-block;
}
.assets_section h2 {
    color: #243c7a;
}
.assets_section h6 {
    font-family: NeueHaasDisplayRoman, sans-serif; 
    font-weight: 300;
}
.assets_section .card {width: 100%;}
.assets_section .card h5 {
    font-size: 28px;
    color: #f3632e;
    margin: 0;
    padding: 15px 0;
}
.assets_section .card p {display: flow-root;}
.assets_section .card i {
    color: #58b5ec;
    float: left;
    font-size: 36px;
    margin-right: 15px;
    padding: 15px 0 0 0;
}
.assets_section .assets_img {
    width: 100%;
    height: 500px;
    position: relative;
    display: block;
}
.assets_section .assets_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.assets_section .assets_img:before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: #d8f0fe;
    margin-top: 50px;
    border-radius: 100%;
    z-index: -1;
    right: 15%;
}
.assets_section .assets_img:after {
    content: '';
    position: absolute;
    width: 325px;
    height: 325px;
    background: #58b5ec;
    border: 30px solid #99d8fd;
    border-radius: 100%;
    margin-top: 78px;
    right: 20%;
    z-index: -1;
}

/* Invest In Future */
.invest_in_future {
    background-image: linear-gradient(#2cb6fd, #FFFFFF, #cbedff);
}
.invest_in_future h2 {
    color: #FFFFFF;
}
.invest_in_future p {
    line-height: 2;
}
.invest_in_future h6 {font-family: NeueHaasDisplayRoman, sans-serif; font-weight: 300;}
.invest_in_future .investment_img {
    width: 100%;
    height: 500px;
    position: relative;
    display: block;
}
.invest_in_future .investment_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Services Section */
.services_offered {
    padding-top: 80px;
}
.services_offered h2 {
    color: #243c7a;
}
.services_offered .card h4 {
    font-size: 22px;
    color: #f3632e;
}
.services_offered .services_offered_img {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
}
.services_offered .services_offered_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.services_offered .services_offered_img:hover {
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.services_offered .services_offered_img:hover img {
    box-shadow: 30px 30px 50px rgba(0,0,0,0.2);
    transform: translate(-2%, -2%);
}

/* Right Advice */
.right_advice {
    background-image: linear-gradient(#FFFFFF, #caebff);
}
.right_advice h2 {color: #243c7a;}
.right_advice h6 {font-family: NeueHaasDisplayRoman, sans-serif; font-weight: 300;}
.right_advice p {
    line-height: 2;
}

/* Mobile App Section */
.mobile_app_section h6 {font-family: NeueHaasDisplayRoman, sans-serif; font-weight: 300;}
.mobile_app_section h2 {color: #243c7a;}
.mobile_app_section p {
    line-height: 2;
}
.mobile_app_section .card h5 {color: #f3632e;}
.mobile_app_section .card p {
    display: flow-root;
    text-align: justify;
}
.mobile_app_section .mobile_screen {
    width: 100%;
    height: 400px;
    display: block;
    position: relative;
}
.mobile_app_section .mobile_screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.mobile_app_section .mobile_screen:before {
    content: '';
    position: absolute;
    width: 330px;
    height: 330px;
    background: #d8f0fe;
    left: 14.4%;
    margin-top: 30px;
    border-radius: 100%;
    z-index: -1;
}
.mobile_app_section .mobile_screen:after {
    content: '';
    position: absolute;
    width: 270px;
    height: 270px;
    background: #58b5ec;
    border: 30px solid #99d8fd;
    border-radius: 100%;
    left: 16.8%;
    z-index: -1;
    margin-top: 60px;
}

/* Sign Up Section */
.sign_up_section {
    background-image: linear-gradient(0deg,#82dfff, #b6f0ff);
}
.sign_up_section h3 {color: #222222;}
.sign_up_section h3 span {color: #2e55c6;}
.sign_up_section p {color: #222222;}
.sign_up_section a {
    color: #002e89;
    font-weight: 600;
}

/* Lending Partners Section */
.lending_partners_section {
    background: #FAFAFA;
}
.lending_partners_section h3 {
    /* color: #f3632e; */
    color: #243c7a;
}
.lending_partners_section .lending_partners img {
    width: 250px;
    margin: auto;
}

/* Broking Partners Section */
.broking_partners_section {
    background: #FAFAFA;
}
.broking_partners_section h3 {
    /* color: #f3632e; */
    color: #243c7a;
}
.broking_partners_section .broking_partners img {
    width: 250px;
    margin: auto;
}

/* Our Services Page */
.our_services h2 {color: #243c7a;}
.our_services .card {overflow: hidden;}
.our_services .card a {
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    color: #f3632e;
}
.our_services .card img {width: 100%;}

/* Contact Page Section */
.contact_section .card {
    position: relative;
    box-shadow: 0 1px 80px rgb(0 0 0 / 20%);
    z-index: 1;
}
.contact_section .card h3 {color: #f3632e;}
.contact_section .card i {color: #f3632e;}
.contact_section .card .form-check-input:checked {
    background-color: #243c7a;
    border-color: #243c7a;
}
.contact_section .card #submitbutton {background: #243c7a;}
.contact_section .card form span {
    font-size: 14px;
    font-family: NeueHaasDisplayRoman, sans-serif;
}

.contact_section .form-check {padding-left: 0.8em;}
.contact_section .form-check .form-check-input {margin-left: -1em; margin-right: 0.6em;}

/* Footer */
.footer ul {
    list-style: none;
    margin-right: 40px;
    padding-left: 25px;
}
.footer ul li a {color: #919191;}
.footer p {display: flow-root; color: #919191;}
.footer .icon_circle {
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    background: #243c7a;
    color: #FFFFFF;
    border-radius: 100%;
    float: left;
    margin-right: 10px;
    padding: 7px 0 0 1px;
}
.footer .icon_circle img {width: 20px; height: 20px;}

/* Whatsapp */
.whatsapp {
    position: fixed;
    bottom: 20px;
    z-index: 3;
    right: 20px;
}
.whatsapp a {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 100%;
    background: #59ce72;
    box-shadow: 0 1px 10px rgb(0 0 0 / 20%);
    display: block;
    text-align: center;
    padding: 10px 0;
}
.whatsapp a i {
    font-size: 20px;
    color: #FFFFFF;
}

/* Responsive Design */
@media screen and (max-width: 2000px) {
    /* .header {height: 680px;} */
    .assets_section .assets_img:before {right: 20% !important;}
    .assets_section .assets_img:after {right: 24.5% !important;}
    .mobile_app_section .mobile_screen:before {left: 24% !important;}
    .mobile_app_section .mobile_screen:after {left: 29% !important;}
}
@media screen and (max-width: 1800px) {
    /* .header {height: 615px;} */
}
@media screen and (max-width: 1600px) {
    /* .header {height: 575px;} */
}
@media screen and (max-width: 1440px) {
    /* .header {height: 510px;} */
    .assets_section .assets_img:before {right: 20% !important;}
    .assets_section .assets_img:after {right: 24.5% !important;}
}
@media screen and (max-width: 1380px) {
    /* .header {height: 460px;} */
    .assets_section .assets_img:before {right: 15% !important;}
    .assets_section .assets_img:after {right: 20% !important;}
    .mobile_app_section .mobile_screen:before {left: 19% !important;}
    .mobile_app_section .mobile_screen:after {left: 24.5% !important;}
}
@media screen and (max-width: 1024px) {
    .header h1 {font-size: 40px;}
    .header:before {top: 26%;}
    .header:after {
        width: 520px;
        height: 520px;
        background: #243c7a;
        top: -44%;
        right: 0;
    }
    .assets_section .assets_img:before {right: 9% !important;}
    .assets_section .assets_img:after {right: 15% !important;}
    .mobile_app_section .mobile_screen:before {left: 14.5% !important;}
    .mobile_app_section .mobile_screen:after {left: 21% !important;}
}
@media screen and (max-width: 991px) {
    .navbar {background: #FFFFFF;}
    .navbar ul li a {color: #222222;}
    .navbar .navbar-nav .nav-item {margin: 0;}
    .header:before {top: 20%; display: none;}
    .header:after {display: none;}
    .header h1 {font-size: 38px;}
    .mobile_app_section .mobile_screen:before {left: 1% !important;}
    .mobile_app_section .mobile_screen:after {left: 10% !important;}
    .investment_img {height: 350px;}
    .mobile_column_reverse {flex-direction: column-reverse;}
    .assets_section .card h5 {font-size: 25px;}
    .assets_section h6, .invest_in_future h6, .right_advice h6, .mobile_app_section h6 {font-size: 21px;}
    .assets_section .assets_img:before {
        width: 335px;
        height: 335px;
        margin-top: 66px;
        right: 0 !important;
    }
    .assets_section .assets_img:after {
        width: 274px;
        height: 274px;
        margin-top: 98px;
        right: 9% !important;
    }
    .sign_up_section .register_speedwealth_btn {
        width: 200px !important;
        margin: auto;
        display: block;
    }
    .footer ul {padding-left: 0;}
}
@media screen and (max-width: 768px) {
    .assets_section .card h5 {font-size: 24px;}
}
@media screen and (max-width: 767px) {
    .header h1 {font-size: 32px;}
    .assets_section .assets_img:before {right: 13% !important;}
    .assets_section .assets_img:after {right: 18% !important;}
    .mobile_app_section .mobile_screen:before {left: 18% !important;}
    .mobile_app_section .mobile_screen:after {left: 24% !important;}
    .mobile-column-reverse {flex-direction: column-reverse;}
}
@media screen and (max-width: 480px) {
    .assets_section .assets_img:before {right: 1% !important;}
    .assets_section .assets_img:after {right: 8% !important;}
    .invest_in_future .investment_img {height: auto; margin-bottom: 30px;}
    .mobile_screen:before {
        width: 340px;
        height: 340px;
        margin-left: 25px;
        margin-top: 25px;
    }
    .mobile_screen:after {
        width: 300px;
        height: 300px;
        margin-top: -350px;
        margin-left: 45px;
    }
    .mobile_app_section .mobile_screen:before {left: 3.5% !important; margin-left: 15px;}
    .mobile_app_section .mobile_screen:after {left: 3.5% !important;}
    .mobile-column-reverse-portrait {flex-direction: column-reverse;}
}
@media screen and (max-width: 414px) {
    .assets_section .assets_img:before {
        width: 380px;
        height: 380px;
        margin-top: 50px;
    }
    .assets_section .assets_img:after {
        width: 325px;
        height: 325px;
        margin-top: 78px;
    }
}

@media screen and (max-width: 400px) {
    .assets_section .assets_img:before {
        width: 370px;
        height: 370px;
        right: 0 !important;
    }
    .assets_section .assets_img:after {
        width: 312px;
        height: 312px;
        margin-top: 80px;
    }
    .mobile_app_section .mobile_screen:before {left: 1% !important;}
    .mobile_app_section .mobile_screen:after {left: 1% !important;}
}

@media screen and (max-width: 380px) {
    .assets_section .assets_img:before {
        width: 350px;
        height: 350px;
        margin-top: 60px;
    }
    .assets_section .assets_img:after {
        width: 288px;
        height: 288px;
        margin-top: 92px;
        right: 9% !important;
    }
    .mobile_app_section .mobile_screen:before {
        width: 340px !important;
        height: 340px !important;
        margin-left: 0;
    }
    .mobile_app_section .mobile_screen:after {
        width: 280px !important;
        height: 280px !important;
        margin-top: 60px !important;
        margin-left: 15px;
        left: 5% !important;
    }
}
@media screen and (max-width: 370px) {
    .assets_section .assets_img:before {
        width: 330px !important;
        height: 330px !important;
        right: 4px !important; 
        margin-top: 78px !important;
    }
    .assets_section .assets_img:after {
        width: 275px !important;
        height: 275px !important;
        margin-top: 106px !important; 
        right: 9% !important;
    }
    .mobile_app_section .mobile_screen:before {left: 0 !important;}
    .mobile_app_section .mobile_screen:after {margin-top: 60px; left: 4% !important;}
}