/* Fonts */
:root {
  --font-default: "Roboto", sans-serif;
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Roboto", sans-serif;
}

/* Colors */
:root {
  --color-green: #348f40;
  --color-orange: #ff820d;
  --color-black: #000;
  --color-white: #fff;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-green);
}

a {
  color: var(--color-black);
  text-decoration: none;
}

a:hover {
  color: #ec2727;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

.container {
  max-width: 1190px;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-bg {
  background-color: #e8e8e8;
}

.section-header {
  text-align: center;
  padding-bottom: 50px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: var(--color-black);
  text-transform: uppercase;
  font-family: var(--font-default);
}

.section-header p {
  margin: 0;
  font-size: 28px;
  line-height: 1.55;
  font-weight: 700;
  font-family: var(--font-primary);
}

.section-header p span {
  color: var(--color-black);
}

@media (max-width: 575px) {
  section {
    padding: 50px 0;
  }

  .section-header {
    padding-bottom: 30px;
  }
}

a.logo {
  font-weight: 700;
  font-size: 23px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 100px;
}

.header .container {
  max-width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
  max-height: 62px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-black);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;
  background: var(--color-black);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(206, 18, 18, 0.8);
}

@media (max-width: 575px) {
  .header {
    height: 90px;
  }
  .header .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-black);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-black);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-black);
    font-size: 38px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-black);
    font-size: 48px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 5px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

.video-bg {
  height: 700px;
  width: 100%;
}

.video-cover-filter {
  height: 700px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.video-cover-filter {
  height: 700px;
  background-image: -moz-linear-gradient(top, rgba(0,0,0,0.10), rgba(0,0,0,1));
  background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.10), rgba(0,0,0,1));
  background-image: -o-linear-gradient(top, rgba(0,0,0,0.10), rgba(0,0,0,1));
  background-image: -ms-linear-gradient(top, rgba(0,0,0,0.10), rgba(0,0,0,1));
  background-image: linear-gradient(top, rgba(0,0,0,0.10), rgba(0,0,0,1));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#e5000000', endColorstr='#00000000');
}

.video-cover-text {
  position: relative;
  padding-top: 70px;
}


/*--------------------------------------------------------------
# How Does Work Section
--------------------------------------------------------------*/
.how-does-work .item p {
  color: var(--color-black);
  padding-top: 15px;
}

.how-does-work .item img {
  max-height: 70px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-bottom: 320px;
}

.about .content {
  position: relative;
}

.about .content ul {
  position: relative;
  list-style: none;
  padding: 0;
}

.about .content ul li {
  position: absolute;
  border-radius: 10px;
  background-color: #ffffff;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  box-shadow: 10px 10px 10px 0px rgba(41,41,41,0.3);
  padding: 20px 50px;
  margin-bottom: 50px;
  min-width: 600px;
  z-index: 99;
}

.about .content ul li:nth-child(1) {
  left: -50px;
}

.about .content ul li:nth-child(2) {
  left: -50px;
  top: 205px;
}

.about .content ul li:nth-child(3) {
  left: -50px;
  top: 385px;
}

.about .content ul li:nth-child(4) {
  left: -50px;
  top: 620px;
}

.about .content .item-title {
  color: var(--color-green);
  font-size: 28px;
  line-height: 1.55;
  font-weight: 700;
} 

.about .content p {
  color: var(--color-black);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .about-buttons {
  position: absolute;
  left: 0;
  top: 710px;
}

.about .about-buttons .btn-call-phone {
  display: inline-block;
  font-family: 'Roboto',Arial,sans-serif;
  height: 60px;
  line-height: 60px;
  border: 0 none;
  font-size: 16px;
  padding-left: 60px;
  padding-right: 60px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  color: var(--color-white);
  background: var(--color-green);
  margin: 0 10px;
}

.about .about-buttons .btn-call-phone:hover {
  color: var(--color-white);
  background: var(--color-orange);
}

@media (max-width: 575px) {
  .about .row.gy-4 {
    flex-direction: column-reverse;
  }
  .about {
    padding-bottom: 30px;
  }
  .about .content ul li {
    position: relative;
    min-width: 100%;
    padding: 10px 40px;
    text-align: center;
    margin-bottom: 20px;
  }
  .about .content ul li:nth-child(1), .about .content ul li:nth-child(2), .about .content ul li:nth-child(3), .about .content ul li:nth-child(4) {
    left: 0;
    top: 0;
  }
  .about .about-buttons {
    position: relative;
    left: 0;
    top: 0;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Service Section
--------------------------------------------------------------*/
.service {
  padding-bottom: 0;
}

.service .content {
  padding-left: 30px;
}

.service .content ul {
  position: relative;
  list-style: none;
  padding: 0;
}

.service .content ul.check {
  position: relative;
  list-style: none;
  padding-left: 30px;
}

.service .content ul li {
  color: var(--color-black);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
}

.service .content ul.check li {
  position: relative;
  color: var(--color-black);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 600;
}

.service .content ul.check li::before {
  position: absolute;
  content: "";
  left: -30px;
  bottom: 0;
  height: 30px;
  width: 30px;
  background: url(../img/instagram-check.png) no-repeat;
  background-size: cover;
}

.service .content ul.check p {
  padding-left: 10px;
}

@media (max-width: 575px) {
  .service .content {
    padding-left: 0;
    text-align: center;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  padding: 30px;
  background: var(--color-black);
  color: #fff;
}

.why-us .why-box h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .why-box .more-btn:hover {
  color: var(--color-black);
  background: #fff;
}

.why-us .icon-box {
  text-align: center;
  background: #fff;
  padding: 0 30px;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}

.why-us .icon-box img {
  display: block;
  max-width: 150px;
}

.why-us .icon-box h4 {
  font-size: 28px;
  line-height: 1.55;
  font-weight: 700;
  margin: 10px 0 20px 0;
  font-family: var(--font-secondary);
}

.why-us .icon-box p {
  font-size: 16px;
  font-family: var(--font-secondary);
  line-height: 1.4;
  font-weight: 400;
  color: var(--color-black);
}

.why-us .btn-call-phone {
  display: inline-block;
  font-family: 'Roboto',Arial,sans-serif;
  height: 60px;
  line-height: 60px;
  border: 0 none;
  font-size: 16px;
  padding-left: 60px;
  padding-right: 60px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  color: var(--color-white);
  background: var(--color-green);
  margin: 0 10px;
}

.why-us .btn-call-phone:hover {
  color: var(--color-white);
  background: var(--color-orange);
}

@media (min-width: 1200px) {
  .why-us .icon-box:hover {
    transform: scale(1.1);
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery iframe {
  width: 100% !important;
}

.gallery .row-two {
  padding-top: 20px;
  overflow: hidden;
}

.gallery .gallery-slider {
  display: flex;
  position: relative;
  max-height: 580px;
  overflow: hidden;
}

.gallery .row-two .gallety-img {
  padding-bottom: 20px;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-black);
}

.gallery .swiper-slide-active {
  text-align: center;
}

.gallery .swiper-button-next {
  margin-top: 0px;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
}

.gallery .swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
  margin-top: 0px;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 28px;
  color: #fff;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid var(--color-black);
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
  }
}

@media (max-width: 575px) {
  .gallery iframe {
    padding-bottom: 15px;
  }
  .gallery .row-two {
    padding-top: 0;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  background-size: cover;
  position: relative;
  min-height: 60vh;
  padding: 160px 0 60px 0;
}

.hero h2 {
  font-size: 72px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.17;
  margin-bottom: 20px;
  color: var(--color-white);
  font-family: var(--font-primary);
  text-align: center;
}

.hero h2 span {
  color: var(--color-black);
}

.hero p {
  color: var(--color-white);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 300;
  padding: 15px 0 30px 0;
}

.hero .video-buttons {
  margin-top: 15px;
}

.hero .btn-call-phone {
  display: inline-block;
  font-family: 'Roboto',Arial,sans-serif;
  height: 60px;
  line-height: 60px;
  border: 0 none;
  font-size: 16px;
  padding-left: 60px;
  padding-right: 60px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  color: var(--color-white);
  background: var(--color-green);
  margin: 0 10px;
}

.hero .btn-call-phone:hover {
  color: var(--color-white);
  background: var(--color-orange);
}

.hero .btn-book-a-table {
  display: inline-block;
  font-family: 'Roboto',Arial,sans-serif;
  height: 60px;
  line-height: 60px;
  border: 0 none;
  font-size: 16px;
  padding-left: 60px;
  padding-right: 60px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  color: var(--color-black);
  background: var(--color-white);
  margin: 0 10px;
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .hero .video-buttons {
    display: block!important;
  }
  .hero .btn-call-phone {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  height: 170px;
  background-position: center center;
  background: url(../img/pattern-big.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
  color: #000000;
  font-size: 20px;
  font-family: 'Roboto',Arial,sans-serif;
  line-height: 1.55;
  font-weight: 400;
}

.footer img {
  margin-right: 5px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .copyright, .footer .phone {
  text-align: center;
}

.footer .phone {
  padding: 10px 0;
}

.footer .phone a {
  color: #000000;
  font-size: 28px;
  font-family: 'Roboto',Arial,sans-serif;
  line-height: 1.55;
  font-weight: 600;
}

.footer .phone img {
  position: relative;
  max-width: 30px;
  top: -5px;
}

.footer .orders {
  display: block;
  text-align: center;
  padding-top: 5px;
}

.footer .orders .link {
  display: inline-block;
}

.footer .orders img {
  width: 100%;
  max-height: 60px;
  display: block;
}

