:root{
	/*---------- Colors ----------*/
	--color-primary: #f05a24;
}

html, body{
	overflow-x: hidden;
}
body{
    color: #000000;
	font-family: 'Montserrat', sans-serif;
}
::selection{
	color: #000000;
	background-color: var(--color-primary);
}
::-moz-selection{
	color: #000000;
	background-color: var(--color-primary);
}
*{
	outline: none !important;
}
a{
    position: relative;
	font-size: inherit !important;
	color: inherit !important;
	text-decoration: none !important;
	box-shadow: none !important;
}
a.active:after,
a.a-hover:hover:after{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-primary);
    transition: all .3s;
}
.h1 *,h1 *,
.h2 *,h2 *,
.h3 *,h3 *,
.h4 *,h4 *,
.h5 *,h5 *,
.h6 *,h6 *{
	font-size: inherit;
}
p,
.h1,h1,
.h2,h2,
.h3,h3,
.h4,h4,
.h5,h5,
.h6,h6,
.display-1,
.display-2,
.display-3,
.display-4,
label {
	margin: 0;
	font-weight: unset;
}
b{
	color: inherit;
	font-size: inherit;
}
ul{
	margin: 0;
	padding: 0;
}
img{
	width: 100%;
	height: 100%;
}
button{
	box-shadow: none !important;
}

/*
|--------------------------------------------------------------------------
| General Shortcuts
|--------------------------------------------------------------------------
|
*/

.pt-6{
    padding-top: 6rem;
}
.py-6{
    padding: 6rem 0;
}

/*---------- Images / Videos ----------*/
img.cover{
	-o-object-fit: cover;
	object-fit: cover;
}
img.contain{
	-o-object-fit: contain;
	object-fit: contain;
}
/*---------- End Images / Videos ----------*/

/*---------- Font Weight ----------*/
.fw-semi-bold{
    font-weight: 600;
}
/*---------- End Font Weight ----------*/

/*---------- Text Color ----------*/
.text-primary{
	color: var(--color-primary) !important;
}
/*---------- End Text Color ----------*/

/*---------- Website Shortcuts ----------*/
.border-x{
    border-left: 1px solid var(--color-primary) !important;
    border-right: 1px solid var(--color-primary) !important;
}
.border-top{
    border-top: 1px solid var(--color-primary) !important;
}
/*---------- End Website Shortcuts ----------*/

/*
|--------------------------------------------------------------------------
| End General Shortcuts
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Website Shortcuts
|--------------------------------------------------------------------------
|
*/

.section-title{
    margin-bottom: 50px;
}

.underline-left,
.underline-center{
    position: relative;
}
.underline-left:after,
.underline-center:after{
    content: '';
    position: absolute;
    bottom: -15px;
    height: 8px;
    background-color: var(--color-primary);
}
.underline-left:after{
    right: 0;
    min-width: 100%;
    width: 50vw;
}
.underline-center:after{
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
}

/*----------------------------------------*/
.custom-list li{
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    list-style: none;
}
.custom-list li:before{
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: var(--color-primary);
    clip-path: polygon(35% 0, 100% 30%, 100% 70%, 35% 100%, 0 75%, 0 25%);
}
.custom-list li:last-child{
    margin-bottom: 0;
}

/*----------------------------------------*/
.octagon-shape-left,
.octagon-shape-right{
    position: absolute;
    width: 465px;
    height: 465px;
    top: 50%;
    transform: translateY(-50%);
    filter: drop-shadow(0px 0px 25px var(--color-primary));
    z-index: 1;
}
.octagon-shape-left{
    left: 0;
}
.octagon-shape-right{
    right: 0;
}

.octagon-shape-left img,
.octagon-shape-right img{
    object-fit: cover;
}
.octagon-shape-left img{
    clip-path: polygon(65% 0, 100% 25%, 100% 75%, 65% 100%, 0 70%, 0 30%);
}
.octagon-shape-right img,
.octagon-shape-right iframe{
    clip-path: polygon(35% 0, 100% 30%, 100% 70%, 35% 100%, 0 75%, 0 25%);
}

/*
|--------------------------------------------------------------------------
| End Website Shortcuts
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Navbar
|--------------------------------------------------------------------------
|
*/

nav{
    color: #ffffff !important;
    background-image: linear-gradient(#000000 10%, transparent);
}
nav .navbar-brand img{
    width: 250px;
}
nav .navbar-nav{
    margin-left: auto;
}
nav .navbar-nav .nav-link{
    padding: 0px !important;
    margin: 0 13px;
}
.navbar-toggler{
	background-color: #FFFFFF;
}

/*
|--------------------------------------------------------------------------
| End Navbar
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Home Slider
|--------------------------------------------------------------------------
|
*/

.home-slick .slick-list{
    overflow: unset;
}

.home-slick .home-slider{
    position: relative;
    padding: 170px 0;
}
.home-slick .home-slider img{
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 60%;
    height: auto;
    object-fit: contain;
}

.home-slick .form-custom{
    color: #ffffff;
    border-color: #909090;
}
.home-slick .form-custom::placeholder{
    color: #606060;
}

/*
|--------------------------------------------------------------------------
| End Home Slider
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Slogan
|--------------------------------------------------------------------------
|
*/

.slogan p{
    position: relative;
    display: inline-block;
    color: #ffffff;
}
.slogan p:last-child{
    margin-left: 200px;
}
.slogan p:first-child:before,
.slogan p:last-child:before{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% + 5px);
    background-color: var(--color-primary);
}
.slogan p:first-child:before{
    right: -10px;
    width: 300%;
}
.slogan p:last-child:before{
    left: -10px;
    width: 450%;
}

/*
|--------------------------------------------------------------------------
| End Slogan
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| About
|--------------------------------------------------------------------------
|
*/

#about-us .octagon-shape-right{
    top: 67%;
}

/*
|--------------------------------------------------------------------------
| End About
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Services
|--------------------------------------------------------------------------
|
*/

.services-wrapper{
    position: relative;
    background-position: center;
    background-size: cover;
    padding-bottom: 21rem;
}
.services-wrapper:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
}
.services-wrapper img{
    width: 85px;
    height: 85px;
}

/*
|--------------------------------------------------------------------------
| End Services
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Loan Calculator
|--------------------------------------------------------------------------
|
*/

.loan-calculator-wrapper{
    padding-top: 6rem;
    margin-top: -325px;
    margin-bottom: -110px;
}
.loan-calculator-wrapper .card{
    border: none;
    border-radius: 25px;
    box-shadow: 0px 0px 50px var(--color-primary);
}
.loan-calculator-wrapper .border-right{
    border-right: 2px solid #70707a;
}

/*----------------------------------------*/
.loan-calculator-list ul li{
    cursor: pointer;
}

/*----------------------------------------*/
.loan-calculator-wrapper ul li{
    padding: 25px 0;
    border-bottom: 2px solid #e1dddd;
}
.loan-calculator-wrapper ul li:first-child{
    padding-top: 0;
}
.loan-calculator-wrapper ul li:last-child{
    padding-bottom: 0;
    border: none;
}
.loan-calculator-wrapper ul li img{
    width: 45px;
    height: 45px;
}

/*----------------------------------------*/
.loan-calculator-content label{
    color: #b7b7b7;
}

/*
|--------------------------------------------------------------------------
| End Loan Calculator
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Partner
|--------------------------------------------------------------------------
|
*/

.partner-section{
    padding-top: 7.5rem;
    padding-bottom: 50px;
}
.partner-section .partner-section-margin{
    padding-top: 7.5rem;
}

/*
|--------------------------------------------------------------------------
| End Partner
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Google Maps
|--------------------------------------------------------------------------
|
*/

iframe{
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
}

/*
|--------------------------------------------------------------------------
| End Google Maps
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
|
*/

.subscribe-wrapper{
    position: relative;
}
.subscribe-wrapper .form-custom{
    height: 55px;
    color: #ffffff;
    border-color: #909090 !important;
}
.subscribe-wrapper .form-custom::placeholder{
    color: #606060;
}
.subscribe-wrapper .btn-subscribe{
    position: absolute;
    height: 30px;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #ffffff;
    background-color: var(--color-primary);
    padding: 0 15px;
    border-radius: 35px;
    text-transform: uppercase;
    font-weight: bold;
}
.subscribe-wrapper .btn-subscribe:hover,
.subscribe-wrapper .btn-subscribe:focus{
    background-color: #993917 !important;
}

/*----------------------------------------*/
footer .highlight{
    position: relative;
    padding-left: 18px;
}
footer .highlight:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    min-width: 100%;
    width: 50vw;
    height: calc(100% + 5px);
    background-color: var(--color-primary);
    border-top-left-radius: 35px;
    border-bottom-left-radius: 35px;
}

/*----------------------------------------*/
.social-media-wrapper img{
    width: 25px;
    height: 25px;
}

/*
|--------------------------------------------------------------------------
| End Footer
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Override Bootstrap
|--------------------------------------------------------------------------
|
*/

.text-muted{
    color: #70707a !important;
}

.modal-dialog .modal-content{
    border-radius: 25px;
    box-shadow: 0px 0px 50px var(--color-primary);
}
.modal-dialog .modal-content img{
    width: 50px;
    height: 50px;
}
.modal-dialog .btn-close{
    position: absolute;
    top: 15px;
    right: 15px;
}

/*
|--------------------------------------------------------------------------
| End Override Bootstrap
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Override Slick
|--------------------------------------------------------------------------
|
*/

.slick-slider{
    margin-bottom: 0 !important;
}

/*---------- Dots Custom ----------*/
.home-slick .slick-dots{
    font-size: 0;
    bottom: 30px;
}
.home-slick .slick-dots li{
    margin: 0 5px;
}
.home-slick .slick-dots li button{
    padding: 0;
    background-color: #ffffff;
	opacity: 1;
}
.home-slick .slick-dots li,
.home-slick .slick-dots li button{
    width: 8px;
    height: 8px;
    border-radius: 100%;
}
.home-slick .slick-dots li button:before{
    content: none;
}
.home-slick .slick-dots li.slick-active button{
    opacity: 1;
    background-color: #ffffff;
}
.home-slick .slick-dots li.slick-active button:after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 1px solid var(--color-primary)
}
/*---------- End Dots Custom ----------*/

/*
|--------------------------------------------------------------------------
| End Override Slick
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Inputs & Buttons Styling
|--------------------------------------------------------------------------
|
*/

.btn-custom,
.btn-custom-2{
    position: relative;
    min-height: 45px;
    padding: 10px 30px;
    color: #ffffff !important;
    background-color: var(--color-primary);
    font-weight: bold;
    transition: all .3s;
}
.btn-custom{
    border-radius: 35px;
}
.btn-custom-2{
    border-radius: 10px;
}
.btn-custom:hover,
.btn-custom-2:hover,
.btn-custom:focus,
.btn-custom-2:focus{
    background-color: #993917 !important;
}

select.form-custom-2{
    background-image: url("../images//icons/select-arrow.svg");
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 50%;
    background-size: 25px;
}

.form-control:focus{
	box-shadow: none !important;
	border-color: inherit;
}
.form-custom,
.form-custom-2{
    height: 45px;
    padding: 6px 24px;
    border-color: #000000;
    background-color: transparent !important;
}
.form-custom{
    border-radius: 35px;
}
.form-custom-2{
    border-radius: 10px;
    font-weight: bold;
}
textarea{
    min-height: 200px !important;
    border-radius: 25px !important;
}

/*
|--------------------------------------------------------------------------
| End Inputs & Buttons Styling
|--------------------------------------------------------------------------
*/

@media(min-width: 1400px) {

    /*
    |--------------------------------------------------------------------------
    | Website Shortcuts
    |--------------------------------------------------------------------------
    |
    */

    .octagon-shape-left,
    .octagon-shape-right{
        width: 665px !important;
        height: 665px !important;
    }

    /*
    |--------------------------------------------------------------------------
    | End Website Shortcuts
    |--------------------------------------------------------------------------
    */
}

@media(min-width: 1200px) {

    /*
    |--------------------------------------------------------------------------
    | Website Shortcuts
    |--------------------------------------------------------------------------
    |
    */

    .octagon-shape-left,
    .octagon-shape-right{
        width: 565px;
        height: 565px;
    }

    /*
    |--------------------------------------------------------------------------
    | End Website Shortcuts
    |--------------------------------------------------------------------------
    */

}

@media(min-width: 1500px) {

    .home-slick .home-slider img{
        width: 50%;
    }

}

@media(max-width: 991px) {

    .border-x,
    .loan-calculator-wrapper .border-left{
        border: none !important;
    }

    /*
    |--------------------------------------------------------------------------
    | Website Shortcuts
    |--------------------------------------------------------------------------
    |
    */

    .octagon-shape-left,
    .octagon-shape-right{
        position: relative;
        width: 85%;
        height: auto;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    /*
    |--------------------------------------------------------------------------
    | End Website Shortcuts
    |--------------------------------------------------------------------------
    */

    /*
    |--------------------------------------------------------------------------
    | Navbar
    |--------------------------------------------------------------------------
    |
    */

    nav{
        background-color: #000000;
    }
    nav .navbar-nav .nav-item{
        margin: 8px 0;
        text-align: center;
    }

    /*
    |--------------------------------------------------------------------------
    | End Navbar
    |--------------------------------------------------------------------------
    */

    /*
    |--------------------------------------------------------------------------
    | Home Slider
    |--------------------------------------------------------------------------
    |
    */

    .home-slick .slick-list{
        overflow: hidden;
    }
    .home-slick .home-slider{
        padding: 100px 0;
    }
    .home-slick .home-slider img{
        position: relative;
        bottom: 0;
        width: 85%;
        left: 50%;
        transform: translateX(-50%) !important;
    }

    /*
    |--------------------------------------------------------------------------
    | End Home Slider
    |--------------------------------------------------------------------------
    */

    /*
    |--------------------------------------------------------------------------
    | Google Maps
    |--------------------------------------------------------------------------
    |
    */

    iframe{
        height: 400px;
        clip-path: polygon(10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0 90%, 0 10%) !important;
    }

    /*
    |--------------------------------------------------------------------------
    | End Google Maps
    |--------------------------------------------------------------------------
    */

    /*
    |--------------------------------------------------------------------------
    | Footer
    |--------------------------------------------------------------------------
    |
    */

    footer .highlight:before{
        border-radius: 35px;
    }

    /*
    |--------------------------------------------------------------------------
    | End Footer
    |--------------------------------------------------------------------------
    */

}

@media(max-width: 767px) {

    /*
    |--------------------------------------------------------------------------
    | Slogan
    |--------------------------------------------------------------------------
    |
    */

    .slogan p:last-child{
        margin-left: 50px;
    }

    /*
    |--------------------------------------------------------------------------
    | End Slogan
    |--------------------------------------------------------------------------
    */

}