/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #ce1212;
  --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: #ec2727;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 40px 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: 0;
}

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

.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
--------------------------------------------------------------*/
.page-banner{
  background: #cfcfcf;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  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: #ec2727;
  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;
  }
}
/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
#topbar {
    padding: 6px 0;
    background: #00000030;
    display: block;
    /*! text-align: right; */
}
#topbar .contact-details a {
  color: #000;
  padding-right: 15px;
  font-size: 15px;
}
.contact-details a::after {
  content: "|";
}
.single-social::after {
  content: "|";
  color: #000;
}
#topbar .top-nav a{
  color: #000;
  font-size: 15px;
  padding: 0 0;
}
.passcode-verification h2 {
  font-size: 20px;
  font-weight: bold;
  padding: 15px 0;
}
.passcode-content input{
  width: 100%;
  padding: 6px;
}
.passcode-button-sec {
  padding: 28px 0 15px 0;
}
.passcode-button-sec .read-more-btn{
  padding: 10px 20px!important;
  color: #fff !important;
  background: red;
}
.read-more-btn::after {
  content: none !important;
}
.w3-modal-content{
  padding: 30px!important;
  width: 400px!important;
  background: #132148!important;
  color: #fff!important;
}
.top-nav a::after {
  content: "|";
  color: #000;
  padding: 0 6px;
}
.content-none::after {
  content: none !important;
}
.social-media-details .fa{
  color: #ec1c24;
}
.contact-details .fa{
  color: #ec1c24;
  padding-right: 8px;
}
.w3-modal{
  z-index: 999!important;
}
.w3-container span {
    font-size: 13px !important;
    font-family: system-ui;
    ;
}
@media(max-width: 767px){
  #topbar {
    padding: 6px 0;
    background: #00000030;
    text-align: center;
  }
}
.w3-modal-content{
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}
/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 6px solid #e71d24;
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

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

.header .logo img {
  max-height: 75px;
  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-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;
  background: var(--color-primary);
  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);
}

section {
  /*! scroll-margin-top: 90px; */
}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
#navbar li .fa {
  width: 100%;
  font-size: 22px;
  color: #e71d24;
  padding: 8px 0;
  text-align: center;
  margin: 0 auto;
}
.mobile-none {
  display: block!important;;
}
.mobile-block {
  display: none!important;;
}
@media(max-width: 1279px){
  .mobile-none {
    display: none!important;;
  }
  .mobile-block {
    display: inline!important;;
  }
  #navbar li .fa {
    width: auto;
    font-size: 22px;
    color: #e51f26;
    padding: 0;
    text-align: left;
    margin: 0 auto;
  }
  .navbar span{
    padding-left: 8px;
  }
}
/*--------------------------------------------------------------
# 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 > ul > li:hover .fa{
    color: #fff!important;;
  }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 400;
    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 li a:hover .fa{
    color: #fff;
  }

  .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: #fff;
    background: #132148;
    padding: 8px;
  }
  .navbar a:hover .fa, .navbar .active, .navbar .active:focus .fa, .navbar li:hover > a{
    color: #fff!important;;
  }

  .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:hover .fa{
    color: #fff;
  }
  .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: 8px 20px;
    font-family: var(--font-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    color: #000;
    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: #fff;
    background: #000;
  }

  .navbar a:hover .fa,
  .navbar li:hover>a .fa{
    color: #fff!important;
  }

  .navbar li{
    padding: 8px 0;
  }

  .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: 99;
    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;
  }
}

/*--------------------------------------------------------------
# slider
--------------------------------------------------------------*/
.slider{
  padding: 0;
}
#rev_slider_3_1_wrapper .zeus.tparrows {
	cursor: pointer;
	min-width: 70px;
	min-height: 70px;
	position: absolute;
	display: block;
	z-index: 1000;
	border-radius: 50%;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.1)
}

#rev_slider_3_1_wrapper .zeus.tparrows:before {
	font-family: 'revicons';
	font-size: 20px;
	color: #ffffff;
	display: block;
	line-height: 70px;
	text-align: center;
	z-index: 2;
	position: relative
}
.tparrows.tp-leftarrow::before {
  content: '\e824';
}

#rev_slider_3_1_wrapper .zeus.tparrows.tp-rightarrow::before {
  content: '\e825';
}
#rev_slider_3_1_wrapper .zeus.tparrows.tp-leftarrow:before {
	content: '\e824'
}

#rev_slider_3_1_wrapper .zeus.tparrows.tp-rightarrow:before {
	content: '\e825'
}

#rev_slider_3_1_wrapper .zeus .tp-title-wrap {
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	position: absolute;
	opacity: 0;
	transform: scale(0);
	-webkit-transform: scale(0);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	border-radius: 50%
}

#rev_slider_3_1_wrapper .zeus .tp-arr-imgholder {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background-position: center center;
	background-size: cover;
	border-radius: 50%;
	transform: translatex(-100%);
	-webkit-transform: translatex(-100%);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s
}

#rev_slider_3_1_wrapper .zeus.tp-rightarrow .tp-arr-imgholder {
	transform: translatex(100%);
	-webkit-transform: translatex(100%)
}

#rev_slider_3_1_wrapper .zeus.tparrows:hover .tp-arr-imgholder {
	transform: translatex(0);
	-webkit-transform: translatex(0);
	opacity: 1
}

#rev_slider_3_1_wrapper .zeus.tparrows:hover .tp-title-wrap {
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1
}
/* #rev_slider_3_1_wrapper .zeus.tparrows {
	cursor: pointer;
	min-width: 70px;
	min-height: 70px;
	position: absolute;
	display: block;
	z-index: 1000;
	border-radius: 50%;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.1)
}

#rev_slider_3_1_wrapper .zeus.tparrows:before {
	font-family: 'revicons';
	font-size: 20px;
	color: #ffffff;
	display: block;
	line-height: 70px;
	text-align: center;
	z-index: 2;
	position: relative
}

#rev_slider_3_1_wrapper .zeus.tparrows.tp-leftarrow:before {
	content: '\e824'
}

#rev_slider_3_1_wrapper .zeus.tparrows.tp-rightarrow:before {
	content: '\e825'
}

#rev_slider_3_1_wrapper .zeus .tp-title-wrap {
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	position: absolute;
	opacity: 0;
	transform: scale(0);
	-webkit-transform: scale(0);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	border-radius: 50%
}

#rev_slider_3_1_wrapper .zeus .tp-arr-imgholder {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background-position: center center;
	background-size: cover;
	border-radius: 50%;
	transform: translatex(-100%);
	-webkit-transform: translatex(-100%);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s
}

#rev_slider_3_1_wrapper .zeus.tp-rightarrow .tp-arr-imgholder {
	transform: translatex(100%);
	-webkit-transform: translatex(100%)
}

#rev_slider_3_1_wrapper .zeus.tparrows:hover .tp-arr-imgholder {
	transform: translatex(0);
	-webkit-transform: translatex(0);
	opacity: 1
}

#rev_slider_3_1_wrapper .zeus.tparrows:hover .tp-title-wrap {
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1
} */

/*--------------------------------------------------------------
Notice
--------------------------------------------------------------*/
.notice{
  padding: 10px;
  background: #000;
  color: #fff;
}
.notice-sec ul{
  padding: 0;
  margin: 0;
}
.notice-sec li {
  display: inline-block;
  padding: 0 15px;
}
.notice-sec li p{
  padding: 0;
  margin: 0;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Facilities
--------------------------------------------------------------*/
/* .about-facilities{
  background: #4b823d;
} */
.speciality-details .fa {
  padding-right: 8px;
  color: #f3851f;
}
.speciality-details h5 {
  font-size: 14px;
} 
.speciality-content,
.about-details p{
  max-height: 215px;
  overflow: hidden;
}
.about-details{
  background: #132148;
  color: #fff;
  padding: 20px;
  text-align: justify;
}
.speciality-details .section-title h2,
.about-details .section-title h2 {
  color: #fff;
}
.speciality-details {
    background: #e61c24;
    padding: 14px;
    color: #fff;
    text-align: justify;
    height: auto;
}
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.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;
}

.gallery .img-fluid {
  max-width: 100%;
  height: auto;
  padding: 3px;
  transition: ease all .5s;
}
.gallery .img-fluid:hover {
  opacity: .5;
  transform: scale(1.5);
  overflow: hidden;
  transition: ease all .5s;
}

.glightbox {
  display: block;
  overflow: hidden;
  transition: ease all .5s;
}
@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);
  }
}
.button-sec{
  padding: 35px 0 15px 0;
  text-align: center;
}

/*--------------------------------------------------------------
Video Gallery
-------------------------------------------------------------*/
.video-gallery {
  background: url(../img/banner.jpg) no-repeat;
  padding: 0;
  background-size: cover;
  background-attachment: fixed;
}
.video-gallery .overlay{
  background: rgba(225, 50, 55, 0.89);
  padding: 45px;
}
.video-gallery .section-title h2{
  color: #fff;
}
/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/
.section-title{
  padding-bottom: 30px;
}
.section-title h2 {
  font: 700 32px 'Raleway', sans-serif;
  color: #132148;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.section-title .line::after {
  content: "";
  width: 50px;
  height: 7px;
  background: #4c6fd0;
  margin: 0 auto;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  position: absolute;
  left: 0;
  right: 0;
  top: -4px;
}
.section-title .line {
  width: 165px;
  height: 1px;
  background: #c5c5c5;
  margin: 0 auto;
  position: relative;
}
.section-title p {
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
/*--------------------------------------------------------------
Course
--------------------------------------------------------------*/
.course-details-sec {
  padding: 15px;
  background: #ffffff8c;
  box-shadow: 0 0 10px rgb(0 0 0 / 65%);
}
.course-details {
  padding-bottom: 20px;
}
.course-title{
  padding: 8px;
  text-align: center;
  margin: 0;
}
.course-title h2{
  font-size: 22px;
  color: #fff;
}
.course-content{
  background: #ee2e3324;
}
.single-corse-list{
  padding: 0 0 10px 0;
}
.single-corse-list h4 {
  font-size: 16px;
  padding: 10px;
}
.single-corse-list .fa {
  padding-right: 8px;
  color: #c86064;
}
.single-corse-list:nth-child(even){
  background-color: #f2f2f2;
}
.background-grey {
  background: #0000001a;
}
.background-red{
  background: #ee2e33;
}
.background-blue {
  background: #0a0a99;
}
.background-green {
  background: #096409;
}
.background-orange {
  background: #df5f05;
}
.background-black{
  background: #000;
}
/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.feature-icon{
  padding-bottom: 10px;
  transition: ease all .5s;
}
.feature-icon .fa {
  padding: 20px 22px;
  background: #e71d24;
  color: #fff;
  font-size: 25px;
  border-radius: 50%;
  transition: ease all .5s;
}
.feature-details {
    height: 154px;
    overflow: hidden;
}
.feature-details h3 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 0;
}
.feature-details p {
  font-size: 14px;
  overflow: hidden;
}
.read-more-btn {
  font-size: 15px;
  background: #000;
  padding: 8px 30px;
  color: #fff;
  font-weight: 500;
  transition: ease all .5s;
}
.read-more-btn:hover {
  font-size: 15px;
  background: #e71d24;
  padding: 8px 30px;
  color: #fff;
  font-weight: 500;
  transition: ease all .5s;
}
.single-feture-box{
  padding: 10px 0;
  transition: ease all .10s;
}
.single-feture-box:hover{
  margin-top: -5px;
  transition: ease all .5s;
}
.single-feture-box:hover .feature-icon .fa{
  background: #132148;
  transition: ease all .5s;
}
.single-feture-box:hover .feature-details h3{
  color: #eb8020;
}
/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.news .section-title h2{
  color: #fff;
}
.single-new-details ul{
  display: block;
}
.single-new-details li{
  display: inline-block;
}
.single-new-details-content h4{
  font-size: 16px;
  color: #fff;
}
.single-new-details li p{
  font-size: 12px;
  color: #fff;
  padding: 20px 0;
}
.date{
  background: #74777d;
  padding: 10px 16px;
  border-radius: 50%;
  text-align: center;
  border: 5px solid #ffffff00;
}
.single-new-details{
  transition: ease all .5s;
}
.single-new-details:hover .date{
  background: #4b5c8a;
  border: 5px solid #ffffff2e;
  padding: 10px 16px;
  border-radius: 50%;
  text-align: center;
  transition: ease all .5s;
}
.single-new-details:hover p{
  margin-top: -10px;
  transition: ease all .5s;
}
.date span {
  display: block;
  color: #fff;
}
.date h4{
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}
.month {
  font-size: 14px;
}
.year{
  font-size: 18px;
  font-weight: bold;
}
.f-md-right {
  float: right;
}
@media (max-width: 991px){
  .single-new-details{
    text-align: center;
    transition: ease all .5s;
  }
  .f-md-right {
    float: none;
  }
  .single-new-details li{
    padding: 10px 0;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials{
  padding: 0;
  background: url(../img/banner3.jpg) no-repeat;
  background-size: cover;
}
.testimonials .overlay{
  background: rgba(41, 7, 8, 0.77);
  padding: 45px;
}
.testimonials .section-title h2{
  color: #fff;
}
.single-testimonials-sec {
  padding: 15px;
  background: #132148;
}
.single-testimonials-img img {
  width: 100px!important;
  border: 5px solid #fff;
  box-shadow: 1px 6px 11px 10px #dfd9d9bd;
  position: absolute;
  margin-top: -1px;
  z-index: 99;
}
.single-testimonials-description{
  padding: 45px;
  background: #e71d24;
  margin-top: 0px;
  margin-left: 69px;
  position: relative;
  color: #fff;
}
.testimonials .owl-nav{
  display: none;
}
.testimonials .owl-dots{
  padding: 25px 0 0 0;
}
.testimonials .owl-theme .owl-dots .owl-dot span {
  width: 22px!important;
  height: 11px!important;
  margin:5px 7px;
  background: #132148;
  display:block;
  -webkit-backface-visibility:visible;
  transition:opacity .2s ease;
  border-radius:30px;
  border: 2px solid #e71d24;
 }
 .testimonials .owl-theme .owl-dots .owl-dot.active span, 
 .testimonials .owl-theme .owl-dots .owl-dot:hover span{
  background: #e71d24;
 }
/* .testimonials .owl-dot.active{
  width: 22px!important;
  height: 11px!important;
  margin:5px 7px;
  background: #132148;
  display:block;
  -webkit-backface-visibility:visible;
  transition:opacity .2s ease;
  border-radius:30px;
  border: 2px solid #e71d24;
} */
/*--------------------------------------------------------------
# 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: #f05656;
  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);
  }
}


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

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

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

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

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

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

.contact-form .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-form .php-email-form input,
.contact-form .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact-form .php-email-form input:focus, 
.contact-form .php-email-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 1px 1px 16px -3px var(--color-primary);
}

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

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

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

.contact-form .php-email-form button[type=submit]:hover {
  background: #ec2727;
}
@media (max-width: 360px){
  .single-icon-details a{
    display: block;
  }
  .single-icon-details p{
    margin-bottom: 0;
  }
}

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

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

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

.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: #4f4f5a;
  font-weight: 400;
  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: #fff;
  background: var(--color-primary);
  box-shadow: 0 8px 28px rgba(206, 18, 18, 0.2);
}

.hero .btn-book-a-table:hover {
  background: rgba(206, 18, 18, 0.8);
  box-shadow: 0 8px 28px rgba(206, 18, 18, 0.45);
}

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-top {
  font-size: 14px;
  padding: 0;
  background: url(../img/banner.jpg)no-repeat;
  background-attachment: fixed;
  color: rgba(255, 255, 255, 0.7);
  background-position: center;
}
.footer-top .overlay{
  padding: 30px;
  background-color: #1f1f24d9;
}
.footer-logo img{
  width: 100%;
  padding: 15px 0;
}
.footer-border{
  border: 1px solid;
  width: 57px;
}
.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h5 {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

.footer-top .footer-border{
  border: 1px solid #e71d24;
  width: 57px;
}

.contact-link{
  padding: 15px 0;
}
.footer-contact a,
.footer-menu a {
  display: block;
  line-height: 2.1;
  color: #fff;
  font-weight: 400;
}
.footer-social a {
  padding: 6px;
}
.footer-social .bi {
  padding: 8px 12px;
  background: #ce1212;
  border-radius: 50%;
  color: #fff;
}
.footer-bottom {
  background: #000;
  padding: 8px;
  color: #fff;
  font-size: 14px;
}
.credits a{
  color: #fff;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.single-gallery-sec img{
  width: 100%;
}
.single-gallery-sec {
  position: relative;
  width: 100%;
}

.gallery-image {
  display: block;
  width: 100%;
  height: auto;
}

.single-gallery-sec .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #008CBAD1;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.single-gallery-sec:hover .overlay {
  height: 100%;
}

.single-gallery-sec .text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.single-gallery-sec .gallery-img-description{
  padding: 38px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  margin: 0 auto;
}
.gallery-img-description h3 {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 8px;
  color: #fff;
}
.single-gallery-categories {
  padding: 10px 0;
}
.view-more-btn:hover {
  font-size: 14px;
  background: #000;
  padding: 8px 22px;
  color: #fff;
  font-weight: 500;
  transition: ease all .5s;
}
.view-more-btn {
 font-size: 14px;
 background: #49813c;
 padding: 8px 22px;
 color: #fff;
 font-weight: 500;
 transition: ease all .5s;
}
.single-video {
  padding: 0 0 10px 0;
}
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-img img{
  width: 100%;
}
/*--------------------------------------------------------------
# Download
--------------------------------------------------------------*/
.download-icon .fa{
  font-size: 30px;
}
.download-icon .fa {
  font-size: 30px;
  border: 2px solid;
  padding: 8px;
  border-radius: 50%;
}
.download-content{
  padding: 8px;
}
.single-download-sec {
  padding: 10px;
}
.single-download-content {
  border: 2px solid;
  padding: 8px;
  transition: ease all .5s;
}
.download-content h5{
  padding-left: 10px;
}
.single-download-content:hover {
  border: 2px solid #ce1212;
  background: #ce1212;
  transition: ease all .5s;
}
.single-download-content:hover .fa,
.single-download-content:hover h5 {
  color: #fff;
}
@media (max-width: 767px){
  .download-icon {
    text-align: center;
  }
  .download-content{
    text-align: center;
  }
}
/*------- Course ---------------*/
.course-details-page {
  padding: 60px 0;
}
/* Style the tab */
.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #ec1921;
  width: 30%;
  height: 100%;
}

/* Style the buttons inside the tab */
.tab button {
  display: block;
  background-color: #ec1921;
  color: #fff;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #132148;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #132148;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  width: 70%;
  border-left: none;
  height: 100%;
}
.course-info {
  padding: 0 15px;
  overflow-x: auto;
}
.course-info h2{
  text-align: left;
  padding-bottom: 0;
  margin-bottom: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}

th, td {
  text-align: left;
  padding: 8px;
}
.course-info th {
  background-color: #132148 !important;
  color: #fff;
}

tr:nth-child(even){background-color: #f2f2f2}
@media (max-width: 767px){
  .tab {
    float: left;
    border: 1px solid #ccc;
    background-color: #ec1921;
    width: 100%;
    height: 100%;
  }
  .tabcontent {
    float: left;
    padding: 12px 0;
    width: 100%;
    border-left: none;
    height: 100%;
  }
  .course-info {
    padding: 0 15px;
    overflow-x: auto;
  }
}
/*------- Suggestion Box -------*/
.form-select {
  border-radius: 0!important;
  padding: 11px;
}
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 1px 1px 16px -3px var(--color-primary);
  border-radius: 0;
}
/*-------- Contact Us ----------*/
.single-icon {
  padding: 11px;
  text-align: center;
  background: #000;
  width: 66px;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  margin: 0 auto;
}
.single-contact-details {
  padding: 15px;
  background: #d02727;
  height: 100%;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}
.single-icon-details{
  padding: 10px 0;
  transition: ease all .5s;
}
.single-contact-details:hover{
  padding: 15px;
  background: rgb(40, 9, 107);
  height: 100%;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  transition: ease all .5s;
}
.single-icon .fa {
  padding: 0;
}
.single-icon-details p a {
  color: #fff;
}

/*----------- Student --------*/
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  /* padding: 20px; */
  /* background: #ce1212; */
  border-radius: 4px;
  color: #000;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  color: #fff;
  background: red;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  padding: 10px;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
}

.why-us .accordion-list span {
  color: #47b2e4;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list .icon-show,
.why-us .accordion-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 8px;
  top: 8px;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #fff;
}

.why-us .accordion-list a.collapsed:hover {
  color: #fff;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

.why-us-content {
  background:white;
  padding: 10px 15px;
  color: #fff;
}

.why-us-content .fa {
  color: red;
  padding-right: 10px;
  font-size: 16px;
}
.why-us-content h5 {
  font-size: 16px;
}
.accordion-list li a .fa {
  color: #fff;
}
.why-us-content .form-group {
  padding: 8px 0;
}
.why-us button {
  background: #132148;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.why-us button:hover {
  background: #cf3f45;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

@media(max-width: 991px) {
    .speciality-content, .about-details p {
        max-height: 100%;
        overflow: hidden;
    }
}

.rec_IMG {
    width: 148px;
    height: auto;
}




