:root {
    --primary-color: #C8A05;
    --background-modal-color: #fff;
    --body-color: #fff;
    --color-timeline-default: #D2D3D8;
    --color-step-completed: #C8A05B;
    --color-checkmark-completed: #fff;
    --color-in-progress: #13CB8F;
    --color-label-default: var(--color-timeline-default);
    --color-label-completed: var(--color-step-completed);
    --color-label-loading: var(--color-in-progress);
    --color-icon-completed: var(--color-step-completed);
    --color-icon-default: var(--color-timeline-default);
}

@font-face {
    font-family: OpenSans;
    src: url(fonts/OpenSans-Regular.ttf) format("opentype");
}

@font-face {
    font-family: Raleway;
    src: url(fonts/Raleway-Regular.ttf) format("opentype");
}

@font-face {
    font-family: Montserrat;
    src: url(fonts/Montserrat-Regular.ttf) format("opentype");
}

body {
    padding-bottom: 0px;
    padding-top: 0px;
    font-size: 14px;
    font-family: 'Montserrat';

}

p {
    line-height: 30px;
}

.navbar {
    position: absolute;
    width: 100%;
    z-index: 2;
    padding-bottom: 15px;
    padding-top: 15px;
}

.navbar .navbar-collapse {
    justify-content: center;
}

.navbar-nav .active span {
    padding: 10px;
    background: #C8A05B;
    border-radius: 0px;
}

.navbar-nav .nav-link {
    font-size: 14px;
    padding: 17px;
    /*text-transform: uppercase !important;*/
    color: #fff0f0;
}

.wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
}

.tour-bg {
    background: #333333bf;
}

.about-container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.about-container .about-photo {
    border-radius: 20px;
}

.about-container .about-photo .thumb {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #161616;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: calc(80% + 130px) auto !important;
    height: 400px;
    transition: all 0.5s;
    margin-bottom: 10px;
    border-radius: 20px;
}

.experience-container {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #f6f6f6;
}

.experience-container h3 {
    font-size: 40px;
    text-align: center;

}

.experience-container .btn-read-more {
    width: 250px;
}

.experience-container h3 span {
    color: #C8A05B;

}

.experience-container .steps-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: 30px;
}

.experience-container .steps-container .step {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms ease;
    flex-grow: 0;
    height: 15px;
    width: 15px;
    border: 4px solid var(--color-timeline-default);
    border-radius: 50%;
}

.experience-container .steps-container .step .preloader, body .main-container .steps-container .step svg {
    display: none;
}

.experience-container .steps-container .step.completed {
    width: 18px;
    height: 18px;
    background: var(--color-step-completed);
    border: none;
}

.experience-container .steps-container .step.completed svg {
    transition: all 200ms ease;
    display: block;
    height: 10px;
    width: 10px;
    fill: var(--color-checkmark-completed);
}

.experience-container .steps-container .step.in-progress {
    width: 18px;
    height: 18px;
    background: var(--color-in-progress);
    border: none;
}

.experience-container .steps-container .step.in-progress .preloader {
    display: block;
    height: 10px;
    width: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-left-color: transparent;
    animation-name: spin;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.experience-container .steps-container .step .label {
    position: absolute;
    top: 30px;
    filter: none;
    z-index: 2000;
    color: var(--color-label-default);
    transition: all 200ms ease;
    font-weight: 700;
    width: 120px;
}

.experience-container .steps-container .step .label.completed {
    color: var(--color-label-completed);
}

.experience-container .steps-container .step .label.loading {
    color: var(--color-label-loading);
}

.experience-container .steps-container .step .icon {
    font-size: 40px;
    position: absolute;
    top: -60px;
    color: var(--color-icon-default);
    transition: color 200ms ease;
}

.experience-container .steps-container .step .icon.completed {
    color: var(--color-icon-completed);
}

.experience-container .steps-container .step .icon.in-progress {
    color: var(--color-in-progress);
}

.experience-container .steps-container .line {
    transition: all 200ms ease;
    height: 2px;
    flex-grow: 1;
    max-width: 120px;
    background: var(--color-timeline-default);
}

.experience-container .steps-container .line.completed {
    background: var(--color-step-completed);
}

.experience-container .steps-container .line.next-step-uncomplete {
    background: linear-gradient(to right, var(--color-step-completed), var(--color-timeline-default));
}

.experience-container .steps-container .line.next-step-in-progress {
    background: linear-gradient(to right, var(--color-step-completed), var(--color-in-progress));
}

.experience-container .steps-container .line.prev-step-in-progress {
    background: linear-gradient(to right, var(--color-in-progress), var(--color-timeline-default));
}


/*End step*/
.icon-about {
    border-radius: 10px;
    background: #C8A05B;
    padding: 25px 10px 25px 10px;
    text-align: center;
}

.icon-about i {
    font-size: 30px;
    color: #fff0f0;
}

.title {
    font-size: 35px;
    font-family: Raleway;
    /*margin-top: 30px;*/
}

.blog-divider {
    width: 100px;
    height: 2px;
    /* margin-left: auto; */
    margin-right: auto;
    margin-bottom: 20px;
    margin-top: 10px;
    background: #C8A05B;
    transition: .33s all ease;
}

.title span {
    color: #C8A05B;
}

/*Form*/
.form-group {
    margin-bottom: 40px;
    margin-top: 25px;
}

.form-control {
    padding: 10px;
    border-color: #EEEEEE;
}

.form-control:focus {
    color: #ddd;
    background-color: #fff;
    border-color: #ddd;
    outline: 0;
    box-shadow: 0 0 0 3px #EEEEEE;
}

.btn-connect {
    padding: 10px 20px 10px 20px;
    background: #C8A05B;
    transition: all 0.5s;
    color: #fff0f0;
}

.btn-connect:hover {
    background: #C8A05B;
    color: #fff0f0;
}

.planing-form {
    border-radius: 10px;
    box-shadow: 0px 20px 57px 0px #dddddd;
    transition: all 0.5s;
    margin-bottom: 15px;
    padding: 45px 50px 45px 50px;
}

.tour-package-item {
    border-radius: 10px;
    box-shadow: 1px 1px 5px 3px #dddddd;
    transition: all 0.5s;
    margin-bottom: 15px;
}

.tour-package-item .tour-package-badge {
    text-align: center;
    padding: 10px;
    bottom: 0px;
    position: absolute;
    width: 100%;
    transition: all 0.5s;
    background-color: #333333c4;
}

.tour-package-item .tour-package-badge span {
    margin: 5px;
    color: #fff0f0;
}

.tour-package-item .tour-price span {
    color: #C8A05B;
}

.tour-package-item:hover {
    box-shadow: 4px 5px 6px 0px #dddddd;
}

.tour-package-item .tour-package-badge i {
    color: #C8A05B;
}

.tour-package-item:hover .tour-package-badge {
    background-color: #333333;
}

.tour-package-item:hover .tour-package-thumb {
    background-size: calc(100% + 100px) auto !important;
}

.tour-package-item .tour-package-thumb {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #161616;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: calc(100% + 130px) auto !important;
    height: 250px;
    border-radius: 10px 10px 0px 0px;
    transition: all 0.5s;
    margin-bottom: 10px;


}

.tour-package-item .description {
    padding: 15px;
}

.tour-package-item .description i {
    color: #C8A05B;
    margin-right: 15px;
}

.tour-package-item .description h6 span {
    font-weight: bold;
}

.tour-package-item .description h3 {
    font-size: 20px;
}

.tour-package-item .description p {

}

.btn-read-more {
    border-radius: 4px;
    background-color: #333333;
    border: none;
    color: #FFFFFF;
    text-align: center;
    padding: 5px;
    transition: all 0.5s;
    width: 140px;
    cursor: pointer;
    margin: 5px;
    font-size: 15px;
    float: right;
}

.btn-read-more:hover {
    color: #EEEEEE;
    background-color: #444444;
}

.btn-read-more span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.btn-read-more span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.btn-read-more:hover span {
    padding-right: 25px;
}

.btn-read-more:hover span:after {
    opacity: 1;
    right: 0;
    color: #fff0f0;
}

.activity-home {
    border-radius: 10px;
    box-shadow: 1px 1px 5px 3px #dddddd;
    transition: all 0.5s;
    margin-bottom: 15px;
    position: relative;
}

.activity-home .thumb {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #161616;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: calc(100% + 130px) auto !important;
    height: 270px;
    border-radius: 10px 0px 0px 10px;
    transition: all 0.5s;
}

.activity-home:hover {
    box-shadow: 4px 5px 6px 0px #dddddd;
}

.activity-home:hover .thumb {
    background-size: calc(100% + 140px) auto !important;
}

.activity-home .description {
    padding-right: 15px;
    padding-top: 20px;

}

.activity-home .description .activity-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.activity-home .description .button-right {
    float: right;
    bottom: 15px;
    position: absolute;
    right: 15px;
}

.small-banner {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #161616;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: calc(100% + 130px) auto !important;
    height: 350px;
    border-radius: 0px;
    transition: all 0.5s;
    margin-bottom: 10px;
}

.small-banner .overlay {
    background: #210c2d96;
    position: absolute;
    width: 100%;
    z-index: 1;
    height: 350px;
}

.small-banner .page-caption {
    margin: 0 auto;
    text-align: center;
    margin-top: 200px;
}

.small-banner .page-caption a {
    text-decoration: none;
    color: #fff0f0;
    margin: 10px;
    font-size: 17px;
}

.small-banner .page-caption i {
    color: #ffffff;
}

.footer-container .footer-menu p {
    margin-bottom: 0px !important;
}

.footer-container .footer-menu p a {
    color: #fff0f0;
    text-decoration: none;
    transition: all 0.5s;
}

.footer-container .footer-menu p a:hover {
    margin-left: 10px;
}

.footer-container {
    background: #444444;
}

footer {
    background: #333333;
    padding: 10px;
}

footer p {
    margin-bottom: 0px;
    color: #fff0f0;
}

.footer-container {
    padding: 30px;
}

.footer-container .footer-title {
    font-size: 20px;
    color: #EEEEEE;
}

.footer-container p {
    color: #ffffff;
}


.footer-container .social-media {
    display: flex;
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.footer-container .social-media li {
    margin-right: 16px;
}

.footer-container .social-media li a {
    text-decoration: none;
    color: #000;
}

.footer-container .social-media li a i {
    font-size: 20px;
    color: #C8A05B;
}


.property-list-container {
    margin-top: 50px;
    margin-bottom: 50px;
}

.property-list-container .property-box {
    border-radius: 10px;
    box-shadow: 5px 4px 7px 0px #dddd;
    margin-top: 30px;
    margin-bottom: 15px;
    transition: all 0.5s;
}

.property-list-container .property-box:hover {
    box-shadow: 6px 8px 11px 0px #ddd
}

.property-list-container .property-box .property-box-thumbnail {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #161616;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: calc(100% + 255px) auto !important;
    height: 270px;
    border-radius: 10px 0px 0px 10px;
    transition: all 0.5s;
}

.property-list-container .property-box:hover .property-box-thumbnail {
    background-size: calc(100% + 240px) auto !important;

}

.property-list-container .property-box .feature-box {
    margin-bottom: 10px;
}

.property-list-container .property-box .desc {
    padding: 15px;
}

.property-list-container .property-box .desc .unlock {
    border-radius: 10px;
    box-shadow: 5px 4px 7px 0px #dddd;
    padding: 10px;
    font-size: 15px;
    background: #C8A05B;
    text-decoration: none;
    color: #ffffff;
}

.property-list-container .property-box .desc .price-label {
    border-radius: 10px;
    box-shadow: 5px 4px 7px 0px #dddd;
    padding: 10px;
    font-size: 15px;
}

.property-list-container .property-box .desc .price-label b {
    font-size: 20px;
    color: #C8A05B;
}

.property-list-container .property-box .desc h3 {
    font-size: 25px;
}

.property-list-container .property-box .desc i {
    font-size: 15px;
    color: #C8A05B;
}

.property-list-container .property-box .desc ul {
    display: inline-flex;
    margin-left: -15px;
    list-style: none;
}

.property-list-container .property-box .desc ul li {
    margin-right: 50px;
    font-weight: bold;

}

.property-list-container .property-box .desc ul li:before {
    font-family: 'FontAwesome';
    content: '\f14a';
    margin: 0 5px 0 -15px;
    color: #C8A05B;
    font-size: 15px;
}

.property-list-container .property-box .desc .btn-detail {
    background: #C8A05B;
    color: #ffffff;
    margin-bottom: 10px;
}

.property-list-container {

}

.property-list-container .sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 57px;
    color: white;
    font-size: 1.1em;
    background: #EEEEEE;
    z-index: 9;
}


.property-list-container .detail-menu {

    margin-top: 15px;
}

.property-list-container .detail-menu .nav-link {
    color: #333333;
}

.property-list-container .detail-menu .active span {
    border-bottom: 3px solid #C8A05B;
    background: transparent !important;
    color: #C8A05B;
    padding-bottom: 10px;
}

.property-list-container .image-detail-box {
    border-radius: 10px;
}

.property-list-container .image-detail-box .image-detail-box-thumbnail {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #161616;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: calc(100% + 50px) auto !important;
    height: 270px;
    border-radius: 10px;
    transition: all 0.5s;
}

.property-list-container .image-detail-box .image-detail-box-thumbnail .view-photo {
    bottom: 5px;
    right: 5px;
    position: absolute;
    background: #C8A05B;
    border-radius: 8px;
    padding: 6px;
    text-decoration: none;
    color: #ffffff;


}

.contact-form {
    border-radius: 10px;
    box-shadow: 0px 20px 57px 0px #dddddd;
    transition: all 0.5s;
    margin-bottom: 15px;
    padding: 50px 50px 0px 50px;
}

.contact-form .map {
    border-radius: 10px;
}

.contact-form .col-md-2 {
    width: 12.666667%;
}

.contact-form .icon-box {
    background: #C8A05B;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    width: 50px;
    margin-bottom: 20px;
}

.contact-form .icon-box i {
    font-size: 20px;
    color: #ffffff;
}

.contact-form a {
    text-decoration: none;
    color: #333333;
}

.contact-form h5 {
    font-weight: bold;
}

.contact-footer i {
    color: #C8A05B;
    margin-right: 10px;
}

.contact-footer {
    margin-top: 20px;
}

.contact-footer p {
    margin-bottom: 0px;
    color: #ffffff;
}

.send-inquiry-container .btn-read-more {
    width: 250px;
}

.send-inquiry-container {
    margin-top: 10px;
    margin-bottom: 50px;
    padding: 30px;
    background: #f6f6f6;
}

.send-inquiry-container h3 {
    font-size: 25px;
}

.send-inquiry-container h3 span {
    color: #C8A05B;
}

.send-inquiry-container .welcome-icon {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #161616;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: calc(70% + 1px) auto !important;
    height: 150px;
    border-radius: 10px 0px 0px 10px;
    transition: all 0.5s;
}

.gallery-wrapper {

}

.gallery-wrapper .gallery-thumb {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #161616;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: calc(100% + 130px) auto !important;
    height: 200px;
    border-radius: 10px;
    transition: all 0.5s;
}

.p-1 {
    padding: 1px;
}

.booking-container {
    border-radius: 10px;
    box-shadow: 0px 20px 57px 0px #dddddd;
    transition: all 0.5s;
    margin-bottom: 15px;
    padding: 45px 20px 45px 20px;
}

.gallery-wrapper .gallery-thumb .overlay {
    border-radius: 10px;
    transition: all 0.5s;
    height: 200px;
    background-color: #210c2d42;
}

.gallery-wrapper .gallery-thumb:hover .overlay {
    background-color: #210c2d6b;
}

.gallery-wrapper .gallery-thumb:hover {
    background-size: calc(100% + 100px) auto !important;
}

.package-detail {

}

.package-detail .intinery {
    color: #333333;
    text-transform: uppercase;
}

.package-detail .price h6 {
    color: #C8A05B;
    font-size: 20px;
}


@media (max-width: 768px) {
    .title {
        font-size: 25px;
        font-family: Raleway;
    }

    .btn-read-more {
        width: 100%;
        margin-bottom: 15px;
    }

    .about-container {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .activity-home .description {
        padding: 15px;
    }

    .icon-about {
        margin-bottom: 10px;
    }

    .planing-form {
        border-radius: 10px;
        box-shadow: 0px 20px 57px 0px #dddddd;
        transition: all 0.5s;
        margin-bottom: 15px;
        padding: 20px 20px 20px 20px;
    }

    .experience-container h3 {
        font-size: 20px;
        text-align: center;
    }

    .experience-container {
        padding: 20px;
    }

    .navbar {
        padding: 5px;
    }

    .navbar-brand  img{
width: 70px;
    }
    .small-banner .overlay{
        height: 200px;
    }
    .small-banner{
        height: 200px;
    }
    .small-banner .page-caption{
        margin-top: 100px;
    }
    .p-0{
        padding: 15px !important;
    }
    .property-list-container .property-box .property-box-thumbnail{
        border-radius: 5px;
    }
    .send-inquiry-container .welcome-icon{
        background-size: calc(50%) auto !important;
    }
    .contact-form{
        padding: 10px;
    }
}
