/* USER VARIABLES SECTION */
:root {
  --text: #ffffff;
  --regular-text: 25px;
  --lineheight: 1.65;
  --userfont: "Inter", sans-serif;
  --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 30px (15px + 15px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 0.938rem;
}

.row,
.row > * {
  --bs-gutter-x: 1.875rem;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

/* GENERAL CSS SETTINGS */

ul,
ol,
li,
button {
  margin: 0;
  padding: 0;
}

::placeholder {
  color: #000;
  opacity: 1;
}

input,
textarea {
  outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: red;
}

input:required:valid,
textarea:required:valid {
  border-color: green;
}

html {
  height: 100%;
}

body {
  font-family: var(--userfont);
  font-size: var(--regular-text);
  line-height: var(--lineheight);
  color: var(--text);
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
  font-weight: 400;
}

/* common */
.address {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
/*  line-height: 18px;*/
  line-height: 21px;
  font-weight: 500;
}
.address svg {
  fill: #fff;
  width: 22px;
  height: 34px;
  margin: 0 15px 0 0;
}

.logo {
  display: block;
  width: 100%;
  text-align: center;
}

.logo--header img{
    display: block;
    width: 100%;
}

.phone-mobile {
  display: none;
}

.info-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.info-list li {
  list-style-type: none;
}

.info-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #d4b76d;
  text-decoration: none;
  color: #fff;
}

.social svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.lang {
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}

.phone {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  color: #ffffff;
  text-decoration: none;
  margin-right: 56px;
}

.phone:hover {
  color: #fff;
}

.phone svg {
  fill: #ffffff;
  width: 34px;
  height: 34px;
  margin: 0 18px 0 0;
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #674f2f;
  color: #fff;
  border: 1px solid #674f2f;
  transition: 0.2s ease;
}

.c-btn:hover {
  background: #fff;
  color: #674f2f;
}

.contorl input {
  border: none;
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  height: 73px;
  padding: 0 32px;
  font-weight: 400;
  font-size: 19px;
  line-height: 24px;
  color: #000000;
}

.c-mb-4 {
  margin-bottom: 40px;
}

.contorl-select select {
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  max-width: 100%;
  background: #fff;
  height: 73px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  border: none;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  position: relative;
}

.contorl-select {
  position: relative;
}
.contorl-select::before {
  content: "";
  background-image: url("../img/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 27px;
  height: 15px;
  display: block;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}

@media (max-width: 991px) {
  .info-list {
    gap: 10px;
  }
  .logo {
    text-align: left;
  }
  .c-mb-4 {
    margin-bottom: 0px;
  }
  .contorl {
    margin: 0 0 10px 0;
  }
}

.slider-pagination {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -25px !important;
  gap: 12px;
}

.slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: linear-gradient(
    90deg,
    rgba(224, 193, 114, 0.5) 0%,
    rgba(190, 158, 77, 0.5) 100%
  );
  opacity: 1;
  padding: 0 !important;
  margin: 0 !important;
}

.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #d4b76d;
}

@media (max-width: 767px) {
  .logo img {
    display: block;
    width: 100%;
  }
  .lang {
    font-size: 14px;
    line-height: 14px;
  }
  .social svg {
    width: 17px;
    height: 17px;
  }
  .contorl input {
    height: 43px;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    padding: 0 12px;
  }
  .contorl-select select {
    height: 43px;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    padding: 0 12px;
  }

  .contorl-select::before {
    width: 12px;
    height: 6px;
    background-size: cover;
    right: 19px;
  }
}
/* end common */

/* header */
.header {
  background-image: url("../img/bg-header.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  margin: 0 0 70px 0;
}

.header-de {
  background-image: url("../img/bg-header-berlin.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  margin: 0 0 70px 0;
}

.header.not-bg {
  background: none;
}
.header-de.not-bg {
  background: none;
}

.header__top {
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.65);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
}

.header__top-right {
  display: flex;
  align-items: center;
  justify-content: end;
}

.header__bottom {
  padding: 215px 0 110px 0;
}

.header__bottom-title {
  font-weight: 900;
  font-size: 60px;
  line-height: 73px;
  color: #ffffff;
  margin: 0 0 35px 0;
}

.header__bottom-desc {
  font-weight: 700;
  font-size: 28px;
  line-height: 37px;
  color: #ffffff;
  margin: 0 0 50px 0;
}

.header__bottom-btn {
  font-weight: 600;
  font-size: 25px;
  line-height: 25px;
  color: #ffffff;
  height: 67px;
  width: 100%;
  max-width: 460px;
  text-decoration: none;
}

.header__bottom-img-mobile {
  display: none;
}

@media (max-width: 1025px) {
  .header__top-right {
    justify-content: end;
  }
  .header__top-right .phone {
    display: none;
  }
  .header__top-right .phone-mobile {
    display: block;
  }
  .header__top-right .phone-mobile svg {
    width: 14px;
    height: 14px;
    fill: #fff;
  }
}

@media (max-width: 991px) {
  .header {
    margin: 0 0 35px 0;
  }
  
  .header-de {
    margin: 0 0 35px 0;
  }

  .header__bottom-img-mobile {
    display: block;
  }
  .header__bottom {
    padding: 100px 0 65px 0;
  }

  .header__bottom-title {
    font-size: 31px;
    line-height: 38px;
    text-align: center;
    margin: 0 0 17px 0;
  }
  .header__bottom-desc {
    font-weight: 700;
    font-size: 22px;
    line-height: 29px;
    text-align: center;
    margin: 0 0 30px 0;
  }
  .header__bottom-btn {
    height: 55px;
    margin: 0 auto;
    font-weight: 600;
    font-size: 17px;
    line-height: 21px;
  }
}
/* end header */

/* info-block */
.info-block {
  margin: 0 0 100px 0;
}
.info-block__title {
  font-weight: 600;
  font-size: 50px;
  line-height: 61px;
  color: #000000;
  margin: 0 0 36px 0;
}
.info-block__text {
  font-weight: 300;
  font-size: 24px;
  line-height: 41px;
  color: #000000;
}

.info-block__item {
  margin: 0 0 30px 0;
}

.info-block .col-lg-6:nth-child(3n) .info-block__item,
.info-block .col-lg-6:nth-child(4n) .info-block__item {
  margin: 0;
}

.info-block__item-img {
  text-align: center;
  margin: 0 0 25px 0;
}

.info-block__item-text {
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  color: #000000;
}

.info-block__item-text strong {
  font-weight: 600;
}

@media (max-width: 991px) {
  .info-block {
    margin: 0 0 30px 0;
  }
  .info-block__title {
    font-size: 26px;
    line-height: 35px;
    margin: 0 0 20px 0;
  }
  .info-block__text {
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 18px 0;
  }
  .info-block__item-text {
    font-size: 14px;
    line-height: 19px;
    text-align: center;
  }
}
/* end info-block */

/* gallery */
.gallery {
  margin: 0 0 60px 0;
}
.gallery__title {
  font-weight: 600;
  font-size: 50px;
  line-height: 50px;
  color: #000000;
  margin: 0 0 35px 0;
  padding: 0;
}
.gallery__desc {
  margin: 0 0 40px 0;
}
.gallery__desc p {
  font-weight: 300;
  font-size: 24px;
  line-height: 41px;
  color: #000000;
  margin: 0;
  padding: 0;
}

.gallery__row-desctop {
  height: 820px;
  overflow: hidden;
}

.gallery__row-desctop-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gallery__row-desctop-right {
  display: grid;
  grid-template-columns: 2fr;
  grid-auto-flow: dense;
  gap: 30px;
}

.gallery__row-desctop-right .gallery__row-desctop-item:first-child {
  grid-column: span 2;
}

.gallery__row-desctop-right .gallery__row-desctop-item:nth-child(2) {
  grid-row-start: 2;
  grid-row-end: 3;
}

.gallery__row-desctop-right .gallery__row-desctop-item:nth-child(3) {
  grid-row-start: 2;
  grid-row-end: 3;
}

.gallery__row-desctop-item img {
  display: block;
  width: 100%;
}

.gallery__row-mobile {
  display: none;
  position: relative;
}

@media (max-width: 991px) {
  .gallery__title {
    font-size: 28px;
    line-height: 34px;
    margin: 0 0 11px 0;
  }
  .gallery__desc {
    margin: 0 0 30px 0;
  }
  .gallery__desc p {
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
  }
  .gallery__row-desctop {
    display: none;
  }
  .gallery__row-mobile {
    display: block;
  }
}
/* end gallery */

/* callback */
.callback {
  background-repeat: no-repeat;
  background-position: center;
  padding: 54px 0 73px 0;
  background-image: url("../img/bg-callback.jpg");
  background-size: cover;
}

.callback__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  color: #ffffff;
  margin: 0 0 50px 0;
  padding: 0;
  text-align: center;
}

.callback__form {
}
.callback__btn {
  font-weight: 600;
  font-size: 35px;
  line-height: 35px;
  color: #ffffff;
  max-width: 430px;
  width: 100%;
  height: 80px;
  margin: 60px 0 0 0;
}

@media (max-width: 991px) {
  .callback {
    padding: 20px 0 40px 0;
  }
  .callback__title {
    font-weight: 700;
    font-size: 27px;
    line-height: 33px;
    margin: 0 0 22px 0;
  }
  .callback__btn {
    margin: 17px 0 0 0;
    width: 100%;
    max-width: 100%;
    height: 55px;
    font-size: 20px;
    line-height: 24px;
  }
}
/* end callback */

/* video */
.video {
  margin: 90px 0 110px 0;
}
.video__block {
  height: 414px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 2px solid #e0c172;
}

.video__block-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: none;
  padding: 0;
  margin: 0;
  border: none;
  z-index: 999;
}

.video__block-btn img {
  width: 94px;
  height: 94px;
}

.video_source {
  width: 100%;
  height: 100%;
}

.video-is-playing .video__block-btn {
  display: none;
}

.video-is-playing .video-control {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
}

.video__title {
  font-weight: 600;
  font-size: 50px;
  line-height: 50px;
  color: #000000;
  margin: 0 0 45px 0;
  padding: 0;
}

.video__list {
  margin: 0;
  padding: 0;
}

.video__list li {
  font-weight: 400;
  font-size: 25px;
  line-height: 48px;
  color: #000000;
  list-style-position: inside;
}

@media (max-width: 991px) {
  .video {
    margin: 25px 0 38px 0;
  }
  .video__title {
    margin: 0 0 15px 0;
    font-size: 28px;
    line-height: 38px;
  }
  .video__list {
    margin: 0 0 30px 0;
  }
  .video__list li {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
  }
  .video__block {
    height: 188px;
  }
}
/* end video */

/* benefis */
.benefis {
  margin: 0 0 120px 0;
}
.benefis__title {
  margin: 0 0 35px 0;
  padding: 0;
  font-weight: 600;
  font-size: 45px;
  line-height: 60px;
  color: #000000;
}
.benefis__img {
  text-align: center;
}

.benefis__text {
  margin: 0;
  padding: 0;
}

.benefis__text li {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 40px;
  font-weight: 400;
  font-size: 25px;
  line-height: 25px;
  color: #000000;
  margin: 0 0 30px 0;
  flex-wrap: nowrap;
}

.benefis__text li:last-child {
  margin: 0;
}

.benefis__text li::before {
  content: "";
  display: block;
  background-image: url("../img/check.svg");
  width: 100%;
  height: 40px;
  max-width: 40px;
  background-repeat: no-repeat;
  background-position: center;
}

.fransa {
  margin-top: 30px;
}

.fransa1 {
  width: 100%;
}

@media (max-width: 991px) {
  .benefis {
    margin: 0 0 35px 0;
  }
  .benefis__title {
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
    margin: 0 0 26px 0;
  }
  .benefis__text {
    margin: 0 0 30px 0;
  }
  .benefis__text li {
    margin: 0 0 20px 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    gap: 21px;
  }
  .fransa {
    margin-top: 10px;
  }

}

@media (max-width: 767px) {
  .benefis__img img {
    display: block;
    width: 100%;
  }
}

/* end benefis */

/* steps */
.steps {
  background: #674f2f;
  padding: 70px 0 138px 0;
  margin: 0 0 80px 0;
}

.steps--mb{
    margin: 0 0 0 0;
}

.steps__title {
  font-weight: 600;
  font-size: 50px;
  line-height: 61px;
  color: #ffffff;
  margin: 0 0 100px 0;
  padding: 0;
  text-align: center;
}

.steps__item {
  position: relative;
}

.steps__item::before {
  content: "";
  display: block;
  position: absolute;
  right: -65px;
  top: 55px;
  width: 70px;
  height: 24px;
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
}

.steps .col-lg-4:last-child .steps__item::before {
  display: none;
}

.steps__item-img {
  position: relative;
  margin: 0 0 15px 0;
  text-align: center;
}
.steps__item-img img {
  position: relative;
  z-index: 2;
}
.steps__item-number {
  font-weight: 900;
  font-size: 70px;
  line-height: 85px;
  letter-spacing: -0.045em;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: 80px;
  top: -15px;
  z-index: 1;
}

.steps .col-lg-4:first-child .steps__item-number {
  right: 90px;
}

.steps__item-desc {
  font-weight: 400;
  font-size: 25px;
  line-height: 43px;
  text-align: center;
  color: #ffffff;
}

@media (max-width: 1025px) {
  .steps__item-number {
    right: 15px;
  }
  .steps .col-lg-4:first-child .steps__item-number {
    right: 25px;
  }
}

@media (max-width: 991px) {
  .steps {
    padding: 30px 0 48px 0;
    margin: 0 0 42px 0;
  }
  .steps__title {
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    margin: 0 0 35px 0;
  }
  .steps__item {
    margin: 0 0 40px 0;
  }
  .steps__item::before {
    display: none;
  }
  .steps__item-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
  }
  .steps__item-number {
    right: 25%;
  }
  .steps .col-lg-4:first-child .steps__item-number {
    right: 27%;
  }
}
/* end steps */

/* history */
.history {
  margin: 0 0 80px 0;
}

.history__title {
  margin: 0 0 35px 0;
  padding: 0;
  font-weight: 600;
  font-size: 50px;
  line-height: 61px;
  color: #000000;
}

.history__item {
}
.history__item-img {
  margin: 0 0 20px 0;
}
.history__item-img img {
  width: 100%;
  display: block;
}
.history__item-title {
  margin: 0 0 12px 0;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;

  color: #000000;
}
.history__item-desc {
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}
.history__item-text {
  font-weight: 400;
  font-size: 22px;
  line-height: 38px;
  color: #000000;
}

.history__list-mobile {
  display: none;
  position: relative;
}

@media (max-width: 991px) {
  .history__title {
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    margin: 0 0 20px 0;
  }
  .history__list {
    display: none;
  }
  .history__list-mobile {
    display: block;
  }
  .history__item {
  }
  .history__item-img {
    margin: 0 0 23px 0;
  }
  .history__item-title {
    font-weight: 600;
    font-size: 23px;
    line-height: 28px;
    margin: 0 0 7px 0;
  }
  .history__item-desc {
    font-weight: 300;
    font-size: 15px;
    line-height: 18px;
    margin: 0 0 7px 0;
  }
  .history__item-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
  }
}
/* end history */

/* footer */
.footer {
  padding: 52px 0 36px 0;
}
.footer__address {
  color: #000000;
}
.footer__address svg {
  fill: #000;
  margin: 0 14px 0 0;
}

.footer__info-list {
  justify-content: end;
}

.footer__info-list li a {
  color: #000;
}
.footer__info-list li a svg {
  fill: #000;
}

@media (max-width: 991px) {
  .footer {
    padding: 33px 0;
  }
  .footer__address {
    justify-content: center;
    font-size: 16px;
    line-height: 20px;
  }
  .footer__logo {
    margin: 0 auto 21px auto;
    width: 100%;
    max-width: 220px;
  }
}
/* end footer */

/* success-page */
.success-page {
  padding: 150px 0 200px 0;
}
.success-page__img {
  text-align: center;
}

.success-page__title {
  font-weight: 600;
  font-size: 50px;
  line-height: 61px;
  color: #000000;
  margin: 0 0 30px 0;
}
.success-page__desc {
  font-weight: 300;
  font-size: 24px;
  line-height: 41px;
  color: #000000;
}

@media (max-width: 991px) {
  .success-page {
    padding: 30px 0 80px 0;
  }
  .success-page__img {
    text-align: center;
    margin: 0 0 40px 0;
  }

  .success-page__title {
    font-size: 40px;
    line-height: 48px;
    margin: 0 0 10px 0;
    text-align: center;
  }
  .success-page__desc {
    font-size: 16px;
    line-height: 27px;
    text-align: center;
  }
}
/* end success-page */

.callback__notice {
    font-weight: 700;
    font-size: 25px;
    line-height: 41px;
    color: #d72417;
    margin: 30px 0px 0px 0px;
    background: #fff;
    border: 3px solid #d72417;
    padding: 15px;
    text-align: center;
}


@media (max-width: 991px) {
   .callback__notice {
    font-weight: 700;
    font-size: 15px;
    line-height: 21px;
    color: #d72417;
    margin: 30px 0px 0px 0px;
    background: #fff;
    border: 3px solid #d72417;
    padding: 15px;
    text-align: center;
} 
}


/*NEW*/
.c-lang{
    position: relative;
    padding: 0 0 0 17px;
}
.c-lang__current-btn{
   padding: 0;
   margin: 0;
   background: none;
   border: none;
   display: flex;
   align-items: center;
   gap: 0 5px;
}

.c-lang__current-btn span{
   border: 1px solid #E0C172;
   border-radius: 3px;
   color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    width: 36px;
    height: 32px;
        display: flex;
    align-items: center;
    justify-content: center;
}

.c-lang__current-btn svg{
    fill: none;
    width: 9px;
    height: 5px;
}
.c-lang__list{
    display: none;
    flex-direction: column;
    gap: 8px 0;
    background: rgba(0, 0, 0, 0.65);
    padding: 12px 17px;
    list-style-type: none;
    margin: 0;
    position: absolute;
    right: -3px;
    top: 51px;
}

.c-lang__list.show{
    display: flex;
}

.c-lang__list li a{
    text-decoration: none;
       border: 1px solid #E0C172;
   border-radius: 3px;
   color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    width: 36px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
}

.c-social{
    display: flex;
    align-items: center;
    list-style-type: none;
    margin-right: 8px;
}

.c-social li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid transparent;
}

.c-social li a svg{
    fill: #D4B76D;
    width: 26px;
    height: 26px;
}

.footer__c-social{
    gap: 0 28px;
    justify-content: end;
    margin-right: 0;
}

.footer__c-social li a{
    border-color: #D4B76D;
}

.footer__c-social li a svg{
    fill: #000;
    width: 23px;
    height: 23px;
}