* {
  -webkt-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --textColorLight: #FFFFFF;
  --textColorDark: #303D50;
  --accent: #3168B2;
}

@font-face {
  font-family: 'GeneralSans-Regular';
  src: url('../fonts/GeneralSans-Regular.woff2') format('woff2'),
       url('../fonts/GeneralSans-Regular.woff') format('woff'),
       url('../fonts/GeneralSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

body {
  font-family: 'GeneralSans-Regular';
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  background-color: #fff;
  color: var(--textColorDark);
  margin: 0;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
 
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
::-webkit-scrollbar-thumb {
  background-color: var(--accent);
}

.hide {
  opacity: 0;
  visibility: hidden;
}
.show {
  opacity: 1;
  visibility: visible;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.hide__desktop {
  display: none;
}

.lazy {
  display: block;
  border: none !important;
}
img {
  display: inline-block;
}

img:not([src]) {
  visibility: hidden;
}

picture {
  width: 100%;
}

.skeleton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--brandColor);
}
.skeleton:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg, rgba(85, 97, 165, 0) 0, rgba(85, 97, 165, 0.2) 20%, rgba(85, 97, 165, 0.5) 60%, rgba(85, 97, 165, 0));
  animation: shimmer 5s infinite;
  content: '';
}
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-family: 'GeneralSans-Regular';
  color: #7E7E7E;
}
::-moz-placeholder { /* Firefox 19+ */
  font-family: 'GeneralSans-Regular';
  color: #7E7E7E;
}
:-ms-input-placeholder { /* IE 10+ */
  font-family: 'GeneralSans-Regular';
  color: #7E7E7E;
}
:-moz-placeholder { /* Firefox 18- */
  font-family: 'GeneralSans-Regular';
  color: #7E7E7E;
}

p {
  margin: 0 0 16px;
}
a {
  color: var(--textColor);
}
a:hover {
  color: var(--accent);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0 0 24px;
  line-height: 1.2;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 16px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 12px;
}

.section__title {
  position: relative;
  font-size: 32px;
}
.section__title--center {
  text-align: center;
}

.page__title {
  position: relative;
  font-size: 40px;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.page__title--center {
  text-align: center;
}

.container {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1280px;
  }
}

.btn {
  display: inline-block;
  position: relative;
  min-width: 140px;
  padding: 14px 16px;
  background-color: var(--accent);
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: var(--textColorLight);
  text-decoration: none;
  transition: all .2s ease-in-out;
  cursor: pointer;
  border-radius: 8px;
}
.btn:hover {
  color: var(--textColorLight);
  background-color: var(--accent);
  text-decoration: none;
  border-color: var(--accent);
}

.btn__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease-in-out;
}
.btn__link:hover {
  text-decoration: none;
  color: var(--accent);
}
.btn__link img {
  transition: all .3s ease-in-out;
}
.btn__link:hover img {
  animation: moveLeftRight 0.6s ease-in-out infinite alternate;
}
@keyframes moveLeftRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(10px); /* adjust how far it moves */
  }
}

/*header*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--textColorLight);
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 40px;
  z-index: 9;
}
header:before {
  content: '';
  width: 100%;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--accent);
  transform: translateY(-50%);
  z-index: -1;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 80px;
}
.logo {

}
.logo img {
  display: block;
  width: auto;
  height: 160px;
}
.main__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
.main__nav ul li {
  position: relative;
}
.main__nav ul li a {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: var(--textColorLight);;
  text-decoration: none;
  transition: all .2s ease-in-out;
  cursor: pointer;
}
.main__nav ul li.current-menu-item > a {
  color: var(--accent);
}
.main__nav ul li a:before {
  opacity: 0;
  visibility: hidden;
  content: '';
  position: absolute;
  top: -30px;
  left: -8px;
  width: calc(100% + 16px);
  height: 80px;
  background: #fff;
  transition: all .3s ease-in-out;
  z-index: -1;
}
.main__nav ul li.current-menu-item > a:before {
  opacity: 1;
  visibility: visible;
}
.main__nav ul li a:after {
  opacity: 0;
  visibility: hidden;
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  border-bottom: 4px solid #fff;
  transition: all .2s ease-in-out;
}
.main__nav ul li:hover > a:after {
  opacity: 1;
  visibility: visible;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__right a {
  text-decoration: none;
}
.header__right a img {
  display: block;
  width: 24px;
  height: 24px;
}
.search__btn {
  height: 24px;
  cursor: pointer;
}
.search__form {
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  width: 50%;
  height: 64px;
  background: #fff;
  z-index: 1;
  transition: all .2s ease-in-out;
  transform: translateY(10px);
}

.search__form.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

header.fixed .search__form svg path {
  fill: var(--textColorLight) !important;
}

.search__form > label {
  width: 100%;
  height: 100%;
  position: relative;
}

.search__field {
  width: 100%;
  height: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.search__submit {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 48px;
  height: 48px;
  background: var(--accentDark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
}

.search__submit:hover {
  background-color: var(--brandColor);
}

.menu__btn {
  position: relative;
  display: none;
  width: 32px;
  height: 18px;
  transition: all .3s ease-in-out;
  cursor: pointer;
}
.menu__btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
  background: #fff;
  opacity: 1;
  transform: rotate(0deg);
  transition: all .3s ease-in-out;
}
.menu__btn span:nth-child(even) {
  border-radius: 0 3px 3px 0;
  left: 50%;
}
.menu__btn span:nth-child(odd) {
  border-radius: 3px 0 0 3px;
  left:0px;
}
.menu__btn span:nth-child(1), .menu__btn span:nth-child(2) {
  top: 0px;
}
.menu__btn span:nth-child(3), .menu__btn span:nth-child(4) {
  top: 8px;
}
.menu__btn span:nth-child(5), .menu__btn span:nth-child(6) {
  top: 16px;
}
.menu__btn.active span:nth-child(1),.menu__btn.active span:nth-child(6) {
  transform: rotate(45deg);
}
.menu__btn.active span:nth-child(2),.menu__btn.active span:nth-child(5) {
  transform: rotate(-45deg);
}
.menu__btn.active span:nth-child(1) {
  left: 5px;
  top: 7px;
}
.menu__btn.active span:nth-child(2) {
  left: calc(50% - 1px);
  top: 7px;
}
.menu__btn.active span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.menu__btn.active span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.menu__btn.active span:nth-child(5) {
  left: 5px;
  top: 17px;
}
.menu__btn.active span:nth-child(6) {
  left: calc(50% - 1px);
  top: 17px;
}

/*default page*/
.default__page {
  margin: 216px 0;
}
.default__page .container {
  max-width: 960px;
}

/*masterhead*/
.masterhead {
  position: relative;
}
.masterhead--small .big__slider,
.masterhead--small {
  height: 33vh;
}
.big__slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.big__slider {
  width: 100%;
  height: 100vh;
  position: relative;
}
.big__slider:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #FFF;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.big__slider .slick-list,
.big__slider .slick-track {
  height: 100%;
}
.big__slider-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.big__slider-info {
  width: 60%;
  position: absolute;
  top: 256px;
  left: 80px;
}
.big__slider-info h1 {
  font-size: 40px;
  margin-bottom: 0;
  color: var(--textColorLight);
  text-shadow: 0px 2px 4px #000;
}

.home__news {
  display: flex;
  gap: 40px;
  position: absolute;
  bottom: 80px;
  left: 80px;
}
.home__news-item {
  position: relative;
  padding: 16px;
  display: flex;
  width: 25%;
  flex-direction: column;
  text-decoration: none;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px;
  z-index: 1;
}
.home__news-item:hover {
  text-decoration: none;
}
.home__news-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255, .33);
  border-radius: 8px;
  z-index: -1;
  backdrop-filter: blur(6px);
}
.home__news-logo {
  width: auto;
  height: 16px;
  display: block;
  margin-bottom: 4px;
}
.home__news-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.home__news-title {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
}
.home__news .btn__link {
  align-self: end;
  margin-left: 40px;
}

.home__about {
  padding: 80px 0;
  position: relative;
}
.grapes {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: hard-light;
}
.home__about .container {
  display: flex;
  align-items: flex-start;
}
.home__iwpa {
  width: 420px;
  height: auto;
}
.home__intro {
  max-width: 800px;
  margin-left: auto;
  font-size: 24px;
}

.home__producers {
 padding: 80px 0 0;
 z-index: 1;
}
.home__producers h2 {

}
.home__producers-slider {
  width: 100%;
}
.home__producers-item {
  position: relative;
  width: 20%;
  height: 240px;
}
.home__producers-item img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100% - 32px);
  max-height: 120px;
  position: absolute;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home__producers-slider-controls {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.home__producers-slider-controls .prev__btn {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.home__producers-slider-controls .next__btn {
  order: 3;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}
.slick-dots button {
  display: block;
  width: 8px;
  height: 8px;
  background: #ddd;
  border-radius: 100%;
  text-indent: -99999px;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.slick-dots .slick-active button {
  background: var(--accent);
}

.quote {
  position: relative;
  min-height: 480px;
  background: var(--accent);
  padding: 40px;
  border-radius: 32px;
  margin: 40px auto;
  display: flex;
  align-items: center;
}
.quote__icon {
  position: absolute;
  top: 50%;
  left: 0;
  opacity: 0.05;
  transform: translateY(-50%);
}
.quote__slider {
  max-width: 640px;
  margin: 0 0 0 auto;
}
.quote__item {
  color: var(--textColorLight);
}
.quote__item p {
  font-size: 32px;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  margin: 0 0 24px;
}
.quote__info {
  display: flex;
  flex-direction: column;
}
.quote__info span {

}

.home__blog {
  padding: 40px 0;
}
.home__blog .section__title {
  margin-bottom: 40px;
}
.home__blog-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 80px;
  grid-row-gap: 0px;
}
.home__blog-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  transition: all .3s ease-in-out;
}
a.home__blog-item:only-child{
  grid-column: 1 / -1;
}
.home__blog-item:hover {
  text-decoration: none;
}
.home__blog-img {
  display: none;
}
.home__blog-item h3 {
  font-size: 24px;
  margin: 0;
}
.home__blog-item p {
  margin: 0;
}
.home__blog-item a {

}
.home__blog-item:first-child {
  grid-area: 1 / 1 / 3 / 2;
  padding: 24px;
  background: var(--accent);
  color: var(--textColorLight);
  border-radius: 16px;
}
.home__blog-item:first-child:hover {
  box-shadow: 0 4px 16px rgba(21, 21, 21, .3);
}
.home__blog-item:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}
.home__blog-item:nth-child(3) {
  grid-area: 2 / 2 / 3 / 3;
}
.home__blog-item:first-child .home__blog-img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
}
.home__blog-item:first-child:hover .btn__link {
  color: var(--textColorLight);
}

/*about*/
.about {
  padding: 80px 0;
}

/*news*/
.news {
  margin: 80px auto;
}
.news__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.news__item {
  width: calc(33.333% - 27px);
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px;
  z-index: 1;
}
.news__item-item:hover {
  text-decoration: none;
}
.news__item-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255, .33);
  border-radius: 8px;
  z-index: -1;
  backdrop-filter: blur(6px);
}
.news__item-logo {
  width: auto;
  height: 16px;
  display: block;
  margin-bottom: 4px;
}
.news__item-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.news__item-title {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
}
.loadmore__wrapper {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

/*single post*/
.post__info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.post__info-data {
  display: flex;
  align-items: center;
  font-family: "Playfair Display", serif;
  font-size: 14px;
}
figcaption {
  font-size: 14px;
  font-style: italic;
}


/*producers*/
.producers {
  margin: 136px 0 0;
  width: 100%;
  height: calc(100vh - 136px);
  overflow: hidden;
}
.producers__wrapper {
  display: flex;
  height: 100%;
}
.producers__map {
  width: 50%;
  height: 100%;
}
.producers__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.producers__list-wrapper {
  width: 50%;
  height: 100%;
  overflow: auto;
}
.producers__list-wrapper::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
 
.producers__list-wrapper::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
.producers__list-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--textColorDark);
}
.producers__list { 
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.producers__list-item {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.producers__list-item:hover {
  background: ;
}
.producers__list-item img {
  width: auto;
  height: auto;
  max-width: 160px;
  max-height: 120px;
}

/*contact*/
.contact {
  padding: 216px 0 0;
}
.contact__info {
  display: flex;
  justify-content: space-between;
}
.contact__info p {
  font-size: 24px;
  margin: 0;
}
.contact__info a {
  text-decoration: none;
  color: var(--textColorDark);
}
.contact__form {
  margin-top: 80px;
}
.contact__form form {
  
}
.form__group {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.form__group .form__item {
  width: calc(50% - 20px);
}
.form__group .form__item p {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__group .form__item input {
  width: 100%;
  height: 80px;
  padding: 8px 16px;
  border: 1px solid #ddd;
}
.form__group .form__item textarea {
  width: 100%;
  height: 240px;
  padding: 8px 16px;
  border: 1px solid #ddd;
}
.form__group .form__item:last-child {
  width: 100%;
}
.form__item input[type="submit"] {
  display: inline-block;
  position: relative;
  min-width: 140px;
  padding: 14px 16px;
  background-color: var(--accent);
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: var(--textColorLight);
  text-decoration: none;
  transition: all .2s ease-in-out;
  cursor: pointer;
  border-radius: 8px;
  border: 0;
  outline: none;
  text-transform: uppercase;
}

/*footer*/
footer {
  position: relative;
  padding: 40px;
  margin-top: 176px;
  min-height: 240px;
  background: var(--accent);
}
.logo__footer {
  position: absolute;
  top: -136px;
  left: 50%;
  width: 272px;
  height: 272px;
  background: var(--accent);
  padding: 8px;
  border-radius: 100%;
  transform: translateX(-50%);
}
.logo__footer img {
  width: 100%;
  height: auto;
  display: block;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.footer__content p {
  margin: 0;
  font-size: 16px;
  color: var(--textColorLight);
}






