@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant&family=Lato:wght@300;400;700&family=Raleway:wght@300&display=swap");
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Neutral-Normal";
  src: url(/wp-content/themes/prorab/fonts/NeutralFace.otf);
}
@font-face {
  font-family: "Neutral-Bold";
  src: url(/wp-content/themes/prorab/fonts/NeutralFace-Bold.otf);
}
.header {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  padding-left: 80px;
  position: relative;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px; /* Adjust the width of the line */
  height: 90px;
  background-color: #478ACD; /* Color of the line */
}

/**************************************************************************************************************/
.header__burger {
  padding-left: 18%;
  padding-right: 18%;
  height: 95px;
  width: 100%;
  background-color: #2A2C2E;
  color: #F9F9FA;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__burger .header__number {
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.8px;
}
.header__burger .header__schedule {
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.56px;
  opacity: 0.8;
}

.header__links {
  display: flex;
}
.header__links .links {
  height: 44px;
  width: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger-menu_button {
  position: relative;
  right: auto;
  top: auto;
  z-index: 30;
  width: 50px;
  height: 44px;
  transition: 0.4s;
}

.burger-menu_lines::after,
.burger-menu_lines::before {
  position: absolute;
  right: 0;
  width: 35px;
  height: 3px;
  background-color: white;
  transition: 0.4s;
}

.burger-menu_lines {
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: #478ACD;
  transition: 0.4s;
}

.burger-menu_lines {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-menu_lines::before {
  content: "";
  top: -12px;
}

.burger-menu_lines::after {
  content: "";
  top: 12px;
}

.burger-menu_active .burger-menu_lines {
  position: static;
  right: 50px;
  background-color: transparent;
}

.burger-menu_active .burger-menu_lines::before {
  top: 15px;
  right: 30px;
  transform: rotate(45deg);
  background-color: #595C60;
  height: 4px;
  width: 45px;
}

.burger-menu_active .burger-menu_lines::after {
  top: 15px;
  right: 30px;
  transform: rotate(-45deg);
  background-color: #6D7175;
  height: 4px;
  width: 45px;
}

.burger-menu_nav {
  box-shadow: -8px 0 10px -8px black;
  padding-top: 80px;
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  flex-flow: column;
  height: 100%;
  background-color: #2A2C2E;
  overflow-y: auto;
  right: -100%;
  transition: 0.8s;
  width: 310px;
}

.burger-menu_active .burger-menu_nav {
  right: 0;
  transition: 0.4s;
}

.burger-menu_link {
  margin-left: 30px;
  margin-right: 30px;
  text-align: right;
  padding: 18px 0;
  font-size: 14px;
  font-weight: 400;
  color: #F9F9FA;
  border-bottom: 1px solid #fff;
  opacity: 0.6;
  text-decoration: none;
}

.burger-menu_link:hover {
  filter: brightness(0.9);
}

.burger-menu_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
}

.burger-menu_active .burger-menu_overlay {
  display: block;
}

.burger-menu_contacts {
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 80px;
  align-items: flex-end;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
}

.number {
  margin-bottom: 15px;
  font-family: Raleway;
  font-size: 16px;
  font-weight: 300;
}

.email {
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  margin-bottom: 15px;
}

.header__links.burger-active {
  margin-bottom: 80px;
}

a.icon {
  display: none;
}

/*КНОПКА*/
.interior__button {
  width: 120px;
  height: 58px;
}
.interior__button a.blue {
  cursor: pointer;
  display: block; /* Ensure the anchor tag takes the full width and height */
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: #478ACD;
  text-decoration: none;
  color: #F9F9FA;
  font-family: Raleway;
  font-size: 19px;
  font-style: 300;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.76px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.interior__button a.blue:hover {
  background-color: #68A7E5;
}
.interior__button a.blue:active {
  background-color: #91BEEA;
}
.interior__button a.blue:disabled {
  background-color: #A0ACB7;
}

/*АДАПТИВ*********************************************************/
@media only screen and (max-width: 1200px) {
  .header__burger {
    display: flex;
    padding: 20px;
    justify-content: centerx;
  }
  .burger-menu_button {
    padding: 0;
  }
  .burger-menu_nav {
    width: 100%;
    top: 70px;
  }
  .interior__button.width {
    width: 100%;
  }
  .interior__button.width a.icon {
    display: block !important;
  }
  .burger-menu_contacts {
    margin: 0;
  }
  .burger-menu_lines {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .burger-menu_lines::before {
    content: "";
    top: -12px;
  }
  .burger-menu_lines::after {
    content: "";
    top: 12px;
  }
  .burger-menu_active .burger-menu_lines {
    position: absolute !important;
    bottom: 0;
    right: 50px !important;
    background-color: #478ACD !important;
    height: 2.5px;
    width: 45px;
  }
  .burger-menu_active .burger-menu_lines::before {
    top: -10px;
    right: 0;
    transform: none !important;
    background-color: #478ACD;
    height: 2.5px;
    width: 30px;
  }
  .burger-menu_active .burger-menu_lines::after {
    top: 10px;
    right: 0;
    transform: none !important;
    background-color: #478ACD;
    height: 2.5px;
    width: 30px;
  }
  .burger-menu_active .burger-menu_button {
    position: fixed;
    top: 93.9%;
    right: 15px;
  }
}
@media only screen and (max-width: 1170px) {
  .header__burger {
    display: flex;
    padding: 20px;
  }
  .burger-menu_button {
    padding: 0;
    right: 10px !important;
  }
  .burger-menu_nav {
    width: 100%;
    top: 70px;
    box-shadow: none !important;
  }
  .interior__button.width {
    width: 100%;
    background-color: white;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    padding: 0 60px;
  }
  .interior__button.width a.blue.none {
    display: none;
  }
  .interior__button.width a.icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .burger-menu_contacts {
    margin-right: 0;
    margin-top: 80px;
  }
  .number {
    margin-right: 30px;
  }
  .email {
    margin-right: 30px;
  }
  .header__links.burger-active {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 860px) {
  .header__burger {
    padding: 20px;
  }
  .burger-menu_button {
    display: none;
  }
  .burger-menu_active .burger-menu_button {
    display: block !important;
  }
}
@media only screen and (max-width: 680px) {
  .header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__links {
    display: none !important;
  }
  .header__contacts {
    display: none;
  }
  .burger-menu_button {
    display: none;
  }
  .header__burger.sticky {
    height: 85px !important;
  }
}
@media only screen and (max-width: 500px) {
  .interior__button.width {
    padding: 30px;
  }
  .burger-menu_active .burger-menu_button {
    position: fixed;
    top: 93.9%;
    right: 0;
  }
  .burger-menu_active .burger-menu_lines::before {
    top: -10px;
    right: 0;
    transform: none !important;
    background-color: #2A2C2E;
    height: 2.5px;
    width: 30px;
  }
  .burger-menu_active .burger-menu_lines::after {
    top: 10px;
    right: 0;
    transform: none !important;
    background-color: #2A2C2E;
    height: 2.5px;
    width: 30px;
  }
}
/*КАРТОЧКА****************************************************/
.cart {
  padding: 60px;
  max-width: 608px;
  color: white;
}
.cart .cart__number {
  font-family: Cormorant;
  font-size: 50px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -2px;
  text-transform: uppercase;
  padding-bottom: 25px;
}
.cart .cart__image {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 1;
  transition: 0.5s;
}
.cart .cart__image .zoom {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  z-index: 2;
}
.cart .cart__button {
  margin: 25px 0;
  width: 184px;
  height: 52px;
}
.cart .cart__button a.white {
  cursor: pointer;
  display: block; /* Ensure the anchor tag takes the full width and height */
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-color: white;
  text-decoration: none;
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  color: #2A2C2E;
  text-align: center;
  padding-top: 13px;
}
.cart .cart__button a.white:hover {
  background-color: #68A7E5;
}
.cart .cart__button a.white:active {
  background-color: #91BEEA;
}
.cart .cart__button a.white:disabled {
  background-color: #A0ACB7;
}
.cart .cart__adress {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.cart .cart__info {
  display: flex;
  justify-content: space-between;
  padding: 25px 0 25px 0;
}
.cart .cart__info .info {
  display: flex;
  flex-direction: column;
}
.cart .cart__info .info .info__attr {
  display: flex;
}
.cart .cart__info .info .info__attr .attr__logo {
  padding-right: 15px;
}
.cart .cart__info .info .info__attr .attr__text {
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 155%;
  opacity: 0.7;
}
.cart .cart__info .info .info__info {
  padding-top: 15px;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  opacity: 0.7;
}
.cart .cart__history .info__attr {
  margin: 0 0 15px 0;
  display: flex;
}
.cart .cart__history .attr__logo {
  padding-right: 15px;
}
.cart .cart__history .attr__text {
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  opacity: 0.7;
}
.cart .cart__history .cart__descrip {
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 155%;
  opacity: 0.7;
}

.cart__image:hover img {
  opacity: 0.7;
  transition: 0.5s;
}

.cart__image:hover .zoom {
  opacity: 1 !important;
}

@media only screen and (max-width: 680px) {
  .info__info {
    font-size: 16px !important;
  }
}
@media only screen and (max-width: 500px) {
  .cart__info {
    flex-direction: column;
    padding: 0 !important;
  }
  .info__attr {
    margin-top: 30px;
  }
  .cart__image {
    height: auto !important;
  }
  .cart__info {
    margin-bottom: 25px;
  }
}
/*INPUT***************************************************/
.input {
  width: 250px;
  height: 58px;
  margin-right: 30px;
  border-radius: 8px;
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 155%;
  color: #6D7175;
  border: 1px solid rgba(109, 113, 117, 0.3);
}
.input input {
  background-color: #fff;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  border-radius: 8px;
  padding-left: 20px;
}

input:focus {
  border: 1.5px solid #478ACD; /* Adjust as needed */
  color: #2A2C2E;
}

@media only screen and (max-width: 860px) {
  .form__inputs {
    flex-direction: column;
  }
  .input {
    width: 100% !important;
    height: 58px;
    margin-bottom: 30px;
  }
  input {
    background-color: #fff;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    border-radius: 5px;
    padding-left: 20px;
  }
  .interior__button {
    width: 100%;
  }
  .form__form {
    margin-top: 112px !important;
  }
}
.form__inputs.color {
  background-color: #fff;
}

/*TABS************************************************************************************/
.tabs {
  border: none;
  outline: none;
  margin-top: 100px;
  width: 100%;
}

.tabs .tab-header,
.tabs .tab-indicator,
.tabs .tab-body {
  margin: 0 auto;
  max-width: 1220px;
  width: 100%;
}

.tabs .tab-header {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  height: 60px;
  margin-top: -60px;
  z-index: 2;
}

.tabs .tab-header > div {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 25%;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  color: #F9F9FA;
  color: #478ACD;
  background: white;
  border: 1px solid #478ACD;
  cursor: pointer;
  height: 100px;
  position: relative;
}

.circle {
  position: absolute;
  left: 57%;
  transform: translate(-57px, 0);
  top: -35%;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 1.696px 3.959px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  padding-left: 10.18px;
  font-family: Cormorant;
  font-size: 28.275px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.131px;
  text-transform: uppercase;
}

.tabs .tab-header > div.active {
  background: #478ACD;
  border-radius: 5px;
  color: #F9F9FA;
  transition: color 200ms ease-in-out;
}
.tabs .tab-header > div.active .circle {
  color: #478ACD;
}

.tabs .tab-indicator {
  position: relative;
  height: 60px;
  margin-top: -60px;
}

.tabs .tab-indicator > div {
  position: absolute;
  left: 0%;
  width: 25%;
  height: 100%;
  background: #478ACD;
  border-radius: 5px;
  transition: all 300ms ease-in-out;
}

.tabs .tab-body {
  background-color: #fff;
  position: relative;
  margin-top: 60px;
}

.tabs .tab-body > div {
  position: absolute;
  width: 100%;
  padding: 20px;
  opacity: 0;
  top: -100vh;
  
}

.tabs .tab-body > div > * {
  margin: 10px 0px;
}

.tabs .tab-body > div.active {
  top: 0px;
  opacity: 1;
  transition: top 0ms ease-in-out 0ms, opacity 500ms ease-in-out 0ms;
  margin-bottom: 100px;
  display: block;
  position: static;
}

h2 {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 10px;
}

.composition {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.composition .composition__items .composition__item {
  display: flex;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}
.composition .composition__items .composition__item .item__text {
  padding-left: 15px;
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 155%;
}
.composition .composition__items .composition__item .item__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px; /* Adjust the height of the line as needed */
  background-color: #ccc; /* Set the color of the line */
}
.composition .composition__items {
	width: calc(100% - 540px);
}
.composition .composition__image {
  width: 500px;
  display: flex;
  align-items: center;
}
.composition .composition__image img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.tab__price {
  padding: 30px 0;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
}
.tab__price span {
  color: #478ACD;
}

@media only screen and (max-width: 1170px) {
  .composition {
    flex-direction: column-reverse;
	align-items: center;
  }
  .composition .composition__items {
    margin-top: 60px;
    width: 100%;
  }
}
.interior__button.width-2 {
  width: 100%;
}

@media only screen and (max-width: 860px) {
  .tab-header {
    flex-direction: column;
    height: 409px !important;
    width: 100% !important;
  }
  .tab-header div {
    width: 100% !important;
  }
  .tab-header .circle {
    width: 65px !important;
    height: 65px !important;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .tab-indicator {
    display: none;
  }
  .composition__image {
    width: 100% !important;
  }
  .composition__image img {
    width: 100% !important;
    margin: 0 auto 60px auto;
  }
}
@media only screen and (max-width: 500px) {
  .composition__image {
    width: 100% !important;
    height: auto !important;
  }
  .composition__image img {
    width: 100% !important;
    margin: 0 auto 60px auto;
  }
}
/*CALLBACH******************************************/
.callback {
  display: block;
  position: absolute;
  top: 100%;
  left: 45%;
  transform: translate(-50%, -200px);
  max-width: 780px;
  width: 100%;
  background-color: #fff;
  padding: 40px 5%;
  border-radius: 10px;
  height: 413px;
}
.callback .callback__text {
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 155%;
  margin: 20px 0;
}

@media only screen and (max-width: 860px) {
  .callback {
    top: 180%;
    left: 50%;
    transform: translate(-50%, -150%);
  }
}
/*SWIPER*********************************************/
.swiper {
  width: 100%;
  height: 100%;
}
.swiper .swiper-wrapper {
  max-height: 280px;
  max-width: 1220px;
}
.swiper .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 280px;
  width: 280px;
  padding: 5px;
  border: 2px solid #478ACD;
}
.swiper .swiper-wrapper .swiper-slide img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/*SLIDER2***************************************/
.swiper2 {
  overflow: hidden;
}
.swiper2 .swiper-wrapper .swiper-slide {
  width: auto;
  display: flex;
}
.swiper2 .swiper-wrapper .swiper-slide .rew__flex {
  flex-shrink: 1;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.swiper2 .swiper-wrapper .swiper-slide .rew__flex .rew {
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.swiper2 .swiper-wrapper .swiper-slide .rew__flex .rew .photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.swiper2 .swiper-wrapper .swiper-slide .rew__flex .rew .photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.swiper2 .swiper-wrapper .swiper-slide .rew__flex .rew .rew__title {
  padding: 20px 0;
  opacity: 0.9;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.swiper2 .swiper-wrapper .swiper-slide .rew__flex .rew .rew__subtitle {
  text-align: justify;
  opacity: 0.8;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 155%;
}
.swiper2 .swiper-wrapper .swiper-slide .rew__flex .rew__author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.swiper2 .swiper-wrapper .swiper-slide .rew__flex .rew__author .author__name {
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 155%;
  opacity: 0.6;
}
.swiper2 .swiper-wrapper .swiper-slide .rew__video {
  width: 392px;
  height: 700px;
}
.swiper2 .swiper-wrapper .swiper-slide .rew__video img {
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

@media only screen and (max-width: 680px) {
  .rew__subtitle {
    font-size: 14px !important;
    max-width: 370px !important;
    width: 100%;
    text-align: left !important;
  }
  .rew__author {
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }
  .rew__button {
    margin-top: 34px;
  }
  .rew {
    max-width: 440px !important;
    padding-right: 32px;
  }
  .rew__flex {
    padding-right: 0 !important;
  }
}
@media only screen and (max-width: 500px) {
  .rew__subtitle {
    font-size: 14px !important;
    max-width: 260px !important;
    width: 100%;
    text-align: left !important;
  }
  .rew__title {
    font-size: 16px !important;
    max-width: 260px !important;
    width: 100%;
  }
}
/*BUTTON2*************************************/
.rew__button .rev__but {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  color: #F9F9FA;
  border-bottom: 1px solid #478ACD;
  padding-bottom: 10px;
}
.rew__button .rev__but svg {
  margin-right: 10px;
}
.rew__button .rev__but:hover {
  padding-bottom: 10px;
  border-bottom: 1px solid #68A7E5;
}
.rew__button .rev__but:active {
  padding-bottom: 10px;
  border-bottom: 1px solid #91BEEA;
}
.rew__button .rev__but:disabled {
  padding-bottom: 10px;
  border-bottom: 1px solid #A0ACB7;
}

/*FOOTER****************************************************/
.footer {
  padding-bottom: 60px;
  padding-right: 30px;
  padding-left: 30px;
  padding-top: 60px;
  background-color: #fff;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  width: 100%;
}
.footer .footer__conteiner {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}
.footer .footer__conteiner .contacts__flex {
  display: flex;
  justify-content: space-between;
}
.footer .footer__conteiner .contacts__flex .interior__button {
  width: 196px;
}
.footer .footer__conteiner .contacts__flex .interior__button .blue {
  padding: 18px 30px;
}
.footer .footer__conteiner .links__flex {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
.footer .footer__conteiner .links__flex .footer__links {
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 155%;
}
.footer .footer__conteiner .links__flex .footer__links:first-child {
	width: 270px;
}
.footer .footer__conteiner .footer__info {
  display: flex;
  justify-content: space-between;
}
.footer .footer__conteiner .footer__info .terms {
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 155%;
  color: #969BA0;
}

.footer__contacts {
	font-variant-numeric: lining-nums proportional-nums;
  margin-bottom: 30px;
  font-family: Raleway;
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -3.2px;
}

@media only screen and (max-width: 1170px) {
  .contacts__flex {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 860px) {
  .contacts__flex {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .links__flex {
    flex-direction: column;
  }
  .footer__contacts {
    margin-bottom: 20px !important;
  }
}
@media only screen and (max-width: 680px) {
  .footer__contacts {
    font-size: 50px !important;
  }
}
@media only screen and (max-width: 500px) {
  .footer__contacts {
    font-size: 36px !important;
  }
  .footer__info {
    flex-direction: column;
  }
}
/*FORM***********************************/
.modal {
  border-radius: 10px;
  max-width: 900px !important;
  min-width: 300px;
  width: 100%;
  padding: 0 !important;
}
.modal .form__conteiner .form__flex {
  display: flex;
  justify-content: space-between;
}
.modal .form__conteiner .form__flex .form__items {
  flex-shrink: 0;
  padding-right: 20px;
  max-width: 350px;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 50px;
}
.modal .form__conteiner .form__flex .form__items .form__header {
  margin-bottom: 30px;
  text-align: center;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.modal .form__conteiner .form__flex .form__items .form__subtitle {
  text-align: center;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 155%;
}
.modal .form__conteiner .form__flex .form__items .form__inputs {
  flex-direction: column;
  margin-bottom: 30px;
}
.modal .form__conteiner .form__flex .form__items .form__inputs .input__flex .input {
  width: 350px;
  margin: 30px 0;
}
.modal .form__conteiner .form__flex .form__items .form__inputs .interior__button {
  width: 100% !important;
}
.modal .form__conteiner .form__flex .form__items .form__terms {
  opacity: 0.6;
  text-align: center;
  font-family: Raleway;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 155%;
}
.modal .form__conteiner .form__flex .form__items .form__terms a {
  cursor: pointer;
  color: #478ACD;
}
.modal .form__conteiner .form__flex .form__item {
  width: 450px;
  background-image: url(/wp-content/themes/prorab/main/main-page-images/modal.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: none;
  overflow: hidden;
  border-bottom-right-radius: 10px;
}

.close-modal {
  background-image: url(/wp-content/themes/prorab/main/main-page-images/Frame\ 326.svg) !important;
  right: 0 !important;
  top: 0 !important;
}

.jquery-modal.blocker.current {
  background-color: rgba(0, 0, 0, 0) !important;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

@media only screen and (max-width: 860px) {
  .form__flex {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
  .form__item {
    width: 100% !important;
    height: 200px;
    border-bottom-right-radius: 0 !important;
  }
  .form__items {
    max-width: 100% !important;
    margin-left: 0 !important;
    padding-right: 50px !important;
    padding: 50px;
  }
  .form__header {
    font-size: 42px !important;
  }
  .form__subtitle {
    text-align: justify !important;
  }
}
@media only screen and (max-width: 500px) {
  .form__items {
    padding-right: 30px !important;
    padding: 30px !important;
  }
  .form__header {
    font-size: 26px !important;
  }
  .form__subtitle {
    font-size: 14px !important;
  }
}
/*NAV*************************************/
.nav {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
  height: 100%;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
}
.nav .nav__main {
  position: relative;
  z-index: 2;
  color: #F9F9FA;
}
.nav .nav__slash {
  position: relative;
  z-index: 2;
  margin: 0 15px;
  color: #F9F9FA;
  opacity: 0.6;
}
.nav .nav__block {
  position: relative;
  z-index: 2;
  color: #F9F9FA;
  opacity: 0.6;
}

.project__nav {
  background-image: url("/wp-content/themes/prorab/main/main-page-images/form.jpg"); /* Replace with your image path */
  background-position: center 35%;
  background-size: cover;
  height: 388px;
  width: 100%;
  position: relative;
}
.project__nav .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #2A2C2E);
  pointer-events: none;
  z-index: 1;
}

@media only screen and (max-width: 860px) {
  .nav {
    font-size: 20px !important;
  }
}
@media only screen and (max-width: 680px) {
  .nav {
    font-size: 16px !important;
  }
}