
@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-Light.ttf');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-Regular.ttf');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-Medium.ttf');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-SemiBold.ttf');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-Bold.ttf');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-Black.ttf');
  font-weight: 900;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #F0F0F0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

header {
  background: url("../img/header-bg-i.png") no-repeat center/cover;
  padding-bottom: 907px;
}

.main-logo-top {
  background: #101010E5;
  padding: 26px 0;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo span {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  text-transform: lowercase;
  color: #fff;
}

main {
  margin-top: -833px;
}

.main-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dealer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dealer-header {
  width: 100%;
  max-width: 1320px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.dealer-header h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 120%;
  text-align: left;
  text-transform: uppercase;
  color: #fff;
  width: 100%;
  max-width: 728px;
}

.dealer-header h2 span {
  font-weight: 900;
  color: #FE0000;
  font-size: 50px;
  line-height: 100%;
  text-transform: uppercase;
}

.dealer-header p{
  width: 100%;
  max-width: 416px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: left;
  color: #B9B9B9;
}

.dealer-table-holder {
  position: relative;
  z-index: 3;
  margin-top: 74px;
  width: 100%;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 32px;
  max-width: 1320px;
}

.dealer-table-holder-item-wrap {
  display: flex;
}

.dealer-table-holder-item {
  width: 100%;
  display: flex;
  padding: 46px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #FFF;
  border: 1px solid #DBDBDB;
  box-shadow: 
  0px 6px 13px 0px #FFFFFF0F,
  0px 23px 23px 0px #FFFFFF0D,
  0px 52px 31px 0px #FFFFFF08,
  0px 93px 37px 0px #FFFFFF03,
  0px 145px 41px 0px #FFFFFF00;
  border-radius: 10px;
}

.dealer-table-holder-item-logo {
  width: 100%;
  max-width: 185px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.dealer-table-holder-item-adv {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 13px;
}

.dealer-table-holder-item-adv-block {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
}

.dealer-table-holder-item-adv-block span {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #737373;
}

.dealer-table-holder-item-assets {
  width: 100%;
  max-width: 264px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 27px;
}

.dealer-table-holder-item-assets-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid #FE0000;
  border-radius: 4px;
}

.dealer-table-holder-item-assets-block .text {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #1D1D1D;
}

.dealer-table-holder-item-assets-block .number {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #1D1D1D;
}

.dealer-table-holder-item-link {
  width: 100%;
  max-width: 247px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.dealer-table-holder-item-link a {
  align-self: stretch;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  background-color: #299F56;
  line-height: 100%;
  color: #fff;
  text-align: center;
  padding: 16px; 
  transition: all ease 0.3s;
}

.dealer-table-holder-item-link a:hover {
  background-color: #1e703e;
}

.faq-block-holder-wrap {
  padding: 110px 0;
}

.faq-block-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  
}

.faq-block-holder h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  text-align: center;
  color: #1D1D1D;
}

.faq-block-holder-items {
  margin-top: 46px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1166px;
}

.faq-block-questions-item {
  width: 100%;
  cursor: pointer;
}

.faq-block-questions-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid transparent;
  padding: 24px 36px;
  transition: all ease .3s;
  background: linear-gradient(90deg, #1D1D1D 0%, #444444 100%);
  border-bottom: 1px solid #D2D2D2;
  box-shadow: 
  0px 5px 11px 0px #00000005,
  0px 21px 21px 0px #00000005,
  0px 47px 28px 0px #00000003,
  0px 83px 33px 0px #00000000,
  0px 130px 36px 0px #00000000;
}

.faq-block-questions-item-icon {
  width: 100%;
  max-width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../img/red-arrow.png") no-repeat center;;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  background-color: #fff;
  transition: all ease .3s;
}

.faq-block-questions-item-label {
  color: #fff;
  font-weight: 400;
  font-style: Medium;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
}

.faq-block-questions-item-bottom {
  height: 0;
  color: #737373;
  background-color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: all ease 0.3s;
}

.faq-block-questions-item.active .faq-block-questions-item-icon {
  transform: rotateZ(180deg);
}

.faq-block-questions-item.active .faq-block-questions-item-bottom {
  padding: 36px;
  height: auto;
  opacity: 1;
  border-top: none;
  background-color: #fff;
}

.footer-top {
  padding: 64px 0;
  background: url("../img/footer-img.png") no-repeat center/cover;
}

.footer-top-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content-top-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}

.footer-content-top-links a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #E4E4E4;
}

.footer-middle-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 44px;
}

.footer-middle-content-items {
  max-width: 755px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer-block-text-item h3 {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-block-text-item p {
  color: #B9B9B9;
  margin-top: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
}

.footer-middle-content-subitems {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 36px;
  row-gap: 20px;
  margin-top: 64px;
}

.footer-middle-content-subitems .footer-block-text-item {
  background: #101010CC;
  padding: 36px;
  width: 100%;
  max-width: 642px;
  border: 1px solid #FE0000;
  border-radius: 10px;
}

.footer-middle-content-subitems .footer-block-text-item h3 {
  color: #fff;
  text-align: left;
  justify-content: start;
}

.footer-middle-content-subitems .footer-block-text-item p {
  margin-top: 32px;
  color: #B9B9B9;
  text-align: left;
}

.footer-bottom {
  padding: 36px 0;
  background-color: #000;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #E4E4E4;
  text-transform: capitalize
}

.footer-block-images {
  display: flex;
  align-items: center;
  gap: 68px;
}

@media screen and (max-width: 1440px) {
  .container {
    max-width: 90%;
  }

  .footer-bottom-content {
    flex-direction: column-reverse;
    align-items: center;
  }

  .dealer-header {
    align-items: center;
  }
}

@media screen and (max-width: 1280px) {
  .dealer-table-holder-number {
    display: none;
  }

  .footer-middle-content-items {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .footer-block-text-item {
    max-width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .dealer-table-holder-item {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 385px;
  }

  .dealer-table-holder-item-logo {
    align-self: center;
  }

  .dealer-table-holder-item-wrap {
    width: 100%;
    max-width: 380px;
  }

  .dealer-table-holder {
    justify-items: center;
  }

  .footer-top-content {
    flex-direction: column;
    align-items: center;
  }

  .dealer-header,
  .dealer-header p {
    max-width: 100%;
  }

  .dealer-header h2,
  .dealer-header p {
    text-align: center;
  }

  .footer-middle-content-items {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .dealer-header {
    flex-direction: column;
    align-items: center;
  }

}

@media screen and (max-width: 768px) {
  .footer-content-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-block-images {
    justify-content: center;
  }

  .footer-content-middle {
    flex-direction: column;
    align-items: center;
  }

  .footer-content-middle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dealer-header {
    margin-left: 0;
  }

  .dealer-header h2 {
    font-size: 40px;
  }

  .footer-top-content-main {
    flex-direction: column-reverse;
    align-items: center;
  }

  .users {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .footer-block-images,
  .footer-content-top-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-top-content-wrap {
    flex-direction: column;
    align-items: center;
  }

  .faq-block-questions-item-top {
    padding: 18px 24px;
  }

  .faq-block-questions-item-label {
    font-size: 20px;
  }

  .faq-block-questions-item.active .faq-block-questions-item-bottom {
    padding: 20px;
  }

  .footer-bottom-content p {
    text-align: center;
  }
}