/* Colors */
:root {
  --color-accent: #0071e3;
  --color-black: #1b1b1b;
  --color-white: #ffffff;
  --color-neutral-100: #727272;
  --color-neutral-60: #acacac;
}
/* Transition */
:root {
  --transition-3: all 0.3s ease-in-out;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a {
  color: #1b1b1b;
}
html {
  font-size: 62.5%;
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 56%;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body,
ul,
li,
button,
label,
input {
  font-family: "Noto Sans", sans-serif;
  margin: 0;
  padding: 0;
}

label {
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  min-width: 0;
}

/* Container */
.container {
  margin: 0 auto;
  max-width: 1520px;
}

@media screen and (max-width: 1600px) {
  .container {
    max-width: none;
    width: 90%;
  }
}

body {
  padding: 60px 60px 0 60px;
}

@media screen and (max-width: 1024px) {
  body {
    padding: 16px 16px 0 16px;
  }
}

/* Section */
section {
  margin: 120px 0;
}

section:first-of-type {
  margin: 0;
}

@media screen and (max-width: 1024px) {
  section {
    margin: 60px 0;
  }
  section:first-of-type {
    margin: 0;
  }
}

/* Button */
.btn {
  border-radius: 3px;
}

/* Dropdown */
.dropdown {
  position: relative;
  border-radius: 3px;
}

.dropdown__menu {
  position: absolute;
  top: 40px;
  width: 100%;
  border-radius: 3px;
  display: none;
}

.dropdown.active .dropdown__menu {
  display: block;
}

/* Brand Page */

.brand__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.page__heading {
  margin-bottom: 64px;
}

@media screen and (max-width: 1024px) {
  .brand__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .page__heading {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .brand__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media screen and (max-width: 420px) {
  .brand__container {
    grid-template-columns: 1fr;
  }
}

.brand__card {
  border: 1px solid var(--color-neutral-60);
  border-radius: 3px;
  padding: 24px 24px 32px 24px;
}

.brand__img {
  width: 100%;
  max-width: 200px;
  margin: 16px auto 24px auto;
}

.brand__descr {
  color: var(--color-neutral-100);
}

/* News Page */
.news__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media screen and (max-width: 1280px) {
  .news__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 640px) {
  .news__container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.news__card {
  border: 1px solid var(--color-neutral-60);
}

.card__body {
  padding: 0 24px 32px 24px;
}
.card__img {
  width: 100%;
  height: 232px;
  object-fit: cover;
  margin-bottom: 20px;
}

.card__heading {
  margin-bottom: 16px;
}
.card__text {
  margin-bottom: 20px;
}
.news__card .wrapper {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.news__date {
  color: var(--color-neutral-100);
  font-size: 1.4rem;
}

.card__btn {
  color: var(--color-accent);
  transition: var(--transition-3);
  text-decoration: underline;
  font-size: 1.4rem;
}

.card__btn:hover {
  color: var(--color-black);
}

/* News content Page */
.img-wrapper {
  padding: 60px 0;
  width: 100%;
  height: 650px;
  background: url(/renklod/site/images/img/news-bg.png) center/cover no-repeat;
}

.news-page__img {
  max-width: 70%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

.news-page__text {
  margin: 24px 0;
}

.news-page__subheading {
  margin-top: 32px;
}

.news-page__container {
  width: 60%;
}
.news-page__section .news__date {
  margin-top: 16px;
}

.news-page__list {
  list-style-type: disc;
  display: grid;
  gap: 16px;
  margin: 0 16px;
}

.news-page__container img {
  height: 370px;
  object-fit: cover;
  margin: 32px 0;
}

.news-page__item {
  font-size: 1.4rem;
  color: var(--color-black);
}
@media screen and (max-width: 1440px) {
  .news-page__container {
    width: 90%;
  }

  .news-page__img {
    max-width: 80%;
  }
}

@media screen and (max-width: 1024px) {
  .img-wrapper {
    padding: 32px 0;
    height: 250px;
  }

  .news-page__img {
    max-width: 90%;
  }

  .news-page__container img {
    height: 152px;
  }
}

/* Main Section */
.main__btn {
  background: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px 24px;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 36px;
  transition: var(--transition-3);
}
.main__heading {
  margin-bottom: 16px;
  color: var(--color-white);
}
.main__subheading {
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--color-neutral-100);
}
.main__heading span {
  color: var(--color-accent);
}
a.main__btn {
  width: fit-content;
}
.main__btn img {
  display: none;
  width: 41px;
  height: 41px;
}

.main__btn:hover {
  background: #0756a5;
}

.main__section {
  padding: 40px 0;
  background: linear-gradient(to right, #1b1b1b 60%, #ffffff 40%);
}

.main__container {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
}

.carousel__img {
  border-radius: 3px;
  height: 77px;
  max-width: 125px;
  min-width: 0;
  object-fit: cover;
  transition: var(--transition-3);
}

.carousel__wrapper {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  align-items: end;
  width: 60%;
  height: 99px;
}
.carousel__img.active {
  max-width: 161px;
  height: 99px;
}
@media screen and (max-width: 1024px) {
  .main__heading {
    margin-bottom: 20px;
  }

  .main__subheading {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .main__section {
    padding: 40px 0;
    background: linear-gradient(to bottom, #1b1b1b 60%, #ffffff 40%);
  }

  .main__container {
    align-items: stretch;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .carousel__wrapper {
    width: 100%;
    gap: 8px;
    margin-top: 16px;
  }
}

@media screen and (max-width: 375px) {
  .carousel__img {
    height: 45px;
  }

  .carousel__img.active {
    height: 60px;
  }
}

/* Indicator */
.main__bottom {
  display: grid;
}

.carousel__indicator {
  display: flex;
  align-items: baseline;
  gap: 36px;
  justify-content: end;
  width: 60%;
  margin-top: 24px;
}

.scroll {
  background-color: var(--color-white);
  width: 44px;
  height: 4px;
  border-radius: 3px;
}
.scroll .line {
  background-color: var(--color-accent);
  width: 33%;
  height: 100%;
  border-radius: 3px;
}

.range {
  display: flex;
  align-items: baseline;
  color: var(--color-neutral-100);
  gap: 8px;
}

.slide-numb {
  color: var(--color-white);
  font-size: 3.6rem;
}

.slide-numb,
.slide-quantity {
  font-weight: 500;
}

.slide-quantity {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .carousel__indicator {
    display: none;
  }
}

.main-img__wrapper {
  position: relative;
}
.play-btn {
  background: var(--color-white);
  color: var(--color-black);
  display: flex;
  align-items: center;
  max-width: 225px;
  border-radius: 3px;
  position: absolute;
  bottom: -5%;
  right: 5%;
}

.play-btn img {
  width: 60px;
  height: 60px;
  margin-left: 16px;
  min-width: auto;
}

@media screen and (max-width: 768px) {
  .play-btn {
    right: 0;
    bottom: 0;
  }
}

/* Represent section */
.represent__container {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 100px;
}

.image__wrapper {
  display: flex;
  gap: 24px;
  align-items: start;
  position: relative;
}

.descr-block {
  position: absolute;
  background-color: var(--color-white);
  width: 425px;
  right: 0;
  bottom: 5%;
  padding: 24px;
  border-radius: 3px;
  box-shadow: 10px 10px 20px -4px rgba(0, 0, 0, 0.5);
}
.descr-block__location {
  display: flex;
  align-items: center;
}
.descr-block__location img {
  width: 20px;
  height: 20px;
}

.descr-block > .line {
  background-color: var(--color-neutral-60);
  height: 1px;
  width: 100%;
  margin: 32px 0 24px 0;
}
.descr-block__text {
  display: flex;
  gap: 16px;
}

.descr-block__text p {
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-neutral-100);
}

.descr-block__text .line {
  background-color: var(--color-accent);
  width: 4px;
}

.represent__heading span {
  color: var(--color-accent);
}

.represent__heading {
  margin-bottom: 24px;
}

.mark__wrapper {
  margin-top: 48px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.mark {
  border: 1px solid;
  border-color: var(--color-neutral-100);
  border-radius: 4px;
  padding: 20px 28px;
}

.mark.accent {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.mark__heading {
  font-size: 3.6rem;
  font-weight: 600;
}
.mark__subheading {
  font-size: 1.6rem;
  font-weight: 500;
}

@media screen and (max-width: 1600px) {
  .mark__heading {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 1280px) {
  .represent__container {
    gap: 40px;
  }

  .mark__wrapper {
    gap: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .represent__container {
    grid-template-columns: 1fr;
  }

  .descr-block {
    width: 70%;
  }
}

@media screen and (max-width: 768px) {
  .mark__wrapper {
    grid-template-columns: 1fr;
  }
  .descr-block {
    width: 100%;
    bottom: -20%;
  }

  .represent__container > .wrapper {
    margin-top: 100px;
  }
}

/* Partner */
.partner__section {
  display: grid;
}
.partner__item {
  border: 1px solid var(--color-neutral-100);
  border-radius: 3px;
  /*padding: 40px 24px;*/
  display: flex !important;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  /*height: 233px !important;*/
  margin-right: 10px;
}


.partner__item:last-child{
  margin-right: 0;
}

.partner__item-body{
  height:100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner__img{
  object-fit: contain;
  width:100%;
  max-height:80px;
  max-width:160px;
  display: inline-block !important;
}

.partner__container {
  display: grid;
  grid-template-columns: 3fr 10fr;
  max-width: 1651px;
  justify-self: end;
  gap: 40px;
  margin: 0;
}

.partner__title {
  color: var(--color-neutral-100);
  text-align: center;
  margin-top: 20px;
}

.partner__container .wrapper:nth-of-type(2) {
  overflow-x: hidden;
  padding-bottom: 24px;
}

.partner__container .wrapper:nth-of-type(1) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* .partner__container .wrapper:nth-of-type(2)::-webkit-scrollbar {
 height: 6px;
  display: block;
}

.partner__container .wrapper:nth-of-type(2)::-webkit-scrollbar-track {
  background: #dddddd;       
}

.partner__container .wrapper:nth-of-type(2)::-webkit-scrollbar-thumb {
  background-color: #b3b3b3;
  border-radius: 20px;     
} */

.btn__wrapper,
.slick-btn {
  display: flex;
  align-items: center;
}

.btn__wrapper {
  gap: 16px;
  margin-top: 24px;
}

.slick-btn {
  padding: 10px;
  border: 1px solid var(--color-accent);
  border-radius: 3px;
  transition: var(--transition-3);
}

.slick-btn:hover {
  background-color: var(--color-neutral-60);
}
.prev-btn {
  transform: rotate(180deg);
}

.partner__quantity {
  color: var(--color-neutral-60);
  margin: 24px 0;
}

.partner__heading span {
  color: var(--color-accent);
}

@media screen and (max-width: 1600px) {
  .partner__container {
    margin: 0 auto;
  }
}

@media screen and (max-width: 1400px) {
  .partner__wrapper {
    /*width: max-content;*/
    /*gap: 16px;*/
  }
  .partner__item {
    /*width: 223px;*/
  }

  .partner__container {
    grid-template-columns: 3fr 9fr;
  }
}

@media screen and (max-width: 1560px) {
  .partner__wrapper {
    /*width: max-content;*/
    /*gap: 16px;*/
  }
  .partner__item {
    /*width: 223px;*/
  }

  .partner__container {
    grid-template-columns: 3fr 9fr;
  }
}


@media screen and (max-width: 767px) {
  .partner__container {
    grid-template-columns: 1fr;
  }

  .partner__item {
    /*gap: 16px;*/
  }
}

@media screen and (max-width: 1500px) {
  .partner__img{
    max-width:140px;
  }
}

@media screen and (max-width: 1300px) {
  .partner__img{
    max-width:120px;
  }
  .partner__title {
    margin-top: 15px;
  }
}

@media screen and (max-width: 1000px) {
  .partner__img{
    height:70px;
  }
  .partner__img{
    max-width:110px;
  }
  .partner__item-body{
    height: 70px;
  }
}

@media screen and (max-width: 568px) {
  .partner__img{
    height:50px;
  }
  .partner__img{
    max-width:100px;
  }
}

@media screen and (max-width: 568px) {
  .partner__img{
    height:50px;
  }
  .partner__img{
    max-width:90px;
  }
  .partner__title {
    margin-top: 10px;
  }
}

/* Cooperation */
.cooperation__section,
.cooperation__container {
  display: grid;
}

.cooperation__wrapper {
  position: relative;
}
.cooperation__container {
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  max-width: 1651px;
  justify-self: end;
  margin: 0;
}
.cooperation__heading {
  margin-bottom: 32px;
}

.cooperation__heading span {
  color: var(--color-accent);
}

.cooperation__text {
  color: var(--color-neutral-100);
}

.cooperation__img {
  height: 100%;
  object-fit: cover;
}
.cooperation__block {
  position: absolute;
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-60);
  width: 380px;
  padding: 20px 16px;
  display: grid;
  gap: 24px;
  bottom: 10%;
  left: -5%;
}

.block__footer,
.indicators {
  display: flex;
  align-items: center;
}

.block__footer {
  justify-content: space-between;
  gap: 24px;
}

.indicators {
  gap: 6px;
}

.point {
  width: 8px;
  height: 8px;
  background-color: #cdcdcd;
  transition: var(--transition-3);
  border-radius: 100%;
}

.point.active {
  width: 16px;
  height: 16px;
  background-color: var(--color-accent);
}

.block__descr {
  color: var(--color-neutral-60);
  font-style: italic;
}

@media screen and (max-width: 1600px) {
  .cooperation__container {
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .cooperation__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cooperation__block {
    position: static;
    width: 100%;
  }

  .cooperation__img {
    height: 184px;
  }
}

/* OPT */
.opt__block {
  right: 2%;
  left: auto;
  bottom: -10%;
}

.opt__section {
  color: var(--color-white);
}

.opt__section h3 {
  margin: 32px 0 40px;
}

/* Contact */
.map {
  position: relative;
  padding: 40px 0;
}
.map iframe {
  width: 100%;
  height: 460px;
}
.contact__list {
  display: grid;
  gap: 24px;
}
.contact__item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact__item,
.contact__item a {
  font-size: 1.4rem;
  color: var(--color-neutral-60);
}

.contact__item img {
  width: 21px;
  height: 21px;
}
.contact__item:nth-of-type(2) {
  line-height: 2.6rem;
}

.contact__block {
  padding: 48px 40px;
  top: 0;
  bottom: 0;
  right: 10%;
  position: absolute;
  background-color: var(--color-black);
  max-width: 460px;
}

@media screen and (max-width: 1024px) {
  .contact__block {
    position: static;
    max-width: none;
    margin-bottom: 24px;
  }

  .map {
    padding: 0;
  }
}

/* Stores */
.store__container,
.store__wrapper {
  display: grid;
}

.store__container {
  gap: 60px;
}

.store__wrapper {
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
.store__title {
  font: 2rem "Montserrat Alternates";
  font-weight: 700;
  margin-bottom: 24px;
}
.store__wrapper .wrapper {
  padding: 40px;
  border: 1px solid var(--color-neutral-100);
}
.store__text {
  color: var(--color-neutral-60);
  margin-bottom: 24px;
}

.store__wrapper > img {
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .store__wrapper {
    gap: 24px;
    grid-template-columns: 1fr;
  }
  .store__wrapper .wrapper {
    order: -1;
  }

  .store__wrapper {
    gap: 16px;
  }
}

/* About us */
.page__subheading span {
  color: var(--color-accent);
}

.mission__container {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
}

.mission__container .wrapper {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.mission__container a {
  border: 1px solid var(--color-neutral-100);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.mission__container img {
  width: 70px;
  height: 70px;
}

@media screen and (max-width: 768px) {
  .mission__container,
  .mission__container .wrapper {
    grid-template-columns: 1fr;
  }

  .mission__container a {
    padding: 24px;
  }
}

/* Our Brands Page */
.renklod__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.renklod__heading span {
  font-family: "Montserrat";
}

.represent__text {
  margin: 48px 0;
}

.renklod__container .mark__wrapper {
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.renklod__container .mark__heading {
  font-size: 2.8rem;
}

.renklod__container img {
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .renklod__container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media screen and (max-width: 768px) {
  .renklod__container .mark__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .represent__text {
    margin: 24px 0;
  }
}

.our-brands__banner {
  background: url(/renklod/site/images/img/new-way.png) center/cover no-repeat;
  height: 39.8vw;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .our-brands__banner {
    background: url(/renklod/site/images/img/new-way-mob.png) center/cover
      no-repeat;
    height: 221vw;
    width: 100%;
  }
}

.opt-sale__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.opt-sale__container img {
  border-radius: 3px;
}

.opt-sale__text {
  margin-top: 36px;
}

@media screen and (max-width: 768px) {
  .opt-sale__container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .opt-sale__text {
    margin-top: 24px;
  }
}

.represent-section-descr {
  display: none;
}
.represent-section-descr.active {
  display: block;
}


/* about-us__section */ 
.about-us__section, .brand__section, .news__section, .contact__section{
  margin-top: 120px !important;
}

.form_popup {
  display: grid;
  gap: 12px;
}

.form_popup input, .form_popup::placeholder {
  font-size: 1.4rem;
  padding: 12px;
  border: 1px solid transparent;
}

.form_popup input {
  transition: all .3s ease-in-out;
  border-radius: 3px;
  background: #f4f4f4;
}


.form_popup input[type=submit] {
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
}

.form_popup input[type=submit]:hover {
  background-color: #0756a5;
}
.form_popup textarea {
  font-size: 1.4rem;
  font-family: "Montserrat";
  outline: none;
  border: 1px solid transparent;
  background: #f4f4f4;
  padding: 12px;
  border-radius: 3px;
  transition: all .3s ease-in-out;
}

.form_popup input:focus, .form_popup input:hover, .form_popup textarea:focus, .form_popup textarea:hover {
  outline: none;
  border: 1px solid var(--color-accent);
}

#popUpFormSuccess {
  position: fixed;
  /* display: none; */
  display: flex;
  z-index: 9999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  /* right: 25%; */
  height: 100%;
  width: 100%;
  align-items: center;
    justify-content: center;
}

#popUpFormSuccess .form_popup {
  align-content: center;
    justify-items: center;
    background-color: #fff;
    width: 90%;
    max-width: 500px;
    padding: 32px 24px;
    border-radius: 3px;
}

#popUpFormSuccess .form_popup svg {
  width: 120px;
}

.form_popup--success {
  display: grid;
  text-align: center;
  justify-items: center;
  gap: 24px;
  font-size: 1.6rem;
  font-weight: 500;
}

footer{
  margin-top: 50px;
}

