@import url("https://fonts.cdnfonts.com/css/pp-neue-montreal");

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

:root {
  --circle-size: 5vh;
  --grid-columns: 12;
  --grid-padding: 0.7rem 1.4rem;
  --grid-gutter: 1rem;
  --font-primary: "PP Neue Montreal", sans-serif;
  --font-size-button: 2.6vh;
  --font-weight-normal: 400;
  --font-weight-bold: 800;
  --letter-spacing-tight: -0.02em;
  --thumb-width: 120px;
  --line-spacing: 10px;
  --line-base-height: 15px;
  --line-max-height: 50px;
  --gutter: 0.75rem;
  --columns: 12;
  --row-spacing: 4rem;
  --spacing-base: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --transition-medium: 0.3s ease;
  --radius: max(1300px, 100vw);
  --circ: calc(var(--radius) * 3.14);
  --segments-x: 37;
  --segments-y: 37;
  --sphere-rotation-y: 0;
  --sphere-rotation-x: 0;
  --offset-x: 0;
  --offset-y: 0;
  --rot-y: calc((360deg / var(--segments-x)) / 2);
  --rot-x: calc((360deg / var(--segments-y)) / 2);
  --rot-y-delta: 0deg;
  --item-width: calc((var(--circ) / var(--segments-x)));
  --item-height: calc((var(--circ) / var(--segments-y)));
  --item-size-x: 1;
  --item-size-y: 1;
  --gradient: radial-gradient(var(--gradient-center) 50%,var(--gradient-edge) 90%);
  --gradient-blur: radial-gradient(var(--gradient-center) 70%,var(--gradient-edge) 90%);
  --bg-scrim: rgba(0, 0, 0, 0.6);
  --item-bg: rgb(225, 225, 225);
  --gradient-center: rgba(235, 235, 235, 0);
  --gradient-edge: rgba(235, 235, 235, 0.5);
  --bg-scrim: rgba(0, 0, 0, 0.4);
  --gradient: radial-gradient(var(--gradient-center) 65%,var(--gradient-edge) 100%);
}

body {
  -moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
  margin: 0;
  background-color: #111;
  color: #eee;
  overflow-x: hidden;
  font-family: var(--font-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-tight);
}

.circle {
  position: fixed;
  height: var(--circle-size);
  width: var(--circle-size);
  border: 1px solid white;
  mix-blend-mode: difference;
  border-radius: 100%;
  top: calc(var(--circle-size) / 2 * -1);
  left: calc(var(--circle-size) / 2 * -1);
  pointer-events: none;
  z-index: 999999;
}

@media screen and (pointer:coarse) {
  .circle {
    display: none;
  }
}

.loader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100dvw;
  height: 100dvh;
  left: 0;
  top: 0;
  background-color: #111;
  overflow: hidden;
  transition: all .6s ease-out;
  z-index: 888888;
}

.logo img {
  width: 22vh;
  height: auto;
  mix-blend-mode: difference;
}

@media screen and (max-width:767px) {
  .logo img {
    width: 20vh;
    height: auto;
  }
}

.progress-loader {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .4);
  padding: .2rem 2rem;
}

.loader.fade-out {
  opacity: 0;
  pointer-events: none;
  z-index: -2;
}

.loading-text, .progress-bar , .progress-bar-inner, .loading-dots:after {
  display: none;
}

.nav-bar li.language {
  display: none;
}

.nav-bar li.language.active {
  display: inline-block;
}

.language {
  display: none;
}

.language.active {
  display: block;
}

.nav-bar {
  width: 110vw;
  min-height: 100vh;
  top: 0;
  left: 0;
  padding: 1.8rem 0 0 0;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 777776;
}

.nab-bar ul {
  list-style: none;
}

.nav-bar li {
  display: inline-block;
  padding-right: 1.3rem;
  font-size: 3vh;
  line-height: 1.6;
  cursor: pointer;
}

.nav-bar li:first-child{
  margin-left: 3.2rem;
}

.nav-bar li a, .nav-bar li div, .blocks article p a {
  text-decoration: none;
  color: white;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn {
  position: fixed;
  top: 3rem;
  left: 1.4rem;
  height: 27px;
  width: 2rem;
  cursor: pointer;
  z-index: 777777;
  transition: all .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn span {
  background: white;
  border: none;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn .middle {
  top: 11px;
}

.btn .bottom {
  top: 22px;
}

.btn.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: white;
}

.btn.active .middle {
  opacity: 0;
  background: white;
}

.btn.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: white;
}

.nav-bar.sliding {
  display: inline;
  left: -400vw;
  transition: all .7s ease-out;
}

.nav-bar.sliding.open {
  left: -1.6rem;
}

.translate {
  position: fixed;
  display: flex;
  top: 2.1rem;
  right: 2rem;
  font-size: 2.8vh;
  font-weight: bold;
  line-height: 1;
  color: white;
  cursor: pointer;
  z-index: 500;
}

.hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://i.postimg.cc/NMBwX2YS/1121-1-3.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
}

canvas {
  position: absolute;
  left: 0;
  top: 0;
	display: block;
	width: 100vw;
  height: 100vh;
  object-fit: cover;
  overflow: hidden;
  z-index: 0;
}

.hero-text {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom:0;
  left: 50%;
  transform: translate(-50%);
  width: 100vw;
  font-size: 17vw;
  line-height: .72;
  color: white;
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 2;
}

.main-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  grid-gap: var(--grid-gutter);
  padding: var(--grid-padding);
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0;
  padding-left: 1.4rem;
  flex: 1;
}

.header {
  position: absolute;
  top: 1rem;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  grid-gap: var(--grid-gutter);
  width: 100%;
  padding: var(--grid-padding);
  font-family: var(--font-mono);
  font-size: var(--font-size-button);
  letter-spacing: var(--letter-spacing-tight);
  align-items: start;
  mix-blend-mode: difference;
  z-index: 11;
}

.header-word-left {
  grid-column: 1 / span 3;
  text-align: left;
  font-stretch: 100%;
}

.header-word-left a {
  color: inherit;
  text-decoration: none;
  transition-duration: .3s
}

.header-word-left:hover >* {
  font-stretch: 200%;
  transition-duration: .3s
}

.header-word-center {
  grid-column: 6 / span 3;
  text-align: center;
  font-stretch: 100%;
}

.header-word-center a {
  color: inherit;
  text-decoration: none;
  transition-duration: .3s
}

.header-word-center:hover >* {
  font-stretch: 200%;
  transition-duration: .3s
}

.header-word-right {
  grid-column: 10 / span 3;
  text-align: right;
  font-stretch: 100%;
}

.header-word-right a {
  color: inherit;
  text-decoration: none;
  transition-duration: .3s
}

.header-word-right:hover >* {
  font-stretch: 200%;
  transition-duration: .3s
}

.main-title {
  grid-column: 1 / span 6;
  align-self: flex-end;
  font-size: 3.8vh;
  line-height: 1.2;
  padding-top: 10rem;
  mix-blend-mode: difference;
}

@media (max-width: 1024px) {
  .main-title {
    grid-column: 1 / span 6;
  }

  .header-word-center {
    grid-column: 5 / span 3;
  }

  .header-word-right {
    grid-column: 8 / span 5;
  }
}

@media (max-width: 768px) {
  .grid-container,
  .header {
    grid-template-columns: 1fr;
    line-height: 0.1;
  }

  .header {
    margin-top: 1rem;
  }

  .main-title {
    grid-column: 1;
    margin: auto 2rem 2rem 1rem;
  }
}

.b {
  padding: 20vh 0 10vh 0;
}

.h0 {
  font-size: 3vh;
  line-height: 1;
  text-transform: uppercase;
  padding: 0 0 6vh 1.4rem ;
  mix-blend-mode: difference;
}

.h0 a {
  text-decoration: none;
  opacity: .6;
  color: #eee;
  transition: all 0.2s ease;
}

.h0 a:hover {
  opacity: 1;
  letter-spacing: 0.02em;
}

.p-body {
  max-width: 73%;
  margin: auto auto 4vh 20% ;
  font-size: 2.4vh;
  letter-spacing: normal;
  text-align: left;
  text-indent: 22vw;
  mix-blend-mode: difference;
}

@media (min-width: 50em) {
  .p-body {
    font-size: 2.8vh;
  }
}

.carousel {
  width: 100%;
  cursor: grab;
  margin-top: -3vh;
  overflow-x: hidden;
}

.carousel.dragging {
  cursor: grabbing;
}

.carousel--wrap {
  white-space: nowrap;
}

.carousel--item {
  display: inline-block;
  width: 40rem;
  user-select: none;
}

.carousel--item figure {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 100%;
  margin-right: -3rem;
  overflow: hidden;
}

.carousel--item figure img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
  transform-origin: center;
}

.carousel--progress {
  display: none;
}

.carousel--progress-bar {
  display: none;
}

.slides {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-rows: 100%;
  grid-template-columns: 100%;
  place-items: center;
}

.slide {
  width: 100%;
  height: 100%;
  grid-area: 1 / 1 / -1 / -1;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  will-change: transform, opacity;
}

.slide--current {
  pointer-events: auto;
  opacity: 1;
}

.slide__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform, opacity, filter;
}

@media screen and (max-width:767px) {
  .slide__img {
    background-size: contain;
  }
  .slides {
    width: 100%;
    height: 70vw;
  }
}

.bottom-ui-container {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  z-index: 100;
}

.slide-counter {
  display: none;
}

.counter-display {
  display: flex;
  align-items: center;
  gap: 10px;
}

.counter-nav {
  width: 20px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.counter-nav:hover {
  opacity: 1;
}

.counter-divider {
  opacity: 1;
  font-size: 0.8rem;
}

.slide-title.exit-up {
  transform: translateY(-30px);
  opacity: 0;
}

.slide-title.enter-up {
  transform: translateY(30px);
  opacity: 0;
}

.lines-container {
  display: flex;
  height: 100%;
  width: 100%;
  position: relative;
  align-items: flex-end;
  justify-content: space-between;
}

.drag-line {
  display: none;
}

.thumbs-container {
  width: 100%;
  overflow: hidden;
}

.slide-thumbs {
  display: flex;
  position: relative;
  background: transparent;
  padding: 0;
  z-index: 1;
  gap: 0;
}

.frost-bg {
  display: none;
}

.slide-thumb {
  width: var(--thumb-width);
  height: 80px;
  background-size: cover;
  background-position: left center;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  border: none;
  outline: none;
  box-shadow: none;
  margin: 0;
  position: relative;
  z-index: 2;
}

.slide-thumb:hover {
  opacity: 1;
}

.slide-thumb.active {
  opacity: 1;
  transform: none;
  border: none;
  outline: none;
  box-shadow: none;
}

.btn-container {
  display: flex;
  position: relative;
  justify-content: space-between;
  mix-blend-mode: difference;
  z-index: 5;
}

.btn-details {
  padding: var(--grid-padding);
  font-size: var(--font-size-button);
  letter-spacing: var(--letter-spacing-tight);
  text-transform: uppercase;
}

.btn-details a {
  text-decoration: none;
  opacity: .6;
  color: #eee;
  transition: all 0.2s ease;
}

.btn-details a:hover {
  opacity: 1;
  letter-spacing: 0.02em;
}

.video-container {
  display: flex;
  padding: 0 1.4rem;
  position: relative;
  justify-content: space-between;
  gap: 1.4rem;
}

@media (max-width: 54em) {
  .video-container {
    display: block;
  }

  .video-container >* {
    margin-bottom: 2rem;
  }
}

.bottom-section {
  padding-bottom: 23vh;
}

.string {
  font-size: 4vh;
  line-height: 1.1;
  padding: 1.4rem;
  margin-top: -1rem;
  mix-blend-mode: difference;
  width: 44%;
}

.string a {
  text-decoration: none;
  color: rgba(255, 255, 255, .6);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.string a:hover {
  color: inherit;
  letter-spacing: 0.02em;
}

@media (max-width: 54em) {
  .string {
    width: 100%;
  }
}

footer {
  margin-top: 3vh;
}

.bottom-name {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100vw;
  font-size: 17.8vw;
  line-height: .72;
  letter-spacing: 0.013rem;
  opacity: .6;
  color: white;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 2;
}

.gg {
  display: grid;
  padding: 1.4rem;
  grid-template-columns: 30vw auto auto;
  grid-gap: 2rem;
  height: 100%;
  justify-content: left;
}

.cc {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.tt a, .tt {
  text-decoration: none;
  color: white;
}

/*Gallery*/

.container {
  width: 110vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.container .carousel {
  margin: -2rem auto auto -2.5rem;
}

.container .carousel--item {
  display: inline-block;
  width: 50rem;
  user-select: none;
}

.container .carousel--item figure {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 100%;
  height: 105dvh;
  overflow: hidden;
}

.container .carousel--item figure img {
  position: absolute;
  height: 100%;
  width: 105%;
  object-fit: cover;
  vertical-align: middle;
  transform-origin: center;
}

.item {
  position: absolute;
  overflow: hidden;
}

.item-image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.item-number, .item-caption, .item-name, .caption-clone, .expanded-item, .overlay, .ptitle {
  display: none;
}

.ava-container {
	position: fixed;
	bottom: 4rem;
	left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 1.4rem;
}

.cart--wrapper {
  width: 100%;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table tbody.product-row td.col.item .product-item-wrapper {
  display: flex;
}

table tbody.product-row td.col.item a.product-link .product-image-wrapper {
  height: 9vh;
  width: 9vh;
}

table tbody.product-row td.col.item a.product-link .product-image-wrapper .product-image {
  background-image: url(https://i.postimg.cc/J7jz0NFc/h35.jpg);
  background-size: cover;
  height: 100%;
  width: 100%;
  border-radius: 100%;
}

table tbody.product-row td.col.item .product-details {
  margin-left: .8rem;
}

table tbody.product-row td.col.item .product-details span {
  display: block;
}

table tbody.product-row td.col.item .product-details .product-name {
  font-size: 2.6vh;
  margin-bottom: .5vh;
}

table tbody.product-row td.col.item .product-details .product-descriptor {
  font-size: 2vh;
  letter-spacing: normal;
}

/*Book*/

.desc-mess {
  position: absolute;
  top: 2rem;
  left: 1.4rem;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  transform-origin: center;
}

.slideshow .slide.active {
  visibility: visible;
}

.slideshow .slide__img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform-origin: center;
}

@media screen and (max-width:767px) {
  .slideshow {
    width: 100vw;
    height: 100vw;
  }
  .slideshow .slide {
    width: 100vw;
    height: 100vw;
  }
  .slideshow .slide__img {
    background-size: cover;
  }
}

.slide-counter, .cursor {
  display: none;
}

.arr-icons {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.first-ava {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10vh 0 0 1.4rem;
}

.first-ava table tbody.product-row td.col.item a.product-link .product-image-wrapper .product-image {
  background-image: url(https://i.postimg.cc/J7jz0NFc/h35.jpg);
  background-size: cover;
  height: 100%;
  width: 100%;
  border-radius: 100%;
}

.blocks {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
}

.blocks article {
  float: left;
  padding: 0 1.4rem;
  width: 400px;
  flex-grow: 1.25;
}

.blocks article p {
  text-align: left;
  text-indent: 11vw;
  font-size: 2.4vh;
}

.third-ava {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16vh 0 0 1.4rem;
}

.third-ava table tbody.product-row td.col.item a.product-link .product-image-wrapper .product-image {
  background-image: url(https://i.postimg.cc/8k0GyFYp/alex800.jpg);
  background-size: cover;
  height: 100%;
  width: 100%;
  border-radius: 100%;
}

.compare-wrap {
  position: relative;
  margin: 5vh auto 0 auto;
  width: 96.8vw;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.m-tooltip {
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container-1,  .container-2, .container-3 { 
	height: 70vh;
	width: 100%;
	overflow: hidden;
}

.container-1,  .container-2 {
  margin-right: 2vw;
}

.container-1 figure { 
	background-image: url(https://i.postimg.cc/V6FXY1xW/comparison-2-2.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
	height: 100%;
	margin: 0; 
	position: relative;
}

.container-2 figure { 
	background-image: url(https://i.postimg.cc/GtX9hhgz/comp-2-2.png);
	background-size: auto 100%;
  background-repeat: no-repeat;
	height: 100%;
	margin: 0;
	position: relative;
}

.container-3 figure {
	background-image: url(https://i.postimg.cc/x8RNPv6W/comp-3-2.png);
	background-size: auto 100%;
  background-repeat: no-repeat;
	height: 100%;
	margin: 0; 
	position: relative;
}

#compare-1 {
  position: absolute;	
  background-image: url(https://i.postimg.cc/QtMGVwrc/comparison-2-1.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
	bottom: 0;
	border-right: 5px solid rgba(255,255,255,0.7);
	box-shadow: 10px 0 15px -13px #000;
	height: 100%;
	overflow: visible;
	width: 50%;
}

#compare-2 {
  position: absolute;
	background-image: url(https://i.postimg.cc/zf5J5y8f/comp-2-1.png);
	background-size: auto 100%;
  background-repeat: no-repeat;
	bottom: 0;
	border-right: 5px solid rgba(255,255,255,0.7);
	box-shadow: 10px 0 15px -13px #000;
	height: 100%;
	overflow: visible;
	width: 50%; 
}

#compare-3 {
  position: absolute;
	background-image: url(https://i.postimg.cc/2jFWmYC2/comp-3-1.png);
	background-size: auto 100%;
  background-repeat: no-repeat;
	bottom: 0;
	border-right: 5px solid rgba(255,255,255,0.7);
	box-shadow: 10px 0 15px -13px #000;
	height: 100%;
	overflow: visible;
	width: 50%; 
}

input#slider-1, input#slider-2, input#slider-3 {
	-moz-appearance: none;
	-webkit-appearance: none;
  appearance: none;
	border: none; 
	background: transparent;
	cursor: col-resize;
	height: 100vw;
	left: 0;
	margin: 0;
	outline: none; 
	padding: 0;
	position: relative;
	top: -100vw;
	width: 100%;
}

input#slider-1::-moz-range-track, input#slider-2::-moz-range-track, input#slider-3::-moz-range-track { 
	background: transparent; 
}

input#slider-1::-ms-track, input#slider-2::-ms-track, input#slider-3::-ms-track {
	border: none; 
	background-color: transparent;
	height: 100vw; 
	left: 0; 
	outline: none; 
	position: relative;
	top: -100vw; 
	width: 100%;
	margin: 0;
	padding: 0;
	cursor: col-resize;
	color:transparent;
}

input#slider-1::-ms-fill-lower, input#slider-2::-ms-fill-lower, input#slider-3::-ms-fill-lower {
	background-color:transparent;
}

input#slider-1::-webkit-slider-thumb, input#slider-2::-webkit-slider-thumb, input#slider-3::-webkit-slider-thumb {
	-webkit-appearance:none;
	height: 100vw;
	width: 0.5%;
	opacity: 0;
}

input#slider-1::-moz-range-thumb, input#slider-2::-moz-range-thumb, input#slider-3::-moz-range-thumb {
	-moz-appearance: none;
	height: 100vw;
	width: 0.5%;
	opacity: 0;
} 

input#slider-1::-ms-thumb, input#slider-2::-ms-thumb, input#slider-3::-ms-thumb {
	height: 100vw;
	width: 0.5%; 
	opacity:0;
}

input#slider-1::-ms-tooltip, input#slider-2::-ms-tooltip, input#slider-3::-ms-tooltip {
	display:none;
}

@media screen and (max-width:1200px) {
  .compare-wrap {
    flex-direction: column;
  }
  .container-1,  .container-2 { 
    margin-bottom: 6vh;
  }
  .container-1,  .container-2, .container-3 { 
    height: 70vh;
    aspect-ratio: 1/1.2;
    width: auto;
    justify-content: center;
  }
}

@media screen and (max-width:600px) {
  .compare-wrap {
    flex-direction: column;
  }
  .container-1,  .container-2 { 
    margin-bottom: 6vh;
  }
  .container-1,  .container-2, .container-3 { 
    width: 100vw;
    height: auto;
    aspect-ratio: 1/1.2;
    justify-content: center;
  }
}

.cont {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
}

.sl {
  height: 100vh;
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  cursor: pointer;
  transition: all .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: .4;
}

.sl.active {
  flex: 10;
  cursor: auto;
  opacity: 1;
}

@media screen and (max-width:767px) {
  .sl {
    aspect-ratio: 16/9;
    height: auto;
  }
}

/*Connect*/

.collab {
  display: flex;
  flex-direction: column;
}

.forth-ava {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 14vh 1.4rem 0 1.4rem;
}

.forth-ava table tbody.product-row td.col.item a.product-link .product-image-wrapper .product-image {
  background-image: url(https://i.postimg.cc/pTW4NVXf/minas.jpg);
  background-size: cover;
  height: 100%;
  width: 100%;
  border-radius: 100%;
}

/*About*/

.griding-grid-two {
  display: flex;
  overflow: hidden;
  position: relative;
  margin: 6vh auto 0 auto;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  font-size: 2.8vh;
}

.griding-wrapper-2,  .griding-wrapper-3 {
  text-align: left;
}

.griding-wrapper-2 img {
  width: 30vw;
  height: auto;
}

.griding-wrapper-2 p, .griding-wrapper-3 p {
  display: block;
  margin: 25px 0;
}

.griding-wrapper-3 span {
  font-size: 2.2vh;
}

.griding-wrapper-3 a {
  text-decoration: none;
  color: rgba(255, 255, 255, .6);
}

.griding-wrapper-3 a:hover {
  text-decoration: none;
  color: inherit;
}

.griding-wrapper-4 {
  text-align: left;
  margin-top: -4vh;
}
.griding-wrapper-4 p {
  display: block;
  margin: 25px 0;
}

.griding-grid-holder-3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1.4rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .griding-wrapper-2 img {
    width: 100%;
    height: auto;
}
  .griding-grid-two {
    display: block;
  }
  .hideonmobile {
    display: none;
  }
}

.art-pic {
  width: 100%;
  height: auto;
  margin: 2vh 1.4rem 0 0;
  background-position: cover;
}
