html {
  font-size: 20px;
  line-height: auto;
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
@media (max-width: 1800px) {
  html {
    font-size: 20px;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 1.95vw;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 2.6vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 6.25vw;
  }
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  scrollbar-gutter: stable;
}

body.filters-opened {
  overflow: hidden;
}

h1,
.h1 {
  position: relative;
  font-weight: bold;
  font-size: 10rem;
  letter-spacing: 0.02em;
}
@media (max-width: 1800px) {
  h1,
  .h1 {
    font-size: 8rem;
  }
}
@media (max-width: 1400px) {
  h1,
  .h1 {
    font-size: 7rem;
  }
}
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 1.2rem;
  }
}

h2,
.h2 {
  position: relative;
  font-weight: 500;
  font-size: 2.7rem;
}
@media (max-width: 1024px) {
  h2,
  .h2 {
    font-size: 1.2rem;
  }
}

h3,
.h3 {
  position: relative;
  font-weight: 500;
  line-height: 2;
  font-size: 2rem;
}
@media (max-width: 1800px) {
  h3,
  .h3 {
    font-weight: normal;
    font-size: 1.6rem;
  }
}
@media (max-width: 1400px) {
  h3,
  .h3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 1024px) {
  h3,
  .h3 {
    font-size: 1rem;
  }
}

h4,
.h4 {
  position: relative;
  font-weight: 600;
  font-size: 0.8rem;
}
@media (max-width: 1024px) {
  h4,
  .h4 {
    font-size: 0.7rem;
  }
}

h5,
.h5 {
  position: relative;
  font-weight: 500;
  font-size: 0.8rem;
}
@media (max-width: 1400px) {
  h5,
  .h5 {
    font-size: 0.7rem;
  }
}
@media (max-width: 1024px) {
  h5,
  .h5 {
    font-size: 0.6rem;
  }
}
@media (max-width: 768px) {
  h5,
  .h5 {
    font-size: 0.5rem;
  }
}

h6,
.h6 {
  position: relative;
  font-weight: 500;
  font-size: 0.8rem;
}
@media (max-width: 1024px) {
  h6,
  .h6 {
    font-size: 0.7rem;
  }
}
@media (max-width: 768px) {
  h6,
  .h6 {
    font-size: 0.5rem;
  }
}

p,
li,
a,
span {
  position: relative;
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 1.6;
}
@media (max-width: 1800px) {
  p,
  li,
  a,
  span {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}
@media (max-width: 1024px) {
  p,
  li,
  a,
  span {
    font-size: 0.6rem;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 0.5rem;
}
@media (max-width: 1400px) {
  .grid {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 0.4rem;
  }
}

div {
  height: fit-content;
}

.container {
  max-width: 88rem;
  margin: 0 auto;
}
@media (max-width: 1800px) {
  .container {
    max-width: 64rem;
  }
}
@media (max-width: 1400px) {
  .container {
    max-width: none;
    margin: 0;
    padding: 0 3rem;
  }
}
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.wrapper {
  min-height: 100%;
  width: 100%;
  overflow: hidden;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.overlay.active {
  display: block;
}

main.main {
  min-height: 100%;
  width: 100%;
}

.section {
  margin-bottom: 13rem;
}
@media (max-width: 1800px) {
  .section {
    margin-bottom: 12rem;
  }
}
@media (max-width: 1400px) {
  .section {
    margin-bottom: 9.5rem;
  }
}
@media (max-width: 1024px) {
  .section {
    margin-bottom: 8rem;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 5.5rem;
  }
}

.img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
@media (max-width: 1024px) {
  .contacts {
    gap: 1.2rem;
    margin-bottom: 1.6rem;
  }
}
.contacts__mail {
  font-size: 2rem;
  font-weight: 500;
  line-height: 200%;
}
@media (max-width: 1800px) {
  .contacts__mail {
    font-size: 1.6rem;
  }
}
@media (max-width: 1400px) {
  .contacts__mail {
    font-size: 1.4rem;
  }
}
@media (max-width: 1024px) {
  .contacts__mail {
    font-size: 1rem;
  }
}
.contacts__address {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1400px) {
  .contacts__address {
    font-size: 0.8rem;
  }
}
.contacts .socials__list {
  display: flex;
  gap: 0.1rem;
  align-items: center;
}
.contacts .socials__list-item {
  width: 2rem;
  height: 2rem;
}

.header {
  min-height: 100vh;
  position: relative;
  padding: 2rem 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1800px) {
  .header {
    padding-bottom: 2rem;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 1.2rem 1.5rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .header {
    min-height: 80vh;
    padding: 1rem;
  }
}
.header__video-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .header__video-holder {
    padding: 0.8rem;
  }
}
@media (max-width: 768px) {
  .header__video-holder {
    padding: 0.5rem;
  }
}
.header__video-holder video {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-position: center;
  object-fit: cover;
}
.header__navbar {
  display: flex;
  justify-content: space-between;
  height: 2.2rem;
  z-index: 2;
}
@media (max-width: 1400px) {
  .header__navbar {
    height: 1.75rem;
  }
}
.header__mini-logo {
  height: 100%;
  display: block;
}
.header__mini-logo img {
  width: auto;
}
.header__menu-list {
  display: flex;
  height: 100%;
  gap: 0.4rem;
}
@media (max-width: 768px) {
  .header__menu-list {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    flex-direction: column;
    padding: 4rem 4rem 10rem 1rem;
    background: #000;
    z-index: 3;
    gap: 2rem;
    height: auto;
  }
}
.header__menu-list.active {
  display: flex;
}
.header__closer {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  height: 1rem;
  width: 1rem;
  background: url("../images/closer.svg") no-repeat center/contain;
}
.header__menu-list.active .header__closer {
  display: block;
}
.header__menu-item {
  height: 100%;
}
@media (max-width: 768px) {
  .header__menu-item {
    height: auto;
  }
}
.header__menu-link {
  height: 100%;
  padding: 0 1.2rem;
  border-radius: 3rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #000;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1400px) {
  .header__menu-link {
    padding: 0 0.8rem;
    font-size: 0.6rem;
  }
}
@media (max-width: 768px) {
  .header__menu-link {
    height: auto;
    padding: 0;
    border-radius: 0;
    background: none;
    color: #fff;
    justify-content: flex-start;
  }
}
.header__switch {
  height: 100%;
  display: flex;
  gap: 0.6rem;
  position: relative;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.2rem;
}
@media (max-width: 768px) {
  .header__switch {
    gap: 0.4rem;
  }
}
.header__switch-underlay {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0.2rem;
  top: 0;
  left: 0;
}
.header__switch-underlay-toggler {
  position: absolute;
}
.header__switch-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  padding: 0.4rem;
  z-index: 1;
  font-size: 0.8rem;
  display: block;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1400px) {
  .header__switch-btn {
    font-size: 0.6rem;
  }
}
.header__switch-btn.active {
  border-radius: 8px;
  background: #fff;
}
.header__burger {
  display: none;
  height: 100%;
}
@media (max-width: 768px) {
  .header__burger {
    display: block;
  }
}
.header__logo {
  z-index: 1;
  height: 12.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1800px) {
  .header__logo {
    height: 9.8rem;
  }
}
@media (max-width: 1400px) {
  .header__logo {
    height: 6.5rem;
  }
}
@media (max-width: 1024px) {
  .header__logo {
    height: 4.6rem;
  }
}
@media (max-width: 768px) {
  .header__logo {
    height: 3.7rem;
  }
}
.header__socials-list {
  z-index: 1;
  grid-column: 1/3;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
@media (max-width: 1800px) {
  .header__socials-list {
    grid-column: 1/4;
  }
}
@media (max-width: 1400px) {
  .header__socials-list {
    grid-column: 1/3;
  }
}
@media (max-width: 1024px) {
  .header__socials-list {
    grid-column: 1/4;
  }
}
.header__socials-link {
  padding: 0.6rem 1.2rem;
  border-radius: 3rem;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1400px) {
  .header__socials-link {
    padding: 0.5rem 0.8rem;
    font-size: 0.6rem;
  }
}

.drinks {
  grid-template-rows: 42rem;
}
@media (max-width: 1800px) {
  .drinks {
    grid-template-rows: 31rem;
  }
}
@media (max-width: 1400px) {
  .drinks {
    grid-template-rows: 25rem;
  }
}
@media (max-width: 1024px) {
  .drinks {
    grid-template-rows: 28rem;
  }
}
@media (max-width: 768px) {
  .drinks {
    grid-template-rows: auto;
    row-gap: 0.5rem;
  }
}
.drinks__names {
  grid-column: 1/7;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 1400px) {
  .drinks__names {
    grid-column: 1/6;
  }
}
@media (max-width: 1024px) {
  .drinks__names {
    grid-column: 1/7;
  }
}
@media (max-width: 768px) {
  .drinks__names {
    grid-column: 1/-1;
    flex-direction: row;
  }
}
.drinks__name {
  font-family: Montserrat;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: text-shadow 0.3s ease;
  color: #000000;
  text-shadow: -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff, 3px 3px 0 #fff, 3px 0 0 #fff, -3px 0 0 #fff, 0 3px 0 #fff, 0 -3px 0 #fff;
}
@media (max-width: 1024px) {
  .drinks__name {
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff;
  }
}
@media (max-width: 768px) {
  .drinks__name {
    letter-spacing: 0.028rem;
  }
}
.drinks__name.active {
  text-shadow: -3px -3px 0 #a1004b, 3px -3px 0 #a1004b, -3px 3px 0 #a1004b, 3px 3px 0 #a1004b, 3px 0 0 #a1004b, -3px 0 0 #a1004b, 0 3px 0 #a1004b, 0 -3px 0 #a1004b;
}
@media (max-width: 1024px) {
  .drinks__name.active {
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff;
  }
}
.drinks__pics {
  grid-column: 9/-1;
  height: 100%;
  position: relative;
}
@media (max-width: 1400px) {
  .drinks__pics {
    grid-column: 6/-1;
  }
}
@media (max-width: 1024px) {
  .drinks__pics {
    grid-column: 7/-1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .drinks__pics {
    grid-column: 1/-1;
    flex-direction: row;
    height: 6rem;
  }
}
.drinks__pic {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .drinks__pic {
    position: static;
    flex: 1;
    opacity: 1;
    visibility: visible;
    max-height: 8rem;
  }
}
@media (max-width: 768px) {
  .drinks__pic {
    max-height: none;
    height: 100%;
    transform: rotate(27.5deg);
  }
}
.drinks__pic.active {
  opacity: 1;
  visibility: visible;
}

.about {
  position: relative;
}
.about__bg {
  position: absolute;
  top: -80vh;
  left: -10vw;
  width: 120vw;
  height: auto;
  pointer-events: none;
}
@media (max-width: 1800px) {
  .about__bg {
    top: -60vh;
  }
}
@media (max-width: 1400px) {
  .about__bg {
    top: -30vh;
    left: -20vw;
  }
}
@media (max-width: 1024px) {
  .about__bg {
    top: -20vh;
    left: -10vw;
  }
}
@media (max-width: 768px) {
  .about__bg {
    display: none;
  }
}
.about__bg-mobile {
  display: none;
  position: absolute;
  top: -40vh;
  left: -15vw;
  width: 120vw;
  height: auto;
  pointer-events: none;
}
@media (max-width: 768px) {
  .about__bg-mobile {
    display: block;
  }
}
.about__main {
  grid-column: 2/10;
  margin-bottom: 4rem;
}
@media (max-width: 1800px) {
  .about__main {
    margin-bottom: 3rem;
  }
}
@media (max-width: 1400px) {
  .about__main {
    grid-column: 1/8;
  }
}
@media (max-width: 1024px) {
  .about__main {
    margin-bottom: 2rem;
    margin-left: 3rem;
  }
}
@media (max-width: 768px) {
  .about__main {
    grid-column: 1/-1;
    margin-left: 0;
  }
}
.about__inner-img {
  display: inline;
  height: 4rem;
  width: auto;
}
@media (max-width: 1800px) {
  .about__inner-img {
    height: 3.4rem;
  }
}
@media (max-width: 1400px) {
  .about__inner-img {
    height: 2.9rem;
  }
}
@media (max-width: 1024px) {
  .about__inner-img {
    height: 2rem;
  }
}
.about__main-text {
  grid-column: 6/12;
  margin-bottom: 13rem;
}
@media (max-width: 1800px) {
  .about__main-text {
    grid-column: 7/12;
    margin-bottom: 12rem;
  }
}
@media (max-width: 1400px) {
  .about__main-text {
    grid-column: 4/-1;
    margin-bottom: 9.5rem;
  }
}
@media (max-width: 1024px) {
  .about__main-text {
    grid-column: 5/-1;
    margin-bottom: 8rem;
  }
}
@media (max-width: 768px) {
  .about__main-text {
    grid-column: 1/-1;
    margin-bottom: 5.5rem;
  }
}
.about__founder {
  grid-column: 1/-1;
  height: 40rem;
  z-index: 1;
}
@media (max-width: 1800px) {
  .about__founder {
    height: 28rem;
  }
}
@media (max-width: 1400px) {
  .about__founder {
    height: 25rem;
  }
}
@media (max-width: 1024px) {
  .about__founder {
    height: 19rem;
  }
}
@media (max-width: 768px) {
  .about__founder {
    height: auto;
    row-gap: 1.2rem;
  }
}
.about__founder-pic {
  grid-column: 1/5;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 1400px) {
  .about__founder-pic {
    margin-right: 3rem;
  }
}
@media (max-width: 1024px) {
  .about__founder-pic {
    margin-right: 2rem;
  }
}
@media (max-width: 768px) {
  .about__founder-pic {
    grid-column: 1/-1;
    margin-right: 0;
  }
}
.about__founder-pic img {
  object-fit: cover;
  object-position: center;
}
.about__founder-descr {
  grid-column: 5/-1;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding-left: 4rem;
}
@media (max-width: 1400px) {
  .about__founder-descr {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .about__founder-descr {
    grid-column: 1/-1;
  }
}
.about__pic {
  width: 30rem;
  align-self: flex-end;
}
@media (max-width: 1800px) {
  .about__pic {
    width: 21rem;
  }
}
@media (max-width: 1400px) {
  .about__pic {
    width: 16rem;
  }
}
@media (max-width: 1024px) {
  .about__pic {
    width: 11rem;
  }
}
@media (max-width: 768px) {
  .about__pic {
    display: none;
  }
}
.about__founder-text {
  width: 30rem;
}
@media (max-width: 1800px) {
  .about__founder-text {
    width: 21rem;
  }
}
@media (max-width: 1400px) {
  .about__founder-text {
    width: 16rem;
  }
}
@media (max-width: 1024px) {
  .about__founder-text {
    width: 11rem;
  }
}
@media (max-width: 768px) {
  .about__founder-text {
    width: auto;
  }
}

.yellow-text {
  color: #ebd800;
}

@media (max-width: 1024px) {
  .bestsellers {
    overflow: hidden;
  }
}
.bestsellers__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}
@media (max-width: 1400px) {
  .bestsellers__header {
    margin-bottom: 3rem;
  }
}
@media (max-width: 1024px) {
  .bestsellers__header {
    margin-bottom: 2rem;
  }
}
.bestsellers__btns {
  display: flex;
  gap: 1.6rem;
}
@media (max-width: 1024px) {
  .bestsellers__btns {
    gap: 0.6rem;
  }
}
.bestsellers__btn {
  border-radius: 50%;
  border: 1px solid #fff;
  background: none;
  height: 3.4rem;
  width: 3.4rem;
  padding: 0.5rem;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .bestsellers__btn {
    height: 2.2rem;
    width: 2.2rem;
  }
}
.bestsellers__container {
  display: flex;
  gap: 1.6rem;
}
@media (max-width: 1400px) {
  .bestsellers__container {
    gap: 1rem;
  }
}
@media (max-width: 1024px) {
  .bestsellers__container {
    gap: 0.6rem;
  }
}
.bestsellers .next-btn {
  background: #a1004b;
}

.slide {
  flex: 1;
  display: block;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .slide {
    gap: 0.9rem;
  }
}
.slide__img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 24px;
}
@media (max-width: 1024px) {
  .slide__img {
    border-radius: 10px;
  }
}
.slide__img img {
  object-fit: cover;
  object-position: center;
}
.slide__descr {
  font-size: 0.8rem;
  line-height: normal;
}
@media (max-width: 1024px) {
  .slide__descr {
    font-size: 0.6rem;
  }
}
.slide__volume {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.5;
  margin-top: auto;
}
@media (max-width: 1024px) {
  .slide__volume {
    font-size: 0.6rem;
  }
}

.form {
  align-items: center;
}
.form__title {
  grid-column: 1/-1;
  margin-bottom: 4rem;
}
@media (max-width: 1400px) {
  .form__title {
    margin-bottom: 3rem;
  }
}
@media (max-width: 1024px) {
  .form__title {
    margin-bottom: 2rem;
  }
}
.form__holder {
  grid-column: 1/7;
}
@media (max-width: 1400px) {
  .form__holder {
    grid-column: 1/5;
  }
}
@media (max-width: 1024px) {
  .form__holder {
    grid-column: 1/-1;
    order: 2;
  }
}
.form__descr {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 3rem;
}
@media (max-width: 1800px) {
  .form__descr {
    font-size: 1rem;
  }
}
@media (max-width: 1400px) {
  .form__descr {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 1024px) {
  .form__descr {
    font-size: 1rem;
    margin-bottom: 1.6rem;
  }
}
.form__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 1400px) {
  .form__form {
    gap: 1.2rem;
  }
}
.form__inp {
  width: 100%;
  background: #000;
  padding: 1rem 2rem;
  border-radius: 60px;
  border: 2px solid #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: normal;
  color: #fff;
}
@media (max-width: 1400px) {
  .form__inp {
    font-size: 0.8rem;
  }
}
.form textarea.form__inp {
  height: 12rem;
  border-radius: 32px;
  margin-bottom: 0.5rem;
}
@media (max-width: 1400px) {
  .form textarea.form__inp {
    margin-bottom: 0.8rem;
  }
}
.form__submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .form__submit {
    flex-direction: column;
    align-items: flex-start;
  }
}
.form__check-holder {
  display: flex;
  gap: 1.3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .form__check-holder {
    margin-bottom: 1.2rem;
  }
}
.form__check {
  appearance: none;
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  background: none;
  border: 1px solid #fff;
  overflow: hidden;
  cursor: pointer;
}
.form__check::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  background: url("../images/tick.svg") no-repeat center/90%;
}
.form__check:checked {
  background: #a1004b;
  border-color: #a1004b;
}
.form__check:checked::after {
  width: 1.25rem;
  height: 1.25rem;
}
.form__check-text {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: normal;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .form__check-text {
    font-size: 0.6rem;
  }
}
.form__btn {
  min-width: 12rem;
  padding: 0.9rem 0.5rem;
  border-radius: 60px;
  border: none;
  background: #fff;
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 1400px) {
  .form__btn {
    min-width: 10rem;
    font-size: 1rem;
  }
}
@media (max-width: 1024px) {
  .form__btn {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .form__btn {
    width: 100%;
    min-width: none;
  }
}
.form__contacts {
  grid-column: 8/-1;
}
@media (max-width: 1400px) {
  .form__contacts {
    grid-column: 5/-1;
    margin-left: 4rem;
  }
}
@media (max-width: 1024px) {
  .form__contacts {
    margin-left: 0;
    grid-column: 1/-1;
    order: 1;
  }
}

.events {
  grid-template-rows: auto 28rem;
  position: relative;
}
@media (max-width: 1800px) {
  .events {
    grid-template-rows: auto 28rem 10rem 20rem;
  }
}
@media (max-width: 1400px) {
  .events {
    grid-template-rows: auto 20rem 9rem 20rem;
  }
}
@media (max-width: 1024px) {
  .events {
    grid-template-rows: auto 14rem 8rem 14rem;
  }
}
@media (max-width: 768px) {
  .events {
    grid-template-rows: auto auto 14rem 0.8rem 14rem;
  }
}
.events .fake-row {
  height: 0;
  width: 0;
  display: none;
}
@media (max-width: 1800px) {
  .events .fake-row {
    display: block;
  }
}
@media (max-width: 768px) {
  .events .fake-row {
    order: 2;
  }
}
.events__bg {
  position: absolute;
  top: -90vh;
  left: -10vw;
  width: 120vw;
  height: auto;
  pointer-events: none;
}
@media (max-width: 1800px) {
  .events__bg {
    top: -80vh;
  }
}
@media (max-width: 1400px) {
  .events__bg {
    top: -60vh;
    left: -20vw;
  }
}
@media (max-width: 1024px) {
  .events__bg {
    top: -60vh;
    left: -10vw;
  }
}
@media (max-width: 768px) {
  .events__bg {
    display: none;
  }
}
.events__bg-mobile {
  display: none;
  position: absolute;
  top: -40vh;
  left: -15vw;
  width: 120vw;
  height: auto;
  pointer-events: none;
}
@media (max-width: 768px) {
  .events__bg-mobile {
    display: block;
  }
}
.events__title {
  grid-column: 1/-1;
  margin-bottom: 2.4rem;
}
@media (max-width: 1400px) {
  .events__title {
    margin-bottom: 3rem;
  }
}
@media (max-width: 1024px) {
  .events__title {
    margin-bottom: 2rem;
  }
}
.events__descr {
  grid-column: 1/4;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1800px) {
  .events__descr {
    grid-column: 1/6;
  }
}
@media (max-width: 1400px) {
  .events__descr {
    grid-column: 1/4;
  }
}
@media (max-width: 768px) {
  .events__descr {
    grid-column: 1/-1;
  }
}
.events__delimiter {
  flex: 1;
  border-left: 2px solid #fff;
  margin-left: 0.3rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .events__delimiter {
    display: none;
  }
}
.events__text {
  font-size: 1.2rem;
}
@media (max-width: 1400px) {
  .events__text {
    font-size: 0.8rem;
  }
}
@media (max-width: 1024px) {
  .events__text {
    font-size: 0.6rem;
  }
}
@media (max-width: 768px) {
  .events__text {
    margin-bottom: 1.2rem;
  }
}
.events__text span {
  font-size: inherit;
}
.events__pic {
  height: 100%;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .events__pic {
    border-radius: 10px;
  }
}
.events__pic img {
  object-fit: cover;
  object-position: center;
}
.events__ph-block-1 {
  grid-column: 5/9;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  grid: repeat(5, 1fr)/repeat(9, 1fr);
  gap: 1.2rem;
  grid-template-areas: "A A A A A B B B B" "A A A A A B B B B" "A A A A A B B B B" "C C C C C B B B B" "C C C C C B B B B";
}
@media (max-width: 1800px) {
  .events__ph-block-1 {
    grid-column: 7/-1;
  }
}
@media (max-width: 1400px) {
  .events__ph-block-1 {
    grid-column: 5/-1;
  }
}
@media (max-width: 1024px) {
  .events__ph-block-1 {
    gap: 0.8rem;
  }
}
@media (max-width: 768px) {
  .events__ph-block-1 {
    grid-column: 1/-1;
    order: 3;
  }
}
.events__link:hover a {
  color: #ebd800;
}
@media (max-width: 1024px) {
  .events__link:hover a {
    color: #fff;
  }
}
.events__link {
  grid-area: A;
  height: 100%;
  display: flex;
  align-items: center;
}
.events__link a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: color 0.3s;
}
@media (max-width: 768px) {
  .events__link a {
    font-size: 0.8rem;
  }
}
.events__link a img {
  width: 2rem;
  height: 2rem;
}
@media (max-width: 768px) {
  .events__link a img {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.events__ph-block-2 {
  grid-column: 9/-1;
  z-index: 1;
  padding-left: 0.7rem;
  display: grid;
  width: 100%;
  height: 100%;
  grid: repeat(8, 1fr)/repeat(2, 1fr);
  gap: 1.2rem;
  grid-template-areas: "A D" "A B" "A B" "A B" "C C" "C C" "C C" "C C";
}
@media (max-width: 1800px) {
  .events__ph-block-2 {
    grid-column: 1/-1;
    grid: repeat(5, 1fr)/repeat(12, 1fr);
    padding-left: 0;
    grid-template-areas: "A A A A B B B B B D D D" "A A A A B B B B B D D D" "A A A A B B B B B C C C" "E E E E B B B B B C C C" "E E E E B B B B B C C C";
  }
}
@media (max-width: 1024px) {
  .events__ph-block-2 {
    gap: 0.8rem;
  }
}
@media (max-width: 768px) {
  .events__ph-block-2 {
    grid: repeat(5, 1fr)/repeat(9, 1fr);
    order: 1;
    grid-template-areas: "A A A A B B B B B" "A A A A B B B B B" "A A A A B B B B B" "C C C C C C C C C" "C C C C C C C C C";
  }
}
.events #aafestImg1 {
  grid-area: C;
}
.events #aafestImg2 {
  grid-area: B;
}
.events #aafestImg3 {
  grid-area: A;
}
.events #aafestImg4 {
  grid-area: B;
}
.events #aafestImg5 {
  grid-area: C;
}

.projects__title {
  margin-bottom: 4rem;
}
@media (max-width: 1400px) {
  .projects__title {
    margin-bottom: 3rem;
  }
}
@media (max-width: 1024px) {
  .projects__title {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .projects__title {
    margin-bottom: 0.5rem;
  }
}
.projects__list {
  display: flex;
  flex-direction: column;
}
.projects__item {
  padding-right: 5.3rem;
  border-bottom: 2px solid #fff;
  transition: border 0.3s ease;
}
@media (max-width: 1400px) {
  .projects__item {
    padding-right: 0;
  }
}
.projects__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .projects__block {
    flex-direction: column;
  }
}
.projects__item:hover {
  border-color: #ebd800;
}
@media (max-width: 768px) {
  .projects__item:hover {
    border-color: #fff;
  }
}
.projects__item:hover .projects__name {
  color: #ebd800;
}
@media (max-width: 768px) {
  .projects__item:hover .projects__name {
    color: #fff;
  }
}
.projects__pic.to-smaller {
  padding: 2rem;
}
@media (max-width: 768px) {
  .projects__pic.to-smaller {
    padding: 0.8rem;
  }
}
.projects__pic {
  height: 10rem;
}
.projects__pic img {
  width: auto;
}
@media (max-width: 1400px) {
  .projects__pic {
    height: 8rem;
  }
}
@media (max-width: 768px) {
  .projects__pic {
    height: 6rem;
  }
}
.projects__name {
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .projects__name {
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: normal;
    font-size: 0.8rem;
  }
}

.footer {
  background: #a1004b;
  padding-top: 3.5rem;
}
@media (max-width: 768px) {
  .footer__holder {
    row-gap: 2.7rem;
  }
}
.footer__logo {
  grid-column: 1/3;
  padding-right: 2rem;
}
@media (max-width: 1400px) {
  .footer__logo {
    grid-column: 1/2;
    padding-right: 0;
  }
}
@media (max-width: 1024px) {
  .footer__logo {
    grid-column: 1/3;
    padding-right: 3rem;
  }
}
.footer__nav {
  grid-column: 5/7;
}
@media (max-width: 1400px) {
  .footer__nav {
    grid-column: 3/5;
  }
}
@media (max-width: 768px) {
  .footer__nav {
    grid-column: 3/-1;
  }
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__nav-item {
  line-height: normal;
}
.footer__nav-item a {
  opacity: 0.6;
  font-size: 1rem;
  line-height: normal;
}
@media (max-width: 1024px) {
  .footer__nav-item a {
    font-size: 0.8rem;
  }
}
.footer__contacts {
  grid-column: 9/-1;
  margin-bottom: 0;
}
@media (max-width: 1400px) {
  .footer__contacts {
    grid-column: 5/-1;
    padding-left: 2rem;
  }
}
@media (max-width: 768px) {
  .footer__contacts {
    grid-column: 1/-1;
    padding-left: 0;
  }
}
.footer__under {
  display: flex;
  justify-content: space-between;
  grid-column: 1/-1;
  margin-top: 2rem;
  border-top: 2px solid #fff;
  padding: 0.8rem 0;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .footer__under {
    margin-top: 0;
    flex-wrap: wrap;
    row-gap: 0.8rem;
  }
}
.footer__under-link {
  text-transform: lowercase;
}
@media (max-width: 768px) {
  .footer__under-link {
    font-size: 0.6rem;
  }
}
@media (max-width: 768px) {
  .footer__under > a:last-child {
    width: 100%;
    text-align: center;
  }
}

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