/* contact us page css */
.contactus-section{
    padding: 6rem;
    background-repeat: no-repeat;
    height: 40vh;
    box-shadow: inset 0 1700px rgb(0 0 0 / 30%);
    background-size: cover!important;
    position: relative;
}
.contactus-header{
    text-align: center;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.contactus-icons{
    position: absolute;
    bottom: 10%;
    left: 48%;
    transform: translate(-50%, -50%);
    margin: 0;
    display: flex;
    gap: 50px;
}
.contactus-icons a{
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.6rem;
    color: #ffffff;
}
.contactus-icons .fa-solid{
    color: #D8622A;
}
.contactus-header h1{
    font-weight: 700;
    font-size: 42px;
    line-height: 55px;
    text-align: center;
    letter-spacing: 0.001em;
    color: #ffffff;
}
.contactus-header p{
    font-weight: 700;
    font-size: 17px;
    line-height: 1.6rem;
    color: #ffffff;
}
.contactus-email{
    display: flex;
    gap: 4px;
}


.form-detail{
    width:80%;
    padding: 40px;
    margin-top: 20px;
    margin-left:auto;
    margin-right:auto;
}
.form-desc{
    text-align: center;
    width:80%;
    margin:0 auto;
}
.form-desc h2{
    font-weight: 600;
}
.form-desc p{
    font-weight: 400;
    font-size: 17px;
    line-height: 2rem;
    color: #2B2A29;
}
.form-detail .form-control {
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    font-weight: 500;
    font-size: 16px;
    color: #7a7777;
    margin-top: 12px;
}
.form-detail .form-control:focus{
    outline: none !important;
    box-shadow: none;
    border: 2px solid #D8622A;
}
.contact-submit-btn{
    box-shadow: inset 0 0 0 0 #DD6227;
    border: 2px solid #DD6227;
    border-radius: 25px;
    background: #DD6227;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 50px;
}
.contact-submit-btn:hover {
    box-shadow: inset 250px 0 0 0 #ffffff;
    color: #DD6227;
    border: 2px solid #DD6227;
}
/* contact us page css */
/* gallery page css */
.gallery-section{
    padding: 6rem;
}
.gallery-desc{
    margin: 0 20%;
}
.gallery-desc h2{
    font-weight: 700;
    font-size: 42px;
    line-height: 55px;
    text-align: center;
    letter-spacing: 0.001em;
    color: #DD6227;
}
.gallery-desc p{
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    margin: 3% 0 8% 8%;
    text-align: center;
    color: #2B2A29;
}
.gallery-container {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    height: 50vh;
}

.img-box {
    flex: 1;
    overflow: hidden;
    transition: .5s;
    margin: 0 2%;
    box-shadow: 0 20px 30px rgba(0,0,0,.1);
    line-height: 0;
}

.img-box > img {
    width: 200%;
    height: calc(100%);
    object-fit: cover;
    transition: .5s;
}


.img-box:hover { flex: 1 70%; }
.img-box:hover > img {
    width: 100%;
    height: 100%;
}
/* gallery page css */
/* blogs page css */
.blogs-section{
    padding: 6rem;
}
.blog-img{
    width: 100%;
}
.blog-img img{
    border-radius: 10px;
}
.blog-content h5{
    font-size: 14px;
    font-weight: 400;
    color: #adaaaa;
}
.blog-content h1{
    margin: 20px 0;
    font-weight: 700;
    font-size: 40px;
    line-height: 3rem;
}
.blog-content p{
    margin: 30px 0;
    font-size: 18px;
    font-weight: 400;
}
.card {
    border: none;
}
.article-card{
    margin: 13px 0px;
    transition: 0.4s;
}
.article-card img{
    border-radius: 10px;
}
.card-desc h2{
    font-weight: 700;
    font-size: 26px;
    line-height: 38px;
    letter-spacing: 0.001em;
    color: #2B2A29;
    margin-top: 10px;
    display: inline-block;
}
.card-desc h2:after{
    content: '';
    display: block;
    border-bottom: 2px solid #DD6227;
    width: 100%;
    margin: 20px 0;
}
.card-desc h3{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6rem;
    color: #656161;
}
.article-card:hover .marketing-title{
    color: #DD6227;
}
.article-card:hover .carddesc-date{
    color: #DD6227;
}
.article-card:hover .blog-icon{
    color: #DD6227;
}
.article-card:hover p{
    color: rgb(100%, 100%, 100%);
}
.article-card:hover .slider-text{
    color: rgb(100%, 100%, 100%);
}
.card-desc p{
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #0E1112;
    overflow: hidden;
    text-overflow: ellipsis;
}
.featured-blog h2{
    font-weight: 700;
    font-size: 82px;
    line-height: 8rem;
    letter-spacing: 0.001em;
    color: #DD6227;
}
.read-btn{
    background: #DD6227;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    color: #FFFFFF;
}
.read-btn:hover{
    color: #DD6227;
    background: #FFFFFF;
    border: 2px solid #DD6227;
}
.dot {
    height: 10px;
    width: 10px;
    background-color: #DD6227;
    border-radius: 50%;
    display: inline-block;
}
.blog-bottom{
    display: flex;
    gap: 40px;
}
.blog-icon{
    color: #656161;
}
/* blogs page css */
/* blog detail section */
.blog-detail-section{
    padding: 6rem;
}
.blog-top{
    display: flex;
    gap: 20px;
}
.blog-top p{
    font-weight: 700;
    font-size: 17px;
    line-height: 2rem;
    color: #DD6227;
}
.arrow {
    height: 4px;
    width: 40px;
    border-radius: 4px;
    background-color: #DD6227;
    display: inline-block;
    margin-bottom: 2px;
    margin-left: 4px;
}
.blog-top{
    display: flex;
    gap: 40px;
}
.blog-top h5{
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6rem;
    color: #2B2A29;
}
.blog-top-icon{
    font-weight: 500;
    font-size: 18px;
    color: #DD6227;
}
.blog-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.blog-heading h1{
    font-weight: 700;
    font-size: 34px;
    line-height: 2.8rem;
    margin: 20px 20%;
    text-align: center;
    letter-spacing: 0.001em;
    color: #000000;
}
.featured-blog-image{
    width: 70%;
    text-align: center;
    height: 60vh;
}
.featured-blog-image img{
    max-width: 100%;
    max-height: 100%;
}
.blog-ref{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.blog-ref h4{
    font-weight: 500;
    font-size: 18px;
    color: #7a7777;
}
.blog-ref .fa-solid{
    font-size: 20px;
    color: #7a7777;
}
.blog-heading p{
    font-weight: 400;
    font-size: 20px;
    line-height: 2rem;
    margin: 20px 16%;
    letter-spacing: 0.001em;
    color: #000000;
}
/* blog detail section */
/* about us section */
.aboutus-section{
    padding: 6rem;
}
.dash{
    height: 6px;
    width: 80px;
    margin: 10px 0;
    color: #0a0e14;
    border-radius: 4px;
    background-color: #DD6227;
    display: inline-block;
}
.about-desc p{
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #2B2A29;
}
.about-img{
    width: 100%;
    height: 50vh;
    border: 2px solid #fff;
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.5);
}
.about-bottom{
    background: #f3f3f3;
    padding: 6rem;
}
.about-img img{
    max-width: 100%;
    max-height: 100%;
}
.about-btn{
    border: 2px solid #0a0e14;
    padding: 10px 20px;
    text-decoration: none;
    color: #0a0e14;
}
.about-btn:hover{
    background: #E96F33;
    color: #FFFFFF;
    border: 2px solid #E96F33;
}
.ourvalues-section {
    background-color: #f8f8f8;
    text-align: center;
    padding: 6rem;
}
.ourvalues-heading, .team-heading {
    text-align: center;
    color: #171717;
}
.ourvalues-heading {
    margin-bottom: 2.05rem;
}
.ourvalues-section .three-columns {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.ourvalues-section .three-columns .col {
    width: 33.33%;
}
.block {
    padding: 10px;
    margin: 10px;
    background: linear-gradient(180deg, #DC5A1C 0%, #DE6329 24.12%, #E45D1C 90.66%);
    border: 1px solid #E96F33;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
}
.block-icon{
    margin-top: 20px;
    text-align: center;
}
.block-para {
    margin-top: 10px;
    text-align: center;
    min-height: 180px;
    color: #FFFFFF;
}
.about-bottom-section{
    padding: 6rem;
}

/* accommodation page css*/
.accommodation-page-section{
    padding: 6rem;
    background-repeat: no-repeat;
    height: 40vh;
    box-shadow: inset 0 1700px rgb(0 0 0 / 30%);
    background-size: cover!important;
    position: relative;
}
.accommodation-lists{
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
}
.accommodation-lists li{
    color: #ffffff;
    font-weight: bold;
    font-size: 30px;
    list-style: none;
    margin-bottom: 12px;
    padding-left: 10px;
}
.accommodation-lists li::marker{
    content: "\f0a9";
    font-family: FontAwesome;
    display: inline-block;
    margin-right: 0;
    margin-left: 1.3em;
    width: 1.3em;
}
.accommodation-details{
    background-color: #D8622A;
}
.accommodation-details .row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.accommodation-header{
    padding: 25px 6rem;
}
.accommodation-header h4{
    color: #FFFFFF;
    font-weight: bold;
    font-size: 32px;
}
.book-tour-btn{
    background-color: #a72813;
    padding: .8rem 1rem;
    border: 2px solid #9e230f;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 22px;
    border-radius: 8px;
    /*box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);*/
}
.book-tour-btn:hover{
    background-color: #FFFFFF;
    padding: .8rem 1rem;
    border: 2px solid #D8622A;
    color: #D8622A;
}
.accommodation-section-details{
    padding: 6rem;
}
.property-detail li{
    list-style: none;
    margin-bottom: 12px;
    padding-left: 10px;
}
.property-detail li::marker{
    content: "\f0a9";
    font-family: FontAwesome;
    display: inline-block;
    margin-right: 0;
    margin-left: 1.3em;
    width: 1.3em;
}
.property-detail p{
    font-weight: 400;
    font-size: 18px;
}
.property-detail a{
    text-decoration: none;
    color: #0a0e14;
    line-height: 3rem;
    font-weight: 400;
    font-size: 18px;
}
.property-detail-img{
    padding: 20px;
    position: relative;
}
.property-label{
    background: #DD6227;
    display: inline;
    color: #FFFFFF;
    position: absolute;
    z-index: 99;
    top: 12%;
    max-width: 60%;
    right: 10%;
}
.property-label h5{
    font-size: 18px;
    font-weight: 700;
    padding: 2px 10px;
    margin-bottom: 0;
}
.property-detail-img img{
    max-height: 100%;
    max-width: 100%;
}
.property-detail h4{
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 20px;
}
.accommodation-section-details .row{
    display: flex;
    align-items: center;
}
.property-images{
    display: flex;
    justify-content: space-between;
}
/* media query */
@media only screen and (min-width: 320px) and (max-width: 480px) {
    .aboutus-section, .about-featured-content, .blogs-section, .blog-detail-section, .gallery-section{
        padding: 2rem;
    }
    .about-bottom, .ourvalues-section, .about-bottom-section  {
        padding: 2rem;
    }
    .featured-blog h2 {
        font-weight: 700;
        font-size: 60px;
        line-height: 7rem;
    }
    .blog-content{
        margin-top: 20px;
    }
    .blog-content h1 {
        margin: 0;
        font-weight: 500;
        font-size: 28px;
        line-height: 2rem;
    }
    .blog-heading h1 {
        font-weight: 700;
        font-size: 24px;
        line-height: 2rem;
        margin: 20px 0;
        text-align: center;
        letter-spacing: 0.001em;
        color: #000000;
    }
    .blog-ref h4 {
        font-weight: 500;
        font-size: 15px;
        color: #7a7777;
    }
    .featured-blog-image {
        width: 100%;
        text-align: center;
        height: 30vh;
    }
    .blog-heading p {
        font-weight: 400;
        font-size: 16px;
        line-height: 1.6rem;
         margin: 0;
        letter-spacing: 0.001em;
        color: #000000;
    }
    .blog-top-icon {
        font-weight: 500;
        font-size: 14px;
        color: #DD6227;
    }
    .blog-top {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .blog-top h5 {
        font-weight: 500;
        font-size: 14px;
        line-height: 1.6rem;
        color: #2B2A29;
    }
    .gallery-desc {
        margin: 0;
    }
    .gallery-desc h2 {
         font-weight: 600;
         font-size: 32px;
         line-height: 40px;
         text-align: left;
         letter-spacing: 0.001em;
         color: #DD6227;
     }
    .gallery-desc p {
        font-weight: 500;
        font-size: 14px;
        line-height: 1.4rem;
        margin: 20px 0;
        color: #2B2A29;
    }
    .contactus-icons {
        position: absolute;
        bottom: 0;
        top: 65%;
        left: 48%;
        transform: translate(-50%, -50%);
        margin: 0;
        display: block;
    }
    .contactus-header h1 {
        font-weight: 700;
        font-size: 32px;
        line-height: 27px;
    }
    .contactus-header {
        text-align: center;
        position: absolute;
        top: 5%;
        left: 3%;
        transform: translate(0, 0);
    }
    .contactus-email {
        display: flex;
        gap: 4px;
        margin: 10px;
    }
    .form-desc{
    width:100%;
    }
    .form-detail {
        padding: 10px;
        margin-top: 20px;
    }

   /*    accommodation */
    .accommodation-lists{
        padding: 0;
        left: 50%;
    }
    .accommodation-lists li {
        font-size: 20px;
    }
    .accommodation-details .row {
        padding: 20px 1rem;
    }
    .accommodation-header {
        padding: 0;
        margin-bottom: 20px;
    }
    .book-tour-btn {
        padding: 4px 20px;
        font-size: 18px;
    }
    .accommodation-header h4 {
        text-align: center;
        color: #FFFFFF;
        font-weight: bold;
        font-size: 20px;
    }
    .property-detail h4{
        font-weight: bold;
        font-size: 20px;
        margin-bottom: 10px
    }
    .accommodation-section-details {
        padding: 2rem;
    }
    .property-images{
        display: flex;
        flex-direction: column;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .ourvalues-section {
        background-color: #f8f8f8;
        text-align: center;
        padding: 4rem;
    }
    .about-img {
        width: 100%;
        height: auto;
    }
    .contactus-header {
        text-align: center;
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .contactus-icons {
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .form-detail {
        padding: 10px;
        margin-top: 0;
    }
    .form-desc{
    width:100%;
    }

    .gallery-section {
        padding: 3rem;
    }
    .gallery-desc {
        margin: 0;
    }
    .gallery-desc p {
        font-weight: 500;
        font-size: 14px;
        line-height: 1.4rem;
        margin: 2% 0;
        color: #2B2A29;
    }

    .blogs-section {
        padding: 3rem;
    }
    .featured-blog h2 {
        font-size: 60px;
    }

    .featured-blog{
        display: flex;
        flex-direction: column;
    }
    .blog-content{
        width: 60ch;
    }
    .blog-content h1 {
        margin: 10px 0;
        font-weight: 700;
        font-size: 34px;
        line-height: 3rem;
    }
    .card-desc h2 {
        font-size: 16px;
        line-height: 22px;
    }
    .blog-bottom {
        display: flex;
        gap: 12px;
    }
    .blog-heading h1 {
        font-weight: 700;
        font-size: 30px;
        line-height: 2.4rem;
        margin: 6% 0;
        text-align: center;
        letter-spacing: 0.001em;
        color: #000000;
    }
    .featured-blog-image {
        width: 100%;
        text-align: center;
         height: auto;
    }
    .blog-heading p {
        font-weight: 400;
        font-size: 18px;
        line-height: 1.8rem;
        margin: 2% 0;
    }
    /*    accommodation css */
    .accommodation-lists{
        padding: 0;
        left: 40%;
    }
}