/* ============================================================================
                    Global Variable start here
=============================================================================*/
:root {
  --title-font: "Roboto Slab", serif !important;
  --body-font: "Poppins", sans-serif !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
a {
  text-decoration: none !important;
}
p {
  font-family: var(--body-font) !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font) !important;
}
ul li {
  list-style: none !important;
}
/* ============================================================================
                    Global Variable end here
=============================================================================*/

/* ============================================================================
                    Header Dropdown Hover start here
=============================================================================*/
@media all and (min-width: 992px) {
  .dropdown-item {
    padding: 0.4rem 1rem !important;
    border-bottom: 1px solid black !important;
    font-weight: 500 !important;
  }
  .dropdown-menu {
    padding: 0rem 0 !important;
  }
  .navbar .nav-item .dropdown-menu {
    display: none;
    margin-top: 0;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
    font-weight: 700;
  }
  .navbar .nav-item:hover .dropdown-menu .dropdown-item:hover {
    background: red;
    color: white;
  }
}
/* ============================================================================
                    Header Dropdown Hover end here
=============================================================================*/
/* ============================================================================
                    Header part end here
=============================================================================*/
header .container {
  background: black !important;
  padding: 5px 0;
}
header .header__left {
  color: white !important;
  font-family: var(--body-font);
  font-size: 13px;
  margin-top: 2px;
  font-weight: 500;
}
header .header__left i {
  padding: 0px 8px;
}

header .header__right {
  color: white !important;
  text-align: right;
  font-family: var(--body-font);
  font-size: 13px;
  margin-top: 2px;
  font-weight: 500;
}
header .header__right a {
  color: white;
  padding: 15px;
}
/* ============================================================================
                    Header part end here
=============================================================================*/
/* ============================================================================
                    Nav part start here
=============================================================================*/
.navbar {
  font-family: var(--body-font) !important;
  font-weight: 700;
  font-size: 17px;
}
nav .container {
  background: white !important;
  box-shadow: 0px 3px 11px -7px black;
  padding: 10px 0px;
  padding-right: 5px;
  height: 100%;
  margin-top: -10px;
  margin-bottom: -8px;
}
nav .container button {
  border: 1px solid red;
  font-weight: 700;
}
nav .container button:hover {
  border: 1px solid black;
  cursor: pointer;
  background: black;
  color: white;
}
.navbar-toggler {
  background: black;
}
.nav-link {
  color: black !important;
}
.dropdown-toggle::after {
  display: none !important;
}
nav .container #logo {
  width: 150px;
  padding: 8px;
}
nav .container .nav-item {
  margin-right: 10px;
}

/* ============================================================================
                    Nav part end here
=============================================================================*/

/* ============================================================================
                    Service part start here
=============================================================================*/
#service {
  margin-top: 50px;
  margin-bottom: 80px;
}
#service .row > * {
  padding-right: calc(var(--bs-gutter-x) * 0);
  padding-left: calc(var(--bs-gutter-x) * 0);
}
#service .container .main {
  height: 500px;
  display: flex;
}
#service .container .main .main__left {
  width: 45%;
  background: rgba(202, 172, 177, 0.888);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
#service .container .main .main__left .text {
  padding: 13px 90px;
}
#service .container .main .main__left .text h5 {
  margin-bottom: 10px;
}
#service .container .main .main__left img {
  max-width: 80px;
  margin-bottom: 20px;
}
#service .container .main .main__right {
  width: 55%;
}
/* Catering Slider start here */
.main__right .catSlider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-x: hidden;
}
.catSlider .slide {
  height: 100%;
  width: 100%;
  position: absolute;
  transform: translateX(100%);
}
.catSlider .active {
  transform: translateX(0);
}
.catSlider img {
  height: 100%;
  width: 100%;
}
.smooth {
  transition: all ease-in-out 0.5s;
}
/* ============================================================================
                    Service part end here
=============================================================================*/
#description .row > * {
  padding-right: calc(var(--bs-gutter-x) * 0);
  padding-left: calc(var(--bs-gutter-x) * 0);
}
#description .extra {
  width: 100%;
  height: 250px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
#description .first {
  background: black;
}
.text h5 {
  line-height: 1.6;
  font-family: var(--title-font);
}
.text a {
  color: white;
  border: 1px solid white;
  padding: 5px 15px;
  margin-top: 5px;
  transition: all ease-in-out 0.6s;
}
.text a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
#description .second {
  background: rgba(255, 0, 0, 0.6);
  color: black;
}
#description .image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-y: hidden;
}
.image .overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35);
  transform: translateY(-100%);
  position: absolute;
  transition: all ease-in-out 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  text-align: center;
  font-size: 25px;
}
.image:hover .overlay {
  transform: translateY(0);
  cursor: pointer;
}
#description .topone:after {
  top: calc(50% - 13px);
  border: solid transparent;
  content: " ";
  position: absolute;
  pointer-events: none;
  border-width: 13px;
  z-index: 99;
  left: 0;
  border-left-color: black;
}
#description .toptwo:after {
  top: calc(50% - 13px);
  border: solid transparent;
  content: " ";
  position: absolute;
  pointer-events: none;
  border-width: 13px;
  z-index: 99;
  left: 0;
  border-left-color: rgba(255, 0, 0, 0.6);
}
#description .downone:after {
  top: calc(50% - 13px);
  border: solid transparent;
  content: " ";
  position: absolute;
  pointer-events: none;
  border-width: 13px;
  z-index: 99;
  right: 0;
  border-right-color: black;
}
#description .downtwo:after {
  top: calc(50% - 13px);
  border: solid transparent;
  content: " ";
  position: absolute;
  pointer-events: none;
  border-width: 13px;
  z-index: 99;
  right: 0;
  border-right-color: rgba(255, 0, 0, 0.6);
}
.image img {
  width: 100%;
  height: 100%;
}
/* ============================================================================
                   Footer Part start here
=============================================================================*/

/* ==================================Footer Top start here============================= */
footer {
  margin-top: 80px;
}
footer .footer__top {
  background: red;
  margin-top: -16px !important;
  width: 100%;
}
footer .footer__top i {
  font-size: 25px;
  padding: 16px;
  color: white;
  background-color: red;
  border-radius: 50%;
  position: relative;
}
footer .footer__top .row a {
  text-decoration: none;
  color: white;
}
footer .footer__top .row ul {
  max-width: 350px;
  margin: 0 auto;
  box-shadow: 0px 5px 4px 0px black;
}

footer .footer__top i::before {
  background: red;
  position: absolute;
  padding: 16px;
  border-radius: 50%;
  right: -10px;
  bottom: 4px;
  -webkit-box-shadow: 0px 10px 18px 0px rgb(0 0 0 / 48%);
  -moz-box-shadow: 0px 10px 18px 0px rgba(0, 0, 0, 0.48);
  box-shadow: 0px 3px 3px 0px rgb(0 0 0 / 48%);
}
/* ==================================Footer Top end here============================= */

/* ==================================Footer Bottom start here============================= */
footer .main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .main a {
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: ease-in-out 0.5s;
  font-weight: 500;
}
footer .main a:hover {
  border: 1px solid red !important;
  cursor: pointer;
  color: black !important;
  background: white;
}
footer #copyright {
  text-decoration: none;
  color: white;
}

/* ==================================Footer Bottom end here============================= */

/* ============================================================================
                    Footer part end here
=============================================================================*/
