/*-----------------------------------------------------------------

Template Name: restaurent
Author:  sumaiya islam
Author URI: 
Developer: Sumaiya islam
Version: 1.0.0
Description: 
-------------------------------------------------------------------
CSS TABLE OF CONTENTS
-------------------------------------------------------------------

01. abstracts
    1.01 --> mixins
    1.02 --> variable

02. base
    2.01 --> typography
    2.02 --> animation
    2.03 --> responsive

03. components
    3.01 --> buttons
    3.02 --> progress

04. layout
    4.01 --> header
    4.02 --> banner
    4.03 --> section
    4.04 --> footer

------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Exo: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&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --exo: "Exo", sans-serif;
  --inter: "Inter", sans-serif;
  --primary-color: #ffab10;
  --sub-bg: #06122b;
  --black-sub: #2a2a30;
  --heading-color: #1f1f25;
  --paragraph: #6e777d;
  --span: #6e777d;
  --border: #e9e9e9;
  --white: #ffffff;
  --black: #1f1f25;
  --border-1px: 1px solid #e9e9e9;
  --border-2px: 2px solid #e9e9e9;
  --transition: all 0.4s ease-in-out;
  --shadow: 0px 0px 60px 0px #0000000d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--heading-color);
  font-family: var(--exo);
}

h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 90px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 40px;
    line-height: 50px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 62px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

h5 {
  font-size: 15px;
  font-weight: 600;
  line-height: 26px;
}

h6 {
  font-size: 14px;
  font-weight: 600;
}

p {
  margin: 0;
  padding: 0;
  line-height: 28px;
  font-size: 15px;
}

span {
  display: inline-block;
  color: var(--span);
}

a {
  text-decoration: none;
  display: inline-block;
  color: var(--heading-color);
  transition: var(--transition);
}

a:hover {
  color: var(--heading-color);
}

ul {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
}

input {
  border: none;
  outline: none;
}

@media (max-width: 991px) {
  br {
    display: none;
  }
}
::-moz-selection {
  color: var(--white);
  background-color: var(--primary-color);
}
::selection {
  color: var(--white);
  background-color: var(--primary-color);
}

.title {
  font-family: "Dancing Script", cursive;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.title::after,
.title::before {
  content: "--";
}

.icon {
  color: var(--primary-color);
  font-size: 30px;
}

.para {
  color: var(--span);
}

.star i {
  color: var(--primary-color);
}

#loading {
  background-color: var(--white);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 9999999;
  margin-top: 0px;
  top: 0px;
}
#loading #loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}
#loading #loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25%;
  transform: translate(-50%, -50%);
}
#loading .loading-icon .loading-logo {
  width: 150px;
  height: 150px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  #loading #loading-center-absolute {
    width: 40%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #loading #loading-center-absolute {
    width: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #loading #loading-center-absolute {
    width: 45%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #loading #loading-center-absolute {
    width: 50%;
  }
}
@media (max-width: 575px) {
  #loading #loading-center-absolute {
    width: 60%;
  }
}

.btn {
  text-decoration: none;
  color: #ffffff;
  background-color: var(--primary-color);
  padding: 10px 30px;
  border-radius: 0;
  position: relative;
  transition: all 1s;
  overflow: hidden;
}
@media (max-width: 767px) {
  .btn {
    padding: 2px 10px;
  }
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transition: all 0.5s;
  z-index: -1;
  transform: translateX(-100%);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn:hover {
  color: #000000;
}

.btn-2 {
  padding: 10px 30px;
  font-size: 15px;
  color: var(--white);
  background-color: var(--primary-color);
  display: inline-block;
  position: relative;
  letter-spacing: 0.5px;
  z-index: 3;
  overflow: hidden;
  text-transform: capitalize;
}
@media (max-width: 450px) {
  .btn-2 {
    padding: 8px 16px;
    font-size: 14px;
  }
}
.btn-2::before {
  content: "";
  position: absolute;
  height: 400px;
  width: 430px;
  top: 50%;
  left: 50%;
  background: var(--white);
  border-radius: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: all 0.4s ease-out 0s;
  z-index: -1;
}
.btn-2:hover {
  color: var(--primary-color);
  box-shadow: 5px 5px 10px rgb(235, 235, 235);
  border: 0.1px solid var(--primary-color);
}
.btn-2:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--border);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  transition: var(--transition);
}
.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  content: "\f30c";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: var(--transition);
}
.scroll-up svg path {
  fill: none;
}
.scroll-up svg.scroll-circle path {
  stroke: var(--primary-color);
  stroke-width: 4px;
  box-sizing: border-box;
  transition: var(--transition);
}
.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-brand {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  gap: 5px;
  width: 50%;
}
.navbar-brand h2 {
  color: var(--primary-color);
}
.navbar-brand i {
  font-size: 40px;
}

.navbar-collapse ul li a {
  color: white;
  transition: all ease-in-out 0.5s;
}
.navbar-collapse ul li a:hover {
  color: var(--primary-color) !important;
}
.navbar-collapse ul li a:active {
  color: var(--primary-color) !important;
}

.navbar-toggler {
  background-color: var(--primary-color);
}

.hero {
  background: linear-gradient(rgba(18, 24, 66, 0.8), rgba(14, 19, 39, 0.8)), url("../img/bg-hero.jpg");
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.slider-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-top .slider-text {
  /* JUMP */
  width: 50%;
  margin-bottom: 20px;
  text-align: left;
  color: white;
}
.slider-top .slider-text h1 {
  cursor: default;
  width: 100%;
  height: 100px;
  margin: auto;
  display: block;
}
@media (max-width: 450px) {
  .slider-top .slider-text h1 {
    height: 5px;
  }
}
.slider-top .slider-text:hover h2 {
  color: var(--primary-color) !important;
}
.slider-top .slider-text h2 {
  color: white;
  transition: all ease-in-out 0.5s;
}
@media (max-width: 450px) {
  .slider-top .slider-text h2 {
    font-size: 10px;
  }
}
.slider-top .slider-text p {
  width: 70%;
  color: var(--border);
}
@media (max-width: 767px) {
  .slider-top .slider-text h2 {
    font-size: 20px;
    line-height: 25px;
  }
  .slider-top .slider-text p {
    font-size: 10px;
    line-height: 15px;
  }
}
.slider-top .sloder-img {
  width: 40%;
}
.slider-top .sloder-img img {
  animation: rotation 70s infinite linear;
  transition: all ease-in-out 1s;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-section {
  text-align: center;
  margin-top: 70px;
}
@media (max-width: 450px) {
  .hero-section {
    margin-top: 20px;
  }
}
.hero-section h2, .hero-section p {
  color: white;
}

.card {
  border: none;
  border-radius: 0;
}
.card i {
  color: var(--primary-color);
  font-size: 30px;
  padding: 30px 0 0px 20px;
}
.profile-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: grid;
  position: relative;
  transition: all 1s;
  z-index: 1;
  overflow: hidden;
}

.profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 0.1;
  transform: skew(30deg) translateX(85%);
  transition: all 0.6s ease;
  z-index: -1;
}

.profile-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 0.1;
  transform: skew(-30deg) translateX(85%);
  transition: all 0.6s ease;
  z-index: -1;
}

.profile-card:hover:before {
  transform: skew(30deg) translateX(30%);
}

.profile-card:hover:after {
  transform: skew(-30deg) translateX(20%);
}

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 100px auto;
}
@media (max-width: 767px) {
  .about {
    flex-direction: column;
  }
}
.about .about-img {
  width: 40%;
}
@media (max-width: 767px) {
  .about .about-img {
    width: 100%;
  }
}
.about .about-img .uper-img {
  display: flex;
  align-items: end;
  justify-content: start;
  gap: 20px;
  margin-bottom: 20px;
}
.about .about-img .uper-img .uper {
  width: 48%;
}
.about .about-img .uper-img .lower {
  width: 35%;
  height: 35%;
}
.about .about-img .lower-img {
  display: flex;
  align-items: flex-start;
  justify-content: end;
  gap: 20px;
}
.about .about-img .lower-img .uper {
  width: 48%;
}
.about .about-img .lower-img .lower {
  width: 35%;
  height: 35%;
}
.about .about-info {
  width: 50%;
}
@media (max-width: 767px) {
  .about .about-info {
    width: 100%;
  }
}
.about .about-info .counter-up {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .about .about-info .counter-up {
    margin-bottom: 15px;
  }
}
.about .about-info .counter-up .count-div {
  display: flex;
  align-items: center;
  padding-left: 10px;
  gap: 20px;
  width: 50%;
  border-left: 3px solid var(--primary-color);
}
.about .about-info .counter-up .count-div .count {
  font-size: 30px;
  font-weight: bold;
  color: var(--primary-color);
}

.menu .menu-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .menu .menu-title .nav {
    justify-content: center;
  }
}
.menu .menu-title .nav-link {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid rgb(218, 215, 215);
  transition: all ease-in-out 0.5s;
  padding: 10px 30px;
}
.menu .menu-title .nav-link:hover {
  border-bottom: 2px solid var(--primary-color);
}
.menu .menu-title .nav-link i {
  font-size: 30px;
}
.menu .items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .menu .items {
    flex-direction: column;
    margin-top: 40px;
  }
}
.menu .items .left-part {
  width: 50%;
}
@media (max-width: 767px) {
  .menu .items .left-part {
    width: 100%;
  }
}
.menu .items .left-part .menu-item {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
  margin-bottom: 20px;
}
.menu .items .left-part .menu-item .price div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--border-1px);
  padding-bottom: 5px;
}
.menu .items .left-part .menu-item .price div p {
  font-size: 20px;
}

.reservation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  height: 460px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .reservation {
    flex-direction: column;
    height: auto;
    margin-top: 100px;
    margin-bottom: 50px;
  }
}
.reservation .res-img {
  width: 50%;
}
@media (max-width: 767px) {
  .reservation .res-img {
    width: 100%;
  }
}
.reservation .res-img img {
  width: 100%;
}
.reservation .from {
  width: 50%;
  padding: 40px;
  background-color: var(--sub-bg);
}
@media (max-width: 767px) {
  .reservation .from {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .reservation .from {
    padding: 20px;
  }
}
.reservation .from p {
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .reservation .from p {
    margin-bottom: 5px;
  }
}
.reservation .from h3 {
  color: var(--white);
  margin-bottom: 10px;
}
.reservation .from .inputs {
  display: flex;
  gap: 10px;
  width: 100%;
}
@media (max-width: 991px) {
  .reservation .from .inputs {
    gap: 5px;
  }
}
.reservation .from .inputs .form-floating {
  width: 100% !important;
}
.reservation .from .inputs .form-floating textarea {
  height: 50px !important;
}
.reservation .from .inputs .form-floating input {
  border-radius: 0px !important;
}
.reservation .from .btn2 {
  padding: 10px 30px;
  width: 100%;
  font-size: 15px;
  color: var(--white);
  background-color: var(--primary-color);
  display: inline-block;
  position: relative;
  letter-spacing: 0.5px;
  z-index: 3;
  overflow: hidden;
  text-transform: capitalize;
}
@media (max-width: 450px) {
  .reservation .from .btn2 {
    padding: 8px 16px;
    font-size: 14px;
    margin-top: 20px;
  }
}
.reservation .from .btn2::before {
  content: "";
  position: absolute;
  height: 600px;
  width: 630px;
  top: 50%;
  left: 50%;
  background: var(--white);
  border-radius: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: all 0.4s ease-out 0s;
  z-index: -1;
}
.reservation .from .btn2:hover {
  color: var(--primary-color);
}
.reservation .from .btn2:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.team1 {
  background: url(../img/team-1.jpg) no-repeat center center/cover;
}

.team2 {
  background: url(../img/team-3.jpg) no-repeat center center/cover;
}

.team3 {
  background: url(../img/team-2.jpg) no-repeat center center/cover;
}

.team4 {
  background: url(../img/team-4.jpg) no-repeat center center/cover;
}

.profile-card2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: grid;
  place-items: center;
  position: relative;
  transition: all 1s;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .profile-card2 {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 991px) {
  .profile-card2 {
    width: 100px;
    height: 100px;
  }
}

.info h2,
.info p {
  color: #fff;
  opacity: 0;
  transition: all 0.6s;
}

.profile-card2:hover .info h2,
.profile-card2:hover .info p {
  opacity: 1;
}

.info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: skew(30deg) translateX(100%);
  opacity: 0.1;
  z-index: -1;
  transition: all 0.6s ease;
}

.info::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: skew(-30deg) translateX(100%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  opacity: 0.1;
  z-index: -1;
  transition: all 0.6s ease;
}

.profile-card2:hover .info::before {
  transform: skew(30deg) translateX(50%);
}

.profile-card2:hover .info::after {
  transform: skew(-30deg) translateX(40%);
  opacity: 0.1;
}

.profile-card2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 0.1;
  transform: skew(30deg) translateX(85%);
  transition: all 0.6s ease;
  z-index: -1;
}

.profile-card2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 0.1;
  transform: skew(-30deg) translateX(85%);
  transition: all 0.6s ease;
  z-index: -1;
}

.profile-card2:hover:before {
  transform: skew(30deg) translateX(30%);
}

.profile-card2:hover:after {
  transform: skew(-30deg) translateX(20%);
}

.cards {
  width: 20% !important;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  box-shadow: 5px 5px 10px rgb(236, 236, 236);
}
@media (max-width: 767px) {
  .cards {
    width: 90% !important;
  }
}

.team {
  justify-content: space-evenly;
}
@media (max-width: 767px) {
  .team {
    flex-direction: column;
  }
}

.menu-title {
  text-align: center;
}
@media (max-width: 767px) {
  .menu-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .menu-title {
    margin-bottom: 50px;
  }
}

.review .container {
  text-align: center;
}
.review .review-card {
  gap: 30px;
  padding: 20px;
  border: 1px solid var(--primary-color);
  transition: var(--transition);
}
.review .review-card:hover {
  background: var(--primary-color);
}
@media (max-width: 767px) {
  .review .review-card {
    padding: 2px;
    gap: 10px;
  }
}
.review .review-card .client-pic {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review .review-card .client-pic img {
  width: 100px;
  border-radius: 50%;
  border: 2px dashed var(--white);
}
.review .review-card .client-pic div {
  text-align: left;
}
.review .review-card .says {
  text-align: left;
}
.review .review-card .says i {
  color: var(--secondary-color);
}

.footer-cont {
  background: var(--sub-bg);
  padding: 40px;
}
.footer-cont hr {
  color: white;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: baseline;
}
@media (max-width: 767px) {
  .footer {
    flex-direction: column;
  }
}
.footer .section {
  width: 25%;
}
@media (max-width: 767px) {
  .footer .section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.footer .section a {
  display: block;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  color: white;
  transition: var(--transition);
}
.footer .section a:hover {
  color: var(--primary-color);
  transform: translateX(10px);
}
.footer .section a .part div {
  display: flex;
  align-items: center;
  background-color: white;
}
.footer .section a .part div input {
  height: 46px;
}
.footer .section .icons i {
  color: white;
  border: 1px solid white;
  border-radius: 50%;
  padding: 10px;
  transition: var(--transition);
}
.footer .section .icons i:hover {
  background-color: var(--primary-color);
}

.copy-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .copy-right {
    flex-direction: column;
    gap: 20px;
  }
}
.copy-right .copy {
  display: flex;
  align-items: center;
}
.copy-right .copy p {
  color: white;
}
.copy-right .copy p span {
  border-bottom: 1px solid white;
  color: white;
}
.copy-right .links a {
  color: white;
  padding: 0px 15px;
  border-right: var(--border-1px);
}
.copy-right .links a:hover {
  color: var(--primary-color);
}/*# sourceMappingURL=style.css.map */