/*
Theme Name: InBetweenModels
Theme URI: https://minimalcode.nl
Description: This site was built using custom functionality by Benjamin el Barakat
Author URI: https://minimalcode.nl
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
body,
html,
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture,
source {
  max-width: 100%;
  display: block;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  background-color: transparent;
  border: none;
}

.list-style-none {
  list-style: none;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  overflow-x: hidden;
  width: 100%;
}

body {
  color: #fff;
  overflow-x: hidden;
  background: #181818;
  color: #CCCCCC;
  font-family: "Roboto", sans-serif;
}

section {
  width: 100%;
  position: relative;
}

.transition {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.transition-slow {
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.cubic-bezier {
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}

.center {
  position: relative;
}
.center:after {
  z-index: -1;
  width: 1200px;
  height: 1200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.image {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.image:after, .image:before {
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.image.image--hover-shade:before {
  content: "arrow_east";
  font-family: "Material Icons Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  right: 40px;
  top: 24px;
  opacity: 0;
  position: absolute;
  z-index: 2;
}
.image.image--hover-shade:after {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 1;
  opacity: 0;
}
.image.image--shade:before {
  content: "";
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 75%);
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 75%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 75%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 200px;
  bottom: 0;
  z-index: 1;
}
.image.image--shade-top:before {
  content: "";
  background: #202020;
  background: -webkit-linear-gradient(0deg, rgba(32, 32, 32, 0) 0%, rgba(32, 32, 32, 0.8) 80%, rgba(32, 32, 32, 0.8) 100%);
  background: -moz-linear-gradient(0deg, rgba(32, 32, 32, 0) 0%, rgba(32, 32, 32, 0.8) 80%, rgba(32, 32, 32, 0.8) 100%);
  background: linear-gradient(0deg, rgba(32, 32, 32, 0) 0%, rgba(32, 32, 32, 0.8) 80%, rgba(32, 32, 32, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#202020", endColorstr="#202020", GradientType=0);
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 1;
}
.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.image.height--400 {
  max-height: 400px;
}
.image.height--600 {
  max-height: 600px;
}
.image.height--800 {
  max-height: 800px;
}

.c-image-container {
  overflow: hidden;
  position: relative;
}
.c-image-container:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.c-image-container img,
.c-image-container source,
.c-image-container picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.c-image-container img.h-158,
.c-image-container source.h-158,
.c-image-container picture.h-158 {
  height: 158px;
}
.c-image-container:hover:after {
  background-color: rgba(0, 0, 0, 0.4);
}
.c-image-container:hover img {
  transform: scale(1.1);
}
.c-image-container:hover .c-image-fit__cover {
  bottom: 0;
  right: 0;
  opacity: 1;
}

.c-image-fit {
  overflow: hidden;
}
.c-image-fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.radius--medium {
  border-radius: 0.5rem;
  overflow: hidden;
}

.radius--large {
  border-radius: 1rem;
  overflow: hidden;
}

.height--400 {
  max-height: 400px;
}

@media screen and (max-width: 768px) {
  .height--400 {
    max-height: 100%;
  }
}
.weight--300 {
  font-weight: 300;
}

.weight--600 {
  font-weight: 600;
}

.title {
  font-family: "wicked_gritregular";
}

blockquote {
  border-left: 3px solid #078fc0;
  padding-left: 16px;
}
blockquote p {
  color: #078fc0;
}

p,
li {
  color: #CCCCCC;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 200;
  margin-bottom: 24px;
}
@media screen and (max-width: 576px) {
  p,
  li {
    font-size: 1rem;
  }
}

.block__content ul {
  padding-left: 20px;
}
.block__content li {
  margin-bottom: 0;
}

a {
  color: white;
}

.subtitle--block {
  border-radius: 3px;
  background-color: #078fc0;
  padding: 4px 12px;
  color: #fff;
  margin-bottom: 12px;
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "wicked_gritregular";
  color: #fff;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-family: "wicked_gritregular";
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

h2 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 24px;
}

h3 {
  font-size: 2rem;
  margin-bottom: 24px;
}

h3.size--large {
  font-size: 3rem;
}

h3.size--medium {
  font-size: 2rem;
  margin-bottom: 24px;
}

h3.size--small {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

h4 {
  font-size: 1.25rem;
}

.title--black h1,
.title--black h2,
.title--black h3,
.title--black h4 {
  color: #000;
}

.title--xl {
  font-size: 3rem;
}

.title--lg {
  font-size: 2.5rem;
}
@media screen and (max-width: 576px) {
  .title--lg {
    font-size: 2rem;
  }
}

.title--md {
  font-size: 2rem;
}
@media screen and (max-width: 576px) {
  .title--md {
    font-size: 1.5rem;
  }
}

.title--sm {
  font-size: 1.5rem;
}

.title--xs {
  font-size: 1.25rem;
}
@media screen and (max-width: 576px) {
  .title--xs {
    font-size: 1rem;
  }
}

.title--xxs {
  font-size: 1rem;
}
@media screen and (max-width: 576px) {
  .title--xxs {
    font-size: 1rem;
  }
}

.subtitle {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h3.size--large {
    font-size: 3rem;
  }
  h3.size--medium {
    font-size: 2.5rem;
  }
  h3.size--small {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h3.size--large {
    font-size: 2rem;
  }
  h3.size--medium {
    font-size: 2rem;
  }
  h3.size--small {
    font-size: 1.5rem;
  }
}
.icon-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "wicked_gritregular";
}
.icon-list li {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-family: "wicked_gritregular";
}
.icon-list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 576px) {
  .icon-list li {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 576px) {
  .icon-list.icon-list--lg li {
    font-size: 1rem;
  }
}

.background--primary-gradient {
  background: #FC9210;
  background: -webkit-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: -moz-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FC9210", endColorstr="#E94E1B", GradientType=0);
}
.background--grey-800 {
  background-color: #222222;
}

.color--green {
  color: #46B060;
}
.color--red {
  color: #DE4049;
}

.blueimp-gallery {
  backdrop-filter: blur(10px);
}
.blueimp-gallery .next,
.blueimp-gallery .prev {
  color: white;
  background: transparent;
  border: 2px solid white;
  opacity: 1;
  text-shadow: none;
  font-size: 24px;
  line-height: 36px;
}
.blueimp-gallery .next:hover,
.blueimp-gallery .prev:hover {
  background-color: white;
  color: black;
}
.blueimp-gallery .next:hover svg path,
.blueimp-gallery .prev:hover svg path {
  fill: black;
}
.blueimp-gallery .next svg,
.blueimp-gallery .prev svg {
  width: 12px;
  pointer-events: none;
}
.blueimp-gallery .next svg path,
.blueimp-gallery .prev svg path {
  fill: white;
}
.blueimp-gallery .close,
.blueimp-gallery .title {
  color: white;
  opacity: 1;
  text-shadow: none;
}
.blueimp-gallery .close svg,
.blueimp-gallery .title svg {
  width: 24px;
  pointer-events: none;
}
.blueimp-gallery .close svg path,
.blueimp-gallery .title svg path {
  fill: white;
}
.blueimp-gallery .indicator > li {
  border-radius: 100px;
  width: 24px;
  height: 24px;
  background-size: cover;
  box-shadow: none;
  border: 1px solid #fff;
}

.quote__slider {
  background-color: #d1ecfa;
  padding: 80px 0 40px;
  text-align: center;
}
.quote__slider .quote__slider--swiper {
  padding-bottom: 80px;
}
.quote__slider .quote__slider--swiper .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
}
.quote__slider .quote__slider--swiper .swiper-pagination-bullet-active {
  background-color: #078fc0;
}
.quote__slider .quote__slide .quote__title {
  font-family: "neutraface_2_textbold";
}
.quote__slider .quote__slide .quote__name {
  color: #000;
  padding-top: 12px;
  margin: 12px 0 0;
  position: relative;
}
.quote__slider .quote__slide .quote__name::before {
  content: "";
  background-color: #000;
  width: 40px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  z-index: 1;
  margin-left: -20px;
}
.quote__slider .quote__slide:before {
  content: "";
  background-image: url("../../images/quote.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 48px;
  height: 48px;
  position: relative;
  display: block;
  z-index: 1;
  margin: 0 auto;
}

.image__blocks {
  margin-top: 120px;
}
.image__blocks .block {
  position: relative;
}
.image__blocks .block .block__content {
  position: absolute;
  bottom: 0;
  z-index: 2;
  padding: 32px;
}
.image__blocks .block .block__content p {
  line-height: 1.4;
  margin: 0;
  color: #fff;
}
.image__blocks .block--100 {
  height: 640px;
}
.image__blocks .block--50 {
  height: 318px;
}

.content__block {
  margin-top: 120px;
}
.content__block .block__content {
  padding: 120px;
}
.content__block .block__content.padding--small {
  padding: 80px;
}
.content__block h3:not(.size--medium) {
  font-size: 24px;
  color: #000;
}

@media screen and (max-width: 991px) {
  .content__block {
    margin-top: 80px;
  }
  .content__block .block__content {
    padding: 40px;
  }
  .content__block .block__content.padding--small {
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .content__block {
    margin-top: 40px;
  }
  .content__block .block__content {
    padding: 32px;
  }
  .content__block .block__content.padding--small {
    padding: 24px;
  }
  .content__block .image {
    height: 300px;
  }
}
.count__blocks {
  margin-top: 120px;
}
.count__blocks .block {
  position: relative;
}
.count__blocks .block h3 {
  color: #000;
}
.count__blocks .block .block__number {
  background-color: #078fc0;
  border-radius: 100px;
  color: #fff;
  text-align: center;
}
.count__blocks .block .block__number span {
  font-size: 24px;
}

.call-to-action__streamer {
  margin-top: 120px;
}
.call-to-action__streamer .block__content {
  padding: 64px;
}
.call-to-action__streamer .block__content p,
.call-to-action__streamer .block__content li {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .call-to-action__streamer {
    margin-top: 80px;
  }
  .call-to-action__streamer .block__content {
    padding: 48px;
  }
}
@media screen and (max-width: 768px) {
  .call-to-action__streamer {
    margin-top: 40px;
  }
  .call-to-action__streamer .block__content {
    padding: 32px;
  }
  .call-to-action__streamer .block__content h3 {
    font-size: 24px;
  }
  .call-to-action__streamer .image {
    height: 200px;
  }
}
.video__streamer {
  margin-top: 120px;
}
.video__streamer .video__streamer--inner {
  padding: 160px 0;
  overflow: hidden;
  position: relative;
  min-height: calc(100vh - 24px);
}
.video__streamer .video__streamer--video {
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}
.video__streamer .video__streamer__banner {
  min-height: auto;
  padding: 120px 0;
}
.video__streamer .video__streamer__banner .video__streamer--video:before {
  display: none;
}
.video__streamer .video__streamer--content {
  padding: 48px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .video__streamer .video__streamer__banner {
    padding: 240px 0 24px;
  }
  .video__streamer .video__streamer--content {
    padding: 24px;
  }
}
.card__blocks {
  margin-top: 120px;
}
.card__blocks .block {
  position: relative;
  margin-bottom: 24px;
}
.card__blocks .block a {
  text-decoration: none;
}
.card__blocks .block a:hover .image:after {
  opacity: 1;
}
.card__blocks .block a:hover .image:before {
  opacity: 1;
  right: 24px;
}
.card__blocks .block a:hover img {
  transform: scale(1.1);
}
.card__blocks .block .block__image {
  margin-bottom: 24px;
  max-height: 300px;
}
.card__blocks .block h3 {
  color: #000;
}

.articles__block {
  margin-top: 120px;
}
.articles__block .block {
  position: relative;
  margin-bottom: 24px;
}
.articles__block .block a {
  display: block;
  text-decoration: none;
}
.articles__block .block a:hover .image:after {
  opacity: 1;
}
.articles__block .block a:hover .image:before {
  opacity: 1;
  right: 24px;
}
.articles__block .block a:hover img {
  transform: scale(1.1);
}
.articles__block .block .block__image {
  margin-bottom: 24px;
  max-height: 300px;
}
.articles__block .block .reading--time {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.2;
}
.articles__block .block .reading--time span {
  color: #078fc0;
  left: 0;
  position: absolute;
}
.articles__block .block h3 {
  color: #000;
}

@media screen and (max-width: 768px) {
  .articles__block {
    margin-top: 40px;
  }
}
.team__block {
  margin-top: 120px;
}
.team__block .block {
  height: 520px;
}
.team__block .block .block__content {
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  z-index: 2;
  padding: 32px;
  width: calc(100% - 24px);
}
.team__block .block .block__content--hidden {
  opacity: 0;
  bottom: -32px;
}
.team__block .block .block__content--hidden p {
  margin: 0;
  color: #fff;
}
.team__block .block:hover .block__content--hidden {
  opacity: 1;
  bottom: 0;
}
.team__block .block:hover .block__content:not(.block__content--hidden) {
  opacity: 0;
  bottom: -32px;
}
.team__block .block .block__content--social {
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  z-index: 2;
  padding: 32px;
  width: calc(100% - 24px);
}

.awards {
  margin: 120px 0;
}
.awards .awards__rays__outer {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.awards .awards__rays {
  width: 1000px;
  height: 1000px;
  top: 50%;
  margin-top: -500px;
  left: 50%;
  margin-left: -500px;
  position: absolute;
  z-index: -1;
}
.awards .awards__rays:before {
  z-index: 1;
  content: "";
  width: 1000px;
  height: 1000px;
  top: 50%;
  margin-top: -500px;
  left: 50%;
  margin-left: -500px;
  position: absolute;
  background: rgb(255, 255, 255);
  background: -moz-radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 30%, rgb(255, 255, 255) 60%);
  background: -webkit-radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 30%, rgb(255, 255, 255) 60%);
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 30%, rgb(255, 255, 255) 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.awards .awards__rays:after {
  content: "";
  height: 1000px;
  width: 1000px;
  position: absolute;
  background-image: url("../../images/rays.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  opacity: 0.1;
  left: 0;
  top: 0;
  animation-name: spin;
  animation-duration: 120000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.awards .award__title {
  text-align: center;
  position: relative;
  display: block;
  margin-bottom: 80px;
}
.awards .award__title span {
  background-color: #078fc0;
  color: #fff;
  padding: 16px 40px;
  font-family: "neutraface_2_displaytitling";
  display: inline-block;
  font-size: 40px;
  position: relative;
}
.awards .award__title span:before {
  content: "";
  background-image: url("../../images/banner-left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 72px;
  height: 80px;
  position: absolute;
  left: -50px;
  top: 20px;
  display: block;
  z-index: 1;
}
.awards .award__title span:after {
  content: "";
  background-image: url("../../images/banner-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 72px;
  height: 80px;
  position: absolute;
  right: -50px;
  top: 20px;
  display: block;
  z-index: 1;
}
.awards .awards__blocks {
  margin: 80px 0;
}
.awards .awards__block {
  padding: 0 40px;
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}
.awards .awards__block .quote__title {
  font-family: "neutraface_2_textbold";
  margin: 0;
  font-size: 24px;
}
.awards .awards__block .quote__name {
  color: #000;
  padding-top: 12px;
  margin: 12px 0 0;
  position: relative;
}
.awards .awards__block .quote__name:before {
  content: "";
  background-color: #000;
  width: 40px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  z-index: 1;
  margin-left: -20px;
}
.awards .awards__block:before {
  content: "";
  background-image: url("../../images/laurel-left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 48px;
  height: 80px;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  z-index: 1;
}
.awards .awards__block:after {
  content: "";
  background-image: url("../../images/laurel-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 48px;
  height: 80px;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  z-index: 1;
}
.awards .award__profile img {
  height: 80px;
  width: auto;
}
.awards .award__quote {
  color: #000;
  margin-top: 20px;
  margin-left: 20px;
}
.awards .award__quote span {
  width: 100%;
  display: block;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .awards .award__title span {
    font-size: 32px;
  }
}
.chicken-block {
  margin: 120px 0;
}
.chicken-block .chicken__profile img {
  height: 80px;
  width: auto;
}
.chicken-block .chicken__quote {
  color: #000;
  margin-top: 20px;
  margin-left: 20px;
}
.chicken-block .chicken__quote span {
  width: 100%;
  display: block;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .awards .award__title span {
    font-size: 32px;
  }
}
.text__box {
  margin: auto;
  margin-left: auto;
  position: relative;
  display: block;
  margin-left: 40px;
  top: -20px;
}

.dialog-1 {
  height: auto;
  width: auto;
  background-color: #078fc0;
  position: relative;
  border-radius: 20px;
  max-width: 300px;
  padding: 20px;
}

.dialog-1 span {
  font-family: "neutraface_2_displaytitling";
  display: block;
}

.left-point {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 12px solid transparent;
  border-top: 42px solid #078fc0;
  position: absolute;
  top: 40%;
  left: -22px;
  transform: rotate(60deg);
  z-index: -1;
}

.dialog-2 {
  height: 20%;
  width: 40%;
  background-color: var(--main-light-color);
  position: absolute;
  border-radius: 10%;
  right: 0;
}

.right-point {
  width: 0;
  height: 0;
  border-left: 2vh solid transparent;
  border-right: 2vh solid transparent;
  border-top: 10vh solid var(--main-light-color);
  position: absolute;
  top: 45%;
  right: -10%;
  transform: rotate(-60deg);
}

.nav-tabs {
  border: none;
}

.nav-link {
  position: relative;
  border-radius: 6px;
  margin-bottom: 24px !important;
  text-align: left;
  padding: 24px 24px 24px 64px;
  font-size: 20px;
  background-color: transparent !important;
  color: #078fc0 !important;
  border: 1px solid #d1ecfa !important;
}
.nav-link.active, .nav-link:hover {
  background-color: #d1ecfa !important;
  color: #078fc0 !important;
  border: 1px solid #d1ecfa !important;
}
.nav-link span {
  position: absolute;
  left: 24px;
  margin-top: 0px;
}

.modal--button {
  border-radius: 6px;
  overflow: hidden;
  background-color: transparent;
  color: #000;
  border: 1px solid #d1ecfa;
  margin-bottom: 24px;
  font-size: 20px;
}
.modal--button .play--icon {
  width: 48px;
  height: 48px;
  padding: 12px;
  z-index: 1;
  border-radius: 100px;
  background-color: transparent;
  line-height: 1;
  cursor: pointer;
  border: 1px solid #000;
}
.modal--button .image {
  max-height: 100px;
}
.modal--button:hover {
  background-color: #d1ecfa;
  color: #078fc0;
}
.modal--button:hover .play--icon {
  border: 1px solid #078fc0;
}

/*
*
*
* VARIABLES
*
*
*/
/*
*
*
* PRODUCT CATEGORY PAGE
*
*
*/
.product a {
  text-decoration: none;
}
.product--card {
  background-color: #222222;
  padding: 0 32px 32px 32px;
  overflow: visible;
  margin-top: 140px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .product--card {
    padding: 0 24px 24px 24px;
  }
}
.product--card:after {
  content: "";
  opacity: 0;
  background: #FC9210;
  background: -webkit-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: -moz-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FC9210", endColorstr="#E94E1B", GradientType=0);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border-radius: 8px;
  z-index: 0;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.product--card:hover:after {
  opacity: 1;
}
.product--image {
  margin-top: -100px;
  max-height: 400px;
  width: 100%;
  margin-bottom: 40px;
  z-index: 1;
  height: 100%;
  max-width: 400px;
}
.product--image img {
  height: 100%;
  width: auto;
  margin: 0 auto;
}
.product--title, .product--category {
  font-family: "wicked_gritregular";
  margin: 0;
  z-index: 1;
}
.product .button--arrow {
  color: white;
}

/*
*
*
* PRODUCT MAIN PAGE
*
*
*/
.product-main {
  margin-top: 200px;
}
@media screen and (max-width: 576px) {
  .product-main {
    margin-top: 80px;
  }
}

/*
*
*
* VARIABLES
*
*
*/
/*
*
*
* VARIABLES
*
*
*/
/*
*
*
* TIPS & TRICKS / RECEPIES CUSTOM POST TYPE BLOCKS
*
*
*/
.posts .post--card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.posts .post--image {
  height: 320px;
  border-radius: 0.25rem;
}
.posts .post--tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: #FC9210;
  background: -webkit-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: -moz-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FC9210", endColorstr="#E94E1B", GradientType=0);
  color: white;
  font-size: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  text-transform: uppercase;
  z-index: 2;
}
.tips-tricks-main .hero-small {
  padding-bottom: 80px;
}
.tips-tricks-main .hero-small h1 {
  font-size: 4rem;
}
@media screen and (max-width: 576px) {
  .tips-tricks-main .hero-small h1 {
    font-size: 3rem;
  }
}

/*
*
*
* VARIABLES
*
*
*/
/* MEGA MENU #1 */
/* MEGA MENU #2 */
/* MOBILE ICON */
/*
Slider
*/
/* MOBILE MENU */
.mega_menu_main .modal-dialog {
  max-width: 100%;
  margin-top: 11.1rem;
}
.mega_menu_main .modal-dialog .modal-content {
  border: none;
}
.mega_menu_main .modal-dialog .modal-content .modal-body {
  padding: 5.9rem 0 6.4rem 0;
}
.mega_menu_main .mega_menu .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mega_menu_main .mega_menu .nav_menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 18rem;
}
.mega_menu_main .mega_menu .nav_menu .nav_link {
  background: transparent;
  border: none;
  padding: 0;
}
.mega_menu_main .mega_menu .nav_menu .nav_link .menu_tab_link {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 2.4rem;
  padding: 1.3rem 3.5rem 1.3rem 2.4rem;
  border-radius: 0.5rem;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mega_menu_main .mega_menu .nav_menu .nav_link .menu_tab_link .menu_tab_link_right {
  text-align: left;
}
.mega_menu_main .mega_menu .nav_menu .nav_link .menu_tab_link .arrow_right2 {
  width: 2.6rem;
}
.mega_menu_main .mega_menu .nav_menu .nav_link .menu_tab_link:hover {
  background: #efeeff;
}
.mega_menu_main .mega_menu .nav_menu .nav_link.active .menu_tab_link {
  background: #efeeff;
}
.mega_menu_main .mega_menu .megamenu_content {
  background: #efeeff;
  border-radius: 0.5rem;
  overflow: hidden;
}
.mega_menu_main .mega_menu .megamenu_content .megamenu_img img {
  height: 20.3rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.mega_menu_main .mega_menu .megamenu_content .megamenu_bottom_content {
  padding: 3rem 3.8rem 2.6rem 3.8rem;
}
.mega_menu_main .mega_menu .get_name {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 2.525rem;
}
.mega_menu_main .mega_menu .set_name {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 2.525rem;
}
.mega_menu_main .mega_menu .get_info {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.376rem;
  color: #fff;
}
.mega_menu_main .mega_menu .set_info {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.376rem;
  color: #fff;
}

.megamenu {
  width: auto;
  float: right;
  list-style: none;
  margin: auto 0;
  padding: 0;
  gap: 12px;
}
.megamenu .megamenu__item {
  display: inline-block;
}
.megamenu .megamenu__item > a {
  font-family: "wicked_gritregular";
  padding: 8px 16px;
  font-size: 0.9rem;
  color: white;
  line-height: 2.083rem;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  border-radius: 100px;
}
.megamenu .megamenu__item > a.primary-gradient {
  background: #FC9210;
  background: -webkit-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: -moz-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FC9210", endColorstr="#E94E1B", GradientType=0);
}
.megamenu .megamenu__item > a .button__badge {
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 100px;
  right: -12px;
  top: 12px;
}
.megamenu .megamenu__item > a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.megamenu .megamenu__item > a.active {
  color: white;
}
.megamenu .megamenu__item .megamenu--block {
  margin: 0 20px;
  position: absolute;
  left: 0;
  right: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  transition: all 0.3s ease-in-out;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1440px;
  width: 100%;
}
.megamenu .megamenu__item .megamenu--block-inner {
  border-radius: 8px;
  background-color: #222222;
}
.megamenu .megamenu__item .megamenu--block.flyout {
  max-width: 240px;
}
.megamenu .megamenu__item .megamenu--block.flyout h5 {
  margin: 0 !important;
  font-size: 0.9rem !important;
}
.megamenu .megamenu__item .megamenu--block.flyout .megamenu--column a {
  padding: 8px 0 !important;
}
.megamenu .megamenu__item .megamenu--block.flyout .megamenu--column a:hover h5 {
  color: #808080;
}
.megamenu .megamenu__item .megamenu--block .megamenu--title {
  color: white;
  line-height: 1;
  margin-bottom: 2.5rem;
  position: relative;
  text-align: left;
}
.megamenu .megamenu__item .megamenu--block h5.megamenu--title {
  margin-bottom: 1rem;
}
.megamenu .megamenu__item .megamenu--block li {
  width: 100%;
  float: left;
}
.megamenu .megamenu__item .megamenu--block li a {
  font-size: 1rem;
  color: white;
  position: relative;
  width: 100%;
  text-align: left;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  padding: 0;
}
.megamenu .megamenu__item .megamenu--block .megamenu--column {
  overflow: hidden;
}
.megamenu .megamenu__item .megamenu--block .megamenu--column a {
  padding: 0;
}
.megamenu .megamenu__item .megamenu--block .megamenu--column a:hover h5 {
  color: #CCCCCC;
}
.megamenu .megamenu__item .megamenu--block .megamenu--column li h5 {
  font-size: 1.5rem;
  width: 100%;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}
.megamenu .megamenu__item .megamenu--block .megamenu--column li p {
  font-size: 1rem;
  font-weight: 300;
  color: #777777;
  width: 100%;
}
.megamenu .megamenu__item .megamenu--block .megamenu--column .block {
  background: #efeeff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 240px;
}
.megamenu .megamenu__item .megamenu--block .megamenu--column .block:after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 0;
  background: -webkit-linear-gradient(45deg, rgb(252, 146, 16) 0%, rgba(233, 78, 27, 0) 100%);
  background: -moz-linear-gradient(45deg, rgb(252, 146, 16) 0%, rgba(233, 78, 27, 0) 100%);
  background: -o-linear-gradient(45deg, rgb(252, 146, 16) 0%, rgba(233, 78, 27, 0) 100%);
  background: linear-gradient(45deg, rgb(252, 146, 16) 0%, rgba(233, 78, 27, 0) 100%);
}
.megamenu .megamenu__item .megamenu--block .megamenu--column .block img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.megamenu .megamenu__item .megamenu--block .megamenu--column .block__image {
  position: absolute;
  height: 100%;
  width: 100%;
}
.megamenu .megamenu__item .megamenu--block .megamenu--column .block__content {
  padding: 24px;
  z-index: 1;
  position: relative;
}
.megamenu .megamenu__item .megamenu--block .megamenu--column .block__content h3 {
  font-size: 1.5rem;
  margin: 0;
}
.megamenu .megamenu__item .megamenu--block .megamenu--column .block__content h3:after {
  content: "chevron_right";
  font-family: "Material Symbols Outlined";
}
.megamenu .megamenu__item .megamenu--block.active {
  margin-top: 0;
  display: block;
  opacity: 1;
  pointer-events: all;
}
.megamenu .megamenu__item.megamenu--dropdown {
  padding-right: 0;
}
.megamenu .megamenu__item.megamenu--dropdown > a {
  position: relative;
  padding-right: 40px;
}
.megamenu .megamenu__item.megamenu--dropdown > a:before {
  content: "keyboard_arrow_down";
  font-family: "Material Symbols Outlined";
  opacity: 1;
  right: 16px;
  position: absolute;
}

.is-active .megamenu__mobile {
  right: 0;
}
.is-active .megamenu__mobile:after {
  opacity: 1;
}
.is-active .megamenu__mobile .megamenu__mobile--hide {
  opacity: 1;
  pointer-events: all;
}

body {
  right: 0;
  transition: all 0.4s ease-in-out 0.05s;
  position: relative;
}

body.is-active {
  right: 380px;
}

.megamenu__mobile {
  width: 100%;
  max-width: 420px;
  right: -420px;
  top: 0;
  list-style: none;
  z-index: 9999;
  transition: all 0.4s ease-in-out;
}
.megamenu__mobile .megamenu__mobile--hide {
  pointer-events: none;
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.4s ease-in-out 0.05s;
  z-index: -1;
}
.megamenu__mobile .megamenu {
  float: right;
  margin: 0;
  width: 100%;
  padding-top: 80px !important;
  background-color: #181818;
}
.megamenu__mobile .close-mobile {
  position: absolute;
  right: 32px;
  top: 30px;
  color: white;
  font-size: 32px;
  z-index: 99999;
  cursor: pointer;
}
.megamenu__mobile .megamenu__item {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  margin: 0;
}
.megamenu__mobile .megamenu__item .megamenu__item-next {
  opacity: 1;
  position: absolute;
  right: 0;
  width: 40px;
  height: 40px;
  background: #FC9210;
  background: -webkit-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: -moz-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FC9210", endColorstr="#E94E1B", GradientType=0);
  line-height: 40px;
  text-align: center;
  top: 10px;
  transition: all 0.3s ease-in-out;
  border-radius: 100px;
}
.megamenu__mobile .megamenu__item .megamenu__item-next span {
  line-height: 40px;
  color: white;
}
.megamenu__mobile .megamenu__item .megamenu__item-next:hover {
  cursor: pointer;
}
.megamenu__mobile .megamenu__item .megamenu__item-prev {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #FC9210;
  background: -webkit-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: -moz-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FC9210", endColorstr="#E94E1B", GradientType=0);
  line-height: 40px;
  text-align: center;
  top: 24px;
  transition: all 0.3s ease-in-out;
  border-radius: 100px;
}
.megamenu__mobile .megamenu__item .megamenu__item-prev span {
  line-height: 40px;
  color: white;
}
.megamenu__mobile .megamenu__item .megamenu__item-prev span:before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.megamenu__mobile .megamenu__item .megamenu__item-prev:hover {
  cursor: pointer;
}
.megamenu__mobile .megamenu__item .megamenu__item-prev:hover span:before {
  transform: scale(1);
}
.megamenu__mobile .megamenu__item > a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: block;
  padding: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
  margin: auto 0;
}
.megamenu__mobile .megamenu__item > a:hover {
  background-color: transparent;
}
.megamenu__mobile .megamenu__item > a .button__badge {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 6px;
  right: 0;
  top: 12px;
  font-size: 20px;
}
.megamenu__mobile .megamenu__item .megamenu--block {
  width: 100%;
  max-width: 420px;
  height: 100%;
  position: fixed;
  top: 0;
  left: auto;
  right: -420px;
  padding: 0;
  margin: 0;
  opacity: 1;
  pointer-events: none;
  padding-top: 0;
  z-index: 1000;
  transform: translateX(0);
  transition: all 0.4s ease-in-out;
}
.megamenu__mobile .megamenu__item .megamenu--block .megamenu--title {
  color: white;
  line-height: 1;
  margin-bottom: 2.5rem;
  position: relative;
  text-align: left;
}
.megamenu__mobile .megamenu__item .megamenu--block h5.megamenu--title {
  margin-bottom: 1rem;
}
.megamenu__mobile .megamenu__item .megamenu--block li {
  width: 100%;
  float: left;
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  margin: 0;
}
.megamenu__mobile .megamenu__item .megamenu--block li a {
  font-family: "wicked_gritregular";
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: block;
  padding: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
  margin: auto 0;
}
.megamenu__mobile .megamenu__item .megamenu--block li a:before {
  display: none;
}
.megamenu__mobile .megamenu__item .megamenu--block li a:hover:before {
  opacity: 1;
}
.megamenu__mobile .megamenu__item .megamenu--block .megamenu--column {
  overflow: hidden;
}
.megamenu__mobile .megamenu__item .megamenu--block-child {
  background-color: #181818;
  padding-top: 100px !important;
}
.megamenu__mobile .megamenu__item .megamenu--block.active {
  right: 0;
  margin-top: 0;
  display: block;
  opacity: 1;
  pointer-events: all;
}
.megamenu__mobile .megamenu__item.megamenu--fly-in {
  margin: 0;
  padding-right: 0;
}
.megamenu__mobile .megamenu__item.megamenu--fly-in > a {
  position: relative;
  width: calc(100% - 48px);
}
.megamenu__mobile .megamenu__item.megamenu--fly-in > a:before {
  display: none;
}
.megamenu__mobile .megamenu__item.megamenu--fly-in > a:hover:before {
  color: white;
}

@media (max-width: 991.98px) {
  .mega_menu_main .modal-dialog {
    margin-top: 0;
  }
  .mega_menu_main .modal-dialog .modal-content .modal-body {
    padding: 4.5rem 0 4.5rem 0;
  }
  .mega_menu_main .hamburger-menu {
    position: absolute;
    right: 2rem;
    top: 2rem;
    z-index: 1;
  }
  .mega_menu_main .arrow_back {
    position: absolute;
    left: 2rem;
    top: 2rem;
    z-index: 1;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .mega_menu_main .mega_menu {
    padding: 4rem 0 0 0 !important;
  }
  .mega_menu_main .mega_menu .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 3.5rem;
  }
  .mega_menu_main .mega_menu .nav_menu {
    grid-template-columns: 1fr;
    gap: 1rem 0;
  }
  .mega_menu_main .mega_menu .nav_menu .nav_link .menu_tab_link {
    grid-template-columns: 2.6rem 1fr;
    gap: 2rem;
    width: 100%;
  }
  .mega_menu_main .mega_menu .nav_menu .nav_link .menu_tab_link .arrow_right2 {
    width: 2.6rem;
  }
  .mega_menu_main .mega_menu .megamenu_content .megamenu_img img {
    height: 20.3rem;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
  }
  .mega_menu_main .mega_menu .megamenu_content .megamenu_bottom_content {
    padding: 3rem 3.8rem 2.6rem 3.8rem;
  }
  .mega_menu_main .mega_menu .get_name {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 2.525rem;
  }
  .mega_menu_main .mega_menu .set_name {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 2.525rem;
  }
  .mega_menu_main .mega_menu .get_info {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.376rem;
    color: #fff;
  }
  .mega_menu_main .mega_menu .set_info {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.376rem;
    color: #fff;
  }
}
@media (max-width: 767px) {
  .mega_menu_main {
    background: #fff;
  }
}
.is-active header {
  background-color: #181818 !important;
  top: 0 !important;
}

header {
  width: 100%;
  z-index: 99;
  position: fixed;
  top: 0;
  padding: 24px;
  box-sizing: border-box;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
header.hide {
  opacity: 0;
  pointer-events: none;
}
header.fade-in {
  background-color: #181818;
}
header.scrolled-down {
  transform: translate(0, -100%);
}
header.scrolled-up {
  transform: translate(0, 0%);
}
header .logo {
  width: 178px;
  max-height: 81px;
  position: relative;
  overflow: hidden;
}
header .logo .second {
  opacity: 0;
  top: 0;
  position: absolute;
}
header .logo img {
  width: 100%;
  height: auto;
}
header ul li {
  margin: 0;
}
header ul li a {
  padding: 20px 24px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  color: #000;
}
header ul li.current_page_item a {
  color: #078fc0;
}
header ul li.button--livecams a {
  padding-left: 40px;
  position: relative;
}
header ul li.button--livecams a:before {
  position: absolute;
  left: 12px;
  top: 18px;
  content: "videocam";
  font-family: "Material Icons Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
}

.home header:not(.fade-in):after {
  pointer-events: none;
  content: "";
  position: absolute;
  height: 200px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.0508404045) 80%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.0508404045) 80%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.0508404045) 80%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.home header:not(.fade-in) ul li a {
  color: #fff;
}
.home header:not(.fade-in) .hamburger-inner,
.home header:not(.fade-in) .hamburger-inner::before,
.home header:not(.fade-in) .hamburger-inner::after {
  background-color: #fff;
}

.page-template-form header {
  background: transparent !important;
}

@media screen and (max-width: 991px) {
  header {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 16px;
  }
  header .logo {
    width: 140px;
  }
}
.home header:not(.fade-in) .logo .first {
  opacity: 0;
}
.home header:not(.fade-in) .logo .second {
  opacity: 1;
}

.hamburger {
  padding: 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: auto 0 auto 24px;
  overflow: visible;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  margin-top: 10px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: white;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.is-active .hamburger-inner,
.is-active .hamburger-inner::before,
.is-active .hamburger-inner::after {
  background-color: #fff;
}

/*
Slider
*/
.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

@media screen and (max-width: 576px) {
  .hamburger {
    margin-right: 0;
  }
}
.is-active .second {
  opacity: 1 !important;
}
.is-active .first {
  opacity: 0;
}
.is-active .mobile__menu {
  right: 0;
  pointer-events: all;
  opacity: 1;
}
.is-active .mobile__menu .mobile__menu__block:nth-child(1) .mobile__menu__items {
  transition-delay: 0.1s;
}
.is-active .mobile__menu .mobile__menu__block:nth-child(2) .mobile__menu__items {
  transition-delay: 0.3s;
}
.is-active .mobile__menu .mobile__menu__block:nth-child(3) .mobile__menu__items {
  transition-delay: 0.5s;
}
.is-active .mobile__menu .mobile__menu__items {
  top: 0;
  opacity: 1;
}

body {
  right: 0;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}

body.is-active {
  right: 0;
}

.is-active .mobile__menu__items li a {
  opacity: 1 !important;
  margin-left: 0 !important;
}

.is-active .nav {
  opacity: 0;
}

.is-active .hamburger-inner,
.is-active .hamburger-inner::before,
.is-active .hamburger-inner::after {
  background-color: #fff !important;
}

.mobile__menu__block.border-right {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile__menu__items {
  opacity: 0;
  position: relative;
  top: -100px;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.mobile__menu__items h3,
.mobile__menu__items h4,
.mobile__menu__items p {
  color: #fff;
}
.mobile__menu__items h4 {
  font-size: 20px;
  margin: 0;
}

.is-active .c-block {
  transition-delay: 0.6s;
  top: 0;
}

.mobile__menu {
  width: 100%;
  max-width: 100%;
  pointer-events: none;
  top: 0;
  list-style: none;
  z-index: 8;
  padding: 0;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.mobile__menu .mobile__menu__items {
  margin: 80px 0 0;
}
.mobile__menu .mobile__menu__items li {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.mobile__menu .mobile__menu__items li > a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  position: relative;
  display: block;
  padding: 12px 0;
  font-size: 32px;
  line-height: 1;
  color: #fff;
  margin: 0;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}

@media screen and (min-width: 768px) {
  .mobile__menu__items {
    min-height: 360px;
  }
}
@media screen and (max-width: 576px) {
  .mobile__menu .mobile__menu__items ul {
    margin: 0;
  }
  .mobile__menu .mobile__menu__items ul li > a {
    font-size: 20px;
    padding: 8px 0;
  }
  .is-active .mobile__menu:before {
    display: none;
  }
}
.button {
  font-family: "wicked_gritregular";
  line-height: 1;
  padding: 20px 24px;
  border-radius: 100px;
  display: inline-block;
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  margin-right: 24px;
  margin-bottom: 12px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 576px) {
  .button {
    padding: 16px 20px;
    font-size: 0.875rem;
  }
}
.button span {
  position: relative;
  z-index: 2;
}
.button--primary {
  border-radius: 100px;
  color: white;
  background: #FC9210;
  background: -webkit-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: -moz-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FC9210", endColorstr="#E94E1B", GradientType=0);
}
.button--ghost-white {
  border-radius: 100px;
  border: 2px solid white;
  color: white;
  padding: 18px 24px;
}
@media screen and (max-width: 576px) {
  .button--ghost-white {
    padding: 14px 20px;
  }
}
.button.button--icon {
  padding-right: 48px;
}
.button.button--icon:after {
  content: "chevron_right";
  font-family: "Material Symbols Outlined";
  position: absolute;
  font-size: 24px;
  margin-top: -4px;
  right: 12px;
  z-index: 1;
}
.button.button--small {
  padding: 8px 16px;
  font-size: 12px;
}
.button.button--white {
  background-color: #fff;
}
.button.button--primary {
  color: #fff;
  background: -webkit-linear-gradient(45deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: -moz-linear-gradient(45deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: -o-linear-gradient(45deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: linear-gradient(45deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
}
.button.button--clean {
  padding: 0;
  margin: 0;
}
.button--arrow {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 100px;
  display: flex;
  align-content: center;
  position: relative;
  align-items: center;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button--arrow span {
  margin: auto;
}

.glow-on-hover:before {
  content: "";
  background: linear-gradient(45deg, #E94E1B, #ff7300, #FC9210, #ffffff, #FC9210, #ff7300, #E94E1B);
  position: absolute;
  top: 0;
  left: 0;
  background-size: 400%;
  z-index: 1;
  filter: blur(0);
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  animation: glowing 20s linear infinite;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  border-radius: 100px;
}

.glow-on-hover:active {
  color: #181818;
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.button-round {
  padding: 0;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  width: 3rem !important;
  height: 3rem !important;
}
.button-round:before, .button-round:after {
  display: none;
}
.button-round span {
  margin: auto;
  color: white;
}
.button-round--primary {
  background: #FC9210;
  background: -webkit-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: -moz-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FC9210", endColorstr="#E94E1B", GradientType=0);
}

.article__body {
  margin-top: 200px;
}
.article__body .article__image {
  min-height: 400px;
}

.reading--time {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.2;
  display: inline-block;
}
.reading--time span {
  color: #078fc0;
  left: 0;
  position: absolute;
}

.paginate_button:after,
.paginate_button:before {
  display: none;
}

.modal__content .modal-content {
  text-align: left;
  background-color: #fff;
  border-radius: 0 !important;
  padding: 24px;
}
.modal__content .modal-content .modal-body {
  padding: 0;
}
.modal__content .modal-content .modal-body p {
  text-align: left;
}

/*
*
*
* VARIABLES
*
*
*/
/*
*
*
* VARIABLES
*
*
*/
footer {
  margin-top: 120px;
  padding-top: 80px;
  background-color: #222222;
  position: relative;
}
@media screen and (max-width: 576px) {
  footer {
    margin-top: 80px;
    padding-top: 0;
  }
}
footer p,
footer a {
  color: #808080;
  margin: 0;
  text-decoration: none;
  font-size: 1rem;
}
footer h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
}
footer ul {
  margin: 0;
  padding: 0;
}
footer ul li {
  margin: 0;
  list-style: none;
  font-weight: 300;
}
footer .c-footer-logo {
  width: 70px;
  position: absolute;
  margin: 0;
  top: -90px;
  left: 50%;
  margin-left: -35px;
  z-index: -1;
}
footer .c-footer-logo img {
  width: 100%;
  height: auto;
}
footer .copyright {
  margin-top: 40px;
  padding-bottom: 50px;
  font-size: 16px;
  color: #808080;
  font-weight: 300;
}
footer .copyright a {
  text-decoration: none;
  color: #808080;
}
footer .copyright .legal li {
  display: inline-block;
  margin-right: 20px;
}
@media screen and (max-width: 576px) {
  footer .copyright .legal li {
    display: block;
  }
}
footer .copyright .legal li:last-child {
  margin-right: 0;
}

#mousefollow {
  opacity: 0;
  transition: scale(0);
  position: fixed;
  top: 30px;
  left: -50px;
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  z-index: 99;
  pointer-events: none;
  color: #fff;
  mix-blend-mode: difference;
}
#mousefollow.active {
  opacity: 1;
  transform: scale(1);
}

/*
*
*
* VARIABLES
*
*
*/
/*
*
*
* VARIABLES
*
*
*/
/*
*
*
* FORMS
*
*
*/
.gf_page_steps {
  border: none !important;
}

.gf_step_active .gf_step_number {
  background-color: #181818 !important;
  color: white !important;
  border: 2px solid #181818 !important;
}

.gf_step_number {
  color: #181818;
  border: 2px solid #181818 !important;
}

.gf_step_completed .gf_step_number:before {
  background: #1cca68 !important;
  border: 2px solid #1cca68 !important;
}

.gf_step_label {
  font-size: 20px;
  font-family: "wicked_gritregular";
}

.gfield_label, label.gfield_label {
  text-transform: uppercase;
  font-family: "wicked_gritregular";
}

.gfield_required {
  display: none !important;
}

input,
textarea {
  padding: 16px 20px !important;
  border-radius: 8px;
  border: 2px solid #CCCCCC;
  background: transparent;
  font-weight: 300;
  font-size: 16px !important;
  color: #808080;
  outline: none;
  resize: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
input:focus,
textarea:focus {
  border-color: #FC9210;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

/* Change the placeholder text color for all browsers */
::-webkit-input-placeholder {
  /* WebKit (Safari, Chrome) */
  color: #808080;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #808080;
  opacity: 1; /* Required for Firefox 18- */
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #808080;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #808080;
}

::placeholder {
  /* Most modern browsers */
  color: #808080;
}

input[type=file] {
  border: 2px dashed #CCCCCC;
  background-color: transparent;
}

textarea {
  max-height: 200px;
}

.gform_body .gchoice {
  width: 160px;
  display: inline-block;
}
.gform_body .gchoice label {
  display: inline-block;
  position: relative;
  padding: 0 0 0 30px;
  color: #CCCCCC;
  cursor: pointer;
  width: 100%;
  max-width: 100% !important;
  font-size: 1rem;
  text-transform: capitalize;
  margin-bottom: 4px;
}
.gform_body .gchoice label:before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-color: transparent;
  border: 2px solid #CCCCCC;
  transition: background-color 0.3s, border-color 0.3s;
}
.gform_body .gchoice label:after {
  content: "";
  position: absolute;
  left: 5px;
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  background-color: #FC9210;
  transition: all 0.3s;
  top: 5px;
  border-radius: 2px;
  opacity: 0;
}
.gform_body .gchoice label:hover:before, .gform_body .gchoice label.checked:before {
  border-color: #FC9210;
}
.gform_body .gchoice label:hover:after, .gform_body .gchoice label.checked:after {
  opacity: 1;
}

.gfield_checkbox .gchoice label:before {
  border-radius: 4px;
}

.gfield_radio .gchoice label:before {
  border-radius: 100px;
}

.gfield_checkbox .gchoice label:after {
  border-radius: 2px;
}

.gfield_radio .gchoice label:after {
  border-radius: 100px;
}

/* Checked state */
.gform_body input[type=checkbox]:checked + label:before,
.gform_body input[type=radio]:checked + label:before {
  border-color: #FC9210;
}

.gform_body input[type=checkbox]:checked + label:after,
.gform_body input[type=radio]:checked + label:after {
  opacity: 1;
}

/* Hide the default checkbox */
.gform_body input[type=checkbox] {
  position: fixed;
  opacity: 0;
}

/* Hide the default checkbox */
.gform_body input[type=radio] {
  position: fixed;
  opacity: 0;
}

.gform_button,
.gform_next_button,
.gform_previous_button {
  line-height: 1;
  display: inline-block;
  text-decoration: none;
  margin-right: 24px;
  margin-bottom: 0;
  background: #FC9210;
  background: -webkit-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: -moz-linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  background: linear-gradient(240deg, rgb(252, 146, 16) 0%, rgb(233, 78, 27) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FC9210", endColorstr="#E94E1B", GradientType=0);
  color: #181818 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #181818;
}
.gform_button:hover,
.gform_next_button:hover,
.gform_previous_button:hover {
  background-color: #181818 !important;
  color: white !important;
}

.gform_button,
.gform_next_button {
  float: right;
  margin-right: 0;
}

.gform_button {
  background-color: #181818 !important;
  color: white !important;
}

.gform_page_footer {
  padding: 40px 0 !important;
}

.gform_wrapper.gravity-theme .gform_validation_errors {
  background: transparent !important;
  border: 1px solid #faba64 !important;
  padding: 24px !important;
}
.gform_wrapper.gravity-theme .gform_validation_errors ol,
.gform_wrapper.gravity-theme .gform_validation_errors ul {
  margin-bottom: 0 !important;
}
.gform_wrapper.gravity-theme .gform_validation_errors h2,
.gform_wrapper.gravity-theme .gform_validation_errors li,
.gform_wrapper.gravity-theme .gform_validation_errors a {
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  text-decoration: none;
}
.gform_wrapper.gravity-theme .gform_validation_errors .gform-icon {
  display: none !important;
}

.gfield_validation_message {
  margin-top: 16px !important;
  border-radius: 5px !important;
  padding: 24px !important;
  background: transparent !important;
  border: 1px solid #faba64 !important;
  color: #181818 !important;
  font-weight: 300 !important;
}

.gform_description {
  margin: 0 !important;
}

.gform_footer {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.gform_fields {
  display: flex !important;
  flex-wrap: wrap !important;
  grid-column-gap: 0 !important;
  /* margin-left: -8px;
  margin-right: -8px;
  width: calc(100% + 16px); */
}

.gform_fields .col-100,
.gform_fields .gfield {
  width: 100%;
  flex: 0 0 auto;
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.gform_fields .col-50 {
  width: 50%;
  flex: 0 0 auto;
  padding-left: 8px;
  padding-right: 8px;
}

@media screen and (max-width: 576px) {
  .gform_fields .col-50 {
    width: 100%;
  }
}
.gform_footer,
.gform_page_footer,
.gf_page_steps {
  padding-left: 8px !important;
  padding-right: 8px !important;
  margin-left: -8px !important;
  margin-right: -8px !important;
}

/* ------------------ mc4wp ------------------ */
.mc4wp-form-fields {
  display: flex;
  gap: 12px;
}
.mc4wp-form-fields input {
  background-color: white;
  border-radius: 6px;
  border: none;
  color: #078fc0;
  font-weight: bold;
  width: 100%;
}
.mc4wp-form-fields input.news-button {
  width: auto;
}

.breadcrumb {
  display: block;
  z-index: 2;
  margin-top: 120px;
}
.breadcrumb p,
.breadcrumb a {
  margin-bottom: 0;
  font-size: 1rem;
  color: #000;
  font-weight: 200;
  text-decoration: none;
  color: #fff;
}
.breadcrumb i {
  font-size: 0.8rem;
  margin: 0 12px;
}
.breadcrumb .breadcrumb-arrow {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1.45508 8.95998L4.71508 5.69998C5.10008 5.31498 5.10008 4.68498 4.71508 4.29998L1.45508 1.03998' stroke='%23404040' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
  background-size: 7px;
  width: 20px;
  height: 20px;
  position: relative;
  display: inline-block;
  top: 6px;
  background-position: center;
  background-repeat: no-repeat;
}
.breadcrumb .breadcrumb_last {
  font-weight: 200;
}

.modal-content {
  background-color: transparent;
  border: none !important;
}
.modal-content .swiper-arrows {
  width: 100%;
  bottom: calc(50% - 24px);
}

.modal-backdrop {
  opacity: 0.9 !important;
}

.modal-header {
  background-color: transparent !important;
  border: none !important;
  padding-right: 8px;
  padding-bottom: 18px;
}

.btn-close {
  background-color: #fff !important;
  opacity: 1;
  position: fixed;
  right: 30px;
  top: 30px;
  padding: 24px !important;
  border-radius: 100px;
}

.modal-body {
  background-color: transparent !important;
}
.modal-body p {
  text-align: center;
}

.ratio-9x16 {
  --bs-aspect-ratio: 179.25%;
}

.newsletter__modal {
  position: fixed;
  right: 24px;
  bottom: 24px;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  width: 100%;
  max-width: 400px;
}

.newsletter__modal .btn-close {
  opacity: 0;
}

.newsletter__modal.show {
  opacity: 1;
  pointer-events: all;
  bottom: 24px;
  transform: translateY(0);
}

.newsletter__modal.show .btn-close {
  opacity: 1;
}

.newsletter__modal .btn-close {
  background-color: #fff !important;
  position: absolute;
  right: 0px;
  top: -80px;
  padding: 24px !important;
  border-radius: 100px;
}

.newsletter__modal input {
  border: 1px solid #d1ecfa;
}

.social {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.social li {
  display: inline-block !important;
  margin: 0 8px 8px 0 !important;
  width: auto !important;
}
.social li .social__item {
  width: 40px;
  height: 40px;
  background-color: #fff;
  position: relative;
  display: block;
  text-align: center;
  border-radius: 3px;
  line-height: 38px !important;
  margin: 0;
  padding: 0 !important;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social li .social__item svg {
  width: auto;
  height: 20px;
}
.social li .social__item svg path {
  fill: #078fc0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social li .social__item.social__item--small {
  width: 48px;
  height: 48px;
  line-height: 42px;
}
.social li .social__item.social__item--small svg {
  height: 16px;
}
.social li .social__item:hover {
  background-color: #fff;
}
.social li .social__item:hover svg path {
  fill: #078fc0;
}

/* Container Style */
.social-share-buttons {
  display: flex;
  justify-content: start;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 1rem;
}

/* Individual Button Styles */
.social-share-buttons a {
  padding: 0.5rem 1rem; /* Button padding */
  text-decoration: none; /* Remove underline from the links */
  border-radius: 4px; /* Rounded corners for the buttons */
  font-weight: bold; /* Bold text for better visibility */
  transition: background-color 0.3s; /* Smooth background color transition for hover effect */
}

/* Color and Hover Styles for Each Social Network */
.social-share-buttons a[href*="facebook.com"] {
  background-color: #3b5998;
  color: white;
}

.social-share-buttons a[href*="facebook.com"]:hover {
  background-color: #2d4373;
}

.social-share-buttons a[href*="twitter.com"] {
  background-color: #1da1f2;
  color: white;
}

.social-share-buttons a[href*="twitter.com"]:hover {
  background-color: #0c85d0;
}

.social-share-buttons a[href*="linkedin.com"] {
  background-color: #0077b5;
  color: white;
}

.social-share-buttons a[href*="linkedin.com"]:hover {
  background-color: #005582;
}

.social-share-buttons a[href*="pinterest.com"] {
  background-color: #bd081c;
  color: white;
}

.social-share-buttons a[href*="pinterest.com"]:hover {
  background-color: #8d0615;
}

.heading--block {
  margin-bottom: 40px;
}

@media screen and (max-width: 1200px) {
  .c-team__text {
    position: relative !important;
  }
}
@media screen and (max-width: 991px) {
  .c-hero h1 {
    font-size: 48px;
  }
  h3 {
    font-size: 32px;
  }
  .c-button {
    position: relative !important;
  }
  .c-streamer,
  .c-streamer-small {
    margin-bottom: 0;
    padding-bottom: 80px;
  }
  .c-image-wide {
    width: 100%;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .c-hero .c-hero__video,
  .c-hero .c-hero__image {
    height: 400px;
    min-height: auto;
  }
  .c-hero {
    padding-top: 220px;
    padding-bottom: 40px;
    min-height: auto;
    height: auto;
  }
  .c-hero.c-page {
    margin-top: 140px;
    padding-top: 0;
  }
  .c-hero h1 {
    font-size: 40px;
  }
  .c-hero .c-hero__video:after,
  .c-hero .c-hero__image:after {
    width: 100%;
  }
  .c-hero .c-hero__video video,
  .c-hero .c-hero__video img,
  .c-hero .c-hero__image video,
  .c-hero .c-hero__image img {
    width: 100%;
  }
  .c-hero .c-hero__video:after,
  .c-hero .c-hero__image:after {
    background: -moz-linear-gradient(0deg, rgb(0, 8, 20) 0%, rgba(0, 8, 20, 0.95) 30%, rgba(0, 8, 20, 0.6) 60%, rgba(0, 8, 20, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgb(0, 8, 20) 0%, rgba(0, 8, 20, 0.95) 30%, rgba(0, 8, 20, 0.6) 60%, rgba(0, 8, 20, 0) 100%);
    background: linear-gradient(0deg, rgb(0, 8, 20) 0%, rgba(0, 8, 20, 0.95) 30%, rgba(0, 8, 20, 0.6) 60%, rgba(0, 8, 20, 0) 100%);
  }
  .c-page-content .c-page-content__image {
    min-height: 300px;
  }
  .c-page-content .c-page-content__row {
    margin-bottom: 40px;
  }
  .c-streamer,
  .c-streamer-small {
    margin-bottom: 0;
    padding-bottom: 80px;
  }
  .subtitle {
    font-size: 14px;
  }
  .swiper-arrows {
    width: 100%;
  }
  .c-highlights {
    transform: translateY(0);
  }
}
@media screen and (max-width: 576px) {
  .c-hero h1 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
  .c-button {
    position: relative !important;
    width: 100%;
    text-align: center;
  }
}
.pagination-container {
  height: 48px;
  width: 112px;
  display: flex;
}
.pagination-container .button-round {
  margin: 0;
  flex: 0 0 auto;
}

.swiper-pagination-bullet-active {
  background: #FC9210 !important;
}