body {
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  margin: 0 auto;
  max-width: 100vw;
  -webkit-overflow-scrolling: touch;
  font-size: 15px;
  line-height: 24px;
  color: #333;
}

body.blanket-open {
  height: 100vh;
  overflow: hidden;  
}

* {
  box-sizing: border-box;
}

a {
  color: #5c28aa;
  text-decoration: underline;
}

a:hover {
  color: #000;
  text-decoration: none;
}

p {
  text-align: justify;
}

/* ================= */
/* HEADER */
/* ================= */

header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
}

@media screen and (min-width: 992px) {
  header {
    position: initial;
    width: auto;
  }
}

/* ================= */
/* LOGO */
/* ================= */

#logo {
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

#logo img {
  width: auto;
  height: 60px;
}

@media screen and (min-width: 992px) {
  #logo {
    margin-left: 0px;
  }

  #logo img {
    height: 70px;
    width: auto;
  }  
}

/* ================= */
/* TOP HEADER */
/* ================= */

#top-header {
  display: flex;
  justify-content: space-between;
}

/* ================= */
/* LANGUAGE MENU */
/* ================= */

ul.language-menu {
  list-style: none;
}

ul.language-menu li {
  display: inline-block;
  margin-left: 15px;
  margin-top: 15px;
}

/* ================= */
/* PAGE CONTENT */
/* ================= */

#page-content > .container {
  padding-top: 60px; 
}

@media screen and (min-width: 992px) {
  #page-content > .container {
    padding-top: 0px;
  }
}

/* ================= */
/* MENU */
/* ================= */

#menu {
  top: 0;
  left: 0;
  position: fixed;
  margin: 0;
  padding: 0;
  width: auto;
  max-width: 100vw;
  height: 100vh;
  padding-top: 70px;
  background-color: #5c28aa;
  z-index: 100;
  transform: translateX(-105%);
  transition: transform 500ms ease 0s;
  -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.16);
}

#menu ul {
  display: flex;
  margin: 0;
  margin-left: -15px;
  margin-right: -15px;
  padding: 0;
  flex-flow: column;
}

#menu.active {
  transform: translateX(0%);
}

#menu li {
  list-style: none;
}

#menu li a {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  padding: 0.5rem 0.9rem;
  -moz-transition: ease-in 0.3s border-bottom;
  -o-transition: ease-in 0.3s border-bottom;
  -webkit-transition: ease-in 0.3s border-bottom;
  transition: ease-in 0.3s border-bottom;  
  display: flex;
  align-items: center;
  text-decoration: none;
}

#menu li > a.active,
#menu li:hover > a {
  background-color: #7e54bd;
  text-decoration: none;
}

#menu .submenu {
  background-color: #fff;
  padding: 0;
  display: none;
  padding-left: 20px;
  max-width: calc(100% - 5px);
  box-sizing: content-box;
}

#menu .submenu li {
  margin-right: 0px;
  background-color: #5c28aa;
}

#menu li.has-submenu {
  position: relative;
}

#menu li.has-submenu.active .submenu {
  display: block;
}

#menu li.has-submenu:after {
  font-family: "Font Awesome 5 Pro"; 
  font-weight: 400; 
  content: "\f078";  
  position: absolute;
  top: 19px;
  right: 25px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 20px;
  pointer-events: none;
}

#menu li.has-submenu.active:after {
  content: "\f077"; 
}

#menu li.has-submenu.active a.submenu-trigger {
  border-bottom: 0;
}

#mobile-menu-btn {
  position: absolute;
  left: 15px;
  top: 18px;
  cursor: pointer;
}

#mobile-menu-btn span
{
  display: block;
  width: 30px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #5c28aa;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
}

#mobile-menu-btn span:first-child
{
  transform-origin: 0% 0%;
}

#mobile-menu-btn span:nth-of-type(3)
{
  transform-origin: 0% 100%;
}

#mobile-menu-btn.active span:nth-of-type(1)
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #5c28aa;
}

#mobile-menu-btn.active span:nth-of-type(2)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#mobile-menu-btn.active span:nth-of-type(3)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
  background: #5c28aa;
}

@media screen and (min-width : 992px) {
  #mobile-menu-btn {
    display: none;   
  }

  #menu > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #menu {
    margin: auto;
    width: auto;
    height: auto;
    z-index: 100;
    transform: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    position:-webkit-sticky; 
    position:sticky; 
    top:0;
    padding-top: 0;
  }

  #menu ul {
    flex-flow: row;
    margin: 0;
  }

  #menu li {
    margin-right: 20px;
  }

  #menu li.has-submenu:hover .submenu {
    display: block;
  }

  #menu li a {
    position: relative;
    height: 60px;
  }

  #menu .submenu {
    padding-left: 0px;
    position: absolute;
    -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.16);
    max-width: none;
  }

  #menu li.has-submenu:after {
    display: none;
  }

  #menu .submenu a {
    white-space: nowrap;
  }

  
  #menu li:hover > a::before {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0,0,0);
  }

  #menu li a.active::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    background: rgba(255,255,255,.11);
    border-top: 3px solid #25fff0;
    transform: translate3d(0,0,0)!important;
    transition: all .35s cubic-bezier(.05,.29,.11,1.54),height .3s ease;
    visibility: visible!important;
    opacity: 1;
    z-index: 1;
  }

  #menu li a::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    background: rgba(255,255,255,.11);
    border-top: 3px solid #25fff0;
    transform: translate3d(-100%,0,0);
    transition: all .35s cubic-bezier(.05,.29,.11,1.54),height .3s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
  }
}

/* ================= */
/* MENU SOCIAL */
/* ================= */

#menu-social {
  margin-top: 40px;
}

#menu-social a {
  color: #fff;
  margin-left: 10px;
  text-decoration: none;
}

#menu-social a:hover {
  text-decoration: none;
}

#menu-social .cart-btn {
  margin-right: 30px;
  position: relative;
}

#menu-social .cart-btn .cart-item-badge {
  position: absolute;
  bottom: -2px;
  right: -5px;
  background: red;
  height: 15px;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 10px;
  border-radius: 10px;
  font-size: 10px;  
}

@media screen and (min-width: 992px) {
  #menu-social {
    margin: 0;
  }
}

/* ================= */
/* SPECIAL OFFER */
/* ================= */

.special-offer {
  z-index: 2;
  margin-bottom: 20px;
}

.special-offer-detail-page {
  margin-top: 20px;
}

.special-offer-breadcrumbs {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 30px;
}

.special-offer-breadcrumbs .fal {
  margin-left: 10px;
  margin-right: 10px;
}

.special-offer-inner {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.special-offer-remove-filter {
  color: #27c6bc;
  cursor: pointer;
  margin-left: 5px;
  position: relative;
  font-size: 14px;
  font-weight: normal;
}

.special-offer-name {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  font-weight: 400;
  padding: 20px;
  font-size: 24px;
  line-height: 32px;
  z-index: 3;
  text-shadow: 0px 0px 30px rgba(0,0,0,1);
}

.special-offer-backdrop {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,.15);
  z-index: 2;
}

.special-offer-image {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  transition: all 0.5s ease;
  z-index: 1;
}

.special-offer-inner:hover .special-offer-image {
  transform: scale(1.2);
}

.special-offer-wrapper {
  margin-top: 10px;
  padding: 0 40px;
  z-index: 1;
}

.special-offer-sidebar {
  position: sticky;
  top: 80px;
}

.special-offer-sidebar-info,
.special-offer-price-info {
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.2);
  border-radius: 2px;
  padding: 12px 20px;
}

.special-offer-sidebar-info {
  margin-top: 30px;
}

.special-offer-categories {
  margin-top: 20px;
  margin-bottom: 20px;
}

.special-offer-filter {
  cursor: pointer;
  margin-right: 8px;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 15px;
  background-color: #27c6bc;
  color: #fff;
  border-color: #27c6bc;
  font-size: 15px;
  line-height: 1.5;
  border-width: 2px;
  font-weight: 500;
  transition: 250ms all ease-in-out;
  display: inline-block;

  background: 0 0; 
  position: relative;
  overflow: visible;
  border: none;
  z-index: 1;
}

.special-offer-filter:before {
  background: #27c6bc;
  border-color: #151515;
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 20px;
  transition: all .3s ease-in-out;
}

.special-offer-filter:after {
  border-color: #151515;
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-width: 2px;
  border-style: solid;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease 0s;
  transform: scale(1.05);
  will-change: transform;
  border-radius: 20px;
  z-index: -1;
}

.special-offer-filter.active:before,
.special-offer-filter:active:before,
.special-offer-filter:hover:before {
  opacity: 0;
  visibility: hidden;
  transform: scale(.9);
  transition-duration: .2s;
}

.special-offer-filter.active:after,
.special-offer-filter:active:after,
.special-offer-filter:hover:after {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-duration: .3s;
  transition-delay: .1s;
}

.special-offer-filter.active,
.special-offer-filter:active,
.special-offer-filter:hover {
  color: #151515;
  background-color: transparent;
  border: 0;
}

.special-offer-filter > span {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; 
}

.special-offer-detail img {
  max-width: 100%;
  height: auto;
}

.special-offer-detail {
  cursor: pointer;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  border-radius: 2px;
  margin-bottom: 15px;
  margin-top: 15px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 -1px 3px 0 rgba(0, 0, 0, 0.08);
}

.special-offer-detail:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);  
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.12), 0 -1px 2px 0 rgba(0, 0, 0, 0.08);
}

.special-offer-description {
  padding: 12px;
  height: 145px;
  position: relative;
}

.special-offer-description h4 {
  font-size: 17px;
}

.special-offer-price-info .form-group {
  margin-top: 20px;  
}

.special-offer-price-info .add-to-cart-btn {
  display: block;
}

.special-offer-price-info label.has-error .form-control {
  border-color: #f42121;
}

.special-offer-price-info label.has-error {
  color: #f42121;
}

.special-offer-price-info .add-to-cart-success {
  display: none;
  margin-bottom: 10px;
  padding: 5px;
  border: 2px solid #54c354;
  background-color: #a8eea8;  
}

.special-offer-price-info .add-to-cart-success.active {
  display: block;
}

.special-offer-price-info .book-btn {
  display: block;
  margin-top: 20px; 
}

.special-offer-price-info .special-offer-price {
  font-size: 25px;
  line-height: 37px;
  font-weight: 500;
}

.special-offer-description .special-offer-price {
  font-size: 17px;
  font-weight: 500;
}

.special-offer-price-info .special-offer-price .fas {
  color: #27c6bc;
  margin-right: 10px;
  font-size: 23px;
}

.special-offer-detail-page .special-offer-description-location {
  font-size: 18px;
}

.special-offer-detail-page .special-offer-description-location .fas {
  color: #27c6bc;
  margin-right: 10px;
  font-size: 16px;
}

.special-offer-description .special-offer-description-location .fas,
.special-offer-description .special-offer-price .fas {
  color: #27c6bc;
  margin-right: 7px;
  font-size: 15px;
}

.special-offer-description-bottom {
  position: absolute;
  bottom: 12px;
}

.special-offer-description p {
  margin-top: 10px;
  margin-bottom: 0px;
}

.special-offer-detail-image {
  height: 154px;
  background-position: center;
  background-size: cover;
  border-radius: 2px 2px 0 0;
}

.special-offer-detail-images img {
  height: 500px;
  width: auto; 
  padding: 0 1px;
}

.special-offer-detail-images iframe {
  height: 500px;
  padding: 0 1px;
}

.special-offer-detail-page h2 {
  border-bottom: 1px solid #e0e0e0;
  margin: 24px 0;
  padding: 24px 0;
}

.special-offer-description-content {
  margin: 24px 0;
  border-top: 1px solid #e0e0e0;
  padding: 24px 0;
}

.special-offer-filter-title {
  font-weight: 500;
  font-size: 16px;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .special-offer-wrapper {
    padding: 0;
  }
}

@media screen and (min-width: 992px) {
  .special-offer-inner {
    height: 360px;
  }

  .special-offer-wrapper {
    margin-top: 50px;
  }
}

/* ================= */
/* TEAM */
/* ================= */

.team-box {
  cursor: pointer;
}

.team-box > .vc_column-inner > .wpb_wrapper {
  box-shadow: 0 0 10px 0 rgba(0,0,0,.17);
  overflow: hidden;
}

.team-box > .vc_column-inner > .wpb_wrapper > .wpb_single_image {
  margin-bottom: 0px;
  overflow: hidden;
}

.team-box > .vc_column-inner > .wpb_wrapper > .wpb_single_image img {
  width: 100%;
  transition: all .3s ease;
  transform: scale(1.1);
  will-change: transform;
}

.team-box:hover > .vc_column-inner > .wpb_wrapper > .wpb_single_image img {
  transform: none;
}

.team-box > .vc_column-inner > .wpb_wrapper > .wpb_text_column {
  position: relative;
  margin-bottom: 0px;
  padding: 22px 15px 24px;
  text-align: center;
  background-color: #fff;
  transition: all .3s ease-in-out;
  height: 128px;
}

.team-box > .vc_column-inner > .wpb_wrapper > .wpb_text_column > .wpb_wrapper {
  z-index: 2;
  position: relative;  
}

.team-box > .vc_column-inner > .wpb_wrapper > .wpb_text_column:not(.team-box-email)::before {
  position: absolute;
  display: inline-block;
  content: '';
  transition: all .3s ease-in-out;
  text-align: center;
  top: -10px;
  left: 50%;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #fff;
  transform: translate3d(-50%,0,0);
  z-index: 1;
}

.team-box > .vc_column-inner > .wpb_wrapper > .wpb_text_column:not(.team-box-email)::after {
  position: absolute;
  content: '\f106';
  font-size: 18px;
  line-height: 27px;
  font-family: 'Font Awesome 5 Pro';  
  top: -10px;
  left: 50%;
  color: #1bdbce;
  z-index: 2;
  transform: translate3d(-50%,0,0);
  transition: transform .3s ease-in;
}

.team-box:hover > .vc_column-inner > .wpb_wrapper > .wpb_text_column:not(.team-box-email)::after {
  color: #fff;
  transform: translate3d(-50%,0,0) rotate(180deg);
}

.team-box:hover > .vc_column-inner > .wpb_wrapper > .wpb_text_column:not(.team-box-email)::before {
  background: #1bdbce;
}

.team-box:hover > .vc_column-inner > .wpb_wrapper > .wpb_text_column {
  background-color: #1bdbce;
}

.team-box > .vc_column-inner > .wpb_wrapper > .wpb_text_column h4 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 400;
}

.team-box:hover > .vc_column-inner > .wpb_wrapper > .wpb_text_column.team-box-email,
.team-box:hover > .vc_column-inner > .wpb_wrapper > .wpb_text_column h4,
.team-box:hover > .vc_column-inner > .wpb_wrapper > .wpb_text_column h5 {
  color: #fff;
}

.team-box > .vc_column-inner > .wpb_wrapper > .wpb_text_column h5 {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 500;
  color: #1bdbce;
}

.team-box > .vc_column-inner > .wpb_wrapper > .wpb_text_column.team-box-email {
  height: 0px;
  padding: 0px;
}

.team-box.active > .vc_column-inner > .wpb_wrapper > .wpb_text_column.team-box-email {
  height: auto;
  padding: 0px 15px 24px;
}

/* ================= */
/* ADDRESS */
/* ================= */

.address-box {
  border: 1px solid #e1e1e1;
}

.address-box .address-box-map > .vc_column-inner {
  padding: 0;
}

.address-box .wpb_content_element {
  margin: 0;
}

.address-box .address-box-info {
  padding: 50px;
}

.address-box .address-box-info h4 {
  margin-bottom: 30px;
}

.address-box .address-box-info p {
  position: relative;
  margin-left: 30px;
  font-size: 19px;
}

.address-box .address-box-info p .fal,
.address-box .address-box-info p .fas {
  position: absolute;
  left: -30px;
  color: #1bdbce;
  top: 6px;
}

/* ================= */
/* FORMS */
/* ================= */

span.wpcf7-not-valid-tip {
  color: #e65353;
}

.wpcf7 div.wpcf7-response-output {
  margin: 0;
}

.wpcf7 form.invalid div.wpcf7-response-output, 
.wpcf7 form.unaccepted div.wpcf7-response-output {
  border-color: #ffc0c0;
  background-color: #ffc0c0;
}

.wpcf7 form.sent div.wpcf7-response-output {
  border-color: #cae2c0;
  background-color: #cae2c0;
}

.form-group .wpcf7-form-control-wrap {
  position: initial;
}

.form-group label {
  position: relative;
  width: 100%;
}

span.wpcf7-not-valid-tip {
  color: #ff9999!important;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
  border-color: #ffc0c0!important;
}

.form-group .wpcf7-not-valid-tip {
  position: absolute;
  top: 0;
  right: 0;  
}

.form-group .form-control {
  border-radius: 0;
}

/* ================= */
/* BUTTONS */
/* ================= */


.btn.btn-primary {
  padding: 16px 33px;
  background-color: transparent;
  color: #151515;
  border-color: #151515;
  font-size: 16px;
  line-height: 1.5;
  border-width: 2px;
  font-weight: 500;
  border-radius: 0;
  transition: 250ms all ease-in-out;
  min-width: 180px;
  text-decoration: none;
}

.btn.btn-primary:active,
.btn.btn-primary:hover {
  color: #fff;
  background-color: #27c6bc;
  border-color: #27c6bc;
  border-width: 2px;
}

.btn.btn-secondary,
.vc_btn3-container .vc_general.vc_btn3 {
  padding: 16px 33px;
  background-color: #27c6bc;
  color: #fff;
  border-color: #27c6bc;
  font-size: 16px;
  line-height: 1.5;
  border-width: 2px;
  font-weight: 500;
  border-radius: 0; 
  transition: 250ms all ease-in-out;
  min-width: 180px;

  background: 0 0; 
  position: relative;
  overflow: visible;
  border: none;
  z-index: 1;
  text-decoration: none;
}

.btn.btn-secondary::before,
.vc_btn3-container .vc_general.vc_btn3:before {
  background: #27c6bc;
  border-color: #151515;
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: all .3s ease-in-out;
}

.btn.btn-secondary::after,
.vc_btn3-container .vc_general.vc_btn3:after {
  border-color: #151515;
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-width: 2px;
  border-style: solid;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease 0s;
  transform: scale(1.05);
  will-change: transform;
  z-index: -1;
}

.btn.btn-secondary:active::before,
.btn.btn-secondary:hover::before,
.vc_btn3-container .vc_general.vc_btn3:active:before,
.vc_btn3-container .vc_general.vc_btn3:hover:before {
  opacity: 0;
  visibility: hidden;
  transform: scale(.9);
  transition-duration: .2s;
}

.btn.btn-secondary:active::after,
.btn.btn-secondary:hover::after,
.vc_btn3-container .vc_general.vc_btn3:active:after,
.vc_btn3-container .vc_general.vc_btn3:hover:after {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-duration: .3s;
  transition-delay: .1s;
}

.btn.btn-secondary:active,
.btn.btn-secondary:hover,
.vc_btn3-container .vc_general.vc_btn3:active,
.vc_btn3-container .vc_general.vc_btn3:hover {
  color: #151515;
  background-color: transparent;
  border: 0;
}

.btn-secondary.focus, 
.btn-secondary:focus,
.btn-primary.focus, 
.btn-primary:focus {
  box-shadow: none;
}

/* ================= */
/* SERVICES */
/* ================= */

.service-box.vc_col-md-4 {
  margin: 40px 15px;
  width: calc(100% - 30px);
}

.service-box > .vc_column-inner > .wpb_wrapper {
  display: flex;
  padding: 40px 20px;
  transition: all .2s ease;
}

.service-box:hover > .vc_column-inner {
  transition-delay: .1s;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.17);
}

.service-box.loaded > .vc_column-inner::before {
  width: 100%;
  height: 100%;
}

.service-box > .vc_column-inner::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 8px solid #f0f0f0;
  transition: all .2s ease;
  z-index: -1;
}

.service-box:hover > .vc_column-inner::before {
  border-width: 0px;
}

.service-box > .vc_column-inner > .wpb_wrapper > div {
  padding: 10px;
  margin-bottom: 0px;
}

.service-box > .vc_column-inner > .wpb_wrapper > .wpb_raw_html .fas {
  font-size: 36px;
  color: #1bdbce;
}

.service-box h4 {
  color: #333;
}

.service-box p {
  text-align: left;
}

.service-box {
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .service-box.vc_col-md-4 {
    width: calc(33.333333% - 30px);
  }
}

/* ================= */
/* STORE BADGES */
/* ================= */

.app-store-badge {
  height: 40px;
  width: 135px;
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat; 
}

.apple-store {
  background-image: url('/wp-content/themes/talacarte2019/images/apple-store.svg');
}

.google-play {
  background-image: url('/wp-content/themes/talacarte2019/images/google-play.svg');
}

.platform-download-big .app-store-badge {
  height: 60px;
  width: 200px; 
  margin-right: 40px;
}

/* ================= */
/* FOOTER */
/* ================= */

footer {
  padding-top: 2rem;
}

footer.container {
  padding-right: 2rem;
  padding-left: 2rem;   
}

footer h5 {
  color: rgba(0, 0, 0, 0.87);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;  
}

footer ul {
  padding: 0;
}

footer ul li {
  list-style: none;
}

footer ul li a {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #5c28aa;
  padding-top: 1px;
  padding-bottom: 1px;  
  text-decoration: none;
}

footer ul li a:hover {
  color: #000;
  text-decoration: none;
}

footer .footer-copyright {
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  text-align: center;
  color: rgba(0, 0, 0, 0.32);
  margin-top: 120px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding: 16px;  
}

@media screen and (min-width: 768px) {
  footer {
    padding-top: 3rem;
  }

  footer .mobile-br {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  footer {
    padding-top: 5rem;
  }
}

/* ================= */
/* BLOG BOX */
/* ================= */

.blog-title {
  color: #fff;
}

.blog-box.vc_gitem-zone-a .vc_gitem-row-position-bottom {
  padding: 40px;
  background-color: #fff;
  max-width: 90%;
  left: 50%;
  width: 100%;
  transform: translate3d(-50%,0,0);
  box-shadow: 0 0 10px 0 rgba(0,0,0,.27);
  bottom: -40px;
  z-index: 10;
  cursor: auto;
}

.blog-box.vc_gitem-zone {
  overflow: unset;
  margin-bottom: 60px;
}

.blog-box .vc_gitem-row-position-bottom > .vc_gitem-col {
  padding: 0px;
}

.blog-box .vc_gitem-row-position-bottom .vc_gitem-post-data-source-post_date {
  margin-bottom: 0px;
  text-transform: uppercase;
  color: #1bdbce;
  font-size: 20px;
}

.blog-box .vc_gitem-row-position-bottom .vc_gitem-post-data-source-post_title {
  font-size: 25px;
  font-weight: 500;
  transition: all .3s ease-in-out;
}

.blog-box .vc_gitem-row-position-bottom .vc_gitem-post-data-source-post_title:hover {
  color: #1bdbce;
}

/* ================= */
/* BLANKET */
/* ================= */

.blanket {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255,255,255,0.95);
  z-index: 1000;
  justify-content: center;
  text-align: center;
  overflow: auto;
  padding-top: 75px;
}

.blanket-content {
  padding: 40px;
}

.blanket.open {
  display: flex;
}

.blanket-close {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #5c28aa;
  font-size: 50px;
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .blanket {
    padding-top: 0px;
    align-items: center;
  }
}

/* ================= */
/* BLANKET */
/* ================= */

#cookie-notice {
  color: rgba(0, 0, 0, 0.5)!important;
  background-color: #F9F9F9!important;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

#cookie-notice .cookie-notice-container {
  max-width: 920px;
  margin: 0 auto;
}

#cookie-notice .cn-button {
  cursor: pointer;
  margin-right: 8px;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 15px;
  background-color: #27c6bc;
  color: #fff;
  border-color: #27c6bc;
  font-size: 15px;
  line-height: 1.5;
  border-width: 2px;
  font-weight: 500;
  transition: 250ms all ease-in-out;
  display: inline-block;

  background: 0 0; 
  position: relative;
  overflow: visible;
  border: none;
  z-index: 1;
}

#cookie-notice .cn-button:before {
  background: #27c6bc;
  border-color: #151515;
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 20px;
  transition: all .3s ease-in-out;
}

#cookie-notice .cn-button:after {
  border-color: #151515;
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-width: 2px;
  border-style: solid;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease 0s;
  transform: scale(1.05);
  will-change: transform;
  border-radius: 20px;
  z-index: -1;
}

#cookie-notice .cn-button:active:before,
#cookie-notice .cn-button:hover:before {
  opacity: 0;
  visibility: hidden;
  transform: scale(.9);
  transition-duration: .2s;
}

#cookie-notice .cn-button:active:after,
#cookie-notice .cn-button:hover:after {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-duration: .3s;
  transition-delay: .1s;
}

#cookie-notice .cn-button:active,
#cookie-notice .cn-button:hover {
  color: #151515;
  background-color: transparent;
  border: 0;
}

#cookie-notice #cn-notice-text {
  display: block;
  color: #656565;
}


/* ================= */
/* IMAGE HEADER ROW */
/* ================= */

.image-header-row {
  height: 700px;
  display: flex;
  align-items: center;
}

rs-slide h2,
.header-on-image h2 {
  font-family: 'Roboto', sans-serif!important;
  color: #fff!important;
  font-size: 32px!important;
  line-height: 40px!important;
  font-weight: 400!important;  
  padding: 20px!important;
}

.header-on-image h4 {
  color: #fff;
}

.image-header-row::after {
  content: ' ';
  display: block;
  background: #fff;
  width: calc(100% + 100px);
  height: 20%;
  position: absolute;
  bottom: 0px;
  left: 0;
  transform: rotate(3deg) translate(-50px, 50%);
}

.image-header-row.top-skew::after {
  top: 0px;
  left: 0;
  transform: rotate(3deg) translate(-50px, -50%);  
}

.image-header-row.oposite-skew::after {
  transform: rotate(-3deg) translate(-50px, 50%);
}

@media screen and (min-width: 768px) {
  rs-slide h2,
  .header-on-image h2 {
    font-size: 40px!important;
    line-height: 50px!important; 
  }
}

@media screen and (min-width: 992px) {
  rs-slide h2,
  .header-on-image h2 {
    font-size: 48px!important;
    line-height: 60px!important;  
  }
}

/* ================= */
/* SLICK SLIDER */
/* ================= */

#page-content .slick-prev:before, 
#page-content .slick-next:before {
  font-family: "Font Awesome 5 Pro"; 
  font-weight: 400; 
  color: #5c28aa;
  font-size: 50px;
}

#page-content .slick-prev:before {
  content: "\f053";
}

#page-content .slick-next:before {
  content: "\f054";
}

#page-content .special-offer-detail-images .slick-prev:before, 
#page-content .special-offer-detail-images .slick-next:before {
  color: #fff;
  opacity: 1; 
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 1);
}

#page-content .slick-prev, 
#page-content .slick-next {
  width: 50px;
  height: 50px;
}


#page-content .slick-prev {
  left: 5px;
  z-index: 1;
}
#page-content .slick-next {
  right: 5px;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  #page-content .slick-prev {
    left: -50px;
  }
  #page-content .slick-next {
    right: -50px;
  }

  #page-content .special-offer-slider .slick-prev {
    left: 50px;
  }
  #page-content .special-offer-slider .slick-next {
    right: 50px;
  }
}

/* ================= */
/* CSSMAP */
/* ================= */

/*
.cssmap li .bg {
  transition: transform .5s;
}

.cssmap li.focus .bg {
  transform: scale(1.05);
}
*/

/* ================= */
/* CART */
/* ================= */

#cart-page .cart-row-header {
  margin-top: 50px;
  margin-bottom: 10px;
  align-items: center;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600; 
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

#cart-page .cart-row {
  margin-bottom: 10px;
  align-items: center;
  font-size: 18px;
  line-height: 26px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

#cart-page .cart-row .far {
  font-size: 30px;
}

#cart-page .cart-image {
  width: 100%;
  height: auto;
}

#cart-page .empty-cart {
  font-size: 25px;
  line-height: 38px;
  text-align: center;
  margin: 50px;
}

#cart-page .book-cart {
  text-align: center;
}

#cart-blanket .blanket-content {
  max-width: 854px;
}

#cart-blanket label.has-error .form-control {
  border-color: #f42121;
}

#cart-blanket label.has-error {
  color: #f42121;
}

#cart-page .cart-note-title {
  font-size: 14px;
  line-height: 21px;
  margin-top: 10px;
  font-style: italic;  
}

#cart-page .cart-note {
  font-size: 14px;
  line-height: 21px;  
}

/* ================= */
/* CHAT */
/* ================= */

span.tcx_pullup {
  top: 6px!important;
}

#wp-live-chat-header {
  border-radius: 75px 75px!important;
  width: 75px!important;
  height: 75px!important;
}