.desktop-slider{
    display:block;
}
.mobile-slider{
    display:none;
}

@media screen and (max-width:600px){
    .desktop-slider{
    display:none !important;
}
.mobile-slider{
    display:block;
}
}


.swiper-slide.one{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/slider/slider-3.webp);
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.swiper-slide.two{
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.3)), url(../images/slider/slider-1.webp);
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.swiper-slide.three{
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.3)), url(../images/slider/slider-2.webp);
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}


.mobile-slider .one{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/slider/mobile-slider.webp);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mobile-slider .two{
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.3)), url(../images/slider/mobile-slider-2.webp);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.mobile-slider .three{
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.3)), url(../images/slider/mobile-slider-3.webp);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}






.main_wrapper .slider_content {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
/* .slider_content h6{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 100;
    color: var(--green-color);
} */

/*.main_wrapper .slider_content h1 {*/
/*    font-size: 60px;*/
/*    line-height:1;*/
/*    text-transform: capitalize;*/
/*    color: #fff;*/
/*    font-weight: 700;*/
/*    margin: 10px 0 30px;*/
/*    font-family: var(--secondary-font);*/
/*    letter-spacing: 1px;*/
/*}*/

.main_wrapper .slider_content h1 {
    font-size: 60px;
    line-height:1;
    text-transform: capitalize;
    color: #fff;
    font-weight: 700;
    margin: 10px 0 30px;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
}

.main_wrapper .slider_content h2 {
    font-size: 60px;
    line-height:1;
    text-transform: capitalize;
    color: #fff;
    font-weight: 700;
    margin: 10px 0 30px;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
}

.main_wrapper .slider_content p {
    color: #fff;
    max-width: 50%;
    margin: 20px 0;
}

.main_wrapper .slider_content .btns {
    display: flex;
    gap: 20px;
}
.slider_content a{
    display:flex;
    align-items: center;
    gap: 10px;
}
.slider_content .main-btn{
    height: 50px;
    padding: 0px 20px;
}

/* .swiper {
    position: relative;
}
.swiper-horizontal>.swiper-pagination-bullets{
    position: absolute;
    bottom: 10% !important;
    left: -42.5% !important;
} */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: var(--green-color);
    width: 15px;
    height: 15px;
    border: 5px solid #fff;
}




.main_desc{
    max-width: 60%;
    margin: auto;
}

.room_section .room_box{
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}

.room_section .room_content{
    position: absolute;
    bottom: 20px;
    left: 20px;
    /* text-align: center; */
    opacity: 1;
    transition: all .4s ease-in;
}
.room_section .room_box:hover{
    cursor: pointer;
}
.room_section .room_box:hover .room_content{
    opacity: 1;
}
.room_section .room_box:hover .bg_overlay{
    opacity: 1;
}
.room_section .bg_overlay{
    background: rgba(0, 0, 0, 0.527);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.room_section .room_image{
    height: 400px;
}
.room_section .room_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room_section .room_name{
    font-size: 22px;
    font-weight: 500;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    color: #fff;
}
.room_section .main-btn{
    padding: 10px 20px;
    background-color: var(--second-color);
}





/* two_section */



.two_section .grid_row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}
.two_section .section-1 img{
    border-radius: 20px;
}
.two_section .section-2{
    background: var(--green-color);
    display: flex;
    align-items: center;
    height: auto;
}
.two_section .section-3{
    background: var(--green-color);
    display: flex;
    align-items: center;
}
.two_section .section_content{
    padding: 50px;
    background-color: var(--primary-color);
    margin-left: -50px;
    border-radius: 20px;
}
.two_section h6{
    color: #000;
    letter-spacing: 2px;
    font-weight: 100;
}
.two_section h2{
    font-family: var(--secondary-font);
    font-size: 50px;
    font-weight: 600;
    color: #000;
    line-height: 1;
}
.two_section p{
    max-width: 100%;
    font-size: 16px;
    color: #000;
    
}
.two_section .main-btn{
    background-color: var(--second-color);
    color: var(--green-color) !important;
    padding: 15px 20px !important;
}




/* video_wrapper */

.video_wrapper{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/video-thumb.webp);
    /*background: url(../images/video-thumb.webp);*/
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    height: 70vh;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.video_wrapper img{
    width: 100px;
}
.video_wrapper h6{
    margin-top: 30px;
    color: #fff;
    font-family: var(--primary-font);
    font-weight: 300;
    letter-spacing: 2px;
}






.packege_section .grid_row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.packege_section .main_heading{
    margin-bottom: 20px;
}
.packege_section .main-btn{
    margin-top: 30px;
    padding: 12px 20px;
}





.facility_wrapper .facility_box .facility_image{
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 230px;
    
}
.facility_wrapper .facility_box .facility_image img{
    transition: all .5s;
}
.facility_wrapper .facility_box:hover .facility_image img{
    scale: 1.2;
}

.facility_wrapper .facility_desc{
    padding: 15px 25px 20px;
    /* background: #f2eee9; */
    border: 2px solid var(--primary-color);
    border-top: none;
    text-align: center;
}
.facility_wrapper .facility_name{
    font-size: 25px;
    font-weight: 700;
    font-family: var(--secondary-font);
    margin-bottom: 20px;
}
.facility_wrapper .main-btn{
    padding: 10px 20px;
}
.facility_wrapper .facility_desc p{
    height: 130px;
    font-size: 14px;
    display: none;
}





.testimonial_section .swiper-container {
    position:relative;
    /*width: 90vw;*/
}
.testimonial_section .swiper-container > .swiper-slide__content {
  position:absolute;
  top:0;
}

.testimonial_section .swiper-slide {
  display:flex;
  background: #fff;
  align-items: center;
  justify-content:center;
  transition:all 200ms linear;
  text-align:left !important;
  /*transform: scale(0.8);*/
  
  /*&.swiper-slide-active{*/
  /*  transform: scale(1) !important;*/
  /*  background: #fff;*/
  /*}*/
}
/*.swiper-slide__content {*/
/*  height: 300px;*/
/*}*/

.testimonial_section .user-image{
    width: 60px;
    height: 60px;
    margin: 20px 0;
    border-radius: 50px;
    overflow: hidden;
}
.testimonial_section .user-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial_section .card{
     height: 450px; 
    border: 1px solid var(--primary-color) ;
    /*border: none;*/
    background:#fff;
    box-shadow: var(--primary-shadow);
    border-radius:20px;
    text-align:left !important;
    padding:10px;
}
.testimonial_section .ratings i{
    color: #F5D521;
}

.testimonial_section h5{
    margin-bottom: 10px;
}


.testimonial_section .swiper-wrappper {
    position: relative;
}

.testimonial_section .swiper-button-next {
    /*position: absolute;*/
    /*top: 30px;*/
    /*right: 10px;*/
    background-color: var(--second-color);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.169);
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    color: #fff;
}

.testimonial_section .swiper-button-prev {
    background-color: var(--second-color);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.169);
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    /*position: absolute;*/
    /*top: 30px;*/
    /*left: 92%;*/
    color: #fff;
}

.testimonial_section .swiper-button-next:after,
.testimonial_section .swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: 900 !important;
}




footer {
    background: var(--second-color);
    padding: 30px 0;
}

footer .booking_logos{
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 0px 0 50px;
    border-bottom: 0.5px solid #f2eee938;
}
footer .booking_logos img{
    width: 150px;
}


footer .footer_container{
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 30px 0;
    color: #fff;
}

footer .footer_logo{
    width: 250px;
    margin-bottom: 20px;
}
footer .footer_title{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color:var(--primary-color);
}

footer .contact-details p{
    margin-bottom: 0;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 100;
}
footer a{
    color: #f5f5f5;
    transition: all .3s;
    font-size: 14px;
    font-family: var(--primary-font);
    font-weight: 300;
}
footer a:hover{
    color: var(--green-color);
}
footer ul li{
    margin-top: 10px;
}

footer .social_links{
    display: flex;
    gap: 10px;
}
footer .social_links a{
    font-size: 25px;
}






.open-button {
    background-color: #25D366;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 1;
    position: fixed;
    bottom: 23px;
    right: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 999;
    border-radius: 5px;
    transition: all .4s;
}
.open-button:hover{
    color: #fff;
}

.open-button i {
    font-size: 30px;
}

.open-button:hover i {
    color: #fff;
}


.open-button.call-btn{
    background-color: var(--second-color);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 1;
    position: fixed;
    bottom: 23px;
    right: 90px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 999;
    border-radius: 5px;
    transition: all .4s;
}





/* page banner */

.page_banner{
    height: 60vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page_banner.contact_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/banner/1.jpeg);
}
.page_banner.room_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/banner/1.jpeg);
}
.gallery_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/banner/1.jpeg);
}
.page_banner.pool_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/activity/pool-banner.jpg);
}
.page_banner.camp_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/banner/camp-banner.jpg);
}
.page_banner.restaurant_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/banner/chef-banner.jpg);
}
.page_banner.cycling_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/banner/cycling2.avif);
}
.page_banner.indoor_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/activity/indoor-3.webp);
}
.page_banner.sight_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/banner/sight4.webp);
}

.page_banner.package_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/banner/sight4.webp);
}

.page_banner.bridge_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/banner/1.jpeg);
}

.page_banner.arippara_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/banner/1.jpeg);
}
.page_banner.pathangayam_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/banner/1.jpeg);
}
.page_banner.wayanad_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/banner/1.jpeg);
}

.page_banner.blog_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/banner/1.jpeg);
}

.page_banner.flower_bed_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/facility/flower-bed/flower_bed_1.JPG);
}

.page_banner.kids_play_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/facility/kids_play_area/kids-play-5.JPG);
}

.page_banner.candle_light_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/facility/candle-light-dinner/candle-light-3.jpg);
}
.page_banner{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page_banner .sub_head{
    display: none;
}
.sub_head{
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 500 !important;
    font-family: var(--primary-font);
}

.page_banner h1{
    color: #fff;
    font-family: var(--secondary-font);
}


.gallery_page img{
    border-radius: 10px;
}
.video_gallery_page .gallery-images{
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    /* height: 200px; */
    position: relative;
}
.gallery-images .play-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%  -50%);
    width: 40px;
    height: 40px;
    text-align: center;
    display: none;
}



.room_detail_page{
    background-color: #f6f6f6;
}
.room_detail_page .main_heading{
    text-transform: capitalize;
}
.room_detail_page .roomslider_row{
    gap: 20px;
}
.room_detail_page .roomslider_row img{
    border-radius: 10px;
}
.room_detail_page .right .box{
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--primary-shadow);
    margin-bottom: 30px;
}
.room_detail_page .right .box .main_heading{
    font-size: 25px;
}
.room_detail_page .right .box .room_price{
    font-size: 30px;
    margin: 20px 0;
    font-weight: 500;
}
.room_detail_page .right .box .main-btn{
    padding: 12px 20px;
}

.room_detail_page .room_facilities .flex_row{
    display: flex;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap;
}

.room_detail_page .room_facilities .flex_row .item{
    background-color: #f6f6f6;
    padding: 5px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all .4s;
    width: 150px;
    /* justify-content: center; */
}
.room_detail_page .room_facilities .flex_row .item:hover{
    background-color: var(--green-color);
}


.room_detail_page .mySwiper2 .swiper-slide{
    width:100% !important;
    height:450px !important;
}
.room_detail_page .mySwiper2 .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.room_detail_page .mySwiper .swiper-slide{
    width:100px !important;
    height:100px !important;
}
.room_detail_page .mySwiper .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}




.room_image_grid_row{
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}
.room_image_grid_row .image{
    width: 100%;
    height: 400px;
}

.room_image_grid_row .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book_btn_row {
    padding: 70px 0;
}
.book_btn_row .main-btn{
    width: fit-content;
}






.contact_page .grid_row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.contact_page .left_image{
    width: 80%;
    margin: auto;
}
.contact_page .right_content h1{
    font-size: 70px;
    margin-bottom: 20px;
    font-family: var(--secondary-font);
    line-height: 1;
    font-weight: 700;
    color: var(--second-color);
}

.contact_page .web{
    font-size: 20px;
    color: var(--second-color);
}
.contact_page .address{
    font-size: 18px;
    font-weight: 300;
    font-family: var(--primary-font);
    margin: 20px 0;
}

.contact_page .contact_details{
    display: flex;
    gap: 20px;
}

.contact_page .contact_details .box{
    /* background-color: var(--second-color); */
    width: 300px;
}
.contact_page .contact_details .box .icon{
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}
.contact_page .contact_details .box h6{
    font-size: 20px;
    text-transform: capitalize;
}
.contact_page .contact_details .box p{
    margin-bottom: 0;
    font-size: 18px;
}
.contact_page .contact_details .box p a{
    color: var(--second-color);
}


.contact_form{
    background-color: #f6f6f6;
}

.contact_form .grid_row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact_form form{
    margin-top: 30px;
}
.contact_form .text-muted{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    font-family: var(--primary-font);
}

.contact_form .main_heading{
    margin-bottom: 15px;
}
.contact_form p{
    font-weight: 300;
    font-family: var(--primary-font);
}
.contact_form form .input-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.contact_form form .input-box .box{
    margin-bottom: 20px;
}

.contact_form form input{
    height: 45px;
    border-radius: 0;
}
.contact_form form textarea{
    border-radius: 0;
    margin-bottom: 30px;
}

.contact_form .main-btn{
    padding: 12px 20px;
    
}

.contact_form .form-label{
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 400;
}

.contact_form input::placeholder{
    font-size: 14px;
    font-weight: 300;
    font-family: var(--primary-font);
}

.contact_form .map_box{
    border: 1px solid var(--green-color);
}



.detail-section .detail-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}
/*.detail-section img{*/
/*    border-radius:10px;*/
/*}*/

.detail-section .image-row{
    margin-top:30px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}



.place_to_visit .grid_row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}


.place_to_visit .item{
    background-color: var(--primary-color);
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--primary-shadow);
}
.place_to_visit .item .grid_row_2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.place_to_visit .item .grid_row_2 .image{
    width: 100%;
    height: 250px;
}
.place_to_visit .item .grid_row_2 .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.place_to_visit .item .grid_row_2 .content{
    display: flex;
    flex-direction: column ;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.place_to_visit .item .grid_row_2 .content h3{
    font-family: var(--secondary-font);
    margin-bottom: 20px;
    font-size: 22px;
}



.package_page .grid_row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    
    align-items: center;
    margin-bottom: 100px;
}
/*.package_page .package_image{*/
/*    z-index:999;*/
/*}*/
.package_page .package_image img{
    border-radius: 20px;
}
.package_page .package_content{
    background-color: var(--primary-color);
    padding: 50px;
    margin-left: -50px;
    border-radius: 20px;
}






.modal input{
    height: 45px;
    border-radius: 0;
}

.modal .form-label{
    font-size: 14px;
}


.about_wrapper .left{
    position: relative;
    
}
.about_wrapper .left::after{
    position: absolute;
    content: '';
    top:0;
    right:0;
    width:2px;
    height:100%;
    background-color: #d2d1d1;
}
.about_images{
    padding-top: 0px;
    padding-bottom: 30px;
}
.about_images .image_row{
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:20px;
}

.nature_content h3{
    text-align: center;
    font-family: var(--secondary-font);
    font-size:34px;
    padding-bottom:30px;
}
.nature_image_row{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:20px;
    padding-top:10px;
}










.blogs .grid_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blogs .blog_item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--primary-shadow);
    transition: all .4s;
}

.blogs .blog_image {
    height: 250px;
    width: 100%;
    margin-bottom: 0px;
}

.blogs .blog_image img {
    height: 100%;
    width: 100%;
}

.blogs .blog_contents {
    padding: 10px;
    background-color: #fff;
}

.blogs .blog_name {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: #000;
    transition: all .4s;
}

.blogs .blog_item:hover {
    cursor: pointer;
}

.blogs .blog_item:hover .blog_name {
    text-decoration: underline !important;
}

.blogs .author_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 10px;
}

.blogs .author_box .author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blogs .author_box .author h6 {
    margin-bottom: 0;
}

.blogs .author_box .author_image {
    width: 30px;
    height: 30px;
}

.blogs .author_box .author_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.blogs .author_box .text-muted {
    margin-bottom: 0;
    font-size: 14px;
}






.blog_detail_page img {
    border-radius: 10px;
}

.blog_detail_page .blog_box {
    border:1px solid var(--primary-color);
    padding:20px;
    border-radius:20px;
}

.blog_detail_page .blog_name {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 10px;
}

.blog_detail_page .blog_image {
    width: 100%;
    height: 500px;
    margin-bottom: 20px;
}

.blog_detail_page .blog_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_detail_page .blog_desc {
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 20px;
}




.privacy_policy_page h1{
    font-size:25px;
    margin-bottom:20px;
    font-weight:500;
}
.privacy_policy_page h2{
    font-size:22px;
    margin-bottom:10px;
    font-weight:400;
}
.privacy_policy_page ul{
    list-style:disc;
    padding-left:20px;
}
.privacy_policy_page ul li{
    margin-bottom:10px;
}


.terms_condition h1{
    font-size:25px;
    margin-bottom:20px;
    font-weight:500;
}
.terms_condition h2{
    font-size:22px;
    margin-bottom:10px;
    font-weight:400;
}
.terms_condition ul{
    list-style:disc;
    padding-left:20px;
}
.terms_condition ul li{
    margin-bottom:10px;
}


