@import 'normalize.css';
@import '../../media/css/fontes/fontes.css';
*,
*::before,
*::after {
  box-sizing: border-box;
}

:target {
  display: block;
  position: relative;
  top: -120px;
  visibility: hidden;
}
@media (max-width: 768px) {
  :target {
    top: -50px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: futura-pt, sans-serif;
  line-height: 1.5;
  padding-top: 110px;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    padding: 0;
  }
}

a {
  text-decoration: none;
}

.bg-oil {
  background-color: #241D1A;
}

.bg-orange {
  background-color: #C3623F;
}

.bg-brown {
  background-color: #512C1F;
}

.bg-coffee {
  background-color: #DFCDAB;
}

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

.text-oil {
  color: #241D1A;
}

.text-orange {
  color: #C3623F;
}

.text-brown {
  color: #512C1F;
}

.text-coffee {
  color: #DFCDAB;
}

.text-white {
  color: white;
}

.text-black {
  color: black;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-italic {
  font-style: italic;
}

.text-bold {
  font-weight: bold;
}

h2 {
  font-size: 52px;
  margin-top: 0;
  margin-bottom: 80px;
  color: #C3623F;
  font-family: "Bauer Bodoni Std 1", serif;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 2px;
  line-height: 1;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #C3623F;
}
h3 small {
  display: block;
  font-size: 10px;
  font-family: futura-pt, sans-serif;
}

h4 {
  text-transform: uppercase;
  font-family: futura-pt-bold;
  font-size: 14px;
}
h4 sup {
  text-transform: lowercase;
}

h6 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: #512C1F;
}
h6 sup {
  letter-spacing: 0;
  font-size: 60%;
}

ul {
  margin: 0;
  padding: 0;
}
.program-dates em{ 
    font-style: normal;
}

p {
  margin-bottom: 20px;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 10px;
}

.button {
  display: inline-block;
  justify-content: center;
  padding: 15px 25px;
  font-size: 11.5px;
  font-family: futura-pt-bold;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  background-color: #C3623F;
  min-width: 200px;
  letter-spacing: 1px;
}
.button-brown {
  background-color: #512C1F;
}
.button-tiny {
  min-width: auto;
}

.grid {
  display: grid;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .grid-mobile-1 {
    display: flex;
    flex-direction: column;
  }
  .grid-mobile-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-mobile-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .img-mobile-full {
    width: 100%;
  }
}
.header {
  background-color: rgba(223, 205, 171, 0.9);
  display: flex;
  height: 110px;
  width: 100%;
  left: 0;
  position: fixed;
  top: 0;
  z-index: 9000;
  transition: left 0.25s ease-in-out;
}
@media (max-width: 768px) {
  .header {
    height: 100%;
    left: 100%;
    width: calc(100% - 40px);
    background-color: rgba(195, 98, 63, 0.95);
    flex-direction: column;
  }
}
.header-toggle {
  width: 28px;
  height: 28px;
  position: fixed;
  top: 8px;
  right: 8px;
  border: 0;
  padding: 0;
  background: none;
  outline: none;
  z-index: 100;
  display: none;
}
@media (max-width: 768px) {
  .header-toggle {
    display: block;
  }
}
.header-toggle span {
  display: block;
  height: 3px;
  background-color: #6D3739;
  position: relative;
  transition: all 0.25s ease;
}
.header-toggle span + span {
  margin-top: 4px;
}
.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #C3623F;
  width: 170px;
  padding: 10px;
  text-align: center;
}
.header-logo img {
  width: 75%;
}
@media (max-width: 768px) {
  .header-logo {
    width: 100%;
    order: 2;
    height: 110px;
    background: transparent;
  }
  .header-logo img {
    width: 100px;
  }
}
.header-menu {
  flex: 1;
  padding: 30px;
}
@media (max-width: 768px) {
  .header-menu {
    overflow-y: scroll;
    border-bottom: 1px solid rgba(81, 44, 31, 0.25);
  }
}
.header-menu ul {
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-menu ul:nth-child(2) li {
  padding: 5px;
}
@media (max-width: 768px) {
  .header-menu ul {
    flex-direction: column;
  }
}
.header-menu li {
  padding: 5px 14.5px;
}
@media (max-width: 768px) {
  .header-menu li {
    padding: 0;
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }
}
.header-menu a {
  display: block;
  color: #512C1F;
  text-decoration: none;
  text-transform: uppercase;
  font-family: futura-pt-bold;
  font-weight: bold;
  font-size: 12.5px;
  padding: 0 5px;
}
@media (max-width: 768px) {
  .header-menu a {
    color: white;
  }
}
.header-menu a:hover {
  color: #C3623F;
}
@media (max-width: 768px) {
  .header-menu a:hover {
    color: white;
  }
}
.header-date {
  background-color: #512C1F;
  padding: 35px 15px;
  order: 3;
  min-width: 170px;
}
.header.is-active {
  left: 40px;
}
.header.is-active .header-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header.is-active .header-toggle span:nth-child(2) {
  opacity: 0;
}
.header.is-active .header-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

.line-overlay {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 101;
}
@media (max-width: 768px) {
  .line-overlay {
    display: none;
  }
}

.section {
  padding: 100px 0;
  text-align: center;
}

.section-hero {
  background: url("../assets/images/SITE_CAPA_DCIT_H.jpeg") no-repeat right top;
  background-size: cover;
  background-color: #DFCDAB;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: -110px;
}
.section-hero img {
  margin-top: 80px;
  width: 580px;
}
@media (max-width: 768px) {
  .section-hero {
    margin: 0;
    background-size: cover;
    background-position: 89%;
  }
  .section-hero img {
    margin-top: 120px;
    width: 427px;
  }
}
.section-hero .line-overlay {
  bottom: -50px;
  margin-left: -170px;
}
.section-hero .line-overlay img {
  width: 1200px;
}

.section-about .section-content {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 900;
  width: 90%;
}

.section-bestof {
  position: relative;
  overflow: hidden;
}
.section-bestof .section-content {
  margin: 0 auto;
  width: 90%;
}
.section-bestof .bestof-menu {
  margin: 100px 0;
}
.section-bestof .bestof-results {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
}
.section-bestof .bestof-results h2,
.section-bestof .bestof-results h3 {
  flex: 100%;
  text-align: left;
}
.section-bestof .bestof-results h2 {
  font-size: 30px;
  font-family: futura-pt;
  margin-bottom: 60px;
}
.section-bestof .bestof-results .card {
  flex: 33% 0;
  text-align: left;
  font-size: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 200;
}
@media (max-width: 768px) {
  .section-bestof .bestof-results .card {
    flex: 50% 0;
  }
}
.section-bestof .bestof-results .card-content {
  padding-right: 15px;
}
.section-bestof .bestof-results .card h4 {
  margin: 0;
  line-height: 1;
}
.section-bestof .bestof-results .card small {
  text-transform: uppercase;
  font-size: 10px;
}
.section-bestof .bestof-results .card img {
  width: 100%;
  margin-bottom: 5px;
}
.section-bestof .bestof-results-notfound {
  color: #512C1F;
  font-size: 30px;
  line-height: 1;
  text-align: center;
  font-family: futura-pt-bold;
  flex: 100%;
  width: 100%;
}
.section-bestof .line-overlay {
  top: 305px;
  margin-left: -35px;
}
.section-bestof .line-overlay img {
  width: 1450px;
}
.section-bestof .button {
  position: relative;
  z-index: 200;
}

.section-team {
  position: relative;
  padding-bottom: 200px;
  background-position: -4px 53px;
}
@media (max-width: 768px) {
  .section-team {
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .section-team .section-content {
    display: flex;
    flex-direction: column-reverse;
  }
}
.section-team .team {
  margin-top: 150px;
  max-width: 800px;
  gap: 30px;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .section-team .team {
    margin-top: 50px;
    gap: 20px;
  }
}
.section-team .team-user {
  display: block;
  margin-bottom: 70px;
  position: relative;
}
@media (max-width: 768px) {
  .section-team .team-user {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .section-team .team-user h3 {
    margin: 10px 0;
  }
}
.section-team .team-user img {
  width: 100%;
  height: auto;
}
.section-team .team-user small {
  color: #512C1F;
}
.section-team .team-user::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1000;
  cursor: pointer;
}
.section-team .contact {
  margin-top: 50px;
  position: relative;
  z-index: 200;
}
@media (max-width: 768px) {
  .section-team .contact {
    margin: 0;
  }
}
.section-team .contact h4 {
  margin: 10px 0;
}
.section-team .contact a {
  color: black;
}
.section-team .line-overlay {
  top: -170px;
  margin-left: -100px;
}
.section-team .line-overlay img {
  width: 1100px;
}

.section-quote {
  background-color: #DFCDAB;
  padding-top: 0;
  position: relative;
}
.section-quote blockquote {
  text-align: right;
  font-size: 24px;
  font-weight: normal;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .section-quote blockquote {
    font-size: 20px;
  }
}
.section-quote blockquote small {
  color: #512C1F;
  font-size: 24px;
  display: block;
  margin-top: 20px;
  font-style: italic;
}
.section-quote .line-overlay {
  top: 0;
  margin-left: 220px;
}
.section-quote .line-overlay img {
  width: 500px;
}

.section-exhibitors {
  text-align: left;
  position: relative;
  padding-bottom: 0;
}
.section-exhibitors .button-back-to-top {
  position: fixed;
  bottom: 5px;
  right: 5px;
  text-align: center;
  padding: 10px 15px;
  min-width: 0;
  font-size: 10px;
}
.section-exhibitors h1 {
  margin: 100px 0 30px;
}
@media (max-width: 768px) {
  .section-exhibitors h1 {
    margin: 50px 0 30px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .section-exhibitors h2 {
    margin: 0 0 50px;
  }
}
.section-exhibitors .section-exhibitors-l-italia {
  position: absolute;
  top: 220px;
  margin-left: 980px;
  z-index: 100;
}
.section-exhibitors .section-exhibitors-cover {
  margin: 100px 0 0;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.section-exhibitors .section-exhibitors-cover img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-exhibitors .section-exhibitors-cover .map-overlay {
    zoom: 0.375;
    transform: translate(-2px, 507px);
  }
}
.section-exhibitors .section-exhibitors-cover-mini {
  height: 100%;
  display: flex;
}
.section-exhibitors .section-exhibitors-cover-mini img {
  align-self: center;
  margin-left: 50px;
}
.section-exhibitors .section-exhibitors-cover-mini .map-meta {
  position: absolute;
  top: 50%;
  right: 0;
  text-align: left;
  transform: translateY(-120%);
}
.section-exhibitors .exhibitors-sponsor-image {
  width: 550px;
}
@media (max-width: 768px) {
  .section-exhibitors .exhibitors-sponsor-image {
    width: 100%;
  }
}
.section-exhibitors .section-content {
  padding: 30px 0;
  position: relative;
}
.section-exhibitors .section-content ul {
  list-style: none;
  font-size: 14px;
}
.section-exhibitors .section-content p {
  margin: 0;
}
.section-exhibitors .section-content + .section-content {
  margin-top: 100px;
}
.section-exhibitors .content-grid {
  display: flex;
}
.section-exhibitors .content-grid-content {
  width: 600px;
}
@media (max-width: 768px) {
  .section-exhibitors .content-grid-content {
    width: auto;
  }
}
.section-exhibitors .content-grid-map {
  flex: 1;
  position: sticky;
  top: 110px;
  height: calc(100vh - 110px);
}
.section-exhibitors .exhibitors {
  max-width: 700px;
  gap: 20px;
  position: relative;
  margin-bottom: 200px;
}
.section-exhibitors .exhibitors::before {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -120px;
  width: 1000px;
  height: 580px;
  background: url(../assets/images/lines/line-exhibitors.png) no-repeat bottom left;
  background-size: 1000px;
  z-index: -1;
}
@media (max-width: 768px) {
  .section-exhibitors .exhibitors::before {
    content: none;
    display: none;
  }
}
@media (max-width: 768px) {
  .section-exhibitors .exhibitors {
    max-width: 100%;
    display: block;
  }
}
.section-exhibitors .exhibitors .item {
  width: 280px;
}
@media (max-width: 768px) {
  .section-exhibitors .exhibitors .item {
    width: auto;
  }
}
.section-exhibitors .exhibitors .item h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
}
.section-exhibitors .exhibitors .item h4 {
  margin: 5px 0 0;
}
.section-exhibitors .exhibitors .item a {
  color: black;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section-exhibitors .exhibitors .item a {
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .section-exhibitors .exhibitors .item + .item {
    margin-top: 25px;
  }
}
.section-exhibitors .exhibitors:last-child::before {
  content: none;
  display: none;
}
.section-exhibitors .exhibitors + h2 {
  margin-top: 50px;
}
.section-exhibitors .line-overlay {
  display: none;
  top: 1500px;
  margin-left: -50px;
}
.section-exhibitors .line-overlay img {
  width: 1400px;
}

.section-quote-gallery {
  padding: 100px 0;
  background-color: #DFCDAB;
  position: relative;
}
.section-quote-gallery .photo-1 {
  margin-top: 150px;
}
.section-quote-gallery .photo-2 {
  margin-top: 0;
}
.section-quote-gallery .photo-3 {
  margin-top: -7px;
  margin-left: -50px;
}
@media (max-width: 768px) {
  .section-quote-gallery {
    padding: 0;
    text-align: center;
  }
  .section-quote-gallery .photo {
    margin: 0;
  }
  .section-quote-gallery .photo img {
    display: block;
    width: 100%;
  }
}
.section-quote-gallery blockquote {
  width: 326px;
  margin-left: 170px;
  margin-top: 50px;
  font-size: 24px;
  font-weight: normal;
  text-align: right;
}
@media (max-width: 768px) {
  .section-quote-gallery blockquote {
    font-size: 20px;
  }
}
.section-quote-gallery blockquote p {
  color: #512C1F;
}
@media (max-width: 768px) {
  .section-quote-gallery blockquote {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}
.section-quote-gallery .line-overlay {
  top: 0;
  left: 0;
  right: -100px;
  transform: translate(0, 0);
}
.section-quote-gallery .line-overlay img {
  width: 1250px;
}

.section-travel-advisor .section-content {
  max-width: 750px;
  margin: 0 auto;
  width: 90%;
}
.section-travel-advisor .section-content p br {
  display: none;
}
.section-travel-advisor img {
  width: 1100px;
  max-width: 100%;
}

.section-program {
  background-color: #DFCDAB;
  position: relative;
}
.section-program :target {
  top: -180px;
}
@media (max-width: 768px) {
  .section-program :target {
    top: -90px;
  }
}
@media (max-width: 768px) {
  .section-program img {
    margin: -80px 0 -50px;
  }
}
.section-program h2 {
  margin-top: -70px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .section-program h2 {
    margin: 40px 0;
  }
}
.section-program .grid {
  gap: 125px;
}
.section-program .program {
  text-align: left;
}
.section-program .program ul {
  list-style: none;
  margin-top: 25px;
}
.section-program .program li {
  line-height: 1.35;
  font-size: 14px;
}
.section-program .program li {
  margin-top: 30px;
}
.section-program .line-overlay {
  top: -37px;
  margin-left: 180px;
}
.section-program .line-overlay img {
  width: 700px;
}

.section-press .section-content {
  max-width: 900px;
  margin: 0 auto;
}
.section-press .press-contact {
  font-size: 14px;
}

.footer {
  background-color: #C3623F;
  padding: 50px 0;
  align-items: flex-end;
}
.footer .container {
  position: relative;
  z-index: 900;
}
.footer .contact strong {
  margin-right: 10px;
  font-style: normal;
}

.footer .contact a {
   font-style: normal;
}

@media (max-width: 768px) {
  .footer .grid {
    display: block;
    text-align: center;
  }
  .footer .grid .links {
    text-align: center;
  }
}
.footer .col {
  align-self: flex-end;
}
.footer .date {
  justify-self: flex-start;
}
.footer .date img {
  margin-bottom: 50px;
}
.footer .social-links {
  margin-top: 50px;
}
.footer .social-links a {
  margin: 0 5px;
}
.footer a {
  color: white;
  vertical-align: baseline;
}

.event-date {
  text-transform: uppercase;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  font-family: futura-pt, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  margin: 0;
}
.event-date sup {
  text-transform: lowercase;
  font-size: 8px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  position: relative;
  z-index: 999;
}
.nav-menu-vertical {
  flex-direction: column;
}
.nav-menu-vertical .nav-submenu {
  position: static;
}
@media (max-width: 768px) {
  .nav-menu-horizontal {
    flex-direction: column;
  }
}
.nav-menu-horizontal .nav-submenu {
  position: absolute;
}
@media (max-width: 768px) {
  .nav-menu-horizontal .nav-submenu {
    position: static;
  }
}
.nav-menu-horizontal .nav-menu-item {
  position: relative;
  height: 30px;
}
@media (max-width: 768px) {
  .nav-menu-horizontal .nav-menu-item {
    height: auto;
  }
}
.nav-menu-horizontal .nav-menu-item + .nav-menu-item {
  margin-left: 30px;
}
@media (max-width: 768px) {
  .nav-menu-horizontal .nav-menu-item + .nav-menu-item {
    margin: 0;
  }
}
.nav-menu-centered {
  align-items: center;
}
.nav-menu .nav-submenu {
  left: 0;
  top: 30px;
  list-style: none;
  text-align: left;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  overflow: auto;
  max-height: 350px;
}
@media (max-width: 768px) {
  .nav-menu .nav-submenu {
    text-align: center;
  }
}
.nav-menu .nav-submenu li a {
  padding: 5px 10px 5px 18px;
  white-space: nowrap;
  display: block;
}
.nav-menu .nav-submenu li a:hover {
  background: white;
}
.nav-menu .nav-menu-item {
  padding: 2px 5px;
}
.nav-menu .nav-menu-item li {
  position: relative;
}
.nav-menu .nav-menu-item a {
  text-transform: uppercase;
  text-decoration: none;
  color: black;
  font-size: 12px;
  font-family: futura-pt;
}
.nav-menu .nav-menu-item > a::before {
  content: ">";
  margin-right: 3px;
}
.nav-menu .nav-menu-item.is-active {
  background: white;
}
.nav-menu .nav-menu-item.is-active .nav-submenu {
  display: block;
}
.nav-menu .nav-menu-item input[type=checkbox],
.nav-menu .nav-menu-item input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  appearance: none;
  opacity: 0;
  cursor: pointer;
}
.nav-menu .nav-menu-item input[type=checkbox] + span,
.nav-menu .nav-menu-item input[type=radio] + span {
  position: absolute;
  left: 5px;
  top: 4px;
  font-size: 12px;
  opacity: 0;
}
.nav-menu .nav-menu-item input[type=checkbox]:checked + span,
.nav-menu .nav-menu-item input[type=radio]:checked + span {
  opacity: 1;
}

.section-sponsors .sponsors {
  margin-bottom: 150px;
}
.section-sponsors .sponsors img {
  max-width: 100%;
}

.section-previous-editions {
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .section-previous-editions .video-img {
    width: 100%;
  }
}
.section-previous-editions .section-content {
  position: relative;
  z-index: 900;
}
.section-previous-editions .grid {
  gap: 60px;
}
@media (max-width: 768px) {
  .section-previous-editions .grid {
    gap: 20px;
  }
}
.section-previous-editions h3 {
  font-family: futura-pt-bold;
  font-size: 15px;
}
.section-previous-editions .card a {
  color: black;
}
.section-previous-editions .card h4 {
  margin: 0;
}
.section-previous-editions .line-overlay {
  top: -110px;
  left: 860px;
  transform: translate(0, 0);
}

.section-parla .section-content {
  width: 50%;
  margin: 0 auto;
}
.section-parla .line-overlay {
  top: 0;
  right: -170px;
  left: initial;
}
.section-parla .content-grid {
  gap: 100px;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .section-parla .content-grid {
    display: flex;
    flex-direction: column-reverse;
  }
}
.section-parla .section-parla-map {
  position: relative;
  margin-bottom: 50px;
}
.section-parla .section-parla-map img {
  width: 95%;
}
.section-parla h3 {
  font-size: 40px;
  font-family: "Bebas Neue";
  font-weight: normal;
  color: #512C1F;
}
.section-parla h4 {
  font-size: 24px;
  line-height: 1.25;
  color: #512C1F;
}
.section-parla h4 small {
  font-family: "Bebas Neue";
  font-size: 80%;
  font-weight: normal;
  display: block;
  letter-spacing: 1px;
}
.section-parla .video-grid {
  gap: 30px;
}
@media (max-width: 768px) {
  .section-parla .video-grid {
    gap: 10px;
  }
}
.section-parla .video-grid h4 {
  font-size: 120%;
}
@media (max-width: 768px) {
  .section-parla .video-grid h4 {
    font-size: 100%;
  }
}
@media (max-width: 768px) {
  .section-parla .video-grid a img {
    width: 100%;
  }
}

.press-articles {
  list-style: none;
  margin-bottom: 50px;
  column-gap: 20px;
  row-gap: 30px;
}
@media (max-width: 768px) {
  .press-articles {
    gap: 20px;
  }
}
.press-articles li {
  max-width: 330px;
  line-height: 1.25;
}
.press-articles li a {
  color: black;
  font-weight: bold;
}
.press-articles li h4 {
  font-family: "Bebas Neue";
  margin: 5px 0 0;
  color: #C3623F;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
}

.hide {
  display: none;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  .show-mobile {
    display: block;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive-item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-top: 56.25%;
}

.map-overlay .map-link {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.map-overlay .map-link::after {
  content: "";
  display: block;
  height: 50px;
  width: 50px;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team-user-wrap {
  background: url(../assets/images/lines/line-team-modal.png) no-repeat;
  background-position: 101% 10%;
  background-size: 150px;
}

.team-user-content {
  display: flex;
  align-items: start;
  padding: 50px 160px 100px;
}
@media (max-width: 768px) {
  .team-user-content {
    padding: 20px 20px 50px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.75);
  }
}
.team-user-content .team-user-content-image {
  margin-right: 20px;
  width: 250px;
}
.team-user-content .team-user-content-image img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .team-user-content .team-user-content-image img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    margin-top: 60px;
  }
}
.team-user-content .team-user-content-text {
  flex: 1;
}
.team-user-content h3 {
  margin: 0 0 20px;
  font-size: 22px;
  font-family: bebas-neue;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .team-user-content h3 {
    position: absolute;
    top: 20px;
  }
}
.team-user-content h3 small {
  font-size: 12px;
}
.team-user-content p {
  font-size: 14px;
  font-family: futura-pt;
  font-weight: 500;
}

.fancybox-slide--html {
  padding: 20px;
}
@media (max-width: 768px) {
  .fancybox-slide--html {
    padding: 5px;
  }
}

.fancybox-content {
  padding: 0;
}

.team-user-wrap + button.fancybox-button svg {
  display: none;
}

.team-user-wrap + button.fancybox-button::after {
  content: "< back";
  text-transform: uppercase;
  font-family: Verdana;
  font-weight: bold;
  font-size: 14px;
  color: #512C1F;
}

.team-user-wrap + button.fancybox-button {
  position: absolute;
  top: 85% !important;
  width: auto;
  white-space: nowrap;
  right: 50px;
}
@media (max-width: 768px) {
  .team-user-wrap + button.fancybox-button {
    right: 18px;
    top: 93% !important;
  }
}

/*# sourceMappingURL=main.css.map */
