@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

:root {
    --white: #ffffff;
    --black: #000000;
    --primarycolor: #018B48;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',
        sans-serif;
}

html {
    -webkit-font-smoothing: antialiased;
}

html,
body {
    font-family: 'Poppins',
        sans-serif;
}

.object-fit-contain {
    object-fit: contain;
}

.top_banner a {
    color: var(--white);
    letter-spacing: 1px;

}

.top_banner a:hover {
    color: var(--white);
}

.top_banner a {
    margin-right: 15px !important;
}

.social_media_top a {
    margin-right: 30px;
}

.booking_button_topnav {
    color: var(--white);
    background-color: var(--primarycolor);
    padding: 7px 5px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.banner {
    background-color: #fff;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    height: auto;
    width: 100%;
    position: relative;
}

.banner:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0.5;
}

/* 
.banner_outlet {
    background-image: url(../images/outlets_banner.png);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    height: 70vh;
    width: 100%;
    position: relative;
} */
/* 
.banner_outlet:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: 0.5;
}
 */

.temporary-close-image img {
    width: 100%;
}

.banner_gallery {
    background-image: url(../video/seashellgif.gif);
    background-size: 100% 100%;
    height: 70vh;
    width: 100%;
    position: relative;
}

.banner_gallery:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: 0.1;
}

.banner_about {
   // background-color:#7f7f7f;
  //  background-size: 100% 100%;
  //  height: 70vh;
  //  width: 100%;
  //  position: relative;
}

.banner_about:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-color: #fff;
    opacity: 0.6;
}

.banner_annanagar {
    background-image: url(../images/banners/anna-NAGAR.JPG);
    background-size: cover;
    background-position: center 90%;
    height: 70vh;
    width: 100%;
    position: relative;
}

.banner_annanagar:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: 0.1;
}

.navbar_main_desktop .nav_links_list {
    list-style: none;
    display: flex;
    align-items: center;

}


.nav_links_list li {
    margin: 10px 20px;
}

.nav_links_list a {
    text-decoration: none;
    color: var(--white);
    font-size: 18px;
    opacity: 1;
}

.nav_links_list a:hover {
    color: var(--primarycolor);

}

.nav_links_list .active {
    color: var(--primarycolor);
    border-top: 2px solid var(--primarycolor);
    padding-top: 27px;
    padding-left: 5px;
    padding-right: 5px;
}

.mail a {
    font-size: 16px !important;
    font-weight: 400;
    text-decoration: none;

}

.phone a {
    font-size: 16px !important;
    font-weight: 400;
    text-decoration: none;

}

.navbar_main_desktop {

    min-height: 50px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.7em;
    position: relative;
    color: var(--white);

}

.navbar_main_desktop::before {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 1.6);
    height: 100%;
    width: 100%;
}

.dropbtn {
    background: none;
    color: white;
    padding: 0px;
    font-size: 18px;
    border: none;
    transition: 0.8 ease-in-out;
}

.dropbtn:hover {
    color: #018B48;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;

}

button {
    box-shadow: none !important;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    left: -35px;
    top: 30px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: none;
}

/* .navbar_main_desktop::before {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, 0.50);
    height: 100%;
    width: 100%;
} */


.dropdown-menu {
    background-color: #018B48 !important;
}

.nav-link:focus {
    color: var(--white) !important;
}

/* mobile navbar */

.mobile_navbar {
    position: relative;
    background-color: var(--white);
    display: none;
}


.mobile_navbar .fa {
    color: #018B48 !important;
}

.navbar_content {
    opacity: 1;
    position: relative;
    z-index: 1;

}

.banner_text {
    position: sticky;
    top: 40%;
	text-align:center;
   

}
.banner_text p
{
	text-align:center;
	font-size:16px;
	color:#fff;
	padding:20px 20px;
}
.banner_text h1 {
    font-family: 'Poppins',
        sans-serif;
    color: var(--white);
    font-size: 64px;
    text-transform: capitalize;

}

.banner_text .typejs_heading {
    color: var(--white);
    font-size: 70px;
    font-weight: 300;
    position: relative;
    left: -24%;

}

.js_words {
    font-weight: 600;
}

.nav-link {
    display: block;
    padding: 0px !important;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}


/* The side navigation menu */
.sidenav {
    height: 100%;
    /* 100% Full-height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 9999;
    /* Stay on top */
    top: 0;
    /* Stay at the top */
    left: 0;
    background-color: var(--primarycolor);
    /* Black*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 60px;
    /* Place content 60px from the top */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 32px !important;
    text-decoration: none;
    font-size: 25px;
    color: var(--white);
    display: block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}


/* about css */
.about_heading {
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: 300;
    line-height: 50px;
    text-align: center;
}

.about_card {
    background-color: var(--white);
    height: fit-content;
    margin-left: 0px;
    padding: 0px;
}

.dropdown-item:active {
    color: #018B48 !important;
    text-decoration: none;
    background-color: #fff !important;
}

.about_main {
    /* font-family: Kristi, "Comic Sans MS", cursive, sans-serif; */
    font-size: 40px;
    line-height: 50px;
    color: var(--primarycolor);
    font-weight: normal;
    /* font-style: italic; */
}

.about_subheading {
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: -4px;
    line-height: 35px;
    padding-top: 10px;
}

.about_normal_heading {
    text-align: justify;
    font-weight: 400;
    font-size: 18px;
    margin-top: 30px;
}


.about_text_para {
    font-size: 15px;
    font-weight: 300;
    line-height: 35px;
}


/* journey css */
.journey_main_heading {
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: 300;
    line-height: 50px;
    text-align: center;
}


.journey_subheading {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
    line-height: 30px;
}

.para_heading {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.para_inner {
    font-size: 18px;
    font-weight: 300;
    line-height: 35px;
}

#journey_image {
    box-shadow: 0 15px 30px rgb(9 26 44 / 20%);
    border: 9px solid white;
    width: 70%;
    height: auto;
    outline: 1px solid #eaeaea;
    margin-left: 40px;
}


/* services section */

.card {
    padding: 20px;
    transition: 0.8s ease-in-out !important;
    height: 460px;
    box-shadow: rgb(0 0 0 / 35%) 0px 1px 7px;
}

.card:hover {
    transform: scale(0.9);
}


.services_section {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}


.card_heading {
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    margin-top: 30px;
}

.card_para {
    font-size: 16px;

}

/* banner header */

.banner_header {
    background-image: url(../images/parall.png);
    height: fit-content;
    width: 100%;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.banner_header:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: 0.4;
}

.banner_header_text {
    padding: 100px;
    position: relative;

}


.banner_header_heading {
    font-size: 43px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;

}

.banner_header_subheading {
    font-size: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    font-weight: 300;
}


/* food grid css */

.food_heading {
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: 300;
    line-height: 50px;
    text-align: center;
}

.food_subheading {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Poppins',
        sans-serif;
}

#gridimg {
    transition: 0.6s ease-in-out;
    height: 100%;
}

.food-grid-card {
    overflow: hidden;
    border: 9px solid white;
    outline: 1px solid #eaeaea;
    box-shadow: 0 10px 41px 0 rgb(9 26 44 / 20%);
    transition: 0.6 ease-in-out;
    height: 345px;
}

.seashell-image {
    height: 780px;
}

#gridimg:hover {
    transform: scale(1.1);

}

.grid_main_heading {
    margin-top: 25px;
    line-height: 30px;
    margin-bottom: 0;
    text-align: center;
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 15px;
	font-weight:600;
	text-transform:uppercase;
}

.grid_main_heading:hover {
    color: var(--primarycolor);
}

/* #margin_col {
        margin-top: -80px;
    } */

.grid_subheading {
    margin-top: 18px;
    line-height: 20px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-align: justify;
    color: #332f3b;
}

.grid_para {
    line-height: 20px;
    text-transform: capitalize;
    font-size: 14px;
    text-align: justify;
}

.grid_box_heading {
    line-height: 1.9;

    font-weight: 400;
    font-size: 25px;
    color: #332f3b;
    text-align: center;
}


/* parllalx two */
.banner_header_two {
    background-image: url(../images/parllal__up.JPG);
    height: fit-content;
    width: 100%;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}


.banner_header_two:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: 0.4;
}


/* testimonials css */

.testimonial {
    height: fit-content;
    position: relative;
    background: url('../images/testimonials_new.png');
    padding-top: 20px;
    padding-bottom: 20px;
    background-position: center;
    background-size: cover;
}


.heading {
    text-align: center;
    color: #454343;
    font-size: 30px;
    font-weight: 500;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
    z-index: 999;
}

.white-heading {
    color: #ffffff;
}

.heading:after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
    background: url(img/heading-line.png);
    background-repeat: no-repeat;
    background-position: center;
}

.white-heading:after {
    background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
    background-repeat: no-repeat;
    background-position: center;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}

.white-heading span {
    color: #ffffff;
}

/*-----Testimonial-------*/

.testimonial:after {
    position: absolute;
    top: -0 !important;
    left: 0;
    content: " ";
    /* background: url(img/testimonial.bg-top.png); */
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}


#testimonial4 .carousel-inner:hover {
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

#testimonial4 .carousel-inner:active {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

#testimonial4 .carousel-inner .item {
    overflow: hidden;
}

.testimonial4_indicators .carousel-indicators {
    left: 0;
    margin: 0;
    width: 100%;
    font-size: 0;
    height: 20px;
    bottom: 15px;
    padding: 0 5px;
    cursor: e-resize;
    overflow-x: auto;
    overflow-y: hidden;
    position: absolute;
    text-align: center;
    white-space: nowrap;
}

.testimonial4_indicators .carousel-indicators li {
    padding: 0;
    width: 14px;
    height: 14px;
    border: none;
    text-indent: 0;
    margin: 2px 3px;
    cursor: pointer;
    display: inline-block;
    background: #ffffff;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators .active {
    padding: 0;
    width: 14px;
    height: 14px;
    border: none;
    margin: 2px 3px;
    background-color: #9dd3af;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar {
    height: 3px;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb {
    background: #eeeeee;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.testimonial4_control_button .carousel-control {
    top: 175px;
    opacity: 1;
    width: 40px;
    bottom: auto;
    height: 40px;
    font-size: 10px;
    cursor: pointer;
    font-weight: 700;
    overflow: hidden;
    line-height: 38px;
    text-shadow: none;
    text-align: center;
    position: absolute;
    background: transparent;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
    transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
}

.testimonial4_control_button .carousel-control.left {
    left: 7%;
    top: 50%;
    right: auto;
}

.testimonial4_control_button .carousel-control.right {
    right: 7%;
    top: 50%;
    left: auto;
}

.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover {
    color: #000;
    background: #fff;
    border: 2px solid #fff;
}

.testimonial4_header {
    top: 0;
    left: 0;
    bottom: 0;
    width: 550px;
    display: block;
    margin: 30px auto;
    text-align: center;
    position: relative;
}

.testimonial4_header h4 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial4_slide {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    margin: auto;
    padding: 20px;
    position: relative;
    text-align: center;
}

.title {
    color: var(--white);
}

.post {
    color: var(--white);
}

.testimonial4_slide img {
    top: 0;
    left: 0;
    right: 0;
    width: 136px;
    height: 136px;
    margin: auto;
    display: block;
    color: #f2f2f2;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    position: relative;
    border-radius: 50%;
    box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}

.testimonial4_slide p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.4;
    text-align: justify;
    margin: 40px 0 20px 0;
}

.testimonial4_slide h4 {
    color: #ffffff;
    font-size: 22px;
}

.testimonial .carousel {
    padding-bottom: 50px;
}

.testimonial .carousel-control-next-icon,
.testimonial .carousel-control-prev-icon {
    width: 35px;
    height: 35px;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.testimonials_card {
    width: 600px;
    height: fit-content;
    margin: auto;
    position: absolute;
    top: 50px;
    border: 2px solid var(--primarycolor);
    padding: 50px;
}

.testimonials {
    margin-top: 60px;
    margin-bottom: 30px;
}

.testimonials_client {
    font-size: 22px;
    text-align: center;
    font-weight: 400;
}

#card_testimonials {
    height: fit-content !important;
}

button:focus {
    box-shadow: none !important;
    outline: 0;
}

/* lightbox gallery  */

.gallery-container {
    display: flex;
    flex-wrap: wrap;

    background-color: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    width: 100%;
    margin: 0 auto;

}

.gallery-item {
    flex-basis: 32.7%;
    margin-bottom: 6px;
    opacity: 1;
    cursor: pointer;
}

.gallery-item:hover {
    opacity: .85;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-content {
    font-size: .8em;
}

.lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0;
    left: 0;
}

.lightbox-content {
    position: relative;
    width: 70%;
    height: 70%;
    margin: 5% auto;
}

.lightbox-content img {
    border-radius: 7px;
    box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 7px;
    top: 45%;
    cursor: pointer;
}

.lightbox-prev {
    left: 0;
}

.lightbox-next {
    right: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: .8;
}

@media (max-width: 768px) {
    .gallery-container {
        width: 100%;
    }

    .gallery-item {
        flex-basis: 49.80%;
        margin-bottom: 3px;
    }

    .lightbox-content {
        width: 80%;
        height: 60%;
        margin: 15% auto;
    }

}

@media (max-width: 480px) {
    .gallery-item {
        flex-basis: 100%;
        margin-bottom: 1px;
    }

    .lightbox-content {
        width: 90%;
        margin: 20% auto;
    }
}

.card-img_gallery {
    background-color: #292322;
    height: 97%;
}

.img_gallery_heading {
    color: var(--white);
    padding: 18px;
}

.img_gallery_heading_second {
    color: var(--white);
    padding-left: 20px;
    font-weight: 400;
}


/* testimonials */



.contact_heading {
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: -1px;
    font-weight: 300;
    line-height: 50px;
}


.contact_subheading {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}


.contact_section {
    margin-top: 60px !important;
}

#contact_img {
    box-shadow: 0 15px 30px rgb(9 26 44 / 20%);
    border: 9px solid white;
    outline: 1px solid #eaeaea;
    /* height: 100%; */
}


input {
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    margin-bottom: 80px !important;
    width: 95% !important;
}

select {
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    margin-bottom: 40px !important;
    width: 95% !important;
    color: dimgrey;
}

textarea {
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    margin-bottom: 40px !important;
    width: 95% !important;
}

.submit_button {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    background-color: var(--primarycolor);
}

.submit_button:hover {
    color: var(--white);
}


/* footer css */

footer {
    background-image: url(../images/banners/img2.jpg);
    background-size: cover;
    height: fit-content;
    width: 100%;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;

}

footer:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-color: #000000a6;
    opacity: 0.9;

}

footer::after {
    position: absolute;
    content: '';
    height: 35%;
    width: 100%;
    top: -23%;
    background-image: url(../images/footer_img/Border7.png);
    background-repeat: no-repeat;
}


.footer_text {
    color: #cacaca;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 200;
    line-height: 40px;
    font-family: 'Poppins', sans-serif;
}

.footer_address {
    color: var(--white);
    font-family: 'Poppins',
        sans-serif;
    margin-top: 40px;

}

footer a {
    text-decoration: none;
}

footer a:hover {
    color: var(--white);
}

.address_heading {
    color: var(--white);
    font-size: 19px;
}

.address_text {
    color: var(--white);
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 200;
    line-height: 28px;
}

.contact_num {
    color: var(--white);
    line-height: 34px;
    font-size: 14px;
    font-weight: 200;
}

.contact_num a {
    font-size: 14px;
    font-weight: 200;
}

.address_ a {
    color: var(--white);
    font-size: 14px;
    font-weight: 200;
}

/* outlet page css */

.outlet_name {
    font-size: 22px;
    margin-left: 10px;
}

#outlet_card {
    height: 200px !important;
}


/* gallery page css */
.heading {
    text-align: center;
    font-size: 2.0em;
    letter-spacing: 1px;
    padding: 40px;
    color: white;
}

.gallery-image img,
.gallery-video img {
    /* height: 250px; */
    /* height: auto; */
    width: 350px;
    transform: scale(1.0);
    transition: transform 0.4s ease;
}

.gallery-video {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.img-box {
    box-sizing: content-box;
    margin: 10px;
    height: 250px;
    /* height: auto; */
    width: 350px;
    overflow: hidden;
    display: inline-block;
    color: white;
    position: relative;
    background-color: white;
}

.caption {
    position: absolute;
    bottom: 5px;
    left: 20px;
    opacity: 0.0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.transparent-box {
    height: 250px;
    width: 350px;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
}

.img-box:hover img {
    transform: scale(1.1);
}

.img-box:hover .transparent-box {
    background-color: rgba(0, 0, 0, 0.5);
}

.img-box:hover .caption {
    transform: translateY(-20px);
    opacity: 1.0;
}

.img-box:hover {
    cursor: pointer;
}

.caption>p:nth-child(2) {
    font-size: 0.8em;
}

.opacity-low {
    opacity: 0.5;
}

.grid_box_heading a {
    text-decoration: none;
    color: #332f3b;

}

.grid_box_heading a:hover {
    color: #018B48;

}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
    display: none;
}

button {


    padding: 6px 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    border-radius: 6px;
    border: none;

    color: #fff;
    background: linear-gradient(180deg, #65b38d 0%, #018B48 100%);
    background-origin: border-box;
    box-shadow: 0px 0.5px 1.5px rgba(1, 139, 72, 0.25), inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;



}

button:focus {
    box-shadow: inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2), 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), 0px 0px 0px 3.5px rgba(58, 108, 217, 0.5);
    outline: 0;
}

/* mobile css */
@media (max-width:560px) {

    .navbar_main_desktop {
        display: none;
    }

    .mobile_navbar {
        display: block;
    }

    #zomato {
        display: flex;
        justify-content: center;
        position: relative;
        left: 59%;
    }

    .heading {
        text-align: center;
        color: var(--white) !important;
        font-size: 20px !important;
        font-weight: 400 !important;
        position: relative;
        margin-bottom: 70px;
        text-transform: uppercase;
        z-index: 999;
    }

    .testimonial4_slide p {
        color: #ffffff;
        font-size: 16px !important;
        word-break: break-all !important;
        line-height: 1.4;
        text-align: justify;
        margin: 40px 0 20px 0;
    }


    .banner_text .typejs_heading {
        color: var(--white);
        font-size: 22px !important;
        font-weight: 300;
        position: relative;
        left: -6% !important;
    }

    .banner_text {
        position: absolute;
        top: 58% !important;
        left: 20% !important;
    }

    .banner_text h1 {
        font-size: 35px !important;

    }



    .banner_gallery {
        background-image: url(../video/seashellbggifmb.gif) !important;
        background-size: 100% 100%;
        height: 70vh;
        width: 100%;
        position: relative;
    }

    .banner_about {
        background-color:#000;  !important;
        background-size: 100% 100%;
    }

    .banner_outlet {
        background-image: url(../images/mobile_banners/4.png) !important;
        background-size: 100% 100%;
    }

    .card {
        padding: 20px;
        transition: 0.8s ease-in-out !important;
        height: fit-content !important;
        margin-top: 15px !important;
    }

    .about_card {
        background-color: var(--white);
        height: fit-content;
        padding: 0px !important;
        margin-left: 0px;
    }

    #margin_col {
        margin-top: 0px;
    }

    .food_heading {
        font-size: 22px;
        text-transform: uppercase;
        letter-spacing: -1px;
        font-weight: 300;
        line-height: 34px;
        text-align: center;
    }

    .grid_main_heading {
        margin-top: 35px;
        line-height: 30px;
        margin-bottom: 0;
        text-align: center;
        font-weight: 300;
        font-size: 24px;
        margin-bottom: 30px;
    }

    .grid_subheading {
        margin-top: -15px;
        line-height: 20px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0.3px;
        text-align: center;
        color: #332f3b;
    }

    .grid_para {
        line-height: 20px;
        text-transform: capitalize;
        font-size: 14px;
        text-align: center;
    }

    .banner_header_subheading {
        font-size: 30px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--white);
        text-align: center;
        font-weight: 300;
    }

    .banner_header_text {
        padding: 31px;
        position: relative;
    }

    .banner_header_heading {
        font-size: 35px;
        letter-spacing: 0px;
        text-transform: uppercase;
        color: var(--white);
        text-align: center;
    }

    .contact_heading {
        font-size: 22px;
        text-transform: uppercase;
        text-align: center;
        letter-spacing: 0px;
        font-weight: 300;
        line-height: 36px;
    }

    .about_main {
        /* font-family: Kristi, "Comic Sans MS", cursive, sans-serif; */
        font-size: 50px;
        line-height: 50px;
        color: var(--primarycolor);
        font-weight: normal;
        /* font-style: italic; */
        text-align: center;
    }

    .contact_section {
        margin-top: -28px !important;
    }

    .about_main {
        /* font-family: Kristi, "Comic Sans MS", cursive, sans-serif; */
        font-size: 39px;
        line-height: 18px;
        color: var(--primarycolor);
        font-weight: normal;
        /* font-style: italic; */
        text-align: center;
    }


    input {
        border-top: none !important;
        border-right: none !important;
        border-left: none !important;
        border-image: initial !important;
        border-bottom: 1px solid rgb(204, 204, 204) !important;
        margin-bottom: -1px !important;
        width: 95% !important;
        margin-top: 67px !important;
    }

    select {
        word-wrap: normal;
        margin-top: 61px !important;
    }

    footer {
        height: fit-content;
        margin-top: 20px;
    }

    footer::after {
        position: absolute;
        content: '';
        height: 15% !important;
        width: 100%;
        top: -10% !important;
        background-repeat: no-repeat;
    }

    /* outlet page css */
    #oulet_card {
        margin-top: 20px;
    }

    .about_subheading {
        font-size: 25px !important;
        text-transform: uppercase;
        font-weight: 300;
        letter-spacing: 1px;
        line-height: 35px;
        padding-top: 10px;
        text-align: center;
    }

    #gridimg {
        transition: 0.6s ease-in-out;
        height: 100%;
    }

    #contact_img {
        box-shadow: 0 15px 30px rgb(9 26 44 / 20%);
        border: 9px solid white;
        outline: 1px solid #eaeaea;
        height: 100%;
    }

    .address_text {
        margin-bottom: 0;
    }

    .footer_text {
        color: #cacaca;
        letter-spacing: 1px;
        font-size: 18px;
        font-weight: 200;
        line-height: 40px;
        font-family: 'Poppins',
            sans-serif;
        margin-bottom: 0px;
    }

    .services_section {
        margin-top: 10px !important;
        margin-bottom: 60px !important;
    }

    .about_heading {
        font-size: 22px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 300;
        line-height: 32px;
        text-align: center;
    }

    .card_heading {
        font-size: 20px;
        font-weight: 400;
        text-align: center;
        margin-top: 30px;
    }

    .card_para {
        font-size: 16px;
        text-align: center;
    }

    .footer_text {
        color: #cacaca;
        letter-spacing: 1px;
        font-size: 12px;
        font-weight: 200;
        line-height: 40px;
        font-family: 'Poppins', sans-serif;
        margin-bottom: 0px;
        padding-left: 9px;
    }

}

@media (max-width:325px) {
    .mail a {
        font-size: 14px !important;
        font-weight: 400;
        text-decoration: none;
    }

    .phone a {
        font-size: 14px !important;
        font-weight: 400;
        text-decoration: none;
    }

    #zomato {
        display: flex;
        justify-content: center;
        position: relative;
        left: 59%;
    }

    .banner_text {
        position: absolute;
        top: 35% !important;
        left: 23% !important;
    }

    .about_subheading {
        font-size: 34px;
        text-transform: uppercase;
        font-weight: 300;
        letter-spacing: -4px;
        line-height: 35px;
        padding-top: 10px;
    }

    .services_section {
        margin-top: 10px !important;
        margin-bottom: 60px !important;
    }

    .card {
        padding: 20px;
        transition: 0.8s ease-in-out !important;
        height: 411px;
        margin-top: 10px;
    }

    #gridimg {
        transition: 0.6s ease-in-out;
        height: 100%;
    }

    #contact_img {
        box-shadow: 0 15px 30px rgb(9 26 44 / 20%);
        border: 9px solid white;
        outline: 1px solid #eaeaea;
        height: 100%;
    }

    .banner_header_text {
        padding: 35px;
        position: relative;
    }

    .address_text {
        margin-bottom: 0;
    }
}


/* tablet css */

@media (min-width:570px) and (max-width:960px) {
    .navbar_main_desktop {
        display: none;
    }

    .mobile_navbar {
        display: block;
    }

    #zomato {
        display: flex;
        justify-content: center;
        position: relative;
        left: 59%;
    }

    .banner_text .typejs_heading {
        color: var(--white);
        font-size: 40px !important;
        font-weight: 300;
        position: relative;
        left: -15% !important;
    }

    .banner_text h1 {
        font-size: 52px;

    }

    .banner_text {
        position: absolute;
        top: 55%;
        left: 26%;
    }

    .about_card {
        background-color: var(--white);
        height: fit-content !important;
        margin-left: 0px;
        padding: 0px;
    }

    .card {
        padding: 20px;
        transition: 0.8s ease-in-out !important;
        height: fit-content !important;
        margin-top: 15px !important;
    }

    .services_section {
        margin-top: 0px !important;
        /* margin-bottom: 0px !important; */
    }

    .card_heading {
        font-size: 19px !important;
        font-weight: 400;
        text-align: center;
        margin-top: 30px;
    }

    .card_para {
        font-size: 15px;
        text-align: center;
    }

    footer::after {
        position: absolute;
        content: '';
        height: 29%;
        width: 100%;
        top: -23%;
        background-image: url(../images/footer_img/Border7.png);
        background-repeat: no-repeat;
    }

    #margin_col {
        margin-top: 0px;
    }

    .about_subheading {
        font-size: 47px;
        text-transform: uppercase;
        font-weight: 300;
        letter-spacing: -4px;
        line-height: 35px;
        padding-top: 10px;
    }

    input {
        border-top: none !important;
        border-right: none !important;
        border-left: none !important;
        border-image: initial !important;
        border-bottom: 1px solid rgb(204, 204, 204) !important;
        margin-bottom: -1px !important;
        width: 95% !important;
        margin-top: 67px !important;
    }

    select {
        word-wrap: normal;
        margin-top: 61px !important;
    }

    footer {
        height: fit-content !important;
    }

    /* outlet page css */
    #oulet_card {
        margin-top: 20px !important;
    }

    #contact_img {
        height: 100% !important;
    }

}

/* laptop css */
@media (max-width:1560px) {
    footer {
        height: fit-content;

    }

    .banner_text .typejs_heading {
        color: var(--white);
        font-size: 60px;
        font-weight: 300;
        position: relative;
        left: -24%;
    }

    #gridimg {
        transition: 0.6s ease-in-out;
        height: 100%;
    }

    .grid_subheading {
        margin-top: 18px;
        line-height: 20px;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.3px;
        text-align: center;
        color: #332f3b;
    }

    .grid_para {
        line-height: 20px;
        text-transform: capitalize;
        font-size: 15px;
        text-align: center;
    }

    .card_heading {
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        margin-top: 30px;
    }

    .card {
        padding: 20px;
        transition: 0.8s ease-in-out !important;
        height: 380px;
    }

    .card_para {
        font-size: 15px;
    }
}

@media (max-width:1390px) {
    #gridimg {
        transition: 0.6s ease-in-out;
        height: 100%;
    }

    .grid_subheading {
        margin-top: 18px;
        line-height: 20px;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.3px;
        text-align: center;
        color: #332f3b;
    }

    .grid_para {
        line-height: 20px;
        text-transform: capitalize;
        font-size: 14px;
        text-align: center;
    }

    .card_heading {
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        margin-top: 30px;
    }

    .card {
        padding: 20px;
        transition: 0.8s ease-in-out !important;
        height: 365px;
    }

    .card_para {
        font-size: 15px;
    }


    .banner_text .typejs_heading {
        color: var(--white);
        font-size: 54px;
        font-weight: 300;
        position: relative;
        left: -24%;
    }

    footer::after {
        position: absolute;
        content: '';
        height: 13% !important;
        width: 50%;
        top: -10% !important;
        background-repeat: no-repeat;
    }
}

.main-timeline {
    position: relative;
}

.main-timeline:before,
.main-timeline:after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
}

.main-timeline:before {
    content: "";
    width: 3px;
    height: 100%;
    background: #bababa;
    position: absolute;
    top: 0;
    left: 50%;
}

.main-timeline .timeline {
    width: 50%;
    float: left;
    position: relative;
    z-index: 1;
}

.main-timeline .timeline:before,
.main-timeline .timeline:after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
}

.main-timeline .timeline:first-child:before,
.main-timeline .timeline:last-child:before {
    content: "";
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid rgba(211, 207, 205, 1);
    position: absolute;
    top: 0;
    right: -14px;
    z-index: 1;
}

.main-timeline .timeline:last-child:before {
    top: auto;
    bottom: 0;
}

.main-timeline .timeline:last-child:nth-child(even):before {
    right: auto;
    left: -12px;
    bottom: -2px;
}

.main-timeline .timeline-content {
    text-align: center;
    margin-top: 8px;
    position: relative;
    transition: all 0.3s ease 0s;
}

.main-timeline .timeline-content:before {
    content: "";
    width: 100%;
    height: 5px;
    background: rgba(211, 207, 205, 1);
    position: absolute;
    top: 88px;
    left: 0;
    z-index: -1;
}

.main-timeline .circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #fff;
    border: 8px solid rgba(211, 207, 205, 1);
    float: left;
    margin-right: 25px;
    position: relative;
}

.main-timeline .circle:before {
    content: "";
    width: 26px;
    height: 30px;
    background: rgba(211, 207, 205, 1);
    margin: auto;
    position: absolute;
    top: 0;
    right: -33px;
    bottom: 0;
    z-index: -1;
    box-shadow: inset 7px 0 9px -7px #444;
}

.main-timeline .circle span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    line-height: 268px;
    font-size: 80px;
    color: #454344;
}

.main-timeline .circle span:before,
.main-timeline .circle span:after {
    content: "";
    width: 28px;
    height: 50px;
    background: #fff;
    border-radius: 0 0 0 21px;
    margin: auto;
    position: absolute;
    top: -54px;
    right: -33px;
    bottom: 0;
    z-index: -1;
}

.main-timeline .circle span:after {
    border-radius: 21px 0 0 0;
    top: 0;
    bottom: -56px;
}

.main-timeline .circle .img {
    vertical-align: initial;
    border-radius: 50%;
}

.main-timeline .content {
    display: table;
    padding-right: 40px;
    position: relative;
}

.main-timeline .year {
    display: block;
    padding: 10px;
    margin: 10px 0 50px 0;
    background: var(--primarycolor);
    border-radius: 7px;
    font-size: 25px;
    color: #fff;
}

.main-timeline .title {
    font-size: 25px;
    font-weight: bold;
    color: var(--primarycolor);
    margin-top: 0;
}

.main-timeline .description {
    font-size: 14px;
    color: #333;
    text-align: justify;
    visibility: hidden;
}

.main-timeline .icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid rgba(211, 207, 205, 1);
    position: absolute;
    top: 78px;
    right: -14px;
}

.main-timeline .icon:before {
    content: "";
    width: 15px;
    height: 25px;
    background: rgba(211, 207, 205, 1);
    margin: auto;
    position: absolute;
    top: -1px;
    left: -15px;
    bottom: 0;
    z-index: -1;
}

.main-timeline .icon span:before,
.main-timeline .icon span:after {
    content: "";
    width: 21px;
    height: 25px;
    background: #fff;
    border-radius: 0 0 21px 0;
    margin: auto;
    position: absolute;
    top: -30px;
    left: -15px;
    bottom: 0;
    z-index: -1;
}

.main-timeline .icon span:after {
    border-radius: 0 21px 0 0;
    top: 0;
    left: -15px;
    bottom: -30px;
}

.main-timeline .timeline:nth-child(2n) .timeline-content,
.main-timeline .timeline:nth-child(2n) .circle {
    float: right;
}

.main-timeline .timeline:nth-child(2n) .circle {
    margin: 0 0 0 25px;
}

.main-timeline .timeline:nth-child(2n) .circle:before {
    right: auto;
    left: -33px;
    box-shadow: -7px 0 9px -7px #444 inset;
}

.main-timeline .timeline:nth-child(2n) .circle span:before,
.main-timeline .timeline:nth-child(2n) .circle span:after {
    right: auto;
    left: -33px;
    border-radius: 0 0 21px 0;
}

.main-timeline .timeline:nth-child(2n) .circle span:after {
    border-radius: 0 21px 0 0;
}

.main-timeline .timeline:nth-child(2n) .content {
    padding: 0 0 0 40px;
    margin-left: 2px;
}

.main-timeline .timeline:nth-child(2n) .icon {
    right: auto;
    left: -14px;
}

.main-timeline .timeline:nth-child(2n) .icon:before,
.main-timeline .timeline:nth-child(2n) .icon span:before,
.main-timeline .timeline:nth-child(2n) .icon span:after {
    left: auto;
    right: -15px;
}

.main-timeline .timeline:nth-child(2n) .icon span:before {
    border-radius: 0 0 0 21px;
}

.main-timeline .timeline:nth-child(2n) .icon span:after {
    border-radius: 21px 0 0 0;
}

.main-timeline .timeline:nth-child(2) {
    margin-top: 180px;
}

.main-timeline .timeline:nth-child(odd) {
    margin: -175px 0 0 0;
}

.main-timeline .timeline:nth-child(even) {
    margin-bottom: 180px;
}

.main-timeline .timeline:first-child,
.main-timeline .timeline:last-child:nth-child(even) {
    margin: 0;
}

@media only screen and (max-width: 990px) {
    .main-timeline:before {
        left: 100%;
    }

    .main-timeline .timeline {
        width: 100%;
        float: none;
        margin-bottom: 20px !important;
    }

    .main-timeline .timeline:first-child:before,
    .main-timeline .timeline:last-child:before {
        left: auto !important;
        right: -13px !important;
    }

    .main-timeline .timeline:nth-child(2n) .circle {
        float: left;
        margin: 0 25px 0 0;
    }

    .main-timeline .timeline:nth-child(2n) .circle:before {
        right: -33px;
        left: auto;
        box-shadow: 7px 0 9px -7px #444 inset;
    }

    .main-timeline .timeline:nth-child(2n) .circle span:before,
    .main-timeline .timeline:nth-child(2n) .circle span:after {
        right: -33px;
        left: auto;
        border-radius: 0 0 0 21px;
    }

    .main-timeline .timeline:nth-child(2n) .circle span:after {
        border-radius: 21px 0 0 0;
    }

    .main-timeline .timeline:nth-child(2n) .content {
        padding: 0 40px 0 0;
        margin-left: 0;
    }

    .main-timeline .timeline:nth-child(2n) .icon {
        right: -14px;
        left: auto;
    }

    .main-timeline .timeline:nth-child(2n) .icon:before,
    .main-timeline .timeline:nth-child(2n) .icon span:before,
    .main-timeline .timeline:nth-child(2n) .icon span:after {
        left: -15px;
        right: auto;
    }

    .main-timeline .timeline:nth-child(2n) .icon span:before {
        border-radius: 0 0 21px 0;
    }

    .main-timeline .timeline:nth-child(2n) .icon span:after {
        border-radius: 0 21px 0 0;
    }

    .main-timeline .timeline:nth-child(2),
    .main-timeline .timeline:nth-child(odd),
    .main-timeline .timeline:nth-child(even) {
        margin: 0;
    }
}

@media only screen and (max-width: 480px) {
    .main-timeline:before {
        left: 0;
    }

    .main-timeline .timeline:first-child:before,
    .main-timeline .timeline:last-child:before {
        left: -12px !important;
        right: auto !important;
    }

    .main-timeline .circle,
    .main-timeline .timeline:nth-child(2n) .circle {
        width: 130px;
        height: 130px;
        float: none;
        margin: 0 auto;
    }

    .main-timeline .timeline-content:before {
        width: 99.5%;
        top: 68px;
        left: 0.5%;
    }

    .main-timeline .circle span {
        line-height: 115px;
        font-size: 60px;
    }

    .main-timeline .circle:before,
    .main-timeline .circle span:before,
    .main-timeline .circle span:after,
    .main-timeline .icon {
        display: none;
    }

    .main-timeline .content,
    .main-timeline .timeline:nth-child(2n) .content {
        padding: 0 10px;
    }

    .main-timeline .year {
        margin-bottom: 15px;
    }

    .main-timeline .description {
        text-align: center;
    }

    .main-timeline .description {
        font-size: 14px;
        color: #333;
        text-align: justify;
        visibility: hidden;
    }

    .main-timeline .circle .img {
        vertical-align: initial;
        border-radius: 50%;
        position: relative;
        left: -15px;
        top: -38px;
    }
}

@media(min-width:1980px) and (max-width:2560px) {
    .card {
        padding: 20px;
        transition: 0.8s ease-in-out !important;
        height: 552px;
    }

    textarea {
        border: none !important;
        border-bottom: 1px solid #ccc !important;
        margin-bottom: 98px !important;
        width: 95% !important;
    }

    input {
        border: none !important;
        border-bottom: 1px solid #ccc !important;
        margin-bottom: 127px !important;
        width: 95% !important;
    }
}




.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    background-color: white;
    width: 300px;
    padding: 20px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#closeBtn {
    display: block;
    margin-top: 10px;
}

.iftar-image img {
    height: 630px;
}



.single-image {
    text-align: justify !important;
    /* padding: 20px;
    display: flex;
    flex-wrap: wrap; */
    /* justify-content: start; */
}







/* outlets */
/* .contact-card {
    text-align: center;
    padding: 25px 10px;
    background-color: #fff;
    border-radius: 15px;
    max-width: 30% !important;
    margin: 25px 15px;
    box-shadow: rgb(0, 0, 0) 3px 3px 6px 0px inset, rgba(0, 0, 0, 0.5) -3px -3px 6px 1px inset;
}

.contact-card h2 {
    color: #000;
    text-decoration: underline;
}

.contact-card h5 {
    font-size: 20px;
    margin: 10px 0px;
    line-height: 34px;
    color: #000;
}

.contact-card p {
    margin: 10px 0px;
    color: #000;
} */

.contact-card {
    text-align: center;
    padding: 25px 10px;
    background-color: #fff;
    border-radius: 15px;
    max-width: 30% !important;
    margin: 25px 15px;
    box-shadow: rgb(0, 0, 0) 3px 3px 6px 0px inset, rgba(0, 0, 0, 0.5) -3px -3px 6px 1px inset;

}

.text-color {
    color: var(--primarycolor);
}

.outlet-card {
    /* padding: 1rem; */
    /* background: #fff; */
    box-shadow: 0 10px 41px 0 #091a2c1c;
    /* margin-bottom: 2rem; */
    height: 100%;
}

.outlet-card-img {
    width: 100%;
    position: relative;
    height: 300px;
}

/* .outlet-card-img::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0000004f;
} */
.outlet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.outlet-card i {
    color: var(--primarycolor);
}

.outlet-card a {
    text-decoration: none;
}

.content-para {
    text-align: left;
    margin-bottom: 0;
}
.top_banner
{
	padding:10px 0px;
	background-color:#7f7f7f;
}

@media screen and (orientation: landscape) {
  .carousel img {
    height: auto;
  }
}
.whats_float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.whats_my-float{
	margin-top:16px;
}
.whats a:hover
{
	color: #fff;
}
.mb_float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:25px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.mb_my-float{
	margin-top:16px;
}
.mb a:hover
{
	color: #fff;
}
#myImg {
  border-radius: 0px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 6;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}

.modal-content {
  margin: auto;
  display: block;
  width: 60%;
  max-width: 500px;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 120px;
}

.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0)
  }
  to {
    transform: scale(1)
  }
}

.close {
  position: absolute;
 /* top: 15px;*/
  right: 35px;
  color: #f1f1f1;
  font-size: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}
  
/* CUSTOM1 */
* {
  box-sizing: border-box;
}

.row-pg {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
  margin-left: auto;
  
}

/* Create four equal columns that sits next to each other */
.column-pg {
  -ms-flex: 33.3%; /* IE10 */
  flex: 25%;
  max-width: 33.3%;
  padding: 0 4px;
  flex-direction: column;
  column-gap: 25px;
  padding:10px 0px;
}
.column-pg img
{
	padding:5px !important;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}
/* Custom */
@media screen and (max-width: 600px) {
  .enap-gallery-img {
    padding-left: 5px;
    padding:right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    }
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column-pg {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
    column-gap: 5px;
    flex-direction: column;
  }
  .row-pg {
    padding-left: 0px;
    padding-right: 0px;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column-pg {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
    column-gap: 10px;
    flex-direction: column;
  }
  .row-pg {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#videoal video {
     margin: 30px 0px 0px 20px;
 }

 #videoal {
     margin: 50px 20px 10px 20px
     width: 440px;
 }
 /*--------------------------------------------------------------
# Our Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding: 60px 0;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 15px;
  line-height: 20px;
  color: #777;
  border-radius: 4px;
  text-transform: uppercase;
  background: white;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  font-weight:600;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #017921;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  background: #073839;
  overflow: hidden;
  min-height: 200px;
  position: relative;
  border-radius: 4px;
  margin: 0 0 30px 0;
}

.portfolio .portfolio-item img {
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  transition: all .3s linear;
  text-align: center;
  top: 10%;
  left: 0;
  right: 0;
}

.portfolio .portfolio-item .portfolio-info h3 {
  font-size: 22px;
}

.portfolio .portfolio-item .portfolio-info h3 a {
  color: #fff;
  font-weight: bold;
}

.portfolio .portfolio-item .portfolio-info a i {
  color: #70b9b0;
  font-size: 24px;
}

.portfolio .portfolio-item:hover img {
  opacity: 0.4;
  transform: scale(1.1);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 30px);
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.services .icon i {
  color: #70b9b0;
  font-size: 42px;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}

.services .title a {
  color: #343a40;
  transition: 0.3s;
}
.services
{
	padding:30px 0px !important;
}
.services .icon-box:


 .title a {
  color: #70b9b0;
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}
.section-title h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #555;
}
.section-title {
    text-align: center;
    padding-bottom: 30px;
}
.icon .hall
{
	width:50px;
	height:50px;
}
.icon img  
{
	width:70px;
	height:70px;
}