@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;700&family=Playfair+Display+SC:wght@400;700&display=swap");

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

ul,
ol {
  padding: 0;
  list-style: none;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

/*!
 * pagepiling.js 1.5.6
 *
 * https://github.com/alvarotrigo/pagePiling.js
 * @license MIT licensed
 *
 * Copyright (C) 2016 alvarotrigo.com - A project by Alvaro Trigo
 */

html,
body {
  margin: 0;
  padding: 0;
  /*Avoid flicker on slides transitions for mobile phones #336 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.pp-section {
  height: 100%;
  position: absolute;
  width: 100%;
  /* fixes flickering in firefox*/
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.pp-easing {
  -webkit-transition: all 1000ms cubic-bezier(0.55, 0.085, 0, 0.99);
  -o-transition: all 1000ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: all 1000ms cubic-bezier(0.55, 0.085, 0, 0.99);
  /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
  -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
  transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
  /* custom */
}

#pp-nav {
  position: fixed;
  z-index: 100;
  margin-top: -32px;
  top: 50%;
  opacity: 1;
}

#pp-nav.right {
  right: 17px;
}

#pp-nav.left {
  left: 17px;
}

.pp-section.pp-table {
  display: table;
}

.pp-tableCell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.pp-slidesNav {
  position: absolute;
  z-index: 4;
  left: 50%;
  opacity: 1;
}

.pp-slidesNav.bottom {
  bottom: 17px;
}

.pp-slidesNav.top {
  top: 17px;
}

#pp-nav ul,
.pp-slidesNav ul {
  margin: 0;
  padding: 0;
}

#pp-nav li,
.pp-slidesNav li {
  display: block;
  width: 14px;
  height: 13px;
  margin: 7px;
  position: relative;
}

.pp-slidesNav li {
  display: inline-block;
}

#pp-nav li a,
.pp-slidesNav li a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}

#pp-nav li .active span,
.pp-slidesNav .active span {
  background: #333;
}

#pp-nav span,
.pp-slidesNav span {
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 1px solid #000;
  background: rgba(0, 0, 0, 0);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}

.pp-tooltip {
  position: absolute;
  top: -2px;
  color: #fff;
  font-size: 14px;
  font-family: arial, helvetica, sans-serif;
  white-space: nowrap;
  max-width: 220px;
}

.pp-tooltip.right {
  right: 20px;
}

.pp-tooltip.left {
  left: 20px;
}

.pp-scrollable {
  overflow-y: scroll;
  height: 100%;
}

.height-100vh {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

body {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 300;
  overflow-x: hidden;
}

video {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.bg-video {
  height: 100vh;
}

.bg-video video::-webkit-media-controls-play-button {
  display: none;
}

.bg-video video::-webkit-media-controls-volume-slider {
  display: none;
}

.bg-video video::-webkit-media-controls-mute-button {
  display: none;
}

.bg-video video::-webkit-media-controls-timeline {
  display: none;
}

.bg-video video::-webkit-media-controls-current-time-display {
  display: none;
}

.body-overflow {
  overflow: hidden;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(28, 28, 28, 0.5);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  z-index: 999;
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__logo {
  max-width: 200px;
}

.header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__social div:not(:last-child) {
  margin-right: 20px;
}

.header__burger {
  display: flex;
  align-items: center;
}

.header__burger span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  color: white;
  line-height: 20px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-right: 10px;
}

.container {
  max-width: 1664px;
  margin: 0 auto;
}

.burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 25px;
  height: 1px;
  background-color: white;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.burger span:not(:last-child) {
  margin-bottom: 5px;
}

.burger-active span:nth-child(1) {
  -webkit-transform: translate(-6px, 6px) rotate(43deg);
  -ms-transform: translate(-6px, 6px) rotate(43deg);
  transform: translate(-6px, 6px) rotate(43deg);
}

.burger-active span:nth-child(2) {
  opacity: 0;
}

.burger-active span:nth-child(3) {
  -webkit-transform: translateY(-11px) rotate(-43deg) translateX(-7px);
  -ms-transform: translateY(-11px) rotate(-43deg) translateX(-7px);
  transform: translateY(-11px) rotate(-43deg) translateX(-7px);
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__right .header__lang {
  cursor: pointer;
  margin-right: 40px;
  color: white;
}

.header__right .header__lang .active__lang {
  position: relative;
  padding-right: 20px;
  background: url(../img/lang.svg) center right no-repeat;
}

.header__right .header__lang .active__lang .visble__lang {
  display: block;
  padding: 20px 40px;
}

.header__right .header__lang .active__lang ul {
  position: absolute;
  z-index: 999;
  background: rgba(28, 28, 28, 0.5);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  left: -80%;
  top: 185%;
  display: none;
}

.header__right .header__lang .active__lang ul li a {
  color: white;
}

.header__menu {
  height: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__menu nav {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.header__menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0s linear 0.4s;
  -o-transition: all 0s linear 0.4s;
  transition: all 0s linear 0.4s;
}

.header__menu nav ul li:not(:last-child) {
  margin-bottom: 32px;
}

.header__menu nav ul li a {
  font-size: 64px;
  line-height: 75px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
}

.header__menu nav ul li a:hover::after {
  width: 100%;
}

.header__menu nav ul li a::after {
  content: "";
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: white;
  height: 1px;
  display: block;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__menu-active {
  height: 100vh;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.header__menu-active nav {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.header__menu-active nav ul {
  position: absolute;
  top: 45%;
  left: 50%;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.pp-tableCell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.slide-section {
  background-color: white;
}

.collection__preview-img {
  max-width: 600px;
}

.collerction__preview {
  padding: 100px 0;
  background-color: #fcfbff;
}
.collerction__preview:nth-child(2n-1) {
  background-color: #fff;
}

.collerction__preview .collection__preview-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.collerction__preview:nth-child(2n - 1) .collection__preview-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.collerction__preview:nth-child(2n - 1)
  .collection__preview-flex
  .collection__preview-img {
  margin-right: 0px;
}

#pp-nav span,
.pp-slidesNav span {
  width: 15px;
  height: 1px;
  border-radius: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#pp-nav li .active span,
.pp-slidesNav .active span {
  width: 25px;
  height: 1px;
  border-radius: 0;
}

.collection__preview-info {
  max-width: 658px;
}

.collection__preview-info span {
  font-style: italic;
  font-weight: 300;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000000;
}

.collection__preview-info h2 {
  font-size: 72px;
  line-height: 84px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #25282b;
  margin: 24px 0 79px 0;
}

.collection__preview-info a {
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #686868;
  margin-right: 10px;
}

.collection__preview-btn {
  border: 1px solid #686868;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 12px;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.collection__preview-btn::after {
  content: "";
  z-index: 0;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: black;
  height: 100%;
  display: block;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.collection__preview-btn:hover a {
  color: white;
  z-index: 2;
}

.collection__preview-btn:hover svg {
  z-index: 2;
}

.collection__preview-btn:hover svg path {
  stroke: white;
  z-index: 2;
}

.collection__preview-btn:hover::after {
  width: 100%;
}

.partnership__preview {
  background: url(../img/partnershipBg.png) center center/cover no-repeat;
  padding: 127px 0;
}

.partnership__text h3 {
  font-size: 28px;
  line-height: 28px;
  color: #292d32;
  font-weight: 700;
}

.partnership__text p {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #292d32;
  margin: 10px 0 24px 0;
}

.partnership__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 12px;
  position: relative;
  cursor: pointer;
}



.partnership__btn svg path {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.partnership__btn a {
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #292d32;
  margin-right: 10px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.partnership__btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  background-color: #000000;
  display: block;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.partnership__btn:hover {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.partnership__btn:hover a {
  color: white;
  z-index: 2;
}

.partnership__btn:hover svg {
  z-index: 2;
}

.partnership__btn:hover svg path {
  stroke: white;
}

.partnership__btn:hover::after {
  width: 100%;
}

.blog__container {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog__item {
  max-width: 470px;
  margin-bottom: 50px;
}

.blog__item:not(:nth-child(3n)) {
  margin-right: 125px;
}

.blog__item h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #686868;
}

.blog__item p {
  padding-top: 12px;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #686868;
}

.blog__category {
  font-weight: bold;
  font-size: 14px;
  line-height: 28px;
  text-transform: uppercase;
  color: #c4c4c4;
}

.blog__wrapper {
  justify-content: space-between;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog__wrapper .blog__item img {
  object-fit: cover;
}
.video__info {
  padding: 15px 0;
  background: rgba(28, 28, 28, 0.5);
  backdrop-filter: blur(9px);
}
.video__info p {
  font-family: "Roboto";
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}
#arowDown {
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
}
.box span {
  width: 20px;
  height: 20px;
  display: block;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}

.box span:nth-child(2) {
  animation-delay: -0.2s;
}

.box span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animate {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translate(10px, 10px);
  }
  100% {
    opacity: 0;
  }
}
.footer {
  padding-bottom: 0;
  padding-top: 320px;
}

.footer .pp-tableCell {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer .container {
  border-top: 1px solid #292d32;
}

.footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 50px;
}

.footer__logo {
  max-width: 126px;
  margin-bottom: 50px;
}

.footer__subscribe {
  border-bottom: 1px solid #686868;
}

.footer__subscribe form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__subscribe form input {
  border: none;
  width: 335px;
  outline: none;
  padding: 10px 0 10px 0;
}

.footer__subscribe form input::-webkit-input-placeholder {
  color: #000;
  font-size: 20px;
}

.footer__subscribe form input::-moz-placeholder {
  color: #000;
  font-size: 20px;
}

.footer__subscribe form input:-ms-input-placeholder {
  color: #000;
  font-size: 20px;
}

.footer__subscribe form input::-ms-input-placeholder {
  color: #000;
  font-size: 20px;
}

.footer__subscribe form input::placeholder {
  color: #000;
  font-size: 20px;
}

.footer__subscribe form button {
  border: none;
  background-color: transparent;
}

.footer__form-description {
  font-size: 10px;
  line-height: 22px;
  text-transform: uppercase;
  color: #c4c4c4;
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-left: 625px;
}

.footer__right h3 {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #292d32;
  margin-bottom: 34px;
}

.footer__right p {
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #686868;
  max-width: 165px;
}

.footer__right ul li {
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #686868;
}

.footer__right ul li:not(:last-child) {
  margin-bottom: 24px;
}

.footer__right ul li a {
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #686868;
}

.footer__contact {
  margin: 0 147px 0 147px;
}

.footer__contact-number {
  font-size: 18px;
  line-height: 17px;
  text-transform: uppercase;
  color: #686868;
}

.footer__social-item a {
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #686868;
}

.cratory {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 0;
}

.bg-black {
  background: #141414;
}
.relate__block{
  flex: 0 0 350px;
}
h1.title {
  font-size: 72px;
  line-height: 87px;
  text-transform: uppercase;
  color: #ffffff;
}

h2.title {
  font-size: 72px;
  line-height: 87px;
  text-transform: uppercase;
  color: #000;
}

.bg-gray {
  background: #fafafa;
}

.text-center {
  max-width: 1251px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.text-center p {
  margin-top: 61px;
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  line-height: 29px;
  color: #686868;
  max-width: 915px;
}
.about_img {
  padding-bottom: 250px;
}
.about__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.img__container {
  max-width: 540px;
  max-height: 810px;
}
.img__container:nth-child(1) {
  transform: translate(20%, 20%);
  z-index: 2;
}
.img__container:nth-child(2) {
  transform: translate(0, 0);
  z-index: 3;
}
.img__container:nth-child(3) {
  transform: translate(-10%, -15%);
  z-index: 2;
}
.center-con {
  position: absolute;
  top: -35%;
  right: 0;
}
.round {
  position: absolute;
  border: 2px solid #000;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cta {
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
}

.arrow {
  position: absolute;
  margin-left: 0px;
  width: 12px;
  height: 12px;
  background-size: contain;
}
.segunda {
  margin-left: 14px;
}
.next {
  background-image: url(../img/nextModel.svg);
}

@keyframes bounceAlpha {
  0% {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
  25% {
    opacity: 0;
    transform: translateX(10px) scale(0.9);
  }
  26% {
    opacity: 0;
    transform: translateX(-10px) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
}

.bounceAlpha {
  animation-name: bounceAlpha;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.arrow.primera.bounceAlpha {
  animation-name: bounceAlpha;
  animation-duration: 1.4s;
  animation-delay: 0.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.round:hover .arrow {
  animation-name: bounceAlpha;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.round:hover .arrow.primera {
  animation-name: bounceAlpha;
  animation-duration: 1.4s;
  animation-delay: 0.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.collection__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.collections__item {
  max-width: 540px;
  margin-bottom: 20px;
}

.collections__item:not(:nth-child(3n)) {
  margin-right: 22px;
}

footer {
  padding-top: 100px !important;
}

footer .container {
  padding-bottom: 100px;
}

.collection__img {
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.collection__img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
}

.collections__item {
  position: relative;
}

.collections__item .collections__details {
  height: auto;
  padding: 27px 10px 27px 10px;
}

.collections__item .collections__details span {
  font-size: 18px;
}

.collections__item .collections__details a {
  font-size: 20px;
}

.collections__item .collections__details svg {
  width: auto;
}

.collections__item:hover .collection__img {
  opacity: 0;
}

.collections__item:hover .collection__img-hover {
  opacity: 1;
}

.collections__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(28, 28, 28, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.collections__details span {
  font-size: 0px;
  line-height: 22px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
}

.collections__details a {
  font-size: 0;
  line-height: 29px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 10px 0 10px;
}

.collections__details svg {
  width: 0;
}

.collections__details svg path {
  stroke: white;
}

.collections {
  padding: 100px 0 0 0;
}

.collection__header {
  position: relative;
  padding: 350px 100px;
}

.page__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.collection__header-img {
  width: 100%;
}

.page__title-wrapper {
  background: rgba(28, 28, 28, 0.3);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  max-width: 760px;
  padding: 72px 22px 92px 22px;
}

.page__title-wrapper span {
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
}

.page__title-wrapper h1 {
  font-size: 72px;
  line-height: 87px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
}

.model__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.model__count p {
  font-family: "Roboto";
  font-weight: bold;
  font-size: 14px;
  line-height: 28px;
  text-transform: uppercase;
  color: #c4c4c4;
}

.model__count span {
  font-family: "Roboto";
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  color: #292d32;
}

.model__sort form select {
  font-family: "Roboto";
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #686868;
  padding: 5px 10px 5px 10px;
  outline: none;
}

.model__sort form select option {
  font-family: "Roboto";
}

.p-100 {
  padding-top: 100px;
}

.model__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
}

.model__list a {
  margin-bottom: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 540px;
}

.model__list a h2 {
  margin-top: 22px;
  font-family: "Roboto";
  font-weight: bold;
  font-size: 14px;
  line-height: 28px;
  text-transform: uppercase;
  color: #c4c4c4;
}

.model__list a h3 {
  margin-top: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #292d32;
}

.model__list a:not(:nth-child(3n)) {
  margin-right: 22px;
}

.model {
  padding: 0;
}

.model__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.model__big {
  max-width: 100%;
  position: relative;
}

.model__big img {
  width: 100%;
}

.video__btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(28, 28, 28, 0.3);
  -webkit-backdrop-filter: blur(13.5px);
  backdrop-filter: blur(13.5px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.video__btn img {
  width: 18px;
  height: 24px;
}

.model__descriptions {
  max-width: 728px;
  margin-top: 115px;
}

.model__descriptions p {
  font-size: 18px;
  line-height: 28px;
  color: #686868;
}

.model__descriptions ul {
  margin-top: 30px;
  list-style: inside;
}

.model__descriptions ul li {
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  color: #686868;
}

.model__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 670px;
  flex: 0 0 670px;
}

.model__right {
  padding-top: 150px;
  padding-left: 22px;
}

.model__nav h3 {
  font-family: "Roboto";
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  color: #c4c4c4;
}

.model__nav ul {
  position: relative;
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.model__nav ul li {
  margin-right: 25px;
  position: relative;
}

.model__nav ul li:not(:first-child)::after {
  content: "/";
  position: absolute;
  top: -30%;
  left: -14%;
  color: #000;
  font-size: 25px;
  font-weight: 900;
  color: #c4c4c4;
}

.model__nav ul li a {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 22px;
  text-transform: uppercase;
  color: #c4c4c4;
}

.model__nav ul li a.active {
  color: #292d32;
}

.model__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.model__slider {
  margin-top: 20px;
  overflow-x: hidden;
  max-width: 100%;
}

.model__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 235px;
  flex: 0 0 235px;
  cursor: pointer;
}

.partnership__wrapper {
  background: rgba(28, 28, 28, 0.5);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 540px;
  margin: 0 auto;
  padding: 115px 0 75px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.partnership__wrapper h3 {
  font-size: 20px;
  line-height: 17px;
  color: #d8d8d8;
}

.partnership__wrapper p {
  margin: 20px 0;
  font-size: 20px;
  line-height: 17px;
  color: #ffff;
}

.partnership__wrapper a {
  font-style: italic;
  font-size: 20px;
  line-height: 17px;
  color: #ffff;
}

.partnership__wrapper form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 353px;
}

.partnership__wrapper form textarea {
  width: 100%;
  color: white;
  background-color: transparent;
  border: none;
  padding: 0px 0px 7px 0;
  border-bottom: 1px solid white;
  outline: none;
}

.partnership__wrapper form textarea::-webkit-input-placeholder {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
}

.partnership__wrapper form textarea::-moz-placeholder {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
}

.partnership__wrapper form textarea:-ms-input-placeholder {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
}

.partnership__wrapper form textarea::-ms-input-placeholder {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
}

.partnership__wrapper form textarea::placeholder {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
}

.partnership__wrapper form input {
  width: 100%;
  color: white;
  padding: 0px 0px 7px 0;
  border: none;
  border-bottom: 1px solid white;
  background-color: transparent;
  margin-bottom: 48px;
  outline: none;
}

.partnership__wrapper form input::-webkit-input-placeholder {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
}

.partnership__wrapper form input::-moz-placeholder {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
}

.partnership__wrapper form input:-ms-input-placeholder {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
}

.partnership__wrapper form input::-ms-input-placeholder {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
}

.partnership__wrapper form input::placeholder {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
}

.partnership__wrapper form p {
  margin-top: 32px;
  margin-bottom: 80px;
  font-size: 14px;
  line-height: 17px;
  color: #c4c4c4;
}

.partnership__wrapper form button {
  border: none;
  cursor: pointer;
  border: 1px solid #d8d8d8;
  padding: 6px;
  width: 69px;
  font-size: 18px;
  line-height: 22px;
  background-color: transparent;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #d8d8d8;
  margin-bottom: 100px;
}

.post__media {
  max-width: 540px;
  margin-right: 23px;
}

.post__info {
  margin-bottom: 95px;
}

.post__info span {
  font-family: "Roboto";
  font-weight: bold;
  font-size: 14px;
  line-height: 28px;
  text-transform: uppercase;
  color: #c4c4c4;
}

.post__info h4 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #686868;
  margin: 12px 0;
}

.post__info p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #686868;
}

.post__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post__content {
  max-width: 914px;
}

.post__content p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  color: #686868;
}
.relate__flex{
  overflow: hidden;
}
.relate__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 32px;
}
.relate__block {
  max-width:350px;
  flex:0 0 100%;
}
.relate__flex a:not(:last-child) {
  margin-right: 20px;
}

#map {
  width: 100%;
  height: 100%;
  position: relative;
}

.mapSection {
  padding: 0;
  height: 90vh;
}

.gmnoprint {
  display: none;
}

.gm-fullscreen-control {
  display: none;
}

.video__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.video__slider {
  width: 100%;
  height: 100%;
}

.video__slide {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
  position: relative;
}

.video__slide video {
  -o-object-fit: cover;
  object-fit: cover;
}

.video__play {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  outline: none;
  border: none;
  cursor: pointer;
}

.serch__store {
  position: absolute;
  top: 50%;
  left: 20%;
  -webkit-transform: translate(-20%, -50%);
  -ms-transform: translate(-20%, -50%);
  transform: translate(-20%, -50%);
  background: rgba(28, 28, 28, 0.5);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 26px;
}

.serch__store p {
  font-size: 10px;
  line-height: 22px;
  text-transform: uppercase;
  color: #c4c4c4;
  font-size: 15px;
}

.serch__store form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid white;
  margin-bottom: 10px;
}

.serch__store form input {
  background-color: transparent;
  color: white;
  border: none;
  outline: none;
  padding-bottom: 8px;
  width: 100%;
}

.serch__store form input::-webkit-input-placeholder {
  font-family: "Roboto";
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
}

.serch__store form input::-moz-placeholder {
  font-family: "Roboto";
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
}

.serch__store form input:-ms-input-placeholder {
  font-family: "Roboto";
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
}

.serch__store form input::-ms-input-placeholder {
  font-family: "Roboto";
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
}

.serch__store form input::placeholder {
  font-family: "Roboto";
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
}

.serch__store form button {
  background: url(../img/search.svg) center/contain no-repeat;
  width: 24px;
  height: 24px;
  border: none;
  outline: none;
}

@media (max-width: 1680px) {
  .container {
    max-width: 1420px;
  }

  .collection__preview-img {
    max-width: 450px;
    margin-right: 170px;
  }

  .blog__container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .blog__wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .blog__wrapper .blog__item {
    max-width: 28%;
  }

  .blog__item {
    max-width: 30%;
  }

  .blog__item:not(:nth-child(3n)) {
    margin-right: 0;
  }

  .footer__right {
    margin-left: 375px;
  }

  .collection__preview-info h2 {
    font-size: 65px;
  }

  .img__container {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    height: 639px;
  }

  .collection__flex {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .collections__item {
    max-width: 30%;
  }

  .collections__item:hover .collections__details a {
    font-size: 15px;
  }

  .model__list a {
    max-width: 30%;
  }

  .page__title-wrapper h1 {
    font-size: 55px;
  }

  .page__title-wrapper {
    max-width: 600px;
    padding: 72px 22px 72px 22px;
  }

  .model__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 600px;
    flex: 0 0 600px;
  }

  .model__descriptions {
    margin-top: 50px;
  }

  .model__right {
    padding-top: 115px;
  }

  .video__slider {
    overflow: hidden;
  }

  .post__media {
    max-width: 450px;
  }

  .relate__block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    margin-right: 15px;
  }

  .post__flex {
    padding-top: 50px;
  }

  .video__slider {
    padding-top: 50px;
  }

  .header__facebook {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 1280px) {
  .container {
    max-width: 1100px;
  }
  .footer__right {
    margin-left: 250px;
  }

  .collection__preview-info a {
    font-size: 12px;
  }

  .collection__preview-info h2 {
    font-size: 40px;
  }

  .collection__preview-img {
    max-width: 30%;
  }

  .collection__preview-info span {
    font-size: 25px;
  }

  .header__menu nav ul li:not(:last-child) {
    margin-bottom: 10px;
  }

  .collection__preview-info {
    max-width: 430px;
  }

  .collerction__preview .collection__preview-flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .blog__wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .blog__wrapper .blog__item {
    max-width: 25%;
  }

  .partnership__preview {
    padding: 65px 0;
  }

  .partnership__text h3 {
    font-size: 23px;
  }

  .partnership__text p {
    font-size: 15px;
  }

  .partnership__btn a {
    font-size: 12px;
  }

  .partnership__btn svg {
    width: 20px;
    height: 20px;
  }

  .header__menu nav ul li a {
    font-size: 45px;
  }

  h1.title {
    font-size: 60px;
  }

  h2.title {
    font-size: 60px;
  }

  .text-center p {
    font-size: 18px;
  }

  .img__container {
    height: 490px;
  }

  .footer__right h3 {
    font-size: 15px;
  }

  .footer__right ul li a {
    font-size: 12px;
  }

  .footer__right p {
    font-size: 12px;
  }

  .footer__contact-number {
    font-size: 15px;
  }

  .footer__left {
    max-width: 280px;
  }

  .collections__item .collections__details a {
    font-size: 12px;
  }

  .collections__item .collections__details svg {
    width: 20px;
  }

  .page__title-wrapper {
    max-width: 400px;
    padding: 32px 22px 32px 22px;
  }

  .page__title-wrapper h1 {
    font-size: 30px;
  }

  .page__title-wrapper span {
    font-size: 25px;
  }

  .model__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 500px;
    flex: 0 0 500px;
  }

  .model__right {
    padding-top: 80px;
  }

  .model__nav h3 {
    font-size: 18px;
  }

  .model__nav ul li a {
    font-size: 14px;
  }

  .model__nav ul {
    margin-top: 0;
  }

  .model__nav ul li {
    margin-right: 12px;
  }

  .model__descriptions {
    font-size: 14px;
    margin-top: 24px;
  }

  .model__descriptions ul li {
    font-size: 14px;
  }

  .model__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
  }

  .post__block:first-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
  }

  .post__block:last-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  .post__media {
    max-width: 400px;
  }

  .post__info span {
    font-size: 10px;
  }

  .post__info h4 {
    font-size: 15px;
  }

  .post__info p {
    font-size: 10px;
  }

  .post__info {
    margin-bottom: 25px;
  }

  .post__content p {
    font-size: 18px;
  }

  h2 {
    font-size: 25px;
  }

  .relate__block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 998px;
  }

  .footer__right {
    margin-left: 130px;
  }

  .collection__preview-img {
    max-width: 40%;
  }

  .collection__preview-img {
    margin-right: 0;
  }

  .collerction__preview:nth-child(2n-1) .collection__preview-flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  h2.title {
    font-size: 50px;
  }

  .img__container {
    height: 450px;
  }

  .footer__contact {
    margin: 0 63px;
  }

  .serch__store {
    max-width: 300px;
  }

  .serch__store p {
    font-size: 11px;
  }

  .serch__store form button {
    width: 20px;
    height: 20px;
  }

  .serch__store form input::-webkit-input-placeholder {
    font-size: 15px;
  }

  .serch__store form input::-moz-placeholder {
    font-size: 15px;
  }

  .serch__store form input:-ms-input-placeholder {
    font-size: 15px;
  }

  .serch__store form input::-ms-input-placeholder {
    font-size: 15px;
  }

  .serch__store form input::placeholder {
    font-size: 15px;
  }

  .partnership__wrapper form button {
    margin-bottom: 66px;
  }
}

@media (max-width: 768px) {
  .header__right .header__lang{cursor: pointer;margin-right: 25px;}
  .container {
    max-width: 90%;
  }

  .bg-video {
    position: relative;
  }

  .header__logo {
    max-width: 150px;
  }

  .footer__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer {
    padding-top: 100px;
  }

  .footer .pp-tableCell {
    overflow: auto;
  }

  .footer__subscribe form input {
    width: 100%;
  }

  .footer__left {
    width: 80%;
    max-width: 100%;
  }

  .footer__right {
    margin-left: 0;
    margin-top: 50px;
  }

  .collection__preview-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .collection__preview-img {
    max-width: 100%;
  }

  .collerction__preview .collection__preview-flex {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .header__right .header__lang .active__lang ul {
    top: 161%;
  }

  .active__lang p {
    font-size: 15px;
  }

  .collection__preview-info span {
    font-size: 20px;
  }

  .collection__preview-info h2 {
    font-size: 44px;
    line-height: 60px;
    margin: 24px 0 10px 0;
    max-width: 320px;
  }

  .collection__preview-info {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 124px;
    max-width: 100%;
  }

  .collection__preview-btn {
    margin-top: 20px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .collection__preview-btn a {
    font-size: 24px;
  }

  .bg-video-position {
    height: 100vh;
    margin-bottom: 100px;
  }

  .height-100vh {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .blog__slider {
    overflow: hidden;
  }

  .blog__item {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
  }

  .about__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .img__container:not(:nth-child(3n)) {
    margin-right: 0;
  }

  h1.title {
    font-size: 40px;
  }

  h2.title {
    font-size: 35px;
  }

  .img__container {
    height: auto;
    margin: 30px 0;
  }

  .text-center p {
    font-size: 15px;
  }

  .video__slider {
    padding-top: 0;
  }

  .post__content p {
    font-size: 15px;
    line-height: 25px;
  }

  .collection__flex::-webkit-scrollbar {
    display: none;
  }

  .page__title-wrapper {
    max-width: 400px;
    padding: 0 22px 0 22px;
  }

  .page__title-wrapper span {
    font-size: 15px;
  }

  .page__title-wrapper h1 {
    font-size: 20px;
  }

  .relate__flex::-webkit-scrollbar {
    display: none;
  }

  .relate__block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
  }

  .post__flex {
    padding-top: 0;
  }

  .slide-section.footer {
    display: none;
  }

  .collection__flex {
    overflow: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .collections__item {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
  }

  .page__title-wrapper h1 {
    line-height: 46px;
  }

  .model__list a {
    max-width: 45%;
  }

  .model__flex {
    padding-top: 100px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .model__right {
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .model__big {
    padding-top: 24px;
  }

  .model__nav ul li a.active {
    font-weight: 700;
  }

  .header__menu nav ul li a {
    font-size: 35px;
  }

  .header__menu nav ul li:not(:last-child) {
    margin-bottom: 0;
  }

  .collection__header {
    padding: 370px 100px;
  }
}

@media (max-width: 640px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }

  .header .container {
    padding: 0 20px;
  }

  .header__facebook {
    width: 17px;
    height: 17px;
  }

  h2.title {
    text-align: center;
  }

  .header__menu nav ul li a {
    font-size: 28px;
    line-height: 60px;
  }

  .blog__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .post__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .post__media {
    max-width: 100%;
    margin-right: 0;
  }

  .post__block:last-child {
    margin-top: 20px;
  }
  .collections__item .collections__details a{font-size: 10px;}
  .collections__item:hover .collections__details a{font-size: 10px;}
  .video__info{
    padding: 0;
  }
  .video__info p{font-size:12px}
}

@media (max-width: 560px) {
  .container {
    max-width: 100%;
  }

  .header__menu nav ul li a {
    font-size: 20px;
    line-height: 50px;
  }

  .blog__item {
    margin-right: 15px;
  }

  .collection__preview-btn a {
    font-size: 18px;
  }

  .header__social {
    display: none;
  }

  .collections__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 85%;
    flex: 0 0 85%;
  }

  .relate__block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
  }

  .model__right {
    padding-left: 0;
  }

  .model__nav {
    padding-left: 20px;
  }

  .blog__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
  }

  .footer__contact {
    margin: 0 48px;
  }

  .model__list a {
    max-width: 100%;
    margin-right: 0;
  }

  .model__list a:not(:nth-child(3n)) {
    margin-right: 0;
  }

  .page__title-wrapper {
    max-width: 100%;
    padding: 0 22px 0 22px;
    width: 350px;
  }

  .page__title {
    position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .model__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  h1.title {
    font-size: 25px;
  }

  h2.title {
    font-size: 25px;
  }

  .blog__wrapper .blog__item {
    max-width: 70%;
  }
  .partnership{
    padding-top: 0;
  }
  .collerction__preview{
    padding-top: 100px;
  }
}
