/*Reset by Eric Meyer. Thank you very much, Eric*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

body {
  font: 11px/1.231 sans-serif;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

select, input, textarea, button {
  font: 99% sans-serif;
}

pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

a:active {
  outline: none;
}

a, a:active, a:visited {
  color: var(--rd-main-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ol,
ol li {
  list-style-type: decimal;
}

small {
  font-size: 85%;
}

strong, th {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

pre {
  padding: 15px;
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

textarea {
  overflow: auto;
}

/*End of Eric Meyer's code*/
input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: middle;
}

label, input[type=button], input[type=submit], button {
  cursor: pointer;
}

button, input, select, textarea {
  margin: 0;
}

button {
  width: auto;
  overflow: visible;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  visibility: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

html {
  height: 100%;
}

* {
  font-family: "Manrope", sans-serif;
}

body {
  width: 100%;
  min-height: 100%;
  height: 100%;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body.rd-overlayed,
body.rd-navigated {
  height: 100vh;
  overflow: hidden;
}

strong {
  font-weight: 700;
}

.rd-fl {
  float: left;
}

.rd-fr {
  float: right;
}

.rd-hidden {
  display: none;
}

.rd-invisible {
  visibility: hidden;
}

.rd-transparent {
  opacity: 0;
}

@media (max-width: 640px) {
  .rd-hidden-on-mobile {
    display: none;
  }
}

#main {
  margin: 0 auto;
  min-width: 360px;
  color: var(--rd-main-black);
}
@media (max-width: 640px) {
  #main {
    overflow: hidden;
  }
}

.rd-btn {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  gap: 6px;
  padding: 16px;
  box-sizing: border-box;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  border-radius: 2px;
}
.rd-btn.rd-btn-primary {
  color: var(--rd-main-black);
  background: var(--rd-main-primary);
  border: 1px solid var(--rd-main-primary);
}
.rd-btn.rd-btn-primary svg {
  stroke: var(--rd-main-black);
}
.rd-btn.rd-btn-primary:hover {
  color: var(--rd-btn-secondary-hover);
  background: var(--rd-btn-primary-hover);
  text-decoration: none;
  opacity: 1;
}
.rd-btn.rd-btn-primary:hover svg {
  stroke: var(--rd-btn-secondary-hover);
}
.rd-btn.rd-btn-primary:active {
  color: var(--rd-btn-secondary-active);
  background: var(--rd-btn-primary-active);
}
.rd-btn.rd-btn-primary:active svg {
  stroke: var(--rd-btn-secondary-active);
}
.rd-btn.rd-btn-secondary {
  color: var(--rd-main-primary);
  background: var(--rd-main-black);
  border: 1px solid var(--rd-main-black);
}
.rd-btn.rd-btn-secondary svg {
  stroke: var(--rd-main-primary);
}
.rd-btn.rd-btn-secondary:hover {
  color: var(--rd-btn-primary-hover);
  background: var(--rd-btn-secondary-hover);
}
.rd-btn.rd-btn-secondary:hover svg {
  stroke: var(--rd-btn-primary-hover);
}
.rd-btn.rd-btn-secondary:active {
  color: var(--rd-btn-primary-active);
  background: var(--rd-btn-secondary-active);
}
.rd-btn.rd-btn-secondary:active svg {
  stroke: var(--rd-btn-primary-active);
}
.rd-btn.rd-btn-colorline {
  color: var(--rd-main-black);
  background: none;
  text-decoration: none;
  border: 1px solid var(--rd-main-primary);
}
.rd-btn.rd-btn-colorline svg {
  stroke: var(--rd-main-black);
}
.rd-btn.rd-btn-colorline:hover {
  color: var(--rd-btn-primary-hover);
  background: var(--rd-main-white50);
  border: 1px solid var(--rd-btn-primary-hover);
}
.rd-btn.rd-btn-colorline:hover svg {
  stroke: var(--rd-btn-primary-hover);
}
.rd-btn.rd-btn-colorline:active {
  color: var(--rd-btn-primary-active);
  background: var(--rd-main-white35);
  border: 1px solid var(--rd-btn-primary-active);
}
.rd-btn.rd-btn-colorline:active svg {
  stroke: var(--rd-btn-primary-active);
}
.rd-btn.rd-btn-whiteline {
  color: var(--rd-main-white);
  background: none;
  border: 1px solid var(--rd-main-white);
}
.rd-btn.rd-btn-whiteline svg {
  stroke: var(--rd-main-white);
}
.rd-btn.rd-btn-whiteline:hover {
  color: var(--rd-btn-whiteline-hover);
  border: 1px solid var(--rd-btn-whiteline-hover);
}
.rd-btn.rd-btn-whiteline:hover svg {
  stroke: var(--rd-btn-whiteline-hover);
}
.rd-btn.rd-btn-whiteline:active {
  color: var(--rd-btn-whiteline-active);
  border: 1px solid var(--rd-btn-whiteline-active);
}
.rd-btn.rd-btn-whiteline:active svg {
  stroke: var(--rd-btn-whiteline-active);
}
.rd-btn.rd-btn-link {
  color: var(--rd-main-primary);
  background: none;
  border: 1px solid transparent;
  display: inline-flex;
  padding: 16px 0;
}
.rd-btn.rd-btn-link svg {
  stroke: var(--rd-main-primary);
}
.rd-btn.rd-btn-link:hover {
  color: var(--rd-btn-primary-hover);
}
.rd-btn.rd-btn-link:hover svg {
  stroke: var(--rd-btn-primary-hover);
}
.rd-btn.rd-btn-link:active {
  color: var(--rd-btn-primary-active);
}
.rd-btn.rd-btn-link:active svg {
  stroke: var(--rd-btn-primary-active);
}

.rd-btn-colorline a {
  color: var(--rd-main-black);
  border: 1px solid var(--rd-main-primary);
  text-decoration: none;
}
.rd-btn-colorline a:hover {
  color: var(--rd-btn-primary-hover);
  border: 1px solid var(--rd-btn-primary-hover);
}
.rd-btn-colorline a:active {
  color: var(--rd-btn-primary-active);
  border: 1px solid var(--rd-btn-primary-active);
}

.rd-btn-whiteline a {
  color: var(--rd-main-white);
  text-decoration: none;
}
.rd-btn-whiteline a:hover {
  color: var(--rd-btn-whiteline-hover);
}
.rd-btn-whiteline a:active {
  color: var(--rd-btn-whiteline-active);
  border: 1px solid var(--rd-btn-whiteline-active);
}

.rd-btn-primary a {
  color: var(--rd-main-black);
  text-decoration: none;
}
.rd-btn-primary a:hover {
  color: var(--rd-btn-secondary-hover);
  background: var(--rd-btn-primary-hover);
  text-decoration: none;
  opacity: 1;
}
.rd-btn-primary a:hover svg {
  stroke: var(--rd-btn-secondary-hover);
}
.rd-btn-primary a:active {
  color: var(--rd-btn-secondary-active);
}

.rd-show-more .rd-alt-btn-text {
  display: none;
}
.rd-show-more.rd-hide-more .rd-btn-text {
  display: none;
}
.rd-show-more.rd-hide-more .rd-btn-text.rd-alt-btn-text {
  display: block;
}
.rd-show-more.rd-hide-more .rd-icon {
  transform: rotatex(180deg);
}

/*INDEX*/
.rd-row {
  box-sizing: border-box;
  padding: 120px 10% 0 10%;
  position: relative;
}
@media (max-width: 940px) {
  .rd-row {
    padding: 45px 5% 0 5%;
  }
}
.rd-row.rd-row-var {
  background: var(--rd-main-black);
  color: var(--rd-main-white);
}
.rd-row.rd-row-accent {
  background: var(--rd-main-secondary);
  padding-bottom: 120px;
}
@media (max-width: 940px) {
  .rd-row.rd-row-accent {
    padding-bottom: 90px;
  }
}
.rd-row.rd-row-contact {
  padding-bottom: 120px;
}
@media (max-width: 940px) {
  .rd-row.rd-row-contact {
    padding-bottom: 90px;
  }
}
@media (max-width: 940px) and (max-width: 640px) {
  .rd-row.rd-row-contact {
    padding: 90px 5% 90px 5%;
  }
}
.rd-row.rd-row-contact:has(.contact-form-var) {
  background: var(--rd-main-secondary);
}
@media (max-width: 640px) {
  .rd-row.rd-row-contact:has(.contact-form-var) {
    padding: 90px 5% 90px 5%;
  }
}
.rd-row.rd-row-portf {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media (max-width: 940px) {
  .rd-row.rd-row-portf {
    padding-top: 40px;
    padding-bottom: 90px;
  }
}
.rd-row.rd-row-video {
  padding-bottom: 90px;
}
.rd-row h3 {
  padding-bottom: 60px;
}
@media (max-width: 940px) {
  .rd-row h3 {
    padding-bottom: 40px;
  }
}

.rd-inline-indent {
  display: block;
  padding-left: 150px;
}
@media (max-width: 1200px) {
  .rd-inline-indent {
    padding-left: 120px;
  }
}
@media (max-width: 1200px) and (max-width: 940px) {
  .rd-inline-indent {
    padding-left: 90px;
  }
}
@media (max-width: 1200px) and (max-width: 940px) and (max-width: 640px) {
  .rd-inline-indent {
    padding-left: 0;
  }
}
@media (max-width: 1200px) and (max-width: 940px) and (max-width: 640px) and (max-width: 480px) {
  .rd-inline-indent {
    /*display: inline;*/
  }
}

.rd-row-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: center;
  gap: 16px;
}
.rd-row-title h3 {
  padding-bottom: 0;
}

.rd-intro {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

@media (max-width: 940px) {
  .rd-intro {
    min-height: 100vh;
    height: auto;
  }
}

.rd-intro-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-content: stretch;
  align-items: flex-start;
  box-sizing: border-box;
  padding-top: 180px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
  color: var(--rd-main-white);
}


@media (max-width: 1200px) {
  .rd-intro-content {
    padding-top: 180px;
  }
}
@media (max-width: 1200px) and (max-width: 940px) {
  .rd-intro-content {
    width: 100%;
    padding-top: 180px;
  }
}
@media (max-width: 1200px) and (max-width: 940px) and (max-width: 640px) {
  .rd-intro-content {
    padding-top: 130px;
    padding-bottom: 40px;
    position: relative;
    min-height: 100vh;
    height: 100%;
  }
}

.rd-intro-content h1 {
  display: block;
  /*width: 944px;*/
  width: 980px;
  text-transform: uppercase;
}
.rd-intro-content h1 .rd-inline-indent {
  padding-left: 120px;
}
@media (max-width: 940px) {
  .rd-intro-content h1 .rd-inline-indent {
    padding-left: 90px;
  }
}
@media (max-width: 940px) and (max-width: 640px) {
  .rd-intro-content h1 .rd-inline-indent {
    padding-left: 0;
  }
}
@media (max-width: 1200px) {
  .rd-intro-content h1 {
    /*width: 754px;*/
    width: 790px;
  }
}
@media (max-width: 1200px) and (max-width: 940px) {
  .rd-intro-content h1 {
    /*width: 400px;*/
    width: 450px;
  }
}
@media (max-width: 1200px) and (max-width: 940px) and (max-width: 640px) {
  .rd-intro-content h1 {
    width: 320px;
  }
}
@media (max-width: 1200px) and (max-width: 940px) and (max-width: 640px) and (max-width: 380px) {
  .rd-intro-content h1 {
    width: 310px;
  }
}

.rd-intro-content h2.h1 {
  display: block;
  /*width: 944px;*/
  width: 980px;
  text-transform: uppercase;
}
.rd-intro-content h2.h1 .rd-inline-indent {
  padding-left: 120px;
}
@media (max-width: 940px) {
  .rd-intro-content h2.h1 .rd-inline-indent {
    padding-left: 90px;
  }
}
@media (max-width: 940px) and (max-width: 640px) {
  .rd-intro-content h2.h1 .rd-inline-indent {
    padding-left: 0;
  }
}
@media (max-width: 1200px) {
  .rd-intro-content h2.h1 {
    /*width: 754px;*/
    width: 790px;
  }
}
@media (max-width: 1200px) and (max-width: 940px) {
  .rd-intro-content h2.h1 {
    /*width: 400px;*/
    width: 450px;
  }
}
@media (max-width: 1200px) and (max-width: 940px) and (max-width: 640px) {
  .rd-intro-content h2.h1 {
    width: 320px;
  }
}
@media (max-width: 1200px) and (max-width: 940px) and (max-width: 640px) and (max-width: 380px) {
  .rd-intro-content h2.h1 {
    width: 310px;
  }
}

.rd-intro-title h3 {
  padding-bottom: 44px;
}

.rd-intro-title h1.h1-mini {
  padding-bottom: 44px;
  width: 100%;
}

.rd-intro-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
}
@media (max-width: 640px) {
  .rd-intro-footer {
    flex-direction: column;
    align-items: stretch;
  }
}

.rd-intro-info h5 {
  max-width: 520px;
  padding-bottom: 40px;
  margin-top: 20px;
}
@media (max-width: 940px) {
  .rd-intro-info h5 {
    padding-bottom: 30px;
  }
}
@media (max-width: 940px) and (max-width: 640px) {
  .rd-intro-info h5 {
    width: 100%;
    max-width: 100%;
  }
}

.rd-intro-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 30px;
}
.rd-intro-buttons .rd-btn {
  min-width: 245px;
}
@media (max-width: 940px) {
  .rd-intro-buttons {
    flex-direction: column;
    gap: 16px;
  }
  .rd-intro-buttons.rd-blog-buttons {
    flex-direction: row;
  }
}
@media (max-width: 940px) and (max-width: 640px) {
  .rd-intro-buttons.rd-blog-buttons {
    flex-direction: column;
  }
}
.rd-intro-buttons.rd-portfolio-buttons {
  flex-wrap: wrap;
  gap: 16px;
}
.rd-intro-buttons.rd-portfolio-buttons .rd-btn {
  min-width: auto;
}

.button_wave {
  position: relative;
}

.button_waves {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.button_waves .wave1,
.button_waves .wave2,
.button_waves .wave3 {
  border-radius: 2px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  opacity: 0.2;
  border: solid 2px var(--rd-main-primary);
  left: 50%;
  top: 50%;
}
.button_waves .wave1 {
  -webkit-animation: button_wave_anim 2s linear infinite 0.25s;
  animation: button_wave_anim 2s linear infinite 0.25s;
}
.button_waves .wave2 {
  -webkit-animation: button_wave_anim 2s linear infinite 1.25s;
  animation: button_wave_anim 2s linear infinite 1.25s;
}
.button_waves .wave3 {
  -webkit-animation: button_wave_anim 2s linear infinite 2.25s;
  animation: button_wave_anim 2s linear infinite 2.25s;
}

.button_waves-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@keyframes button_wave_anim {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.2;
  }
  50% {
    width: calc(100% + 26px);
    height: calc(100% + 21px);
    opacity: 0.3;
  }
  100% {
    width: calc(100% + 40px);
    height: calc(100% + 39px);
    opacity: 0.05;
  }
}
.rd-award {
  /* width: 100px; */
  min-width: 100px;
  height: 294px;
  background: url("../img/.png") no-repeat center center/cover;
}
@media (max-width: 640px) {
  .rd-award {
    width: 172px;
    height: 100px;
    background: url("../img/.png") no-repeat center center/cover;
    margin: 0 auto;
  }
}

.rd-video-holder {
  position: absolute;
  inset: 0;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.main-banner .rd-video-holder {
  background: url("../img/main-video-bg.jpg") no-repeat center center/cover;
}

.rd-video-bg {
  display: block;
  object-fit: cover;
  object-position: bottom;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/***HEADER*****/
.rd-header-holder {
  position: fixed;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--rd-main-primary);
  background: var(--rd-main-black35);
  backdrop-filter: blur(8px);
  width: 100%;
}

.rd-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: center;
  gap: 24px;
  width: 80%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 24px 0;
  color: var(--rd-main-white);
}
@media (max-width: 940px) {
  .rd-header {
    width: 100%;
    padding-right: 5%;
    padding-left: 5%;
  }
}
@media (max-width: 520px) {
  .rd-header {
    flex-wrap: wrap;
    padding: 8px 0 16px;
    padding-right: 5%;
    padding-left: 5%;
    gap: 12px;
  }
}

.rd-riart-info {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  gap: 20px;
}

@media (max-width: 520px) {
  .rd-riart-logo {
    display: none;
  }
}

.rd-riart-logo-mobile {
  display: none;
  height: 54px;
}
@media (max-width: 520px) {
  .rd-riart-logo-mobile {
    display: block;
  }
}

.rd-riart-logo img {
  display: block;
  width: 48px;
  height: 48px;
}

.rd-riart-name {
  width: 170px;
}
@media (max-width: 1406px) {
  .rd-riart-name {
    display: none;
  }
}
@media (max-width: 1200px) {
  .rd-riart-name {
    display: block;
  }
}
@media (max-width: 520px) {
  .rd-riart-name {
    display: none;
  }
}

.rd-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1200px) {
  .rd-nav {
    display: none;
  }
}
.rd-nav li {
  position: relative;
}
.rd-nav li .rd-sub-nav {
  position: absolute;
  top: calc(100% - 1px);
  left: -16px;
  padding: 16px 0;
  flex-direction: column;
  gap: 7px;
  border-radius: 2px;
  border: 1px solid var(--rd-main-primary);
  background: var(--rd-main-black50);
  box-shadow: 0px 16px 25px 0px rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(17px);
  display: none;
}
.rd-nav li .rd-sub-nav li {
  padding: 0 16px;
}
.rd-nav li .rd-sub-nav li .rd-sub-nav {
  top: -16px;
  left: calc(100% - 1px);
}
.rd-nav li:hover {
  z-index: 10;
}
.rd-nav li:hover .rd-sub-nav {
  display: flex;
}
.rd-nav li:hover .rd-sub-nav li .rd-sub-nav {
  display: none;
}
.rd-nav li:hover .rd-sub-nav li:hover .rd-sub-nav {
  display: flex;
}

.rd-nav a,
.rd-nav a:visited {
  padding: 4px;
  font-size: 14px;
  line-height: 18px;
  white-space: nowrap;
  color: var(--rd-main-white);
}
.rd-nav a:hover,
.rd-nav a:visited:hover {
  color: var(--rd-main-primary);
  text-decoration: none;
}

.rd-riart-contacts {
  white-space: nowrap;
}
.rd-riart-contacts a, .rd-riart-contacts a:visited {
  color: var(--rd-main-white);
}
.rd-riart-contacts a:hover, .rd-riart-contacts a:visited:hover {
  color: var(--rd-main-primary);
}
@media (max-width: 940px) {
  .rd-riart-contacts {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 520px) {
  .rd-riart-contacts {
    display: none;
  }
}

.rd-riart-contacts-mobile {
  display: none;
}
@media (max-width: 520px) {
  .rd-riart-contacts-mobile {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    width: 100%;
  }
}

.rd-riart-contacts-mobile li {
  font-size: 14px;
  line-height: 16px;
}
@media (max-width: 400px) {
  .rd-riart-contacts-mobile li {
    font-size: 12px;
    line-height: 14px;
  }
}
@media (max-width: 345px) {
  .rd-riart-contacts-mobile li {
    font-size: 11px;
    line-height: 14px;
  }
}

.header__contact {
  display: flex;
  gap: 12px;
}
@media (max-width: 350px) {
  .header__contact {
    gap: 6px;
  }
}

.rd-riart-contacts li {
  font-size: 14px;
  line-height: 18px;
  list-style: none;
  text-align: right;
}

@media (max-width: 940px) {
  .rd-header-holder .rd-riart-contacts li:last-of-type {
    display: none;
  }
}
.rd-recall {
  white-space: nowrap;
}

@media (max-width: 940px) {
  .rd-recall.header-callback {
    display: none;
  }
}
.rd-recall.header-callback .rd-header-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-content: stretch;
  align-items: center;
  gap: 24px;
}

.rd-burger {
  border: 1px solid var(--rd-main-white);
  border-radius: 2px;
  padding: 12px;
  width: 24px;
  height: 24px;
  fill: var(--rd-main-white);
  display: none;
  cursor: pointer;
}
.rd-burger svg {
  display: block;
  stroke: var(--rd-main-white);
  stroke-width: 0.1;
}
@media (max-width: 1200px) {
  .rd-burger {
    display: block;
  }
}
@media (max-width: 1200px) and (max-width: 940px) {
  .rd-burger {
    padding: 8px;
  }
}

/******FOOTER********/
.rd-footer-holder {
  background: var(--rd-main-black);
  padding: 60px 10%;
  box-sizing: border-box;
  color: var(--rd-main-white);
}
@media (max-width: 940px) {
  .rd-footer-holder {
    padding: 30px 5%;
  }
}

.rd-footer-nav-list {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
}

.rd-footer-nav-item {
  width: 20%;
  min-width: 20%;
  padding: 0 5px 40px 5px;
  box-sizing: border-box;
}
@media (max-width: 940px) {
  .rd-footer-nav-item {
    width: 50%;
    min-width: 50%;
    padding: 0 10px 40px 10px;
  }
}
.rd-footer-nav-item h5 {
  margin-bottom: 20px;
  font-weight: 600;
}
.rd-footer-nav-item a,
.rd-footer-nav-item a:visited,
.rd-footer-nav-item a:focus {
  color: var(--rd-main-white);
}
.rd-footer-nav-item li {
  font-size: 14px;
  line-height: 18px;
  padding: 4px 0;
}
.rd-footer-nav-item p {
  font-size: 14px;
  line-height: 18px;
}

.rd-footer-contacts {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 940px) {
  .rd-footer-contacts {
    width: 100%;
    flex: 1 1 auto;
  }
}

.rd-copy-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: center;
  align-items: flex-end;
  gap: 80px;
}
.rd-copy-holder .riart-name {
  width: auto;
  min-width: 170px;
  max-width: 240px;
}
.rd-copy-holder .rd-copy {
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 640px) {
  .rd-copy-holder {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

.rd-copy-infotime {
  color: #a1a1a1;
  margin-top: 5px;
  font-size: 14px;
  line-height: 18px;
}

.rd-sn-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 0;
}
.rd-sn-links li {
  padding: 0;
}

/*IMG list*/
.rd-list-title {
  margin-bottom: 30px;
}

.rd-img-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.rd-img-list li {
  aspect-ratio: 1/1;
  /* background: var(--rd-main-black16); */
  width: calc(50% - 5px);
  position: relative;
  cursor: pointer;
}
@media (max-width: 640px) {
  .rd-img-list li {
    width: 100%;
    aspect-ratio: 3/1;
    min-height: 324px;
  }
}
.rd-img-list li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rd-img-list li .rd-img-list-cover {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
  position: absolute;
  inset: 0;
  padding: 30px 30px 10px 30px;
  background: var(--rd-main-black35);
  backdrop-filter: blur(10px);
  color: var(--rd-main-white);
  opacity: 0;
  transition: opacity ease 0.4s;
}
@media (max-width: 1200px) {
  .rd-img-list li .rd-img-list-cover {
    padding: 26px 26px 10px 26px;
  }
}
@media (max-width: 1200px) and (max-width: 940px) {
  .rd-img-list li .rd-img-list-cover {
    padding: 22px 22px 10px 22px;
  }
}
.rd-img-list li:hover .rd-img-list-cover {
  opacity: 1;
  text-decoration: none;
}

.rd-breadcrumb {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  gap: 0.1em;
  color: var(--rd-main-white50);
}
.rd-breadcrumb.rd-breadcrumb-pages {
  color: var(--rd-main-black);
  margin-bottom: 60px;
}
@media (max-width: 940px) {
  .rd-breadcrumb.rd-breadcrumb-pages {
    margin-bottom: 20px;
  }
}
.rd-breadcrumb.rd-breadcrumb-pages .rd-breadcrumb-item,
.rd-breadcrumb.rd-breadcrumb-pages .rd-breadcrumb-item.active a {
  color: var(--rd-main-black);
}
.rd-breadcrumb.rd-breadcrumb-pages .rd-breadcrumb-item:after,
.rd-breadcrumb.rd-breadcrumb-pages .rd-breadcrumb-item.active a:after {
  display: inline;
  content: "/";
  padding: 0 0.3em;
  color: var(--rd-main-black35);
}
.rd-breadcrumb.rd-breadcrumb-pages .rd-breadcrumb-item:last-child:after,
.rd-breadcrumb.rd-breadcrumb-pages .rd-breadcrumb-item.active a:last-child:after {
  display: none;
}
.rd-breadcrumb .rd-breadcrumb-item {
  font-size: 16px;
  line-height: 24px;
}

.rd-cover-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-end;
  align-items: center;
  gap: 20px;
}
.rd-cover-info h4 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rd-cover-info .rd-room-area {
  color: var(--rd-main-primary);
}

.rd-goto {
  border: 1px solid var(--rd-main-white);
  border-radius: 2px;
  padding: 15px;
  cursor: pointer;
  box-sizing: border-box;
}
.rd-goto svg {
  display: block;
  width: 24px;
  height: 24px;
  stroke: var(--rd-main-white);
  stroke-width: 1.4;
}

/*Flow 2columns*/
.rd-flow-2col {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-end;
  align-items: stretch;
  gap: 40px;
  padding-bottom: 90px;
}
@media (max-width: 640px) {
  .rd-flow-2col {
    gap: 0;
    flex-direction: column;
  }
}
.rd-flow-2col .rd-flow-col {
  width: calc(50% - 20px);
}
.rd-flow-2col .rd-flow-col.rd-flow-wide {
  width: 100%;
}
.rd-flow-2col .rd-flow-col.rd-flow-wide .rd-flow-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}
@media (max-width: 640px) {
  .rd-flow-2col .rd-flow-col.rd-flow-wide .rd-flow-img {
    min-height: 240px;
  }
}
@media (max-width: 640px) {
  .rd-flow-2col .rd-flow-col.rd-flow-wide {
    width: auto;
    margin: 0 -5.5%;
  }
}
@media (max-width: 640px) {
  .rd-flow-2col .rd-flow-col {
    width: 100%;
  }
}
.rd-flow-2col .rd-flow-col:last-child, .rd-flow-2col .rd-flow-col:nth-last-child(2) {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rd-main-primary);
}
@media (max-width: 640px) {
  .rd-flow-2col .rd-flow-col:last-child, .rd-flow-2col .rd-flow-col:nth-last-child(2) {
    border-bottom: none;
  }
  .rd-flow-2col .rd-flow-col:last-child:last-child, .rd-flow-2col .rd-flow-col:nth-last-child(2):last-child {
    padding-bottom: 0;
  }
}
.rd-flow-2col .rd-flow-col .rd-inline-indent {
  color: var(--rd-main-primary);
}
.rd-flow-2col .rd-flow-col h4 {
  color: var(--rd-main-primary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.rd-flow-2col .rd-flow-col p {
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .rd-flow-2col .rd-flow-col p:last-child {
    margin-bottom: 0;
  }
}
.rd-flow-2col .rd-flow-img-title {
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rd-main-black16);
  letter-spacing: 0.08em;
  margin-top: -2em;
}
@media (max-width: 640px) {
  .rd-flow-2col .rd-flow-img-title {
    margin-top: 10px;
  }
  .rd-flow-2col .rd-flow-img-title br {
    display: none;
  }
}

/*Slider*/
.rd-slider-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.rd-slider-nav .rd-btn {
  padding: 15px;
}
@media (max-width: 940px) {
  .rd-slider-nav .rd-btn {
    padding: 11px;
  }
}

.rd-slider-holder {
  padding-top: 60px;
  overflow: hidden;
}
@media (max-width: 940px) {
  .rd-slider-holder {
    padding-top: 40px;
  }
}
@media (max-width: 940px) and (max-width: 640px) {
  .rd-slider-holder {
    margin: 0 -5.5%;
    overflow: hidden;
  }
}

.rd-slider-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 640px) {
  .rd-slider-list {
    padding-left: 5.5%;
    padding-right: 5.5%;
  }
}
.rd-slider-list .rd-slider-item {
  height: 400px;
  /* width: calc(50% - 5px);
  min-width: calc(50% - 5px);
  width: 600px; */
  position: relative;
  cursor: pointer;
  opacity: 1;
}
@media (max-width: 940px) {
  .rd-slider-list .rd-slider-item {
    height: 300px;
    width: auto;
    min-width: auto;
    aspect-ratio: 1/1;
  }
}
.rd-slider-list .rd-slider-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rd-slider-list .rd-slider-item .rd-item-cover {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  position: absolute;
  inset: 0;
  background: var(--rd-main-black50);
}
.rd-slider-list .rd-slider-item .rd-item-cover h5 {
  border-top: 1px solid var(--rd-main-primary);
  border-bottom: 1px solid var(--rd-main-primary);
  background: var(--rd-main-black16);
  backdrop-filter: blur(8px);
  padding: 24px 16px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04;
  color: var(--rd-main-white);
  text-transform: uppercase;
}
.rd-slider-list .rd-slider-item:hover .rd-item-cover {
  background: var(--rd-main-black20);
}
.rd-slider-list .rd-slider-item:hover .rd-item-cover h5 {
  color: var(--rd-main-primary);
}
.rd-slider-list.rd-services-list {
  flex-wrap: wrap;
  margin-bottom: 0;
  padding: 0;
}
.rd-slider-list.rd-services-list .rd-slider-item {
  height: 300px;
  aspect-ratio: auto;
}
@media (max-width: 1200px) {
  .rd-slider-list.rd-services-list .rd-slider-item {
    height: 360px;
  }
}
@media (max-width: 1200px) and (max-width: 940px) {
  .rd-slider-list.rd-services-list .rd-slider-item {
    height: 250px;
    width: calc(50% - 5px);
  }
}
@media (max-width: 1200px) and (max-width: 640px) {
  .rd-slider-list.rd-services-list .rd-slider-item {
    height: 250px;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .rd-slider-list.rd-review-slider {
    margin: 0 -5.5%;
  }
}
.rd-slider-list.rd-review-slider .rd-slider-item {
  height: 550px;
  width: 100%;
}
@media (max-width: 1200px) and (max-width: 940px) {
  .rd-slider-list.rd-review-slider .rd-slider-item {
    height: 750px;
    min-width: 75%;
  }
}
.rd-slider-list.rd-review-slider .rd-slider-item .rd-review-content {
  justify-content: space-between;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  overflow: auto;
  padding: 24px;
  box-sizing: border-box;
  background: var(--rd-main-black50);
  backdrop-filter: blur(10px);
}
@media (max-width: 940px) {
  .rd-slider-list.rd-review-slider .rd-slider-item .rd-review-content {
    width: 100%;
    padding: 16px 20px 20px 20px;
    bottom: auto;
    min-height: 50%;
    max-height: 100%;
  }
}
.rd-slider-list.rd-review-slider .rd-slider-item .rd-review-content .rd-review-text {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: flex-start;
  gap: 12px;
}
.rd-slider-list.rd-review-slider .rd-slider-item .rd-review-content .rd-review-text p {
  color: var(--rd-main-white);
}
@media (max-width: 940px) {
  .rd-slider-list.rd-review-slider .rd-slider-item .rd-review-content .rd-review-text p {
    font-size: 14px;
    line-height: 18px;
  }
}
.rd-slider-list.rd-review-slider .rd-slider-item .rd-review-content .rd-review-quote {
  font-family: "Oranienbaum", serif;
  color: var(--rd-main-primary);
  font-size: 96px;
  line-height: 96px;
  width: 44px;
  min-width: 44px;
}
@media (max-width: 940px) {
  .rd-slider-list.rd-review-slider .rd-slider-item .rd-review-content .rd-review-quote {
    display: none;
  }
}
.rd-slider-list.rd-review-slider .rd-slider-item .rd-review-content .rd-review-author {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: flex-start;
  gap: 12px;
}
.rd-slider-list.rd-review-slider .rd-slider-item .rd-review-content .rd-review-author .rd-author-name {
  color: var(--rd-main-white);
  margin-bottom: 4px;
}
.rd-slider-list.rd-review-slider .rd-slider-item .rd-review-content .rd-review-author .rd-author-project {
  color: var(--rd-main-primary);
  margin-bottom: 20px;
}
.rd-slider-list.rd-review-slider .rd-slider-item .rd-review-content .rd-review-author .rd-btn {
  padding: 12px;
}
@media (max-width: 640px) {
  .rd-slider-list.rd-review-slider .rd-slider-item .rd-review-content .rd-review-author .rd-btn {
    letter-spacing: initial;
    padding: 8px;
  }
}
.rd-slider-list.rd-review-slider .rd-slider-item .rd-review-content .rd-author-avatar {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--rd-main-primary);
  overflow: hidden;
}
@media (max-width: 940px) {
  .rd-slider-list.rd-review-slider .rd-slider-item .rd-review-content .rd-author-avatar {
    height: 32px;
    width: 32px;
    min-width: 32px;
  }
}
.rd-slider-list.rd-review-slider .rd-slider-item .rd-review-content .rd-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rd-services-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
  padding: 0;
}
@media (max-width: 640px) {
  .rd-services-list {
    /*
    padding-left: 5.5%;
    padding-right: 5.5%;
    */
  }
}
.rd-services-list .rd-services-item {
  height: 300px;
  width: calc(50% - 5px);
  /*
  min-width: calc(50% - 5px);
      width: 600px;
  */
  position: relative;
  cursor: pointer;
  opacity: 1;
  aspect-ratio: auto;
}
@media (max-width: 1200px) {
  .rd-services-list .rd-services-item {
    height: 360px;
  }
}
@media (max-width: 1200px) and (max-width: 940px) {
  .rd-services-list .rd-services-item {
    height: 250px;
    width: calc(50% - 5px);
    min-width: auto;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 1200px) and (max-width: 940px) and (max-width: 640px) {
  .rd-services-list .rd-services-item {
    height: 250px;
    width: 100%;
  }
}
.rd-services-list .rd-services-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rd-services-list .rd-services-item .rd-services-item-cover {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  position: absolute;
  inset: 0;
  background: var(--rd-main-black50);
}
.rd-services-list .rd-services-item .rd-services-item-cover h5 {
  border-top: 1px solid var(--rd-main-primary);
  border-bottom: 1px solid var(--rd-main-primary);
  background: var(--rd-main-black16);
  backdrop-filter: blur(8px);
  padding: 24px 16px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04;
  color: var(--rd-main-white);
}
.rd-services-list .rd-services-item:hover .rd-services-item-cover {
  background: var(--rd-main-black20);
}
.rd-services-list .rd-services-item:hover .rd-services-item-cover h5 {
  color: var(--rd-main-primary);
}

/*****Warranty*******/
.rd-warranty-title {
  margin-bottom: 30px;
}
.rd-warranty-title h3 {
  margin-bottom: 0;
}
.rd-warranty-title h3 .rd-inline-var {
  color: var(--rd-main-primary);
}

.rd-teaser-2col {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: stretch;
  padding-bottom: 60px;
}
.rd-teaser-2col .rd-teaser-col {
  width: calc(50% - 10px);
  padding: 28px 0;
  border-top: 1px solid var(--rd-main-primary);
  border-bottom: 1px solid var(--rd-main-primary);
}
.rd-teaser-2col .rd-teaser-col h1,
.rd-teaser-2col .rd-teaser-col .p-title_h1 {
  color: var(--rd-main-primary);
}
.rd-teaser-2col .rd-teaser-col h6 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rd-reality-title {
  margin-bottom: 30px;
}
.rd-reality-title h6 {
  text-transform: uppercase;
  color: var(--rd-main-white50);
  letter-spacing: 0.04em;
}

.rd-teaser-3col {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: stretch;
  gap: 10px;
}
@media (max-width: 640px) {
  .rd-teaser-3col {
    flex-direction: column;
    gap: 30px;
  }
}
.rd-teaser-3col .rd-teaser-col {
  width: calc(33.33% - 7px);
}
@media (max-width: 640px) {
  .rd-teaser-3col .rd-teaser-col {
    width: 100%;
  }
}
.rd-teaser-3col .rd-teaser-col img {
  display: block;
  width: 100%;
  object-fit: cover;
  margin-bottom: 10px;
}
.rd-teaser-3col .rd-teaser-col h5 {
  text-transform: uppercase;
  color: var(--rd-main-primary);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/****Compare slider****/
.rd-compare {
  padding: 120px 0;
}
@media (max-width: 940px) {
  .rd-compare {
    padding: 90px 0;
  }
}

.rd-compare-block {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: stretch;
}
@media (max-width: 1200px) {
  .rd-compare-block {
    flex-direction: column;
    gap: 30px;
  }
}

.rd-compare-info {
  width: 30%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: space-around;
  align-items: stretch;
}
@media (max-width: 1200px) {
  .rd-compare-info {
    width: 100%;
    gap: 30px;
  }
}
.rd-compare-info h3 {
  padding-bottom: 0;
  color: var(--rd-main-primary);
  text-transform: initial;
}

.rd-compare-content {
  padding: 30px 0;
  border-top: 1px solid var(--rd-main-primary);
  border-bottom: 1px solid var(--rd-main-primary);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-content: space-around;
  align-items: stretch;
  gap: 28px;
}
@media (max-width: 1200px) {
  .rd-compare-content {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .rd-compare-content .rd-compare-item {
    width: calc(50% - 14px);
  }
}

.rd-compare-slider {
  aspect-ratio: 787/460;
  width: 65%;
  position: relative;
}
@media (max-width: 1200px) {
  .rd-compare-slider {
    width: 100%;
  }
}
@media (max-width: 1200px) and (max-width: 640px) {
  .rd-compare-slider {
    width: auto;
  }
}
.rd-compare-slider .rd-compare-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.rd-compare-slider .rd-compare-slide img {
  display: block;
  aspect-ratio: 787/460;
  object-fit: cover;
  height: 100%;
}
.rd-compare-slider .rd-slide-overlay {
  border-right: 1px solid var(--rd-main-primary);
}
.rd-compare-slider .rd-slider-handler {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/slide-handler.svg") no-repeat center center/cover;
}

.rd-slider-handler {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/slide-handler.svg") no-repeat center center/cover;
}

/*****TEAM****/
.rd-chiefs-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: space-around;
  align-items: stretch;
  gap: 10px;
}
@media (max-width: 1200px) {
  .rd-chiefs-list {
    flex-wrap: wrap;
  }
}
@media (max-width: 1200px) and (max-width: 640px) {
  .rd-chiefs-list {
    gap: 30px;
  }
}
.rd-chiefs-list .rd-chief-item {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: space-around;
  align-items: stretch;
  gap: 20px;
  width: calc(25% - 8px);
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rd-main-primary);
}
@media (max-width: 1024px) {
  .rd-chiefs-list .rd-chief-item {
    width: calc(50% - 5px);
    margin-bottom: 20px;
  }
  .rd-chiefs-list .rd-chief-item:last-child, .rd-chiefs-list .rd-chief-item:nth-last-child(2) {
    margin-bottom: 0;
  }
}
@media (max-width: 1024px) and (max-width: 640px) {
  .rd-chiefs-list .rd-chief-item {
    width: 100%;
    margin-bottom: 0;
  }
}
.rd-chiefs-list .rd-chief-item img {
  display: block;
  width: 100%;
  overflow-clip-margin: unset;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .rd-chiefs-list .rd-chief-item img {
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 1400px) and (max-width: 1024px) {
  .rd-chiefs-list .rd-chief-item img {
    width: 100%;
    height: 450px;
  }
}
.rd-chiefs-list .rd-chief-item .rd-chief-title h4 {
  margin-bottom: 4px;
}
.rd-chiefs-list .rd-chief-item .rd-chief-title h6 {
  font-weight: 500;
  color: var(--rd-main-primary);
}
.rd-chiefs-list .rd-chief-item .rd-chief-cite {
  font-size: 14px;
  line-height: 18px;
  padding-right: 30px;
  color: var(--rd-main-black50);
}

@media (max-width: 640px) {
  .rd-design-depart .rd-flow-2col {
    gap: 30px;
  }
}
.rd-design-depart .rd-flow-2col .rd-flow-img-title {
  margin-top: 0;
}
@media (max-width: 640px) {
  .rd-design-depart .rd-flow-2col .rd-flow-img-title {
    margin-top: 10px;
  }
}
@media (max-width: 640px) {
  .rd-design-depart .rd-flow-2col .rd-flow-col:last-child, .rd-design-depart .rd-flow-2col .rd-flow-col:nth-last-child(2) {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--rd-main-primary);
  }
}

.rd-ok-list {
  margin-bottom: 20px;
}
.rd-ok-list li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 10px;
}
.rd-ok-list li:before {
  display: block;
  content: "";
  width: 24px;
  min-width: 24px;
  height: 24px;
  background: url("../img/iconOk.svg") no-repeat center center;
}
.rd-ok-list li:last-child {
  padding-bottom: 0;
}

/*****FIXPRICE******/
.rd-fix-price h3 {
  padding-bottom: 0;
}

.rd-price-paper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: center;
  align-items: flex-start;
  gap: 20px;
  max-height: 250px;
}
@media (max-width: 640px) {
  .rd-price-paper {
    flex-direction: column;
  }
}
.rd-price-paper h4 {
  padding-top: 30px;
  text-transform: uppercase;
  color: var(--rd-main-primary);
}
@media (max-width: 640px) {
  .rd-price-paper h4 {
    padding-bottom: 20px;
  }
}
.rd-price-paper img.rd-paper {
  display: block;
  aspect-ratio: 1/1;
  width: 25%;
  min-width: 25%;
  object-fit: cover;
  position: relative;
  top: -40px;
}
@media (max-width: 940px) {
  .rd-price-paper img.rd-paper {
    top: -20px;
  }
}
@media (max-width: 940px) and (max-width: 640px) {
  .rd-price-paper img.rd-paper {
    width: 100%;
    min-width: 100%;
    /* top: 0;
    margin-top: 0;
    z-index: -1; */
    display: none;
  }
}

.rd-advantage-title {
  margin-top: 16px;
}

.rd-advantage-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: center;
  align-items: stretch;
  gap: 40px;
  margin-top: 20px;
}
@media (max-width: 640px) {
  .rd-advantage-list {
    flex-direction: column;
    border-top: 1px solid var(--rd-main-primary);
    border-bottom: 1px solid var(--rd-main-primary);
    padding: 30px 0;
  }
}
.rd-advantage-list h5 {
  margin-bottom: 20px;
}
.rd-advantage-list .rd-advantage-item {
  padding: 30px 0;
  border-top: 1px solid var(--rd-main-primary);
  border-bottom: 1px solid var(--rd-main-primary);
  width: calc(33.33% - 27px);
  min-width: calc(33.33% - 27px);
}
@media (max-width: 640px) {
  .rd-advantage-list .rd-advantage-item {
    width: 100%;
    padding: 0;
    border: none;
  }
}
.rd-advantage-list .rd-advantage-item h5 {
  font-weight: 600;
  margin-bottom: 8px;
}
@media (max-width: 640px) {
  .rd-advantage-list .rd-advantage-item h5 br {
    display: none;
  }
}

.rd-price-holder {
  padding-bottom: 120px;
}
@media (max-width: 1200px) {
  .rd-price-holder {
    padding-bottom: 90px;
  }
}

.rd-price-sample {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-end;
  gap: 120px;
  margin-top: 20px;
  padding: 30px;
  background: #fff;
}
@media (max-width: 1200px) {
  .rd-price-sample {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}
@media (max-width: 1200px) and (max-width: 940px) {
  .rd-price-sample {
    padding: 20px;
  }
}

.rd-sample-legend {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: flex-start;
  gap: 20px;
  font-weight: 600;
}
.rd-sample-legend:before {
  display: block;
  content: "";
  width: 48px;
  min-width: 48px;
  height: 48px;
  background: var(--rd-main-black) url("../img/iconAttention.svg") no-repeat center center/cover;
}

.rd-budget {
  padding-bottom: 120px;
}
@media (max-width: 940px) {
  .rd-budget {
    padding-bottom: 90px;
  }
}

.rd-samples-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-end;
  align-items: flex-end;
  gap: 10px;
}
@media (max-width: 640px) {
  .rd-samples-list {
    flex-direction: column;
  }
}
.rd-samples-list .rd-sample-cell {
  width: calc(50% - 5px);
  padding-bottom: 30px;
  position: relative;
}
.rd-samples-list .rd-sample-cell.rd-budget-buttons {
  width: auto;
}
.rd-samples-list .rd-sample-cell .rd-icon {
  display: block;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--rd-main-white);
}
.rd-samples-list .rd-sample-cell.rd-before-cell .rd-icon {
  stroke: var(--rd-msg-error);
}
.rd-samples-list .rd-sample-cell.rd-after-cell .rd-icon {
  stroke: var(--rd-msg-success);
}
@media (max-width: 640px) {
  .rd-samples-list .rd-sample-cell {
    width: 100%;
    padding-bottom: 0;
  }
  .rd-samples-list .rd-sample-cell.rd-budget-buttons {
    width: 100%;
  }
  .rd-samples-list .rd-sample-cell.rd-budget-legend {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
.rd-samples-list .rd-sample-cell img {
  display: block;
  width: 100%;
}
.rd-samples-list .rd-sample-cell iframe {
  display: block;
  width: 100%;
  aspect-ratio: 560/315;
}
.rd-samples-list:last-child .rd-sample-cell {
  padding-bottom: 0;
}

/*******TURKEY**********/
.rd-turnkey-holder {
  position: relative;
  background: var(--rd-main-black) url("../img/p1.jpg") no-repeat center center/cover;
  color: var(--rd-main-white);
}
.rd-turnkey-holder .rd-row {
  padding-bottom: 120px;
  position: relative;
}
@media (max-width: 940px) {
  .rd-turnkey-holder .rd-row {
    padding-bottom: 90px;
  }
}
.rd-turnkey-holder:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: var(--rd-main-black60);
  z-index: 0;
}

.rd-turnkey {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: stretch;
  gap: 40px;
}
@media (max-width: 640px) {
  .rd-turnkey {
    flex-direction: column;
  }
}

.rd-turnkey-title {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: stretch;
  width: calc(70% - 10px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rd-main-primary);
}
.rd-turnkey-title br {
  display: none;
}
.rd-turnkey-title .rd-cupstext {
  color: var(--rd-main-white50);
}
.rd-turnkey-title .rd-inline-indent {
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .rd-turnkey-title .rd-inline-indent {
    padding: 0;
    display: inline;
  }
}
@media (max-width: 1200px) and (max-width: 940px) {
  .rd-turnkey-title .rd-inline-indent {
    white-space: normal;
  }
}
@media (max-width: 1200px) {
  .rd-turnkey-title br {
    display: block;
  }
}
@media (max-width: 1200px) and (max-width: 940px) {
  .rd-turnkey-title {
    width: calc(50% - 10px);
  }
}
@media (max-width: 1200px) and (max-width: 940px) and (max-width: 640px) {
  .rd-turnkey-title {
    padding-bottom: 0;
    border-bottom: none;
    width: 100%;
  }
}

.rd-turnkey-list {
  width: calc(30% - 10px);
  min-width: calc(30% - 10px);
}
@media (max-width: 940px) {
  .rd-turnkey-list {
    width: calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
}
@media (max-width: 940px) and (max-width: 640px) {
  .rd-turnkey-list {
    width: 100%;
  }
}

.rd-turnkey-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--rd-main-primary);
  padding: 16px;
  margin-top: 10px;
  background: var(--rd-main-black35);
  backdrop-filter: blur(10px);
}
.rd-turnkey-item:first-child {
  margin-top: 0;
}
.rd-turnkey-item .rd-icon {
  height: 48px;
  width: 48px;
  min-width: 48px;
}

/****REVIEWS****/
.rd-review-list .rd-teaser-col {
  border-bottom: 1px solid var(--rd-main-primary);
}
@media (max-width: 640px) {
  .rd-review-list .rd-teaser-col {
    border-bottom: none;
  }
}

.rd-review-img {
  position: relative;
  width: 100%;
}
.rd-review-img img {
  aspect-ratio: 60/52;
}
.rd-review-img .rd-play-review {
  padding: 4px;
  background: var(--rd-main-black);
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rd-review-img .rd-play-review .rd-icon {
  width: 42px;
  height: 42px;
}

.rd-review-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  gap: 10px;
}

.rd-review-content p {
  color: var(--rd-main-primary);
}

/******TRUST*******/
.rd-trust-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 60px;
}
@media (max-width: 640px) {
  .rd-trust-title {
    flex-direction: column;
    gap: 0;
  }
}

.rd-trust-legend {
  width: 40%;
}
@media (max-width: 1200px) {
  .rd-trust-legend {
    width: calc(50% - 20px);
  }
}
@media (max-width: 1200px) and (max-width: 640px) {
  .rd-trust-legend {
    width: 100%;
  }
}
.rd-trust-legend h4 {
  text-transform: uppercase;
  color: var(--rd-main-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.rd-logos-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  gap: 80px;
  padding: 60px 0;
  border-top: 1px solid var(--rd-main-primary);
  border-bottom: 1px solid var(--rd-main-primary);
}
@media (max-width: 940px) {
  .rd-logos-list {
    gap: 40px;
  }
}
.rd-logos-list .rd-logo-item {
  width: 100px;
  min-width: 100px;
}
@media (max-width: 940px) {
  .rd-logos-list .rd-logo-item {
    width: 80px;
    min-width: 80px;
  }
}
.rd-logos-list .rd-logo-item img {
  display: block;
  width: 100%;
}

.rd-overlayed .rd-popup-overlay.rd-mobile-review,
.rd-navigated .rd-popup-overlay.rd-mobile-nav,
.rd-sheeted .rd-popup-overlay.rd-bottom-sheet {
  display: flex;
}

@media (max-width: 640px) {
  .rd-sheeted .rd-popup-overlay.rd-bottom-sheet {
    align-items: safe flex-end;
  }
  .rd-sheeted .rd-popup-overlay.rd-bottom-sheet .rd-popup {
    max-height: 80%;
  }
}

.rd-popup-overlay {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  justify-content: safe center;
  align-items: safe center;
  background: var(--rd-main-black50);
  backdrop-filter: blur(8px);
}
.rd-popup-overlay.rd-mobile-nav {
  background: var(--rd-main-black);
  color: var(--rd-main-white);
  backdrop-filter: none;
}
.rd-popup-overlay.rd-mobile-nav .rd-popup {
  background: var(--rd-main-black);
  color: var(--rd-main-white);
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}
.rd-popup-overlay.rd-bottom-sheet .rd-popup-content {
  padding: 0 30px 30px 30px;
}
.rd-popup-overlay .rd-popup {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
  max-width: 640px;
  width: 90%;
  background: var(--rd-main-white);
  min-height: 40%;
  max-height: 90%;
}
@media (max-width: 640px) {
  .rd-popup-overlay .rd-popup {
    width: 100%;
    max-height: 100%;
  }
}

.rd-popup-overlay.rd-mobile-nav {
  display: none;
}

.rd-popup-header,
.rd-popup-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: center;
  gap: 18px;
}
.rd-popup-header .rd-popup-title,
.rd-popup-header .rd-popup-subtitle,
.rd-popup-footer .rd-popup-title,
.rd-popup-footer .rd-popup-subtitle {
  flex: 1 1 auto;
  padding: 0 12px;
}
@media (max-width: 940px) {
  .rd-popup-header .rd-popup-title,
.rd-popup-header .rd-popup-subtitle,
.rd-popup-footer .rd-popup-title,
.rd-popup-footer .rd-popup-subtitle {
    padding: 0;
  }
}
.rd-popup-header .rd-close-popup,
.rd-popup-footer .rd-close-popup {
  padding: 12px;
  box-sizing: border-box;
  cursor: pointer;
}

.rd-popup-media img, .rd-popup-media video {
  display: block;
  width: 100%;
}

.rd-popup-content {
  flex: 1 1 auto;
  overflow: auto;
  padding: 0 30px 30px 30px;
}
@media (max-width: 640px) {
  .rd-popup-content {
    padding: 0 18px 18px 18px;
  }
}

/*********POPUPCONTENT*************/
.rd-review-post {
  margin-top: 25px;
}
.rd-review-post h4 {
  margin-bottom: 30px;
  font-weight: 600;
}
.rd-review-post h5 {
  color: var(--rd-main-primary);
  font-weight: 600;
}

.rd-mobile-nav .rd-popup-header,
.rd-mobile-nav .rd-popup-footer {
  padding: 18px;
}
.rd-mobile-nav .rd-popup-header .rd-riart-name,
.rd-mobile-nav .rd-popup-footer .rd-riart-name {
  width: auto;
  min-width: 170px;
  max-width: 240px;
}

.rd-mobile-nav .rd-popup-footer {
  align-items: flex-end;
}

.rd-mobile-nav .rd-popup-content {
  padding: 18px;
}

.rd-phones-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rd-phones-list h4.phone {
  color: var(--rd-main-primary);
}
.rd-phones-list a,
.rd-phones-list a:visited,
.rd-phones-list a:focus {
  color: var(--rd-main-white);
}

.rd-call-us {
  width: 48px;
  min-width: 48px;
  height: 48px;
  background: var(--rd-main-primary);
  cursor: pointer;
  padding: 12px;
  box-sizing: border-box;
}

.rd-navigation-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  margin-bottom: 15px;
}
.rd-navigation-item .rd-expand-level {
  padding: 12px;
  min-width: 48px;
  box-sizing: border-box;
}

.mobile-menu .rd-navigation-item {
  color: var(--rd-main-white);
}

.rd-back-level {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  color: var(--rd-main-primary);
  padding-right: 24px;
  margin-bottom: 8px;
  background: none;
  border: none;
}
.rd-back-level .rd-back-title {
  flex: 1 1 auto;
  text-align: center;
  text-transform: uppercase;
}

.rd-call-us-sheet h4 {
  font-weight: 600;
  margin-bottom: 16px;
}
.rd-call-us-sheet .rd-call-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 0;
}
.rd-call-us-sheet .rd-call-submit {
  margin-bottom: 16px;
}
.rd-call-us-sheet .rd-disclaimer {
  color: var(--rd-main-black35);
}

/********BLOGPOST************/
.rd-blog-post {
  padding-right: 25%;
}
@media (max-width: 640px) {
  .rd-blog-post {
    padding-right: 0;
  }
}

.rd-post-row .rd-post-subrow {
  padding-bottom: 60px;
}
.rd-post-row .rd-post-img-title {
  margin-bottom: 16px;
  color: var(--rd-main-black50);
}
.rd-post-row h3 {
  padding-bottom: 40px;
}
@media (max-width: 640px) {
  .rd-post-row h3 {
    padding-bottom: 30px;
  }
}
.rd-post-row h4 {
  padding-bottom: 30px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .rd-post-row h4 {
    padding-bottom: 20px;
  }
}
.rd-post-row p {
  padding: 12px 0;
}
.rd-post-row ul {
  padding: 8px 20px;
  list-style: disc outside;
}
.rd-post-row ul li {
  margin-bottom: 12px;
  list-style: disc outside;
  margin-left: 1em;
}
.rd-post-row ul li:last-child {
  margin-bottom: 0;
}
.rd-post-row ul.rd-contents-list {
  list-style: none;
  padding: 0;
}
.rd-post-row ul.rd-contents-list li {
  margin-left: 0;
}

.rd-blog-summary h5 {
  margin-bottom: 16px;
}
.rd-blog-summary h5:last-of-type {
  margin-bottom: 0;
}

.rd-post-img {
  margin-bottom: 10px;
}

.rd-post-img img,
.rd-post-img video {
  display: block;
  width: 100%;
}

.rd-post-contents {
  padding-top: 60px;
}
.rd-post-contents h4 {
  text-transform: uppercase;
  font-weight: 600;
}

.rd-contents-list li {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--rd-main-primary);
}
.rd-contents-list li:last-child {
  margin-bottom: 0;
}

/*******COSTCALC**********/
.rd-cost-wizard {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  gap: 20px;
}
@media (max-width: 940px) {
  .rd-cost-wizard {
    flex-direction: column;
  }
}

.rd-cost-img {
  width: 30%;
  min-width: 30%;
}
@media (max-width: 1200px) {
  .rd-cost-img {
    width: 25%;
    min-width: 25%;
  }
}
@media (max-width: 1200px) and (max-width: 940px) {
  .rd-cost-img {
    width: 100%;
  }
}
.rd-cost-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 940px) {
  .rd-cost-img img {
    height: auto;
  }
}

.rd-steps-slider {
  gap: 20px;
  height: 547px;
}
@media (max-width: 960px) {
  .rd-steps-slider {
    flex-direction: column;
  }
}

.rd-steps-slider-form {
  height: 100%;
  width: auto !important;
}

.rd-cost-quiz {
  padding: 0 !important;
  /* display: flex; */
  flex-direction: column;
  height: 100%;
  width: auto !important;
  flex-grow: 1;
}
.rd-cost-quiz .rd-page-num {
  margin-bottom: 8px;
}

.rd-cost-quiz.active {
  display: flex;
}

.rd-steps-slider-images {
  width: 30% !important;
  height: auto !important;
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .rd-steps-slider-images {
    width: 100% !important;
  }
}
@media (max-width: 500px) {
  .rd-steps-slider-images {
    height: 220px !important;
  }
}

.rd-steps-slider-images img {
  width: 100% !important;
  height: 100% !important;
}
@media (max-width: 500px) {
  .rd-steps-slider-images img {
    height: 220px !important;
  }
}

.steps_slider::before {
  display: none;
}

.rd-quiz-page {
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  gap: 40px;
  border-bottom: 1px solid var(--rd-main-primary);
}
@media (max-width: 940px) {
  .rd-quiz-page {
    border-bottom: none;
  }
}
.rd-quiz-page h3 {
  color: var(--rd-main-primary);
}
@media (max-width: 940px) {
  .rd-quiz-page h3 {
    display: none;
  }
}
.rd-quiz-page h5 {
  font-weight: 600;
  padding: 16px 0;
}
.rd-quiz-page .rd-quiz-legend {
  color: var(--rd-main-black50);
  margin-bottom: 16px;
}
@media (max-width: 1200px) {
  .rd-quiz-page .rd-quiz-legend {
    margin-bottom: 0;
  }
}
@media (max-width: 1200px) and (max-width: 900px) {
  .rd-quiz-page .rd-quiz-legend {
    display: none;
  }
}

.rd-quiz-bar {
  height: 2px;
  background: var(--rd-main-white);
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .rd-quiz-bar {
    margin-bottom: 5px;
  }
}
.rd-quiz-bar .rd-quiz-progress {
  height: 100%;
  background: var(--rd-main-primary);
}

.rd-quiz-list {
  padding: 16px 0;
}
.rd-quiz-list li {
  padding: 16px 0;
}

.rd-quiz-buttons {
  display: flex;
  gap: 20px;
  min-width: 120px;
  padding-bottom: 60px;
}
@media (max-width: 940px) {
  .rd-quiz-buttons {
    padding-bottom: 0;
  }
}
@media (max-width: 1400px) {
  .rd-quiz-buttons {
    padding-bottom: 20px;
  }
}

.rd-more-projects {
  /* padding-bottom: 120px;
  @media (max-width: 940px){
  	padding-bottom: 90px;
  } */
}
.rd-more-projects h4 {
  font-weight: 600;
  text-transform: uppercase;
}

.rd-readmore-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: space-around;
  align-items: stretch;
  gap: 10px;
  padding-top: 40px;
}
@media (max-width: 1200px) {
  .rd-readmore-list {
    flex-wrap: wrap;
  }
}
@media (max-width: 1200px) and (max-width: 640px) {
  .rd-readmore-list {
    gap: 30px;
  }
}
.rd-readmore-list .rd-readmore-item {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: space-around;
  align-items: flex-start;
  gap: 15px;
  width: calc(25% - 8px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rd-main-primary);
}
@media (max-width: 1200px) {
  .rd-readmore-list .rd-readmore-item {
    width: calc(50% - 5px);
    margin-bottom: 20px;
  }
  .rd-readmore-list .rd-readmore-item:last-child, .rd-readmore-list .rd-readmore-item:nth-last-child(2) {
    margin-bottom: 0;
  }
}
@media (max-width: 1200px) and (max-width: 640px) {
  .rd-readmore-list .rd-readmore-item {
    width: 100%;
    margin-bottom: 0;
  }
}
.rd-readmore-list .rd-readmore-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 5px;
}
@media (max-width: 640px) {
  .rd-readmore-list .rd-readmore-item img {
    aspect-ratio: 2/1;
  }
}
.rd-readmore-list .rd-readmore-item .rd-readmore-title {
  flex: 1 1 auto;
}
.rd-readmore-list .rd-readmore-item .rd-readmore-title h6 {
  font-weight: 500;
}

/*****MANUAL*******/
.rd-manual-dnld {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: stretch;
  gap: 20px;
  padding-bottom: 120px;
}
@media (max-width: 940px) {
  .rd-manual-dnld {
    flex-direction: column;
    padding-bottom: 90px;
  }
}
.rd-manual-dnld .rd-manual-img {
  width: calc(50% - 10px);
  min-width: calc(50% - 10px);
  max-height: 536px;
}
@media (max-width: 940px) {
  .rd-manual-dnld .rd-manual-img {
    width: 100%;
    min-width: 100%;
    order: -1;
  }
}
.rd-manual-dnld .rd-manual-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 940px) {
  .rd-manual-dnld .rd-manual-img img {
    height: auto;
    aspect-ratio: 2/1;
  }
}
.rd-manual-dnld .rd-manual-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--rd-main-primary);
  border-bottom: 1px solid var(--rd-main-primary);
}
.rd-manual-dnld .rd-manual-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 28px;
}
.rd-manual-dnld .rd-manual-list .rd-manual-item {
  width: calc(50% - 10px);
}
.rd-manual-dnld .rd-manual-list .rd-manual-item p {
  font-weight: 600;
  padding-top: 8px;
}
.rd-manual-dnld .rd-manual-action {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1200px) {
  .rd-manual-dnld .rd-manual-action {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}
.rd-manual-dnld .rd-manual-legend {
  color: var(--rd-main-primary);
  font-weight: 600;
  order: 1;
}
@media (max-width: 1200px) {
  .rd-manual-dnld .rd-manual-legend {
    order: 0;
  }
}

/*********CONTACTFORM****************/
.rd-contact-form {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: stretch;
}
@media (max-width: 640px) {
  .rd-contact-form {
    flex-direction: column;
  }
}

.rd-contact-img {
  width: 30%;
  min-width: 30%;
  height: 340px;
}
@media (max-width: 1350px) {
  .rd-contact-img {
    height: auto;
  }
}
@media (max-width: 640px) {
  .rd-contact-img {
    width: 100%;
  }
}
.rd-contact-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 640px) {
  .rd-contact-img img {
    height: auto;
  }
}

.rd-contact-content {
  background: var(--rd-main-primary);
  width: 70%;
  padding: 40px;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .rd-contact-content {
    width: 100%;
  }
}
.rd-contact-content:has(.rd-contact-form-holder) {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-start;
  gap: 40px;
  padding: 0;
  background: none;
}
@media (max-width: 940px) {
  .rd-contact-content:has(.rd-contact-form-holder) {
    flex-direction: column;
  }
}
.rd-contact-content:has(.rd-contact-form-holder) .rd-contact-form-text {
  color: var(--rd-main-black50);
}
.rd-contact-content:has(.rd-contact-form-holder) .rd-contact-form-text h3 {
  padding-bottom: 30px;
  color: var(--rd-main-black);
}
.rd-contact-content:has(.rd-contact-form-holder) .rd-contact-form-text h5 {
  text-transform: uppercase;
  padding-bottom: 16px;
  font-weight: 600;
}
.rd-contact-content:has(.rd-contact-form-holder) .rd-contact-form-text p {
  padding-bottom: 16px;
}
.rd-contact-content:has(.rd-contact-form-holder) .rd-contact-form-holder {
  width: 25%;
  min-width: 285px;
}
@media (max-width: 940px) {
  .rd-contact-content:has(.rd-contact-form-holder) .rd-contact-form-holder {
    width: 100%;
  }
}
.rd-contact-content:has(.rd-contact-form-holder) .rd-contact-form-list {
  flex-direction: column;
}
.rd-contact-content:has(.rd-contact-form-holder) .rd-contact-form-list .rd-form-text {
  max-width: 100%;
}

.rd-contact-form-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: stretch;
  gap: 20px;
  padding-bottom: 24px;
}
@media (max-width: 1300px) {
  .rd-contact-form-list {
    flex-direction: column;
  }
}
.rd-contact-form-list .rd-form-text {
  flex: 1 1 auto;
  background: var(--rd-main-white);
  max-width: 33.33%;
  min-width: 20px;
}
@media (max-width: 1300px) {
  .rd-contact-form-list .rd-form-text {
    max-width: 100%;
  }
}
.rd-contact-form-list .rd-btn {
  height: auto;
}

.rd-contact-legend,
.rd-contact-legend a {
  color: var(--rd-main-white);
}

.rd-contact-form-var .rd-contact-legend {
  color: var(--rd-main-black50);
}

.rd-contact-form-var a {
  color: var(--rd-main-primary);
}

/******PROJECT********/
.rd-teaser-4col {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: stretch;
  gap: 20px;
  width: 100%;
}
@media (max-width: 940px) {
  .rd-teaser-4col {
    flex-wrap: wrap;
    border-top: 1px solid var(--rd-main-primary);
    border-bottom: 1px solid var(--rd-main-primary);
    gap: 4px;
    margin-top: 30px;
  }
}
.rd-teaser-4col .rd-teaser-col {
  width: calc(25% - 15px);
  padding: 28px 0;
  border-top: 1px solid var(--rd-main-primary);
  border-bottom: 1px solid var(--rd-main-primary);
}
@media (max-width: 940px) {
  .rd-teaser-4col .rd-teaser-col {
    width: calc(50% - 2px);
    border: none;
    padding: 4px 0;
  }
}
.rd-teaser-4col .rd-teaser-col h4 {
  color: var(--rd-main-primary);
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 940px) {
  .rd-teaser-4col .rd-teaser-col {
    margin-bottom: 4px;
  }
}

.rd-project-details {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 1200px) {
  .rd-project-details {
    flex-wrap: wrap;
  }
}
.rd-project-details .rd-details-title {
  width: 35%;
  min-width: 35%;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .rd-project-details .rd-details-title {
    width: 100%;
  }
}
.rd-project-details .rd-ok-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  margin: 0;
  gap: 20px;
}
@media (max-width: 940px) {
  .rd-project-details .rd-ok-list {
    flex-direction: column;
  }
}
.rd-project-details .rd-ok-list li {
  width: calc(50% - 10px);
  padding-bottom: 0;
}
@media (max-width: 940px) {
  .rd-project-details .rd-ok-list li {
    width: 100%;
  }
}

.rd-project-compare {
  overflow: hidden;
}
@media (max-width: 640px) {
  .rd-project-compare {
    overflow: initial;
  }
}
.rd-project-compare h5 {
  margin-bottom: 20px;
  font-weight: 500;
}
.rd-project-compare .rd-compare-slider {
  aspect-ratio: 96/56;
  width: 100%;
}
@media (max-width: 640px) {
  .rd-project-compare .rd-compare-slider {
    width: auto;
    margin: 0 -5.5%;
  }
}

.rd-layout-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 640px) {
  .rd-layout-list {
    flex-direction: column;
  }
}

.rd-layout-img {
  width: calc(50% - 10px);
  background: var(--rd-main-secondary);
  border: 1px solid var(--rd-main-black);
}
.rd-layout-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 640px) {
  .rd-layout-img {
    width: 100%;
    border: none;
  }
}

/********ACCORDION**********/
.rd-accrd-list {
  flex: 1 1 auto;
}

.rd-accrd-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--rd-main-primary);
}
.rd-accrd-item:first-child {
  border-top: 1px solid var(--rd-main-primary);
}
.rd-accrd-item .rd-close-accrd {
  display: none;
}

.rd-accrd-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: center;
  font-weight: 600;
  color: var(--rd-main-primary);
  text-transform: uppercase;
  gap: 20px;
}

.rd-accrd-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-content: stretch;
  align-items: center;
  gap: 10px;
}
.rd-accrd-buttons .rd-btn {
  padding: 11px;
}

.rd-accrd-content {
  display: none;
}

.rd-accrd-item.rd-expanded .rd-expand-accrd {
  display: none;
}
.rd-accrd-item.rd-expanded .rd-close-accrd {
  display: block;
}
.rd-accrd-item.rd-expanded .rd-accrd-content {
  display: block;
}

.masonry-list-8 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
@media (max-width: 940px) {
  .masonry-list-8 {
    display: flex;
    flex-direction: column;
  }
}

.masonry-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.msnr01 {
  grid-area: 1/1/2/2;
}

.msnr02 {
  grid-area: 1/2/2/3;
}

.msnr03 {
  grid-area: 2/1/4/2;
}

.msnr04 {
  grid-area: 2/2/3/3;
}

.msnr05 {
  grid-area: 4/1/6/2;
}

.msnr06 {
  grid-area: 3/2/5/3;
}

.msnr07 {
  grid-area: 6/1/7/2;
}

.msnr08 {
  grid-area: 5/2/7/3;
}

/*****************PRICEGRID**************************/
.rd-grid-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  gap: 20px;
  padding: 24px 8px;
  border-top: 1px solid var(--rd-main-primary);
}
.rd-grid-row .rd-hidden-grid {
  display: none;
}
.rd-grid-row .rd-hidden-grid .rd-grid-row {
  border-top: none;
  padding-right: 0;
  padding-left: 0;
}
.rd-grid-row .rd-hidden-grid .rd-grid-row .rd-main-cell {
  padding-left: 40px;
}
@media (max-width: 1200px) {
  .rd-grid-row .rd-hidden-grid .rd-grid-row .rd-main-cell {
    padding-left: 0;
  }
}
.rd-grid-row h6 {
  text-transform: uppercase;
  color: var(--rd-main-black35);
  display: none;
}
@media (max-width: 1200px) {
  .rd-grid-row h6 {
    display: block;
    margin-bottom: 4px;
  }
}
.rd-grid-row.rd-grid-header {
  padding: 0 8px 24px 0;
  border: none;
}
@media (max-width: 1200px) {
  .rd-grid-row.rd-grid-header {
    display: none;
  }
}
.rd-grid-row.rd-grid-header .rd-grid-item h6 {
  display: block;
}
.rd-grid-row.rd-grid-header .rd-grid-item.rd-main-cell h6 {
  display: block;
}
.rd-grid-row .rd-grid-item {
  width: calc(25% - 10px);
  min-width: calc(25% - 10px);
  text-align: end;
}
@media (max-width: 1200px) {
  .rd-grid-row .rd-grid-item {
    width: calc(33% - 10px);
    min-width: calc(33% - 10px);
    text-align: start;
  }
}
@media (max-width: 1200px) and (max-width: 940px) {
  .rd-grid-row .rd-grid-item {
    width: 100%;
  }
}
.rd-grid-row .rd-grid-item.rd-main-cell {
  width: calc(50% - 20px);
  box-sizing: border-box;
  text-align: start;
}
@media (max-width: 1200px) {
  .rd-grid-row .rd-grid-item.rd-main-cell {
    width: 100%;
  }
}
.rd-grid-row .rd-grid-item.rd-main-cell h6 {
  display: none;
}
.rd-grid-row .rd-grid-item.rd-wide-cell {
  width: 100%;
  text-align: start;
}
.rd-grid-row .rd-grid-item.rd-wide-cell.rd-expanded .rd-hidden-grid {
  display: block;
}

.rd-cell-content h5 {
  margin-bottom: 8px;
  font-weight: 600;
}

/****Factors******/
.rd-factors-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
  gap: 20px;
  /* margin-bottom: 120px; */
}
@media (max-width: 940px) {
  .rd-factors-list {
    /* margin-bottom: 90px; */
  }
}
.rd-factors-list .rd-factor-item {
  width: calc(33.33% - 14px);
  min-width: calc(33.33% - 14px);
  padding: 20px 0;
  border-top: 1px solid var(--rd-main-primary);
}
.rd-factors-list .rd-factor-item:last-child, .rd-factors-list .rd-factor-item:nth-last-child(2), .rd-factors-list .rd-factor-item:nth-last-child(3) {
  border-bottom: 1px solid var(--rd-main-primary);
}
@media (max-width: 940px) {
  .rd-factors-list .rd-factor-item {
    width: 100%;
  }
  .rd-factors-list .rd-factor-item:nth-last-child(2), .rd-factors-list .rd-factor-item:nth-last-child(3) {
    border-bottom: none;
  }
}
.rd-factors-list .rd-factor-item h3 {
  color: var(--rd-main-primary);
  padding-bottom: 10px;
}
.rd-factors-list .rd-factor-item h5 {
  font-weight: 500;
}

/*******PORTFOLIO**********/
.portf-filters {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  gap: 16px;
}
@media (max-width: 940px) {
  .portf-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
}

.filter-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 16px;
}

.selected-filter {
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--rd-main-black50);
}

.portf-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 26px;
}
.portf-list .portf-item {
  aspect-ratio: 1/1;
  width: calc(50% - 5px);
  min-width: calc(50% - 5px);
}
@media (max-width: 940px) {
  .portf-list .portf-item {
    aspect-ratio: auto;
    height: 324px;
    min-height: 324px;
    width: 100%;
  }
}
.portf-list .portf-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/******PAGINATION********/
.rd-pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.rd-pagination span,
.rd-pagination a {
  padding: 16px;
  border: 1px solid var(--rd-main-primary);
  color: var(--rd-main-black);
  min-width: 24px;
  line-height: 24px;
  min-height: 24px;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 940px) {
  .rd-pagination span,
.rd-pagination a {
    padding: 12px;
  }
}
@media (max-width: 940px) and (max-width: 640px) {
  .rd-pagination span,
.rd-pagination a {
    /* display: none; */
  }
  .rd-pagination span.visible-on-mobile, .rd-pagination span.page-forward,
.rd-pagination a.visible-on-mobile,
.rd-pagination a.page-forward {
    display: block;
  }
}
.rd-pagination span svg,
.rd-pagination a svg {
  stroke: var(--rd-main-black);
}
.rd-pagination span:hover,
.rd-pagination a:hover {
  background: var(--rd-main-primary);
  opacity: 1;
  text-decoration: none;
}
.rd-pagination span:current-page,
.rd-pagination a:current-page {
  background: var(--rd-main-primary);
}
.rd-pagination span.delimeter,
.rd-pagination a.delimeter {
  border: none;
  width: auto;
  min-width: auto;
  padding: 0;
  color: var(--rd-main-primary);
  cursor: default;
}
.rd-pagination span.delimeter:hover,
.rd-pagination a.delimeter:hover {
  background: none;
}
.rd-pagination span {
  background: var(--rd-main-primary);
  cursor: default;
}

.rd-tooltiped {
  position: relative;
  cursor: pointer;
}
.rd-tooltiped:hover .rd-tooltip {
  /*display: block;*/
  opacity: 1;
  transition: opacity ease 0.4s;
}
.rd-tooltiped .rd-tooltip {
  /*display: none;*/
  opacity: 0;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 8px;
  background: var(--rd-main-black);
  border-radius: 3px;
}
.rd-tooltiped .rd-tooltip:after {
  display: block;
  content: attr(title);
  white-space: nowrap;
  font-size: 0.8em;
  background: var(--rd-main-black);
  color: var(--rd-main-white);
}
.rd-tooltiped .rd-tooltip:before {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: var(--rd-main-black);
  position: absolute;
  z-index: -1;
  top: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.popup_video {
  position: relative;
}

.popup_video_link::before {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  background: url(img/play.svg) no-repeat;
  background-size: contain;
  left: 50%;
  top: 50%;
  margin: -25px 0 0 -25px;
  z-index: 10;
}

.rd-post-contents .rd-contents-list li {
  list-style: none;
}

.rd-quiz-legend {
  color: var(--rd-main-black50);
  margin-bottom: 16px;
}

.rd-portfolio-gallery .grid-item {
  margin: 5px;
  /* margin: 0; */
  /* width: 40%; */
}

.rd-btn-primary.header-callback {
  margin-left: 0;
}

.steps-form-agreement-link {
  margin-bottom: 20px;
}

.hystmodal {
  backdrop-filter: blur(8px);
}

.hystmodal .hystmodal__close {
  width: 25px;
  height: 25px;
  background-image: none;
  background: url("../img/iconNo.svg") no-repeat center center/contain;
  /* background-image: url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' stroke='%23000' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E); */
}

.hystmodal .hystmodal__close:focus {
  outline: 0;
  outline-offset: 0;
}

.gallery_masonry .grid-item {
  width: calc(50% - 30px);
  margin: 0;
  margin-bottom: 10px;
}

@media (max-width: 940px) {
  .gallery_masonry .grid-item {
      width: 100%;
      margin: 0 0 10px 0;
  }
}

.rd-row .gallery_masonry {
  margin: 0;
  width: 100%;
}

body .box {
  width: 100%;
  max-width: 100%;
  margin: 50px auto;
}

a.btn {
  color: var(--rd-main-white);
  text-decoration: none;
}

#contacts_map {
  margin-bottom: 30px;
}

main #about_us {
  padding-top: 0;
}

.rd-row-section {
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 940px) {
  .rd-row-section {
    padding: 0 5%;
  }
}

.rd-row.substract-top-padding,
.rd-row-section.substract-top-padding,
#portfolio.substract-top-padding {
  padding-top: 0;
}

body #page_banner {
  margin-bottom: 0;
}

.rd-navigated .rd-header {
  display: none;
}

.mobile-menu .resources-menu .parent > a.link {
  display: none;
}

.mobile-menu .resources-menu .parent.opened > div.link {
  display: none;
}

.mobile-menu .resources-menu .parent.opened .open-menu-icon {
  display: none;
}

.js-hidden {
  display: none !important;
}

.rd-design-depart .rd-flow-2col {
  padding-bottom: 0;
}

.free-edit-counts {
  font-size: 75px;
  margin-bottom: 10px;
}

.project-compare .rd-row {
  padding-top: 60px;
}

.rd-row-section h3 {
  padding-bottom: 60px;
}
@media (max-width: 940px) {
  .rd-row-section h3 {
    padding-bottom: 40px;
  }
}

.about_text-content h3,
.home #about .section_title {
  font-size: 30px;
  padding-bottom: 0;
  margin-bottom: 0;
}

.rd-contact-content h3 {
  padding-bottom: 30px;
}

.rd-btn-outline {
  background-color: var(--rd-main-white);
  border: 1px solid var(--rd-main-primary);
}

.prev_step .rd-icon svg {
  stroke: var(--rd-main-black);
}

.rd-quiz-content__marker-wrapper {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.35);
}

.rd-quiz-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

#steps_slider {
  /*padding: 80px 0 0;*/
}

#steps_slider > .rd-row {
  background-color: var(--rd-main-secondary);
  padding-bottom: 120px;
}
@media (max-width: 940px) {
  #steps_slider > .rd-row {
    padding-bottom: 45px;
  }
}

@media (max-width: 500px) {
  .rd-quiz-list._two {
    column-count: 2;
    gap: 80px;
  }
}

.rd-quiz-list__wrapper {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.rd-quiz-content .final_radio {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.rd-quiz-content-final-slide .final_radio {
  margin-top: 24px;
  padding-bottom: 8px;
}

.rd-quiz-content-final-slide .rd-quiz-buttons {
  padding-bottom: 0;
}

.rd-quiz-content-final-slide .fields {
  max-width: 395px;
}

@media (min-width: 800px) {
  .rd-quiz-list {
    min-width: 245px;
  }
}
@media (max-width: 800px) {
  .mobile-hidden {
    display: none;
  }
}
@media (min-width: 800px) {
  .desk-hidden {
    display: none;
  }
}
.page_banner_buttons.social {
  /* margin-top: 30px; */
}

.page_banner_buttons {
  justify-content: center;
}

.page_banner_buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.ceo_persons .ceo_person .info h3 {
  padding-bottom: 15px;
  line-height: 1;
}

#ceo .ceo_persons .ceo_person {
  align-items: start;
}

#team .persons .person h3 {
  padding-bottom: 10px;
}

.about_three .left h3 {
  padding-bottom: 0;
  font-size: 36px;
  width: 100%;
}

#about_three .about_three {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-template-areas: "left right" "btn right" "image image";
  column-gap: 40px;
}

.about_three .left {
  grid-area: left;
  width: 100%;
}

.about_three .right {
  grid-area: right;
  width: 100%;
}

.about_three .btn {
  grid-area: btn;
  width: max-content;
}

.about_three .image {
  grid-area: image;
}

.mobile-only {
  display: none;
}

@media (max-width: 940px) {
  .ceo_persons .ceo_person .info h3 {
    padding-bottom: 15px;
  }
  .about_three .left h3 {
    line-height: 1.2;
    font-size: 32px;
  }
  #about_three .about_three {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    grid-template-areas: "left" "right" "btn" "image";
  }
  .about_three .btn {
    margin-top: 40px;
  }
  .about_two .right .stage .item .text h3 {
    font-size: 22px;
    line-height: 1.2;
  }
  .about-riart .rd-flow-2col {
    padding-bottom: 0;
  }
  .about-riart .rd-flow-col p:last-child {
    margin-bottom: 0;
  }
  .free-edit-counts {
    font-size: 50px;
    margin-bottom: 10px;
  }
  .about-riart .rd-flow-img {
    margin-top: 20px;
  }
  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none;
  }
  .rd-contact-form-holder {
    order: 0;
  }
  .rd-contact-form-text {
    order: 1;
  }
  .home #team .box h2.section_title {
    margin-bottom: 20px;
  }
  #ceo .box {
    margin-bottom: 0;
  }
  #team .box {
    margin-top: 20px;
  }
  .stage h3 {
    padding-bottom: 0;
  }
}
.about_four .work_steps .item .content h3 {
  font-size: 30px;
  line-height: 1.2;
  padding-bottom: 0;
}

@media (max-width: 380px) {
  .free-edit-counts {
    font-size: 40px;
  }
}
.about_two .right .stage .item .text h3 {
  padding-bottom: 20px;
}

@media (min-width: 2000px) {
  .rd-riart-team .rd-chief-item img {
    height: 600px;
  }
  #about_us .text p,
#about_one .right p,
#about_one .right li,
#ceo p,
#team p,
#about_two p,
#about_three p,
#about_four p,
#about_four li,
#about .about p,
#about .about li {
    font-size: 22px;
    line-height: 36px;
  }
  #ceo .ceo_persons .ceo_person .info .post,
#team .persons .person .post {
    font-size: 20px;
  }
  #ceo .ceo_persons .ceo_person .info h3,
#team .persons .person h3 {
    font-size: 28px;
  }
  .about_two .right .stage .item .icon {
    font-size: 80px;
  }
  #about_us .image img,
#about_one .image img {
    width: 100%;
  }
  #ceo .section_title,
#team .section_title,
#about_two h2,
#about_three h3,
.home #about .section_title {
    font-size: 38px;
    line-height: 40px;
  }
  #about_three .btn,
.about_four .btn {
    font-size: 18px;
  }
  .about_four .work_steps .item .icon {
    font-size: 35px;
  }
  .about_four .work_steps .item .content h4 {
    font-size: 20px;
  }
  .about_two .right .stage .item .text h3 {
    font-size: 35px;
    padding-bottom: 20px;
  }
  .about_four .work_steps .item .content h3 {
    font-size: 35px;
    margin-bottom: 0;
  }
  #about_three .image img {
    width: 100%;
  }
}
#about_two {
  margin-top: 50px;
}

@media (max-width: 350px) {
  .rd-header .rd-riart-info {
    gap: 15px;
  }
  .rd-header .rd-riart-info h6 {
    font-size: 12px;
  }
  .rd-header .rd-riart-name {
    width: 140px;
  }
}
.padding-bottom {
  padding-bottom: 120px;
}

@media (max-width: 940px) {
  .padding-bottom {
    padding-bottom: 45px;
  }
}
.banner-image-mobile {
  display: none;
}

@media (max-width: 850px) {
  .banner-image-mobile {
    display: block;
  }
  .banner-image-desktop {
    display: none;
  }
}
@media (min-width: 850px) {
  .banner-image-desktop {
    display: block;
  }
}
.rd-post-row:last-child .rd-post-subrow {
  padding-bottom: 0;
}

.rd-contact-form-title-mob {
  display: none;
}

@media (max-width: 940px) {
  .rd-contact-form-title-mob {
    display: block;
  }
}
.rd-contact-form-title-desk {
  display: block;
}

@media (max-width: 940px) {
  .rd-contact-form-title-desk {
    display: none;
  }
}
.rd-popup-footer .rd-phone {
  display: block;
}

.h4 {
  font-size: 24px;
  line-height: 32px;
}

@media (max-width: 1200px) {
  .h4 {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 940px) {
  .h4 {
    font-size: 20px;
    line-height: 26px;
  }
}
.rd-header-buttons {
  display: flex;
  gap: 20px;
}

.rd-block {
  box-sizing: border-box;
  margin: 120px 10%;
  position: relative;
}
@media (max-width: 940px) {
  .rd-block {
    margin: 45px 5%;
  }
}
.rd-block h3 {
  padding-bottom: 60px;
}
@media (max-width: 940px) {
  .rd-block h3 {
    padding-bottom: 40px;
  }
}

.director-quote__wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: repeat(2, auto);
  grid-template-areas: "director-quote__title director-quote-photo" "director-quote-content director-quote-photo";
  gap: 20px;
}

.director-quote .director-quote__title {
  grid-area: director-quote__title;
  padding-bottom: 0;
}

.director-quote__content {
  display: flex;
  flex-direction: column;
  grid-area: director-quote-content;
}

.director-quote__content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 50px;
}

.director-quote__icon {
  width: 100px;
  height: auto;
  object-fit: cover;
}

.director-quote__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 640px;
}

.director-quote__photo {
  height: 390px;
  width: auto;
  object-fit: cover;
  grid-area: director-quote-photo;
  object-position: 0% 0%;
}

.director-quote__position {
  color: var(--rd-main-primary);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .director-quote__photo {
    height: 310px;
  }
}
@media (max-width: 1024px) {
  .director-quote__photo {
    height: 240px;
  }
}
@media (max-width: 900px) {
  .director-quote__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "director-quote__title director-quote__title" "director-quote-content director-quote-photo";
    gap: 20px;
  }
  .director-quote__photo {
    height: auto;
    width: 100%;
  }
  .director-quote__content-wrapper {
    flex-direction: column;
    gap: 20px;
    font-size: 20px;
  }
  .director-quote__icon {
    width: 40px;
  }
  .director-quote__text {
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .director-quote__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "director-quote__title" "director-quote-photo" "director-quote-content ";
    gap: 20px;
  }
  .director-quote__photo {
    height: 360px;
  }
  .director-quote__icon-wrapper {
    height: 40px;
  }
}
@media (max-width: 360px) {
  .director-quote__photo {
    height: 325px;
  }
}
.fixed-button {
  position: relative;
}

.fixed-button__img {
  width: 72px;
  filter: drop-shadow(0 6px 12px rgba(17, 17, 17, 0.2));
}

.fixed-button-tag {
  display: none;
  position: absolute;
  top: 12px;
  right: 70px;
  font-size: 14px;
  padding: 4px 8px;
  color: rgb(255, 255, 255);
  background-color: rgb(17, 17, 17);
  border-radius: 2px;
  width: max-content;
  filter: drop-shadow(0 6px 10px rgba(17, 17, 17, 0.1));
}

.fixed-button:hover .fixed-button-tag {
  display: block;
}

.fixed-button:first-child {
  margin-bottom: 10px;
}

.fixed-button-tag-tip {
  position: absolute;
  top: 3px;
  right: -7px;
}

@media (max-width: 800px) {
  .fixed-button__img {
    width: 52px;
  }
  .fixed-buttons_right {
    right: 10px;
  }
}
.rd-navigation-item a {
  color: #fff;
}

.page-item.disabled {
  display: none;
}

.result .rd-block {
  margin-bottom: 0;
}

.result__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.result__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 80%;
}

.result__content {
  padding: 120px 0 120px 40px;
}

.result__text {
  margin-bottom: 20px;
}

.result__checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgb(216, 187, 137);
}

.result__checklist-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.result__checklist-item-img {
  height: 24px;
}

.result__highlighted-text {
  margin: 30px 0 20px;
  font-weight: 600;
}

.result__bottom-block {
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(216, 187, 137);
}

@media (max-width: 940px) {
  .result .rd-block,
.what-influences .rd-block {
    margin: 45px 0;
  }
  .result__content {
    margin: 0 5%;
  }
  .result__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .result__content {
    padding: 0;
  }
  .result__img {
    height: 400px;
  }
  .result__btn {
    width: 100%;
  }
  .block-advantages .rd-teaser-4col {
    flex-direction: column;
  }
  .block-advantages .rd-teaser-col {
    width: 100%;
    margin: 0;
    padding: 28px 0;
    border-bottom: 1px solid rgb(216, 187, 137);
  }
  .block-advantages .rd-teaser-col:last-child {
    border-bottom: 0px solid rgb(216, 187, 137);
  }
}
.before-after-visualization .rd-compare {
  padding-top: 0;
}

.eight-advantages__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.eight-advantages__item {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.eight-advantages__item-img {
  width: 250px;
  height: 350px;
  object-fit: cover;
}

.eight-advantages__item-content {
  padding-top: 20px;
  border-top: 1px solid rgb(216, 187, 137);
}

.eight-advantages__item .eight-advantages__item-number {
  color: rgb(216, 187, 137);
  font-size: 64px;
  padding: 0;
  margin-bottom: 30px;
}

.eight-advantages__item-title {
  color: rgb(216, 187, 137);
  font-size: 20px;
  text-transform: uppercase;
  margin: 30px 0 20px;
}

@media (max-width: 1500px) {
  .eight-advantages__item-img {
    width: 200px;
    height: 290px;
  }
}
@media (max-width: 1200px) {
  .eight-advantages__item-img {
    width: 165px;
    height: 235px;
  }
  .eight-advantages__item-number {
    font-size: 52px;
  }
}
@media (max-width: 1024px) {
  .eight-advantages__wrapper {
    grid-template-columns: 1fr;
  }
  .eight-advantages__item-img {
    width: 200px;
    height: 290px;
  }
  .eight-advantages__item-number {
    font-size: 36px;
  }
}
@media (max-width: 940px) {
  .eight-advantages__item-img {
    width: 130px;
    height: 190px;
  }
}
@media (max-width: 640px) {
  .eight-advantages__item-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: 0% 25%;
  }
  .eight-advantages__item {
    flex-direction: column;
  }
  .result__img {
    height: 200px;
  }
}
@media (max-width: 640px) {
  .eight-advantages__item-img {
    height: 325px;
  }
}
.two-advantages .rd-row,
.form-presentation .rd-row {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.two-advantages__background-img,
.form-presentation__background-img {
  position: absolute;
  z-index: 1;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.two-advantages__content {
  z-index: 2;
  position: relative;
  background: rgba(17, 17, 17, 0.6);
  color: var(--rd-main-white);
  box-sizing: border-box;
  padding: 120px 10%;
}

.two-advantages__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.two-advantages__buttons .rd-btn-whiteline {
  max-width: fit-content;
}

.two-advantages__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 20px;
}

.two-advantages__item {
  padding: 20px;
  border: 1px solid rgb(216, 187, 137);
  background-color: rgba(17, 17, 17, 0.35);
  backdrop-filter: blur(8px);
}

.two-advantages__item-title {
  color: rgb(216, 187, 137);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.two-advantages .two-advantages__title {
  padding-bottom: 30px;
}

@media (max-width: 940px) {
  .two-advantages__buttons {
    flex-direction: column;
    justify-content: center;
    margin-top: 40px;
  }
  .two-advantages__buttons .rd-btn-whiteline {
    max-width: 100%;
  }
  .two-advantages__items {
    grid-template-columns: 1fr;
    width: auto;
  }
}
.refurbishment-stages__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.refurbishment-stages__item-title {
  color: rgb(216, 187, 137);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.refurbishment-stages__item-wrapper {
  display: grid;
  grid-template-columns: auto 400px;
  gap: 40px;
  background-color: rgb(247, 247, 247);
  padding: 30px;
}

.refurbishment-stages__item-description {
  font-size: 24px;
  font-weight: 500;
  margin-top: 4px;
  margin-bottom: 40px;
}

.refurbishment-stages__item-text {
  margin-top: 20px;
}

.refurbishment-stages__checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.refurbishment-stages__checklist-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.refurbishment-stages__checklist-img {
  height: 24px;
}

.refurbishment-stages__item-media {
  width: 400px;
}

.refurbishment-stages__item-media.double-content-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 16px 8px;
  gap: 5px;
}

.refurbishment-stages__item-media-content {
  width: 100%;
  object-fit: cover;
}

.rd-btn.refurbishment-stages__link {
  display: inline-block;
  padding: 16px 0;
}

.rd-hidden {
  display: none;
}

.rd-expanded .rd-hidden {
  display: block;
}

.refurbishment-stages__dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 100%;
}

.refurbishment-stages__dropdown-list .rd-btn-text {
  white-space: wrap;
  text-align: left;
}

.refurbishment-stages__dropdown-list .rd-grid-item .rd-btn-link {
  padding: 0;
}

.refurbishment-stages__dropdown-list-hide-content {
  padding: 4px 0 10px 20px;
}

@media (max-width: 1500px) {
  .refurbishment-stages__item-media {
    width: 290px;
  }
  .refurbishment-stages__item-wrapper {
    grid-template-columns: auto 290px;
  }
}
@media (max-width: 1500px) {
  .refurbishment-stages__item-media {
    width: 290px;
  }
  .refurbishment-stages__item-wrapper {
    grid-template-columns: auto 290px;
  }
}
@media (max-width: 1024px) {
  .refurbishment-stages__item-media {
    width: 225px;
  }
  .refurbishment-stages__item-wrapper {
    grid-template-columns: auto 225px;
  }
}
@media (max-width: 940px) {
  .refurbishment-stages__item-media {
    width: 100%;
    height: 460px;
  }
  .refurbishment-stages__item-wrapper {
    grid-template-columns: 1fr;
  }
  .refurbishment-stages__item-media-content {
    max-height: 100%;
  }
}
@media (max-width: 640px) {
  .refurbishment-stages__item-media {
    height: 300px;
  }
  .refurbishment-stages__dropdown-list .rd-grid-item .rd-btn-link {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 460px) {
  .refurbishment-stages__item-media {
    height: 150px;
  }
}
.what-influences__content {
  padding: 120px 140px 120px 40px;
  background-color: rgb(216, 187, 137);
}

.new-feedback-form {
  position: relative;
}
.new-feedback-form > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.new-feedback-form > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.new-feedback-form .rd-row {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}
.new-feedback-form .rd-row h3 {
  color: #fff;
  padding-bottom: 0;
}
.new-feedback-form .new-feedback-form__title {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 660px) {
  .new-feedback-form .new-feedback-form__title {
    align-items: flex-start;
    flex-direction: column;
  }
  .new-feedback-form .new-feedback-form__title .rd-inline-indent {
    padding-left: 0;
  }
}
.new-feedback-form .new-feedback-form__title img {
  width: 128px;
  height: 128px;
}
.new-feedback-form .rd-btn-secondary {
  background: var(--rd-main-primary);
  color: var(--rd-main-black);
  border: 1px solid var(--rd-main-primary);
  transition: 0.3s;
}
.new-feedback-form .rd-btn-secondary:hover {
  border-color: var(--rd-main-black);
}
.new-feedback-form p {
  color: rgba(255, 255, 255, 0.5019607843);
}

.what-influences__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 940px) {
  .what-influences__wrapper {
    grid-template-columns: 1fr;
  }
  .what-influences__content {
    padding: 40px 5% 90px;
  }
}
.refurbishment-differences__table-desktop {
  display: block;
}

.refurbishment-differences__table-mobile {
  display: none;
}

.refurbishment-differences__table-header {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  background-color: rgb(216, 187, 137);
  font-size: 20px;
  text-transform: uppercase;
}

.refurbishment-differences__table-header-item {
  padding: 20px 44px;
}

.refurbishment-differences__description {
  font-weight: 500;
  margin-bottom: 40px;
  max-width: 680px;
}

.refurbishment-differences__table-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  border-bottom: 1px solid rgb(216, 187, 137);
}

.refurbishment-differences__table-row:last-child {
  border-bottom: 0px solid rgb(216, 187, 137);
}

.refurbishment-differences__table-item {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 32px 0;
}

.refurbishment-differences__item-marker {
  width: 24px;
  height: 24px;
}

.refurbishment-differences__item-title {
  color: rgb(216, 187, 137);
  text-transform: uppercase;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .refurbishment-differences__table-desktop {
    display: none;
  }
  .refurbishment-differences__table-mobile {
    display: block;
  }
  .refurbishment-differences__table-row {
    grid-template-columns: 1fr;
    gap: 0;
    border-bottom: 0px solid rgb(216, 187, 137);
  }
  .refurbishment-differences__table-row-title {
    background-color: rgb(216, 187, 137);
    font-size: 18px;
    padding: 20px 44px;
    text-transform: uppercase;
    margin: 22px 0;
  }
  .refurbishment-differences__table-item {
    margin: 10px 0;
    padding: 0;
  }
  .refurbishment-differences__description {
    margin-bottom: 18px;
  }
}
.form-presentation__content {
  z-index: 2;
  position: relative;
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(8px);
  color: var(--rd-main-white);
  box-sizing: border-box;
  padding: 120px 40px 120px 10%;
  border-right: 1px solid rgb(216, 187, 137);
  width: 58%;
}

.form-presentation__form {
  margin-top: 30px;
}

.form-presentation .rd-contact-form-list {
  justify-content: start;
  padding-bottom: 0;
}

.rd-icon-wa {
  background: url(../img/WhatsApp.svg) no-repeat center center/contain;
}

@media (max-width: 940px) {
  .form-presentation__content {
    padding: 90px 5% 60px;
    border-right: 0px solid rgb(216, 187, 137);
    border-bottom: 1px solid rgb(216, 187, 137);
    width: 100%;
    height: auto;
  }
  .form-presentation .rd-row {
    height: 825px;
  }
}
@media (max-width: 1300px) {
  .form-presentation .rd-contact-form-list {
    flex-direction: row;
  }
}
@media (max-width: 640px) {
  .form-presentation .rd-row {
    height: 895px;
  }
}
@media (max-width: 480px) {
  .form-presentation .rd-row {
    height: 1050px;
  }
}
.new-feedback-form-2 .new-feedback-form-2__title {
  padding-top: 60px;
  border-top: 1px solid #D8BB89;
}
.new-feedback-form-2 .rd-btn {
  flex: 1;
}
.new-feedback-form-2 p {
  color: rgba(17, 17, 17, 0.3490196078);
}

.feed-port {
  position: relative;
  padding: 60px 60px 340px;
}
@media (max-width: 750px) {
  .feed-port {
    padding: 20px 20px 340px;
  }
}
@media (max-width: 500px) {
  .feed-port {
    padding: 20px 20px 270px;
  }
}
.feed-port img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
  z-index: -1;
}
@media (max-width: 750px) {
  .feed-port img {
    display: none;
    object-position: center bottom;
  }
}
.feed-port ._mob {
  display: none;
}
@media (max-width: 750px) {
  .feed-port ._mob {
    display: block;
  }
}
.feed-port h3 {
  color: #fff;
  padding-bottom: 30px;
}
.feed-port p {
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .feed-port p {
    font-size: 18px;
    line-height: 24px;
  }
}
.feed-port .rd-btn {
  width: 310px;
  max-width: 100%;
}
@media (max-width: 370px) {
  .feed-port .rd-btn {
    font-size: 12px;
  }
}

#popup_form_portfolio, #popup_form_portfolio_banner, .popup_form_price {
  position: relative;
  max-width: 500px !important;
  margin: 0 auto;
}
#popup_form_portfolio .popup_form, #popup_form_portfolio_banner .popup_form, .popup_form_price .popup_form {
  max-width: unset;
  padding: 0;
}
#popup_form_portfolio img, #popup_form_portfolio_banner img, .popup_form_price img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center bottom;
}
@media (max-width: 380px) {
  #popup_form_portfolio img, #popup_form_portfolio_banner img, .popup_form_price img {
    height: 130px;
  }
}
#popup_form_portfolio .mfp-close, #popup_form_portfolio_banner .mfp-close, .popup_form_price .mfp-close {
  color: #D8BB89;
}
#popup_form_portfolio .popup-portfolio, #popup_form_portfolio_banner .popup-portfolio, .popup_form_price .popup-portfolio {
  padding: 30px 30px 10px;
}
#popup_form_portfolio .popup-portfolio h3, #popup_form_portfolio_banner .popup-portfolio h3, .popup_form_price .popup-portfolio h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
  text-transform: unset;
  text-align: left;
}
@media (max-width: 500px) {
  #popup_form_portfolio .popup-portfolio h3, #popup_form_portfolio_banner .popup-portfolio h3, .popup_form_price .popup-portfolio h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
#popup_form_portfolio .popup-portfolio p, #popup_form_portfolio_banner .popup-portfolio p, .popup_form_price .popup-portfolio p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
  text-align: left;
}
#popup_form_portfolio .popup-portfolio .rd-contact-form-list, #popup_form_portfolio_banner .popup-portfolio .rd-contact-form-list, .popup_form_price .popup-portfolio .rd-contact-form-list {
  flex-direction: column;
  padding-bottom: 0;
}
#popup_form_portfolio .popup-portfolio .rd-form-text, #popup_form_portfolio_banner .popup-portfolio .rd-form-text, .popup_form_price .popup-portfolio .rd-form-text {
  max-width: unset;
}
#popup_form_portfolio .popup-portfolio .popup-form-agreement, #popup_form_portfolio_banner .popup-portfolio .popup-form-agreement, .popup_form_price .popup-portfolio .popup-form-agreement {
  margin-top: 0;
  text-align: left;
  color: rgba(17, 17, 17, 0.3490196078);
}

@media (max-width: 1024px) {
  .rd-breadcrumb {
    display: none;
  }
}
@media (min-width: 1200px) {
  .limit-1500 {
    max-width: 1500px;
  }
  .limit-1250 {
    max-width: 1250px;
  }
  .rd-block.limit-1500 {
    margin: 120px auto;
  }
  .rd-block.limit-1250 {
    margin: 120px auto;
  }
  .repair-breadcrumbs {
    margin: 50px auto 0;
    padding: 0;
  }
  .repair-breadcrumbs #breadcrumbs {
    padding: 0;
  }
  .repair-advantages .rd-cupstext {
    max-width: 250px;
  }
  .repair-advantages .rd-block {
    margin-top: 60px;
  }
  .repair-breadcrumbs .rd-breadcrumb {
    margin-bottom: 0;
  }
  .result__content {
    max-width: 570px;
  }
}
@media (max-width: 850px) {
  .main-banner .rd-video-holder video {
    display: none;
  }
}
@media (min-width: 850px) {
  .main-banner .rd-video-holder img {
    display: none;
  }
}
.steps_slider-wrap {
  padding: 24px;
  border: 1px solid var(--rd-main-primary);
}

.home #portfolio .box .portfolio .item h2, .home #portfolio .box .showcase .item h2 {
  font-family: "Oranienbaum", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 52px;
  line-height: 64px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .home #portfolio .box .portfolio .item h2, .home #portfolio .box .showcase .item h2 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 1200px) and (max-width: 940px) {
  .home #portfolio .box .portfolio .item h2, .home #portfolio .box .showcase .item h2 {
    font-size: 30px;
    line-height: 36px;
  }
}

.rd-riart-contacts-mobile a {
  color: #fff;
}

.portfolio__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 35px;
}

.portfolio__links a {
  border: 1px solid #FFF;
  border-radius: 2px;
  padding: 16px;
  text-transform: uppercase;
  color: #fff;
}

.portfolio__links a:hover {
  text-decoration: unset;
}

@media (max-width: 600px) {
  .portfolio__links a {
    font-size: 14px;
    padding: 12px;
  }
  ._mobil {
    display: none;
  }
