html,
body {
  background-color: #181c1e;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Saira";
}

a {
  text-decoration: none !important;
  color: #00ccff !important;
}

a.button{
  color: black !important;
}

.hero {
  background-color: #0d1011;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.hero > *,
.list {
  z-index: 2;
  position: relative;
}

.featherlight .featherlight-content {
  background-color: unset !important;
}

.featherlight .featherlight-close-icon {
  background-color: #00ccff;
  color: white;
}

.hero .bg {
  top: 0%;
  left: 0;
  width: 100%;
  z-index: 1;
  padding-bottom: 31.25%;
  position: relative;
  height: 0;
}

.hero .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.hero .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 46px 84px;
  z-index: 2;
}

.hero .header .sponsor {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Montserrat";
}

.hero .header .placeholder {
  width: 118px;
  height: 0;
}

.hero .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -35%);
  width: 40%;
}

.hero .title h1 {
  display: none;
}

.hero .mouse {
  margin-top: 80px;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero .mouse::before {
  content: "";
  width: 2px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background-color: white;
  transition: 0.3s all;
  animation: mouseanim 2s infinite;
}

@keyframes mouseanim {
  100% {
    top: 50%;
    height: 4px;
    opacity: 0;
  }
  60% {
    top: 40%;
    height: 10px;
    opacity: 1;
  }
  10% {
    top: 30%;
    height: 4px;
    opacity: 1;
  }
  0% {
    opacity: 0;
    top: 20%;
    height: 4px;
  }
}

.separator {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.extract {
  max-width: 1180px;
  margin: 0 auto 6rem;
  color: white;
  text-align: center;
  z-index: 20;
  position: relative;
}

.items {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
}

.items .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
  margin-bottom: 80px;
}

.items .item.disabled {
  opacity: 0.5;
}

.item .image {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  overflow: hidden;
  max-width: 430px;
  max-height: 430px;
  height: 430px;
}

.item .image img {
  object-fit: cover;
  object-position: center;
  max-width: 430px;
  max-height: 430px;
  width: 100%;
  height: 100%;
}

.item .text {
  margin-left: 3rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 5;
}

.item .text h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 44px;
}

.item .text sub {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 7px;
}

.item .text .underline {
  margin-bottom: 25px;
}

.item .text p {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 38px;
}

.item .text .btnwrap {
  display: flex;
}

.button {
  padding: 10px 48px;
  border: 1px solid white;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  transition: 0.3s all;
}

.button.cta {
  background-color: #00ccff;
  color: black;
  border: black;
}

.button.cta::after {
  border: black;
}

.button.cta:hover {
  border-color: black;
  box-shadow: 5px 5px 0 white;
}

.button::after {
  content: "";
  width: 13px;
  height: 13px;
  border-left: 1px solid white;
  position: absolute;
  right: -7.5px;
  bottom: -7.5px;
  transform: rotate(45deg);
  background-color: #181c1e;
  cursor: default;
  transition: 0.3s all;
}
.button:hover {
  border-color: #00ccff;
  box-shadow: 5px 5px 0 #00ccff;
}
.button:hover::after {
  border-color: #00ccff;
}

.item.right .image {
  order: 2;
  margin-left: 3rem;
}

.item.right .text {
  margin-left: 0;
}

.related {
  display: flex;
  color: white;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.related .spacer {
  margin-bottom: 14px;
  max-width: 260px;
}

.related h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 35px;
  margin-bottom: 8px;
}

.related p {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px;
}

.related .image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.related .image .owl-nav {
  position: absolute;
  width: 105%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 4rem;
  color: #00ccff;
  cursor: pointer;
}

.related .image .wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.related .image.ar1-1 .wrapper {
  max-width: 375px;
  max-height: 375px;
}

.related .image .wrapper img {
  object-position: center;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
}

.related .image .wrapper .img_inner {
  width: 100%;
  height: 0;
  position: relative;
}

.related .image .wrapper .img_title{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: #00ccff;
  color: #181c1e;
  padding: 3px;
  font-size: 14px;
}

.related .image.ar1-1 .wrapper .img_inner {
  padding-bottom: 100%;
}

.related .image.ar3-2 .wrapper .img_inner {
  padding-bottom: 50%;
}

.related .btnwrap {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}

.hidden {
  height: 0;
  overflow: hidden;
}

.hide {
  opacity: 0;
  pointer-events: none;
  cursor: default;
}

.item.disabled .btnwrap {
  display: none;
}

.galery {
  width: 100%;
}

.galery .buton {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.galery .buton .wrapi {
  height: 0;
  padding-bottom: 25%;
  overflow: hidden;
  position: relative;
  max-width: 510px;
  width: 50%;
}

.galery .buton .wrapi img {
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.galery .gtext {
  color: white;
  text-align: center;
  margin-bottom: 57px;
}

.galery .pictures {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 570px;
  padding: 0 1rem;
}

.galery .pictures .pic {
  width: calc(100% / 3 - 35px);
  margin: 0 17px 38px;
}

.galery .pictures .wrap {
  height: 0;
  width: 100%;
  position: relative;
  padding-bottom: calc(55.08%);
}

.galery .pictures .pic img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.related > div {
  width: 100%;
}

.txtimg {
  max-width: 90%;
}

.spacerimg {
  max-width: 90%;
}

@media screen and (max-width: 1200px) {
  .galery .pictures .pic {
    width: calc(100% / 2 - 35px);
  }
}

@media screen and (max-width: 992px) {
  .items .item {
    flex-direction: column;
  }

  .item .image {
    margin-bottom: 24px;
  }

  .item .text {
    margin-left: 0;
    padding: 0 3rem;
  }

  .item.right .image {
    order: 0;
    margin-left: 0;
  }

  .extract {
    padding: 0 1rem;
  }

  .header .placeholder {
    display: none;
  }

  .hero .bg {
    padding-bottom: 60%;
  }

  .hero .title{
    width: 60%;
  }

  .galery .pictures {
    padding: 0;
  }
}

@media screen and (max-width: 576px) {
  .hero .header {
    padding: 8px 1rem;
  }

  .hero .header .sponsor {
    font-size: 12px;
  }

  .item .text h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .item .text p {
    font-size: 14px;
    line-height: 20px;
  }

  .extract {
    font-size: 14px;
  }

  .item .image {
    max-width: 250px;
    max-height: 250px;
  }

  .hero .title{
    width: 80%;
  }

  .item .image img {
    max-width: 250px;
    max-height: 250px;
  }

  .item .text {
    padding: 0 1rem;
  }
  .galery .buton .wrapi {
    width: 80%;
  }
  .galery .gtext {
    font-size: 14px;
  }

  .related .image .wrapper {
    max-height: 200px;
  }
  .galery .pictures .pic {
    width: calc(100% - 35px);
  }
  .galery .pictures {
    margin-bottom: 300px;
  }

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

  .txtimg {
    max-width: 60%;
  }
}

.mw-500{
  width: 95%;
  max-width: 500px;
  margin: auto;
}

.mw-800{
  width: 95%;
  max-width: 800px;
  margin: auto;
}

.ar-2-3{
  width: 100%;
  padding-bottom: 150%;
}

.ar-3-2{
  width: 100%;
  padding-bottom: 66.667%;
}

.ar-rect{
  width: 100%;
  padding-bottom: 65%;
}

.portrait{
  position: relative;
  margin: 2rem auto;
}

.portrait .wrapper{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.portrait .wrapper img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait .name{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  line-height: 1.5rem;
  background-color: #00ccff;
  color: #0d1011;
  text-align: center;
  font-weight: bold;
}

span.highlightedtext{
  background-color: #00ccff;
  color: black;
  text-align: center;
  line-height: 1.2rem;
  font-size: .8rem;
  z-index: 1;
  position: absolute;
  bottom: 0;
  font-weight: bold;
  padding: .25rem 0;
  width: 100%;
}
