.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.glide * {
  box-sizing: inherit;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
       -webkit-user-select: none;
               user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
   -ms-user-select: none;
}

.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 4px;
  box-shadow: 0 .25em .5em 0 rgba(0, 0, 0, .1);
  text-shadow: 0 .25em .5em rgba(0, 0, 0, .1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}

.glide__arrow:focus {
  outline: none;
}

.glide__arrow:hover {
  border-color: white;
}

.glide__arrow--left {
  left: 2em;
}

.glide__arrow--right {
  right: 2em;
}

.glide__arrow--disabled {
  opacity: .33;
}

.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}

.glide__bullet {
  background-color: rgba(255, 255, 255, .5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 .25em .5em 0 rgba(0, 0, 0, .1);
  margin: 0 .25em;
}

.glide__bullet:focus {
  outline: none;
}

.glide__bullet--active {
  background-color: white;
}

section.features {
  height: 90px;
}

section.features .glide-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: none;
  flex-direction: none;
  gap: 15px;
  height: 90px;
}

section.features .glide-item * {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

section.features .glide-item img {
  height: 30px;
  width: auto;
}

@media only screen and (min-width: 1200px) {
  section.features .glide-item * {
    font-size: 17px;
  }

  section.features .glide-item img {
    height: 40px;
  }
}

section#popular-categories {
  padding: 0 20px;
  margin: 45px 0;
  margin-top: 20px;
}

section#popular-categories > .title {
  font-weight: 600;
  padding-left: 20px;
  margin-bottom: 20px;
}

section#popular-categories .categories {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
}

section#popular-categories .categories .category {
  display: block;
  position: relative;
  padding-bottom: 65%;
  width: 100%;
}

section#popular-categories .categories .category .bg-img,
section#popular-categories .categories .category .bg-img img,
section#popular-categories .categories .category .bg-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
}

section#popular-categories .categories .category .bg-img .overlay,
section#popular-categories .categories .category .bg-img img .overlay,
section#popular-categories .categories .category .bg-img .overlay .overlay {
  background-color: rgba(0, 0, 0, .2);
}

section#popular-categories .categories .category .info {
  display: flex;
  align-items: 0;
  justify-content: space-between;
  flex-wrap: 0;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 60%;
  padding: 20px;
  padding-right: 0;
  z-index: 1;
}

section#popular-categories .categories .category .info .title {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  text-shadow: 2px 2px #1f1f1f;
}

section#popular-categories .categories .category .product-img img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 77.5%;
  width: auto;
  z-index: 0;
}

@media only screen and (min-width: 576px) {
  section#popular-categories .categories .category {
    padding-bottom: 45%;
  }
}

@media only screen and (min-width: 768px) {
  section#popular-categories .categories {
    grid-template-columns: 1fr 1fr 1fr;
  }

  section#popular-categories .categories .category {
    padding-bottom: 100%;
  }

  section#popular-categories .categories .category .product-img img {
    display: none;
  }
}

@media only screen and (min-width: 1200px) {
  section#popular-categories {
    padding: 0 50px;
  }

  section#popular-categories > .title {
    font-size: 20px;
  }

  section#popular-categories .categories {
    display: flex;
    gap: 20px;
  }

  section#popular-categories .categories .category {
    padding-bottom: 0;
    height: 37.5vh;
    min-height: 250px;
    width: 1/3;
    transition: width .3s ease-in-out;
  }

  section#popular-categories .categories .category:hover {
    width: 130%;
  }

  section#popular-categories .categories .category:hover .bg-img .overlay,
  section#popular-categories .categories .category:hover .bg-img img .overlay,
  section#popular-categories .categories .category:hover .bg-img .overlay .overlay {
    background-color: rgba(255, 255, 255, .5);
  }

  section#popular-categories .categories .category:hover .info .title {
    color: #ff0a0a;
    text-shadow: none;
  }

  section#popular-categories .categories .category:hover .product-img img {
    height: 80%;
  }

  section#popular-categories .categories .category .bg-img .overlay,
  section#popular-categories .categories .category .bg-img img .overlay,
  section#popular-categories .categories .category .bg-img .overlay .overlay {
    transition: background-color .3s ease-in-out;
  }

  section#popular-categories .categories .category .info {
    width: 100%;
    padding: 30px;
  }

  section#popular-categories .categories .category .info .title {
    font-size: 32px;
    transition: all .3s ease-in-out;
  }

  section#popular-categories .categories .category .product-img img {
    display: block;
    height: 65%;
    transition: height .3s ease-in-out;
  }
}

section#product-slider,
section#related-products {
  padding: 0 20px;
  margin: 50px 0;
}

section#product-slider .top,
section#related-products .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: none;
  flex-direction: none;
  padding: 0 15px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: .5px solid #c7c7c7;
}

section#product-slider .top .title,
section#related-products .top .title {
  font-weight: 600;
}

section#product-slider .glide .glide-item,
section#related-products .glide .glide-item {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

section#product-slider .glide .glide-item .img-container,
section#related-products .glide .glide-item .img-container {
  width: 100%;
  margin-bottom: 10px;
}

section#product-slider .glide .glide-item .img-container img,
section#related-products .glide .glide-item .img-container img {
  width: 100%;
  height: auto;
}

section#product-slider .glide .glide-item .info,
section#related-products .glide .glide-item .info {
  width: 100%;
}

section#product-slider .glide .glide-item .info .content,
section#related-products .glide .glide-item .info .content {
  margin-bottom: 60px;
}

section#product-slider .glide .glide-item .info .content *,
section#related-products .glide .glide-item .info .content * {
  text-align: center;
  width: 100%;
  white-space: pre-wrap;
}

section#product-slider .glide .glide-item .info .content *.title,
section#related-products .glide .glide-item .info .content *.title {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #223f8b;
}

section#product-slider .glide .glide-item .info .content *.price,
section#related-products .glide .glide-item .info .content *.price {
  margin-top: 5px;
}

section#product-slider .glide .glide-item .info .content *.price span:not(:last-of-type),
section#related-products .glide .glide-item .info .content *.price span:not(:last-of-type) {
  text-transform: uppercase;
  font-size: 14px;
}

section#product-slider .glide .glide-item .info .content *.price span:last-of-type,
section#related-products .glide .glide-item .info .content *.price span:last-of-type {
  font-size: 12px;
}

section#product-slider .glide .glide-item .info button,
section#related-products .glide .glide-item .info button {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: 50%;
  transform: translateX(-50%);
}

section#product-slider .glide .glide__arrows,
section#related-products .glide .glide__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: none;
  flex-direction: none;
  gap: 50px;
  position: relative;
  margin-top: 30px;
}

section#product-slider .glide .glide__arrows .glide__arrow,
section#related-products .glide .glide__arrows .glide__arrow {
  position: static;
  transform: none;
}

@media only screen and (min-width: 1200px) {
  section#product-slider,
  section#related-products {
    padding: 0 100px;
    margin: 90px 0;
  }

  section#product-slider .top,
  section#related-products .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: none;
    flex-direction: none;
    padding: 0;
    padding-bottom: 10px;
    margin-bottom: 25px;
  }

  section#product-slider .top .title,
  section#related-products .top .title {
    font-size: 20px;
  }

  section#product-slider .glide .glide-item,
  section#related-products .glide .glide-item {
    padding: 20px;
    border: 1px solid #fff;
  }

  section#product-slider .glide .glide-item:hover,
  section#related-products .glide .glide-item:hover {
    border-color: #a8a8a8;
  }

  section#product-slider .glide .glide-item:hover .img-container img,
  section#related-products .glide .glide-item:hover .img-container img {
    transform: scale(1.05);
  }

  section#product-slider .glide .glide-item .img-container,
  section#related-products .glide .glide-item .img-container {
    margin-bottom: 30px;
    overflow: hidden;
  }

  section#product-slider .glide .glide-item .img-container img,
  section#related-products .glide .glide-item .img-container img {
    width: 100%;
    margin: 0 auto;
    transition: transform .2s ease-in-out;
  }

  section#product-slider .glide .glide-item .info .content,
  section#related-products .glide .glide-item .info .content {
    margin-bottom: 50px;
  }

  section#product-slider .glide .glide-item .info .content *.title,
  section#related-products .glide .glide-item .info .content *.title {
    font-size: 16px;
  }

  section#product-slider .glide .glide-item .info .content *.price,
  section#related-products .glide .glide-item .info .content *.price {
    margin-top: 10px;
  }

  section#product-slider .glide .glide-item .info button,
  section#related-products .glide .glide-item .info button {
    bottom: 20px;
  }

  section#product-slider .glide .glide-item .info button #slide,
  section#related-products .glide .glide-item .info button #slide {
    background-color: #1f1f1f;
  }

  section#product-slider .glide .glide__arrows,
  section#related-products .glide .glide__arrows {
    display: none;
  }
}

section#about {
  padding-top: 100px;
  margin: 65px 0;
}

section#about .wrapper {
  display: flex;
  align-items: 0;
  justify-content: 0;
  flex-wrap: 0;
  flex-direction: column;
  gap: 50px;
  background: #223f8b;
  padding: 0 20px;
}

section#about .wrapper > div {
  position: relative;
  top: -100px;
}

section#about .wrapper .top {
  display: flex;
  align-items: 0;
  justify-content: 0;
  flex-wrap: 0;
  flex-direction: column;
  gap: 20px;
}

section#about .wrapper .top > div {
  display: flex;
  align-items: 0;
  justify-content: 0;
  flex-wrap: 0;
  flex-direction: column;
  gap: 30px;
  background: #f5f5f5;
  padding: 35px 20px;
  max-width: 500px;
  margin: 0 auto;
}

section#about .wrapper .top > div .info .title {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #223f8b;
  margin-bottom: 10px;
}

section#about .wrapper .top > div .info .content * {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #000;
}

section#about .wrapper .top > div .info .btn {
  margin-top: 25px;
}

section#about .wrapper .top > div .img-container img {
  width: 100%;
  height: auto;
}

section#about .wrapper .bottom {
  display: flex;
  align-items: 0;
  justify-content: 0;
  flex-wrap: 0;
  flex-direction: column;
  gap: 40px;
}

section#about .wrapper .bottom * {
  color: #fff !important;
}

section#about .wrapper .bottom > div {
  max-width: 60ch;
}

section#about .wrapper .bottom .who .title {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000;
  margin-bottom: 10px;
}

section#about .wrapper .bottom .who .content p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #000;
  margin-bottom: 15px;
}

section#about .wrapper .bottom .who .content p.bold {
  font-weight: 600;
}

section#about .wrapper .bottom .who .btn {
  margin-top: 30px;
}

section#about .wrapper .bottom .certified .title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000;
  margin-bottom: 20px;
}

section#about .wrapper .bottom .certified .blocks {
  display: flex;
  align-items: 0;
  justify-content: 0;
  flex-wrap: 0;
  flex-direction: column;
  gap: 20px;
}

section#about .wrapper .bottom .certified .blocks .block {
  display: flex;
  align-items: 0;
  justify-content: 0;
  flex-wrap: 0;
  flex-direction: column;
  gap: 15px;
}

section#about .wrapper .bottom .certified .blocks .block .img-container {
  width: 95px;
  min-width: 95px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
}

section#about .wrapper .bottom .certified .blocks .block .img-container img {
  width: 75px;
  height: auto;
}

section#about .wrapper .bottom .certified .blocks .block .content * {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #000;
}

@media only screen and (min-width: 576px) {
  section#about .wrapper .bottom .certified .blocks .block {
    flex-direction: row;
  }
}

@media only screen and (min-width: 768px) {
  section#about {
    padding-top: 70px;
  }

  section#about .wrapper {
    gap: 65px;
  }

  section#about .wrapper > div {
    top: -70px;
  }

  section#about .wrapper .top {
    flex-direction: row;
    gap: 2.5vw;
  }

  section#about .wrapper .top > div {
    max-width: none;
    width: 50%;
  }

  section#about .wrapper .top > div.visit-store .img-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  section#about .wrapper .top > div.visit-store .img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }

  section#about .wrapper .bottom {
    flex-direction: row;
    gap: 5vw;
  }

  section#about .wrapper .bottom > div {
    max-width: none;
    width: 50%;
  }

  section#about .wrapper .bottom .certified .blocks .block {
    flex-direction: column;
  }
}

@media only screen and (min-width: 1200px) {
  section#about .wrapper {
    padding: 0 50px;
  }

  section#about .wrapper .top {
    gap: 5vw;
  }

  section#about .wrapper .top > div {
    padding: 35px 50px;
    padding-top: 50px;
  }

  section#about .wrapper .top > div .info .title {
    font-size: 28px;
  }

  section#about .wrapper .bottom {
    padding: 0 50px;
  }

  section#about .wrapper .bottom .who .title {
    font-size: 30px;
    margin-bottom: 0;
  }

  section#about .wrapper .bottom .who .content {
    padding-top: 15px;
  }

  section#about .wrapper .bottom .who .content * {
    max-width: 90ch;
  }

  section#about .wrapper .bottom .certified .blocks .block {
    flex-direction: row;
    gap: 25px;
  }

  section#about .wrapper .bottom .certified .blocks .block .content {
    padding-top: 15px;
  }

  section#about .wrapper .bottom .certified .blocks .block .content * {
    max-width: 75ch;
  }
}

section#brands {
  padding: 0 20px;
  margin: 60px 0;
}

section#brands .title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #000;
  padding: 0 15px;
  margin-left: 15px;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  transform: translateY(50%);
  z-index: 10;
}

section#brands .glide {
  width: 100%;
  border: 1px solid #7e7e7e;
  padding: 30px 45px;
}

section#brands .glide .glide__slide .img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: none;
  flex-direction: none;
}

section#brands .glide .glide__slide .img-container img {
  width: 100%;
  height: auto;
}

section#brands .glide .glide__arrows .glide__arrow {
  position: absolute;
}

section#brands .glide .glide__arrows .glide__arrow:first-child {
  left: 0;
}

section#brands .glide .glide__arrows .glide__arrow:last-child {
  right: 0;
}

@media only screen and (min-width: 1200px) {
  section#brands {
    padding: 0 100px;
    margin: 75px 0;
  }

  section#brands .title {
    padding: 0 35px;
    margin-left: 35px;
  }

  section#brands .glide {
    padding: 35px 100px;
  }

  section#brands .glide .glide__arrows .glide__arrow:first-child {
    left: 35px;
  }

  section#brands .glide .glide__arrows .glide__arrow:last-child {
    right: 35px;
  }
}

div.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 900;
  padding: 130px 20px;
  background: rgba(0, 0, 0, .5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

div.popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: none;
  flex-direction: none;
}

div.popup .card {
  display: flex;
  align-items: 0;
  justify-content: 0;
  flex-wrap: 0;
  flex-direction: column;
  padding: 15px 10px;
  padding-bottom: 30px;
  background: #ededed;
  border: 1px solid #c2c2c2;
  width: 100%;
  max-width: 550px;
}

div.popup .card svg {
  align-self: flex-end;
  width: 25px;
  height: 25px;
  min-width: 25px;
  min-height: 25px;
  margin-bottom: 35px;
  cursor: pointer;
}

div.popup .card .title {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
}

div.popup .card .discount {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #000;
  background: #223f8b;
  color: #fff;
  padding: 10px;
  margin-bottom: 15px;
  text-align: center;
}

div.popup .card form {
  padding: 0 15px;
}

div.popup .card form label {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #505050;
  display: block;
  margin-bottom: 5px;
}

div.popup .card form input {
  width: 100%;
  margin-bottom: 15px;
}

div.popup .card form .policy {
  margin-bottom: 15px;
}

div.popup .card form .policy * {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 8px;
  color: #000;
}

div.popup .card form .policy a:hover {
  color: #223f8b;
}

div.popup .card form .btn {
  margin: 0 auto;
  margin-top: 20px;
}

div.popup .card form .terms {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #505050;
  text-align: center;
  margin-top: 20px;
}

@media only screen and (min-width: 1200px) {
  div.popup .card {
    padding: 15px 90px;
    padding-bottom: 30px;
    width: 100%;
    max-width: 720px;
  }

  div.popup .card svg {
    margin-bottom: 20px;
    margin-right: -75px;
  }

  div.popup .card .title {
    font-size: 30px;
  }

  div.popup .card .discount {
    font-size: 33px;
    margin-bottom: 25px;
  }

  div.popup .card form {
    padding: 0 30px;
  }

  div.popup .card form .policy {
    margin-bottom: 30px;
  }

  div.popup .card form .policy * {
    font-size: 10px;
  }

  div.popup .card form .btn {
    margin: 0 auto;
    margin-top: 30px;
  }

  div.popup .card form .terms {
    font-size: 12px;
  }
}

body,
main {
  padding: 0 !important;
}

main section#hero {
  padding: 145px 20px;
  padding-bottom: 0;
}

main section#hero > .top {
  display: flex;
  align-items: 0;
  justify-content: 0;
  flex-wrap: 0;
  flex-direction: column;
  gap: 15px;
}

main section#hero > .top .showcase-container .showcase {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}

main section#hero > .top .showcase-container .showcase .showcase-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity .3s linear;
}

main section#hero > .top .showcase-container .showcase .showcase-info:not(.active) {
  opacity: 0;
  display: none;
}

main section#hero > .top .showcase-container .showcase .showcase-info .bg-img,
main section#hero > .top .showcase-container .showcase .showcase-info .bg-img img,
main section#hero > .top .showcase-container .showcase .showcase-info .bg-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
}

main section#hero > .top .showcase-container .showcase .showcase-info .bg-img .overlay,
main section#hero > .top .showcase-container .showcase .showcase-info .bg-img img .overlay,
main section#hero > .top .showcase-container .showcase .showcase-info .bg-img .overlay .overlay {
  background-color: rgba(255, 255, 250, .7);
}

main section#hero > .top .showcase-container .showcase .showcase-info .info {
  display: flex;
  align-items: 0;
  justify-content: space-between;
  flex-wrap: 0;
  flex-direction: column;
  height: 100%;
  padding: 6%;
}

main section#hero > .top .showcase-container .showcase .showcase-info .info .top .offer {
  padding: 5px 15px;
  margin-bottom: 10px;
  background: #ff0a0a;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

main section#hero > .top .showcase-container .showcase .showcase-info .info .top .offer p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

main section#hero > .top .showcase-container .showcase .showcase-info .info .top .title p:nth-child(1) {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000;
}

main section#hero > .top .showcase-container .showcase .showcase-info .info .top .title p:nth-child(2) {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000;
}

main section#hero > .top .showcase-container .showcase .showcase-info .info .bottom .price p {
  display: inline;
}

main section#hero > .top .showcase-container .showcase .showcase-info .info .bottom .price p:nth-child(1) {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #000;
}

main section#hero > .top .showcase-container .showcase .showcase-info .info .bottom .price p:nth-child(2) {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #000;
}

main section#hero > .top .showcase-container .showcase .showcase-info .info .bottom > a {
  margin-top: 10px;
}

main section#hero > .top .showcase-container .showcase .showcase-info .product-img {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 50%;
}

main section#hero > .top .showcase-container .showcase .showcase-info .product-img img {
  width: 100%;
  height: auto;
}

main section#hero > .top .showcase-container .blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1px;
  background: #707070;
}

main section#hero > .top .showcase-container .blocks .showcase-select {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: none;
  flex-direction: none;
  padding: 5px 10px;
  min-height: 40px;
  background: #0d1f4f;
  cursor: pointer;
}

main section#hero > .top .showcase-container .blocks .showcase-select.active {
  background: #223f8b;
}

main section#hero > .top .showcase-container .blocks .showcase-select.active * {
  text-decoration: underline;
}

main section#hero > .top .showcase-container .blocks .showcase-select * {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

main section#hero > .top .info-blocks {
  display: flex;
  align-items: 0;
  justify-content: 0;
  flex-wrap: 0;
  flex-direction: column;
  gap: 15px;
}

main section#hero > .top .info-blocks .team-image img {
  width: 100%;
  height: auto;
}

main section#hero > .top .info-blocks .experts {
  display: flex;
  align-items: 0;
  justify-content: space-between;
  flex-wrap: none;
  flex-direction: none;
  background: #223f8b;
  padding: 20px;
  padding-bottom: 0;
}

main section#hero > .top .info-blocks .experts .info {
  width: 55%;
  padding-bottom: 20px;
}

main section#hero > .top .info-blocks .experts .info * {
  color: #fff !important;
}

main section#hero > .top .info-blocks .experts .info *.title {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #000;
  margin-bottom: 5px;
}

main section#hero > .top .info-blocks .experts .info *.content {
  margin-bottom: 30px;
}

main section#hero > .top .info-blocks .experts .info *.content * {
  font-weight: 300;
}

main section#hero > .top .info-blocks .experts picture {
  width: 42.5%;
  height: auto;
}

main section#hero > .top .info-blocks .experts picture img {
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 576px) {
  main.home section#hero > .top .showcase-container .showcase {
    padding-bottom: 70%;
  }

  main.home section#hero > .top .showcase-container .showcase .showcase-info .product-img {
    width: 45%;
  }

  main.home section#hero > .top .info-blocks .team-image {
    height: 50vw;
    overflow: hidden;
  }

  main.home section#hero > .top .info-blocks .team-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }

  main.home section#hero > .top .info-blocks .experts {
    padding: 40px;
    padding-bottom: 0;
  }

  main.home section#hero > .top .info-blocks .experts .info {
    padding-bottom: 40px;
  }

  main.home section#hero > .top .info-blocks .experts picture {
    width: 35%;
    margin-top: -30px;
  }
}

@media only screen and (min-width: 768px) {
  main.home section#hero > .top .showcase-container .showcase {
    padding-bottom: 60%;
  }

  main.home section#hero > .top .showcase-container .showcase .showcase-info .product-img {
    width: 40%;
  }

  main.home section#hero > .top .info-blocks {
    flex-direction: row;
  }

  main.home section#hero > .top .info-blocks > div {
    width: 50%;
  }

  main.home section#hero > .top .info-blocks .team-image {
    height: auto;
  }

  main.home section#hero > .top .info-blocks .experts {
    padding: 20px;
    padding-bottom: 0;
  }

  main.home section#hero > .top .info-blocks .experts .info {
    padding-bottom: 20px;
  }

  main.home section#hero > .top .info-blocks .experts picture {
    width: 42.5%;
    margin-top: 0;
  }
}

@media only screen and (min-width: 992px) {
  main.home section#hero > .top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-column-gap: 15px;
  }

  main.home section#hero > .top .showcase-container {
    display: flex;
    align-items: 0;
    justify-content: space-between;
    flex-wrap: 0;
    flex-direction: column;
  }

  main.home section#hero > .top .showcase-container .showcase {
    padding-bottom: 0;
    height: 100%;
  }

  main.home section#hero > .top .showcase-container .showcase .showcase-info .product-img {
    width: 45%;
  }

  main.home section#hero > .top .info-blocks {
    flex-direction: column;
  }

  main.home section#hero > .top .info-blocks > div.team-image,
  main.home section#hero > .top .info-blocks > div.experts {
    width: 100%;
    height: 50%;
  }

  main.home section#hero > .top .info-blocks > div.vrnSearch {
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  main.home section#hero {
    display: flex;
    align-items: 0;
    justify-content: space-between;
    flex-wrap: 0;
    flex-direction: column;
    padding: 145px 50px;
    padding-bottom: 0 !important;
    height: 100vh;
    min-height: 1000px;
  }

  main.home section#hero > .top {
    height: 100%;
  }

  main.home section#hero > .top .showcase-container .showcase .showcase-info .info {
    display: flex;
    align-items: 0;
    justify-content: space-between;
    flex-wrap: 0;
    flex-direction: column;
    height: 100%;
    padding: 10%;
  }

  main.home section#hero > .top .showcase-container .showcase .showcase-info .info .top .offer {
    padding: 5px 20px;
    margin-bottom: 15px;
  }

  main.home section#hero > .top .showcase-container .showcase .showcase-info .info .top .offer p {
    font-size: 20px;
  }

  main.home section#hero > .top .showcase-container .showcase .showcase-info .info .top .title p:nth-child(1) {
    font-size: 20px;
  }

  main.home section#hero > .top .showcase-container .showcase .showcase-info .info .top .title p:nth-child(2) {
    font-size: 18px;
  }

  main.home section#hero > .top .showcase-container .showcase .showcase-info .info .bottom .price p:nth-child(1) {
    font-size: 14px;
  }

  main.home section#hero > .top .showcase-container .showcase .showcase-info .info .bottom .price p:nth-child(2) {
    font-size: 28px;
  }

  main.home section#hero > .top .showcase-container .showcase .showcase-info .product-img {
    width: 42.5%;
    right: 5%;
    max-width: 425px;
  }

  main.home section#hero > .top .showcase-container .blocks {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  main.home section#hero > .top .showcase-container .blocks .showcase-select {
    padding: 10px;
    min-height: 70px;
  }

  main.home section#hero > .top .showcase-container .blocks .showcase-select * {
    font-size: 15px;
  }

  main.home section#hero > .top .info-blocks .team-image {
    height: 50% !important;
  }

  main.home section#hero > .top .info-blocks .experts {
    height: 50% !important;
    padding: 40px;
    padding-bottom: 0;
    position: relative;
  }

  main.home section#hero > .top .info-blocks .experts .info {
    width: 55%;
    padding-bottom: 20px;
  }

  main.home section#hero > .top .info-blocks .experts .info * {
    color: #fff !important;
  }

  main.home section#hero > .top .info-blocks .experts .info *.title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  main.home section#hero > .top .info-blocks .experts .info *.content {
    margin-bottom: 35px;
  }

  main.home section#hero > .top .info-blocks .experts .info *.content * {
    font-size: 16px;
  }

  main.home section#hero > .top .info-blocks .experts picture img {
    position: absolute;
    bottom: 0;
    right: 40px;
    height: 95%;
    width: auto;
  }

  main.home section#hero > .top .info-blocks .vrnSearch {
    height: 50% !important;
  }
}

@media only screen and (min-width: 1400px) {
  main.home section#hero {
    padding: 157px 50px;
  }
}
