@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Rubik:ital@0;1&display=swap');


/* Fonts */
:root {
  --font-default:'Rubik', sans-serif;
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary:'Rubik', sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #1ebeb6;
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-primary);
}

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(55, 55, 63, 0.05);
  margin-top: 90px;
}

@media (max-width: 575px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #676775;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 56px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #12a9a2;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  
  
  .copyrights{
      margin-bottom:4em;
  }
  .service-box img {
        height: 140px !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: transparent;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  border-bottom: 1px solid #fff;
}
.header.sticked {
  background: #fff;
}
@media (max-width: 575px) {
  .header {
    height: 70px;
  }
  .header .logo img {
    max-height: 70px !important;
}
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
  box-shadow: 0px 2px 5px rgb(0 0 0 / 20%);
}

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

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

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

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
font-size: 14px;
    color: #000 !important;
    background: var(--color-primary);
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 0;
    transition: 0.3s;
    background: #ffda2b;
}
.thsn-button-box {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.thsn-button-box a {
    color: #fff;
}

.header.sticked * {
    color: #000;
}
.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #000;
  background: #fff;
}

section {
  scroll-margin-top: 90px;
}
.heromainimg-1 {
    position: absolute;
    left: 0;
    right: 0;
    max-width: 70%;
    margin: auto;
    bottom: 1%;
	z-index: 1;
}
img.img-fluid.heromainimg-2 {
    max-width: 25%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

.heroslider-3 img.img-fluid.heromainimg-2 {
    left: 0;
	right: initial;
}
/*--------------------------------------------------------------
# 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: #ffffff;
    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>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    /* color: #000; */
  }

  .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-primary);
  }

  .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: #7f7f90;
    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-primary);
  }

  .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-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    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;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  min-height: 500px;
}

.about h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 10%;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

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

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

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

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(206, 18, 18, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(206, 18, 18, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  padding: 30px;
  background: var(--color-primary);
  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 i {
  font-size: 14px;
}

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

.why-us .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(55, 55, 63, 0.1);
  transition: 0.3s;
}

.why-us .icon-box i {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: rgba(206, 18, 18, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: var(--font-secondary);
}

.why-us .icon-box p {
  font-size: 15px;
  color: #6c757d;
}

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

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/stats-bg.jpg") center center;
  background-size: cover;
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .stats-counter {
    background-attachment: fixed;
  }
}

.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 700;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  margin: 0 10px;
  padding: 10px 5px;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid #b6b6bf;
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--font-secondary);
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--color-primary);
}

.menu .nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: #676775;
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
}

.menu .tab-content .menu-item {
  -moz-text-align-last: center;
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu .tab-content .menu-item h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 30px;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--font-secondary);
  color: #8d8d9b;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--color-primary);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-default);
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 10px 0;
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #1ebeb6;
  font-size: 26px;
  line-height: 0;
}

.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;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
  padding: 0;
}

.events .event-item {
  background-size: cover;
  background-position: cente;
  min-height: 600px;
  padding: 30px;
}

@media (max-width: 575px) {
  .events .event-item {
    min-height: 500px;
  }
}

.events .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.events .event-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  position: relative;
}

.events .event-item .price {
  color: #fff;
  border-bottom: 2px solid var(--color-primary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.events .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

@media (min-width: 1200px) {
  .events .swiper-slide-active+.swiper-slide {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
}

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

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

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .chef-member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
  transition: 0.3s;
}

.chefs .chef-member .member-img {
  position: relative;
  overflow: hidden;
}

.chefs .chef-member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.chefs .chef-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.chefs .chef-member .social a {
  transition: color 0.3s;
  color: rgba(55, 55, 63, 0.4);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .chef-member .social a:hover {
  color: rgba(55, 55, 63, 0.9);
}

.chefs .chef-member .social i {
  font-size: 18px;
}

.chefs .chef-member .member-info {
  padding: 10px 15px 20px 15px;
}

.chefs .chef-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--color-secondary);
}

.chefs .chef-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 37, 41, 0.4);
}

.chefs .chef-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: rgba(33, 37, 41, 0.7);
}

.chefs .chef-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

.chefs .chef-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table .reservation-form-bg {
  background: rgba(55, 55, 63, 0.04);
}

.book-a-table .php-email-form {
  padding: 40px;
}

@media (max-width: 575px) {
  .book-a-table .php-email-form {
    padding: 20px;
  }
}

.book-a-table .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-a-table .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.book-a-table .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.book-a-table .php-email-form input {
  padding: 12px 15px;
}

.book-a-table .php-email-form textarea {
  padding: 12px 15px;
}

.book-a-table .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 60px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

.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-primary);
}

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #f4f4f4;
  padding: 30px;
  height: 100%;
}

.contact .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact .info-item p {
  padding: 0;
  margin: 0;
  line-height: 24px;
  font-size: 14px;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  color: rgba(55, 55, 63, 0.7);
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
}

.contact .info-item .social-links a:hover {
  color: var(--color-primary);
}

.contact .php-email-form {
  width: 100%;
  margin-top: 30px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 48px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    background-size: cover;
    position: relative;
    /* min-height: 100vh; */
    padding: 0;
}
.thsn-header-button {
    display: flex;
    align-items: center;
}

.thsn-header-button .header_icon1 {
    width: 40px;
    min-width: 40px;
    margin-right: 10px;
}
.hero h2 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
}

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

.hero p {
  color: #edf5f5;
  font-weight: 500;
  margin-bottom: 30px;
}

.hero .btn-book-a-table {
font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 36px;
    border-radius: 50px;
    transition: 0.5s;
    color: #000;
    background: #ffda2b;
    box-shadow: 0 8px 28px rgb(206 18 18 / 20%);
	    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
.col-lg-7.order-2.order-lg-1.d-flex.flex-column.justify-content-center.align-items-center.align-items-lg-start.text-center.text-lg-start {
    position: relative;
    z-index: 10;
}
.hero .btn-book-a-table:hover {
    background: #ffffff;
    box-shadow: 0 8px 28px rgb(0 0 0 / 45%);
}
.herosliderslides {
    min-height: 110vh;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #00039d, #1d47ee);
}
.heroslider-1 {
    position: relative;
}

.heroslider-1:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../img/1.jpeg);
     background-size:cover;
	 background-position: center;
	    
}


.heroslider-2{
	 background: url(../img/s2.jpg);
	 background-size:cover;
	 background-position: center;
}

.heroslider-3{
	 background: url(../img/hr.jpg);
	 background-size:cover;
	 background-position: center;

}
.heroslider-4{
	 background: url(../img/recruit.jpg);
	 background-size:cover;
	 background-position: center;

}
.heroslider-5{
	 background: url(../img/6.jpeg);
	 background-size:cover;
	 background-position: center;
}
.heroslider-6{
	 background: url(../img/s6.jpeg);
	 background-size:cover;
	 background-position: center;
}	 
 .heroslider-7{
	 background: url(../img/s7.jpeg);
	 background-size:cover;
	 background-position: center;

}
.herosliderslides h2 {
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 3.5em;
    line-height: 1;
	text-shadow: 2px 2px 3px rgb(0 0 0 / 55%);
}
.heromainimg-1{
    animation: mover 1s infinite alternate;
}
@-webkit-keyframes mover {
    0% { bottom:1% }
    100% { bottom:2% }
}
@keyframes mover {
    0% { bottom:1% }
    100% { bottom:2% }
}

.herosliderslides a.btn-book-a-table {
    border-radius: 0;
}
.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--font-secondary);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero .btn-watch-video:hover i {
  color: rgba(206, 18, 18, 0.8);
}
section#hero {
    padding: 0;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #1f1f24;
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

.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 .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}
.section {
    padding: 90px 0;
}
.section.section-2 {
    overflow: hidden;
}
.foot-supp h2{
    text-align: center;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.foot-supp h2 span{
    font-weight: 300;
    padding-right: 5px;
}
.foot-count{
    border-top: 1px dashed #352c7c;
    padding: 35px 0px 0px 0px;
    margin-top: 20px;
}
.foot-count ul{
    margin:0 auto;
    display:table;
}
.foot-count ul li{
    float: left;
    font-size: 14px;
    padding: 0px 15px;
    border-right: 1px dashed #352c7c;
    line-height: 15px;
    text-align: center;
    font-weight: 500;
    color: #7a6a5c;
    line-height: 18px;
}
.wed-hom-footer{
    /* margin-top: 60px; */
    padding: 60px 0px 40px 0px;
    float: left;
    width: 100%;
    color: #fff;
    background: var(--color-primary);
}
.wed-hom-footer h4{
    font-size: 16px;
    color: #ffffff;
    padding-bottom: 25px;
    text-transform: capitalize;
    font-weight: 500;
}
.wed-hom-footer p{
    font-size: 12px;
    color: #fff;
}
.wed-hom-footer ul{
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}
.wed-hom-footer p a{
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}
.wed-foot-link{
    border-top: 1px dashed #364a5a;
    /* border-bottom: 1px dashed #5d5b5b; */
    padding: 35px 0px 5px 0px;
    /* margin-top: 35px;
     */
}
.wed-foot-link ul{
	padding: 0px;
    margin: 0px;
    list-style-type: none;
}
.wed-foot-link ul li{
    width: 50%;
    float: left;
    margin-bottom: 8px;
	    list-style-type: none;
}
.wed-foot-link ul li a{
    color: #fff;
    font-size: 13px;
}
.wed-foot-link div{
    border-right: 1px dashed #352c7c;
}
.wed-foot-link div:last-child{
    border-right:0px solid #dadada;
;
}
.wed-video2{
    padding: 50px 0px;
    background: #f1f1f1;
}
.wed-foot-link-1{
    padding-top: 40px;
}
.wed-foot-link-1 ul{
    position: relative;
    overflow: hidden;    padding: 1px;
}
.wed-foot-link-1 ul li{
    float: left;
    padding-right: 8px;
	    list-style-type: none;
}
.wed-foot-link-1 ul li a{
}
.wed-foot-link-pop{
    padding: 30px 0px 0px 0px;
}
.wed-foot-link-pop h4{
    padding-bottom: 15px;
}
.wed-foot-link-pop ul li{
    float: left;
    width: 16%;
    padding: 0px 5px 12px 0px;
	    list-style-type: none;
}
.wed-foot-link-pop ul li a{color: #fff;font-size: 12px;display: block;overflow: hidden;text-overflow: ellipsis;white-space: pre;}
.wed-foot-link-pop ul li a:hover, .wed-foot-link ul li a:hover{color: #fff;text-decoration: underline;}
.fot-app ul li a img{
    width: 157px;
    height: 55px;
    display: inline-block;
    object-fit: contain;
}
.fot-soc ul li a img{
    width: 32px;
    height: 32px;
    text-align: center;
    border-radius: 50%;
}
.wed-rights{
    background: #01172f;
}
.wed-rights p{
    text-align: center;
    margin-bottom: 0px;
    padding: 8px;
    color: #adadad;
    font-size: 13px;
}
.foot-supp h2{
        color:#fff;
    }
	.copyrights {
    float: none;
    clear: both;
    text-align: center;
    background: #01aca3;
    color: #fff;
    font-size: 14px;
    padding:13px 10px;
}
.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 2.5em;
    line-height: 1;
	margin: auto;
	margin-bottom:1em;
	    max-width: 700px;
}
h2.thsn-element-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #1ebeb6;
}    
.section.section-2 .section-title {
    max-width: 800px;
    margin: auto;
}

.section.section-2 .section-title img {
    max-width: 140px;
}
.section-2-left img {
    height: 100%;
    object-fit: cover;
}

.section-2-middle img {
    max-width: 227px;
    margin-bottom: 3em;
}
.founder-text p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #1ebeb6;
    line-height: 1;
    margin-bottom: 5px !important;
}

.founder-text {
    font-size: 14px;
}
.founder-main img {
    margin-bottom: 0;
}

.founder-main {
    justify-content: space-between;
}
.mission-vision-sec-main {
    background: #f9f9f9;
    padding: 25px;
	max-width:100%;
}

.mission-vision-sec .swiper-pagination {
    position: relative;
    bottom: 0;
    top: 0;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {}

.mission-vision-sec .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-primary);
}

.section-2-right {
    display: flex;
    align-items: center;
}


nav#navbar {
    margin-right: auto;
}


.section.section-3 {
    background: #f9f9f9;
}

.section-3 .thsn-box-contents img {
    height: 70px;
    margin: auto;
    display: block;
}

.section-3 .thsn-ihbox-headingicon {
    text-align: center;
    background: #fff;
    padding: 30px 20px;
    height: 100%;
    border-bottom: 7px solid #1ebeb6;
    transition: 0s;
    position:relative;
    background-size: cover;
    color: #fff;
}

.section-3 .thsn-ihbox-headingicon h2.thsn-element-title {
    color: #fff;
    font-size: 28px;
    margin: 1em 0;
    line-height: 1;
}

.section-3 .thsn-heading-desc {
    font-size: 16px;
    margin-bottom: 20px;
}

.section-3 .thsn-ihbox-icon-wrapper.thsn-ihbox-icon-type-image {
    background: #f9f9f9;
}
.section-3 .thsn-ihbox-style-13 .thsn-ihbox-icon-wrapper img{
    z-index: 1;
    position: relative;
}
.section-3 .thsn-ihbox-style-13:hover .thsn-ihbox-icon-wrapper img{
    position: relative;
    animation: mymove 4s infinite;
}
.thsn-ihbox-headingicon:hover .thsn-ihbox-icon-type-image img{
	position: relative;
    animation: mymove 4s infinite;
}
.section-3 .thsn-ihbox-icon-wrapper.thsn-ihbox-icon-type-image img {
    margin-top: -15px;
}

.section-3 .thsn-ihbox-headingicon:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0 0 0 / 40%);
    z-index: 0;
}

.section-3 .thsn-ihbox-headingicon:hover:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0 0 0 / 70%);
    z-index: 0;
}

.section-3 .thsn-ihbox-headingicon * {
    position: relative;
}
@keyframes mymove {
    from {top: 0px;}
    to {top: 10px;}
}
.section-3 .thsn-ihbox-headingicon:hover {
    /*background:url(service-06.jpg)*/
    transition: 0s;
    color: #fff;
background-size: cover;
background-position: left;
}
.section-3 .thsn-ihbox-icon-wrapper.thsn-ihbox-icon-type-image img {
    margin-top: -15px;
}

.section-3 .thsn-ihbox-headingicon:hover h2.thsn-element-title {
    color: #1ebeb6;
}

.thsn-ihbox-headingicon {}

.section-3 .thsn-ihbox-headingicon:hover .thsn-ihbox-icon-wrapper.thsn-ihbox-icon-type-image {
    background: #1ebeb6;
}

.service-box {
    margin-bottom: 14px;
    text-align: center;
    box-shadow: 1px 1px 8px rgb(0 0 0 / 29%);
}

.service-box div {
    font-weight: bold;
    font-size: 14px;
    padding: 10px;
    text-align: left;
	background: #fff;
}

.section-4 .section-title p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    font-family: var(--font-default);
    margin-top: 10px;
}

.section-4-2 {
    background: #f9f9f9;
}
.section-5-foot-text a {
    text-decoration: underline;
}
.section-5 h4.thsn-fid-inner {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 3em;
    line-height: 1;
    color: #1ebeb6;
	white-space: nowrap;
}

.section-5 .thsn-fid-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1em;
    line-height: 1;
    padding-right: 22px;
}

.section-5 .thsn-sbox-icon-wrapper img {
    width: 90px;
    margin-bottom: 10px;
}


.section-5-foot-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1em;
    line-height: 1;
    font-weight: 600;
}

.section-5-foot-text img {
    width: 100px;
    margin-right: 10px;
}

.section-5-foot-text {
    display: flex;
    align-items: center;
    margin-top: 2em;
}

.section-6 .section-title {
    margin-bottom: 10px;
}

.section.section-6 {
    background: #f9f9f9;
}
.cont-sec6 {
    display: flex;
    align-items: start;
    margin-bottom: 2em;
}

.cont-sec6 i {
    font-size: 28px;
    margin-right: 15px;
    color: #1ebeb6;
    line-height: 0;
}

p.cont-sec6-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: 1.2em;
    margin-bottom: 10px;
}

p.cont-sec6-text {
    font-size: 14px;
    margin-bottom: 0;
}
.testi-founder-sec {
    display: flex;
    align-items: center;
    font-family: 'Rajdhani', sans-serif;
}

.testi-founder-sec img.img-fluid.testimonial-img {
    width: 75px;
    margin: 0;
}

.section.section-7 {
    background: #fff;
}

.testimonials .testimonial-item .testimonial-content {
    border: none;
    box-shadow: 2px 2px 5px rgb(0 0 0 / 14%);
	padding: 15px 30px;
}
.testimonial-item {
    padding: 4px;
}

.testimonial-content .stars {
    margin-bottom: 10px;
}
.testi-founder-sec h4 {
    color: #1ebeb6 !important;
}
.hero-cont-box22 {
    position: relative;
    z-index: 10;
}
.mobile-nav-show {
    color: #fff;
}
.form-box {
    background: #404c4b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgb(0 0 0 / 29%);
}

.form-box .form-control,.form-box .form-select {
    box-shadow: none !important;
    outline: none;
    border: none !important;
}

.form-box button.btn.btn-primary {
background: #1ebeb6;
    color: #fff;
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 20px;
    box-shadow: none !important;
}
p.form-head {
    text-align: center;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #fff;
}
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    border-left-color: #fff;
}
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before{
    border-bottom-color: #fff;
}
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    border-right-color: #fff;
}

.tooltip-inner {
    background: #fff;
    color: #000;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 26%);
    border-radius: 0;
    text-align: left;
    line-height: 1.2;
    font-family: var(--font-default);
}

.tooltip-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}
.map-dot-img {
    animation: pulse 1s infinite alternate;
}

		@-webkit-keyframes pulse {
            0% { -webkit-transform: scale(1); }
            50% { -webkit-transform: scale(1.2); }
            100% { -webkit-transform: scale(1); }
         }
         
         @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
         }
		 
.map-section {
    position: relative;
}

.location-img-sec {
    position: absolute;
    bottom: 3%;
    width: 27%;
    left: 28%;
}

p.txt1 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 264%;
    line-height: 1;
    margin-bottom: 0;
}


.txtbox-1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

p.txt2 {
    line-height: 1;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    width: 77%;
}
.map-dot-img {
    position: absolute;
}

img.map-dot-img.map-dot-img1.img-fluid {
    left: 7%;
    top: 18%;
}

img.map-dot-img.map-dot-img2.img-fluid {
    left: 30%;
    top: 9%;
}

img.map-dot-img.map-dot-img3.img-fluid {
    left: 18%;
    top: 39%;
}

img.map-dot-img.map-dot-img4.img-fluid {
    left: 20%;
    bottom: 26%;
}

img.map-dot-img.map-dot-img5.img-fluid {
    right: 19%;
    top: 15%;
}

img.map-dot-img.map-dot-img6.img-fluid {
    right: 34%;
    top: 19%;
}

img.map-dot-img.map-dot-img7.img-fluid {
    right: 42%;
    top: 46%;
}

img.map-dot-img.map-dot-img8.img-fluid {
    right: 26%;
    top: 45%;
}

img.map-dot-img.map-dot-img9.img-fluid {
    right: 14%;
    bottom: 15%;
}		 
	
.countryswiper-sec .thsn-ihbox-headingicon {
    display: flex;
    align-items: start;
	    margin-right: 70px;
}

.countryswiper-sec .thsn-ihbox-icon {
    color: transparent;
    -webkit-text-stroke: 1px #01aca3;
    font-size: 48px;
    line-height: 58px;
    margin-right: 60px;
}
.country-navigation {
    position: absolute;
    right: 5px;
    top: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countryswiper-sec {
position: relative;
    margin-bottom: 1em;
    margin-top: 0.5em;
}

.country-navigation i {
font-size: 12px;
    color: #000000;
    line-height: 29px;
    margin: 2px 0;
    border-radius: 50%;
    transition: 0.2s;
    min-width: 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #adadad;
	background: #fff;
}

.swiper-button-next, .swiper-button-prev {
    /* line-height: 1.3; */
}

.country-navigation i:hover {
    color: #fff;
    background: #01aca3;
    transition: 0.2s;
	border: 1px solid #01aca3;
}
.location-img-sec img {
    width: 100%;
}	
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
.circle-txt text {
    font-size: 20px;
    text-transform: uppercase;
    fill: #000000;
    letter-spacing: 6.3px;
    transform-origin: 50% 50% 0;
    transform: rotate(0deg);
    -webkit-animation: spin 15s linear infinite;
    -moz-animation: spin 15s linear infinite;
    animation: spin 15s linear infinite;
}
svg.circle-txt {
position: absolute;
    max-width: 140px;
}
.mission-vision-sec .swiper-button-prev:after, 
.mission-vision-sec .swiper-button-next:after{
	display:none;
}
.swiper-button-next,.swiper-button-prev {
left: initial;
    right: 0;
    position: static;
    height: auto;
    margin: 0;
}


.section.subpage-banner {
    background: url(../img/clibr.jpg);
    margin-top: 90px;
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 2em;
}

.section.subpage-banner:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 0;
}

.section.subpage-banner .container {
    position: relative;
}

.section.subpage-banner a {
    color: #fff;
}

.section.subpage-banner p {
    font-size: 0.5em;
    font-weight: 600;
}

.section.subpage-banner i {
    font-size: 0.8em;
    margin: 0 10px;
}

.section.about-steps-section {
    background: #000;
    color: #fff;
}

.section.about-steps-section h2.thsn-element-title {
    color: #fff;
}

.section.about-steps-section .thsn-heading-desc {
    color: #ccc;
    font-size: 15px;
}

.section.about-steps-section .left-sec {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
}

.section.about-steps-section .left-sec span {
    color: #01aca3;
}

img.img-fluid {}

.section.about-steps-section  .thsn-box-contents img {
    margin: 30px 0;
    max-width: 90px;
    max-height: 90px;
	    height: 90px;
    object-fit: contain;
}

.steps-header-section a.btn-book-a-table {
    font-size: 14px;
    color: #000 !important;
    background: var(--color-primary);
    padding: 12px 20px;
    width: 160px;
    display: block;
    text-align: center;
    margin-left: 30px;
    border-radius: 0;
    transition: 0.3s;
    background: #ffda2b;
    margin-left: auto;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.steps-header-section .row {
    align-items: center;
}

.steps-header-section .right-sec {
    text-align: right;
}

.steps-bottom-section .thsn-box-contents:hover img {
    top: -10px;
    transition: 0.3s;
}

.steps-bottom-section .thsn-box-contents img {
    position: relative;
    top: 0;
    transition: 0.3s;
}
.section.about-steps-section h2.thsn-element-title span {
    min-width: 40px;
    width: 40px;
    height: 40px;
    background: #01aca3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
    margin-right: 5px;
}

.section.about-steps-section h2.thsn-element-title {
    display: flex;
    align-items: center;
}
.steps-bottom-section .thsn-box-contents {
    background-image: url(../img/lineshape.png);
    background-repeat: no-repeat;
    background-position: right 66px;
}
.history-box {
    display: flex;
    align-items: center;
    margin: 4em 0;
}

.history-box .left-sec,.history-box .right-sec {
    width: 40%;
    min-width: 40%;
}

.history-box 
 .middle-sec {
    width: 20%;
    text-align: center;
    min-width: 20%;
}

.cont22 p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.5em;
    margin-bottom: 0.3em;
}

.history-box .left-sec {
    background: #fff;
    box-shadow: 0px 0px 37px rgb(0 0 0 / 13%);
    padding: 20px;
	position: relative;
}

.history-box .middle-sec .year-txt {
    width: 100px;
    margin: auto;
    background: #1ebeb6;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.8em;
    padding: 3px 0;
	transition: 0.3s;
}
.history-box:hover .middle-sec .year-txt {
    background: #000;
    transition: 0.3s;
}
.history-box:nth-child(even) {
    flex-direction: row-reverse;
}
.history-box-main {
    position: relative;
}

.history-box-main:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    left: 0;
    right: 0;
    height: 100%;
    background: #1ebeb6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.history-box {
    position: relative;
}
.history-box-top-icon,.history-box-bottom-icon {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
    pointer-events: none;
    top: 0;
	width: 15px;
}

.history-box-bottom-icon {
    bottom: 0;
    top: initial;
}

.history-box-main {
    padding: 1em 0;
}
.history-box .left-sec i {
    right: -24px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    font-size: 36px;
    color: #fff;
}

.history-box:nth-child(even) .left-sec i {
    right: initial;
    left: -24px;
    transform: rotate(180deg);
}
.history-box .right-sec img {
    width: 100%;
}
.sub-section-3-p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
}

.sub-section-3-p span {
    color: #01aca3;
}

.counter2-box {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
}

.counter-2-main {
    justify-content: space-between !important;
}
.counter2-box p {
    margin-bottom: 0;
}

.section.sub-section-3 {
    background: #fff;
}

.section.sub-section-2 {
    background: #fdfdfd;
}
.counter-circle-box {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border: 7px solid #e8e8e8;
    border-radius: 50%;
    margin-bottom: 10px;
    font-size: 1.6em;
    color: #01aca3;
	position:relative;
}

.counter-circle-box .progress {
    position: absolute;
}
.progress {
    min-width: 100px;
    height: 100px;
    font-size: 30px;
    color: #fff;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: transparent;
    text-align: center;
    line-height: 100px;
}



.progress .title {position: relative;z-index: 100;}

.progress .overlay {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: transparent
}

.progress .left, .progress .right {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 7px solid #01aca3;
    border-radius: 100px 0px 0px 100px;
    border-right: 0;
    transform-origin: right;
}

.progress .left {animation: load1 1s linear forwards;}

.progress:nth-of-type(2) .right, .progress:nth-of-type(3) .right {animation: load2 .4s linear forwards 1s;}

.progress1:last-of-type .right, .progress1:first-of-type .right {animation: load3 .8s linear forwards 1s;}

.progress2:last-of-type .right, .progress2:first-of-type .right {animation: load4 .8s linear forwards 1s;}

.progress3:last-of-type .right, .progress3:first-of-type .right {animation: load5 .8s linear forwards 1s;}



@keyframes load1 {
    0% {transform: rotate(0deg);}

    100% {transform: rotate(180deg);}
}

@keyframes load2 {
    0% {z-index: 100;transform: rotate(180deg);}

    100% {z-index: 100;transform: rotate(270deg);}
}

@keyframes load3 {
    0% {z-index: 100;transform: rotate(180deg);}

    100% {
        z-index: 100;transform: rotate(260deg);}
}
@keyframes load4 {
    0% {z-index: 100;transform: rotate(180deg);}

    100% {
        z-index: 100;transform: rotate(300deg);}
}
@keyframes load5 {
    0% {z-index: 100;transform: rotate(180deg);}

    100% {
        z-index: 100;transform: rotate(333deg);}
}
@media screen and (max-width:991px){
	.steps-bottom-section .thsn-box-contents {
    background-image: none;
}
	.wed-foot-link ul li {
        width: 100%;
    }
    .wed-foot-link div {
        padding-left: 30px;
        width: 33.333%;
    }
	.foot-supp h2{
        font-size:16px;
        line-height: 28px;
    }
    .wed-hom-footer h4 {
        padding-bottom: 5px;
        padding-top: 0px;
    }
    .wed-foot-link-1{
        text-align: center;
    }
    .fot-app{
        border-top: 1px solid #e9e9e9;
        padding: 30px 0px;
        margin-top: 15px;
    }
    .fot-app ul, .wed-foot-link-1 ul{
        margin:0 auto;
        display: table;
    }
    .foot-count{
        margin-top: 30px;
    }
	.pmenu-cat ul li, .wed-foot-link-pop ul li{width:50%;}
	.wed-foot-link ul li {
        width: 100%;
    }
    .wed-foot-link div,.wed-foot-link-pop div {
        padding-left: 30px;
    }
	
	.wed-foot-link div {
        width: 50%;
    }
    .wed-foot-link div:nth-child(2){
        border-right: 0px solid #dadada;
    }
    .wed-foot-link div:last-child {
        border-right: 0px solid #dadada;
        border-top: 1px solid #dadada;
        width: 100%;
        margin-top: 35px;
        padding-top: 35px;
    }
    .wed-foot-link div:last-child ul li{
        width: 50%;
    }
    .wed-foot-link{
        padding: 35px 0px 30px 0px;
    }
	.foot-supp h2{
        font-size:18px;
    }
	}
	
	
	@media (max-width: 767px) {
		.section.about-steps-section .left-sec,.sub-section-3-p {
    font-size: 30px;
    line-height: 1.1;
}
		.steps-bottom-section .thsn-box-contents {
    background-image: none;
		}
		.history-box .left-sec i{
			display:none;
		}
		.history-box {
    flex-direction: column !important;
}

.history-box .left-sec, .history-box .right-sec,.history-box .middle-sec {
    width: 100%;
}

.history-box .middle-sec {
    margin-top: -25px;
    margin-bottom: -24px;
    position: relative;
}

.history-box .left-sec {
    padding-bottom: 36px;
}
.steps-header-section a.btn-book-a-table {
    margin-left: 0;
	}
	}
	@media (max-width: 640px) {
		.circle-txt-div {
    margin-bottom: 1em;
}
.founder-main {
    margin-bottom: 1em;
}
.countryswiper-sec .thsn-ihbox-headingicon {
    display: block;
}
		.location-img-sec {
    width: 24%;
		}
		.txtbox-1 {
    font-size: 74%;
}
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
  .herosliderslides {
    min-height: 550px;
}
.heromainimg-1 {
    max-width: 100%;
}
.heromainimg-2 {
    max-width: 64% !important;
}
.section.section-2 .section-title {
    flex-wrap: wrap;
	text-align:center;
}
.col-lg-4.col-md-6.section-2-left {
    margin-bottom: 2em;
}
.section {
    padding: 40px 0;
}
.thsn-button-box {
    display: none;
}

.mobile-nav-show {
    color: #fff;
}
.section-title {
    font-size: 2em;
}
.section-5-foot-text {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.section-5-foot-text a {
    text-decoration: underline;
}
}


.choose-wrap{
    box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 5%);
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-radius: 10px 10px 10px 10px;
    border: 1px solid #f5f5f5;
    transition: all .4s ease;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}


.contactus-box-main1 .choose-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  align-content: center;
  
    font-size: 15px;

}
.contactus-box-main1 .choose-wrap{
      background-color: transparent;
    background-image: linear-gradient(135deg, #fff 0%, #fff 0%);
  transition:0.3s;
}
.contactus-box-main1 .choose-wrap:hover, .contactus-box-main1 .choose-wrap a:hover{
      background-color: transparent;
    background-image: linear-gradient(135deg, #0072bc 0%, #0098db 100%);
    color: #fff;
  transition:0.3s;
}
.contactus-box-main1 .choose-wrap:hover img{
      -webkit-filter: grayscale(1) brightness(3);
      filter: grayscale(1) brightness(3);
}

.choose-widget-wrap {
    padding: 2em 2em 2em 2em;
    display: flex;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
    margin-bottom: 2em;
    min-height: 174px;
}
h6.choose-heading-title {
    color: #01aca3;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 2px;
    text-align: left;
}
h2.choose-heading-title2 {
    /*color: #7cb928;*/
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1em;
    letter-spacing: 1px;
    text-align: left;
}
p.choose_para {
    font-size: 15px;
    font-weight: 400;
    /*letter-spacing: 1px;*/
    text-align: left;
    margin-top: 0;
    margin-bottom: 5%;
    color: #212529;
}
.choose-widget-container:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
.choose-widget-container:after{
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    transform: rotate(0deg);
    position: absolute0;
    content: "";
    z-index: -1;
    pointer-events: none;
}
img.attachment-full.size-full {
    /*width: 100%;
    height: 225px;
    object-fit: cover;
    border-radius: 10px 10px 10px 10px;*/

    width: 85%;
    object-fit: cover;
    vertical-align: middle;
    display: inline-block;
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    line-height: 0;
}
.col-6.choose-column {
    max-width: 40%;
}
.col-6.choose-column2 {
    max-width: 60%;
}





.ps-navigation--footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background-color: white;
  border-top: 1px solid #f0f2f5;
  display: flex;
  padding: 5px 0;
  min-height: 62px;
  box-shadow: 0px -2px 13px 0px #c8c8c8;
}

.ps-navigation--footer .ps-nav__item {
  flex: 1;
  text-align: center;
  font-size: 16px;
}

.ps-navigation--footer .ps-nav__item a {
  color: #1ebeb6;
  display: block;
  width: auto;
  height: 25px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ps-navigation--footer .ps-nav__item i {
  font-weight: 600;
}

.ps-navigation--footer .ps-nav__item .badge {
  position: absolute;
  top: 4px;
  right: 2px;
  width: 18px;
  height: 18px;
  font-size: 9px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #103178;
  color: white;
}

.ps-navigation--footer .ps-nav__item #close-menu {
  display: none;
}

.ps-navigation--footer .ps-nav__item.active #close-menu {
  display: inline-flex;
}

.ps-navigation--footer .ps-nav__item.active #open-menu {
  display: none;
}

@media (min-width: 768px) {
  .ps-navigation--footer {
    display: none;
  }
}

.ps-footer {
  padding-bottom: 55px;
}

.ps-footer__middle {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .ps-footer {
    padding-bottom: 0;
  }
}

.ps-footer--block .ps-block__title {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
  color: #103178;
  font-weight: 600;
}

.ps-footer--block .ps-block__list {
  margin-bottom: 35px;
}

.ps-footer--block .ps-block__list li {
  padding: 6px 0;
  font-size: 16px;
}

.ps-footer--block .ps-block__list li a {
  display: block;
  color: #5b6c8f;
}

.ps-footer--block .ps-block__list li a:hover {
  color: #FD8D27;
}

.ps-footer--bottom {
  margin-top: 10px;
  padding: 20px 0 40px;
  border-top: 1px solid #f0f2f5;
  margin-bottom: 2em;
}

.ps-footer--bottom p {
  height: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #103178;
}

.ps-footer--bottom .payment-light {
  display: none;
}

@media (min-width: 768px) {
  .ps-footer--bottom p {
    margin: 0;
  }
}

.ps-footer--top {
  margin-bottom: 50px;
}

.ps-footer--top .row {
  border: 1px solid #f0f2f5;
}

.ps-footer--top p {
  margin-bottom: 0;
  padding: 10px 15px;
}

.ps-footer--top .col-12:not(:last-child) {
  border-bottom: 1px solid #f0f2f5;
}

.ps-footer--top .ps-footer__link {
  color: #103178;
  font-weight: 600;
  font-size: 16px;
}

.ps-footer--top .ps-footer__link i {
  margin-right: 10px;
  font-weight: 600;
}

.ps-footer--top .ps-footer__link:hover {
  color: #FD8D27;
}

@media (min-width: 768px) {
  .ps-footer--top .col-12:not(:last-child) {
    border-right: 1px solid #f0f2f5;
    border-bottom: none;
  }
}

.ps-footer--address p {
  font-size: 16px;
  line-height: 26px;
  color: #5b6c8f;
}

.ps-footer--address p a {
  text-decoration: underline;
  font-size: 14px;
}

.ps-footer--address .ps-logo {
  margin-bottom: 30px;
}

.ps-footer--address .ps-logo img {
  max-width: 144px;
}

.ps-footer--address .ps-logo .logo-white, .ps-footer--address .ps-logo .logo-black, .ps-footer--address .ps-logo .logo-white-all, .ps-footer--address .ps-logo .logo-green {
  display: none;
}

.ps-footer--address .ps-footer__title {
  display: none;
  margin-bottom: 20px;
  color: #103178;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
}

@media (min-width: 1024px) {
  .ps-footer--address .ps-logo img {
    max-width: 144px;
  }
}

.ps-footer--contact {
  padding-top: 40px;
}

.ps-footer--contact .ps-footer__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
  color: #103178;
}

.ps-footer--contact .ps-footer__fax {
  margin-bottom: 5px;
  line-height: 36px;
  font-size: 22px;
  font-weight: 600;
  color: #103178;
}

.ps-footer--contact .ps-footer__fax i {
  color: #FD8D27;
  margin-right: 15px;
  font-size: 20px;
  font-weight: bold;
}

.ps-footer--contact .ps-footer__work {
  margin-bottom: 18px;
  padding-left: 40px;
  font-size: 14px;
  color: #5b6c8f;
}

.ps-footer--contact hr {
  margin-bottom: 18px;
}

.ps-footer--contact .ps-footer__email {
  font-weight: bold;
  color: #103178;
  font-size: 16px;
}

.ps-footer--contact .ps-footer__email i {
  margin-right: 15px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .ps-footer--contact {
    padding-top: 0;
  }
}

@media (min-width: 1280px) {
  .ps-footer--contact .ps-footer__fax {
    font-size: 24px;
  }
  .ps-footer--contact .ps-footer__fax i {
    font-size: 22px;
  }
}

.ps-footer--banner .ps-promo__banner {
  min-height: 200px;
  border-radius: 0;
  -o-object-position: left;
     object-position: left;
}

.ps-footer--banner .ps-promo__name {
  color: white;
  font-size: 40px;
}

.ps-footer--banner .ps-promo__desc {
  color: white;
  font-size: 20px;
}

@media (min-width: 768px) {
  .ps-footer--banner .ps-promo__name {
    font-size: 50px;
  }
  .ps-footer--banner .ps-promo__desc {
    font-size: 22px;
  }
}

@media (min-width: 1280px) {
  .ps-footer--banner .ps-promo__name {
    font-size: 60px;
  }
  .ps-footer--banner .ps-promo__desc {
    font-size: 24px;
  }
}

.ps-footer--1 .ps-footer--top .row {
  background-color: #f0f2f5;
}

.ps-footer--1 .ps-footer--top .col-12 {
  border-color: rgba(16, 49, 120, 0.1);
}

.ps-footer--1 .ps-footer--address {
  border-right: 1px solid #f0f2f5;
}

.ps-footer--1 .ps-footer--contact {
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .ps-footer--1 .ps-footer--contact {
    padding-bottom: 0;
  }
}

.ps-footer--2 .ps-logo {
  display: none;
}

.ps-footer--2 .ps-footer__title {
  display: block;
}

.ps-footer--2 .ps-footer--contact .ps-footer__fax i {
  display: none;
}

.ps-footer--2 .ps-footer--contact .ps-footer__work {
  padding-left: 0;
  margin-bottom: 27px;
}

.ps-footer--2 .ps-footer--contact hr {
  display: none;
}

.ps-footer--2 .ps-footer--contact .ps-footer__email {
  border-radius: 40px;
  min-width: 150px;
  display: inline-block;
  padding: 4px 25px;
  border: 1px solid #f0f2f5;
  background-color: white;
}

.ps-footer--2 .ps-footer--contact .ps-footer__email i {
  display: none;
}

.ps-footer--2 .ps-footer--top {
  border: 1px solid #f0f2f5;
}

.ps-footer--2 .ps-footer--top .row {
  border: none;
}

@media (min-width: 960px) {
  .ps-footer--2 .ps-footer__category {
    padding-bottom: 30px;
  }
}

.ps-footer--newsletter .ps-footer__title {
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #103178;
  font-weight: 600;
}

.ps-footer--newsletter p {
  font-size: 16px;
  line-height: 26px;
  color: #5b6c8f;
  margin-bottom: 20px;
}

@media (min-width: 1280) {
  .ps-footer--newsletter .ps-footer__title {
    font-size: 30px;
    line-height: 40px;
  }
}

.ps-footer--3 .ps-footer__middle {
  padding-top: 30px;
}

.ps-footer--3 .ps-footer__box {
  background-color: #f0f2f5;
  border-radius: 4px;
  margin-top: 20px;
  padding: 40px;
  margin-bottom: 45px;
}

.ps-footer--3 .ps-footer--contact {
  padding-top: 0;
}

.ps-footer--3 .ps-footer--contact .ps-footer__title {
  display: none;
}

.ps-footer--3 .ps-footer--contact .ps-footer__fax i {
  display: none;
}

.ps-footer--3 .ps-footer--contact .ps-footer__work {
  padding-left: 0;
  margin-bottom: 30px;
}

.ps-footer--3 .ps-footer--contact hr {
  display: none;
}

.ps-footer--3 .ps-footer--contact .ps-footer__email {
  background-color: white;
  padding: 5px 25px;
  border-radius: 40px;
}

.ps-footer--3 .ps-footer--address {
  padding-top: 30px;
}

.ps-footer--3 .ps-footer--address .ps-logo {
  display: none;
}

.ps-footer--3 .ps-footer--newsletter {
  padding-top: 30px;
}

@media (min-width: 768px) {
  .ps-footer--3 .ps-footer__box {
    padding: 20px 15px;
  }
  .ps-footer--3 .ps-footer--contact .ps-footer__email {
    padding: 5px 10px;
  }
  .ps-footer--3 .ps-footer--address, .ps-footer--3 .ps-footer--newsletter {
    padding-top: 0;
  }
}

@media (min-width: 960px) {
  .ps-footer--3 .ps-footer__box {
    padding: 40px;
  }
  .ps-footer--3 .ps-footer--contact .ps-footer__email {
    padding: 5px 25px;
  }
}

.ps-footer--listpage .ps-footer__list {
  margin-bottom: 35px;
}

.ps-footer--listpage .ps-footer__list li {
  padding: 6px 0;
  font-size: 16px;
}

.ps-footer--listpage .ps-footer__list li a {
  display: block;
  color: #5b6c8f;
}

.ps-footer--listpage .ps-footer__list li a:hover {
  color: #FD8D27;
}

.ps-footer--4 {
  background-color: #f0f2f5;
}

.ps-footer--4 .ps-footer--bottom {
  border-color: #d9dee8;
}

.ps-footer--4 .ps-footer--top {
  background-color: white;
}

.ps-footer--5 {
  background-color: #103178;
}

.ps-footer--5 .ps-footer--top {
  background-color: white;
}

.ps-footer--5 .ps-footer--block .ps-block__title, .ps-footer--5 .ps-footer--block .ps-block__list a {
  color: white;
}

.ps-footer--5 .ps-footer--listpage .ps-footer__list a {
  color: white;
}

.ps-footer--5 .ps-footer--bottom p, .ps-footer--5 .ps-footer__title, .ps-footer--5 .ps-footer__email {
  color: white;
}

.ps-footer--5 .ps-footer__box {
  background-color: rgba(0, 0, 0, 0.1);
  padding-bottom: 40px;
  border-radius: 4px;
  margin-bottom: 40px;
}

.ps-footer--5 .ps-footer--contact .ps-footer__fax {
  color: white;
}

.ps-footer--5 .ps-footer--contact .ps-footer__fax i {
  display: none;
}

.ps-footer--5 .ps-footer--contact .ps-footer__work {
  padding-left: 0;
  color: #9babcd;
}

.ps-footer--5 .ps-footer--contact hr {
  display: none;
}

.ps-footer--5 .ps-footer--contact .ps-footer__email {
  border: 1px solid #5b6c8f;
  padding: 4px 20px;
  border-radius: 40px;
}

.ps-footer--5 .ps-footer--contact .ps-footer__email:hover {
  background-color: white;
  color: #103178;
}

.ps-footer--5 .ps-footer--address .ps-logo {
  display: none;
}

.ps-footer--5 .ps-footer--address .ps-social__link, .ps-footer--5 .ps-footer--address p {
  color: #9babcd;
}

.ps-footer--5 .ps-footer--newsletter p {
  color: #9babcd;
}

.ps-footer--5 .ps-footer--bottom {
  border-color: #5b6c8f;
}

.ps-footer--5 .ps-footer--bottom img {
  display: none;
}

.ps-footer--5 .ps-footer--bottom .payment-light {
  display: inline-block;
}

@media (min-width: 768px) {
  .ps-footer--5 .ps-footer__box {
    padding-top: 40px;
  }
}

@media (min-width: 1280px) {
  .ps-footer--5 .ps-footer__box {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.ps-footer--8 {
  background-color: #103178;
  padding-top: 30px;
}

.ps-footer--8 .ps-footer--top .row {
  border-color: #284686;
}

.ps-footer--8 .ps-footer--top .col-12 {
  border-color: #284686;
}

.ps-footer--8 .ps-footer--top .ps-footer__link {
  color: #FD8D27;
}

.ps-footer--8 .ps-footer--bottom {
  border-color: #284686;
}

.ps-footer--8 .ps-footer--bottom img {
  display: none;
}

.ps-footer--8 .ps-footer--bottom .payment-light {
  display: inline-block;
}

.ps-footer--8 .ps-footer--bottom p {
  color: #9babcd;
}

.ps-footer--8 .ps-footer--address p, .ps-footer--8 .ps-footer--address a {
  color: #9babcd;
}

.ps-footer--8 .ps-footer--address .ps-logo img {
  display: none;
}

.ps-footer--8 .ps-footer--address .ps-logo .logo-white {
  display: inline-block;
}

.ps-footer--8 .ps-footer--contact {
  border-left: 1px solid #284686;
  padding-left: 40px;
}

.ps-footer--8 .ps-footer--contact .ps-footer__title, .ps-footer--8 .ps-footer--contact .ps-footer__fax {
  color: white;
}

.ps-footer--8 .ps-footer--contact .ps-footer__work, .ps-footer--8 .ps-footer--contact .ps-footer__email {
  color: #9babcd;
}

.ps-footer--8 .ps-footer--contact hr {
  border-color: #284686;
}

.ps-footer--8 .ps-footer--block .ps-block__title {
  color: white;
}

.ps-footer--8 .ps-footer--block .ps-block__list li a {
  color: white;
}

.ps-footer--9 .ps-footer--address .ps-logo img {
  display: none;
}

.ps-footer--9 .ps-footer--address .ps-logo .logo-black {
  display: inline-block;
}

.ps-footer--9 .ps-footer--address .ps-social__link {
  color: #222;
}

.ps-footer--9 .ps-footer--contact .ps-footer__title, .ps-footer--9 .ps-footer--contact .ps-footer__fax, .ps-footer--9 .ps-footer--contact .ps-footer__email {
  color: #222;
}

.ps-footer--9 .ps-footer--block .ps-block__title {
  color: #222;
}

.ps-footer--9 .ps-footer--bottom p {
  color: #222;
}

.ps-footer--9 .ps-footer--top .row {
  background-color: #f5f5f5;
}

.ps-footer--9 .ps-footer--top .ps-footer__link {
  color: #222;
}

.ps-footer--9 .ps-footer--top .col-12 {
  border-color: #d9dbde;
}

.ps-footer--12 {
  background-color: #333;
  padding-top: 80px;
}

.ps-footer--12 .ps-footer--address {
  border-right: 1px solid #4B4B4B;
}

.ps-footer--12 .ps-footer--address .ps-logo img {
  display: none;
}

.ps-footer--12 .ps-footer--address .ps-logo .logo-white-all {
  display: inline-block;
}

.ps-footer--12 .ps-footer--address p, .ps-footer--12 .ps-footer--address a, .ps-footer--12 .ps-footer--address .ps-social__link {
  color: white;
}

.ps-footer--12 .ps-footer--contact .ps-footer__title, .ps-footer--12 .ps-footer--contact .ps-footer__fax, .ps-footer--12 .ps-footer--contact .ps-footer__email, .ps-footer--12 .ps-footer--contact .ps-footer__work {
  color: white;
}

.ps-footer--12 .ps-footer--contact hr {
  border-color: #4B4B4B;
}

.ps-footer--12 .ps-footer--block .ps-block__title {
  color: white;
}

.ps-footer--12 .ps-footer--block .ps-block__list a {
  color: white;
}

.ps-footer--12 .ps-footer--bottom {
  border-top-color: #4B4B4B;
}

.ps-footer--12 .ps-footer--bottom p {
  color: white;
}

.ps-footer--12 .ps-footer--bottom img {
  display: none;
}

.ps-footer--12 .ps-footer--bottom .payment-light {
  display: inline-block;
}

.ps-footer--12 .ps-footer--top .ps-footer__link {
  color: white;
}

.ps-footer--12 .ps-footer--top .col-12, .ps-footer--12 .ps-footer--top .row {
  border-color: #4B4B4B;
}

.ps-footer--13 {
  background-color: #F5F5F5;
}

.ps-footer--13 .ps-footer--address .ps-logo img {
  display: none;
}

.ps-footer--13 .ps-footer--address .ps-logo .logo-green {
  display: inline-block;
}

.ps-footer--13 .ps-footer--address .ps-social__link {
  color: #333;
}

.ps-footer--13 .ps-footer--contact .ps-footer__title, .ps-footer--13 .ps-footer--contact .ps-footer__fax, .ps-footer--13 .ps-footer--contact .ps-footer__email {
  color: #333;
}

.ps-footer--13 .ps-footer--block .ps-block__title {
  color: #333;
}

.ps-footer--13 .ps-footer--bottom p {
  color: #333;
}

.ps-footer--13 .ps-footer--top .row {
  background-color: transparent;
  border-color: #D9D9D9;
}

.ps-footer--13 .ps-footer--top .ps-footer__link {
  color: #333;
}

.ps-footer--13 .ps-footer--top .col-12 {
  border-color: #D9D9D9;
}

.ps-footer--14 {
  background-color: white;
}

.validation_error{
  color: #f44336;
}

.navbar .dropdown ul a{
    color:#000;
}

.service-box img{
    height:226px;
}