/* Custom Style Sheet */

:root {
    --color-primary: #F85757;
}

.color-primary {
    color: var(--color-primary);
}

.btn-theme {
    margin: 0;
    box-shadow: none;
    border: 4px solid var(--color-primary);
    background-color: var(--color-primary);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 18px;
}

.btn-theme:hover {
    box-shadow: none;
    color: var(--color-primary);
    background-color: #ffffff;
}

.btn-theme-1 {
    margin: 0;
    box-shadow: none;
    border: 4px solid #ffffff;
    color: #ffffff;
    border-radius: 40px;
    background-color: transparent;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 25px !important;
}

.btn-theme-1:hover {
    box-shadow: none;
    color: #ffffff;
    background-color: #444444;
}

.btn-theme-2 {
    margin: 0;
    box-shadow: none;
    border: 4px solid #ffffff;
    color: #ffffff;
    border-radius: 40px;
    background-color: var(--color-primary);
    font-size: 18px;
    font-weight: 500;
    padding: 8px 25px !important;
}

.btn-theme-2:hover {
    box-shadow: none;
    color: #ffffff;
    background-color: transparent;
}

header {
    padding: 10px 0;
}

header nav.navbar {
    box-shadow: none;
}

nav.navbar .navbar-brand {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 24px;
}

nav.navbar .navbar-toggler {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 6px 12px;
    font-size: 20px;
}

nav.navbar .nav-item {
    color: #777777;
    margin: 0px 3px;
    transition: 0.5s ease;
    position: relative;
}

nav.navbar .nav-item.active:before,
nav.navbar .nav-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--color-primary);
    transform: skewY(8deg);
    transition: 0.5s ease;
}

nav.navbar .nav-item.active:before,
nav.navbar .nav-item:hover:before {
    width: 100%;
}

nav.navbar .nav-item>.nav-link {
    color: #777777;
    padding: 10px 20px;
    font-weight: 400;
    transition: 0.5s ease;
}

nav.navbar .nav-item:hover>.nav-link,
nav.navbar .nav-item.active>.nav-link {
    color: #ffffff;
}

nav.navbar button.btn-theme {
    /* width: 150px; */
}

nav.navbar button .btn-theme {
    margin: 0;
    box-shadow: none;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 14px;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 0 20px;
    background-color: #ffffff;
    border-radius: 5px;
}

nav.navbar button .btn-theme:hover {
    box-shadow: none;
    color: #ffffff;
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    padding: 0 20px;
}

#showcaseSlider {
    width: 100%;
    height: 100vh;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-container .swiper-wrapper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-container .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 150px;
    text-transform: uppercase;
    color: #ffffff;
}

.remodalbanner .text-caption {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    color: #ffffff;
}

#offerSection .swiper-container .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: auto !important;
    object-fit: cover;
}

.before-after .card {
    padding: 0 !important;
    overflow: hidden;
    margin-bottom: 20px;
}

.text-caption h3 {
    font-weight: 600;
}

.text-caption .btn-theme-s1 {
    box-shadow: none;
    background-color: var(--color-primary);
    font-size: 18px;
    padding: 8px 30px;
    color: #ffffff;
    font-weight: 500;
    transition: 0.5s;
}

.text-caption .btn-theme-s2 {
    box-shadow: none;
    background-color: #ffffff;
    font-size: 18px;
    padding: 8px 30px;
    color: var(--color-primary);
    font-weight: 500;
    transition: 0.5s;
}

.text-caption .btn-theme-s1:hover,
.text-caption .btn-theme-s2:hover {
    color: #000000;
    background-color: #ffffff;
}


/*   About Section Styling   */

#aboutSection {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
}


/* Contact Info Section Styling */

#contactInfo {
    width: 100%;
    background-color: #000000;
    padding: 20px 0;
    color: #ffffff;
}

#contactInfo .fas,
#contactInfo .far {
    color: var(--color-primary);
    font-size: 28px;
}

#contactInfo a {
    color: #ffffff;
}


/* About Detail Section Styling */

#aboutDetail {
    width: 100%;
    background-color: #E4F7F4;
    padding: 50px 0;
}

#aboutDetail hr {
    background-color: var(--color-primary);
    height: 3px;
}

#aboutDetail .fas,
#aboutDetail .far {
    color: var(--color-primary);
    font-size: 28px;
}

#aboutDetail h5,
#aboutDetail p {
    text-transform: uppercase;
}

#aboutDetail p {
    font-weight: 400;
}


/* Offer Section Styling */

#offerSection {
    width: 100%;
    background-color: #ffffff;
    padding: 30px 0;
    text-align: center;
}

#offerSection h2 {
    text-transform: uppercase;
}

#offerSection .card {
    padding: 30px 0;
    border-radius: 30px;
}

#offerSection .fas,
#offerSection .far {
    color: var(--color-primary);
    font-size: 48px;
    margin-bottom: 20px;
}

#offerSection .accordionList {
    width: 90%;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 40px;
    overflow: hidden;
    margin: 40px auto;
}

#offerSection .accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 10px;
    text-align: center;
    width: 100%;
    font-weight: 500;
    font-size: 18px;
    border: none;
    outline: none;
    border-radius: 40px;
    position: relative;
    transition: 0.4s;
}

#offerSection .accordion:after {
    content: '\02795';
    font-size: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-primary);
    border-radius: 100%;
    padding: 1.2px 4px;
    color: white;
}

#offerSection .active:after {
    content: "\2796";
}

#offerSection .accordion:focus {
    outline: none;
}

#offerSection .active,
#offerSection .accordion:hover {
    background-color: #ffffff;
}

#offerSection .panel {
    width: 100%;
    padding: 30px;
    padding-top: 10px;
    margin: auto;
    background-color: white;
    display: none;
    text-align: left;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

#offerSection .panel ul {
    margin: 0;
    padding: 0;
    font-size: 13.5px;
}


/* Video Section Styling */

#videoSection {
    width: 100%;
    padding: 30px 0;
    background-color: #ffffff;
}

#videoSection video {
    width: 100%;
    margin: 0 auto;
}


/* Loan Highlight Section Styling */

#loanSection {
    width: 100%;
    padding: 100px 0;
    background: url('../img/aerial-photography-aerial-shot-aerial-view-1546166.jpg');
}

#loanSection h1 {
    font-weight: 400;
}

#loanSection .d-flex .btn-theme-1,
#loanSection .d-flex .btn-theme-2 {
    margin: 10px 20px;
}

#loanHighlight {
    width: 100%;
    background-color: #E4F7F4;
    padding: 50px 0;
    text-align: center;
}

#loanHighlight h1 {
    font-weight: 400;
}

#loanHighlight .fas,
#loanHighlight .far {
    color: var(--color-primary);
    font-size: 56px;
    margin-bottom: 30px;
}

#loanHighlight h4 {
    font-weight: 400;
    margin: 0 45px;
}

#propertyGallery {
    width: 100%;
    background-color: #ffffff;
    padding: 30px 0;
}

#propertyGallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Contact Info 2 Section Styling */

#contactInfo2 {
    width: 100%;
    background-color: #000000;
    padding: 30px 0;
    color: #ffffff;
}

#contactInfo2 .fas,
#contactInfo2 .far {
    color: var(--color-primary);
    font-size: 28px;
}

#contactInfo2 a {
    color: var(--color-primary);
}

#contactInfo2 h6 {
    font-weight: 400;
}

#contactForm {
    width: 100%;
    background-color: #E4F7F4;
    padding: 30px 0;
}

#contactForm input.form-control,
#contactForm textarea.form-control {
    padding: 25px;
    border: 4px solid #000000;
    border-bottom-color: var(--color-primary);
    border-radius: 0;
    resize: none;
}

#contactForm select.form-control {
    padding: 10px;
    height: 56px;
    border-radius: 0;
    border: 4px solid #000000;
    border-bottom-color: var(--color-primary);
}

#contactForm .form-control:focus {
    box-shadow: none;
}

#contactForm .btn {
    border-radius: 0;
}

#contactForm .btn:hover {
    background-color: #000000;
}


/* Survey Page Styling  */

#surveySection {
    width: 100%;
    padding: 50px 0;
    text-align: center;
}

#surveySection .options {
    width: 100%;
    height: auto;
    margin: 20px auto;
    position: relative;
    border: 2px solid #000000;
    background-color: #ffffff;
    transition: 0.5s ease;
    cursor: pointer;
}

#surveySection .options .image-box svg {
    width: 90%;
    margin-bottom: 10px;
    transition: 0.5s ease;
}

#surveySection .options .option-text {
    width: 130px;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 500;
    transition: 0.5s ease;
}

#surveySection .options:hover {
    border-radius: 40px;
    transform: scale(1.15);
}

#surveySection .options:hover .image-box svg {
    width: 100%;
}

#surveySection .options:hover .option-text {
    background-color: #222222;
    color: #ffffff;
}


/*  Extra CSS Multi Step Form */

#regForm {
    background-color: #ffffff;
    margin: 10px auto;
    width: 100%;
}


/* Hide all steps by default: */

.tab {
    display: none;
}

.tab:nth-child(1) {
    height: 320px;
}

.tab:nth-child(2) {
    height: 300px;
}

.tab:nth-child(3) {
    height: 320px;
}

.tab:nth-child(4) {
    height: 250px;
}

input[type="radio"] {
    display: none;
}

input.form-control {
    padding: 20px;
}

input.form-control:focus {
    box-shadow: none;
    outline: none;
    border-color: var(--color-primary);
}

input.invalid {
    background-color: #ffdddd;
}

input[type="radio"]:checked+label>.options {
    background-color: #222222 !important;
}

input[type="radio"]:checked+label>.options .image-box svg {
    fill: #F9733E;
}

input[type="radio"]:checked+label>.options .image-box svg rect {
    fill: #222222;
}

input[type="radio"]:checked+label>.options>.option-text {
    background-color: #222222 !important;
    color: #ffffff;
    border-color: #ffffff !important;
}

.tab label {
    width: 100%;
}


/* Make circles that indicate the steps of the form: */

.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}


/* Mark the active step: */

.step.active {
    opacity: 1;
}


/* Mark the steps that are finished and valid: */

.step.finish {
    background-color: #4CAF50;
}


/* Responsive Styling */

@media only screen and (max-width:980px) {
    #contactInfo {
        display: none;
    }
}

@media only screen and (max-width:800px) {
    .tab:nth-child(1) {
        height: 550px;
    }
    .tab:nth-child(2) {
        height: 650px;
    }
    .tab:nth-child(3) {
        height: 550px;
    }
    .tab:nth-child(4) {
        height: 750px;
    }
}

@media only screen and (max-width:600px) {
    .text-caption {
        width: 85%;
        margin: auto;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .text-caption .d-flex {
        flex-direction: column;
    }
    .tab:nth-child(1) {
        height: 400px;
    }
    .tab:nth-child(2) {
        height: 450px;
    }
    .tab:nth-child(3) {
        height: 400px;
    }
    .tab:nth-child(4) {
        height: 600px;
    }
    #surveySection .options .option-text {
        bottom: 0px;
        padding: 0px;
        background-color: #ffffff;
        border: none;
        font-size: 15px;
        font-weight: 500;
    }
    #surveySection .options:hover {
        border-radius: 10px;
        transform: scale(1.05);
    }
    #surveySection .options:hover .option-text {
        background-color: #ffffff;
        color: #222222;
    }
    input[type="radio"]:checked+label>.options:hover>.option-text {
        background-color: #222222 !important;
        color: #ffffff !important;
    }
}

@media only screen and (max-width:400px) {
    #loanSection .d-flex {
        flex-direction: column;
    }
}