@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

html {
  scroll-behavior: smooth;
}

.ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.ibg img {
  display: none;
}

.wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

html.lock {
  overflow: hidden;
}

body {
  color: #000000;
  font-size: 18px;
  font-family: "Lato", sans-serif;
}
body._lock {
  overflow: hidden;
}
body.lock {
  overflow: hidden;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-thumb {
  background-color: #8e8e8e;
  border-radius: 20px;
}
body ::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 20px;
}

main {
  flex: 100%;
}

[class*=__container] {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0px 15px;
}

.header {
  position: relative;
  border-bottom: 1px solid #99dbe7;
}
.header__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
@media (max-width: 767.98px) {
  .header__container {
    height: 80px;
  }
}
.header__logo img {
  width: 140px;
}
@media (max-width: 479.98px) {
  .header__logo img {
    width: 110px;
  }
}
.header__left {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 479.98px) {
  .header__left {
    gap: 0;
  }
}
.header__button {
  padding: 15px 30px;
  background-color: #0097af;
  border: 1.5px solid #0097af;
  font-weight: 700;
  color: #ffffff;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.header__button:hover {
  background-color: #ffffff;
  color: #0097af;
}
@media (max-width: 767.98px) {
  .header__button {
    margin-right: 50px;
  }
}

@media (max-width: 767.98px) {
  .menu__body {
    transform: translate(100%, 0%);
    transition: transform 0.8s;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: auto;
    padding: 80px 10px 30px 10px;
    background-color: rgba(248, 249, 250, 0.96);
    z-index: 5;
  }
  .menu__body._active {
    transform: translate(0px, 0%);
  }
}
.menu__list {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .menu__list {
    padding-top: 30px;
    display: block;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .menu__item {
    margin-bottom: 20px;
  }
}
.menu__link {
  text-transform: uppercase;
  font-size: 20px;
  color: #000000;
  font-weight: 500;
  transition: all 0.3s;
}
.menu__link:hover {
  color: #0097af;
}
@media (max-width: 767.98px) {
  .menu__link {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  .header__burger {
    display: block;
    position: absolute;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 10;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
  }
  .header__burger span {
    transition: 0.3s all;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #0097af;
  }
  .header__burger span:first-child {
    top: 0px;
  }
  .header__burger span:last-child {
    top: auto;
    bottom: 0px;
  }
  .header__burger._active span {
    transform: scale(0);
    background-color: #0097af;
  }
  .header__burger._active span:first-child {
    transform: rotate(-45deg);
    top: 8px;
  }
  .header__burger._active span:last-child {
    transform: rotate(45deg);
    bottom: 8px;
  }
}

.bg {
  height: calc(100vh - 100px);
  width: 100vw;
  position: relative;
}
@media (max-width: 767.98px) {
  .bg {
    height: calc(100vh - 80px);
  }
}
.bg__image {
  width: 100vw;
  height: 100%;
}
.bg__image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0097af;
  opacity: 0.6;
}
.bg__content {
  position: absolute;
  color: #ffffff;
  top: 20%;
  left: 15px;
}
.bg__title {
  font-size: 100px;
  margin-bottom: 50px;
  transform: translate(-100px, 0);
  opacity: 0;
  transition: all 0.7s;
}
@media (max-width: 991.98px) {
  .bg__title {
    font-size: 70px;
  }
}
@media (max-width: 767.98px) {
  .bg__title {
    font-size: 40px;
  }
}
.bg__title._active {
  opacity: 1;
  transform: translate(0, 0);
}
.bg__subtitle {
  font-size: 25px;
  transform: translate(-100px, 0);
  opacity: 0;
  transition: all 0.9s;
}
@media (max-width: 767.98px) {
  .bg__subtitle {
    font-size: 18px;
  }
}
.bg__subtitle._active {
  opacity: 1;
  transform: translate(0, 0);
}
.bg .main__button {
  color: #ffffff;
  background-color: #0097af;
  transition: all 0.3s;
  transform: translate(-100px, 0);
  opacity: 0;
  transition: all 1.2s;
}
.bg .main__button:hover {
  background-color: #ffb700;
}
.bg .main__button._active {
  opacity: 1;
  transform: translate(0, 0);
}

.main {
  padding: 70px 0px;
}
@media (max-width: 767.98px) {
  .main {
    padding: 40px 0px;
  }
}
.main__container {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 991.98px) {
  .main__container {
    display: block;
  }
}
.main__left {
  flex: 0 1 55%;
  transform: translate(-100px, 0);
  opacity: 0;
  transition: all 0.5s;
}
.main__left._active {
  opacity: 1;
  transform: translate(0, 0);
}
.main__suptitle {
  background-color: #ffb700;
  color: #000000;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .main__suptitle {
    font-size: 16px;
  }
}
.main__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  margin: 20px 0px;
  color: #006b7c;
}
@media (max-width: 991.98px) {
  .main__title {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .main__title {
    font-size: 24px;
  }
}
.main__button {
  display: inline-block;
  margin-top: 50px;
  padding: 15px 30px;
  background-color: inherit;
  border: 1.5px solid #0097af;
  font-weight: 700;
  color: #0097af;
  border-radius: 10px;
  transition: all 0.3s;
}
.main__button:hover {
  background-color: #0097af;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .main__button {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.main__right {
  flex: 0 1 45%;
  min-width: 0;
  transform: translate(100px, 0);
  opacity: 0;
  transition: all 0.5s;
}
.main__right._active {
  opacity: 1;
  transform: translate(0, 0);
}
.main__slider {
  min-width: 0;
  overflow: hidden;
  border-radius: 10px;
}
.main__wrapper {
  min-width: 0;
  display: flex;
}
.main__slide {
  flex: 0 0 100%;
  padding-bottom: 75%;
  border-radius: 10px;
}
.main__slide img {
  height: 400px;
}

.swiper__container {
  padding: 0;
}

.about {
  display: flex;
}
@media (max-width: 991.98px) {
  .about {
    display: block;
  }
}
.about__left {
  flex: 0 1 50%;
  background-color: #f8f9fa;
  display: flex;
  justify-content: flex-end;
  transform: translate(-100px, 0);
  opacity: 0;
  transition: all 0.5s;
}
.about__left._active {
  opacity: 1;
  transform: translate(0, 0);
}
.about__content {
  max-width: 705px;
  padding-top: 30px;
  padding-left: 15px;
  border-left: 3px solid #0097af;
  padding-left: 30px;
}
@media (max-width: 991.98px) {
  .about__content {
    max-width: 100%;
    padding-left: 15px;
  }
}
.about__title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 70px;
  text-transform: uppercase;
  color: #006b7c;
}
@media (max-width: 1170px) {
  .about__title {
    margin-bottom: 40px;
  }
}
.about__text {
  padding-right: 30px;
  font-size: 18px;
  line-height: 140%;
  font-weight: 300;
  margin-bottom: 30px;
}
.about__text span {
  font-weight: 400;
  color: #0097af;
}
@media (max-width: 1170px) {
  .about__text {
    margin-bottom: 20px;
  }
}
@media (max-width: 991.98px) {
  .about__text {
    padding-right: 15px;
  }
}
.about__right {
  flex: 0 1 50%;
  transform: translate(100px, 0);
  opacity: 0;
  transition: all 0.5s;
}
.about__right._active {
  opacity: 1;
  transform: translate(0, 0);
}
.about__img {
  background-position: 0 0;
  width: 100%;
  padding-bottom: 70%;
}
@media (max-width: 1410px) {
  .about__img {
    padding-bottom: 90%;
  }
}
@media (max-width: 1170px) {
  .about__img {
    padding-bottom: 100%;
  }
}

.categories {
  padding: 70px 0px;
}
@media (max-width: 767.98px) {
  .categories {
    padding: 40px 0px;
  }
}
.categories__container {
  position: relative;
}
.categories__title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 70px;
  text-transform: uppercase;
  color: #006b7c;
}
.categories__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  transition: all 0.5s;
}
.categories__items:first-child {
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .categories__items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .categories__items:first-child {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .categories__items {
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 20px;
  }
}
@media (max-width: 479.98px) {
  .categories__items {
    grid-template-columns: 1fr;
  }
}
.categories__item {
  border-radius: 10px;
  background: #006b7c;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  padding: 40px;
  color: #ffffff;
  text-align: center;
  transform: translate(0px, 100px);
  opacity: 0;
  transition: all 0.5s;
}
@media (max-width: 767.98px) {
  .categories__item {
    font-size: 16px;
    padding: 20px 10px;
  }
}
.categories__item._active {
  opacity: 1;
  transform: translate(0, 0);
}
.categories__buttons {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.categories__button {
  padding: 15px 40px;
  background-color: #0097af;
  border: 1.5px solid #0097af;
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
}
.categories__button:hover {
  background-color: #ffffff;
  color: #0097af;
}

.items {
  display: none;
}
.items.active {
  display: grid;
}

.win {
  padding: 70px 0px;
}
@media (max-width: 767.98px) {
  .win {
    padding: 40px 0px;
  }
}
.win__title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 70px;
  text-transform: uppercase;
  color: #006b7c;
}
.win__body {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.win__item {
  flex: 0 1 calc(33.333% - 20px);
  background: #006b7c;
  color: #ffffff;
  text-align: center;
  border-radius: 20px 20px 20px 20px;
  transform: translate(-100px, 0px);
  opacity: 0;
  transition: all 0.5s;
}
.win__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991.98px) {
  .win__item {
    flex: 0 1 calc(50% - 15px);
  }
}
@media (max-width: 767.98px) {
  .win__item {
    flex: 0 1 100%;
  }
}
.win__item._active {
  opacity: 1;
  transform: translate(0, 0);
}
.win__img {
  padding-bottom: 140%;
  border-radius: 20px 20px 0px 0px;
}
.win__img img {
  width: 100%;
  border-radius: 20px 20px 0px 0px;
}
.win__name {
  padding: 20px 0px;
  font-weight: 600;
  font-size: 20px;
}
.win__content {
  margin-bottom: 30px;
  padding: 0px 20px;
}
.win__content p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 10px;
  font-weight: 600;
}
.win__content div {
  font-size: 15px;
  line-height: 120%;
}

.rules {
  padding: 70px 0px;
  background-color: #f8f9fa;
}
@media (max-width: 767.98px) {
  .rules {
    padding: 40px 0px;
  }
}
.rules__title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #006b7c;
}
.rules__subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  text-transform: lowercase;
  color: #0097af;
}
.rules__item {
  font-size: 20px;
  font-weight: 300;
  padding: 20px 0px;
  border-bottom: 1px solid #99dbe7;
  line-height: 130%;
  transform: translate(-100px, 0px);
  opacity: 0;
  transition: all 0.5s;
}
@media (max-width: 767.98px) {
  .rules__item {
    font-size: 15px;
    padding: 15px 0px;
  }
}
.rules__item._active {
  opacity: 1;
  transform: translate(0, 0);
}

.footer {
  padding: 30px 0px;
  background-color: #006b7c;
}
.footer__copy {
  text-align: center;
  text-transform: lowercase;
  color: #ffffff;
}

.header__lols {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .header__lols {
    gap: 5px;
  }
}