body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #666;
  font-size:13px;
}

a {
  color: #fd6637;
  text-decoration: none;
}
/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #ff5806; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ff3b06; 
}
a:hover {
  color: #fd6637;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

.anchor{
  padding-top: 50px; 
  display: block; 
  float:left;
  
}

input:focus{box-shadow:0 0 0 4px rgba(244, 80, 29, .3)!important; border:1px solid #ffc0ad !important }
textarea:focus{box-shadow:0 0 0 4px rgba(244, 80, 29, .3)!important; border:1px solid #ffc0ad !important }
select:focus{box-shadow:0 0 0 4px rgba(244, 80, 29, .3)!important; border:1px solid #ffc0ad !important }

.anchor h6{
  color:#000; 
  margin-bottom:20px;
}

.anchor p{
  font-size:14px; 
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1a1814;
}


html {
  scroll-behavior: smooth;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid #fd6637;
}

.back-to-top i {
  font-size: 28px;
  color: #fd6637;
  line-height: 0;
}

.back-to-top:hover {
  background: #fd6637;
  color: #1a1814;
}

.back-to-top:hover i {
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fd6637;
}

#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .languages ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fd6637;
}

#topbar .languages ul a {
  color: white;
}

#topbar .languages ul li + li {
  padding-left: 10px;
}

#topbar .languages ul li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.5);
  content: "/";
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 99;
  padding: 20px 0 10px 0;
  top: 32px;
}

#header.header-scrolled {
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid #37332a;
  z-index:99999999999
}

#header.header-scrolled .logo{margin-top:-10px;}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  margin-top:-35px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 60px;
}

@media (max-width:768px) {
#topbar {height: 0px;}
#header .logo{margin-top:0px}
}


/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.my-account {
  margin: 0 0 0 15px;
  border: 2px solid #fff;
  color: #000;
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 14px;
  background:#FFF;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
}

.my-account:hover {
  background:#F30;
  border: 2px solid #F30;
  color: #fff;
}

@media (max-width: 992px) {
  .my-account {
    margin: 0 15px 0 0;
    padding: 7px 10px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 10px 20px;
  color: #cacaca;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 15px;
}

.navbar a img{margin-right:5px; width:16px;}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
  color: #444444;
}

.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: #fd6637;
}

.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #1a1814;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #fd6637;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #fd6637;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: relative;
  padding: 0;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 0px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 98px;
  }
}

@media (max-width: 768px) {
  #hero .container {
    padding-top: 0px;
  }
  
    #hero .container .row .col-lg-12  {
    margin-top: -225px;
  }
  
}


#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;

}

#hero h6 {
  color:#FFF;
  font-weight:100
}

#hero h1 span {
  color: #fff;
  font-weight:100;
}

#hero h2 {
  color: #eee;
  margin-bottom: 10px 0 0 0;
  font-size: 22px;
}
#hero h6 span{
font-size: 48px;
  font-weight: 700;
  line-height: 36px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
#hero .btns {
  margin-top: 20px;
}

#hero .btn-menu, #hero .btn-book {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 3px;
  transition: 0.3s;
  line-height: 1;
  color: white;
  border: 1px solid #ffffff;
}

#hero .btn-menu:hover, #hero .btn-book:hover {
  background: #F30;
  border:1px solid #F30;
  color: #fff;
}

#hero .btn-book {
  margin-left: 15px;
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#fd6637 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#hero .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);
}

#hero .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(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid #fd6637;
  transform: scale(20);
}

#hero .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;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero .play-btn {
    margin-top: 30px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: auto;
  }
  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 24px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 17px;
    line-height: 24px;
  }
  
  #header {top:0px}
}


/*--------------------------------------------------------------
# Hero Section - inner
--------------------------------------------------------------*/
#hero1 {
  width: 100%;
  height: 100%;
  background-size: cover;
  position: relative;
  padding: 0;
}
#hero1 .setioonm{
 background:linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 10%, rgba(0, 212, 255, 0) 40%);
 position:relative;
 width:100%;
}
#hero1 .container {
  padding-top:250px;
  position:relative;
  }


@media (max-width: 992px) {
  #hero1 .container {
    padding-bottom: 0px;
  }
}

#hero1 h6 {
  color:#FFF;
}

#hero1 h6 span i {
  color:#ffba00;
  font-size:16px;
  margin-right:0px;
}

#hero1 h1 span {
  color: #fff;
  font-weight:100;
}

#hero1 h2 {
  color: #eee;
  margin-bottom: 10px 0 0 0;
  font-size: 22px;
}
#hero1 h6{font-size:18px}
#hero1 h6 span{
font-size: 48px;
  font-weight: 700;
  line-height: 18px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.hero_price{
    padding:42px 15px; position:relative; height:95px; text-align:center
}

.hero_price p{
margin:auto !important;
}
@media (max-width: 768px) {
  #hero1 h6{font-size:15px}
}

@-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;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 55px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #1a1814;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #fd6637;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #1d1b16;
  margin-top: 110px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 98px;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.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: #37332a;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
  .hero_price {
  width:auto
  }
}

.scroll_arow {
  top:50%;
  position:absolute;    
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background-size: cover;
  position: relative;

}

.about:before {
  content: "";
  background: #fff;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .about-img {
  position: relative;
  transition: .5s;
}

.about .about-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.about .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: '';
  border-left: 5px solid #fd6637;
  border-top: 5px solid #fd6637;
  transition: .5s;
}

.about .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: '';
  border-right: 5px solid #fd6637;
  border-bottom: 5px solid #fd6637;
  transition: .5s;
}

.about .about-img:hover {
  transform: scale(1.03);
}

.about .about-img:hover::before {
  left: 10px;
  top: 10px;
}

.about .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color:#000;
}

.about .content h1 {
  font-weight: 100;
  font-size: 36px;
  color:#000;
  text-align:right
}

/*.about .content{
 background:url(../img/ph-icon.png) no-repeat -50px 0; 
}*/

.about .content img{position:absolute; left:-80px; width:164px; top:-40px; }

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #fd6637;
}

.about .content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .about {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  background: #1a1814;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #fd6637;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.8);
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #fd6637;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
}

.menu #menu-flters li:hover, .menu #menu-flters li.filter-active {
  color: #fd6637;
}

.menu #menu-flters li:last-child {
  margin-right: 0;
}

.menu .menu-item {
  margin-top: 50px;
}

.menu .menu-img {
  width: 70px;
  border-radius: 50%;
  float: left;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.menu .menu-content {
  margin-left: 85px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................"
 "...................................................................."
 "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #bab3a6;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
  padding-right: 10px;
  background: #1a1814;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: white;
  transition: 0.3s;
}

.menu .menu-content a:hover {
  color: #fd6637;
}

.menu .menu-content span {
  background: #1a1814;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
  color: #fd6637;
}

.menu .menu-ingredients {
  margin-left: 85px;
  font-style: italic;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: #fff;
  border-radius: 0;
  border-right: 2px solid #fd6637;
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: #fd6637;
}

.specials .nav-link.active {
  color: #1a1814;
  background: #fd6637;
  border-color: #fd6637;
}

.specials .nav-link:hover {
  border-color: #fd6637;
}

.specials .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.specials .details p {
  color: #aaaaaa;
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
}

#pop_holiday {background:#f3f3f3}

#pop_holiday h4 {font-size:2.5rem; line-height:35px;}
#pop_holiday h4 span {font-size:1.8rem; }

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: #fff;
  position: relative;
  text-align:center
}

.events::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.section-title {
  text-align:center;
}
.section-title .headinng {
  color: #000;
  font-size:3rem;
  text-transform:none;
  font-weight:600;
}
  
.section-title .headinng span {
  color: #000;
  font-size:48px;
  text-transform:none;
  border-bottom:4px solid #F30;
  border-image: linear-gradient(to right, #f85b35 80px, rgba(0,0,0,0) 80px);
  border-image-slice: 1;
  font-weight:100;
  width:100% !important;
}

.section-title p {
  color: #000;
  font-size:16px;
  font-weight:500;
  font-family: "Poppins", sans-serif;
  margin-top:25px;
}
    
.events .container {
  position: relative;
}

.event-section {
  float:left;
  width:100%;
  position:relative;
}

.event-section img.main_image{max-height:450px; object-fit:cover}

.event-section img {
  border-radius:3px;
}

.event-btn {
  position:absolute;
  z-index:9999999;
  bottom:20px;
  right:20px;
  background:#F30;
  font-weight:bold;
  color:#FFF;
}

.event-btn:hover {
  background:#c40909;
  border:1px solid #c40909;
  color:#FFF
}

@media (max-width: 768px) {
 .section-title .headinng {font-size:1.5rem}    
 .section-title .headinng span {font-size:1.5rem}
    
}

@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}

.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.events .event-item {
  color: #fff;
}

.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #fd6637;
}

.events .event-item .price {
  font-size: 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid #fd6637;
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #fd6637;
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fd6637;
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
}

.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .error-message br + br {
  margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.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 #fd6637;
  border-top-color: #1a1814;
  -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;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}

.book-a-table .php-email-form input::-webkit-input-placeholder, .book-a-table .php-email-form textarea::-webkit-input-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input::-moz-placeholder, .book-a-table .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input::placeholder, .book-a-table .php-email-form textarea::placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input:focus, .book-a-table .php-email-form textarea:focus {
  border-color: #fd6637;
}

.book-a-table .php-email-form input {
  height: 44px;
}

.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}

.book-a-table .php-email-form button[type="submit"] {
  background: #fd6637;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type="submit"]:hover {
  background: #d3af71;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.2);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: white;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #d3af71;
  font-size: 26px;
}

.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;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #26231d;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fd6637;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #454035;
  border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# pop_holiday
--------------------------------------------------------------*/
.pop_holiday .member {
  text-align: center;
  margin:20px 25px;
  background: #343a40;
  position: relative;
  overflow: hidden;
  border-radius:5px;
  
}

.pop_holiday .member1 {
  text-align: center;
  margin:10px !important;
  background: #343a40;
  position: relative;
  overflow: hidden;
  border-radius:5px;
  
}


.pop_holiday .member img {
border-radius:5px;    
background:#FFF;
width:100%;
max-height:350px;
}

.pop_holiday .member .member-info {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
   background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 10%, rgba(0, 212, 255, 0) 30%);
  opacity: 1;
  transition: 0.4s;
}

.pop_holiday .member .member-info-content {

  text-align:center;
}

.pop_holiday .member .member-info-content h4 {
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  position:absolute;
  text-align:left;
  top:10px;
  left:10px;
  transition: top 0.4s;
}

.pop_holiday .member .member-info-content h4 span {
  font-weight:100;
  font-size:20px;
  display:block;    
  margin-left:0px;
}

.pop_holiday .member .member-info-content p {
  display: block;
  font-size: 14px;
  color: #fff;
  padding-top:10px;
  position:absolute;
  bottom:0px;
  transition: bottom 0.4s;
  width:100%;
  text-align:center;
}

.pop_holiday .member .member-info-content p::before { height:1px; background:#d8d8d8; position:absolute; opacity:.6; top:0; margin:auto; width:50%; left:25%; right:25%; text-align:center; content:''}

.pop_holiday .member .member-info-content p span{
  font-size:24px;
  font-weight:600;    
}

.pop_holiday .member:hover .member-info-content h4 {
  top: 20px;
  transition: top 0.4s;

}

.pop_holiday .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: #fd6637;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #bab3a6;
}

.contact .info .open-hours, .contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  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 #fd6637;
  border-top-color: #1a1814;
  -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;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}

.contact .php-email-form input::-webkit-input-placeholder, .contact .php-email-form textarea::-webkit-input-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::placeholder, .contact .php-email-form textarea::placeholder {
  color: #a49b89;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #fd6637;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #fd6637;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #d3af71;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.search_result .member {
  text-align: center;
  margin:10px 10px;
  background: #343a40;
  position: relative;
  overflow: hidden;
  
}

.search_result .member img {
background:#FFF;
min-height:380px;
max-height:380px;
object-fit:cover;
}

.search_result .member .member-info {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
   background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 212, 255, 0) 50%);
  opacity: 1;
  transition: 0.4s;
}

.search_result .member .member-info-content {

  text-align:center;
}

.search_result .member .member-info-content h6 {
  font-weight: 500;
  font-size: 13px;
  color: #0a367d;
  position:absolute;
  text-align:left;
  background:#FFF;
  text-transform:uppercase;
  padding:6px 12px;
  border-right:2px solid #F30;
  top:10px;
  left:0px;
  transition: top 0.4s;
}




.search_result .member .member-info-content p {
  display: block;
  font-size: 18px;
  color: #fff;
  position:absolute;
  bottom:0px;
  transition: bottom 0.4s;
  font-weight:bold;
  width:100%;
  padding:0 10px;
  text-align:left;
}

.search_result .member .member-info-content p i {
  color:#CC0;
  font-size:15px;
}

.srch_rslt_item div {
  padding-left:0px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0e1a29;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #0e1a29;
  padding: 60px 0 30px 0;
}

#footer .container {
border-bottom: 1px solid #3b4551;    
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-info p {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-family:  "Poppins", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #28251f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #fd6637;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fd6637;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  font-size:12px;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #fd6637;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #28251f;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  border: 1px solid #454035;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  background: #28251f;
  color: white;
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #fd6637;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #d3af71;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.footer-info h4 {
  text-transform:uppercase;
  font-weight:normal !important;
}

.ftr-call-btn {
  background:url(../img/call-icon.png) left no-repeat;
  padding-left:40px;    
}

.ftr-call-btn h6 {text-transform:uppercase}
.ftr-call-btn h2 {font-weight:700}

@media (max-width:786px) {
.ftr-call-btn {background:url(../img/call-icon.png) 10px no-repeat; padding-left:55px;}
.section-title {padding-bottom:20px}
}

.cont-footer li div{
  float:left;    
}

.cont-footer li {
  padding-bottom:36px; font-size:12px;
}

.subsc_btn {
  background:#f3522c;
  color:#FFF;
  border:1px solid #FFF;
  border-radius:0px !important;
}

.subsc_btn:hover{
  background:#333;
  color:#FFF;
}

.subsc_inp{border-radius:0px; margin-right:4px; font-size:.8rem !important; border:none !important}

.subsc_inp.active{border:none; outline:none}

.social-links i{font-size:24px}

.ftr-text {
    padding:20px 0;
}

.search-top {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding: 20px 0;
    background: rgba(0, 0, 0, .6);
    z-index: 999;
    width:100%;
}

.carousel-indicators {
    bottom: 0;
}
.carousel-control.right,
.carousel-control.left {
    background-image: none;
}
.carousel-item {
    min-height: 260px;
    height: 100%;
    width:100%;
}
.carousel-caption h3 {

    color:#000
}
.carousel-caption p {
    font-size:13px;
    color:#000
}
.carousel .icon-container {
    display: inline-block;
    text-align: center;
}
.icon-container img {
  margin:20px 0;
}

/* Animation delays */
.carousel-caption h3:first-child {
    animation-delay: 0s;
}
.carousel-caption h3:nth-child(2) {
    animation-delay: 0s;
}
.carousel-caption button {
    animation-delay: 0s;
}
.carousel-control-next, .carousel-control-prev .bx{
    color:#000 !important;
    font-size:24px;}
    
    .MultiCarousel { float: left; overflow: hidden; padding: 15px; width: 100%; position:relative; }
    .MultiCarousel .MultiCarousel-inner { transition: 1s ease all; float: left; }
    .MultiCarousel .MultiCarousel-inner .item { float: left; width:100%}
    .MultiCarousel .MultiCarousel-inner .item > div { text-align: center; padding:0px; margin:15px; background:#f1f1f1; color:#666;}
    .MultiCarousel .leftLst, .MultiCarousel .rightLst { position:absolute; top:calc(50% - 20px); z-index:9999999;  background:#FFF !important; color:#333 !important; border:none; }
    .MultiCarousel .leftLst { left:0; background:#FFF !important; color:#333 !important; border:none; }
    .MultiCarousel .leftLst i .bx{color:#000 !important}
    .MultiCarousel .rightLst i .bx{color:#000 !important}
    .MultiCarousel .rightLst { right:0; }
    
    .MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over { pointer-events: fill; background:#ccc; }    
    
    .MultiCarousel .MultiCarousel-inner .item 
    
    .MultiCarousel .MultiCarousel-inner .item .member {
  text-align: center;
  margin:20px 25px;
  background: #343a40;
  position: relative;
  overflow: hidden;
  border-radius:5px;
  
}

.MultiCarousel .MultiCarousel-inner .item  .member img {
border-radius:5px;    
background:#FFF;
}

.MultiCarousel .MultiCarousel-inner .item  .member .member-info {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
   background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 212, 255, 0) 50%);
  opacity: 1;
  transition: 0.4s;
}

.MultiCarousel .MultiCarousel-inner .item  .member .member-info-content {

  text-align:center;
}

.MultiCarousel .MultiCarousel-inner .item  .member .member-info-content h4 {
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  position:absolute;
  text-align:left;
  top:10px;
  left:10px;
  transition: top 0.4s;
}

.MultiCarousel .MultiCarousel-inner .item  .member .member-info-content h4 span {
  font-weight:100;
  display:block;
  font-size:22px;
  padding-left:30px;    
}

.MultiCarousel .MultiCarousel-inner .item  .member .member-info-content p {
  display: block;
  font-size: 14px;
  color: #fff;
  border-top:1px solid #818181;
  position:absolute;
  bottom:0px;
  transition: bottom 0.4s;
  width:100%;
  text-align:center;
}

.MultiCarousel .MultiCarousel-inner .item  .member .member-info-content p span{
  font-size:18px;
  font-weight:600;    
}

.MultiCarousel .MultiCarousel-inner .item  .member:hover .member-info-content h4 {
  top: 20px;
  transition: top 0.4s;

}

.top-head-right {
  width: 50%;
  border-bottom: 1px solid #647c92;
  text-align:right;
  padding-bottom:0px;
  margin-top:10px;
}
.top-head-right ul li a{margin-right:30px; float:left; color:#F30}
.top-head-right ul li a i{text-align:left; float:left; margin-right:10px; padding-top:5px; font-size:18px;}
.top-head-right ul li a span{line-height:24px; display:inline-block; float:left; color:#fff; font-size:18px; text-align:left}
.top-head-right ul li img{text-align:left; float:left; margin-right:10px; max-height:30px;}
.top-head-right ul li span{line-height:12px; display:inline-block; float:left; color:#CCC; font-size:11px; padding-top:3px; text-align:left}

.ftr_abta_atol_icons li img{height:40px;}

#exampleSlider {
  position: relative;
}
@media (max-width: 767px) {
  #exampleSlider {
    border-color: transparent;
  }
}
#exampleSlider .MS-content {
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 767px) {
  #exampleSlider .MS-content {
    margin: 0;
  }
}
#exampleSlider .MS-content .item {
  display: inline-block !important;
  height: 100%;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  border-right: none;
  width: 20%;
}

#exampleSlider .MS-content .item img{
    width:100%;
}

@media (max-width: 1200px) {
  #exampleSlider .MS-content .item {
    width: 25%;
  }
}
@media (max-width: 992px) {
  #exampleSlider .MS-content .item {
    width: 33.3333%;
  }
}
@media (max-width: 767px) {
  #exampleSlider .MS-content .item {
    width: 50%;
  }
  
  #exampleSlider .MS-content .item img{
  width:100%;
  max-height:400px;
  object-fit:cover
  }
  .pop_holiday .member .member-info-content h4 {
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  position:absolute;
  text-align:left;
  top:10px;
  left:10px;
  transition: top 0.4s;
  }
  .section-title {padding-bottom:20px}
  section{padding:20px 0}
}

@media (max-width: 484px) {
  #exampleSlider .MS-content .item {
    width: 100%;
  }
}

#exampleSlider .MS-controls button {
  position: absolute;
  border: none;
  background: transparent;
  font-size: 30px;
  outline: 0;
  top: 45%;
}
@media (max-width: 767px) {
  #exampleSlider .MS-controls button {
    display: block;
  }
}
#exampleSlider .MS-controls button:hover {
  cursor: pointer;
}
#exampleSlider .MS-controls .MS-left {
  left: -20px;
}
@media (max-width: 992px) {
  #exampleSlider .MS-controls .MS-left {
    left: -2px;
  }
}
#exampleSlider .MS-controls .MS-right {
  right: -20px;
}
@media (max-width: 992px) {
  #exampleSlider .MS-controls .MS-right {
    right: -2px;
  }
}

@media (max-width: 768px) {
.top-head-right{display:none}

.event-section img.main_image{min-height:300px; object-fit:cover}
}

.text-right1{text-align:right}
@media (max-width: 768px) {
.text-right1{text-align:left; margin-top:10px;}
}

.pad-top-15-desk{padding-top:15px;}

@media (max-width: 768px) {
.pad-top-15-desk{padding-top:0px;}
}

.incl-icons {
float:left; width:100%;    
}
.incl-icons ul {
float:left; width:100%;     
}
.incl-icons ul li {
background:#dcf3fe; padding:3% 1%; width:21%; float:left; font-size:13px; margin:1%; color:#42484c; text-align:center
}

.itinerary-listt {
  list-style:none; font-size:13px; color:#333; float:left; clear:both; line-height:24px; margin:0 auto; padding:0px 8px;     
}

.itinerary-listt li .fa{color:#333 !important; margin-right:5px;}
.itinerary-listt li a{color:#06C !important}

.listt {float:left; margin-top:10px;}
.listt li{font-size:13px; line-height:20px; color:#000}

.itinerary_btn {
  margin-bottom:20px;
  text-align:center;
}
.itinerary_btn button{margin:0 2px}
.itinerary_btn i {
  margin:0px 5px;
}

.itinerary_btn p {
  color:#000;
  font-size:13px;
  margin:0px !important;
  height:48px;    
}

.itinerary_btn p span {
  font-size:44px;
  font-weight:bold;
  color:#F30;    
}

.itinerary_btn a {
  color:#333; text-decoration:underline; display:block; margin-bottom:10px;    margin-top:10px;
}

.srch_rslt_item {
  margin-bottom:20px;
}

.srch_rslt_item .incl-icons {
float:left; width:100%;    
}
.srch_rslt_item .incl-icons ul {
float:left; width:100%;     
}
.srch_rslt_item .incl-icons ul li {
background:#dcf3fe; padding:2% 1%; width:22%; float:left; font-size:13px; margin:1%; color:#42484c; text-align:center
}

.srch_rslt_item .incl-icons ul li.not_available {
  opacity:.4;    
}

.srch_rslt_item .itinerary-listt {
  list-style:none; font-size:12px; color:#333; float:left; clear:both; line-height:20px; margin:0 auto; margin-top:6px; padding:0px 0px 0px 6px;     
}

.srch_rslt_item .itinerary-listt li .fa{color:#333 !important; margin-right:5px;}
.srch_rslt_item .itinerary-listt li a{color:#06C !important}

.srch_rslt_item .listt {float:left; margin:5px 0;}
.srch_rslt_item .listt li{font-size:12px; line-height:20px; color:#000}
.srch_rslt_item .listt li:last-child{color:#06C; list-style:none}
.srch_rslt_item .listt li a{color:#06C; font-size:13px;}

.srch_rslt_item .itinerary_btn {
  margin-bottom:10px;
  text-align:center;
}
.srch_rslt_item .itinerary_btn i{margin:0px 5px;
}

.bdr1{border:1px solid #ababab; float:left; position:relative; margin:auto; padding:0px 10px 8px 10px; width:100%; text-align:center}

.incllud {
  margin-top:5px;
  float:left;
  display:block;
  width:100%;    
}

.incllud p {
  margin-bottom:0px;    
}

.pad10 {padding:10px}
.pad20 {padding:20px}

.pad10top {
  padding:10px 0;
}

.scroll-tab {
  width:100%;
  position:absolute;
  padding:22px 0 0 2px;
  background:#ebebeb;
  z-index:1;
  float:left
}
.scroll-list{float:left; list-style:none; z-index:99999; padding:0px}
.scroll-list li{
    display:inline-block; font-size:14px; font-weight:600; 
}
.scroll-list li a{color:#666; padding-bottom:12px; margin-right:15px; margin-left:15px; }
.scroll-list li a:hover{color:#000; border-bottom:5px solid #ec4520}
.scroll-list li a.active{color:#000; border-bottom:5px solid #ec4520}   
    
.conttnt {
  float:left;
  margin-top:50px;
}

@media (max-width:768px) {
.scroll-list li a {margin-right:15px; padding-bottom:3px}
.scroll-list li {margin-bottom:20px}
.scroll-list li a.active{border-bottom:3px solid #ec4520}
.scroll-list li a:hover{border-bottom:3px solid #ec4520}
.conttnt{margin-top:85px}
}

.room_heading {
  background:none;
  border:1px solid #F30;
  border-radius:3px;
  color:#F30;
  font-size:14px;
  padding:5px 20px;
  text-align:center;
  float:left;     
}
.mgn-btm-20 {
  margin-bottom:20px !important;
}

.room_listt {
  float:left;
  font-size:13px;
  width:100%;
  margin:auto;  
}
.room_listt div {
  vertical-align:middle; 
  padding-top:5px;
}
.text-grey {
  color:#999; font-size:12px;    
}

.flight_list {
  border-bottom:1px solid #e9e9e9;
  padding:10px 0;
  margin:0 auto;
  width:100%;
}

.flight_list img{max-height:36px; max-width:36px;}

.flight_list_heading {
  font-size:14px;
  color:#000;
  font-weight:600;
  border-radius:3px;
  padding:10px;
  width:auto;
  margin:0 10px;
}

.flight_list_heading i {
  margin-right:5px;    
}

.flight_list ul {
  margin:0 auto;
  padding-left:30px;
  margin:10px 0;
  list-style:none
}

.flight_list ul li {
  height:30px;
  font-size:12px;
  width:33%;
  float:left;    
}

.stop1 {
  background:url(../img/1-stop.png) 0px 7px no-repeat;
  background-size:contain;
  text-align:center;
  color:#666;
  font-size:16px;
  font-weight:600;
}

.stop1 p {
  padding-left:-10px;    
}

.stop1 span {
  font-weight:100;
  color:#999;
  font-size:12px;
}

.fly_direct {
  background:url(../img/direct.png) 0px 7px no-repeat;
  background-size:contain;
  text-align:center;
  color:#2ba237;
  font-weight:600;
}

.width_for_mobile{float:none}


.fly_direct span {
  font-weight:100;
}

.list_clik_btn {
  text-align:center;
  padding:15px 0;
  color:#F30;
  font-weight:600    
}

.bdr_btm {
  border-right:1px solid #e9e9e9;    
}

.flgt_incl {
  margin:auto;
  text-align:center;    
}

.flgt_incl img{
  margin-bottom:10px;
}

.flgt_incl p {
  font-size:40px;
  color:#F30;
  font-weight:900;
  margin:0 auto    
}

.flgt_incl p span {
  font-size:24px;
  color:#333;
  font-weight:600;    
}

.bdr-rt {
  border-right:1px solid #eaeaea    
}

.bg_orange {
  background:#ffe7e0;
  color:#e73b17    
}
.upgrade_list {
  float:left;    
}

.upgrade_list div.lt {
  float:left; padding:5px 0;     
}

.upgrade_list div.lt input{margin-right:5px;}

.upgrade_list div.rt {
  float:right    
}

@media (max-width:768px) {
.fly_direct {width:75%}
.stop1 {width:75%}
.flight_list img {max-height:24px; max-width:60px;}

.srchrslt_width_for_mobile {width:33.33%; float:left}
.width50_for_mobile {width:50%; float:left}

.only_for_desktop {display:none}

.flight_list ul li {width:100%}
.upgrade_list {width:100%}

.about .content img {left:0px; top:0px}
.about .content h3 {font-size:18px}
.about .content h1 {font-size:30px}
.room_listt div {width:50%; display:table-cell}
}

.lt {
  float:left    
}

.rt {
  float:right    
}

.why_us_list {
  list-style:none;
  width:100%;
  margin:0     auto;
  padding-left:10px;
  position:relative
}

.why_us_list li{
 padding:15px 0;
 width:100%;
 border-top:1px solid #eaeaea
}

.why_us_list li i {
  color:#F30 !important;
  margin-right:8px;    
}

.help-widget {
  background:#4c88cb;
  color:#FFF;
  padding:20px;
}

.help-widget p {
  font-size:12px;    
  margin:15px 0;
  color:#e8ecf4;
}

.help-widget a {
  color:#FFF;
  font-size:16px;
  display:block;
  line-height:36px;    
}

.filtr_clr {
  background:#27477b;
  padding:10px;
  float:left;
  width:100%;
}

.filtr_clr p {
  color:#FFF;
  float:left;
  margin:0 auto; 
}

.filtr_clr button {
  float:right;
  background:none;
  outline:none;
  border:none;
  cursor:pointer;
}

.filtterss {
  padding:15px;
}

.filtterss_desk{display:block}

.btn-filterr{border-radius:0px; width:90%; text-align:center; background:#F30; color:#FFF; margin-left:5%; margin-bottom:15px;}

@media (max-width:768px) {
 .filtterss_desk {display:none}
}

.filtterss label {
  text-transform:uppercase;
  font-weight:600;
  color:#000;
  font-size:14px;
  margin:10px 0;
  width:100%;
}

.filtterss input[type=text] {
  padding:7px 10px;
}

.filtterss img {
 margin-left:8px; margin-bottom:7px;    
}

.filtterss p {
  margin:0px;    
}

.filtterss input[type=text] , input[type=range] {
  width:100%;    
}

.filtterss hr {
  margin:10px 0;    
}

.srch_result {
  margin-bottom:20px;    
}

input[type=range] {
  -webkit-appearance: none;
  margin: 10px 0;
  padding:0px !important;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 12px;
  cursor: pointer;
  background: #eaeaea;
  border-radius: 5px;
  border: 0.2px solid #ccc;
}
input[type=range]::-webkit-slider-thumb {
  border: 2px solid #eaeaea;
  box-shadow:0 0 10px 1px #999;
  height: 30px;
  width: 30px;
  border-radius: 100%;
  background: #fd7448;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -11px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #fe531d;
}

.chk_text {
  margin-left:8px;
  font-weight:500;
}

.chek_list {
  list-style:none;
  width:100%;
  padding-left:0px;
  margin:0 auto;
}

.chek_list li{
  line-height:24px;
}

.chek_list li span {
  padding-left:7px;    
  font-weight:600
}

button:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline-width: 0
}

.item {
    display: none
}

.next {
    display: block !important;
    position: relative;
    transform: scale(0.8);
    transition-duration: 0.3s;
    opacity: 0.6
}

.prev {
    display: block !important;
    position: relative;
    transform: scale(0.8);
    transition-duration: 0.3s;
    opacity: 0.6
}

.item.show {
    display: block;
    transition-duration: 0.4s
}

@media screen and (max-width: 999px) {

    .next,
    .prev {
        transform: scale(1);
        opacity: 1
    }

    .item {
        display: block !important
    }
}

.flight_detail_left_wing {
  float:left;
  width:25%;
  padding:0px;
}

.inner_left_wing {
  padding:15px 10px;    
}

.inner_left_wing p {
  margin:0 auto;    
}

.inner_left_wing h6 {
  font-size:14px;
  font-weight:600;
  color:#333    
}

.inner_left_wing span {
  font-size:11px;
  color:#999    
}

@media (max-width:768px) {
.flight_detail_left_wing {width:100%}
}
.timme {
    
}

.flight_detail_right_wing {
  float:left;
  width:75%;
  padding:0px;
  position:relative;
  margin:0 auto;
}

.inner_right_wing {
  padding:15px 0 15px 25px;    
  float:left;
  border-left:1px solid #FFCBB3;
}

.flight_schedule_data {
  float:left;
  position:relative;
  margin:0 auto;
}

.flight_schedule_data .icon img {
  position: absolute;
  top: 20px;
  left: -39px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display:block;
  float:left;
  text-align: center;

}

.fly_date {
  font-size:12px;
  color:#666;
}

.fly_time {
  font-size:14px;
  font-weight:600;
  color:#333;
}

.fly_time span{
  font-size:12px;
  font-weight:normal;
}

.fly_airport {
  font-weight:12px;
  font-weight:normal;
  float:left;
  color:#333;
}

.fly_airport code {
  font-weight:13px;
  color:#333;
}

.fly_city {
  font-weight:12px;
  font-weight:normal;
  color:#F30;
}

.fly_terminal {
  font-size:12px;
  color:#999;
}

.fly_facilities {
  float:left;
  width:100%;
  display:block;  
}

.fly_facilities ul{
  list-style:none;
  margin:0 auto;
  padding:0px
}

.fly_facilities ul li{
  display:inline-block;
  font-size:11px;
  color:#999;
  margin-right:15px;
}

.fly_facilities ul li i{
  color:#666    
}


.result_filter {
  padding:10px 15px; margin-bottom:15px;    
}

.result_filter ul {
  width:100%;
  float:left;
  display:table;
  table-layout:fixed;
  list-style:none;
  margin:auto;
}

.result_filter ul li{
  display:inline-block;
  font-size:16px;
  display:table-cell;
  vertical-align:middle;
  font-weight:600;
}
    
.result_filter ul li button {
  background:none;
  color:#666;
  font-size:13px;
  border:none;
  font-weight:600;
  text-align:left;
  outline:none;    
}

.result_filter ul li button.active {
  color:#39F;    
}

.result_filter ul li button.active span {
  color:#333;    
}

.result_filter ul li button span {
  font-size:10px;
  font-weight:normal;
  color:#999    
}

.holiday_date_night {
  padding:12px 15px;
  border-radius:25px;
  background:#F30;
  color:#FFF;
  position:relative;
  text-transform:uppercase;
  text-align:center;
  margin:20px auto;    
  width:auto;

}

@media (max-width:768px) {
    .result_filter ul {padding:0px}
    .result_filter ul li {font-size:13px; display:inline-block; margin-right:10px;}
    .result_filter ul li button {font-size:12px;}
    .srch_rslt_item {padding:10px}
    .srch_rslt_item div{padding:0px}
    .search_result .member img { width:100%; max-height:300px; object-fit:cover; min-height:300px;}
    .srch_rslt_item .itinerary_btn {padding:10px}
}
    
.holiday_date_night span {
  padding-left:15px;
  border-left:1px solid #FFF;
  margin-left:15px;    
}

.holiday_enquiry_box {
  float: left;
  text-align: center;
  position: relative;
  margin: 0 auto;
  width: auto;    
}

.enquiry_context {
  margin:15px 0;
  float:left;
  color:#000;
  font-size:16px
}

.php-email-form {
  float:left;    
  width: 100%;
}

.php-email-form label {
  font-size:13px;
  font-weight:600;
  color:#333;
  margin-top:15px;
}

.php-email-form label.imprtant:before{
  content:'*';
  padding-left:3px;
  float:right;
  color:#F30;
  font-size:16px;
  position:relative;
}

.php-email-form .form-control {
  border-radius:0px;
  padding: .55rem .75rem;
  font-size: .8rem;
  margin:8px 0;
  border:1px solid #e6eaed;
}

.php-email-form button {
  padding:10px 40px;
  margin:15px 0;
  border-radius:2px;
}

.enquiry_book_with_us {
  margin:15px 0;
  padding:25px;
  background:#F7F7F7;
  width:100%;
  float:left;
  position:relative;
  border:1px solid #f1f1f1;
  vertical-align:middle;
}

.enquiry_book_with_us h2 {
  font-size:1.75rem;
  text-transform:uppercase;
  color:#369;
  font-weight:100;
  border-bottom:1px solid #369;
  float:left;
  text-align:left;    
}

.enquiry_book_with_us ul {
  float:right;
  margin:auto;
  vertical-align:middle;
  list-style:none;
}

.enquiry_book_with_us ul li{
  display:inline-block;
  margin-left:15px;
}

.enquiry_book_with_us ul li img{
  max-width:120px;
  max-height:100px;
}

.about_bannr {
}

.about_bannr img {
  width:100%;
  float:left;
  height:auto;
  height:100%;
  left:0;
  object-fit:cover;
  position:absolute;
  max-width:650px;
}

.about_bannr .about_contentnt {
  float:right;
  position:relative;
  padding:50px;
  width:100%;
  margin:40px;
}

.about_bannr .about_contentnt h2 {
  font-size:24px;
  font-weight:normal;
  margin:30px 0;
  color:#333;
}

@media (max-width:768px) {
.about_bannr img {display:none}
.about_bannr .about_contentnt { float:left; margin:0px; padding:20px;}
.about_bannr .about_contentnt h2 {font-size:20px; color:#000}
.enquiry_book_with_us { padding:10px; text-align:center}
.enquiry_book_with_us h2 {float:none; text-align:center}
.enquiry_book_with_us ul{padding-left:0px; margin:15px 0; float:none}
}

@media (max-width:1024px) {
    .enquiry_book_with_us h2 {font-size:1.25rem; margin:auto}
}

.contact-icon-boxes {

}

.contact-icon-boxes .icon-box {
  text-align: center;
  background: #fff;
  box-shadow: 0px 4px 15px rgb(0 0 0 / 10%);
  padding: 40px 30px;
  margin:15px;
  float:left;
  width: 100%;
}

.contact-icon-boxes .icon-box i {
  color:#F30 !important;
  font-size:36px;
  font-weight:normal;    
}

.contact-icon-boxes .icon-box h4 {
  color:#333;
  font-size:16px;
  text-transform:uppercase;
  padding:10px;
  border-bottom:1px solid #eaeaea;
  font-weight:600;    
}

.contact-icon-boxes .icon-box p {
  color:#333;
  font-size:12px;
  font-weight:normal;    
}

.social-links1 i{font-size:24px !important}

.contact_formm h2 {
  font-size:24px;
  font-weight:normal;    
}

.contact_formm {
  margin:15px;    
}

@media (max-width:768px) {
.contact_formm {
  margin:10px 0px;    
}
}

.accordion_head {
  text-align:center;    
}

.accordion_head h2{
  font-size:36px;
  font-weight:bold;
  margin:20px 0;
  color:#333;
}

.accordion_head h4{
  font-size:16px;
  font-weight:normal;
  line-height:24px;
  margin-bottom:30px;
}

.accordion:after {
    font-family: 'FontAwesome';
    content: "\f078";    
    float: right;
    font-size:15px;
    font-weight:normal;
}
.accordion .accordion:after {    
    content: "\f054";    
}


.accordion {
  background-color: #fff;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  box-shadow:0 0 5px 0 #ccc;
  text-transform:uppercase;
  margin:10px 0;
  transition: 0.8s;
}

.accordion:hover {
  background-color: #fff; 
  box-shadow:0 0 10px 0 #ccc;
}

.accordion.active {
  box-shadow:0 0 10px 0 #ccc;
}

.show_on_mobile{display:none}

@media (max-width:768px) {
.show_on_mobile{display:block}
}

.panel {
  padding:18px;
  display: none;
  background-color: white;
  overflow: hidden;
  margin-top:-10px;
  border-top:1px solid #eaeaea;
}

.slavery_moden {
  float:left    
}

.slavery_moden .heading {
  font-size:24px;
  color:#333;
  text-align:center;
  display:block;
  float:left;
  width:100%;
}

.slavery_moden .sub_heading {
  font-size:17px;
  font-weight:normal;
  display:block;
  color:#333;
  float:left;
  margin:20px 0; 
  width:100%;
}

.thank_back {
  background:#FFF;
  box-shadow: 0 0 5px 1px #ccc;
  text-align:center;
  padding:20px;
  margin-top:50px;
}

.thank_youu_line {
  font-size:16px;
  color:#000;
  margin:15px 0;
}

.thank_back p {
  color:#333    
}

.thank_back p span {
  color:#F30    
}

.thank_icon {
  border-radius:100%;
  width:150px;
  height:150px;
  text-align:center;
  background:#FFF;
  box-shadow:0 0 5px 1px #ccc;
  margin:0 auto;
  padding:28px 5px 15px 15px;
  margin-top:-90px;
  margin-bottom:0px;    
}

.thank_icon img {
 width:80%;
 text-align:center
}
 .carousel-inner {max-height:350px; min-height:350px; object-fit:cover; width:100%}
.bg-none {
  background-image:none !important 
}
.fa-black-clr span.fa{
  color:#666 !important; font-size:16px;    
}
 .carousel-inner-index { max-height:250px; min-height:200px;}
 .carousel-inner-index .item{width:70%; margin-left:15%}
 .index_side_slide {height:auto !important; margin-top:25px;}
 .index_side_slide img{height:60px; margin:20px 0; max-height:60px; width:auto !important; margin:0 auto}
 .index_side_slide h3 {font-size:16px; margin-top:25px;}
 
 .adv_search {overflow:hidden; width:60%; margin:auto;}
 
 .adv_serch_filter { float:none; text-align:center}
 .adv_serch_filter input , .adv_serch_filter select {background:none !important; border:none !important; outline:none; color:#fff; font-size:13px;}
 .adv_serch_filter select option{color:#333; background:#FFF }
 .adv_serch_filter {font-size:13px;}
 .adv_serch_filter {margin-right:25px}

@media (max-width:768px){
    .carousel-inner{min-height:350px; max-height:350px;}
    .carousel-inner>.item>a>img, .carousel-inner>.item>img{min-height:350px; object-fit:cover}
    
 .carousel-inner-index { max-height:200px !important; min-height:200px; background:#FFF; }
 .carousel-inner-index .item{width:70%; margin-left:15%}
 .index_side_slide {height:auto !important; margin-top:25px;}
 .index_side_slide img{height:60px !important; margin:20px 0; max-height:60px !important;  min-height:60px !important; width:auto !important; margin:0 auto}
 .index_side_slide h3 {font-size:16px; margin-top:25px;}
 .adv_serch_filter label {width:100%; float:left}
 .adv_search {width:100%; margin:0 auto}
 .adv_search .col-md-3{width:50%; float:left; margin:5px 0}
 .swiper-button-next, .swiper-button-prev { top:35%}
    }

.float{
    position:fixed;
    width:50px;
    height:50px;
    bottom:180px;
    right:40px;
    background:#ff4d21;
    color:#FFF;
    border-radius:2px;
    text-align:center;
    z-index:1000;
    animation: bot-to-top 1s ease-out;
}

ul.float_nav{
    position:fixed;
    right:40px;
    padding-bottom:5px;
    bottom:224px;
    margin-bottom:0px;
    background:rgb(0,0,0,0.5);
    z-index:100;
    padding-left:0px;
}

ul.float_nav li{
    list-style:none;
    margin-bottom:2px;
    border-bottom:1px solid #666;
}

ul.float_nav li a{
    background:none;
    color:#FFF;
    text-align:center;
    width:50px;
    height:40px;
    display:block;
}

ul.float_nav li a i{font-size:18px !important; }

ul.float_nav li:last-child{border-bottom:none}

ul.float_nav:hover{
    visibility:visible!important;
    opacity:1!important;
}


.my-float{
    font-size:24px;
    margin-top:14px;
}

a#menu-share + ul.float_nav{
  visibility: hidden;
}

a#menu-share:hover + ul.float_nav{
  visibility: visible;
  animation: scale-in 0.5s;
}

a#menu-share i{
    animation: rotate-in 0.5s;
}

a#menu-share:hover > i{
    animation: rotate-out 0.5s;
}

@keyframes bot-to-top {
    0%   {bottom:-40px}
    50%  {bottom:40px}
}

@keyframes scale-in {
    from {transform: scale(0);opacity: 0;}
    to {transform: scale(1);opacity: 1;}
}

@keyframes rotate-in {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

@keyframes rotate-out {
    from {transform: rotate(360deg);}
    to {transform: rotate(0deg);}
}

.slideContainer {
width: 100%;
position: absolute;
margin: auto;
}
.slideContainer img{
width:100%; height:100vh
}
.prevBtn,
.nextBtn {
position: absolute;
top: 50%;
width: auto;
padding: 10px;
background-color: rgb(255, 255, 75);
color: rgb(50, 0, 116);
font-weight: bolder;
font-size: 18px;
}
.nextBtn {
right: 0;
}
.Caption {
color: #fbff09;
font-weight: bold;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 25px;
padding: 8px 12px;
position: absolute;
bottom: 50%;
width: 100%;
text-align: center;
}
.Navdot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: rgb(54, 5, 117);
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.selected,
.Navdot:hover {
background-color: #d9ff00;
}
@media only screen and (max-width: 450px) {
.prevBtn,
.nextBtn,
.Caption {
font-size: 16px;
}
.float{bottom:15%; right:12px;}
ul.float_nav{
    position:fixed;
    right:12px;
    padding-bottom:5px;
    bottom:22%;
    margin-bottom:0px;
    background:rgb(0,0,0,0.5);
    z-index:100;
    padding-left:0px;
}

}

.registere .form-input {
    position: relative;
    margin-bottom: 10px;
    margin-top: 10px
}

.registere .form-input i {
    position: absolute;
    font-size: 18px;
    top: 15px;
    left: 10px
}

.registere .form-control {
    height: 50px;
    background-color: #fbf9f9;
    text-indent: 24px;
    font-size: 15px
}

.registere .form-control:focus {
    background-color: #fff;
    color: #fff;
    border-color: #4f63e7
}

.registere .form-check-label {
    margin-top: 2px;
    font-size: 14px
}

.registere .signup {
    height: 50px;
    font-size: 14px
}

.registere .social {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #f14922;
    border-radius: 50%;
    margin-right: 10px;
    color:#f14922;
    cursor: pointer;
}

.registere .social:hover {
    background-color: #f14922;
    border-color: #f14922;
    color:#FFF;
}
.register_trms {
  font-size:11px    
}
.register_trms a {
  color:#000; font-weight:600;
}

.my_account_left{ float:left; position:relative; margin:10px 0 20px 0; color:#000; width:100%}
.my_account_left i{width:30px; height:30px; font-size:36px; margin-right:10px; float:left} 
.my_account_left .namee{float:left; margin-left:5px; font-size:16px; color:#000; line-height:18px;}
.my_account_list {float:left; margin:0 auto; padding:0px; list-style:none; width:100%; margin-top:20px}
.my_account_list li {line-height:36px;}
.my_account_list li a {font-size:14px; color:#666}
.my_account_list li a i {font-size:18px; margin-right:10px;}
.my_account_list li a:hover {color:#111}
.my_account_list li a.active {color:#111}

.my_account_right_content {margin-bottom:15px; float:left; width:100%; padding:20px;}

.my_account_right_content .labelle{width:40%; float:left}

.my_account_right_content .valueue{width:60%; float:left; color:#999}

.my_account_history_head {width:100%; position:relative; color:#333; padding:10px; border-bottom:1px solid #e2e2e2; float:left}
.my_account_history_head span {margin:0px; padding:10px; font-size:14px; font-weight:600; width:20%; float:left; position:relative}

.my_account_history_value {width:100%; position:relative; color:#666; padding:10px; float:left}
.my_account_history_value span {margin:0px; padding:10px; font-size:14px; font-weight:100; width:20%; float:left; position:relative}

.myy_account {float:left; width:100%; margin:0 auto}
.conttnt h6{text-transform:uppercase; border-bottom: 4px solid #F30; font-weight:bold;
    border-image: linear-gradient(to right, #f85b35 60px, rgba(0,0,0,0) 60px);
    border-image-slice: 1;}
#readd_more {display: none; text-align:justify}
#readd_more1 {display: none; text-align:justify}
#readd_more2 {display: none; text-align:justify;}
#info_content {text-align:justify}
#information {text-align:justify}
.btn-info {font-weight:bold}
.pad-rt-o {padding-right:0px}
.read_more_cont{ background:none; outline:none; border:none; color:#F30; display:block; text-align:center; width:100%; padding:5px 0;}
.btn-select {background:#ffeae4; color:#F30; padding:2px 6px; font-size:12px; margin-bottom:10px;}
.btn-clos_clear{background:#efefef; color:#6b6b6b; padding:2px 6px; font-size:12px; margin-bottom:10px;}
.inner_heading{margin:15px 0; width:100%}
.inner_heading h2{ color:#000; font-size:18px; text-transform:uppercase; font-weight:bold; border-bottom: 4px solid #F30; border-image: linear-gradient(to right, #f85b35 80px, rgba(0,0,0,0) 80px); border-image-slice: 1;}
.inner_heading p{font-size:16px; color:#000}
.modal-lg{max-width:800px !important}
.form-check-input {border:1px solid #999 !important}
.form-check-input:focus {border:1px solid #F30 !important}
.form-check-input:checked {border:1px solid #F30 !important}
@media (max-width:480px) {
    .myy_account {margin-top:15px;}
    .my_account_history_head {width:40%}
    .my_account_history_head span {width:100%}
    .my_account_history_value {width:60%}
    .my_account_history_value span {width:100%}
}







