@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");
:root {
  --main-color: #f2f2f2;
  --text-color: #000000;
  --red-color: #d00049;
  --green-color: #00ff4e;
  scroll-behavior: smooth;
  /* --df-border: 1px solid #000000; */
}

@font-face {
  font-family: "Ultra";
  src: url("Ultra-Regular.ttf");
}

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

body {
  font-family: "Ultra";
  background: var(--main-color);
  color: var(--text-color);
  box-sizing: border-box;
  position: relative;
  background: var(--main-color) url('../assets/graphics/bg.png') top center;
}

/* --- Preloader --- */

.preloader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--main-color);
  box-sizing: border-box;
  overflow: hidden;
  z-index: 999;
  opacity: 1;
  transition: 1s;
}

/* --- Preloader image --- */

.preloader > .preloader__image {
  position: absolute;
  position: absolute;
  left: 200%;
  bottom: 0;
  width: 220px;
  animation: wandering 7s ease-in-out infinite;
  transform: translate(-50%, -50%) rotate(30deg);
  opacity: 1;
  transition: 1s;
}

.preloader.deactivated > .preloader__image {
  opacity: 0;
}

.preloader.deactivated {
  background: #f2f2f200;
}

@keyframes wandering {
  0% {
    left: -10%;
    bottom: 0;
    transform: translate(-50%, -50%) rotate(-100deg);
  }
  10% {
    bottom: 0;
  }
  20% {
    bottom: 40px;
  }
  30% {
    bottom: 0;
  }
  40% {
    bottom: 10px;
  }
  50% {
    bottom: 40px;
  }
  60% {
    bottom: 0;
  }
  70% {
    bottom: 30px;
  }
  80% {
    bottom: 0;
    transform: translate(-50%, -50%) rotate(350deg);
  }
  90% {
    bottom: 20px;
  }
  100% {
    left: 150%;
    bottom: -5;
    transform: translate(-50%, -50%) rotate(30deg);
  }
}

/* --- Preloader end --- */

/* .hero__background {
  position: absolute;
  background: url(../assets/graphics/stain.png);
  left: 0;
  top: 0;
  height: 498px;
  width: 498px;
  transform: translate(-59%, -55%);
} */

h1,
h2,
h3 {
  font-family: "Ultra", serif;
  transform: scaleY(1.7);
}

h1 {
  font-size: 52px;
  margin: 30px 0 40px 0;
  padding-left: 7px;
}

h2 {
  margin: 0;
  padding-left: 10px;
  font-size: 24px;
}

.couterDown span {
  display: inline-block;
  width: 85px;
}

p {
  margin-top: 45px;
  padding-left: 10px;
  font-size: 20px;
  font-family: montserrat, sans-serif;
  font-weight: 700;
  line-height: 28px;
}

section {
  position: relative;
}

.red {
  color: var(--red-color);
}
.green {
  color: var(--green-color);
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* --- Hero section --- */

.hero__background > .stain {
  display: block;
  position: absolute;
  left: -0px;
  top: -0px;
  height: 498px;
  width: 498px;
  transform: translate(-59%, -55%);
}

.hero {
  min-height: 780px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: var(--df-border);
  padding: 14px 18.5vw;
  padding-top: 0;
}

.hero__contentLeft .hero__logo {
  width: 210px;
  height: 190px;
  background: url(../assets/graphics/logo.png) no-repeat;
  transform: translate(-5px, -10px);
}

.hero__contentLeft {
  width: 60%;
  border: var(--df-border);
  padding: 5px 0 0 20px;
}

.brush {
  margin-top: 25px;
  width: 437px;
  height: 107px;
  background: url("../assets/graphics/black_brush.png");
  transform: translateX(-12%);
  display: grid;
  place-content: center;
}

.brush a {
  display:block;
  padding-left: 0;
  padding-top: 5px;
  font-size: 35px;
  margin-right: 30px;
  text-decoration:none;
  transition: all 0.1s ease-in;
}

.brush a:hover {
  color: #d00049;
}

.hero__contentLeft .hero__signUp p {
  margin: 0;
  padding-left: 83px;
}

.hero__contentRight {
  width: 40%;
  position: relative;
  box-sizing: border-box;
}

.hero__contentRight .hero__cowboy {
  width: 100%;
  height: auto;
  transform: scale(2) translate(-31px, 40px);
}

.hero__contentRight .hero__countDown {
  position: absolute;
  text-align: center;
  padding-right: 60px;
  margin-top: 130px;
  bottom: -220px;
  left: -20px;
}

.hero__contentRight .hero__countDown h3 {
  font-size: 17px;
  margin-top: 50px;
}

.hero__contentRight .hero__countDown h1 {
  margin-top: 10px;
}

main {
  overflow: hidden;
}

/* --- Presentation --- */

main .presentation {
  margin-top: 150px;
  border: var(--df-border);
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  box-sizing: border-box;
}

/* Presentation background */

.presentation__background .presentation__compass {
  position: absolute;
  left: 49.5%;
  bottom: 24px;
  width: 310px;
  height: 310px;
  transform: translateX(-50%);
  /* background: rgba(0, 0, 0, 0.678); */
  background: url(../assets/graphics/compass.png);
  background-size: 100% 100%;
  background-repeat: norepeat;
}

.presentation__background .presentation__stain1 {
}

main .presentation h2 {
  padding-right: 23px;
}

main .presentation .cards {
  margin-top: 80px;
  /* border: 1px solid #d000497a; */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .presentation .cards .row {
  width: 950px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
}

main .presentation .cards .card {
  width: 243px;
  position: relative;
  box-sizing: border-box;
  font-size: 18px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  line-height: 24px;
}

.card.center {
  padding-top: 160px;
}
.card.rightArrow,
.card.leftArrow {
  margin-top: 55px;
  padding-top: 105px;
  padding-right: 5px;
}

.card.rightArrow::after {
  left: -60%;
  top: -32%;
  background: url(../assets/graphics/arrowRightBottom.png);
}
.card.leftArrow::after {
  left: +95%;
  top: -32%;
  background: url(../assets/graphics/arrowLeftBottom.png);
}
.card.rightArrow::after,
.card.leftArrow::after {
  content: " ";
  position: absolute;
  width: 145px;
  height: 133px;
  background-repeat: no-repeat;
}
/* .card.center {
  padding-top: 160px;
} */

main .presentation .cards .card::before {
  content: "";
  display: block;
  width: 90px;
  height: 90px;
  top: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  background: url("../assets/graphics/star.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

main .presentation .row.rowTwo {
  margin-top: 150px;
  width: 630px;
  padding-right: 10px;
}

main .presentation .row.rowTwo .card {
  padding-top: 90px;
}

.card.leftDashed:after {
  left: -80px;
  top: -130px;
  background: url("../assets/graphics/dashedLineLeft.png");
}
.card.rightDashed:after {
  left: +173px;
  top: -130px;
  background: url("../assets/graphics/DashesLineRight.png");
}

.card.leftDashed:after,
.card.rightDashed:after {
  position: absolute;
  content: "";
  width: 170px;
  height: 180px;
  background-repeat: no-repeat;
}

.stainRight {
  position: absolute;
  left: 100%;
  top: 25.8vw;
  /* height: 100%; */
  width: 35%;
  user-select: none;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Projects section */
.projects {
  margin-top: 210px;
  /* background: #2afa002c; */
  height: calc(45vh + 10vw);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.projects > .projects__header {
  text-align: center;
}

/* --- Projects Slider --- */
.projects > .slider__wrapper {
  width: 60%;
  height: 80%;
  /* background: rgba(0, 0, 0, 0.623); */
  position: relative;
  /* display: flex;
  flex-direction: row;
  align-items: center; */
}

@media (max-width: 700px) {
  .projects > .slider__wrapper {
    height: 60%;
    width: 40%;
  }
}

/* Projects slider card */
.projects > .slider__wrapper > .slider__fix {
  height: 100%;
  width: 100%;
  display: flex;
  /* justify-content: space-evenly; */
  align-items: center;
  position: relative;
}

.projects .swiper-slide {
  height: 465px;
}

.projects > .slider__wrapper > .slider__fix > .slider__card {
  background: url(../assets/graphics/blackFrame.png) 0 0 no-repeat;
  background-size: 100% 100%;
  transform: scale(0.79);
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  user-select: none;
}

/* Projects slider card active */
.projects
  > .slider__wrapper
  > .slider__fix
  > .slider__card.swiper-slide-active {
  background: url(../assets/graphics/redFrame.png) 0 0 no-repeat;
  background-size: 100% 100%;
  transform: scale(0.98);
}

/* Projects slider card header */
.projects > .slider__wrapper > .slider__fix > .slider__card > .card__header {
  width: 100%;
  max-height: 60%;
  position: relative;
  display: flex;
  justify-content: center;
}
.projects
  > .slider__wrapper
  > .slider__fix
  > .slider__card
  > .card__header
  > .card__icon {
  width: 50%;
  height: auto;
}

/* Projects slider card description*/
.projects
  > .slider__wrapper
  > .slider__fix
  > .slider__card
  > .card__description {
  font-family: "Montserrat";
  max-width: 80%;
  text-align: center;
}

/* Projects slider arrows */
.projects > .arrow__left {
  width: 50px;
  height: 50px;
  background: url(../assets/graphics/arrowLeft.png) 0 0 no-repeat;
  background-size: 100% 100%;
  top: 58%;
  left: 15%;
}

.projects > .arrow__left::after {
  opacity: 0;
}

.projects > .arrow__right {
  width: 50px;
  height: 50px;
  background: url(../assets/graphics/arrowRight.png) 0 0 no-repeat;
  background-size: 100% 100%;
  top: 58%;
  right: 15%;
}

@media (max-width: 700px) {
  .projects > .arrow__left,
  .projects > .arrow__left {
    top: 67%;
  }
}

.projects > .arrow__right::after {
  opacity: 0;
}
/* ---------------------- */

/* Projects slider end */

/* --- Project agenda --- */
.agenda {
  /* background: #25ad4e49; */
  margin-top: 140px;
  height: calc(70vh + 10vw);
  text-align: center;
  display: flex;
  flex-direction: column;
}

/* agenda background */
.stainLeft {
  position: absolute;
  left: -1.5%;
  top: 70.3%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.cacti {
  position: absolute;
  left: 19.5%;
  top: 87.4%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.agenda > .agenda__header {
  text-align: center;
  margin-bottom: 28px;
}

/* --- Agenda Slider --- */
.agenda > .slider__wrapper {
  width: 66%;
  height: 80%;
  /* background: rgba(0, 0, 0, 0.623); */
  position: relative;
  padding: 0 120px;
  /* display: flex;
  flex-direction: row;
  align-items: center; */
}

.agenda .swiper-slide {
  height: 670px;
}

/* Agenda slider card */
.agenda > .slider__wrapper > .slider__fix {
  height: 100%;
  width: 100%;
  display: flex;
  /* justify-content: space-evenly; */
  align-items: center;
  position: relative;
}

.agenda > .slider__wrapper > .slider__fix > .slider__card {
  transform: scale(0.8);
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  user-select: none;
}

/* Agenda slider card active */
.agenda > .slider__wrapper > .slider__fix > .slider__card.swiper-slide-active {
  /* background: url(../assets/graphics/redFrame.png) 0 0 no-repeat;
  background-size: 100% 100%; */
  transform: scale(0.98);
}

/* Agenda slider card header */
.agenda > .slider__wrapper > .slider__fix > .slider__card > .card__header {
  margin-bottom: 28px;
}
.agenda
  > .slider__wrapper
  > .slider__fix
  > .slider__card
  > .card__header
  > .card__icon {
  width: 100%;
  height: auto;
}

/* Agenda slider card description*/
.agenda > .slider__wrapper > .slider__fix > .slider__card > .card__description {
  font-family: "Montserrat";
  width: 100%;
  height: 90%;
  text-align: left;
  background: url(../assets/graphics/wide_black_frame.png) 0 0 no-repeat;
  background-size: 100% 100%;
  padding: 16px 10%;
}

/* Agenda slider arrows */
.agenda > .slider__wrapper > .arrow__left {
  width: 80px;
  height: 60px;
  background: url(../assets/graphics/arrowLeft.png) 0 0 no-repeat;
  background-size: 100% 100%;
}

.agenda > .slider__wrapper > .arrow__left::after {
  opacity: 0;
}

.agenda > .slider__wrapper > .arrow__right {
  width: 80px;
  height: 60px;
  background: url(../assets/graphics/arrowRight.png) 0 0 no-repeat;
  background-size: 100% 100%;
}

.agenda > .slider__wrapper > .arrow__right::after {
  opacity: 0;
}

/*  --- Agenda end --- */

/* --- Recomendations --- */
.recomendation {
  /* background: #ad722549; */
  height: calc(60vh + 10vw);
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Recomendations backgrounds */

.recomendation .recomendation__bison {
  position: absolute;
  left: 50%;
  top: 417px;
  transform: translateX(-50%);
}
.recomendation .recomendation__circle {
  position: absolute;
  left: 50%;
  top: 180px;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: var(--red-color);
  border-radius: 300px;
  z-index: -1;
}

.recomendation__header {
  margin: 96px 0 8px 0;
}

/* --- Recomendations Slider --- */
.recomendation > .slider__wrapper {
  width: 65%;
  height: 58%;
  position: relative;
  padding: 0 120px;
}

/* Recomendations slider card */
.recomendation > .slider__wrapper > .slider__fix {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.recomendation > .slider__wrapper > .slider__fix > .slider__card {
  transform: scale(0.8);
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
}

/* Recomendations slider card active */
.recomendation
  > .slider__wrapper
  > .slider__fix
  > .slider__card.swiper-slide-active {
  /* background: url(../assets/graphics/redFrame.png) 0 0 no-repeat;
  background-size: 100% 100%; */
  transform: scale(0.98);
}

/* Recomendations slider card description*/
.recomendation
  > .slider__wrapper
  > .slider__fix
  > .slider__card
  > .card__description {
  font-family: "Montserrat";
  width: 100%;
  height: 90%;
  text-align: center;
  padding: 0;
}
.recomendation
> .slider__wrapper
> .slider__fix
> .slider__card
> .card__description
strong {
  text-decoration: underline;
  padding-bottom:5px;
  display:block;
}

/* Recomendations slider arrows */
.recomendation > .slider__wrapper > .arrow__left {
  margin-top: 90px;
  width: 210px;
  height: 50px;
  background: url(../assets/graphics/arrowLongLeft.png) 0 0 no-repeat;
  background-size: 100% 100%;
}

.recomendation > .slider__wrapper > .arrow__left::after,
.recomendation > .slider__wrapper > .arrow__right::after {
  opacity: 0;
}

.recomendation > .slider__wrapper > .arrow__right {
  margin-top: 90px;
  width: 210px;
  height: 50px;
  background: url(../assets/graphics/arrowLongRight.png) 0 0 no-repeat;
  background-size: 100% 100%;
}

/*  --- Recomendations end --- */

/* --- Thriller ---*/
.thriller {
  /* background: rgba(255, 0, 0, 0.315); */
  min-height: calc(10vw + 50vh);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.thriller__h2 {
  text-align: center;
  margin-top: 50px;
}

.thriller .recomendation__video {
  margin-top: 23px;
  margin-left: 12px;
  background: rgba(0, 255, 149, 0.384);
  position: relative;
}

iframe.video__iframe {
  width: 51vw;
  height: 30vw;
}

.video__frame {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../assets/graphics/frame.png);
  background-size: 100% 100%;
}

/* --- Thriller end --- */

/* --- Footer --- */
footer {
  /* background: rgba(255, 0, 0, 0.349); */
  background: url(../assets/graphics/brush.png) 0 0 no-repeat;
  background-position: center top;
  background-size: 185%;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  min-height: 530px;
  padding-top: 170px;
  text-align: center;
}

footer .footer__email a {
  color:#fff;
  text-decoration:none;
}
/* --- Footer description --- */
.footer__description {
  font-size: 16px;
  margin-top: 50px;
  line-height: 26px;
}

/* --- Footer email  --- */
.footer__email {
  display: inline-block;
  color: var(--main-color);
  font-size: 21px;
  margin-top: 20px;
}
/* --- Footer button--- */
footer > .brush.center {
  margin-top: 10px;
  margin-left: 100px;
}
/* --- Footer end --- */


@media (max-width: 1024px) {
  h1 {
    font-size: 32px;
    padding-bottom: 15px;
  }
  h2 {
    padding-bottom: 20px;
  }
  .hero {
    flex-wrap: wrap;
    padding: 14px 10px;
  }
  .hero__contentRight{
    padding-top:90px;
    width: 60%;
  }
  .hero__contentLeft{
    width: 100%;
    text-align:center;
  }

  .hero__contentLeft .hero__logo {
    margin: 0 auto;
  }

  .brush {
    transform: none;
    margin: 30px auto;
  }
  main .presentation .cards .row {
    width: 100% !important;
    flex-wrap: wrap;
    text-align:center;
  }
  main .presentation .cards .card {
    width: 160px;
    font-size: 14px;
  }
  .recomendation,
  .leftArrow:after,
  .rightArrow:after,
  .card.leftDashed:after,
  .card.rightDashed:after{
    display:none;
  }
  .projects > .slider__wrapper > .slider__fix > .slider__card,
  .projects > .slider__wrapper > .slider__fix > .slider__card.swiper-slide-active,
  .agenda > .slider__wrapper > .slider__fix > .slider__card > .card__description{
    background: none;
  }
  .agenda > .slider__wrapper > .slider__fix > .slider__card > .card__description {
    padding:0;
  }
  .agenda > .slider__wrapper > .slider__fix > .slider__card > .card__description p {
    margin-top:20px;
  }
  .projects > .arrow__left {
    left: 5%;
  }
  .projects > .arrow__right {
    right: 5%;
  }
  .agenda {
    height: auto;
  }
  .agenda > .slider__wrapper {
    width: 100%;
    background: #f2f2f2;
  }
  .cacti {
    display:none;
  }
  footer {
    padding-top:100px;
  }
  .footer__description {
    margin-top:0;
    font-size: 19px;
  }
  .footer__email {
    margin-top: 0px;
  }
  footer > .brush.center {
    margin-top:30px;
    margin-left: auto;
  }
  .hero__contentRight .hero__cowboy {
    transform: scale(2);
    position:relative;
    top: 80px;
  }
  .rowOne .center {
    display: none;
  }
  .agenda > .slider__wrapper {
    padding: 0 5px;
  }
  .agenda .swiper-button-prev,
  .agenda .swiper-button-next {
    display:none;
  }
}
