
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
  /*background-image: url(../img/selia/bck.jpg);*/
  background-image: url(../img/selia/floral3.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

a {
  text-decoration: none;
  color: #F6731B;
}

a:hover {
  color: #000;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {

}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #F6731B;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffc064;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
.top-area{
  position: fixed;
  z-index: 999;
  width: 100%;
}
.topbar-img img {
  height: 86%;
  width: 100%;
  object-fit: cover;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.fixed {
	position: fixed;
	top: 0;
	z-index: 99999;
}
#header {
  padding: 10px 0;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  top: 0;
  background: rgba(26, 24, 22, 0.85);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 127px;
}
/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  background: #F6731B;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
}

.book-a-table-btn:hover {
  background: #ffa012;
  color: #fff;
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
    letter-spacing: 1px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  background-color: #ee569f;
}

.navbar ul {
  margin: 0 auto;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 15px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  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 .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #494136;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  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: 14px;
  font-weight: 400;
  color: #433f39;
}

.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: #494136;
}

.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(39, 37, 34, 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: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #433f39;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #494136;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  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: #494136;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}



/*=========== main part area start here  =========*/
.main-part {
  padding: 10px;
  margin-top: 20%;
  /*background-color: #fdfce2;*/
  background-color: #fffce2;
}


.card-area{
  margin-top: 40px;
}
.card-main{
  border: 1px solid #65CEF6;
  height: 430px;
  border-radius: 10px;
  transition: .3s;
  background-color: #fff;
}
.card-main:hover{
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  height: 430px;
}

.card-main img{
  height: 245px;
  width: 100%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.card-text{
  padding: 0 10px;
  margin-top: 10px;
}
.card-text h3{
  color: #126AAA;
  font-size: 22px;
  margin-bottom: 0;
}
.card-text p{
  line-height: 19px;
}
.card-text p a{
  color: #000;
  font-size: 15px;
  
}

.card-main2{
  padding: 10px 15px;
  border: 1px solid #65CEF6;
  border-right: 10px solid #65CEF6;
  margin-top: 20px;
  background-color: #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: .3s;
}
.card-main2:hover {
  background-color: #65CEF6;
  color: #fff;

}
.card-main2:hover > .card-text h3{
  color: #fff;

}


/*======== Marquee css start here ======== */
.marque-text{
  width: 100%;
  height: 8em;
  margin: 1em auto;
  overflow: hidden;
  background: white;
  position: relative;
  box-sizing: border-box;
  text-align: end;
}
.marquee {
  top: 6em;
  position: relative;
  box-sizing: border-box;
  animation: marquee 15s linear infinite;
}
.marquee h6{
  font-size: 17px;
}
.marquee p{
  font-size: 15px;
  margin: 0;
  padding: 0;
}
.marquee:hover {
  animation-play-state: paused;
}

/* Make it move! */
@keyframes marquee {
  0%   { top:   8em }
  100% { top: -11em }
}

/* Make it look pretty */
.marquee-main .marquee {
margin: 0;
  padding: 0 1em;
  line-height: 1.5em;
}


.img-content{
  margin-top: 40px;
}

.body-img img{
  height: 100%;
  width: 100%;
}

.img-content h4{
  text-align: right;
  font-size: 30px;
  font-weight: 600;
  color: #126AAA;
}

.content-area{
  text-align: right;
}
.content-area p{
  font-size: 13px;
}




.list-area{
  margin-top: 30px;
}
.list-area ul{
  margin: 0;
  padding: 0;
  text-align: right;
}
.list-bg{
  background-color: #B2E6FA;
}
.list-area ul li{
  list-style: none;
  padding: 5px 10px;
  border-bottom: 1px solid #000;
}
.list-area ul li a{
  font-size: 14px;
  color: #000;
}
.list-area ul li a:hover{
  text-decoration: underline;
}


.form-area{
  padding: 10px;
  border: 1px solid #65CEF6;
  margin-top: 15px;
  background-color: #fff;
  border-radius: 5px;
  margin-top: 40px;
}
.form-title h4{
  font-size: 21px;
  font-weight: 600;
  text-align: right;
  color: #126AAA;
}
.contact-fild{
  text-align: right;
}
.contact-fild label{
  font-size: 15px;
  color: #000;

}
.contact-fild input{
  height: 30px;
  width: 100%;
  border: 1px solid #000;
  color: #000;
  padding: 5px 7px;
  outline: none;
  border-radius: 4px;
  margin-bottom: 10px;
}
.contact-fild textarea{
  height: 90px;
  width: 100%;
  border: 1px solid #000;
  outline: none;
  padding: 10px;
  border-radius: 5px;
}
.contact-fild button{
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: #F6731B;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
}


.profile-info{
  display: flex;
}
.profile-info img{
  height: 50px;
  width: 50px;
  object-fit: contain;
}
.info {
  text-align: left;
  margin-left: 10px;
}
.info h5{
  color: #fff;
  font-size: 20px;
  margin: 0;
  padding: 0;
}
.info h5 a{
  color: #fff;
}
.info h5 a:hover{
  text-decoration: underline;
}
.info p{
  font-size: 15px;
  color: #fff;
}


.folowars-bg{
  padding: 10px;
  background-image: url(../img/selia/304748453_449765933836134_1102422120776916108_n.png);
  height: 140px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  margin-top: 20px;
}
.folowars-bg::before{
  content: "";
  position: absolute;
  height: 140px;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: .5;
}
.share-btns{
  display: flex;
  justify-content: space-between;
}
.all-info{
  position: relative;
  z-index: 333;
}

.fb-btn a{
  padding: 4px 10px;
  background-color: transparent;
  border: 1px solid #65CEF6;
  border-radius: 5px;
  color: #fff;
}
.share-btns{
  margin-top: 30px;
}

.footer-area{
  padding: 15px;
  background-color: #ee569f;
  color: #fff;
  margin-top: 20px;
}
.footer-link a{
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.footer-link a:hover{
  text-decoration: underline;
}

.copyright-area{
  text-align: center;
  padding: 20px;
}
.copyright-text a{
  color: #000;
}
.copyright-text a:hover{
  text-decoration: underline;
  color: #000;
}


.phone{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
  line-height: 60px;
	left:40px;
	background-color:#00AADA;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
  margin-bottom: 80px;
}
.phone i{
  color: #fff;
}
.whatsapp{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
  line-height: 60px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.whatsapp i{
  color: #fff;
}



@media screen and (max-width: 991px) {
  .left-side{
    margin-bottom: 20px;
  }
  .left-side .col-lg-6{
    margin-bottom: 15px;
  }
  .phone{
    position:fixed;
    width:40px;
    height:40px;
    bottom:40px;
    line-height: 40px;
    left:5px;
    background-color:#00AADA;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:20px;
    box-shadow: 2px 2px 3px #999;
    z-index:100;
    margin-bottom: 80px;
  }

  .whatsapp{
    position:fixed;
    width:40px;
    height:40px;
    bottom:40px;
    line-height: 40px;
    left:5px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:20px;
    box-shadow: 2px 2px 3px #999;
    z-index:100;
  }
}

@media screen and (max-width:768px) {
  .fixed {
    position: fixed;
    top: 0;
    
    width: 100%;
    left: 0;
    right: 10px;
}
.phone {
  margin-bottom: 57px;
}
}
@media screen and (max-width:400px) {
  .card-main {
    border: 1px solid #65CEF6;
    height: 100%;
    border-radius: 10px;
    transition: .3s;
    background-color: #fff;
    /* padding-bottom: 20px; */
}
}
@media screen and (max-width:336px) {
  .folowars-bg {
    padding: 10px;
    background-image: url(../img/selia/304748453_449765933836134_1102422120776916108_n.png);
    height: 165px;
}
.folowars-bg::before {
  height: 165px;
}
}
