*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --light-blue: rgb(139, 209, 244);
  --darker-blue: rgb(60, 155, 213);
  --main-dark: rgb(43, 58, 82);

  --dark-gray: rgb(53, 79, 82);
  --dark-green: rgb(20, 54, 66);

  --test-one: rgb(28, 124, 84);
  --test-two: rgb(140, 186, 128);
  --test-three: rgb(224, 175, 160);
}
/* DEFAULT STYLES */
a,
ul,
li,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
input,
label {
  font-family: "helvetica55", sans-serif;
}
a {
  text-decoration: none;
  color: unset;
}
button {
  background-color: unset;
  border: none;
  outline: none;
  cursor: pointer;
}
li {
  list-style-type: none;
}
.active {
  display: flex !important;
}
.no_scroll {
  overflow: hidden;
}

.wrapper {
  max-width: 1920px;
  margin: auto;
  position: relative;
}

.title {
  font-size: 2.1em;
  margin: 1rem 0;
  font-family: "Helvetica65Caps", sans-serif;
  font-weight: lighter;
  text-transform: uppercase;
  text-align: center;
  color: var(--main-dark);
}

hr {
  width: 85%;
  margin: 3rem auto;
}

/* HEADER */

header {
  width: 100%;
  height: 100px;
  background-color: var(--main-dark);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5rem;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.4s;
  z-index: 10;
}

header.tiny {
  height: 65px;
  background-color: #ffffff;
  color: var(--darker-blue);
  box-shadow: 0 1px 15px gray;
}

header.tiny .logo {
  max-height: 60px;
  transform: translateY(10px);
}

header.tiny .sub_menu,
header.tiny .sub_menu_inner {
  background-color: #ffffff;
}
header.tiny .menu li:hover > a {
  color: var(--light-blue);
}

.logo_wrap {
  overflow: hidden;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}

.tiny .logo_wrap {
  height: 60px;
}
.logo {
  max-width: 200px;
  max-height: 80px;
  transition: all 0.4s;
}

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.menu.active {
  padding-top: 5rem;
}
.menu_item {
  margin-right: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
.menu_item i {
  margin-left: 0.25rem;
  font-size: 0.8rem;
  position: relative;
  transition: all 0.3s;
}
.sub_menu {
  display: none;
  position: absolute;
  top: 1.25rem;
  left: -1rem;
  background-color: var(--main-dark);
  padding: 0 1rem 1rem 1rem;
  animation: sub_menu_in 0.5s forwards;
}
.menu_item:hover .sub_menu {
  display: block;
}
.menu_item:hover > i {
  transform: rotate(-180deg);
}
.sub_menu_inner {
  display: none;
  position: absolute;
  top: -1rem;
  left: 100%;
  padding: 1rem 1rem 1rem 2rem;
  background-color: var(--main-dark);
  animation: sub_menu_inner_in 0.5s forwards;
}
.sub_menu_inner li {
  margin-bottom: 0.5rem;
}
.sub_menu_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
  margin: 0.5rem 0;
}
.sub_menu_item:hover .sub_menu_inner {
  display: block;
}
.sub_menu_item:hover > i {
  transform: rotate(-90deg);
}

.menu li:hover > a {
  color: var(--light-blue);
}

.burger {
  width: 35px;
  height: 35px;
  margin-right: 1.5rem;
  display: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  border-radius: 50%;
}

.burger_close {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 35px;
  height: 35px;
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.tiny .burger,
.tiny .burger_close {
  color: var(--light-blue);
}

/* FOOTER */

footer {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  background-color: var(--main-dark);
  color: #ffffff;
  margin-top: 3rem;
  padding: 4rem 3rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.footer_title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: "Helvetica65Caps";
}
footer ul {
  width: 500px;
}
footer ul li {
  margin-bottom: 0.5rem;
  cursor: pointer;
}
footer .logo {
  margin: 0 5rem;
  align-self: center;
}
footer ul:first-of-type {
  text-align: right;
}

footer a:hover {
  color: var(--light-blue);
}

/* HERO SECTION */
.hero {
  width: 100%;
  height: 80vh;
  padding: 100px 70px 25px 70px;
  max-height: 1080px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.hero > div {
  color: #ffffff;
  max-width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}
.hero > div h1 {
  font-size: 2.2rem;
  text-shadow: 2px 2px 5px #000000;
}
.hero > div p {
  max-width: 100%;
  text-shadow: 2px 2px 5px #000000;
  text-align: center;
  font-family: "Helvetica65", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
}

.hero_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero .title {
  color: #ffffff;
}

.section_wrapper {
  padding: 0 3rem 1rem 3rem;
}

/* PARTNERS SECTION */
.partners_container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.swiper_arrows {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.swiper_arrows:hover {
  opacity: 0.8;
}
.swiper_arrows i {
  font-size: 2rem;
}
.partners_swiper {
  max-width: calc(100% - 100px - 2rem);
  height: 300px;
}
.partner_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  user-select: none;
  border-radius: 4px;
  border: 1px solid #eee;
}
.partner_box_logo {
  max-width: 100%;
  height: 146px;
  object-fit: contain;
  border-radius: 4px;
}
.partner_box_title {
  font-family: "helvetica65Caps";
  text-transform: uppercase;
  font-weight: lighter;
  font-size: 1.2rem;
  text-align: center;
}
.partner_box_link {
  position: relative;
}
.partner_box_link::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--light-blue);
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: all 0.3s;
}
.partner_box_link:hover {
  opacity: 0.8;
}
.partner_box_link:hover::after {
  width: 100%;
}

@keyframes menu_in {
  0% {
    transform: translateX(100%);
  }
}
@keyframes sub_menu_in {
  0% {
    transform: translateX(1rem);
    opacity: 0;
  }
}
@keyframes sub_menu_inner_in {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

/* swiper */
.gallery {
  width: 100%;
  height: 100vh;
  padding: 100px 70px;
}

.gallery h1 {
  text-align: left;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.main_swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
}

.mySwiper {
  height: 130px;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.thumbs .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

.page_wrapper {
  padding: 130px 70px 30px 70px;
  min-height: calc(100vh - 325px);
}

/* grid template */
.grid_container {
  width: 100%;
  display: grid;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.grid_box {
  min-width: 300px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  /* padding: 1.5rem; */
  overflow: hidden;
}
.grid_box_content {
  width: 100%;
}
.grid_box_cover {
  width: 100%;
  max-height: 250px !important;
  object-fit: contain;
  border-radius: 4px;
  transition: all 0.3s;
}
.grid_box_cover.active {
  transform: scale(1.1);
}
.grid_box_title {
  margin: 1rem 0;
  font-size: 1.3rem;
  min-height: 48px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.grid_box p {
  font-size: 1rem;
  line-height: 1.4rem;
  margin-bottom: 1rem;
}
.grid_box_button {
  background-color: #eee;
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  font-family: "helvetica75Caps";
  font-weight: lighter;
  border-radius: 1rem;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  justify-self: flex-end;
}
.grid_box_button i {
  margin-left: 0.5rem;
  transform: rotate(-90deg);
  transition: all 0.2s;
}
.grid_box_button:hover i {
  transform: rotate(-90deg) translateY(0.5rem);
}
.grid_box_button:hover {
  background-color: var(--main-dark);
  color: #ffffff;
}

.grid_all_button {
  display: block;
  font-size: 1.2rem;
  font-family: "helvetica65Caps";
  margin-top: 3rem;
  text-align: right;
}
.grid_all_button i {
  margin: 0 0.5rem 0 0.25rem;
  transform: rotate(-90deg);
}
.grid_all_button:hover {
  opacity: 0.8;
}

.play_wrap {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
}

.play_button {
  position: absolute;
  width: 80px;
  align-self: center;
  cursor: pointer;
  transition: all 0.3s;
}

.play_wrap:hover .play_button {
  fill: var(--light-blue);
}
.play_wrap:hover img {
  transform: scale(1.1);
}

.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background-color: rgb(43, 58, 82, 0.6);
}

.modal.active {
  display: flex;
}

.modal iframe {
  max-width: 95%;
}

.pagination {
  margin: 2rem auto;
  width: 280px;
  height: 50px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pages {
  border: 1px solid var(--main-dark);
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
}
.pages.active {
  background-color: var(--main-dark);
  color: #ffffff;
}

.pages:hover {
  background-color: var(--light-blue);
  border-color: var(--light-blue);
  color: #ffffff;
}

.pages.active:hover {
  background-color: var(--darker-blue);
  border-color: var(--main-dark);
  color: #ffffff;
}

.contact {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.info {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info a {
  margin: 1rem 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.info a i {
  margin-right: 2rem;
  font-size: 2rem;
  color: var(--main-dark);
}

.socials {
  display: flex;
}

.map {
  width: 60%;
}

.alternate {
  text-align: left;
}

.date {
  font-size: 1.2rem;
  display: block;
  width: 100%;
  text-align: left;
  margin: 2rem 0;
  color: var(--darker-blue);
  opacity: 0.7;
}

.text_inner p {
  font-size: 1.1rem;
  line-height: 1.5rem;
  margin: 35px 0;
}

.text_inner_img {
  width: 50%;
  height: 500px;
  object-fit: contain;
}

.text_inner_img:nth-of-type(odd) {
  float: right;
  margin: 0 0 35px 35px;
}

.text_inner_img:nth-of-type(even) {
  float: left;
  margin: 0 35px 35px 0;
}

.text_title {
  font-size: 3rem;
  margin-top: 35px;
}

.back_button {
  width: 55px;
  text-align: right;
  font-size: 1.2rem;
  text-transform: lowercase;
  position: relative;
  display: flex;
  justify-content: flex-end;
  transition: all 0.4s;
  align-items: center;
  position: absolute;
  top: 164px;
  right: 5rem;
  color: var(--main-dark);
}

.back_button::after {
  content: "";
  width: 35px;
  height: 35px;
  border-radius: 50px;
  background-color: var(--light-blue);
  position: absolute;
  top: -3px;
  right: -15px;
  z-index: -1;
  transition: all 0.4s;
}

.back_button:hover::after {
  background-color: var(--main-dark);
  width: 72px;
}
.back_button:hover {
  color: #ffffff;
}

.inner_img {
  max-width: 600px;
  float: right;
  margin: 0 0 35px 35px;
}

.text__p a {
  color: var(--light-blue);
}

.accounts {
  min-height: calc(100vh - 400px);
}

.account_box {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.account_cover {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  padding: 15px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.account_box a {
  margin-bottom: 36px;
  padding: 15px 36px;
  background-color: var(--light-blue);
  color: var(--main-dark);
  border-radius: 10px;
  font-family: "Helvetica65Caps", sans-serif;
  transition: all 0.3s;
}

.account_box a:hover + img {
  transform: scale(1.15);
}

.account_box a:hover {
  background-color: var(--main-dark);
  color: var(--light-blue);
}

.container {
  margin: auto;
  width: 1200px;
  height: 600px;
  margin-bottom: 100px;
}

/* MANAGEMENT */
.management_grid a {
  width: 100%;
  min-height: 75px;
  border: 2px solid var(--light-blue);
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px 0;
  text-align: center;
  color: var(--main-dark);
  text-transform: capitalize;
  transition: all 0.3s;
}

.management_grid a:hover {
  box-shadow: 1px 1px 6px var(--darker-blue);
  transform: scale(1.005);
}

.head_ {
  font-size: 2rem;
  font-family: "Helvetica75", sans-serif;
}

.first_lvl {
  display: flex;
  gap: 8px;
}
.first_column {
  width: 50%;
}
.second_column,
.third_column {
  width: 25%;
}
.middle {
  display: flex;
  gap: 8px;
}
.middle a {
  margin: 0;
}
.first {
  width: 50%;
  margin: auto;
}

.top_circle {
  font-size: 1.3rem;
  font-family: "Helvetica65", sans-serif;
}
.bottom_circle {
  font-family: "Helvetica55", sans-serif;
  font-size: 1rem;
}

.chart {
  height: 600px !important;
  cursor: pointer;
}

.date_form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.date_form input {
  cursor: pointer;
  width: 200px;
  height: 30px;
  padding: 0 10px;
}

.date_form button {
  background-color: var(--darker-blue);
  color: #ffffff;
  height: 30px;
  padding: 0 30px;
  border-radius: 4px;
  transition: all 0.3s;
}
.date_form button:hover {
  background-color: var(--light-blue);
  color: var(--darker-blue);
}

.member_info {
  display: flex;
  gap: 25px;
}

.position {
  font-size: 1.5rem;
}
.member_info p {
  margin: 50px 0;
  font-size: 1.3rem;
  line-height: 30px;
}

.member_info img {
  max-width: 40%;
  object-fit: cover;
}

#language_select {
  background-color: var(--main-dark);
  color: var(--white);
  border: none;
  transition: all 0.5s;
  font-family: "Helvetica65";
}

.tiny #language_select {
  background-color: white;
}

#lang_button {
  display: none;
}

.header_socials {
  display: none;
}

.box__content {
    height: 103px;
    overflow: hidden;
    margin-bottom: 15px;
}