body {
    color: #2E292D;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none;
}

button {
    cursor: pointer;
}

button:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.section-margin {
    margin: 65px 0;
}
.section-padding {
    padding: 65px 0;
}
@media (min-width: 992px) {
    .section-margin {
        margin: 130px 0;
    }
    .section-padding {
        padding: 130px 0;
    }
}

@media (min-width: 1200px) {
    .pb-xl-70 {
        padding-bottom: 70px;
    }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #d13073;
    border-top-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    -webkit-animation: animate-preloader 0.4s linear infinite;
    animation: animate-preloader 0.4s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Header Section Start */
.scrolled-down{
  transform:translateY(-100%); transition: all 0.3s ease-in-out;
}
.scrolled-up{
  transform:translateY(0); transition: all 0.3s ease-in-out;
}

.header_area {
    transition: background 0.4s, all 0.3s linear;
}

.header_area .navbar-brand {
    margin-right: 30px;
    padding: 0;
}

.header_area .navbar-brand img {
    height: 70px;
}

.header_area .menu_nav {
    width: 100%;
}

.header_area .navbar {
    background: transparent;
    border: 0px;
    border-radius: 0px;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-nav {
    align-items: center;
  }

.header_area .navbar .nav-right {
    min-width: 200px;
}

.header_area .navbar .nav .nav-item {
    margin-right: 35px;
}

.header_area .navbar .nav .nav-item .nav-link {
    display: block;
    color: #fff;
    padding: 12px 20px;
    border: 1px solid transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    -webkit-transition: opacity 300ms ease;
    -moz-transition: opacity 300ms ease;
    -ms-transition: opacity 300ms ease;
    transition: opacity 300ms ease;
}

.header_area .navbar .nav .nav-item .nav-link:after {
    display: none;
}
.header_area .navbar .nav .nav-item .nav-link:hover {
    color: #d13073;
}
.header_area .navbar .nav .nav-item .nav-link,
.header_area .navbar .nav .nav-item.active .nav-link {
    opacity: 1;
}

.button-nv {
    display: block;
    color: #fff;
    padding: 12px 20px;
    border: 1px solid #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    -webkit-transition: opacity 300ms ease;
    -moz-transition: opacity 300ms ease;
    -ms-transition: opacity 300ms ease;
    transition: opacity 300ms ease;
}

.button-nv:hover {
    background-color: #fff;
    color: #d13073;
}

.header_area .navbar .nav .nav-item.submenu {
    position: relative;
}

.header_area .navbar .nav .nav-item .nav-link.dropdown-toggle span {
    padding-right: 8px;
}

.header_area .navbar .nav .nav-item .nav-link.dropdown-toggle i {
    font-weight: 600;
}

.header_area .navbar .nav .nav-item.submenu ul {
    border: none;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
    margin: 0px;
    background: #fff;
    text-align: center;
}

@media (min-width: 992px) {
    .header_area .navbar .nav .nav-item.submenu ul {
        position: absolute;
        top: 120%;
        left: 0px;
        min-width: 200px;
        text-align: left;
        opacity: 0;
        transition: all 300ms ease-in;
        visibility: hidden;
        display: block;
        border: none;
        padding: 0px;
        border-radius: 0px;
        box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.4);
    }
}

.header_area .navbar .nav .nav-item.submenu ul:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #eeeeee transparent transparent transparent;
    position: absolute;
    right: 24px;
    top: 45px;
    z-index: 3;
    opacity: 0;
    transition: all 400ms linear;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item {
    display: block;
    float: none;
    margin-right: 0px;
    border-bottom: 1px solid #ededed;
    margin-left: 0px;
    transition: all 0.4s linear;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
    color: #d13073 !important;
    padding: 15px 10px;
    transition: all 150ms linear;
    display: block;
    margin-right: 0px;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item:last-child {
    border-bottom: none;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item:hover .nav-link {
    background-color: #d13073;
    color: #fff !important;
}

@media (min-width: 992px) {
    .header_area .navbar .nav .nav-item.submenu:hover ul {
        visibility: visible;
        opacity: 1;
        top: 100%;
    }
}

.header_area .navbar .nav .nav-item.submenu:hover ul .nav-item {
    margin-top: 0px;
}

.header_area .navbar .nav .nav-item:last-child {
    margin-right: 0px;
}

.header_area.navbar_fixed .main_menu {
    position: fixed;
    width: 100%;
    top: -70px;
    left: 0;
    right: 0;
    z-index: 99;
    transform: translateY(70px);
    transition: transform 500ms ease, background 500ms ease;
    -webkit-transition: transform 500ms ease, background 500ms ease;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
}

.header_area.navbar_fixed .main_menu .navbar {
    background: rgba(83, 21, 46, 0.95);
}

.header_area.navbar_fixed .main_menu .navbar .navbar-brand img {
    content: url(../assets/media/uploads/Logo-viceroypolegate.png);
    max-height: 64px;
}

.header_area.navbar_fixed .main_menu .navbar .navbar-brand img {
    height: 64px;
}

.header_area.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
    line-height: 20px;
}

.header_area.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link,
.header_area.navbar_fixed .main_menu .navbar .nav .nav-item.active .nav-link {
    color: #fff;
}

.header_area.navbar_fixed .main_menu .navbar .nav .nav-item:hover .nav-link {
    color: #d13073;
}

.header_area.navbar_fixed .main_menu .navbar .navbar-toggler span {
    background-color: #fff;
}

.header_area.navbar_fixed .main_menu .navbar .button-nv {
    display: block;
    color: #fff;
    padding: 12px 20px;
    border: 1px solid #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    -webkit-transition: opacity 300ms ease;
    -moz-transition: opacity 300ms ease;
    -ms-transition: opacity 300ms ease;
    transition: opacity 300ms ease;
}

.header_area.navbar_fixed .main_menu .navbar .button-nv:hover {
    color: #d13073;
    border: 1px solid #fff;
    background-color: #fff;
}

@media (min-width: 992px) {
    .header_area.white_menu .navbar .navbar-brand img {
        display: none;
    }

    .header_area.white_menu .navbar .navbar-brand img+img {
        display: inline-block;
    }
}

@media (max-width: 991px) {
    .header_area.white_menu .navbar .navbar-brand img {
        display: inline-block;
    }

    .header_area.white_menu .navbar .navbar-brand img+img {
        display: none;
    }
    .header_area .navbar .nav .nav-item:last-child {
      margin-top: 12px;
    }
}

.header_area.white_menu .navbar .nav .nav-item .nav-link {
    color: #fff;
}

.header_area.white_menu.navbar_fixed .main_menu .navbar .navbar-brand img {
    display: inline-block;
}

.header_area.white_menu.navbar_fixed .main_menu .navbar .navbar-brand img+img {
    display: none;
}

.header_area.white_menu.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
    line-height: 70px;
}

/* ---------- */
@media (max-width: 1200px) {
    .header_area .navbar .nav .nav-item {
        margin-right: 20px;
    }
}

@media (max-width: 991px) {
    .navbar-toggler {
        border: none !important;
        border-radius: 0px;
        padding: 0px;
        cursor: pointer;
    }

    .header_area .navbar .nav-item.active .nav-link {
        color: #fff !important;
    }

    .navbar-toggler[aria-expanded="false"] span:nth-child(2) {
        opacity: 1;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] span:first-child {
        transform: rotate(-45deg);
        position: relative;
        top: 8.5px;
    }

    .navbar-toggler[aria-expanded="true"] span:last-child {
        transform: rotate(45deg);
        bottom: 7px;
        position: relative;
    }

    .navbar-toggler span {
        display: block;
        width: 25px;
        height: 1px;
        background: #fff;
        margin: auto;
        margin-bottom: 7px;
        transition: all 400ms linear;
        cursor: pointer;
    }

    .navbar-toggler span:last-child {
        margin-bottom: 0px;
    }

    .navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .nav {
        padding: 10px 0px 40px 0px;
        align-content: center;
        align-items: center;
    }

    .header_top .nav {
        padding: 0px;
    }

    .header_area .navbar .nav .nav-item .nav-link {
        color: #fff;
        padding: 12px 20px;
        margin-right: 0px;
        display: block;
        border-bottom: 1px solid #ededed33;
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        font-weight: 500;
        line-height: 20px !important;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        -webkit-transition: opacity 300ms ease;
        -moz-transition: opacity 300ms ease;
        -ms-transition: opacity 300ms ease;
        transition: opacity 300ms ease;
    }

    .header_area .navbar .nav .nav-item .nav-link:hover {
        color: #d13073;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    .header_area .navbar-collapse {
        background-color: rgba(83, 21, 46, 0.95);
        max-height: 100vh;
    }

    .header_area .navbar-collapse .button-nv {
        color: #fff;
        border: 1px solid #fff;
    }

    .header_area .navbar-collapse .button-nv:hover {
        background-color: #fff;
        color: #d13073;
        border: 1px solid #fff;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    .header_area .navbar .nav .nav-item.submenu ul {
        background: rgba(83, 21, 46, 0.95);
        box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.4);
    }

    .header_area .navbar .nav .nav-item.submenu ul .nav-item {
        border-bottom: 1px solid #ededed33;
    }
    .header_area .navbar .nav .nav-item.submenu ul .nav-item:hover .nav-link {
      background-color: #fff;
      color: #d13073 !important;
  }
    .header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link:last-child {
        border-bottom: none;
    }

    .header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
        color:#fff !important;
        padding: 10px;
    }

    .header_area .navbar .nav .nav-item {
        margin-right: 0px;
        padding: 4px 0px;
    }

    .header_area.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
        line-height: 20px;
    }

    .header_area.white_menu.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
        line-height: 40px;
    }

    .header_area.white_menu .navbar .nav .nav-item .nav-link {
        color: #222;
    }
}

@media (max-width: 767px) {
    .navbar-toggler {
        padding: 0px !important;
    }
}

/*--------------------------------------------------------------
# Home-Banner Section
--------------------------------------------------------------*/
#home-banner {
    width: 100%;
    height: 100vh;
    background: url("../assets/media/uploads/biryani.jpg") top center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 0;
}

#home-banner::before {
    content: "";
    background: rgba(0, 0, 0, 0.35);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#home-banner .container {
    width: 100%;
    padding: 80px 20px;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
    justify-content: center;
}

#home-banner h2 {
    margin: 0 0 10px 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 80px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 800;
    line-height: 1.15;
}

#home-banner h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    margin-bottom: 30px;
    color: #fff;
}

#home-banner h4 {
    color: #d13073;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.8px;
    line-height: 15px;
}

#home-banner .btn-get-started {
    display: inline-block;
    height: auto;
    padding: 14px 30px;
    background: #fff;
    color: #2E292D;
    letter-spacing: 0.03em;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    border: 1px solid #fff;
}

#home-banner .btn-get-started:hover {
    border-color: #d13073;
    background: #d13073;
    color: #fff;
    transition: 0.5s;
    font-weight: 600;
}

#home-banner .btn-bro {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.15em;
    margin: 15px auto;
    display: inline-block;
    transition: 0.5s;
    margin-left: 25px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: underline !important;

}

#home-banner .btn-bro:hover {
    color: #d13073;
    text-decoration: none !important;
}
  
.fb-scroll,
.text-image:after {
    position: absolute;
    left: 50%
}

.fb-scroll {
    bottom: 30px;
    transform: translateX(-50%);
    animation-name: b;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite
}

.scrolled-down{
  transform:translateY(-100%); transition: all 0.3s ease-in-out;
}
.scrolled-up{
  transform:translateY(0); transition: all 0.3s ease-in-out;
}

@keyframes b {
    0 {
        transform: translate(-50%, 20px)
    }

    25% {
        transform: translate(-50%, 10px)
    }

    50% {
        transform: translate(-50%)
    }

    75% {
        transform: translate(-50%, 10px)
    }
}


@media (max-width: 991px) {
    #home-banner .hero-container {
        padding-left: 30px;
    }

    #home-banner h2 {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    #home-banner .hero-container {
        padding-left: 10px;
    }

    #home-banner h2 {
        font-size: 2.5em;
    }
}
@media (max-width: 567px) {
    #home-banner .btn-get-started {
        padding: 12px 18px;
        line-height: unset;
    }    
    #home-banner .btn-bro {
        margin-left: 10px;
    }
    
}
/* ----------------------------------
# page-banner
------------------------------------*/
.banner {
    height: 50.00vh;
    background-position: center center;
    background-size: cover;
    position: relative;
  }
  .banner::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
  .banner .container {
    position: relative;
    padding: 75px 15px;
  }
  .banner .container .intro-content {
    padding: 75px 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .banner .container .intro-content .intro-title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 42px;
  line-height: 48px;
  margin-bottom: 0;
  }
  @media (max-width: 768px) {
    .banner .container .intro-content .intro-title {
      font-size: 32px;
    }
  }

/* --------------------------------- 
* About Section 
------------------------------------ */
.img-styleBox {
    position: relative;
}

.img-styleBox .styleBox-img2 {
    position: absolute;
    bottom: -70px;
    right: -15px;
    box-shadow: 3px 3px 16px 3px rgba(0, 0, 0, 0.1);
}

.section-intro {
    max-width: 460px;
}

.section-intro .intro-title {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    color: #d13073;
    padding-right: 115px;
    position: relative;
    margin-bottom: 15px;
    letter-spacing: 1.8px;
    line-height: 15px;
}

.section-intro h3 {
    color: #2E292D;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
}

.btn-black {
    color: #2E292D;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.15em;
    margin: 15px auto;
    display: inline-block;
    transition: 0.5s;
    text-decoration: underline !important;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .about-text {
        padding-left: 20px;
    }
}

@media (min-width: 992px) {
    .section-margin {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .img-styleBox .styleBox-img2 {
        right: -5px;
    }

    .about-text {
        padding-left: 0;
    }
}

@media (max-width: 991px) {
    .section-margin {
        margin: 100px 0;
    }

    .section-intro h3 {
        font-size: 24px;
    }
}

/*----------------------------------
# Offer Section
-----------------------------------*/
#offer {
    background: url("../assets/media/uploads/indian-dishes.jpg") fixed center center no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
  }
  #offer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}
#offer .container {
    padding-bottom: 140px;
}
#offer .title-tripadvisor img {
    position: absolute;
    right: 30px;
    width: 140px;
    max-width: 100%;
    margin-top: -32px;
}

#offer .title-section {
    padding: 40px 0;
}

#offer .title-section .title {
    margin-top: 0px;
    margin-bottom: 0.6em;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    line-height: 15px;
    position: relative;
}
  
  #offer .content {
    padding-top: 100px;
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
  }
  #offer .content .fb-discount {
    padding: 75px 30px;
    width: 50%;
    top: 0;
    left: 0;
    float: right;
    align-items: center;
  }
  #offer .content .fb-discount h2 {
    color: #fff;
    font-size: 80px;
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 0 2px #fff;
    margin: 0 0 10px 0;
    text-align: right;
  }
  #offer .content .fb-discount h2 sup {
    color: #fff;
    font-size: 50px;
  }
  #offer .content .fb-discount h2 span {
    color: #fff;
    font-family: 'Cormorant', serif;
    font-size: 80px;
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 0 1px #121d24;
    margin: 0 0 10px 0;
    text-align: right;
  }
  #offer .content .fb-discount .del-details {
    float: right;
    text-align: right;
    color: #fff;
  }
  #offer .content .fb-discount .del-details h3 {
    font-weight: 500;
    color: #fff;
    font-family: 'Cormorant',Arial,serif;
  }
  #offer .content .fb-discount .del-details h3 span {
    color: #fff;
    font-weight: 800;
    font-family: 'Montserrat',sans-serif;
  }
  #offer .content .fb-discount .del-details h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
  }
  #offer .content .fb-discount .del-details p {
    color: #fff;
    font-size: 13px;
  }
  
  #offer .content .line {
    border-left: 3px solid #fff;
    height: 300px;
    left: 50%;
    margin: 20px 10px;
    top: 0;
  }
  #offer .content .discount-details {
    padding: 0 30px;
    width: 50%;
  }
  #offer .content .discount-details h3 {
    font-weight: 500;
    color: #fff;
    font-family: 'Cormorant',Arial,serif;
  }
  #offer .content .discount-details h3 span {
    color: #fff;
    font-weight: 800;
    font-family: 'Montserrat',sans-serif;
  }
  #offer .content .discount-details h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
  }
  #offer .content .discount-details p {
    color: #fff;
    font-size: 13px;
  }
  #offer .btn-discount {
    display: inline-block;
    height: auto;
    padding: 14px 30px;
    background: #fff;;
    color: #121d24;
    letter-spacing: 0.03em;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    border: 1px solid #fff;
  }   
  #offer .btn-discount:hover {
    border-color: #d13073;
    background: #d13073;
    color: #fff;
    font-weight: 600;
    transition: all 0.5s;
  }
  @media (max-width: 767px) {
    #offer .content .line {
        height: 320px;
      }
  }
  @media (max-width: 567px) {
    #offer .container {
        padding-bottom: 80px;
    }
    #offer .title-tripadvisor img {
        right: 4px;
        width: 90px;
        max-width: 80%;
        margin-top: -20px;
    }
    #offer .content {
      padding: 30px 0px 0px 0px;
    }  
    #offer .content .fb-discount {
      padding: 35px 10px;
    } 
    #offer .content .fb-discount .del-details h2 {
        font-size: 58px;
        line-height: 1.0;
      }
      #offer .content .fb-discount .del-details h2 sup {
        font-size: 40px;
      }
      #offer .content .fb-discount .del-details h2 span {
        font-size: 48px;
      } 
      #offer .content .fb-discount .del-details h3 span {
        font-weight: 900;
        font-size: 18px;
      }
      #offer .content .fb-discount .del-details h5 {
        font-size: 14px;
        letter-spacing: 1px;
      }

    #offer .content .discount-details {
      padding: 75px 10px;
    }
    #offer .content .fb-discount h2 {
      font-size: 58px;
      line-height: 1.0;
    }
    #offer .content .fb-discount h2 sup {
      font-size: 40px;
    }
    #offer .content .fb-discount h2 span {
      font-size: 48px;
    }
    #offer .content .line {
    border-left: 2px solid #fff;
    height: 280px;
    }
    #offer .content .discount-details h3 span {
      font-weight: 900;
      font-size: 18px;
    }
    #offer .content .discount-details h5 {
      font-size: 14px;
      letter-spacing: 1px;
    }
    #offer .content .discount-details .btn-discount {
      padding: 10px 20px;
      letter-spacing: 0.02em;
    }
  }
/* Delivery Section ----------- **/
#delivery {
    background-color: #fff;
    position: relative;
}

#delivery .delivery-content {
    padding-top: 90px;
    padding-bottom: 130px;
    text-align: center;
    color: #121d24;
    position: relative;
}
#delivery .delivery-content .title {  
    padding-bottom: 40px;  
    margin-top: 0px;
    margin-bottom: 0.6em;
    color: #d13073;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    line-height: 15px;
    }
#delivery .delivery-content h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 40px;
}    
#delivery .delivery-content p {
    line-height: 25px;
    letter-spacing: .39px;
    font-size: 14px;
    margin-top: 40px;
    margin-bottom: 40px;
}
#delivery .delivery-content .btn-del {
    background-color: #d13073;
    border: 2px #d13073 solid;
    text-transform: uppercase;
    color: #2E292D;
    border-radius: 0;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 500;
    padding: 16px 36px 16px 42px !important;
}

#delivery .delivery-content .btn-del:hover {
    background-color: #d13073;
    color: #fff;
    border: 2px #d13073 solid;
}
@media (max-width: 767px) {
    #delivery .delivery-content {
        padding-top: 90px;
        padding-bottom: 130px;
        text-align: left;
        color: #121d24;
        position: relative;
    }
    #delivery .delivery-content h2 {
        font-size: 30px;
        line-height: 36px;
        font-weight: 700;
        letter-spacing: 1.2px;
    }    
    #delivery .delivery-content p {
        line-height: 25px;
        letter-spacing: .39px;
        font-size: 14px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
}
@media (max-width:567px) {
    #delivery .delivery-content h2 {
        font-size: 24px;
        line-height: 30px;
        font-weight: 700;
        letter-spacing: 1.1px;
    }    
    #delivery .delivery-content p {
        line-height: 22px;
        letter-spacing: 1px;
    }
    
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    background-color: #fff;
}
.contact .section-title {
    padding-top: 90px;
    text-align: center;
    color: #2E292D;
}
.contact .section-title h3 {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    color: #d13073;
    margin-bottom: 15px;
    letter-spacing: 1.8px;
    line-height: 15px;
}
.contact .info-wrap {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
  }
  
  .contact .info {
    background: #fff;
  }
  
  .contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 14px;
    color: #2E292D;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.15em;
    margin: 15px auto;
    display: inline-block;
    transition: 0.5s;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
  
  .contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #2E292D;
  }
  
  .contact .info ul {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    list-style: none;
  }
  .contact .info li a {
    color: #2E292D;
  }
  .contact .info li a:hover {
    color: #d13073;
  }
  @media (max-width: 767px) {
    .contact .section-title {
        text-align: left;
    }
    .contact .info-wrap {
        box-shadow: 0px 2px 15px rgb(0 0 0 / 4%);
        padding-left: 0px;
        
    }
    .contact .info h4 {
        padding: 0px;
    }
    .contact .info p {
        padding: 0px;
    }
    .contact .info ul {
        padding: 0px;
    }

}
 /*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    background: url("../assets/media/uploads/biryani.jpg") fixed center center no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    padding-top: 90px;
    padding-bottom: 50px;
  }
  
  .testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .testimonials .title-text {
    margin-bottom: 70px;
  }
  .testimonials .title-text h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
  }
  .testimonials .title-text p {
    color: #7e7570;
    font-weight: 500;
  }  
  .testimonials .title-text p strong {
    color: #7e7570;
    font-weight: 700;
    font-size: 24px;
  }
  .carousel-inner {
    height: 280px;
  }
  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }
  
  .testimonials .testimonial-item {
    text-align: center;
    color: #fff;
  }
  
  .testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
  }
  
  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #ddd;
    margin: 0 0 15px 0;
    font-family: 'Montserrat', sans-serif;
  }
  
  .testimonials .testimonial-item .stars {
    color: #ffb03b;
    margin-bottom: 10px;
  }
  
  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.4);
    font-size: 26px;
  }
  
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
  }
  
  .testimonials .testimonial-item p {
    margin: 0 auto 15px auto;
    color: #eee;
    letter-spacing: 1px;
  }
  
  .testimonials .carousel-indicators {
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    border-top: 0;
    border-bottom: 0;
  }
  
  .testimonials .carousel-indicators .btn-ind {
    border-top: 0;
    border-bottom: 0;
    height: 8px;
    width: 8px;
    margin-right: 5px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #fff;
    opacity: 1;
    position: relative;
    margin: 0 11px!important;
    display: inline-block;
    border-radius: 100%;
  }
  .testimonials .carousel-indicators .btn-ind::before {
    content: '';
    border: 1px solid #d13073;
    left: -7px;
    right: -7px;
    top: -7px;
    bottom: -7px;
    position: absolute;
    border-radius: 50%;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  .testimonials .carousel-indicators .btn-ind:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
  .testimonials .carousel-indicators .btn-ind.active {
    background-color: #d13073;
  }
  .testimonials .carousel-indicators .btn-ind.active::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  @media (min-width: 992px) {
    .testimonials .testimonial-item p {
      width: 80%;
    }
  }
  @media (max-width: 767px) {
    .testimonials .title-text {
        text-align: left !important;
    }
    .testimonials .testimonial-item {
        text-align: left;
    }
    .carousel-indicators {
        justify-content: left !important;
        margin-left: 0 !important;
    }

  }
  @media (max-width: 567px) {
    .testimonials .title-text h2 {
      font-size: 30px;
      font-weight: 700;
    }
  }
  /*----------------------
  # Photo Gallery
  ------------------------*/
  .gallery .section-title {
    align-items: center;
    padding-bottom: 40px;
  }
  .gallery .section-title h2 {
    text-align: center;
    font-weight: 700;
    letter-spacing: 1.2px;
    font-size: 30px;
    line-height: 36px;
  }
  .gallery .gallery-item {
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  }
  
  .gallery .gallery-item img {
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: all ease-in-out 0.4s;
  }
  
  .gallery .gallery-item:hover img {
    transform: scale(1.1);
  }

  .glightbox-mobile .goverlay {
    background: rgba(0,0,0,.92) !important;
}
  
  @media (max-width: 767px) {
    .glightbox-clean .gnext {
      top: 45%;
      right: 20px;
    }
    .glightbox-clean .gprev {
      top: 45%;
      left: 20px;
    }
    .glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
      background-color: rgba(0,0,0,.32);
    }
  }
  
  @media (max-width: 567px) {
    .gallery .section-title h2 {
      font-size: 24px;
      line-height: 24px;
    }
    .gallery .section-title {
      padding-bottom: 10px;
    }  
    .glightbox-clean .gnext {
      top: 45%;
      right: 15px;
    }
    .glightbox-clean .gprev {
      top: 45%;
      left: 15px;
    }
    .glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
      background-color: rgba(0,0,0,.32);
    }
  }
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  .footer {
    background: #15222b !important;
    color: #fff;
    font-size: 14px;
    text-align: center;
  }
  .footer .footer-top {
    background: #15222b;
    padding: 30px 0 30px 0;
  }
  .footer .footer-top .footer-navigations {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 10px 0;
    margin-bottom: 20px;
  }
  .footer .footer-top .footer-navigations a {
    color: #fff !important;
    font-size: 13px;
    letter-spacing: 2px;
  }
  .footer .footer-top .footer-navigations a:hover {
    color: #d13073 !important;
  }
  .footer .footer-top .footer-navigations li:last-child {
    margin-right: 20px;
    margin-left: 20px;
  }
  .footer .footer-top .footer-navigations li:not(:last-child) {
    margin-right: 20px;
    margin-left: 20px;
  }
   
  .footer .footer-top .social-links {
    margin: 0 0 20px 0;
  }
  
  .footer .footer-top .social-links a {
    font-size: 22px;
    display: inline-block;
    background: #fff;
    color: #2E292D;
    line-height: 1;
    padding: 8px 0;
    margin-right: 6px;
    border-radius: 50%;
    text-align: center;
    width: 40px;
    height: 40px;
    transition: 0.3s;
  }
  
  .footer .footer-top .social-links a:hover {
    background: #d13073;
  }
  .footer .footer-bottom {
    background-color: #121d24;
    margin: 0 0 5px 0;
  }
  .footer .copyright {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
  }
  .footer .copyright a {
    color: #fff !important;
  }
  .footer .copyright a:hover {
    color: #d13073 !important;
  }

  @media (max-width: 767px) {
    .footer .footer-top .social-links {
        text-align: left;
    }
    .footer .footer-top .footer-navigations {
        justify-content: left;
    }
    .footer .footer-top .footer-navigations li:first-child {
        margin-left: 0px;
    }
    .footer .footer-top .app-links {
      text-align: left;
    }
    .footer .copyright {
        text-align: left;
    }
  }