@import '../../node_modules/bootstrap/dist/css/bootstrap.min.css';
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700,800');

::-moz-selection {
    background-color: #1c3261 !important;
    color: white;
}

::selection {
    background-color: #1c3261 !important;
    color: white;
}


html {
    scroll-behavior: smooth !important;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px white;
    box-shadow: inset 0 0 6px white;
}

body::-webkit-scrollbar-thumb {
    background-color: #1c3261 !important;
    outline: 1px solid #1c3261 !important;
}


#banner-section {
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 450px;
}

.border-radius-8 {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.btn {
    padding: 8px 28px;
}

.btn-pink {
    color: white;
    background-color: #e35086;
    border-color: #e35086;
}

.btn-pink:hover {
    color: white;
    background-color: #be407f;
    border-color: #be407f;
}

.btn-outline-blue {
    background-color: white !important;
    border-color: #1c3261;
    color: #1c3261;
    font-weight: 700;
}

.btn-outline-blue:hover {
    background-color: #1c3261 !important;
    border-color: #1c3261;
    color: white;
    font-weight: 700;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.btn-outline-pink {
    background-color: white !important;
    border-color: #e35086;
    color: #e35086;
    font-weight: 700;
}

.btn-outline-pink:hover {
    background-color: #e35086 !important;
    border-color: #e35086;
    color: white;
    font-weight: 700;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.bg-blue {
    background-color: #1c3261 !important;
}

.bg-pink {
    background-color: #e35086 !important;
}

h2 {
    font-size: 25px;
}

.font-700 {
    font-weight: 700 !important;
}

.font-400 {
    font-weight: 400 !important;
}

.font-800 {
    font-weight: 800 !important;
}

.section {
    padding: 50px 0px;
}

.text-blue {
    color: #1c3261 !important;
}

.text-pink {
    color: #e35086 !important;
}

.hcg-list {
    list-style-type: none !important;
    padding: 15px !important
}

.hcg-list li {
    position: relative;
    margin-bottom: 10px !important;
    padding-left: 40px !important
}

.hcg-list li::before {
    content: '';
    background-image: url('../images/hcg-list-icon.png');
    background-size: contain;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: absolute;
    left: 2px;
    top: 2px;
    width: 25px;
    height: 25px;
    filter: invert(98%) sepia(26%) saturate(290%) hue-rotate(179deg) brightness(114%) contrast(100%);
    -webkit-filter: invert(98%) sepia(26%) saturate(290%) hue-rotate(179deg) brightness(114%) contrast(100%);
}

.bg-why {
    background-image: url('../images/bg-blue-image.jpeg');
    background-size: cover;
    background-position: bottom center !important;
    background-repeat: no-repeat !important;
    background-color: #002a79;
    background-blend-mode: exclusion;
}


.bg-why-2 {
    background-image: url('../images/bg-gray.jpeg');
    background-size: cover;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.bg-second {
    background-image: url('../images/bg-pink-image.jpeg');
    background-size: cover;
    background-position: bottom center !important;
    background-repeat: no-repeat !important;
    background-color: #002a79;
    background-blend-mode: exclusion;
}

.bg-faq {
    background-image: url('../images/bg-yellow-image.jpeg');
    background-size: cover;
    background-position: bottom center !important;
    background-repeat: no-repeat !important;
    background-color: #be407f;
    background-blend-mode: luminosity;
}

.faq-button {

    display: block;
    width: 100%;
    text-align: left !important;
    white-space: normal;

}

.footer {
    margin-bottom: 40px;
}

.footer-float {
    position: fixed;
    width: 100%;
    height: 40px;
    z-index: 500;
    bottom: 0;
    left: 0px;
}

.step-wrapper {
    position: relative;
}

.step-wrapper img {
    filter: invert(99%) sepia(0%) saturate(7442%) hue-rotate(204deg) brightness(105%) contrast(94%);
    -webkit-filter: invert(99%) sepia(0%) saturate(7442%) hue-rotate(204deg) brightness(105%) contrast(94%);
}

.step-wrapper .step-number {
    position: absolute;
    top: 0px;
    left: 30px;
    width: 80px;
    height: 80px;
    color: #be407f;
    font-size: 50px;
    font-weight: 700;
    background-color: white;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}


/* Media Queries Start */
@media screen and (max-width: 480px) {
    #banner-section {
        background-image: url('../images/mobile-banner.png');
        min-height: 350px;
    }

    .btn-outline-pink {
        font-size: 14px;
    }
}


/* Media Queries Ends */