@charset "UTF-8";
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600&display=swap");
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

:root {
  --index: calc(1vh + 1vw);
  --main-font: "Manrope", sans-serif;
  --font-16: 1rem;
  --font-18: 1.25rem;
  --accent-color: #D7273C;
  --accent-color-hover: #DB3D50;
  --white: #fff;
  --border-color-light: #EBEBEB;
  --body-color: #F7F7F7;
  --line-height: 22.4px;
  --main-color: #1A1A1A;
  --secondary-color: #808080;
  --secondary-bg: #F9D5D3;
  --radius-border-24: 24px;
  --radius-border-16: 16px;
  --shadow: 0px 14px 20px rgba(33, 33, 33, 0.2);
  --shadow-hover: 0px 25px 50px 0px rgba(0, 0, 0, 0.10), 0px -25px 50px 0px rgba(255, 255, 255, 0.50);
  --font-72: 4.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

ol, ul {
  padding-left: 0;
}

.uk-container {
  max-width: 1416px;
}

@media (max-width: 760px) {
  .uk-container {
    overflow-x: hidden;
  }
}
::-moz-selection {
  background-color: var(--accent-color);
  color: var(--white);
}
::selection {
  background-color: var(--accent-color);
  color: var(--white);
}

input, textarea {
  outline: none;
  caret-color: var(--accent-color);
}
input:focus-visible, textarea:focus-visible {
  outline: none;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  scroll-behavior: smooth;
  font-family: var(--main-font);
  font-size: var(--font-16);
  line-height: var(--line-height);
  color: var(--main-color);
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  background-color: var(--body-color);
}

.secondary-color {
  color: var(--secondary-color);
}

.romanovo__title-h1 {
  font-size: var(--font-72);
  font-weight: 600;
}

@media (max-width: 640px) {
  .romanovo__title-h1 {
    font-size: 50px;
  }
}
.romanovo__title-h2 {
  font-weight: 600;
  font-size: 3rem;
}

.romanovo__title-h3 {
  font-size: 2rem;
  font-weight: 600;
}

.romanovo__text {
  color: var(--secondary-color);
}
.romanovo__text p {
  margin: 5px 0;
}

.romanovo-info__text {
  color: var(--secondary-color);
}

.margin-bottom-64 {
  margin-bottom: 64px;
}

.border-radius {
  border-radius: var(--radius-border-24);
}

.uk-drop.uk-open {
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.border-24 {
  border-radius: var(--radius-border-24);
  overflow: hidden;
}

.romanovo-contacts address span, .romanovo-contacts address a {
  font-size: 18px;
  font-weight: 600;
  display: block;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.romanovo-contacts address a {
  color: var(--main-color);
}

.documents-page {
  color: var(--secondary-color);
  line-height: 1.5;
}
.documents-page h3 {
  font-weight: 600;
  color: var(--main-color);
}
.documents-page ul {
  padding-left: 0;
}

.main-section {
  padding-top: 96px;
}
.main-section__title {
  text-transform: uppercase;
  font-size: calc(var(--index) * 2.95);
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.02em;
}
.main-section__subtitle {
  text-align: center;
  font-size: var(--font-18);
  color: var(--secondary-color);
  font-weight: 400;
  margin-top: 24px;
}
.main-section__video-wrap {
  position: relative;
  border-radius: var(--radius-border-24);
  margin-top: 112px;
  min-height: calc(var(--index) * 28);
  padding: 0 40px;
  background: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: 1;
}
.main-section__video {
  -webkit-filter: brightness(50%);
          filter: brightness(50%);
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
.main-section .video-wrp {
  border-radius: var(--radius-border-24);
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 960px) {
  .main-section__video-wrap {
    padding: 0 10px;
  }
  .romanovo__title-h2 {
    font-size: 2rem;
  }
}
.romanovo-tennis-main .romanovo__title-h2 {
  font-size: 48px;
}
.romanovo-tennis-main img {
  width: 100%;
}

.white-bg {
  background: var(--white);
  border-radius: var(--radius-border-24);
}

.main-cards-block h2 {
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
}

.soon {
    background: var(--accent-color);
    border-radius: 50px;
    color: var(--white);
    padding: 0px 9px 2px;
    position: absolute;
    top: 0;
    right: -29px;
    font-size: 12px;
}

.red-label {
  border-radius: 50px;
  padding: 16px 24px;
  color: var(--white);
  background-color: var(--accent-color);
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 1;
  font-size: 24px;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.red-label-center {
  border-radius: 50px;
  padding: 16px 24px;
  color: var(--white);
  background-color: var(--accent-color);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 24px;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.romanovo-card-landing {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: var(--radius-border-24);
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), lightgray 50%/cover no-repeat;
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), lightgray 50%/cover no-repeat;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), lightgray 50%/cover no-repeat;
}
.romanovo-card-landing img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.romanovo-card-landing:hover .toggle-text {
  max-height: 500px;
  opacity: 0.6;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.romanovo-card-landing:hover .romanovo-card__overlay {
  opacity: 0.6;
}
.romanovo-card-landing:hover .red-label,
.romanovo-card-landing:hover .red-label-center {
  opacity: 0;
}

@media (max-width: 640px) {
    .romanovo-card__wrapper .toggle-text{
        max-height: 100%;
        opacity: 0.6;
        transform: translateZ(0);
    }
}

.romanovo-card__overlay {
  position: absolute;
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), color-stop(98.93%, rgba(0, 0, 0, 0.3))), #808080;
  background: -o-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0.3) 98.93%), #808080;
  background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0.3) 98.93%), #808080;
  height: 100%;
  width: 100%;
  inset: 0;
  opacity: 0;
  color: var(--white);
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.romanovo-card__wrapper {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  position: absolute;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.romanovo-card__wrapper .toggle-text {
  color: var(--white);
  margin: 0;
  opacity: 0;
  max-height: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
}
.romanovo-card__wrapper .default-outline-btn {
  color: var(--white);
  border-color: var(--white);
}

@media (max-width: 768px) {
  .romanovo-card-landing {
    min-height: 500px;
  }
  .romanovo-card-landing img {
    position: absolute;
  }
  .main-cards-block h2 {
    font-size: 24px;
  }
  .romanovo-card__wrapper {
    padding: 20px;
  }
}
.romanovo-component {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 500px;
          flex: 1 1 500px;
  padding: 30px;
  border-radius: var(--radius-border-24);
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.romanovo-component img {
  margin-right: 20px;
}
.romanovo-component h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.romanovo-component p {
  color: var(--secondary-color);
  margin: 0;
}

/*******************************************
* romanovo-contacts-section
*******************************************/
.romanovo-contacts-section .romanovo-form-wrapper .uk-legend {
  font-size: 32px;
  font-weight: 600;
}
.romanovo-contacts-section .romanovo-form-wrapper p {
  color: var(--secondary-color);
}
.romanovo-contacts-section .romanovo-form-wrapper .agreement {
  color: var(--secondary-color);
  font-size: 14px;
  margin: 0;
}
.romanovo-contacts-section .romanovo-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.romanovo-contacts-section .romanovo-form .ai-name {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 150px;
          flex: 1 0 150px;
}
.romanovo-contacts-section .romanovo-form .ai-phone {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 150px;
          flex: 1 0 150px;
}
.romanovo-contacts-section .romanovo-form .ai-textarea {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}
.romanovo-contacts-section .romanovo-form button {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  padding: 16px 24px;
}

.romanovo-contacts-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 850px;
  grid-template-columns: auto 850px;
}

@media (max-width: 1200px) {
  .romanovo-contacts-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .romanovo-form-wrapper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 30px;
  }
}
#map {
  height: 566px;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 960px) {
  .romanovo-contacts-section .romanovo-form .ai-phone {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: 100%;
  }
  .romanovo-form-wrapper {
    padding: 30px;
  }
}
[class*=ymaps-2][class*=-ground-pane] {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.romanovo-footer-section {
  background: var(--main-color);
  min-height: 430px;
}

/*******************************************
* footer
*******************************************/
.contacts-columns .footer-column h6 {
  color: var(--white);
  font-weight: 600;
}
.contacts-columns .footer-column a, .contacts-columns .footer-column p {
  font-weight: 600;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 16px;
}

.contacts-columns .footer-column a:hover {
    color: var(--white);
}

.romanovo-menu-page h1 {
  font-size: 48px;
  font-weight: 600;
}
.romanovo-menu-page .romanovo-grid-components {
  width: 100%;
}
.romanovo-menu-page .romanovo-grid-components .romanovo-component {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.romanovo-side-bar {
  position: sticky;
  top: 0;
}

.side-menu li {
  margin-bottom: 4px;
}
.side-menu a {
  font-size: 16px;
  font-weight: 600;
  display: block;
  padding: 8px 16px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.side-menu a:hover {
  color: var(--secondary-color);
  background-color: var(--white);
  border-radius: 8px;
}
.side-menu a.active {
  color: var(--main-color);
  background-color: var(--white);
  border-radius: 8px;
}

.products-list-title {
  font-size: 24px;
  font-weight: 600;
}

.uk-modal-dialog {
  border-radius: var(--radius-border-24);
}

.product-info-modal {
  background-color: var(--body-color);
}
.product-info-modal .uk-modal-title {
  font-size: 24px;
  font-weight: 600;
}
.product-info-modal .uk-slideshow-items {
  border-radius: var(--radius-border-16);
}
.product-info-modal .product-info-modal__description {
  color: var(--secondary-color);
}
.product-info-modal .default-outline-btn {
  margin-top: 0;
}

.product-info-modal__sum-text {
  color: var(--main-color);
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.product-info-modal__weight {
  color: var(--secondary-color);
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.product-info-modal__sum {
  color: var(--secondary-color);
}

.counter {
  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;
}
.counter .minus {
  background: var(--border-color-light) url(../../assets/images/dist/icons/minus.svg) center no-repeat;
}
.counter .plus {
  background: var(--border-color-light) url(../../assets/images/dist/icons/plus.svg) center no-repeat;
}

.minus,
.plus {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 400;
  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;
  cursor: pointer;
  padding: 0 !important;
}

.input-total {
  font-family: var(--main-font);
  font-weight: 600;
  color: var(--main-color);
  width: 15px;
  margin-inline: 10px;
  text-align: center;
}

.hide {
  overflow: hidden;
  padding-right: 11px;
}

/*******************************************
* header
*******************************************/
.main-header {
  background: var(--main-color);
}
.main-header a {
  color: var(--white);
  font-weight: 600;
}
.main-header a:hover {
  text-decoration: none;
  color: var(--secondary-color);
}
.main-header .uk-section {
  padding: 22px 0;
}
.main-header .main-header__nav {
  margin-left: 64px;
}
.main-header .main-header__nav li:not(:last-child) {
  margin-right: 32px;
}

.main-header__menu-icon {
  display: block;
  margin-left: 16px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.main-header__menu-icon:hover path {
  stroke: var(--accent-color);
}
.main-header__menu-icon.show {
  -webkit-transform: rotateZ(45deg);
      -ms-transform: rotate(45deg);
          transform: rotateZ(45deg);
}
.main-header__menu-icon.show path {
  stroke: var(--accent-color);
}

.main-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-header__menu.is-open {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  height: 58px;
  margin-top: 30px;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1200px) {
  .main-header .navIcon {
    display: block;
  }
  .main-header__menu {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    height: 0;
    overflow: hidden;
  }
  .main-header .main-header__nav {
    padding: 0;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .main-header__menu a {
    font-size: 14px;
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .main-header__menu.is-open {
    display: block;
    height: auto;
    text-align: center;
  }
  .main-header__menu.is-open .main-header__nav {
    margin-top: 40px;
    line-height: 2.5;
    display: block;
  }
  .main-header__menu.is-open .main-header__nav a {
    font-size: 20px;
  }
  .main-header .main-header__nav li:not(:last-child) {
    margin: 0;
  }
  .main-header__phone {
    margin-top: 50px;
  }
  .main-header__menu-icon {
    display: none;
  }
}
.main-header__nav {
  margin: 0;
  margin-right: 40px;
}

.main-header__phone {
  padding: 16px 48px;
  border: 2px solid var(--white);
  border-radius: 8px;
  margin-left: auto;
  -webkit-transition: color 0.3s ease, border-color 0.3s ease;
  -o-transition: color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.main-header__phone:hover {
  text-decoration: none;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

/* .top-menu-container {
  height: 0;
  -webkit-transform: translateY(-80px) translateZ(0);
          transform: translateY(-80px) translateZ(0);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  will-change: transform, height;
}
.top-menu-container.show {
  -webkit-transform: translateY(0) translateZ(0);
          transform: translateY(0) translateZ(0);
  height: 80px;
} */
.top-menu-container {overflow-x: auto;}

.top-hidden-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-bottom: 15px;
  margin-bottom: 0;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.top-hidden-menu::-webkit-scrollbar {
  display: none;
}
.top-hidden-menu a {
  display: block;
  margin-right: 2rem;
  font-weight: 600;
}
.top-hidden-menu a.active {
  color: var(--accent-color);
}

.ai-title-h3 {
  font-weight: 600;
  color: var(--main-color);
}

.ai-romanovo-list {
  list-style: disc;
  color: var(--secondary-color);
  line-height: 1.5;
}

.uk-dotnav > * > * {
  background-color: var(--white);
  border-color: var(--white);
}

.uk-dotnav > .uk-active > * {
  background-color: var(--white);
  outline: 3px solid var(--accent-color);
}

.uk-card {
  border-radius: var(--radius-border-24);
  overflow: hidden;
}

.ai-section-title {
  font-size: 32px;
  font-weight: 600;
}

.outline-link {
  display: block;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  cursor: pointer;
  padding: 16px;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  -webkit-transition: border-color 0.3s ease, color 0.3s ease;
  -o-transition: border-color 0.3s ease, color 0.3s ease;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.outline-link:hover {
  border-color: var(--accent-color-hover);
  color: var(--accent-color-hover);
  text-decoration: none;
}

/*******************************************
* hamburger menu
*******************************************/
.navIcon {
  position: relative;
  display: none;
  width: 32px;
  height: 32px;
  margin-left: auto;
  text-align: center;
  top: -5px;
  margin-right: 20px;
}

.navIcon .bar {
  display: block;
  position: absolute;
  left: 0;
  top: 15px;
  width: inherit;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  -webkit-transition: top 0.3s ease, left 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, left 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, top 0.3s ease, left 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, left 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, left 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transition: transform 0.3s ease, top 0.3s ease, left 0.3s ease;
  -moz-transition: transform 0.3s ease, top 0.3s ease, left 0.3s ease;
}

.navIcon .bar:nth-child(1) {
  top: 5px;
}

.navIcon .bar:nth-child(2) {
  opacity: 1;
  -o-transition: opacity 0.1s ease 0.125s, left 0.2s ease;
  transition: opacity 0.1s ease 0.125s, left 0.2s ease;
  -webkit-transition: opacity 0.1s ease 0.125s, left 0.2s ease;
  -moz-transition: opacity 0.1s ease 0.125s, left 0.2s ease;
}

.navIcon .bar:nth-child(3) {
  top: 25px;
}

.navIcon.is-open .bar:nth-child(1) {
  top: 15px;
  -ms-transform: translateY(0) rotate(45deg);
      transform: translateY(0) rotate(45deg);
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
}

.navIcon.is-open .bar:nth-child(2) {
  opacity: 0;
  -o-transition-delay: 0s;
     transition-delay: 0s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
}

.navIcon.is-open .bar:nth-child(3) {
  top: 15px;
  -ms-transform: translateY(0) rotate(-45deg);
      transform: translateY(0) rotate(-45deg);
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
}

.navIcon:hover .bar:nth-child(2) {
  left: 5px;
}

.default-outline-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  cursor: pointer;
  padding: 16px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
  -webkit-transition: border-color 0.3s ease, color 0.3s ease;
  -o-transition: border-color 0.3s ease, color 0.3s ease;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.default-outline-btn:hover {
  border-color: var(--accent-color-hover);
  color: var(--accent-color-hover);
  text-decoration: none;
}

.default-red-btn {
  background: var(--accent-color);
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  color: #fff;
  cursor: pointer;
  text-align: center;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.default-red-btn:hover {
  background: var(--accent-color-hover);
  text-decoration: none;
}

.romanovo-modal-window .uk-modal-dialog {
  border-radius: var(--radius-border-24);
  padding: 40px;
}
.romanovo-modal-window .uk-modal-dialog h4 {
  font-size: 32px;
  font-weight: 600;
}
.romanovo-modal-window .uk-modal-dialog p {
  color: var(--secondary-color);
}

.romanovo-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.romanovo-form label {
    display: block;
    border: 1px solid var(--border-color-ligh);
}
.romanovo-form .ai-name {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 150px;
          flex: 1 0 150px;
}
.romanovo-form .ai-phone {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 150px;
          flex: 1 0 150px;
}
.romanovo-form .ai-textarea {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}
.romanovo-form button {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  padding: 16px 24px;
}

.romanovo-form :where(input, textarea) {
  border-radius: 8px;
  padding: 16px 24px;
  height: auto;
}

.agreement {
  font-size: 14px;
}

[class*=uk-modal-close-] {
  top: 20px;
  right: 20px;
}

/* Webkit scrollbar */
::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 5px;
}

.uk-input.is-invalid {
    border-color: var(--accent-color);
}

.input-error .error {
    font-size: 12px;
    color: var(--accent-color);
}
.swal2-title {
    font-size: 1.475em!important;
    color: var(--main-color);
}
.swal2-container.swal2-center>.swal2-popup {
    border-radius: 24px;
}
.swal2-icon.swal2-success {
    transform: scale(.6);
}


/* cookie_note */
.cookie-alert {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 1.2rem;
    border-radius: 15px;
    background: #fff;
    max-width: 70%;
    margin: auto;;
}
 .cookie-alert__innner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    font-size:.8rem;
}
 .cookie-alert__innner p {margin: 0;}
 button.cookie_accept {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 18px!important;
    margin-left: auto;
 }
