:root {
  --primary: #ffd100;
  --secondary: #f1c400;
  --tertiary: #5e514e;
  --cuaternary: #554846;
  --quinary: #f6f3e9;
  --senary: #F0DE91;
  --septenary: #E6D39C;
  --octanary: #D1CFCC;
  --nonary: #938E88;
  --denary: #E8CE5A;
  --elevenary: #FAF6EB;
}

::selection {
  background: var(--septenary);
  color: var(--cuaternary);
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"] {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input:focus, select:focus, textarea:focus, button:focus {
  outline: none !important;
  box-shadow: 0 0 0 0rem rgb(0 0 0 / 0%) !important;
}

input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=email] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus {
  outline-offset: 0px;
}

btn:focus {
  outline: -webkit-focus-ring-color auto 0px !important;
}

:focus {
  outline: none;
}

input:focus, select:focus, textarea:focus, button:focus {
  outline: none !important;
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  color: transparent;
  background-color: transparent;
  border-color: transparent;
}

button:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter';
  font-size: 1rem;
}

/* Animation */

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotate {
  -webkit-animation: spin 15s linear infinite;
  -moz-animation: spin 15s linear infinite;
  animation: spin 15s linear infinite;
}

.brand-efect:hover > .rotate {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  animation-play-state: paused;
}

/* Framework */

.fnt-cairo {
  font-family: 'Cairo';
}

.fnt-inter {
  font-family: 'Inter';
}

.fnt-12 {
  font-size: 12px;
}

.fnt-14 {
  font-size: 14px;
}

.fnt-16 {
  font-size: 16px;
}

.fnt-18 {
  font-size: 18px;
}

.fnt-20 {
  font-size: 20px;
}

.fnt-22 {
  font-size: 22px;
}

.fnt-24 {
  font-size: 24px;
}

.fnt-26 {
  font-size: 26px;
}

.fnt-28 {
  font-size: 28px;
}

.fnt-30 {
  font-size: 30px;
}

.fnt-40 {
  font-size: 40px;
}

.fnt-50 {
  font-size: 50px;
}

.fnt-60 {
  font-size: 60px;
}

.title-primary {
  font-size: calc(2rem - .1vw);
  text-shadow: 0 3px 9px rgba(147 142 136 / 20%);
}

@media (min-width: 768px) {
  .title-primary {
    font-size: calc(2.5rem - .1vw);
  }
}

@media (min-width: 1200px) {
  .title-primary {
    font-size: calc(3rem - .1vw);
  }
}

.title-tertiary {
  font-size: calc(2rem - .1vw);
}

@media (min-width: 768px) {
  .title-tertiary {
    font-size: calc(2.5rem - .1vw);
  }
}

@media (min-width: 1200px) {
  .title-tertiary {
    font-size: calc(3rem - .1vw);
  }
}

.bg-light {
  background: var(--quinary) !important;
}

.bg-light-brown {
  background: var(--elevenary);
}

.bg-brown {
  background: var(--tertiary);
}

.bg-dark-brown {
  background: var(--cuaternary);
}

.bg-yellow {
  background: var(--primary);
}

.bg-light-yellow {
  background: var(--elevenary);
}

.fnt-brown {
  color: var(--tertiary);
}

.fnt-dark-brown {
  color: var(--cuaternary);
}

.fnt-yellow {
  color: var(--primary);
}

.fnt-light-yellow {
  color: var(--quinary);
}

.fnt-dark-yellow {
  color: var(--secondary);
}

.btn-yellow {
  position: relative;
  transition: transform .1s linear,color .1s linear;
}

.btn-yellow a {
  padding: 10px 20px;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 25px;
  text-decoration: none;
  background: var(--primary);
  color: var(--tertiary);
  display: flex;
}

.btn-yellow a:hover {
  color: var(--quinary);
}

.btn-yellow > a {
  position: relative;
  background: var(--primary);
  border-radius: 25px;
  overflow: hidden;
}

.btn-yellow > a {
  position: relative;
}

.btn-yellow > a:after, .btn-yellow > a:before {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  background: var(--tertiary);
  -webkit-clip-path: circle(0% at 50% 50%);
  clip-path: circle(0% at 50% 50%);
  color: var(--primary);
  content: var(--text);
  border-radius: 25px;
}

.btn-yellow > a:after {
  transition-delay: .4s;
}

.btn-yellow > a:before {
  z-index: 3;
  background: var(--primary);
  border-radius: 25px;
  -webkit-clip-path: circle(100% at 50% 50%);
  clip-path: circle(100% at 50% 50%);
  overflow: hidden;
  color: var(--tertiary);
  transition: -webkit-clip-path .4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: clip-path .4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: clip-path .4s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-clip-path .4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.btn-yellow:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: calc(100% - .167em);
  height: 100%;
  background: white;
  border-radius: 25px;
  transform: translate3d(0.167em, 0.167em, 0);
  content: "";
}

.btn-yellow:hover > a:after {
  -webkit-clip-path: circle(100% at 50% 50%);
  clip-path: circle(100% at 50% 50%);
  transition: -webkit-clip-path .4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: clip-path .4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: clip-path .4s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-clip-path .4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.btn-yellow:hover > a:before {
  -webkit-clip-path: circle(0% at 50% 50%);
  clip-path: circle(0% at 50% 50%);
  transition: none;
}

.link-light-yellow {
  display: flex;
  position: relative;
  padding: 3px 0;
  text-decoration: none;
  background-color: transparent;
  background-image: linear-gradient(45deg, var(--senary) 0%, var(--senary) 100%);
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: .3s;
  color: var(--elevenary);
}

.link-light-yellow:hover {
  color: var(--senary);
  text-decoration: none;
  background-size: 100% 1px;
}

.link-dark-brown {
  background-color: transparent;
  color: var(--tertiary);
  text-decoration: none;
  background-image: linear-gradient(var(--tertiary),var(--tertiary));
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .5s;
}

.link-dark-brown:hover {
  color: var(--cuaternary);
  text-decoration: none;
  background-size: 100% 2px;
}

.btn-basic a {
  display: block;
  background: linear-gradient(to right,var(--tertiary) 50%,var(--primary) 50%);
  color: var(--cuaternary);
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 25px;
  text-align: center;
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all .2s ease-out;
  border: none;
  box-shadow: none;
  white-space: nowrap;
  font-weight: 600;
  box-shadow: 0 4px 0 var(--octanary);
}

.btn-basic a:hover {
  background-position: left bottom;
  color: var(--quinary);
  border: none;
  box-shadow: none;
  box-shadow: 0 4px 0 white;
}

.btn-first a, .btn-first button {
  display: block;
  background: linear-gradient(to right,var(--cuaternary) 50%,var(--primary) 50%);
  color: var(--tertiary);
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 25px;
  text-align: center;
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all .2s ease-out;
  border: none;
  box-shadow: 0 3px 0 var(--quinary);
}

.btn-first a:hover, .btn-first button:hover {
  background-position: left bottom;
  color: var(--elevenary);
  border: none;
}

.btn-second a {
  display: block;
  background: linear-gradient(to right,var(--tertiary) 50%,var(--elevenary) 50%);
  color: var(--tertiary);
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 25px;
  text-align: center;
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all .2s ease-out;
  border: none;
  box-shadow: none;
}

.btn-second a:hover {
  background-position: left bottom;
  color: var(--elevenary);
  border: none;
  box-shadow: none;
}

.btn-third a {
  display: block;
  background: linear-gradient(to right,var(--senary) 50%,var(--primary) 50%);
  color: var(--tertiary);
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 25px;
  text-align: center;
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all .2s ease-out;
  border: none;
  box-shadow: none;
}

.btn-third a:hover {
  background-position: left bottom;
  color: var(--cuaternary);
  border: none;
  box-shadow: none;
}

/* Bootstrap */

.modal-backdrop.show {
  opacity: .9;
  background-color: var(--cuaternary) !important;
}

.carousel-control-prev-icon {
  background-image: url("../../assets/img/prev.svg");
}

.carousel-control-next-icon {
  background-image: url("../../assets/img/next.svg");
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  width: 50px;
  height: 50px;
}

/* Flickity */

.flickity-prev-next-button.previous {
  left: 0;
  border-radius: 0 50% 50% 0;
}

@media (min-width: 992px) {
  .flickity-prev-next-button.previous {
    left: 50px;
    border-radius: 50%;
  }
}

.flickity-prev-next-button.next {
  right: 0;
  border-radius: 50% 0 0 50%;
}

@media (min-width: 992px) {
  .flickity-prev-next-button.next {
    right: 50px;
    border-radius: 50%;
  }
}

.flickity-prev-next-button {
  width: 50px;
  height: 50px;
  z-index: 99;
}

@media (min-width: 992px) {
  .flickity-prev-next-button {
    width: 50px;
    height: 50px;
  }
}

.flickity-button {
  background: var(--primary);
  color: var(--quinary);
}

.flickity-button:hover {
  background: var(--primary);
}

/* Styles */

#bloker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(101 94 85 / .5);
  z-index: 1024;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
  opacity: 0;
  visibility: hidden;
  cursor: crosshair;
}

#bloker.open {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
}

.header {
  background: transparent;
  transition: .3s;
  position: fixed;
  width: 100%;
  z-index: 1023;
  top: 0;
}

@media (min-width: 1200px) {
  .header {
    background: var(--elevenary);
  }
}

#simplot {
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
  margin-top: -60px;
}

@media (min-width: 330px) {
  #simplot {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    position: relative;
    margin-top: -75px;
  }
}

@media (min-width: 768px) {
  #simplot {
    width: 200px;
    height: 200px;
    margin-top: -100px;
  }
}

.brand-efect {
  position: relative;
  position: absolute;
}

.brand-efect img {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 0;
  left: 0;
}

@media (min-width: 330px) {
  .brand-efect img {
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
  }
}

@media (min-width: 768px) {
  .brand-efect img {
    width: 200px;
    height: 200px;
  }
}

.isotype {
  visibility: hidden;
  opacity: 0;
  transition: .3s;
}

.isotype.active {
  visibility: visible;
  opacity: 1;
}

.brand {
  visibility: hidden;
  opacity: 0;
  transition: .3s;
}

.brand.active {
  visibility: visible;
  opacity: 1;
}

/* menu mobile */

.menu-mobile ul {
  padding: 0;
  list-style: none;
  width: 100%;
}

.menu-mobile ul li {
  position: relative;
  text-align: center;
  padding: 5px 0;
  margin: 5px 0;
}

.menu-mobile ul li ul {
  display: none;
}

.menu-mobile a {
  font-size: 18px;
  color: var(--tertiary);
  text-decoration: none;
  background-image: linear-gradient(45deg, var(--primary) 0%, var(--primary) 100%);
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .5s;
  transition: .3s;
}

.menu-mobile a:hover {
  color: var(--cuaternary);
  text-decoration: none;
  background-size: 100% 2px;
}

.menu-mobile ul li a:hover + ul, .menu-mobile ul li ul:hover {
  display: none;
  position: relative;
}

.menu-mobile .sub-menu .menu-item {
  background: white;
  border-radius: 10px;
  padding: 10px 0;
}

.menu-mobile .menu-item-has-children::before {
  content: '+ ';
  width: 20px;
  height: 20px;
  color: var(--secondary);
}

/* Menu desktop */

.menu-desktop ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 9;
}

.menu-desktop ul li ul {
  display: none;
}

.menu-desktop .menu-item {
  white-space: nowrap;
  padding: 0 8px;
}

.menu-desktop ul li a {
  display: flex;
  position: relative;
  padding: 3px 0;
  text-decoration: none;
  background-color: transparent;
  background-image: linear-gradient(45deg, var(--primary) 0%, var(--primary) 100%);
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: .3s;
}

.menu-desktop ul li a:hover, .menu-desktop ul li a:active {
  text-decoration: none;
  background-size: 100% 2px;
  text-decoration: none;
  opacity: .8;
  color: var(--cuaternary);
}

.menu-desktop ul li a {
  display: flex;
  position: relative;
  text-decoration: none;
  color: #7f7f7f;
  transition: .3s ease;
  padding: 10px 0;
  font-weight: bold;
  font-size: 17px;
}

.menu-desktop.active ul li a {
  border-top: solid 1px var(--secondary);
  color: var(--secondary);
}

.menu-desktop.active .sub-menu li a {
  border-top: none;
}

.menu-desktop ul li a:hover + ul {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeIn;
  transition: .3s ease;
}

.menu-desktop ul li a:hover + ul, .menu-desktop ul li ul:hover {
  display: flex;
  justify-content: center;
  position: absolute;
  background: white;
  flex-direction: column;
  z-index: 9999;
  width: auto;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 9px rgba(0 0 0 / 5%);
}

.menu-desktop .menu-item .sub-menu a {
  transition: .3s ease;
  font-weight: normal;
  padding: 5px 0;
}

.menu-desktop .menu-item .sub-menu a:before {
  background-color: transparent;
}

.menu-desktop .menu-item .sub-menu a:hover {
  color: var(--tertiary);
}

.menu-desktop .menu-item .sub-menu a:hover:before {
  background-color: transparent;
}

.menu-desktop .menu-item-has-children a:after {
  content: '+';
  position: relative;
  top: 0;
  right: -2px;
  color: var(--primary);
}

.menu-desktop .menu-item .sub-menu a:after {
  content: "";
}

/* --- */

#navigation {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  width: 90%;
  z-index: 1025;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-110%, 0, 0);
}

@media (min-width: 768px) {
  #navigation {
    width: 650px;
  }
}

#navigation.open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition-timing-function: ease, ease;
}

#navigation .efect-navigation {
  height: 100%;
  padding: 0 30px;
  overflow: auto;
}

@media (min-width: 768px) {
  #navigation .efect-navigation {
    padding: 0 60px;
  }
}

#navigation .efect-navigation {
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease-in-out;
  position: relative;
}

#navigation.open .efect-navigation {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

#close-menu {
  margin-top: 15px;
  cursor: pointer;
}

#close-menu picture {
  transition: .3s ease;
  transform: rotate(0deg);
  display: block;
}

#close-menu:hover > picture {
  transform: rotate(90deg);
}

/* - */

.link-brown {
  display: flex;
  position: relative;
  padding: 3px 0;
  text-decoration: none;
  background-color: transparent;
  background-image: linear-gradient(45deg, var(--primary) 0%, var(--primary) 100%);
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  padding: 10px 0;
  transition: .3s;
  color: var(--tertiary);
}

.link-brown:hover {
  color: var(--cuaternary);
  text-decoration: none;
  background-size: 100% 2px;
}

.btn-nav {
  width: 50px;
  height: 50px;
  background: var(--quinary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
}

.btn-nav:hover {
  background: var(--senary);
}

.divider-h {
  width: 1px;
  height: 30px;
  background: var(--quinary);
}

.divider-v {
  width: 30px;
  height: 1px;
  background: var(--nonary);
}

.btn-socialmedia a {
  display: block;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  transition: .3s;
}

.btn-socialmedia a:hover {
  background: var(--secondary);
}

.nav-brand {
  top: 0;
  left: 0;
  width: 100%;
}

.wave {
  background-image: radial-gradient(10px at 75% 100%, rgba(0, 0, 0, 0) 98%, red), radial-gradient(10px at 25% 50%, red 99%, rgba(0, 0, 0, 0) 101%);
  background-position-x: 50%, center;
  background-position-y: calc(100% - 15px), bottom;
  background-size: 40px 20%, 40px 40px;
  background-repeat: repeat-x, repeat-x;
  background-attachment: initial, initial;
  background-origin: initial, initial;
  background-clip: initial, initial;
  background-color: initial;
}

.wave-top {
  background-image: radial-gradient(10px at 75% 0%, rgba(0, 0, 0, 0) 98%, var(--tertiary)), radial-gradient(10px at 25% 40%, var(--tertiary) 99%, rgba(0, 0, 0, 0) 101%);
  background-position-x: 50%, center;
  background-position-y: calc(0% + 13px), top;
  background-size: 40px 20%, 40px 35px;
  background-repeat: repeat-x, repeat-x;
  background-attachment: initial, initial;
  background-origin: initial, initial;
  background-clip: initial, initial;
  background-color: initial;
  padding: 30px;
  margin-bottom: -35px;
  margin-top: -25px;
  z-index: 1023;
  position: relative;
}

.wave-right {
  background-image: radial-gradient(10px at 100% 75%, rgba(0, 0, 0, 0) 98%, var(--elevenary)), radial-gradient(10px at 56% 25%, var(--elevenary) 99%, rgba(0, 0, 0, 0) 101%);
  background-position-x: calc(100% - 15px), right;
  background-position-y: 50%, center;
  background-size: 13px 40px, 40px 40px;
  background-repeat: repeat-y, repeat-y;
  background-attachment: initial, initial;
  background-origin: initial, initial;
  background-clip: initial, initial;
  background-color: initial;
  height: 100%;
  width: 30px;
}

.area-weavy {
  position: absolute;
  height: 100%;
  width: 24px;
  top: 0;
  right: -20px;
}

.submenu ul li {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .submenu ul li {
    display: flex;
    justify-content: start;
  }
}

#ideas {
  position: fixed;
  z-index: 1020;
  bottom: 70px;
  left: -260px;
  transition: .3s;
  border-radius: 0 15px 15px 0;
  box-shadow: 0 3px 9px rgba(0 0 0 / 10%);
}

@media (min-width: 768px) {
  #ideas {
    bottom: 150px;
  }
}

#ideas.open {
  left: 0;
}

.btn-ideas {
  background: var(--secondary);
  border-radius: 0 15px 15px 0;
}

.btn-ideas img {
  transform: rotate(0deg);
  transition: .3s;
}

.btn-ideas.open img {
  transform: rotate(180deg);
}

#whatsaap {
  position: fixed;
  z-index: 1024;
  bottom: 10px;
  right: 10px;
}

@media (min-width: 768px) {
  #whatsaap {
    bottom: 50px;
    right: 30px;
  }
}

.btn-whatsapp {
  display: block;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  box-shadow: 0 2px 6px rgba(0 0 0 / 15%);
  transition: .3s;
}

.btn-whatsapp:hover {
  background: var(--secondary);
}

#whatsaap a {
  text-decoration: none;
  color: var(--tertiary);
}

#whatsaap:hover > a {
  color: var(--cuaternary);
}

#footer {
  position: relative;
  z-index: 1023;
}

/* search */

#search {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9997;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
  top: 0;
}

#search.open {
  opacity: 1;
  visibility: visible;
}

#search .efect-navigation {
  height: 100%;
  padding: 0;
  overflow: auto;
}

@media (min-width: 768px) {
  #search .efect-navigation {
    height: 100%;
    padding: 30px 60px 30px 60px;
  }
}

#search .efect-navigation {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all -0.3s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 30px 0;
}

#search.open .efect-navigation {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.3s;
}

#close-search {
  border-radius: 50%;
  padding: 5px;
}

.btn-search-send {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  border-radius: 50%;
}

.btn-search-send:hover {
  background: var(--secondary);
}

.forms {
  background: white;
  border-radius: 50px;
}

.forms input {
  border: none;
  border-radius: 30px;
  height: 50px;
  color: var(--tertiary);
}

.forms input::placeholder {
  color: var(--octanary);
}

#composition-primary {
  position: relative;
  width: 100%;
  height: 600px;
  background: var(--elevenary);
}

@media (min-width: 768px) {
  #composition-primary {
    height: 750px;
  }
}

@media (min-width: 1200px) {
  #composition-primary {
    height: 900px;
  }
}

#composition-secondary {
  position: relative;
  width: 100%;
  height: 600px;
  background: var(--elevenary);
}

@media (min-width: 768px) {
  #composition-secondary {
    height: 750px;
  }
}

@media (min-width: 1200px) {
  #composition-secondary {
    height: 900px;
  }
}

#composition-tertiary {
  position: relative;
  width: 100%;
  height: 600px;
  background: var(--elevenary);
}

@media (min-width: 768px) {
  #composition-tertiary {
    height: 750px;
  }
}

@media (min-width: 1200px) {
  #composition-tertiary {
    height: 900px;
  }
}

.slide-video {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide-video-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-video video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-photo {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide-photo-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.element_move {
  position: absolute;
}

.video-16-9 {
  position: relative;
  height: 0;
  padding: 0;
  margin: 0;
  padding-bottom: 56.25%;
}

.video-16-9 .video-embed {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.video-16-9 .video-embed video, .video-16-9 .video-embed iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* - */

.video-9-16 {
  position: relative;
  height: 0;
  padding: 0;
  margin: 0;
  padding-bottom: 177%;
}

.video-9-16 .video-embed {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.video-9-16 .video-embed video, .video-9-16 .video-embed iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.aspect {
  position: relative;
  width: 100%;
  z-index: 0;
  transition: .3s ease;
}

.aspect img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: .3s;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.aspect-4-4 {
  padding-top: 100%;
}

.aspect-4-3 {
  padding-top: 75%;
}

.aspect-2-3 {
  padding-top: 66.67%;
}

.aspect-16-9 {
  padding-top: 56.25%;
}

.aspect-9-14 {
  padding-top: 140%;
}

.aspect.aspect-vertical {
  padding-top: 190%;
}

.title-slide-top {
  position: absolute;
  top: 100px;
}

@media (min-width: 768px) {
  .title-slide-top {
    top: 120px;
  }
}

@media (min-width: 1200px) {
  .title-slide-top {
    top: 150px;
  }
}

.title-slide-bottom {
  position: absolute;
  bottom: 30px;
}

@media (min-width: 768px) {
  .title-slide-bottom {
    bottom: 35px;
  }
}

@media (min-width: 1200px) {
  .title-slide-bottom {
    bottom: 40px;
  }
}

#feet {
  position: relative;
  z-index: 1023;
}

/* Video slider */

.category a {
  display: block;
  padding: 0px 10px;
  border-radius: 5px;
  font-family: 'Cairo';
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 10px;
}

.video-embed video.paused + .play-button {
  display: block;
}

.video button {
  position: absolute;
  z-index: 2;
  padding: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: .3s;
}

.video button:hover {
  background: rgba(0 0 0 / 20%);
}

.custom-dot {
  width: 15px;
  height: 15px;
  background: var(--septenary);
  border: solid 2px white;
  border-radius: 50%;
  margin: 3px;
}

.custom-dot.is-selected {
  border: solid 2px var(--primary);
  background: var(--primary);
}

.btn-plus a {
  display: block;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  transition: .3s;
}

.btn-plus a:hover {
  background: var(--secondary);
}

.border-yeyellow {
  border: solid 2px var(--senary);
  border-radius: 10px;
}

.video-modal, .video-link {
  position: relative;
  display: block;
}

.video-modal button, .video-link a {
  position: absolute;
  z-index: 2;
  padding: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: .3s;
}

.video-modal button:hover, .video-link a:hover {
  background: rgba(0 0 0 / 0%);
}

.cover-video {
  opacity: 1;
  transition: .3s;
}

.video-link:hover > .cover-video {
  opacity: 0;
}

.animated-video {
  position: absolute;
  top: 0;
  left: 0;
}

.btn-close {
  width: 30px;
  height: 30px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: -10px;
  right: -10px;
  color: white;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
}

.btn-close:hover {
  background: var(--secondary);
  opacity: 1;
}

.bg-header {
  position: fixed;
  z-index: 1021;
  top: 0;
  width: 100%;
  height: 0;
  background: var(--elevenary);
  transition: .3s;
}

.bg-header.active {
  height: 80px;
}

.align-menu {
  margin-bottom: 0;
  transition: .3s;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .align-menu {
    margin-bottom: 30px;
  }
}

#calculator {
  position: relative;
  background: var(--cuaternary);
}

.calculator-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-size: cover;
}

.calculator-content {
  position: relative;
  z-index: 2;
  padding-top: 75px;
  padding-bottom: 225px;
}

@media (min-width: 992px) {
  .calculator-content {
    padding: 150px 0;
  }
}

.gradient:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  background: linear-gradient(180deg,rgba(101,94,85,1) 10%,rgba(101,94,85,0) 100%);
  z-index: 1;
  transition: .4s;
  mix-blend-mode: multiply;
}

@media (min-width: 992px) {
  .gradient:after {
    background: linear-gradient(90deg,rgba(101,94,85,1) 10%,rgba(101,94,85,0) 100%);
  }
}

.margin-header {
  position: relative;
  z-index: 1022;
  width: 100%;
  height: 80px;
  background: var(--elevenary);
}

.head-page {
  position: relative;
}

.head-image {
  position: relative;
  width: 100%;
  height: 400px;
  z-index: 1;
}

.head-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.head-content {
  position: absolute;
  z-index: 2;
  width: 100%;
}

.gradient-white-right {
  position: absolute;
  background: linear-gradient(90deg, rgba(1, 57, 96, 0) 0%, rgb(255,255,255) 100%);
  top: 0;
  right: -12px;
  width: 10%;
  height: 100%;
  z-index: 3;
}

.gradient-white-left {
  position: absolute;
  background: linear-gradient(270deg, rgba(1, 57, 96, 0) 0%, rgb(255,255,255) 100%);
  top: 0;
  left: -12px;
  width: 10%;
  height: 100%;
  z-index: 3;
}

.gradient-lightyellow-right {
  position: absolute;
  background: linear-gradient(90deg, rgba(250, 246, 235, 0) 0%, rgb(250, 246, 235, 1) 100%);
  top: 0;
  right: -12px;
  width: 10%;
  height: 100%;
  z-index: 3;
}

.gradient-lightyellow-left {
  position: absolute;
  background: linear-gradient(270deg, rgba(250, 246, 235, 0) 0%, rgb(250, 246, 235, 1) 100%);
  top: 0;
  left: -12px;
  width: 10%;
  height: 100%;
  z-index: 3;
}

.gradient-darkyellow-right {
  position: absolute;
  background: linear-gradient(90deg, rgba(246, 243, 233, 0) 0%, rgb(246, 243, 233, 1) 100%);
  top: 0;
  right: -12px;
  width: 10%;
  height: 100%;
  z-index: 3;
}

.gradient-darkyellow-left {
  position: absolute;
  background: linear-gradient(270deg, rgba(246, 243, 233, 0) 0%, rgb(246, 243, 233, 1) 100%);
  top: 0;
  left: -12px;
  width: 10%;
  height: 100%;
  z-index: 3;
}

.sliders-hub {
  position: relative;
}

.btn-prev, .btn-next {
  width: 40px;
  height: 40px;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 5px;
  transition: .3s;
}

.btn-prev.disable, .btn-next.disable {
  pointer-events: none;
  opacity: .3;
}

.btn-prev:hover, .btn-next:hover {
  background: var(--secondary);
}

.btn-share a {
  display: block;
  background: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: .3s;
}

.btn-share a:hover {
  background: var(--senary);
}

#identifier img {
  width: 50px;
  height: auto;
}

@media (min-width: 992px) {
  #identifier img {
    width: 70px;
    height: 42px;
  }
}

#infographic {
  max-width: 600px;
}

.animated-video {
  position: absolute;
  top: 0;
  left: 0;
}

.share-post {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  overflow: hidden;
  margin-top: 7px;
  margin-left: 7px;
  transition: .1s;
}

.share-post:hover {
  width: 270px;
}

.share-post a, .share-post-vertical a {
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
  background: rgba(255 255 255 / 30%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.share-post ul, .share-post-vertical ul {
  margin: 0;
  padding: 0;
}

.share-post ul li {
  margin: 0 !important;
  padding: 0;
}

.share-post-vertical ul li {
  margin-bottom: 5px;
}

.btn-share-post {
  width: 35px;
  height: 35px;
  background: rgba(255 255 255 / 30%);
  border-radius: 50%;
  margin-right: 5px;
  margin-bottom: 5px;
}

.share-post-vertical {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  overflow: hidden;
  margin-top: 7px;
  margin-left: 7px;
  transition: .1s;
}

.share-post-vertical:hover {
  height: 260px;
}

.share-post-vertical + .video-link a {
  background: rgba(0 0 0 / 25%);
}

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scrollbar-color: light;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
}

@media (min-width: 1200px) {
  .scrolling-wrapper {
    overflow-x: hidden;
    flex-wrap: wrap;
  }
}

.scrolling-wrapper > div {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scrolling-wrapper::-webkit-scrollbar {
  width: auto;
  height: 2px !important;
}

.scrolling-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.multimedia {
  width: 40px;
  height: 40px;
  background: var(--senary);
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 9px;
  box-shadow: 0 3px 6px rgba(0 0 0 / 10%);
}

.multimedia img {
  width: 40px;
  height: 40px;
}

#search .efect-navigation > * {
  margin: auto;
}

/* single */

.single-content {
  font-family: 'Roboto';
}

.single-content p {
  padding: 0 30px;
  font-size: 1em;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
  color: var(--cuaternary);
}

@media (min-width: 992px) {
  .single-content p {
    font-size: 1.1em;
  }
}

.single-content figure {
  padding: 0 10px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .single-content figure {
    padding: 0;
  }
}

.single-content figure img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 0;
}

.single-content figure .figure-caption, .caption {
  margin: 0px;
  padding-top: 0px;
  font-size: 12px;
  color: darkgray;
  font-weight: 400;
  bottom: -5px;
}

.single-content ul {
  list-style: none;
  padding: 0;
}

@media (min-width: 300px) {
  .single-content ul {
    padding: 0 30px 0 65px;
  }
}

.single-content ul li:hover {
  background: white;
}

.single-content ul li {
  position: relative;
  display: block;
  padding: 5px 15px;
  background: transparent;
  text-decoration: none;
  transition: all .3s ease-out;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  border-radius: 20px;
}

.single-content ul li:hover:after {
  left: -.5em;
  border-left-color: var(--primary);
}

.single-content ul li:before {
  content: "•";
  position: absolute;
  left: -2em;
  top: 60%;
  margin-top: -1em;
  color: white;
  background: var(--primary);
  height: 1.5em;
  width: 1.5em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
  border-radius: 100%;
}

.single-content ol {
  list-style: none;
  padding: 0;
}

@media (min-width: 300px) {
  .single-content ol {
    padding: 0 30px 0 65px;
  }
}

.single-content ol li:hover {
  background: white;
}

.single-content ol li {
  position: relative;
  display: block;
  padding: 5px 15px;
  background: transparent;
  text-decoration: none;
  transition: all .3s ease-out;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  counter-increment: my-awesome-counter;
  border-radius: 20px;
}

.single-content ol li:hover:after {
  left: -.5em;
  border-left-color: var(--primary);
}

.single-content ol li:before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: -2em;
  top: 60%;
  margin-top: -1em;
  color: white;
  background: var(--primary);
  height: 1.5em;
  width: 1.5em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
}

.single-content .table-hover tbody tr {
  color: #212529;
  background-color: transparent;
  transition: .3s;
  border-bottom: solid 2px var(--primary);
}

.single-content .table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(60,154,219,0.1);
  border-bottom: solid 2px var(--tertiary);
}

.single-content .table-striped tbody tr:nth-of-type(odd) {
  background-color: transparent;
  transition: .3s;
  border-bottom: solid 2px var(--primary);
}

.single-content .table-striped tbody tr:nth-of-type(2n + 1):hover {
  background-color: rgba(60,154,219,0.1);
  transition: .3s;
  border-bottom: solid 2px var(--tertiary);
}

.single-content table {
  color: var(--primary);
  margin-bottom: 30px;
}

.single-content table thead {
  border-bottom: solid 4px var(--primary);
  color: var(--primary);
}

.single-content .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 30px;
}

@media (min-width: 992px) {
  .single-content .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.single-content .table > :not(caption) > * > * {
  box-shadow: none;
}

.single-content .blockquote p {
  margin-bottom: 30px;
  font-size: 25px;
  line-height: 30px;
}

.single-content .blockquote p {
  margin-bottom: 30px;
  font-size: .8em;
  line-height: normal;
}

.single-content blockquote {
  display: block;
  font-size: 30px;
  padding: 100px 0px 10px 0px;
  position: relative;
  line-height: 1.2;
  font-style: italic;
  top: 0;
  margin-top: -15px;
  margin-bottom: 20px;
  margin: 0;
}

@media (min-width: 992px) {
  .single-content blockquote {
    display: block;
    padding: 15px 30px 10px 115px;
    margin: 40px 0 10px 0;
    position: relative;
    line-height: 1.2;
    top: 0px;
  }
}

.single-content blockquote::after {
  content: "";
}

.single-content blockquote::before {
  content: "\201C";
  font-size: 6em;
  color: var(--primary);
  position: absolute;
  left: 15px;
  top: 15px;
  font-family: 'arial';
  z-index: 1;
  line-height: 1em;
}

@media (min-width: 1200px) {
  .single-content blockquote::before {
    content: "\201C";
    font-size: 8em;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: -10px;
  }
}

.single-content .blockquote footer {
  background: transparent;
  font-size: 1em;
  margin: 15px 30px;
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
  text-align: end;
}

@media (min-width: 992px) {
  .single-content .blockquote footer {
    background: transparent;
    font-size: initial;
    margin: 15px 0;
    color: var(--primary);
  }
}

.single-content .blockquote p {
  padding: 0 0 0 30px;
  font-weight: 500;
}

@media (min-width: 992px) {
  .single-content .blockquote p {
    padding: 0 0 0 30px;
  }
}

.blockquote-footer {
  margin: 0;
  padding-right: 20px;
  color: var(--primary);
}

@media (min-width: 992px) {
  .single-content .blockquote-footer {
    padding-right: 50px;
  }
}

.single-content a {
  color: var(--primary);
  text-decoration: none;
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-image: linear-gradient(0deg, var(--primary) 0%, var(--primary) 100%);
  background-size: 100% 1px;
  transition: background-size .5s;
}

.single-content a:hover {
  background-size: 0% 1px;
  color: var(--primary);
}

.single-content iframe {
  width: 100%;
  background-color: #f9f9f9;
  margin: 0 0;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .single-content iframe {
    width: 95%;
    background-color: #f9f9f9;
    margin: 0 50px 0 0;
    margin-bottom: 30px;
  }
}

.single-content h1, .single-content h2 {
  font-size: 1.6em;
  padding: 0 30px;
  font-weight: 700;
  color: var(--tertiary);
}

@media (min-width: 992px) {
  .single-content h1, .single-content h2 {
    font-size: 2em;
    padding: 0 30px;
  }
}

@media (min-width: 1200px) {
  .single-content h1, .single-content h2 {
    font-size: 2em;
    padding: 0 30px;
  }
}

.single-content h3, .single-content h4, .single-content h5, .single-content h6 {
  font-size: 1.5em;
  padding: 0 30px;
  color: var(--tertiary);
}

@media (min-width: 992px) {
  .single-content h3, .single-content h4, .single-content h5, .single-content h6 {
    font-size: 1.5em;
    padding: 0 30px;
  }
}

@media (min-width: 1200px) {
  .single-content h3, .single-content h4, .single-content h5, .single-content h6 {
    font-size: 1.5em;
    padding: 0 30px;
  }
}

.single-content figure {
  display: block;
}

.single-content video, .single-content iframe {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
  border-radius: 15px;
}

/* single */

/* calculate */

.slider-calculate label.radio-card {
  cursor: pointer;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.slider-calculate label.radio-card .card-content-wrapper {
  background: var(--elevenary);
  border-radius: 30px;
  max-width: 280px;
  min-height: 330px;
  padding: 15px;
  display: grid;
  box-shadow: 0 2px 4px 0 rgba(219, 215, 215, 0.04);
  transition: 200ms linear;
}

.slider-calculate label.radio-card .check-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  border: solid 2px transparent;
  border-radius: 50%;
  transition: 200ms linear;
  position: relative;
  margin-bottom: -15px;
  z-index: 3;
}

.slider-calculate label.radio-card .check-icon:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.93552 4.58423C0.890286 4.53718 0.854262 4.48209 0.829309 4.42179C0.779553 4.28741 0.779553 4.13965 0.829309 4.00527C0.853759 3.94471 0.889842 3.88952 0.93552 3.84283L1.68941 3.12018C1.73378 3.06821 1.7893 3.02692 1.85185 2.99939C1.91206 2.97215 1.97736 2.95796 2.04345 2.95774C2.11507 2.95635 2.18613 2.97056 2.2517 2.99939C2.31652 3.02822 2.3752 3.06922 2.42456 3.12018L4.69872 5.39851L9.58026 0.516971C9.62828 0.466328 9.68554 0.42533 9.74895 0.396182C9.81468 0.367844 9.88563 0.353653 9.95721 0.354531C10.0244 0.354903 10.0907 0.369582 10.1517 0.397592C10.2128 0.425602 10.2672 0.466298 10.3112 0.516971L11.0651 1.25003C11.1108 1.29672 11.1469 1.35191 11.1713 1.41247C11.2211 1.54686 11.2211 1.69461 11.1713 1.82899C11.1464 1.88929 11.1104 1.94439 11.0651 1.99143L5.06525 7.96007C5.02054 8.0122 4.96514 8.0541 4.90281 8.08294C4.76944 8.13802 4.61967 8.13802 4.4863 8.08294C4.42397 8.0541 4.36857 8.0122 4.32386 7.96007L0.93552 4.58423Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center center;
  transform: scale(1.6);
  transition: 200ms linear;
  opacity: 0;
}

.slider-calculate label.radio-card input[type='radio'] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.slider-calculate label.radio-card input[type='radio']:checked + .card-content-wrapper {
  box-shadow: 0 2px 4px 0 rgba(219, 215, 215, 0.5), 0 0 0 4px var(--primary);
}

.slider-calculate label.radio-card input[type='radio']:checked + .card-content-wrapper .check-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.2);
}

.slider-calculate label.radio-card input[type='radio']:checked + .card-content-wrapper .check-icon:before {
  transform: scale(1);
  opacity: 1;
}

.slider-calculate label.radio-card input[type='radio']:focus + .card-content-wrapper .check-icon {
  box-shadow: 0 0 0 4px rgba(255,255,255,0.5);
  border-color: var(--primary);
}

.slider-calculate label.radio-card .card-content img {
  margin-bottom: 10px;
}

.slider-calculate label.radio-card .card-content h4 {
  font-size: 16px;
  letter-spacing: -0.24px;
  text-align: center;
  color: var(--secondary);
  margin-bottom: 10px;
}

.slider-calculate label.radio-card .card-content h5 {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: var(--quinary);
}

.card-content img {
  background: white;
  border-radius: 15px;
}

/* results calculate */

#results {
  display: none;
}

.container-graphic {
  display: flex;
  gap: 50px;
  position: relative;
}

.circular-progress {
  position: relative;
  width: 200px;
  height: 200px;
  background: conic-gradient( var(--septenary) 0% 0%, var(--senary) 0% 100% );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circular-progress::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background-color: var(--elevenary);
  border-radius: 50%;
}

.progress-values {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 20px;
}

.progress-value1, .progress-value2 {
  font-size: 24px;
  font-weight: bold;
}

.revenue {
  position: absolute;
  z-index: 2;
}

.portions {
  display: flex;
  flex-wrap: wrap;
}

.price-fries {
  font-size: 100px;
  margin-left: -8%;
  font-weight: 700;
}

.rounded-top-all {
  border-radius: 30px 30px 0 0;
}

.rounded-bottom-all {
  border-radius: 0 0 30px 30px;
}

.rounded-button-left {
  border-radius: 0 0 0 0px;
}

@media (min-width: 768px) {
  .rounded-button-left {
    border-radius: 0 0 0 30px;
  }
}

.rounded-buttom-right {
  border-radius: 0 0 30px 30px;
}

@media (min-width: 768px) {
  .rounded-buttom-right {
    border-radius: 0 0 30px 0;
  }
}

.result-card {
  display: none;
}

/* New styles header */

.menu-item.active a {
  color: var(--primary) !important;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.iamagotype img {
}

header.active {
  background: white;
  box-shadow: 0 1px 6px rgba(0 0 0 / 10%);
}

/* Newstyle */

#bar {
  background: #675c53;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5));
  z-index: 1024;
  position: relative;
}

.btn-region {
  font-size: .75rem;
  font-weight: 700;
  padding: .7em 1rem;
  color: #fff;
  transition: .3s;
  display: flex;
  align-items: center;
  position: relative;
}

.btn-region:hover {
  background: white;
  color: #675c53;
}

.btn-region .drop {
  display: block;
}

.btn-region.open .drop {
  display: none;
}

.btn-region .drop-active {
  display: none;
}

.btn-region.open .drop-active {
  display: block;
}

.line-bar {
  width: 1px;
  height: 100%;
  border-left: 2px solid hsla(180, 4%, 77%, .25);
}

.content-drop {
  position: absolute;
  top: 35px;
  left: 0;
  background: white;
  width: 100%;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: .3s;
}

.btn-region:hover > .content-drop {
  visibility: visible;
  opacity: 1;
}

.btn-place {
  color: #675c53;
  width: 100%;
  display: block;
  padding: .5em 1rem;
  text-decoration: none;
  font-size: .8rem;
}

.btn-place:hover {
  color: #ff9f19;
}

.btn-contact a {
  font-size: .75rem;
  font-weight: 700;
  padding: .7em 1rem;
  color: #fff;
  transition: .3s;
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
}

#search-bar {
  border: 3px solid #ebb700;
  border-radius: 25px;
}

#select-searches {
  width: 65vw;
  padding: 10px 0;
}

@media (min-width: 576px) {
  #select-searches {
    width: 300px;
  }
}

#search-categories {
  width: 100px;
  background-image: linear-gradient(90deg, #ebb700, #ff9f19);
  padding: 10px 0;
  border-radius: 21px 0 0 21px;
}

/* Select */

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  background: transparent;
  border: none;
}

.select2-dropdown {
  border: none !important; 
  padding: 2px !important;
  border-radius: 20px !important;
}

.select2-container--categories .select2-selection--single {
  background-color: transparent;
  border-color: #333;
  color: #000;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: absolute;
  right: 45px;
}

.select2-container--categories .select2-dropdown {
  background: linear-gradient(90deg,#ebb700,#ff9f19);
}

.select2-container--categories .select2-results__option--highlighted {
  background: white;
}

.select2-container--searches .select2-results__option a {
  text-decoration: none;
  color: #252423;
  border-radius: 5px;
}
.select2-container--searches .select2-results__option a:hover {
  background: #ebb700;
}
.select2-container--searches .select2-results__option a:hover span{
  color: white;
}
.select2-container--searches .select2-results__option span{
  justify-content: center;
  flex-direction: column;
}

.select2-container .select2-selection--single {
  height: inherit;
}

.select2-container--categories .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--categories .select2-selection--single .select2-selection__arrow b {
  border-color: #252423 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--categories.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #252423 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-search--dropdown .select2-search__field {
  border: solid 2px #ebb700;
  border-radius: 5px;
}

.search-selected {
  position: relative;
}

.search-select {
  position: absolute;
  right: 10px;
  top: calc(50% - 15px);
}

.select2-container--searches .select2-results__option--highlighted {
  background: #ebb700;
  color: #252423;
  border-radius: 5px;
}

.select2-container--searches .select2-results__option img {
  margin-right: 8px;
  width: 50px !important;
  height: 50px !important;
  object-fit: cover;
}

#search-nav {
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  height: 0;
  margin-bottom: 0;
  transition: .3s ease;
}

#search-nav.open {
  visibility: visible;
  opacity: 1;
  overflow: hidden;
  height: 51px;
  margin-bottom: 15px;
}

@media (min-width: 1200px) {
  #search-nav {
    visibility: visible;
    opacity: 1;
    overflow: inherit;
    height: auto;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  #search-nav.open {
    visibility: visible;
    opacity: 1;
    overflow: inherit;
    height: auto;
    margin-bottom: 0;
  }
}

#btn-search .icon-closed {
  display: none;
}

#btn-search.open .icon-search {
  display: none;
}

#btn-search.open .icon-closed {
  display: block;
}

html {
  scroll-padding-top: 4rem;
}

.scrolling-wrapper-full {
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scrollbar-color: light;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
}

@media (min-width: 1400px) {
  .scrolling-wrapper {
    overflow-x: hidden;
    flex-wrap: wrap;
  }
}

.scrolling-wrapper-full > div {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scrolling-wrapper-full::-webkit-scrollbar {
  width: auto;
  height: 2px !important;
}

.scrolling-wrapper-full::-webkit-scrollbar-track {
  background: transparent;
}


/* Memu footer*/
#menu-footer ul li a{
  color:#f6f3e9 !important;
} 

.video-buton-icon {
  /* content: url(../img/play-circle.svg); */
  content: url(../img/play-video.svg);
  width: 50px;
  height: 50px;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  z-index: 9;
  transition: .2s;
}

.menu-mobile > ul li:first-child a ,.menu-desktop > ul li:first-child a {
  color: var(--primary);
}

/* News styles */

.title-secondary {
  font-size: calc(2rem - .1vw);
  text-shadow: 0 3px 9px rgba(147 142 136 / 20%);
}

@media (min-width: 768px) {
  .title-secondary {
    font-size: calc(2rem - .1vw);
  }
}

@media (min-width: 1200px) {
  .title-secondary {
    font-size: calc(2.5rem - .1vw);
  }
}

.menu-menu-footer-container ul{
  padding: 0;
}


.menu-menu-footer-container ul li a {
  display: flex;
  position: relative;
  padding: 3px 0;
  text-decoration: none;
  background-color: transparent;
  background-image: linear-gradient(45deg, var(--senary) 0%, var(--senary) 100%);
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: .3s;
  color: var(--elevenary);
}

.menu-menu-footer-container ul li a:hover {
  color: var(--senary);
  text-decoration: none;
  background-size: 100% 1px;
}


.select2-container--open .select2-dropdown--below {
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  border: none !important;
}

.select2-dropdown{
  max-height: 400px !important;
  overflow: auto !important;
}