/*************************************************************************

    Template Name: Deliciousa - Unlimited Foods & Restaurants HTML Template
    Template URI: https://themeforest.net/user/creative-wp
    Author: creative-wp
    Author URI: https://themeforest.net/user/creative-wp
    Version: 1.0
    
    
    Note: style css.
*************************************************************************/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Google Fonts
# Typography
    [ ## Elements ]
    [ ## White Space ]
# Button Style
    [ ## Button ]
    [ ## Fields ]
# Section Header (With All Section Heading)
# Site Header
    [ ## Site Navigation ]
    [ ## All Header Style ]
# Hero Section
# Featured Section
# Page Layouts
# Site Footer
--------------------------------------------------------------*/
/*===================================
  # Typography
====================================== */
html {
  font-size: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.72em;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400;
  background-color: white;
  color: #727272;
}

::-moz-selection {
  color: white;
  background: #F8E100;
}

::selection {
  color: white;
  background: #F8E100;
}

p {
  margin-bottom: 25px;
  line-height: 1.95em;
}

p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }

  p {
    margin-bottom: 20px;
  }
}
small {
  font-size: 0.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  line-height: 1.2em;
  color: #293b5f;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
  font-family: "Poppins", serif;
}

h1 {
  font-size: 2.827em;
  margin: 0 0 15px;
}

h2 {
  font-size: 1.999em;
}

h3 {
  font-size: 1.414em;
}

h4 {
  font-size: 1.25em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 0.85em;
}

/* [ ## Elements ] */
img {
  max-width: 100%;
}

a {
  color: inherit;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: #000;
}

a:focus {
  outline: none;
  color: inherit;
}

a:hover,
a:active {
  outline: 0;
  text-decoration: none;
}

button:focus {
  outline: 0px dotted;
}

i {
  color: inherit;
}

figure {
  margin: 0;
}

blockquote {
  border-left: 3px solid #c39d6d;
}

blockquote p {
  font-size: 16px;
  font-weight: 400;
}

cite {
  color: #c39d6d;
  font-size: 12px;
}

.bg-white {
  background-color: white;
}

.bg-gray {
  background-color: whitesmoke;
}

.bg-black {
  background-color: #727272;
}

.full-size {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.bg-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-patent {
  background-repeat: repeat;
  background-position: center center;
}

.pos-abs {
  position: absolute;
}

.page-cover {
  height: 710px;
}

.bg-overlay {
  position: relative;
}
.bg-overlay:before {
  background-color: black;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  opacity: 0.5;
}

.img-responsive {
  width: 100%;
}

.owl-carousel .owl-item img {
  width: auto;
}

@media only screen and (min-width: 1281px) and (max-width: 1920px) {
  .container {
    max-width: 1200px;
  }
}
@media only screen and (max-width: 1200px) {
  body {
    font-size: 15px;
  }
}
@media only screen and (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  .container .col-lg-4 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-width: 50%;
  }
  .container .col-lg-6,
  .container .col-lg-8,
  .container .col-lg-9,
  .container .col-lg-7,
  .container .col-lg-10,
  .container .col-10,
  .container .col-6 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  .container .col-lg-4 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .container {
    width: 100%;
  }
}
/* bt-bottomTop-40 */
@-webkit-keyframes bt-bottomTop-40 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  50% {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bt-bottomTop-40 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  50% {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*------------------------------------------------------------------
    # Button Style
*/
/***** [ ## Button ] ******/
.btn {
  -webkit-transition: all 0.3s ease 0.02s;
  transition: all 0.3s ease 0.02s;
}

.btn:active,
.btn:focus {
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.125) inset;
}

.btn {
  border: 0px solid;
  border-radius: 3px;
  color: black;
  font-weight: normal;
}

.btn-default {
  background-color: transparent;
  color: white !important;
  height: 46px;
  line-height: 42px;
  padding: 0 30px;
  border-radius: 35px;
  font-size: 14px;
  border: 2px solid white;
  font-weight: 500;
  text-transform: uppercase;
}
.btn-default:hover, .btn-default:focus {
  background-color: white;
  color: #F8E100 !important;
  box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.18), 0 0px 0px 0 rgba(0, 0, 0, 0.15);
  border-color: white;
}

.btn-primary {
  background-color: #F8E100;
  color: white !important;
  height: 46px;
  line-height: 46px;
  padding: 0 25px;
  border-radius: 35px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: black;
  color: white !important;
  box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.18), 0 0px 0px 0 rgba(0, 0, 0, 0.15);
}

.btn-primary:active:not([disabled]):not(.disabled) {
  background-color: #8445ee;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0);
}

/*------------------------------------------------------------------
    # Section Header
*/
.section-header {
  margin: -5px 0 50px;
}
@media only screen and (max-width: 575px) {
  .section-header {
    margin-bottom: 40px;
  }
}
.section-header .section-title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 40px;
  color: black;
  line-height: 0.97em;
}
@media only screen and (max-width: 1280px) {
  .section-header .section-title {
    font-size: 56px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-header .section-title {
    font-size: 46px;
    line-height: 1.1;
  }
}
@media only screen and (max-width: 992px) {
  .section-header .section-title {
    font-size: 38px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .section-header .section-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 420px) {
  .section-header .section-title {
    font-size: 28px;
  }
}
.section-header .section-title > span {
  color: #F8E100;
}
.section-header p {
  font-size: 16px;
  color: #727272;
  line-height: 1.6em;
}
@media only screen and (max-width: 575px) {
  .section-header p {
    font-size: 15px;
  }
}

/*-------------------------------------------------------------------
    # Site Header
*/
/*-------------------------------------------------
    [ ## Scroll Top ]
*/
.topbutton {
  color: white;
  bottom: 50px;
  display: block;
  height: 60px;
  line-height: 60px;
  position: fixed;
  right: 20px;
  text-align: center;
  width: 60px;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 999;
  font-size: 16px;
  background-color: #F8E100;
}
.topbutton.btn-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.topbutton.btn-hide {
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}
.topbutton:hover {
  color: white !important;
  opacity: 0.9;
}
.topbutton:focus {
  color: white !important;
}

@media only screen and (max-width: 576px) {
  .topbutton {
    bottom: 40px;
    height: 45px;
    line-height: 45px;
    width: 45px;
    font-size: 18px;
  }
}
/*-------------------------------------------------
    [ ## Site Navigation ]
*/
.site-header {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  padding: 10px 0;
}
.site-header .mobile-menu {
  display: none;
}

.navbar-brand.site-logo {
  padding: 8px 0;
}

.navigation-area {
  padding: 0px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mainmenu-wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mainmenu-wrap .menu ul {
  margin-bottom: 0;
  padding-left: 0px;
}
.mainmenu-wrap .menu ul li {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.mainmenu-wrap .menu > ul > li > a {
  color: black;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 20px;
  text-transform: capitalize;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.mainmenu-wrap .menu > ul > li > a:hover, .mainmenu-wrap .menu > ul > li > a.active {
  color: #F8E100 !important;
}
.mainmenu-wrap .menu > ul > li:last-child > a {
  padding-right: 0;
}
.mainmenu-wrap .menu > ul > li > ul.dropdown-content {
  position: absolute;
  width: 200px;
  left: 0;
  top: calc(100% + 16px);
  z-index: 999;
  border-top: 3px solid #63b32e;
  visibility: hidden;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
}
.mainmenu-wrap .menu > ul > li > ul.dropdown-content > li:hover > a {
  color: #63b32e;
  padding-left: 20px;
}
.mainmenu-wrap .menu > ul > li.dropdown-trigger:hover > ul.dropdown-content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.mainmenu-wrap .menu > ul > li.dropdown-trigger:after {
  content: '\f107';
  font-family: fontAwesome;
  padding-left: 5px;
}

/* [5.3 Sticky header] */
#sticky-header {
  display: none;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
#sticky-header .site-header {
  background-color: white;
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.15);
  position: relative;
  border-bottom: 0px solid;
  padding: 4px 0;
}
#sticky-header .site-header .site-logo-block {
  width: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
#sticky-header .site-navigation {
  padding-top: 0;
  padding-bottom: 0;
}
#sticky-header .site-navigation .navigation-area {
  min-height: 50px;
}
#sticky-header .site-navigation .navigation-area .mainmenu-wrap .menu > ul > li > a {
  font-size: 15px;
}
#sticky-header .site-navigation .navigation-area .mainmenu-wrap .menu ul > li > a.btn-default:hover, #sticky-header .site-navigation .navigation-area .mainmenu-wrap .menu ul > li > a.btn-default:focus, #sticky-header .site-navigation .navigation-area .mainmenu-wrap .menu ul > li > a.btn-default.active {
  background-color: #293b5f;
  color: white !important;
}

@media only screen and (max-width: 992px) {
  .site-header {
    padding: 5px 15px;
    position: relative;
    overflow: hidden;
  }
  .site-header .mobile-menu {
    display: block;
    height: 70px;
  }
  .site-header .mobile-logo {
    top: 2px;
  }
  .site-header .mobile-logo img {
    width: 80px;
  }
  .site-header .site-navigation {
    display: none;
  }
  .site-header .mean-container .mean-nav ul li a {
    color: black;
    display: block;
    float: none;
    font-size: 14px;
    padding: 15px 20px;
    width: auto;
    font-family: "Poppins", sans-serif;
  }
  .site-header .mean-container .mean-nav ul li a.btn-default {
    background-color: transparent;
    color: black !important;
    height: auto;
    padding: 15px 20px;
    line-height: normal;
  }
  .site-header .mean-container .mean-nav ul li a:hover {
    color: #F8E100 !important;
  }
}
@media only screen and (max-width: 768px) {
  .site-header .mean-container .mean-nav ul li a {
    font-size: 13px;
    padding: 12px 20px;
  }
}
/*-----------------------------------------------------------------------
    # All Hero Section
*/
.hero-section {
  position: relative;
  background-position: left top;
  height: 1030px;
  padding: 200px 0 80px;
}
@media only screen and (max-width: 1199px) {
  .hero-section {
    height: 850px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section {
    background-position: 50% top;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section {
    background-position: top 80%;
    height: auto;
    padding: 120px 0 100px;
  }
}
@media only screen and (max-width: 480px) {
  .hero-section {
    padding: 80px 0 100px;
  }
}
.hero-section .element-group > .element {
  top: 0px;
  left: 0px;
  -webkit-animation: linear bt-bottomTop-40 4s infinite;
  animation: linear bt-bottomTop-40 4s infinite;
  position: absolute;
}
@media only screen and (max-width: 1620px) {
  .hero-section .element-group > .element {
    display: none;
  }
}
.hero-section > .hero-section-content {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hero-section .hero-content {
  text-align: right;
  padding-top: 10px;
}
.hero-section .hero-content .hero-title {
  font-size: 60px;
  font-weight: 700;
  color: black;
  margin-bottom: 30px;
  line-height: 1.2;
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-content .hero-title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-content .hero-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .hero-section .hero-content .hero-title {
    font-size: 30px;
  }
}
.hero-section .hero-content .hero-title > span {
  color: #F8E100;
}
.hero-section .hero-content p {
  font-size: 16px;
  font-weight: normal;
  color: black;
  padding-left: 312px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-content p {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-content p {
    padding-left: 0px;
  }
}
@media only screen and (max-width: 480px) {
  .hero-section .hero-content p {
    margin-bottom: 30px;
  }
}

/*-------------------------------------------------------------
    # Featured
*/
.feature-section {
  padding: 95px 0 100px;
}
@media only screen and (max-width: 768px) {
  .feature-section {
    padding: 75px 0 80px;
  }
}

.features-items-list {
  margin-bottom: -30px;
  padding-top: 10px;
}

.features-item {
  margin-bottom: 30px;
  border: 1px solid #e1e1e1;
  text-align: center;
  padding: 30px 10px;
  -webkit-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
}
.features-item .icon {
  min-height: 35px;
  line-height: 35px;
  color: #b9b9b9;
  font-size: 24px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.features-item p {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.3em;
  color: #293b5f;
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .features-item p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .features-item p {
    font-size: 15px;
  }
}
.features-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 992px) {
  .feature-section .features-items-list > [class*='col-'] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 520px) {
  .feature-section .features-items-list > [class*='col-'] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/*-------------------------------------------------
    # Page Layouts
*/
.demo-items-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.demo-items-list .single-demo {
  width: 25%;
  padding: 0 30px;
}
@media only screen and (max-width: 1366px) {
  .demo-items-list .single-demo {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .demo-items-list .single-demo {
    width: 33.33%;
  }
}
@media only screen and (max-width: 768px) {
  .demo-items-list .single-demo {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .demo-items-list .single-demo {
    width: 100%;
  }
}

.extra-rich-section {
  background-color: #141414;
  padding: 95px 0 50px;
}
@media only screen and (max-width: 768px) {
  .extra-rich-section {
    padding: 75px 0 30px;
  }
}
.extra-rich-section .section-header {
  margin-bottom: 60px;
}
.extra-rich-section .section-header .section-title {
  color: white;
}
.extra-rich-section .single-demo > h3 {
  color: white;
}
.extra-rich-section .single-demo .demo-thumb a:hover .overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.demos-section {
  padding-bottom: 40px;
  position: relative;
  margin-top: -25px;
}
@media only screen and (max-width: 991px) {
  .demos-section {
    margin-top: 0px;
  }
}
.demos-section:before {
  position: absolute;
  content: "";
  left: 0;
  top: -260px;
  width: 100%;
  background-image: url(assets/images/element/demo-bg.png);
  height: 700px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 991px) {
  .demos-section:before {
    top: -100px;
  }
}
@media only screen and (max-width: 575px) {
  .demos-section:before {
    display: none;
  }
}

.single-demo {
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .single-demo {
    margin-bottom: 25px;
  }
}
.single-demo .demo-thumb img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-demo .demo-thumb a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-demo .demo-thumb a .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-demo .demo-thumb a .overlay span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: black;
  margin-bottom: 0px;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: normal;
  height: 45px;
  line-height: 45px;
  padding: 0 25px;
  position: relative;
  background-color: white;
  z-index: 1;
  margin-top: 40px;
  transition: all 0.3s;
  opacity: 0;
}
.single-demo .demo-thumb a .overlay span:before {
  top: 0px;
  width: 0;
  right: 0;
  z-index: -1;
  bottom: 0px;
  content: '';
  position: absolute;
  background-color: #F8E100;
  -webkit-transition: width 0.2s linear;
  transition: width 0.2s linear;
}
.single-demo .demo-thumb a .overlay span:hover {
  color: white;
}
.single-demo .demo-thumb a .overlay span:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.single-demo .demo-thumb a:hover {
  margin-top: -15px;
}
.single-demo .demo-thumb a:hover .overlay {
  background-color: rgba(0, 0, 0, 0.7);
}
.single-demo .demo-thumb a:hover .overlay > span {
  margin-top: 0;
  opacity: 1;
}
.single-demo > h3 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 25px;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  color: black;
}
@media only screen and (max-width: 768px) {
  .single-demo > h3 {
    font-size: 16px;
    margin-top: 15px;
  }
}
.single-demo > h3 a:hover,
.single-demo > h3 a:focus {
  color: #F8E100;
}

.promo-section {
  color: white;
  position: relative;
  overflow: hidden;
  background-color: #140a41;
}
.promo-section .promo-content {
  padding-top: 130px;
}
.promo-section .promo-content h2 {
  color: white;
  font-size: 36px;
  font-weight: normal;
  line-height: 1.4em;
  margin-bottom: 20px;
  font-weight: 700;
}
.promo-section .promo-content h2 > span {
  display: block;
  color: #F8E100;
}
.promo-section .promo-thumbs-contnet {
  min-height: 500px;
  position: relative;
  width: 100%;
}
.promo-section .promo-thumbs-contnet > .thumb {
  bottom: 0;
  position: absolute;
}
.promo-section .promo-thumbs-contnet > .thumb:nth-child(1) {
  left: 15px;
}
.promo-section .promo-thumbs-contnet > .thumb:nth-child(2) {
  z-index: 5;
  right: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.promo-section .promo-thumbs-contnet > .thumb:nth-child(3) {
  right: -185px;
}
.promo-section .promo-thumbs-contnet > .thumb img {
  border-radius: 10px 10px 0 0;
}

.fact-counters-section {
  background-color: #141414;
  padding-top: 100px;
}
@media only screen and (max-width: 768px) {
  .fact-counters-section {
    padding-top: 75px;
  }
}
.fact-counters-section .section-title {
  color: #fff;
  padding: 0 20px;
}
.fact-counters-section .tg-promo-number {
  text-align: center;
  margin-bottom: 45px;
}
.fact-counters-section .tg-promo-number .odometer-wrap {
  font-size: 54px;
  font-weight: 700;
  color: white;
  line-height: 1em;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.025em;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .fact-counters-section .tg-promo-number .odometer-wrap {
    font-size: 42px;
    margin-bottom: 15px;
  }
}
.fact-counters-section .tg-promo-number .promo-title {
  font-size: 16px;
  font-weight: 500;
  color: #bababa;
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
}
.fact-counters-section .thumb-area {
  text-align: center;
  padding-top: 50px;
}
@media only screen and (max-width: 768px) {
  .fact-counters-section .thumb-area {
    padding-top: 30px;
  }
}






.recipe-section {
  background-color: #f8f8f8;
  padding: 100px 0 75px;
  overflow: hidden;
}
.tw{
  color: white!important;
}
@media only screen and (max-width: 768px) {
  .recipe-section {
    padding: 75px 0 50px;
  }
}
.recipe-section .section-header {
  padding: 0 25px;
}
@media only screen and (max-width: 768px) {
  .recipe-section .section-header {
    padding: 0;
  }
}
.recipe-section .section-header p {
  padding: 0 25px;
}
@media only screen and (max-width: 768px) {
  .recipe-section .section-header p {
    padding: 0;
  }
}
.recipe-section .recipe-carousel-area {
  margin: 0 -60px;
}
@media only screen and (max-width: 575px) {
  .recipe-section .recipe-carousel-area {
    margin: 0;
  }
}
.recipe-section .single-demo {
  margin-bottom: 0;
  padding: 0 15px 20px;
}
.recipe-section .single-demo .demo-thumb a {
  display: inline-block;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}
.recipe-section .single-demo .demo-thumb a:hover {
  margin-top: 0px;
}

.recipe-section .element-group > .element {

  -webkit-animation: linear bt-bottomTop-40 4s infinite;
  animation: linear bt-bottomTop-40 4s infinite;
  position: absolute;
}
@media only screen and (max-width: 1620px) {
  .recipe-section .element-group > .element {
    display: none;
  }
}

.cont1{

}
.cont2{
  position: absolute;
}

.reservation-section {
  padding-top: 100px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .reservation-section {
    padding-top: 80px;
  }
}
.reservation-section .element-group > .element.one {
  bottom: 180px;
  right: 0px;
  -webkit-animation: linear bt-bottomTop-40 4s infinite;
  animation: linear bt-bottomTop-40 4s infinite;
  position: absolute;
}
@media only screen and (max-width: 1366px) {
  .reservation-section .element-group > .element.one {
    display: none;
  }
}
.reservation-section .element-group > .element.two {
  top: -120px;
  left: 0px;
  -webkit-animation: linear bt-bottomTop-40 4s infinite;
  animation: linear bt-bottomTop-40 4s infinite;
  position: absolute;
}
@media only screen and (max-width: 991px) {
  .reservation-section .element-group > .element.two {
    display: none;
  }
}
.reservation-section .mock-up-thumb {
  text-align: right;
}
@media only screen and (max-width: 992px) {
  .reservation-section .mock-up-thumb {
    text-align: left;
    margin-top: 60px;
  }
}
.reservation-section .reservation-pages-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 480px) {
  .reservation-section .reservation-pages-link {
    display: block;
  }
}
.reservation-section .reservation-pages-link > a {
  color: white;
  background-color: black;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 5px);
  flex: 0 0 calc(50% - 5px);
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  padding: 14px 20px;
}
@media only screen and (max-width: 480px) {
  .reservation-section .reservation-pages-link > a {
    margin-right: 0;
  }
}
.reservation-section .reservation-pages-link > a:nth-child(2n) {
  margin-right: 0;
}
.reservation-section .extra-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 100px;
}
@media only screen and (max-width: 768px) {
  .reservation-section .extra-feature {
    padding-top: 80px;
  }
}
.reservation-section .extra-feature .single-extra-feature {
  width: 20%;
  background-color: #fafafa;
  padding: 40px 35px 45px;
}
@media only screen and (max-width: 1366px) {
  .reservation-section .extra-feature .single-extra-feature {
    padding: 35px 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .reservation-section .extra-feature .single-extra-feature {
    width: 33.33%;
  }
}
@media only screen and (max-width: 768px) {
  .reservation-section .extra-feature .single-extra-feature {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .reservation-section .extra-feature .single-extra-feature {
    width: 100%;
  }
}
.reservation-section .extra-feature .single-extra-feature:nth-child(2n) {
  background-color: #f5f5f5;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .reservation-section .extra-feature .single-extra-feature:nth-child(2n) {
    background-color: #fafafa;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .reservation-section .extra-feature .single-extra-feature:nth-child(4n - 2) {
    background-color: #f5f5f5;
  }
  .reservation-section .extra-feature .single-extra-feature:nth-child(4n - 1) {
    background-color: #f5f5f5;
  }
}
.reservation-section .extra-feature .single-extra-feature .icon {
  min-height: 55px;
  padding-bottom: 25px;
}
.reservation-section .extra-feature .single-extra-feature .title {
  font-size: 21px;
  font-weight: 700;
  color: black;
  margin-bottom: 17px;
}
@media only screen and (max-width: 1366px) {
  .reservation-section .extra-feature .single-extra-feature .title {
    font-size: 18px;
  }
}
.reservation-section .extra-feature .single-extra-feature p {
  font-size: 14px;
  color: #727272;
  line-height: 1.6;
}





/* [ ### Reservation ] */
.contactbox{
  
  background-color: white;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
  padding: 40px 70px 60px;
}

.reservation-block .form-group {
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .reservation-block .form-group {
    margin-bottom: 20px;
  }
}
.reservation-block .form-controllar:focus, .reservation-block .form-controllar:active,
.reservation-block .select-custom:focus,
.reservation-block .select-custom:active {
  border-color: #c51c23 !important;
}
.reservation-block.style-one {
  background-position: top right;
  position: relative;
  background-color: #EFEFF1;
}
.reservation-block.style-one .bg-image-right {
  position: absolute;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: right center;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .reservation-block.style-one .bg-image-right {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .reservation-block.style-one .element-group > .element {
    display: none;
  }
}
.reservation-block.style-one .element-group > .element.one {
  top: 0;
  left: calc(50% - 725px);
  z-index: 2;
  -webkit-animation: linear bt-leftRight-20 2.5s infinite;
  animation: linear bt-leftRight-20 2.5s infinite;
}
@media only screen and (max-width: 1199px) {
  .reservation-block.style-one .element-group > .element.one {
    left: calc(50% - 660px);
  }
}
.reservation-block.style-one .element-group > .element.two {
  bottom: 20px;
}
.reservation-block.style-one .element-group > .element.three {
  top: 55px;
  left: calc(50% - 725px);
  z-index: 2;
  -webkit-animation: linear bt-bottomTop-40 3.5s infinite;
  animation: linear bt-bottomTop-40 3.5s infinite;
}
@media only screen and (max-width: 1199px) {
  .reservation-block.style-one .element-group > .element.three {
    left: calc(50% - 650px);
  }
}
.reservation-block.style-one .reservation-form-area {
  background-color: white;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
  padding: 40px 70px 60px;
}
@media only screen and (max-width: 1199px) {
  .reservation-block.style-one .reservation-form-area {
    padding: 30px 30px 50px;
  }
}
@media only screen and (max-width: 575px) {
  .reservation-block.style-one .reservation-form-area {
    padding: 30px 15px 50px;
  }
}
.reservation-block.style-one .reservation-form-area .btn-default {
  margin-top: 25px;
}
.reservation-block.style-one .form-group {
  margin-bottom: 35px;
}
@media only screen and (max-width: 1199px) {
  .reservation-block.style-one .form-group {
    margin-bottom: 25px;
  }
}
.reservation-block.style-one .form-controllar {
  padding: 2px 0 5px;
}
.reservation-block.style-two .form-controllar::-webkit-input-placeholder, .reservation-block.style-three .form-controllar::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.reservation-block.style-two .form-controllar:-moz-placeholder, .reservation-block.style-three .form-controllar:-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.reservation-block.style-two .form-controllar::-moz-placeholder, .reservation-block.style-three .form-controllar::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.reservation-block.style-two .form-controllar:-ms-input-placeholder, .reservation-block.style-three .form-controllar:-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.reservation-block.style-two .form-controllar:focus, .reservation-block.style-two .form-controllar:active,
.reservation-block.style-two .select-custom:focus,
.reservation-block.style-two .select-custom:active, .reservation-block.style-three .form-controllar:focus, .reservation-block.style-three .form-controllar:active,
.reservation-block.style-three .select-custom:focus,
.reservation-block.style-three .select-custom:active {
  color: white;
}
.reservation-block.style-two .date:after, .reservation-block.style-three .date:after {
  color: white;
  opacity: 0.7;
}
.reservation-block.style-two .select-custom .current, .reservation-block.style-three .select-custom .current {
  color: white;
  opacity: 1;
}
.reservation-block.style-two .select-custom .list, .reservation-block.style-three .select-custom .list {
  color: black;
}
.reservation-block.style-two .select-custom:after, .reservation-block.style-three .select-custom:after {
  color: white;
  top: 1px;
}
.reservation-block.style-two .form-controllar,
.reservation-block.style-two .select-custom {
  border: 2px solid #535250;
  border-radius: 40px;
  padding: 7px 30px;
  color: white;
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  .reservation-block.style-two .form-controllar,
  .reservation-block.style-two .select-custom {
    padding: 7px 20px;
  }
}
.reservation-block.style-two .date:after {
  right: 27px;
}
@media only screen and (max-width: 991px) {
  .reservation-block.style-two .date:after {
    right: 18px;
  }
}
.reservation-block.style-two .select-custom {
  padding: 0 30px;
  line-height: 48px;
}
@media only screen and (max-width: 575px) {
  .reservation-block.style-two .select-custom {
    padding: 0px 20px;
  }
}
.reservation-block.style-two .select-custom:after {
  right: 25px;
}
@media only screen and (max-width: 991px) {
  .reservation-block.style-two .select-custom:after {
    right: 17px;
  }
}
.reservation-block.style-two textarea {
  min-height: 90px;
  border-radius: 25px !important;
}
.reservation-block.style-three:before, .reservation-block.style-five:before {
  opacity: 0.8;
}
.reservation-block.style-three .form-group, .reservation-block.style-five .form-group {
  margin-bottom: 40px;
}
@media only screen and (max-width: 575px) {
  .reservation-block.style-three .form-group, .reservation-block.style-five .form-group {
    margin-bottom: 25px;
  }
}
.reservation-block.style-three .form-controllar,
.reservation-block.style-three .select-custom, .reservation-block.style-five .form-controllar,
.reservation-block.style-five .select-custom {
  border-color: #bababa;
}
.reservation-block.style-three .form-controllar:focus,
.reservation-block.style-three .select-custom:focus, .reservation-block.style-five .form-controllar:focus,
.reservation-block.style-five .select-custom:focus {
  border-color: #c51c23;
}
.reservation-block.style-three .form-controllar, .reservation-block.style-five .form-controllar {
  padding: 2px 0 5px;
  font-size: 15px;
}
.reservation-block.style-three .btn-default, .reservation-block.style-five .btn-default {
  margin-top: 25px;
}
.reservation-block.style-three .select-custom, .reservation-block.style-five .select-custom {
  font-size: 15px;
  line-height: 50px;
}
.reservation-block.style-three .select-custom .current, .reservation-block.style-five .select-custom .current {
  color: white;
}
.reservation-block.style-three .res-opening-time, .reservation-block.style-four .res-opening-time {
  height: 100%;
  text-align: center;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 70px 15px;
}
@media only screen and (max-width: 991px) {
  .reservation-block.style-three .res-opening-time, .reservation-block.style-four .res-opening-time {
    margin-top: 100px;
    height: auto;
  }
}
.reservation-block.style-three .res-opening-time .icon-divider, .reservation-block.style-four .res-opening-time .icon-divider {
  font-size: 60px;
  line-height: 1em;
  color: #c51c23;
  margin-bottom: 55px;
  padding-top: 20px;
}
@media only screen and (max-width: 991px) {
  .reservation-block.style-three .res-opening-time .icon-divider, .reservation-block.style-four .res-opening-time .icon-divider {
    margin-bottom: 40px;
    padding-top: 10px;
  }
}
.reservation-block.style-three .res-opening-time .divider, .reservation-block.style-four .res-opening-time .divider {
  padding: 30px 0 50px;
}
@media only screen and (max-width: 991px) {
  .reservation-block.style-three .res-opening-time .divider, .reservation-block.style-four .res-opening-time .divider {
    padding: 15px 0 35px;
  }
}
.reservation-block.style-three .res-opening-time .opening-time-group, .reservation-block.style-four .res-opening-time .opening-time-group {
  margin-bottom: 25px;
}
.reservation-block.style-three .res-opening-time .opening-time-group,
.reservation-block.style-three .res-opening-time .contact-info, .reservation-block.style-four .res-opening-time .opening-time-group,
.reservation-block.style-four .res-opening-time .contact-info {
  text-transform: uppercase;
}
.reservation-block.style-three .res-opening-time .opening-time-group .title,
.reservation-block.style-three .res-opening-time .contact-info .title, .reservation-block.style-four .res-opening-time .opening-time-group .title,
.reservation-block.style-four .res-opening-time .contact-info .title {
  font-size: 16px;
  font-weight: 600;
  color: #bababa;
  margin-bottom: 5px;
}
@media only screen and (max-width: 575px) {
  .reservation-block.style-three .res-opening-time .opening-time-group .title,
  .reservation-block.style-three .res-opening-time .contact-info .title, .reservation-block.style-four .res-opening-time .opening-time-group .title,
  .reservation-block.style-four .res-opening-time .contact-info .title {
    font-size: 14px;
  }
}
.reservation-block.style-three .res-opening-time .opening-time-group .contact-no,
.reservation-block.style-three .res-opening-time .opening-time-group .time,
.reservation-block.style-three .res-opening-time .contact-info .contact-no,
.reservation-block.style-three .res-opening-time .contact-info .time, .reservation-block.style-four .res-opening-time .opening-time-group .contact-no,
.reservation-block.style-four .res-opening-time .opening-time-group .time,
.reservation-block.style-four .res-opening-time .contact-info .contact-no,
.reservation-block.style-four .res-opening-time .contact-info .time {
  font-size: 24px;
  font-family: "Playfair Display", serif;
  color: white;
  font-weight: normal;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .reservation-block.style-three .res-opening-time .opening-time-group .contact-no,
  .reservation-block.style-three .res-opening-time .opening-time-group .time,
  .reservation-block.style-three .res-opening-time .contact-info .contact-no,
  .reservation-block.style-three .res-opening-time .contact-info .time, .reservation-block.style-four .res-opening-time .opening-time-group .contact-no,
  .reservation-block.style-four .res-opening-time .opening-time-group .time,
  .reservation-block.style-four .res-opening-time .contact-info .contact-no,
  .reservation-block.style-four .res-opening-time .contact-info .time {
    font-size: 22px;
  }
}
.reservation-block.style-three .res-opening-time .opening-time-group .contact-no > sup,
.reservation-block.style-three .res-opening-time .opening-time-group .time > sup,
.reservation-block.style-three .res-opening-time .contact-info .contact-no > sup,
.reservation-block.style-three .res-opening-time .contact-info .time > sup, .reservation-block.style-four .res-opening-time .opening-time-group .contact-no > sup,
.reservation-block.style-four .res-opening-time .opening-time-group .time > sup,
.reservation-block.style-four .res-opening-time .contact-info .contact-no > sup,
.reservation-block.style-four .res-opening-time .contact-info .time > sup {
  font-size: 60%;
  top: -6px;
  font-family: "Poppins", sans-serif;
}
.reservation-block.style-three .section-title.section-default-two {
  margin-bottom: 25px;
}
.reservation-block.style-three .form-controllar {
  color: white;
}
.reservation-block.style-three .res-opening-time {
  background-color: rgba(0, 0, 0, 0.5);
}
.reservation-block.style-four {
  position: relative;
}
.reservation-block.style-four .element-group > .element.one {
  top: -75px;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .reservation-block.style-four .element-group > .element.one {
    display: none;
  }
}
.reservation-block.style-four .element-group > .element.two {
  bottom: 20px;
  left: 20px;
}
.reservation-block.style-four .res-opening-time {
  padding: 0;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .reservation-block.style-four .res-opening-time {
    margin-top: 0;
    margin-bottom: 100px;
  }
}
.reservation-block.style-four .res-opening-time .res-right-img {
  position: absolute;
  right: -300px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
}
@media only screen and (max-width: 1800px) {
  .reservation-block.style-four .res-opening-time .res-right-img {
    display: none;
  }
}
.reservation-block.style-four .res-opening-time-inner {
  background-color: #222222;
  display: block;
  padding: 90px 20px;
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.reservation-block.style-four .res-opening-time-inner:before, .reservation-block.style-four .res-opening-time-inner:after {
  position: absolute;
  width: 100%;
  height: 120px;
  content: "";
  background-repeat: repeat-x;
  z-index: 1;
  opacity: 0.05;
  left: 0;
}
.reservation-block.style-four .res-opening-time-inner:before {
  top: 0;
  background-position: top center;
  background-image: url("../images/bg/re-pattent-top.png");
}
.reservation-block.style-four .res-opening-time-inner:after {
  background-position: bottom center;
  background-image: url("../images/bg/re-pattent-bottom.png");
  bottom: 0;
}
.reservation-block.style-four .res-opening-time-inner .divider {
  padding: 20px 0 60px;
}
@media only screen and (max-width: 991px) {
  .reservation-block.style-four .res-opening-time-inner .divider {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .reservation-block.style-four .res-opening-time-inner .divider {
    padding-bottom: 15px;
  }
}
.reservation-block.style-four .res-opening-time-inner .opening-time-group + .divider {
  padding-top: 32px;
}
.reservation-block.style-four .res-opening-time-inner .contact-info {
  margin-top: -10px;
}
@media only screen and (max-width: 991px) {
  .reservation-block.style-four .res-opening-time-inner .contact-info {
    margin-top: 0;
  }
}
@media only screen and (max-width: 575px) {
  .reservation-block.style-four .res-opening-time-inner .contact-info {
    margin-top: 20px;
  }
}
.reservation-block.style-four .reservation-form .btn-default {
  margin-top: 30px;
}
.reservation-block.style-four .reservation-form .btn-default:hover, .reservation-block.style-four .reservation-form .btn-default:focus {
  background-color: black;
  color: white;
}
.reservation-block.style-five {
  position: relative;
}
.reservation-block.style-five > .res-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(50% - 15px);
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .reservation-block.style-five > .res-bg {
    display: none;
  }
}
.reservation-block.style-five .reservation-form {
  padding-top: 10px;
}
@media only screen and (max-width: 1199px) {
  .reservation-block.style-five .reservation-form {
    padding-top: 0;
  }
}
.reservation-block.style-five .form-controllar {
  padding: 2px 0 5px;
}
.reservation-block.style-five .btn-default {
  margin-top: 20px;
}
.reservation-block.style-five .select-custom {
  line-height: 50px;
}
.reservation-block.style-five .select-custom .current {
  color: #666666;
}
.reservation-block.style-five.full-width-style > .res-bg {
  width: 50%;
}
@media only screen and (max-width: 991px) {
  .reservation-block.style-five.full-width-style > .res-bg {
    position: relative;
    height: 500px;
    width: 100%;
    margin-bottom: 0px;
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  .reservation-block.style-five.full-width-style > .res-bg {
    height: 350px;
  }
}
.reservation-block.style-five.full-width-style .reservation-form-area {
  padding-left: 55px;
  padding-right: 55px;
}
@media only screen and (max-width: 575px) {
  .reservation-block.style-five.full-width-style .reservation-form-area {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .reservation-block.style-five.full-width-style .reservation-form-area {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.reservation-block.style-five.full-width-style .reservation-form-area .section-title {
  margin-bottom: 5px;
}
.reservation-block.reservation-home-one:before {
  opacity: 0.7;
}
.reservation-block.reservation-home-one .res-opening-time {
  background-color: rgba(0, 0, 0, 0.8);
}
.reservation-block .date {
  position: relative;
}
.reservation-block .date:after {
  content: '\f073';
  font-family: "Font Awesome 5 Free";
  display: block;
  pointer-events: none;
  position: absolute;
  right: 0px;
  top: 50%;
  color: #8F8F8F;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  font-weight: 800;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}






/*------------------------------------------------------------------
    # Site Footer
*/
.blabla{
  border: 1px solid #000;
  color: black;
}

.tomatofooter {
  right: 0px;
  position: absolute;
  -webkit-animation: linear bt-bottomTop-40 4s infinite;
  animation: linear bt-bottomTop-40 4s infinite;
}

@media only screen and (max-width: 1199px) {
  .tomatofooter {
    display: none;
  }
}


.pastafooter {
  left: auto;
  bottom: auto;
  position: absolute;
}

.site-footer {
  color: white;
  padding: 85px 0 100px;
}
@media only screen and (max-width: 768px) {
  .site-footer {
    padding: 70px 0 80px;
  }
}
.site-footer .footer-top-area .footer-content {
  padding: 0 35px;
}
@media only screen and (max-width: 768px) {
  .site-footer .footer-top-area .footer-content {
    padding: 0;
  }
}
.site-footer .footer-top-area .footer-content h2 {
  color: black;
  font-size: 60px;
  line-height: 1.22em;
  font-weight: 700;
  margin-bottom: 48px;
}
@media only screen and (max-width: 1199px) {
  .site-footer .footer-top-area .footer-content h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .site-footer .footer-top-area .footer-content h2 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 575px) {
  .site-footer .footer-top-area .footer-content h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 420px) {
  .site-footer .footer-top-area .footer-content h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
.site-footer .footer-top-area .footer-content h2 > span {
  color: #F8E100;
}
.site-footer .footer-top-area .footer-content .price {
  font-size: 16px;
  font-style: italic;
  margin-top: 13px;
}
.site-footer .footer-top-area .footer-content .btn-default:hover, .site-footer .footer-top-area .footer-content .btn-default:focus {
  background-color: white;
  color: #F8E100;
}
.site-footer .footer-copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
}
.site-footer .footer-copyright-area a:hover,
.site-footer .footer-copyright-area a:focus {
  color: #F8E100;
}




.cdbutton {
   background: #000;
   color: #fff;
   text-align: center;
   font-weight: bold;
   padding: 10px 30px;
   border-radius: 3px;
}

#cdoverlay {
   position: fixed;
   height: 100%; 
   width: 100%;
   top: 0;
   right: 0;  
   bottom: 0;
   left: 0;
   background: rgba(0,0,0,0.8);
   display: none;
   z-index: 999;
}

#cdpopup {
   max-width: 600px;
   width: 80%;
   max-height: 300px;
   height: 80%; 
   padding: 20px;
   position: relative;
   background: #fff;
   margin: 20px auto;
}

#cdclose {
   position: absolute;
   top: 10px;
   right: 10px;
   cursor: pointer;
   color: #000;
}




.scroll-touch {
  -webkit-overflow-scrolling: touch; /* Lets it scroll lazy */
}



