/*-----------------------------------------------------------*/
/*BASIC SETUP*/
/*-----------------------------------------------------------*/


:root {
    --color-white: #FFFFFF;
    --color-black-light: rgba(0, 0, 0, 0.3);
    --color-black-dark: rgba(0, 0, 0, 1);
    --color-our-theme: #6c51d6;
    --Theme_B_Dark: #2D2C71;
    --color-our-theme2: #81C563;
    --color-our-theme3: #209220;
    --Theme_G_Dark: #158F45;
    --color-black-verylight: rgba(0, 0, 0, 0.2);
    --color-bg-light: rgba(210, 211, 222, 0.1);
    --scrollbarBG: #CFD8DC;
    --thumbBG: #90A4AE;
}

/*@font-face {
    font-family: 'Calibri';
    font-display: swap;
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/Calibri.ttf");
}

@font-face {
    font-family: 'Poppins';
    font-display: swap;
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/Poppins-Regular.ttf");
}*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*scroll-behavior: smooth;*/
}

body.md-dialog-is-showing {
    overflow: visible !important;
}

html,
body {
    background-color: var(--color-white);
    color: rgba(0, 0, 0, 0.9);
    font-family: 'Arial', sans-serif;
    /*font-family: Poppins, sans-serif !important;*/
    /*font-family: Calibri, sans-serif !important;*/
    /*    font-size: 20px;*/
    font-size: 18px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    /*scroll-behavior: smooth;*/
}

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

body {
    /*scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);*/
}

body::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--color-our-theme);
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
}

.bg-light {
    background-color: #ffffff !important;
}

.pp_navbar_extra {
    margin-right: 15px;
}

.pp_navbar_extra_img {
    background: var(--color-our-theme);
    border-radius: 5px;
    outline: none;
    width: 40px;
    height: 40px;
}

.pp_disabled {
    opacity: 0.6 !important;
    pointer-events: none;
}

*[disabled="disabled"] {
    pointer-events: none;
    opacity: 0.5;
}

/* The loadingSkelton Class */
.loadingSkelton {
    position: relative;
}

/* The moving element */
.loadingSkelton::after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
    background: -webkit-gradient(linear, left top,
        right top, from(transparent),
        color-stop(rgba(255, 255, 255, 0.5)),
        to(transparent));

    background: linear-gradient(90deg, transparent,
        rgba(255, 255, 255, 0.5), transparent);

    /* Adding animation */
    animation: loadingSkelton 0.7s infinite;
}

/* Loading Skelton Animation */
@keyframes loadingSkelton {
    100% {
        transform: translateX(10%);
    }
}

.pp_theme_color {
    color: var(--color-our-theme);
}

/*---------RE-USEABLE SELECTORS----------*/

.flex-box {
    display: flex;
    align-items: center;
    justify-content: center;
}


.lbl-cls2 {
    /*font-size: 90%;*/
    font-size: 14px;
    margin-bottom: 0rem;
}

.pad-b {
    padding-bottom: 3rem;
}

.themeClrSet {
    display: flex;
    align-items: center;
}

.themeClrSet input {
    display: inline-block;
    margin-right: 1rem;
    outline: none;
    border: 1px solid #000;
}

.input-field-theme2,
.input-field-theme3 {
    border: 1px solid #0000008c;
    border-radius: 5px;
    outline: none;
    width: 100%;
    height: 40px;
    transition: border .2s ease;
}

.input-field-theme2:active,
.input-field-theme2:focus {
    border: 1px solid var(--color-our-theme);
}

.input-field-theme3:active,
.input-field-theme3:focus {
    border: 1px solid var(--color-our-theme2);
}

.input-field-theme2 {
    font-size: 14px;
    padding: .5rem;
}

.input-field-theme3 {
    font-size: 14px;
    padding: .5rem;
}


.textarea-field {
    overflow: hidden;
    border: 1px solid #0000008c;
    border-radius: 5px;
    outline: none;
    padding: .2rem;
    width: 100%;
    font-size: 80%;
    resize: none;
    transition: border .2s ease;
}

.textarea-field:active,
.textarea-field:focus {
    border: 1px solid var(--color-our-theme2);
}

/*------------------Button Theme 1------------------*/
.our-Theme1-btn:link,
.our-Theme1-btn:visited {
    text-decoration: none;
    color: var(--color-white);
    border-radius: 5px;
    background-color: var(--color-our-theme);
    padding: .5rem 1rem;
    letter-spacing: 1px;
    font-size: 90%;
    display: inline-block;
    box-shadow: 0px 3px 6px var(--color-black-light);
    backface-visibility: hidden;
    white-space: nowrap;
    font-weight: bold;
    transition: all .2s;
}

.our-Theme1-btn:hover {
    box-shadow: 0px 6px 6px var(--color-black-light);
    transform: translateY(-2px);
    background-color: var(--color-our-theme);
}

.our-Theme1-btn:active {
    box-shadow: 0px 3px 6px var(--color-black-light);
    transform: translateY(-1px);
    background-color: var(--color-our-theme);
}

/*------------------Button Theme 2------------------*/


.our-Theme2-btn:link,
.our-Theme2-btn:visited {
    text-decoration: none;
    border-radius: 5px;
    background-color: transparent;
    color: var(--color-white);
    padding: .5rem 1.5rem;
    letter-spacing: 1px;
    border: 1px solid var(--color-white);
    font-size: 100%;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0px 1px 3px var(--color-white);
    white-space: nowrap;
    backface-visibility: hidden;
    transition: all .2s;
}

.our-Theme2-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 2px 5px var(--color-white);
}

.our-Theme2-btn:active {
    transform: translateY(-1px);
    box-shadow: 0px 1px 5px var(--color-white);
}

/*------------------Button Theme 3------------------*/
.our-Theme3-btn:link,
.our-Theme3-btn:visited {
    text-decoration: none;
    border-radius: 5px;
    background-color: transparent;
    color: var(--color-black-dark);
    padding: .5rem 1.5rem;
    letter-spacing: 1px;
    border: 1px solid var(--color-our-theme);
    font-size: 100%;
    font-weight: bold;
    display: inline-block;
    /*box-shadow: 0px 1px 3px var(--color-our-theme);*/
    white-space: nowrap;
    backface-visibility: hidden;
    transition: all .2s;
}

.our-Theme3-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 2px 5px var(--color-black-verylight);
}

.our-Theme3-btn:active {
    transform: translateY(-1px);
    /*box-shadow: 0px 1px 5px var(--color-our-theme);*/
}


/*------------------Button Theme 4------------------*/
.our-Theme4-btn:link,
.our-Theme4-btn:visited {
    text-decoration: none;
    color: var(--color-white);
    border-radius: 3px;
    background-color: var(--color-our-theme3);
    padding: .5rem;
    letter-spacing: 1px;
    font-size: 80%;
    display: inline-block;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.12);
    backface-visibility: hidden;
    white-space: nowrap;
    font-weight: bold;
    transition: all .2s;
}

.our-Theme4-btn:hover {
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    background-color: var(--color-our-theme3);
}

.our-Theme4-btn:active {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
    background-color: var(--color-our-theme3);
}

/*------------------Button Theme Green Dark------------------*/
.our-ThemeGDark-btn:link,
.our-ThemeGDark-btn:visited {
    text-decoration: none;
    color: var(--color-white);
    border-radius: 3px;
    background-color: var(--Theme_G_Dark);
    padding: .5rem;
    letter-spacing: 1px;
    font-size: 80%;
    display: inline-block;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.12);
    backface-visibility: hidden;
    white-space: nowrap;
    font-weight: bold;
    transition: all .2s;
}

.our-ThemeGDark-btn:hover {
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    background-color: var(--Theme_G_Dark);
}

.our-ThemeGDark-btn:active {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
    background-color: var(--Theme_G_Dark);
}

/*------------------Button Theme 1------------------*/
.our-Theme5-btn:link,
.our-Theme5-btn:visited {
    text-decoration: none;
    color: #FFF;
    /* border-radius: 5px; */
    background-color: #273168;
    padding: .5rem 4rem;
    letter-spacing: 1px;
    font-size: 90%;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.21);
    backface-visibility: hidden;
    white-space: nowrap;
    font-weight: bold;
    border: 1px solid #273168;
    transition: all .2s;
    position: relative;
    overflow: hidden;
}

.our-Theme5-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    padding: 5rem;
    background-color: #eee;
    border-radius: 50%;
    transition: transform 1s, opacity 1s;
}

.our-Theme5-btn:active::before {
    transition: 0s;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
}

.our-Theme5-btn:hover {
    /*color: #fff;*/
    /*opacity: 0.8;*/
    /*background-color: #273168;*/
    color: #273168;
    background-color: #ffffff;
}

.our-Theme5-btn[disabled="disabled"] {
    opacity: 0.7;
}

.our-Theme5-btn:active {
    color: #fff;
    background-color: #273168;
}

#pp_nav_id .navbar-brand {
    outline: none;
}

.cursor_pointer {
    cursor: pointer;
}

.block-btn {
    display: block !important;
    text-align: center;
}


select {
    word-wrap: normal;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--color-black-dark);
    text-transform: capitalize;
}

.apply-text-shadow {
    text-shadow: 2px 2px var(--color-black-dark);
}


.section-loanTypes .dropdown-toggle::after {
    display: inline-block;
    margin-left: -0.1rem !important;
    vertical-align: -0.3rem !important;
    /*content: url(../../impacto-content/images/imgs/icons/arrow-down.svg);*/
    content: "";
    border: unset !important;
}


.dropdown-submenu {
    position: relative;
}

.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: .8em;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
    margin-right: .1rem;
}

.dropdown-menu.show {
    display: block;
    box-shadow: 0px 2px 5px var(--color-black-verylight);
}

.dropdown-item {
    font-size: 100%;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: transparent !important;
    outline: none !important;
}

.lbl-cls {
    font-size: 100%;
}

.center-of-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.readonly {
    pointer-events: none;
}

/*---------------------------HEADINGS---------------------------*/

h1 {
    margin-top: 4rem;
    font-size: 220%;
    font-weight: 600
}

h1 span {
    color: #0019FF;
}

h2 {
    font-size: 180%;
    font-weight: 600;
}

/*-----------------------------------------------------------*/
/*TOPBAR*/
/*-----------------------------------------------------------*/

.section-topbar {
    background-color: var(--color-white);
    padding-top: 1rem;
    box-shadow: 0px 0px 6px var(--color-black-light);
}

.logo {
    font-size: 200%;
    padding: 0;
    font-weight: bold;
    margin-top: -1rem;
    margin-left: 1rem;
}

.cityAndLang--city ul {
    list-style: none;
    font-size: 100%;
    display: flex;
    align-items: center;
}

.cityAndLang--city ul li {
    margin-left: 1rem;
}

.cityAndLang--city ul li:first-child {
    margin-left: 0;
}


.register-sign-btn-div {
    float: right;
}


.register-sign-btn:link,
.register-sign-btn:visited {
    color: var(--color-black-dark);
    text-decoration: none;
    padding: .5rem;
    border-radius: 5px;
    background-color: var(--color-bg-light);
    transition: background-color .3s;
}

.register-sign-btn:hover,
.register-sign-btn:active {
    background-color: var(--color-our-theme);
    color: var(--color-white);
}

.container {
    max-width: 1185px;
    margin: 0 auto;
}

/*-----------------------------------------------------------*/
/*HEADER*/
/*-----------------------------------------------------------*/
.btn:link,
.btn:visited {
    color: var(--color-white);
}

.logo-icon {
    width: 175px;
    /*width: 220px;
    position: absolute;
    height: auto;
    top: 5px;
    left: 10px;*/
}

.navbar-dark .navbar-nav .nav-link:link,
.navbar-dark .navbar-nav .nav-link:visited {
    text-decoration: none;
    color: var(--color-white);
    padding-bottom: .5rem;
    transition: all .2s;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

/*.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:active {
    border-bottom: 2px solid var(--color-white);
}*/
/*.navbar-dark .navbar-nav .nav-item:hover,
.navbar-dark .navbar-nav .nav-item.active {
    border-bottom: 2px solid var(--color-white);
}*/

.section-Header {
    height: 80vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-Header-v2 {
    height: 50vh;
}


.section-Header-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../impacto-content/images/imgs/images/Banners/bg1.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: all .5s
}

.section-Header-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../impacto-content/images/imgs/images/Banners/bg2.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: all .5s
}

.section-Header-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../impacto-content/images/imgs/images/Banners/bg3.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: all .5s
}

.section-Header-4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../impacto-content/images/imgs/images/Banners/bg4.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: all .5s
}

.section-Header-5 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../impacto-content/images/imgs/images/Banners/bg5.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: all .5s
}

.section-Header-6 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../impacto-content/images/imgs/images/Banners/bg6.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: all .5s
}


.carousel-item {
    height: auto;
    color: var(--color-white);
    padding-bottom: 2rem;
}

.main-nav {
    list-style: none;
    float: right;
    display: flex;
}

.main-nav li {
    margin-right: 1rem;
    font-size: 90%;
}

.main-nav li:last-child {
    margin-right: 0;
}

.header-section--content {
    padding: 0 1.5rem 2rem 0;
}


.nav-item {
    font-size: 90%;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

.section-Header .dropdown-menu {
    padding: 0;
    color: #fff;
    background-color: transparent;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    transition: all .5s;
}

.section-Header .dropdown-item {
    color: #FFFFFF;
}

.section-Header .dropdown-menu>li>a:hover,
.section-Header .dropdown-menu>li>a:focus {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.9) 100%);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.9) 100%);
    color: #000;
}



/*-----------------------------------------------------------*/
/*LOAN TYPES*/
/*-----------------------------------------------------------*/

#types-of-loans-Id {
    display: none;
}

.section-loanTypes {
    background-color: #eee;
    /*background-color: var(--color-white);*/
}


.main-flex-box {
    display: flex;
    font-weight: bold;
    margin-top: -2.5rem;
    justify-content: space-around;
}

.sub-flex-box-6:after:hover {
    background-color: red;
}


.loan-pos-links {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loan-pos-links a:link,
.loan-pos-links a:visited {
    text-decoration: none;
    color: var(--color-black-dark);
    font-size: 100%;
    white-space: nowrap;
    transition: all .3s;
}

.loan-pos-links a:hover {
    color: var(--color-our-theme);
}

/*-----------------------------------------------------------*/
/*HOW IT WORKS*/
/*-----------------------------------------------------------*/


.section-howitworks {
    background-color: #fbfbfb;
    padding: 3rem 0;
}


.right-mark-image {
    width: 30px;
    height: auto;
}

.img-sub-bg,
.flex-img-sub-bg {
    display: inline-block;
    padding: .9rem;
    border-radius: 50%;
    margin-bottom: 0;
}

.img-sub-bg {
    background-color: #D4E1F4;
}

.flex-img-sub-bg {
    /*background-color: #B8BFFF;*/
    background-color: var(--color-our-theme);
    box-shadow: 0px 0px 6px var(--color-black-light);
    transition: background-color .5s;
}

.flex-img-sub-bg:hover {
    background-color: #9a9fd2;
    cursor: pointer;
}

.img-main-bg,
.flex-img-main-bg {
    display: inline-block;
    background-color: var(--color-white);
    border-radius: 50%;
    margin: 0;
    padding: .5rem;

    position: relative;
    z-index: 1;
}

.img-main-bg {
    box-shadow: 0px 10px 13px var(--color-black-verylight);
}

.flex-img-main-bg {
    box-shadow: 0px 5px 13px var(--color-black-verylight);
}



.main-box {
    display: flex;
}

.main-box:after {
    content: '';
    display: inline-block;
    width: 80%;
    border-bottom: 4px dashed var(--color-black-dark);
    position: absolute;
    top: 45px;
    right: 85px;
    text-align: center;
}


.box-1,
.box-2,
.box-3,
.box-4,
.box-5,
.box-6,
.sub-flex-box-1,
.sub-flex-box-2,
.sub-flex-box-3,
.sub-flex-box-4,
.sub-flex-box-5,
.sub-flex-box-6 {
    display: inline-block;
    text-align: center;
    width: 18%;
    color: var(--color-black-dark);
    position: relative;
    outline: none;
}


.box-1:after {
    content: "Select individual or corporate";
    display: block;
    font-size: 100%;
    padding: 1.5rem;
}

.box-2:after {
    content: "Provide the documents";
    display: block;
    font-size: 100%;
    padding: 1.5rem;
}

.box-3:after {
    content: "Instantaneously matched with a multitude of bank";
    display: block;
    font-size: 100%;
    padding: 1.5rem;
}

.box-4:after {
    content: "Will be presented with a variety of options form banks";
    display: block;
    font-size: 100%;
    padding: 1.5rem;
}

.box-5:after {
    content: "Will have a option to select only one bank";
    display: block;
    font-size: 100%;
    padding: 1.5rem;
}

.box-6:after {
    content: "End of customer portal";
    display: block;
    font-size: 100%;
    padding: 1.5rem;
}

/*-----------------------------------------------------------*/
/*WHY PAISAPAISA*/
/*-----------------------------------------------------------*/

.section-gabl {
    width: 100%;
    margin: 0 auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.gabl-title {
    /*margin-left: -8rem;*/
    text-align: center;
    padding-bottom: 1.5rem;
}

.gabl-img {
    width: 80%;
    margin-top: -5rem;
}

.section-gabl ul {
    list-style: none;
    margin-left: -4rem;
}

.section-gabl ul li {
    display: flex;
    align-items: center;
    padding-top: 1rem;
}

.section-gabl ul li figure {
    margin-right: 1rem;
}

.right-mark-image-gabl {
    width: 40px;
    height: auto;
}

.section-gabl ul li p {
    font-size: 100%;
}

/*-----------------------------------------------------------*/
/*LOANS WITH US*/
/*-----------------------------------------------------------*/


.section-loanwithus {
    padding: 3rem 0;
    background-color: #fbfbfb;
}

.info-box {
    background-color: #FCE86D;
    height: 15vh;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 5px var(--color-black-light);
}

.info-box p {
    font-size: 100%;
    padding: 1.5rem;
}

.learn-more-div {
    text-align: center;
    margin-top: -1rem;
}


/*-----------------------------------------------------------*/
/*TALK TO US*/
/*-----------------------------------------------------------*/
.pp_talktous_section {
    width: 95%;
    /*    padding: 3rem 0;*/
    margin: 0 auto;
}

.pp_talktous_content {
    margin-top: 8rem;
    padding: 0 2rem;
}


.pp_talktous_image {
    width: 90%;
    height: auto;
    margin-top: 40px;
}

.pp_talktous_content p {
    color: #707070;
}

/*.pp_talktous_content a:link,
.pp_talktous_content a:visited {
    text-decoration: none;
    color: blue;
    padding: .5rem;
    box-shadow: inset 0 -2px 0 -1px blue;
    transition: box-shadow .15s ease-in-out, color .15s ease-in-out;
    line-height: 40px;
}

.pp_talktous_content a:hover {
    box-shadow: inset 0 -40px 0 -1px blue;
    color: var(--color-white);
}

.pp_talktous_content a span {
    font-size: 120%;
}*/

/*-----------------------------------------------------------*/
/*ADVANTAGES*/
/*-----------------------------------------------------------*/


.section-advantages {
    padding: 4rem 0;
    background-color: #fbfbfb;
}

.advantage-box {
    text-align: center;
}

.advantage-box figure {
    display: inline-block;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0px 0px 6px var(--color-black-light);
    transition: background-color .3s;
}

.advantage-box:hover figure {
    background-color: #eee;
}

.advantage-box-image {
    width: 30px;
    height: auto;
}

.advantage-box p {
    padding: 0 3rem;
    font-size: 100%;
}

/*-----------------------------------------------------------*/
/*FOOTER*/
/*-----------------------------------------------------------*/

.section-footer {
    padding: 3rem 0 0 0;
    background-color: rgba(0, 0, 0, 0.975);
}

.section-footer ul {
    list-style: none;
    color: var(--color-white);
    font-size: 100%;
}

.section-footer-box {
    font-size: 100%;
    display: flex;
}

.section-footer ul li {
    padding-left: .1rem;
    padding-top: .2rem;
    font-size: inherit;
}

.section-footer ul li:first-child {
    padding-left: .1rem;
    padding-top: 1rem;
}

.footer-contact-box {
    margin-top: 3rem;
}

.footer-titles {
    color: var(--color-our-theme) !important;
    text-transform: uppercase;
    font-size: 100%;
    font-weight: bold;
}

.footer-link:link,
.footer-link:visited,
.footer-link:hover,
.footer-link:active {
    text-decoration: none;
    color: var(--color-white);
}

.footer-form p {
    color: var(--color-white);
    margin-bottom: .5rem;
}


.footer-form input {
    display: block;
    border-radius: 5px;
    border: none;
    padding: .8rem;
    width: 100%;
    outline: none;
    font-size: 100%;
    height: auto;
    margin-bottom: 1rem;
}

/*.footer-form a:link,
.footer-form a:visited,
.footer-form a:hover,
.footer-form a:active {
    text-decoration: none;
    color: var(--color-white);
    background-color: #0019FF;
    padding: .5rem 1rem;
    border-radius: 2px;
}*/

.footer-line {
    border-bottom: 1px solid var(--color-white);
    padding-bottom: 2rem;
}

.footer-social-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.footer-social-content>a {
    display: inline-block;
    width: 35px;
    height: 35px;
    text-align: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-size: 120%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-social-content>a:hover {
    text-decoration: none;
}

.bt-linkedin {
    background-color: var(--color-white);
    color: #2073b0;
}

.bt-linkedin:hover {
    background-color: #2073b0;
    color: var(--color-white);
}

.bt-twitter {
    background-color: var(--color-white);
    color: #30a1f2;
}

.bt-twitter:hover {
    background-color: #30a1f2;
    color: var(--color-white);
}

.bt-facebook {
    background-color: var(--color-white);
    color: #3b5999;
}

.bt-facebook:hover {
    background-color: #3b5999;
    color: var(--color-white);
}

.bt-youtube {
    background-color: var(--color-white);
    color: #df462b;
}

.bt-youtube:hover {
    background-color: #df462b;
    color: var(--color-white);
}

.bt-instagram {
    background-color: var(--color-white);
    color: #d6249f;
}

.bt-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: var(--color-white);
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    color: var(--color-white);
    font-size: 90%;
}

.footer-logo-image {
    outline: none;
}

.footer-logo-image>img {
    width: 120px;
    margin: 0;
}


/*-----------------------------------------------------------*/
/*COMMING SOON PAGE*/
/*-----------------------------------------------------------*/

#section-commingsoon {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../../impacto-content/images/img/soon.jpg);
    height: 100vh;
    background-position: center;
    background-size: cover;
    position: relative;
}

.soon-content {
    padding-top: 15rem;
    text-align: center;
}

.soon-content a {
    animation: hideToVis .7s;
}

.soon-content h2 {
    color: #fff;
    font-size: 250%;
    word-spacing: 5px;
    white-space: nowrap;
    border: 1px solid;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0px 5px 2px #000;
    animation: topToBottommove .9s;
}

@keyframes topToBottommove {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    80% {
        opacity: 0.5;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hideToVis {
    0% {
        opacity: 0;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}



.bg-clsss {
    background-color: #000 !important;
    background: #000 !important
}

/*-----------------------------------------------------------*/
/*THEME 2 MENU*/
/*-----------------------------------------------------------*/
/*@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Medium.ttf");
    src: url("fonts/Poppins-Regular.ttf");
    src: url("fonts/Poppins-SemiBold.ttf");
}*/
/*@font-face {
    font-family: 'Poppins';
    font-display:swap;
    font-style: normal;
    font-weight: 500;
    src: url("fonts/Poppins-Medium.ttf"), url(https://fonts.gstatic.com/s/poppins/v13/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}*/

/*@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: local('Poppins Regular'), local('Poppins-Regular'), url(https://fonts.gstatic.com/s/poppins/v13/pxiEyp8kv8JHgFVrJJbecmNE.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}*/
/*@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');*/
.navbar-light {
    /*font-family: 'Poppins', sans-serif;*/
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .2);
    border-bottom-color: rgba(255, 255, 255, 0);
    border-bottom: 1px solid rgba(255, 255, 255, .04);

    /*background: rgba(0,0,0,.43) !important;*/
}

.navbar-light .btn-outline-theme:link,
.navbar-light .btn-outline-theme:visited {
    color: var(--color-our-theme);
}

.navbar-light .btn-outline-theme {
    color: var(--color-our-theme);
    border-color: #756aee88;
    border-radius: 0px;
}

.navbar-light .btn-outline-theme:hover {
    background-color: var(--color-our-theme);
    color: #fff;
    border-color: var(--color-our-theme);
}

.navbar-light .navbar-nav .nav-item .nav-link::before {
    position: absolute;
    content: '';
    bottom: -8px;
    left: 0;
    height: 3px;
    width: 100%;
    background: var(--color-our-theme);
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all .2s ease;
}

.navbar-light .navbar-nav .nav-item .nav-link {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    color: #151515;
    transition: .25s;
    font-weight: 500;
    padding: 2px;
    letter-spacing: 0.5px;
    outline: none;
}

.navbar-light .navbar-nav .nav-item.active .nav-link::before,
.navbar-light .navbar-nav .nav-link:hover::before {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.navbar-light .nav-item+.nav-item {
    margin-left: 15px;
}

.navbar-light .dropdown-toggle::after {
    content: unset !important;
}

.navbar-light .navbar-nav .dropdown-menu .dropdown-menu {
    margin-top: 15px;
}

.navbar-products .dropdown-toggle+.dropdown-menu {
    margin-top: 5px !important;
    /*padding: 20px 0px 20px 10px !important;*/
}

.navbar-products .dropdown-toggle+.dropdown-menu,
.navbar-light .navbar-nav .dropdown-menu .dropdown-menu,
.navbar-light .navbar-nav .dropdown-menu {
    /*display: block !important;*/
    display: block;
    visibility: hidden;
    opacity: 0;
    text-align: left;
    transform: translate3d(0, 30px, 0);
    transition: 0.35s all cubic-bezier(0.65, 0.05, 0.36, 1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    left: 0;
    padding: 20px 25px 20px 25px;
    background: #ffffff;
    z-index: 5;
    border-radius: 0px;
    border: 0;
}

.navbar-products .dropdown-toggle:hover+.dropdown-menu,
.navbar-products .dropdown-toggle+.dropdown-menu:hover,
.navbar-light .nav-link+.dropdown-menu:hover .dropdown-submenu .dropdown-item+.dropdown-menu:hover,
.navbar-light .nav-link+.dropdown-menu:hover .dropdown-submenu .dropdown-item:hover+.dropdown-menu,
.navbar-light .nav-link+.dropdown-menu .dropdown-submenu .dropdown-item:hover+.dropdown-menu,
.navbar-light .navbar-nav .nav-link:hover+.dropdown-menu,
.navbar-light .navbar-nav .nav-link+.dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate3d(0, 0, 0) !important;
}



.navbar-products .dropdown-toggle+.dropdown-menu .dropdown-item,
.navbar-light .dropdown-menu .dropdown-item,
.navbar-light .dropdown-submenu .dropdown-item {
    position: relative;
    left: 0;
    display: flex;
    padding: 1px 14px 1px 0;
    text-align: left;
    font-size: 14px;
    color: #151515;
    font-weight: 500;
    transition: all .2s ease;
}

.navbar-products .dropdown-toggle+.dropdown-menu>li>a:hover,
.navbar-products .dropdown-toggle+.dropdown-menu>li>a:focus,
.navbar-light .dropdown-menu>li>a:hover,
.navbar-light .dropdown-menu>li>a:focus,
.navbar-light .dropdown-menu .dropdown-item:hover,
.navbar-light .dropdown-submenu .dropdown-item:hover {
    padding-left: 14px;
    padding-right: 0;
    background-image: unset;
    background-image: unset;
    background-repeat: unset;
    background-color: unset;
}

.navbar-products .dropdown-toggle+.dropdown-menu .dropdown-item:hover::before,
.navbar-light .dropdown-menu .dropdown-item:hover::before,
.navbar-light .dropdown-submenu .dropdown-item:hover::before {
    transform: translateX(-14px);
    visibility: visible;
    opacity: 1;
    transition-delay: .1s;
}

.navbar-products .dropdown-toggle+.dropdown-menu .dropdown-item::before,
.navbar-light .dropdown-menu .dropdown-item::before,
.navbar-light .dropdown-submenu .dropdown-item::before {
    display: inline-block;
    position: relative;
    content: '';
    top: 0;
    left: 0;
    width: 3px;
    height: 26px;
    font-size: 0;
    line-height: 0;
    background: var(--color-our-theme);
    transition: all .15s ease;
    visibility: hidden;
    opacity: 0;
}

.navbar-light .dropdown-submenu+.dropdown-submenu {
    margin-top: 8px;
}

.navbar-products .dropdown-toggle+.dropdown-menu .dropdown-menu-item,
.navbar-light .dropdown-menu-item+.dropdown-menu-item {
    margin-top: 8px;
}

.navbar-light .side-menu {
    margin-left: 50px !important;
}

#carouselExampleSlidesOnly {
    /*margin-top: 70px !important;*/
    padding-top: 100px !important;
}

.navbar-products .dropdown-toggle+.dropdown-menu>li>a {
    font-size: 13px !important;
}

/* ------------------------------------------ */
/* TABLET */
/* ------------------------------------------ */

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .navbar-light .navbar-nav .nav-item .nav-link {
        font-size: 12px;
    }

    .navbar-products .dropdown-toggle+.dropdown-menu,
    .navbar-light .navbar-nav .dropdown-menu .dropdown-menu,
    .navbar-light .navbar-nav .dropdown-menu {
        padding: 15px 20px 15px 20px;
    }

    .navbar-products .dropdown-toggle+.dropdown-menu .dropdown-item,
    .navbar-light .dropdown-menu .dropdown-item,
    .navbar-light .dropdown-submenu .dropdown-item {
        font-size: 12px;
    }
}

@media only screen and (max-width: 767px) {

    .navbar-light .navbar-brand {
        margin-right: auto;
        margin-left: auto;
    }

    .navbar-light .navbar-brand+button {
        position: absolute;
        padding: 0px;
        border: 0;
        font-size: x-large;
        outline: none;
        top: 25px;
        left: 20px;
    }

    .navbar-light .navbar-brand+button .fa {
        color: var(--color-our-theme);
        /*display: block;*/
        visibility: visible;
        opacity: 1;
        /*transition: .5s all ease;*/
        transition: 0.8s all cubic-bezier(0.65, 0.05, 0.36, 1);
        position: absolute;
    }

    .navbar-light .navbar-brand+button.navbar-toggler[aria-expanded="true"] .fa-bars {
        visibility: hidden;
        opacity: 0;
        transform: rotate(180deg);
    }

    .navbar-light .navbar-brand+button.navbar-toggler[aria-expanded="false"] .fa-arrow-left {
        visibility: hidden;
        opacity: 0;
        transform: rotate(180deg);
    }

    .pp_navbar_extra {
        padding-top: 20px;
        padding-bottom: 20px;
        margin-top: 10px;
        border-top: 1px solid var(--color-our-theme);
        /*border-bottom: 1px solid var(--color-our-theme);*/
    }

    .navbar-light .navbar-toggler {
        color: rgba(0, 0, 0, .5);
        border-color: #756aee88;
        border-radius: 0px;
    }

    .navbar-light .navbar-collapse.collapse.show {
        transform: translateX(0);
        opacity: 1;
    }

    .navbar-light .nav-item+.nav-item {
        margin-left: 0px;
    }

    .navbar-light .navbar-nav .dropdown-menu .dropdown-menu,
    .navbar-light .navbar-nav .dropdown-menu {
        /*display: none !important;*/
        display: none;
        opacity: 1;
        visibility: unset;
    }

    .navbar-light .navbar-nav .dropdown-menu .dropdown-menu.show,
    .navbar-light .navbar-nav .dropdown-menu.show {
        /*display: none !important;*/
        display: block;
        opacity: 1;
        visibility: unset;
    }

    .navbar-light .side-menu {
        margin-left: 10px !important;
    }


    .navbar-light .navbar-nav .nav-item .nav-link {
        padding: 15px !important;
        width: 100%;
    }

    .navbar-light .navbar-collapse {
        color: #ffffff;
        background: #ffffff;
        /*border: 1px solid #d7d7d7;*/
        border: 0;
        box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
    }

    .navbar-light .navbar-collapse {
        opacity: 0;
        display: block;
        position: fixed;
        left: 0;
        top: 76px;
        bottom: -56px;
        z-index: 1029;
        width: 290px;
        height: 100%;
        padding: 3px 0 80px 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        font-size: 14px;
        line-height: 34px;
        transform: translateX(-110%);
        transition: 0.5s all cubic-bezier(0.65, 0.05, 0.36, 1);
        /*transition: 0.4s all ease-out;*/
    }

    .navbar-light .nav-item+.nav-item {
        margin-top: 2px;
    }

    .navbar-light .nav-item.active,
    .navbar-light .navbar-nav .nav-item .nav-link[aria-expanded="true"] {
        background-color: var(--color-our-theme);
    }

    .navbar-light .nav-item.active .nav-link,
    .navbar-light .navbar-nav .nav-item .nav-link[aria-expanded="true"] {
        color: #fff;
    }

    .navbar-light .navbar-nav .nav-item .nav-link::before {
        position: unset;
        content: '';
        bottom: unset;
        left: unset;
        height: unset;
        width: unset;
        background: unset;
        opacity: unset;
        visibility: unset;
        transform: unset;
        transition: unset;
    }

    /*.navbar-light .dropdown-toggle::after {
        right: 10px;
        position: absolute;
        top: 25px;
    }*/

    .navbar-light .nav-item {
        padding-left: 0rem !important;
    }

    .navbar-light .navbar-nav .dropdown-menu .dropdown-menu,
    .navbar-light .navbar-nav .dropdown-menu {
        box-shadow: unset;
        padding: 10px 20px 20px 20px;
    }

    .navbar-products .dropdown-toggle+.dropdown-menu>li>a:hover,
    .navbar-light .dropdown-menu>li>a:hover,
    .navbar-light .dropdown-menu>li>a:focus {
        background-image: unset;
        background-image: unset;
        background-repeat: unset;
        filter: unset;
        background-color: unset;
    }

    .navbar-products .dropdown-toggle+.dropdown-menu {
        padding: 10px 10px 10px 15px;
    }

    .navbar-products .dropdown-toggle+.dropdown-menu>li>a {
        font-size: 12px !important;
    }

    .navbar-products .dropdown-toggle+.dropdown-menu,
    .navbar-light .dropdown-menu {
        background: #ffffff;
        border-radius: 0px;
        border: 0;
    }

    .navbar-products .dropdown-toggle+.dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: 0.35s all cubic-bezier(0.65, 0.05, 0.36, 1);
    }

    .navbar-products .dropdown-toggle:hover+.dropdown-menu.show,
    .navbar-products .dropdown-toggle+.dropdown-menu.show {
        display: block;
        visibility: visible;
        opacity: 1;
        transition: 0.35s all cubic-bezier(0.65, 0.05, 0.36, 1);
    }


}


@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}


@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}


.carousel-item.active .fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.carousel-item.active .animated1 {
    -webkit-animation-duration: .2s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 1 !important;
}

.carousel-item.active .animated2 {
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 1 !important;
}

.carousel-item.active .animated3 {
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 1 !important;
}

.carousel-item:not(.active) .not-animated {
    opacity: 0;
}

.carousel .container>.row>.col-sm-6 {
    padding-top: 50px;
}

/*.carousel-indicators2,*/
.carousel-indicators {
    left: unset;
    margin-right: 5%;
    bottom: 10%;
    flex-direction: column;
    float: left;
}

.carousel-item-content-list {
    padding-top: 10px;
}

.carousel-indicators2 li.active,
.carousel-indicators li.active {
    /*background-color: var(--color-our-theme) !important;*/
}


.btn-theme:link,
.btn-theme:visited {
    text-decoration: none;
    color: var(--color-white);
    border-radius: 0px;
    background-color: var(--color-our-theme);
    padding: .5rem 1rem;
    letter-spacing: 1px;
    font-size: 90%;
    display: inline-block;
    backface-visibility: hidden;
    white-space: nowrap;
    font-weight: bold;
    border: 1px solid var(--color-our-theme);
    /*transition: all .2s;*/
}

.btn-theme2:link,
.btn-theme2:visited {
    text-decoration: none;
    color: var(--color-white);
    border-radius: 0px;
    background-color: var(--color-our-theme2);
    padding: .5rem 1rem;
    letter-spacing: 1px;
    font-size: 90%;
    display: inline-block;
    backface-visibility: hidden;
    white-space: nowrap;
    font-weight: bold;
    border: 1px solid var(--color-our-theme2);
    /*transition: all .2s;*/
}


.btn-animate:hover {
    transition: background .4s .4s, border-color .4s 0s, color .2s 0s;
}

.btn-theme:hover,
.btn-theme:active {
    color: #ffffff;
    background-color: var(--color-our-theme);
    border-color: var(--color-our-theme);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.btn-theme2:hover,
.btn-theme2:active {
    color: #ffffff;
    background-color: var(--color-our-theme2);
    border-color: var(--color-our-theme2);
}

.box-icon-modern-decor+.button {
    margin-top: 8px;
}

.btn-animate:hover::before {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

.box-icon-modern-decor+.button {
    margin-top: 8px;
}

*+.button {
    margin-top: 30px;
}

.btn-animate,
.btn-animate::before {
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-animate {
    position: relative;
    z-index: 0;
    /* transition: background .4s, border-color .4s, color .4s; */
}

.btn-theme,
.btn-theme:focus {
    color: #ffffff;
    background-color: var(--color-our-theme);
    border-color: var(--color-our-theme);
}

.btn-theme2,
.btn-theme2:focus {
    color: #ffffff;
    background-color: var(--color-our-theme2);
    border-color: var(--color-our-theme2);
}

/*
.button {
    position: relative;
    overflow: hidden;
    display: inline-block;
    min-width: 200px;
    padding: 17px 33px 15px;
    font-size: 14px;
    line-height: 1.34;
    border: 2px solid;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
    user-select: none;
    transition: 250ms all ease-in-out;
}
*/

.btn-theme.btn-animate::before {
    background: #151515;
}

.btn-animate,
.btn-animate::before {
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-animate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    height: 101%;
    background: #756aee;
    z-index: -1;
    opacity: 0;
    transform: scale3d(0.7, 1, 1);
    transition: transform 0.42s, opacity 0.42s;
    border-radius: inherit;
}


/**
*
* Products Starts
*
**/

#filters .button {
    display: inline-block;
    padding: 0.1em 1.0em;
    border: none;
    border-radius: 0px !important;
    font-family: sans-serif;
    font-size: 18px;
    text-shadow: 0 1px white;
    cursor: pointer;
    outline: none;
    color: #9b9b9b;
    line-height: 1;
    font-weight: 500;
    letter-spacing: .05em;
    font-weight: bold;
    background: transparent;
}

#filters .button:hover {
    color: var(--color-our-theme);
}

#filters .button:active,
#filters .button:focus,
#filters .button.is-checked {
    outline: none;
    color: var(--color-our-theme);
    /*background-color: var(--color-our-theme);*/
}

/* ---- button-group ---- */

#filters.button-group {
    margin-bottom: 20px;
}

#filters.button-group:after {
    content: '';
    display: block;
    clear: both;
}

#filters.button-group .button:not(:first-child) {
    float: left;
    border-radius: 0;
    margin-left: 0;
    margin-right: 1px;
    margin: 2px;
    outline: none;
    border-left: 1px solid #9b9b9b;
}

#filters.button-group .button:first-child {
    border-radius: 0.5em 0 0 0.5em;
}

#filters.button-group .button:last-child {
    border-radius: 0 0.5em 0.5em 0;
}

/* ---- isotope ---- */

.grid {
    /*border: 1px solid #333;*/
}

/* clear fix */
.grid:after {
    content: '';
    display: block;
    clear: both;
}

/* ---- .element-item ---- */

.element-item {
    position: relative;
    float: left;
    height: 300px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.element-item>* {
    margin: 0;
    padding: 0;
}

.pp-product-intro-block {
    padding: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 300px;
    max-width: 100%;
    height: 270px;
    box-shadow: 0 0 2px #eee;
    flex-direction: column;
    background-color: #f7f7f7;
}

.pp-product-caption-block {
    position: absolute;
    /*top: 15px;*/
    padding: 20px;
    background: #fff;
    width: 270px;
    max-width: 100%;
    height: 240px;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-20px, 20px, 0);
    /*margin: 15px;*/
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.pp-product-intro-block:hover+.pp-product-caption-block,
.pp-product-intro-block+.pp-product-caption-block:hover {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: all .3s ease;
}

.pp-product-intro-block .name {
    text-align: center;
    font-size: 1rem;
    margin-bottom: .5rem;
}

.pp-product-intro-block>img {
    width: 80%;
}

#filters {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pp-product-caption-block>.pp-product-caption-footer:hover {
    cursor: pointer;
    text-decoration: underline;
}

.pp-product-caption-block>.pp-product-caption-title {
    color: var(--color-our-theme);
    font-weight: bold;
    text-align: center;
}

.pp-product-caption-block>.pp-product-caption-content {
    font-size: 14px;
    color: #666;
    text-align: center;
}

.pp-product-caption-block>.pp-product-caption-footer {
    font-size: 13px;
    color: var(--color-our-theme);
    font-weight: bold;
    text-align: center;
    outline: none;
    margin-top: 10px;
}

/**
*
* How It Works Starts
*
**/
#howitworks {
    background-color: #FdFdFd;
}

#carousel-howitworks.vertical .carousel-indicators {
    flex-direction: row !important;
    margin: 0px !important;
    position: unset;
    float: unset !important;
}

/*#carousel-howitworks .carousel-indicators li {*/
#carousel-howitworks .carousel-indicators .col {
    width: 240px !important;
    height: 215px !important;
}

#carousel-howitworks.carousel.vertical {
    position: relative;
}

#carousel-howitworks.carousel.vertical .carousel-inner {
    height: 100%;
    width: auto;
}

#carousel-howitworks .content-block {
    background: #fff;
    width: 100% !important;
    height: 100% !important;
    transition: all 0.8s;
    /*padding: 5px;*/
    padding: 0px 15px 20px 15px;
    margin: 0px;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    display: flex;
    opacity: 0.9;
    border-radius: 30px;
}

.carousel-indicators .content-block#how1:before {
    content: "1" !important;
}

.carousel-indicators .content-block#how2:before {
    content: "2" !important;
}

.carousel-indicators .content-block#how3:before {
    content: "3" !important;
}

.carousel-indicators .content-block#how4:before {
    content: "4" !important;
}

.carousel-indicators .content-block#how5:before {
    content: "5" !important;
}

.carousel-indicators .col.active .content-block:before {
    /*font-size: 18px;*/
    /*transition: all .3s ease-in-out;*/
    animation-name: animate-how-it-work-number;
    animation-duration: 0.6s;
}

@keyframes animate-how-it-work-number {
    0% {
        transform: scale3d(1, 1, 1);
        transition: all .2s ease-in-out;
    }

    50% {
        transform: scale3d(1.3, 1.3, 1.3);
        transition: all .2s ease-in-out;
    }

    100% {
        transform: scale3d(1, 1, 1);
        transition: all .2s ease-in-out;
    }
}

.carousel-indicators .content-block:before {
    content: "";
    position: absolute;
    top: 0;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background: var(--color-our-theme);
    padding: 12px;
    z-index: 0;
    left: 0;
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
    /*transition: all .3s ease-in-out;*/
}

#carousel-howitworks .col:hover .content-block,
#carousel-howitworks .col.active .content-block {
    opacity: 1;
}

/*#carousel-howitworks li .content-block:after {*/
#carousel-howitworks .col .content-block:after {
    display: inline-block;
    position: relative;
    content: '';
    bottom: -20px;
    width: 0.0001%;
    height: 4px;
    background: var(--color-our-theme);
    transition: all .5s ease;
    visibility: visible;
    opacity: 1;
}

/*#carousel-howitworks li:hover .content-block:after,
#carousel-howitworks li.active .content-block:after {*/
#carousel-howitworks .col:hover .content-block:after,
#carousel-howitworks .col.active .content-block:after {
    display: inline-block;
    position: relative;
    content: '';
    bottom: -20px;
    /*width: calc(100% + 30px);*/
    /*height: 4px;*/
    background: var(--color-our-theme);
    transition: all .5s ease;
    visibility: visible;
    opacity: 1;
}

#carousel-howitworks.vertical .carousel-indicators .col:hover,
#carousel-howitworks.vertical .carousel-indicators .col.active {
    /*#carousel-howitworks.vertical .carousel-indicators li.active {*/
    opacity: 1;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    transition: all .5s ease;
}

#carousel-howitworks .content-image {
    margin: 0px;
    height: 120px;
    width: 120px;
    transition: all .2s ease;
}

#carousel-howitworks .content-title {
    font-size: 14px;
    color: #000;
    font-weight: bold;
    text-align: center;
}

#carousel-howitworks .active .content-title,
#carousel-howitworks .active .content-body {
    color: var(--color-our-theme);
}

#carousel-howitworks .content-body {
    font-size: 14px;
    color: #676767;
    font-weight: normal;
    text-align: center;
}

#carousel-howitworks.carousel.vertical .col.active .content-image {
    /*#carousel-howitworks.carousel.vertical li.active .content-image {*/
    /*transform: scale(1.1);*/
    /*transition: all .5s ease;*/
}

#carousel-howitworks.vertical .carousel-indicators .col {
    /*#carousel-howitworks.vertical .carousel-indicators li {*/
    background: #FFF;
    color: #000;
    display: block;
    padding: 10px;
    height: 20px;
    width: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
    box-shadow: 0 0 2px #ccc;
    text-indent: 1px;
    margin: 20px 25px !important;
    font-weight: bold;
    font-size: 18px;
    transition: all .2s ease;
    border: 0px;
    border-bottom: 4px solid #fff;
    opacity: 1;
    cursor: pointer;
    border-radius: 40px;
}

#carousel-howitworks.vertical .carousel-indicators:before {
    content: "";
    width: 90%;
    position: absolute;
    border-bottom: 5px solid var(--color-our-theme);
    top: 45%;
}


#carousel-howitworks.carousel.vertical .carousel-inner>.carousel-item-next,
#carousel-howitworks.carousel.vertical .carousel-inner>.carousel-item-prev,
#carousel-howitworks.carousel.vertical .carousel-inner>.carousel-item-right {
    /*transform: translate3d(-100%, 0, 0) !important;
    right: 0;*/
    transform: translate3d(0, 100%, 0) !important;
    top: 0;
}

#carousel-howitworks.carousel.vertical .carousel-inner>.carousel-item-left,
#carousel-howitworks.carousel.vertical .carousel-inner>.prev.carousel-item-right,
#carousel-howitworks.carousel.vertical .carousel-inner>.next.carousel-item-left,
#carousel-howitworks.carousel.vertical .carousel-inner>.active {
    transform: translate3d(0, 0, 0) !important;
    /*right: 0;*/
    top: 0;
}

#carousel-howitworks.carousel.vertical .carousel-inner>.active.carousel-item-right,
#carousel-howitworks.carousel.vertical .carousel-inner>.active.carousel-item-left {
    transform: translate3d(0, -100%, 0) !important;
    top: 0;
    /*transform: translate3d(100%, 0, 0) !important;
    right: 0;*/
}

/* Logo Start */
.navbar-brand {
    padding: 0px;
    margin: 0px;
}

.logo-image {
    width: 75px;
    margin: 0 0 0 15px;
}

/* Logo End */

/* Why Start */
#pp-why-section .pp-why-section-block {
    padding-left: 40px;
    padding-right: 40px;
}

.video-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-holder {
    width: 100%;
    height: 95%;
    outline: none;
}

#pp-why-section .content-block {
    display: flex;
    justify-content: center;
    align-content: center;
}

#pp-why-section .first-column {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: flex-end;
}

#pp-why-section .last-column {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: flex-start;
}

#pp-why-section .main {
    text-align: center;
    max-width: 270px;
    /*padding: 40px 30px;*/
    padding: 35px 25px;
    background: #ffffff;
    box-shadow: 0 0 13px -4px rgba(0, 0, 0, 0.17);
    transition: all .3s ease;
    max-height: 100%;
    border-radius: 10px;
}

#pp-why-section .main .sub {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#pp-why-section .sub p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

#pp-why-section .sub>img {
    transition: all .3s ease-in-out;
    border-radius: 50px;
    transform: scale(1);
    width: 50px;
    height: auto;
    margin-bottom: 5px;
}

#pp-why-section .main:hover .sub>img {
    transform: scale(1.1);
    transition: all .3s ease-in-out;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .20) !important;
    background-color: transparent;
}

#pp-why-section .main:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}


/* Why End */
/* Finance News Start */
#finance-section>.finance-section-container {
    padding-left: 40px;
    padding-right: 40px;
}

#horizontalScrollBlock {
    position: relative;
    margin-top: -.25em;
    display: inline-block;
    width: 100%;
    /*overflow-x: auto;*/
    overflow-x: hidden;
    overflow-y: hidden;
}

#horizontalScrollBlock>#finance-block {
    overflow: hidden;
    width: max-content;
    padding: 0px 10px;
}

#finance-block-row {
    margin: 20px 5px;
    padding: 20px 5px;
    max-height: 100%;
    height: 160px;
    width: 98%;
}

#finance-block-row:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

#finance-block-row img {
    height: 100px;
    width: 100px;
}

#finance-block-row a {
    color: var(--color-our-theme);
    font-size: 14px;
}

#finance-block {
    flex-direction: row;
    display: flex;
}

#finance-block #finance-block-row {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#finance-block .image-block {
    /*width: 100px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;*/
    flex: 1;
}

#finance-block .content-block {
    /*width: 320px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    white-space: pre-wrap;*/
    flex: 3;
    display: flex;
    flex-direction: column;
}

#finance-block .content-block .title {
    line-height: 1.5;
    max-height: 42px;
    height: 42px;
    overflow: hidden;
}

#finance-block .content-block .content {
    padding-top: 3px;
    font-size: 14px;
    color: #4c4c51;
    max-height: 65px;
    height: 65px;
    overflow: hidden;
}


/* Finance News End */


@media only screen and (max-width: 1024px) {
    #carousel-howitworks .carousel-indicators .col {
        width: 230px !important;
        height: 250px !important;
    }

    #carousel-howitworks .content-image {
        height: 140px;
        width: 150px;
    }

    #carousel-howitworks .content-title {
        font-size: 14px;
    }

    #carousel-howitworks.vertical .carousel-indicators .col {
        margin: 10px !important;
    }
}

@media only screen and (max-width: 768px) {
    #carousel-howitworks .carousel-indicators .col {
        width: 200px !important;
        height: 200px !important;
    }

    #carousel-howitworks .content-image {
        height: 120px;
        width: 140px;
    }

    #carousel-howitworks.vertical .carousel-indicators .col {
        margin: 10px !important;
    }
}

@media only screen and (max-width: 500px) {

    /*#carousel-howitworks.vertical .header,*/
    #carousel-howitworks.vertical .carousel-indicators {
        flex-direction: column !important;
        float: unset !important;
        margin: auto;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .logo-image {
        width: 60px;
    }

    .video-holder {
        width: 90%;
        border-radius: 5px;
    }

    #pp-why-section .first-column {
        justify-content: center;
    }

    #pp-why-section .last-column {
        justify-content: center;
    }

    #pp-why-section .main {
        max-width: 98%;
    }

    #pp-why-section .pp-why-section-block {
        padding-left: 0px;
        padding-right: 0px;
    }
}


/*-----------------------------------------------------------*/
/*ACTION BUTTON*/
/*-----------------------------------------------------------*/

.action_Box {
    display: inline-block;
    position: fixed;
    /*left: 20px;*/
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.action_Box_Btn:link,
.action_Box_Btn:visited {
    position: relative;
    color: var(--color-our-theme2);
    text-transform: uppercase;
    text-decoration: none;
    border: 0.2rem solid var(--color-our-theme2);
    padding: 0.5rem 1rem;
    display: inline-block;
    letter-spacing: 1px;
    font-size: 70%;
    background-color: #fff;
    animation: float_Action_Btn 5s ease-in-out infinite;
    font-weight: bold;
}

.action_Box_Btn::before {
    content: "";
    display: block;
    position: absolute;
    width: 10%;
    background: #fff;
    height: 0.3rem;
    right: 20%;
    top: -0.21rem;
    transform: skewX(-45deg);
    -webkit-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
}

.action_Box_Btn::after {
    content: "";
    display: block;
    position: absolute;
    width: 10%;
    background: #fff;
    height: 0.3rem;
    left: 20%;
    bottom: -0.25rem;
    transform: skewX(45deg);
    -webkit-transition: all 0.45 cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
}


.action_Box_Btn:hover::before {
    right: 80%;
}

.action_Box_Btn:hover::after {
    left: 80%;
}


@keyframes float_Action_Btn {
    0% {
        color: var(--color-our-theme);
        border: 0.2rem solid var(--color-our-theme);
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.5);
        transform: translatey(0px);
    }

    50% {
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        transform: translatey(-20px);
    }

    100% {
        color: var(--color-our-theme2);
        border: 0.2rem solid var(--color-our-theme2);
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.5);
        transform: translatey(0px);
    }
}

@keyframes float_Action_Btn2 {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.5);
        transform: translatey(0px);
    }

    50% {
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        transform: translatey(-20px);
    }

    100% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.5);
        transform: translatey(0px);
    }
}

/*-----------------------------------------------------------*/
/*HOME-LOAN*/
/*-----------------------------------------------------------*/


.section-homeloan {
    padding: 3rem;
    margin: 3rem auto;
}


/*-----------------------------------------------------------*/
/*Apply Floating Button*/
/*-----------------------------------------------------------*/
#apply-button-block {
    display: inline-block;
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
}

#apply-button {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 85%;
    border-radius: 50px;
    height: 85px;
    width: 85px;
    justify-content: center;
    align-items: center;
    display: flex;
    font-weight: bold;
    background-color: var(--color-our-theme);
}

#apply-button:before {
    content: "\f2dd";
    position: absolute;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 65px;
    color: #fff;
    color: var(--color-our-theme2);
    animation: animate-apply-button 12s ease-in-out infinite;
}

#apply-button:after {
    content: "\f2dd";
    position: absolute;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 65px;
    color: var(--color-our-theme2);
    color: #fff;
    animation: animate-apply-button2 12s ease-in-out infinite;
}


@keyframes animate-apply-button {
    0% {
        transform: rotate(-1deg);
        transition: all 1.5s ease-in-out;
    }

    50% {
        transform: rotate(-720deg);
        transition: all 1.5s ease-in-out;
    }

    100% {
        transform: rotate(-1deg);
        transition: all 1.5s ease-in-out;
    }
}

@keyframes animate-apply-button2 {
    0% {
        transform: rotate(-1deg);
        transition: all 1.5s ease-in-out;
    }

    50% {
        transform: rotate(-1440deg);
        transition: all 1.5s ease-in-out;
    }

    100% {
        transform: rotate(-1deg);
        transition: all 1.5s ease-in-out;
    }
}

md-checkbox.md-default-theme.md-checked .md-icon,
md-checkbox.md-checked .md-icon {
    background-color: var(--color-our-theme3);
}

#carouselFinanceNews .carousel-control-next,
#carouselFinanceNews .carousel-control-prev {
    background: var(--color-our-theme);
    width: 50px;
    border-radius: 100%;
    height: 50px;
    top: 33%;
}

#carouselFinanceNews .carousel-control-next {
    right: -15px;
}

#carouselFinanceNews .carousel-control-prev {
    left: -15px;
}

md-progress-circular.md-default-theme path,
md-progress-circular path {
    stroke: var(--color-our-theme) !important;
}

md-toast {
    height: auto !important;
}

md-dialog-actions button.md-confirm-button:hover,
md-dialog-actions button.md-confirm-button:focus,
md-dialog-actions button.md-confirm-button {
    background-color: white !important;
    color: var(--color-our-theme) !important;
}

md-dialog-actions button.md-cancel-button:hover,
md-dialog-actions button.md-cancel-button:focus,
md-dialog-actions button.md-cancel-button {
    background-color: var(--color-our-theme) !important;
    color: white !important;
}

input[type="range"]::-webkit-slider-thumb {
    cursor: pointer !important;
}