:root {
  --primary-color: #FFDA05;
  --secondary-color: #FFB905;
  --color-text: #0C0D0D;
}

.theme-blue {
  --primary-color: #405DFF;
  --secondary-color: #2F4DFF;
  --color-text: #fff;
}

.info {
  padding-top: 20px;
}
.info h2 {
  margin-left: 20px;
}
.info__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 20px;
}
.info__list a:not(:last-of-type) {
  margin-bottom: 12px;
}
.info__list a:last-of-type {
  margin-bottom: 30px;
}
.info__item {
  background-color: rgba(255, 255, 255, 0.03);
}
.info__title {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .info__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .info h2 {
    margin-left: 0;
  }
  .info__list {
    margin: 0;
  }
  .info__top {
    margin: 0 -10px 10px;
    height: 25px;
  }
  .info__item br {
    display: none;
  }
}

.where__wrap {
  display: flex;
  justify-content: space-between;
}
.where__map {
  width: 65%;
  height: 560px;
  overflow: hidden;
}
.where__locations {
  width: 31%;
}
.where__list {
  border-top: 1px solid #3B3B3B;
}
.where__item {
  border-bottom: 1px solid #3B3B3B;
  position: relative;
}
.where__item:not(:first-child) .where__inner {
  display: none;
}
.where__item.active .where__name {
  color: #fff;
}
.where__item.active .where__sign::before {
  transform: rotate(270deg) !important;
}
.where__item.active .where__sign::after {
  transform: rotate(270deg) !important;
}
.where__name {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s ease;
}
.where__schedule {
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.where__phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: auto;
}
.where__graph {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.where__sign {
  font-size: 24px;
  position: absolute;
  top: 30px;
  right: 0;
  color: #fff;
  font-weight: 400;
}
.where__sign::before, .where__sign::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 16px;
  width: 2px;
  height: 12px;
  background-color: #fff;
  transition: all 0.2s;
}
.where__sign::after {
  transform: rotate(90deg);
}
.where__inner {
  margin-top: -10px;
  font-weight: 500;
}
.where__address {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .where__wrap {
    flex-direction: column;
  }
  .where__map {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
  }
  .where__locations {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .where__map {
    height: 350px;
  }
}

.question-form {
  overflow: hidden;
}
.question-form h2 {
  font-size: 40px;
  margin-bottom: 40px;
}
.question-form .container-full {
  padding: 0 20px;
}
.question-form__wrap {
  padding: 0 90px 0 40px;
  position: relative;
}
.question-form__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.question-form__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.question-form__left {
  width: 42%;
}
.question-form__right {
  width: 60%;
  position: relative;
  z-index: 1;
}
.question-form__right img {
  width: 100%;
  max-height: 540px;
  height: auto;
  object-fit: contain;
}
.question-form__submit.submit {
  font-size: 16px;
  justify-content: center;
  padding-top: 21px;
  padding-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .question-form__right img {
    position: absolute;
    top: 50%;
    transform: translate(22%, -40%);
  }
}
@media screen and (max-width: 1024px) {
  .question-form__wrap {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }
  .question-form__wrap::after {
    top: unset;
    bottom: 0;
    width: 100%;
    height: 28%;
  }
  .question-form__left {
    width: 100%;
  }
  .question-form__right {
    width: 100%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .question-form h2 {
    font-size: 32px;
  }
  .question-form__wrap {
    padding: 0;
    background: unset;
    border: unset;
  }
  .question-form__wrap::after {
    height: 16%;
  }
  .question-form__agree {
    font-size: 14px;
    display: flex;
  }
  .question-form__agree .default-text {
    margin-top: -2px;
  }
}
