@import url('normalize.css');
@import url('slider.css');
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.eot');
  src: url('../fonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Gilroy-Regular.woff') format('woff'),
       url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.eot');
  src: url('../fonts/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Gilroy-Medium.woff') format('woff'),
       url('../fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-SemiBold.eot');
  src: url('../fonts/Gilroy-SemiBold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Gilroy-SemiBold.woff') format('woff'),
       url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.eot');
  src: url('../fonts/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Gilroy-Bold.woff') format('woff'),
       url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

:root {
  --margin: -40px;
  --padding: 40px;
  --font-family: 'Gilroy', sans-serif;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --color-default: #000;
  --color-dark: #111;
  --color-pink: #f20a6c;
}
@media(max-width: 992px) {
  :root {
    --margin: -15px;
    --padding: 15px;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
html, 
body {
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  display: block;
  margin: 0;
  padding: 0 var(--padding);
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.4;
  font-weight: var(--font-weight-400);
  color: var(--color-default);
  background: #fff;
}
h1,
h2,
h3 {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}
.container h2 {
display: block;
    position: relative;
    margin: 0;
    padding: 0 0 10px 0;
    font-size: 26px;
    line-height: 1;
    font-weight: var(--font-weight-700);
    text-transform: uppercase;
    background: linear-gradient(0deg, #27367d 0%, #208ac9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #27367d;
}
b,
strong {
  font-weight: var(--font-weight-700);
}
a,
a:hover,
a:focus,
button,
button:hover,
button:focus {
  outline: none;
  text-decoration: none;
  color: #000;
}


@media(max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .vr {text-align:right;}
}

@media(max-width: 700px) {
  .vr {text-align:center; font-size: 14px;}
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
   .vr {
	   text-align:right; 
	   font-size: 16px;
   }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
   .vr {
	text-align:right; 
   }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
  .vr {
	text-align:right; 
  }
}
  .vr {font-weight: 500; }
  
.container::before,
.container::after,
.container-lg::before,
.container-lg::after {
  content: '';
  display: table;
  clear: both;
}
.container,
.container-lg {
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.container {
  max-width: 1170px;
}
.container-lg {
  max-width: 1370px;
}

.btn {
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 2;
  width: auto;
  margin: 0;
  padding: 15px 30px;
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 20px;
  font-weight: var(--font-weight-700);
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  background: #2087c7;
  border-radius: 15px;
  border: 0;
  transition: all .3s ease;
}
.btn:hover {
  color: #fff;
  background: #176eb0;
  -webkit-transform: scale(1.03);
     -moz-transform: scale(1.03);
       -o-transform: scale(1.03);
          transform: scale(1.03);
}
.btn.border {
  box-shadow: 0 0 0 2px #fff;
}

.form-control,
.form-control:hover,
.form-control:focus {
  display: block;
  position: relative;
  width: 100%;
  padding: 15px;
  font-size: 18px;
  line-height: 1;
  font-weight: var(--font-weight-400);
  color: #111;
  box-shadow: 0 0 0 2px #9f9f9f;
  background: #fff;
  border: 0;
  border-radius: 15px;
  outline: 0;
}
.form-control::placeholder {
  color: #9f9f9f;
}
.form-group {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
}
.form-group label {
  display: block;
  position: absolute;
  z-index: 2;
  left: 20px;
  top: -7px;
  margin: 0 -5px;
  padding: 0 5px;
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  background: #fff;
}

.section-head {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  margin: 0 0 50px 0;
  padding: 0;
}
.section-head h2, .section-head h1 {
  display: block;
  position: relative;
  margin: 0;
  padding: 0 0 10px 0;
  font-size: 36px;
  line-height: 1;
  font-weight: var(--font-weight-700);
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(0deg, #27367d 0%, #208ac9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #27367d;
}
.section-head h2::before, .section-head h1::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #25488d;
}
.section-head.img::before,
.section-head.img::after {
  content: '';
  display: block;
  width: 180px;
  height: 34px;
  margin-bottom: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.section-head.img::before {
  margin-right: 15px;
  background-image: url('../../images/section-head-left.png') 
}
.section-head.img::after {
  margin-left: 15px;
  background-image: url('../../images/section-head-right.png');
}
@media(max-width: 768px) {
  .section-head h2 {
    font-size: 30px;
  }
  .section-head.img::before,
  .section-head.img::after {
    display: none;
  }
}

section {
  display: block;
  position: relative;
  z-index: 2;
  margin: 0 var(--margin);
  padding: 70px var(--padding);
}
section .container,
section .container-lg {
  position: relative;
  z-index: 2;
}

section#header {
  padding-top: 20px;
  padding-bottom: 20px;
}
.header {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.header-brand {
  display: block;
  flex: 0 0 250px;
}
.header-brand img {
  display: block;
  width: 100%;
  height: auto;
}
.header-text {
  display: block;
  flex: 1 1 auto;
  margin: 0 20px 0 70px;
  font-size: 16px;
  font-weight: var(--font-weight-500);
}
.header-contact {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 22px;
  font-weight: var(--font-weight-600);
}
.header-mail,
.header-phone {
  display: block;
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  padding: 0 0 0 45px;
}
.header-mail a,
.header-phone a {
  color: #000;
  text-decoration: none;
}
.header-mail::before,
.header-phone::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 32px;
  background: no-repeat center;
  background-size: contain;
  transform: translate(0,-50%);
}
.header-mail::before {
  background-image: url('../../images/header-icon-mail.webp');
}
.header-phone::before {
  background-image: url('../../images/header-icon-phone.webp');
}
@media(max-width: 1140px) {
  .header-brand {
    flex: 0 0 200px;
  }
  .header-text {
    margin: 0 20px;
    font-size: 14px;
  }
}
@media(max-width: 992px) {
  .header-contact {
    flex-flow: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
  }
  .header-mail,
  .header-phone {
    padding-left: 34px;
  }
  .header-mail::before,
  .header-phone::before {
    width: 24px;
    height: 24px;
  }
}
@media(max-width: 700px) {
  .header {
    flex-flow: column;
    align-items: center;
  }
  .header-brand {
    flex: 0 0 auto;
    width: 100%;
    max-width: 240px;
  }
  .header-text {
    margin: 10px 0 20px 0;
    font-size: 12px;
    text-align: center;
  }
  .header-contact {
    flex-flow: row nowrap;
    align-items: center;
    gap: 30px;
    font-size: 14px;
  }
  .header-mail,
  .header-phone {
    padding-left: 25px;
  }
  .header-mail::before,
  .header-phone::before {
    width: 18px;
    height: 18px;
  }
}

section#menu {
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(0, #27367d 0, #208ac9 100%);
}
.menu {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: center;
}
.menu a {
  display: block;
  padding: 20px;
  font-size: 20px;
  font-weight: var(--font-weight-600);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
@media(max-width: 992px) {
  .menu a {
    padding: 15px;
    font-size: 16px;
  }
}
@media(max-width: 768px) {
  section#menu {
    background: #2364a6;
    display: none;
  }
  .menu {
    flex-flow: column;
    align-items: stretch;
  }
  .menu a {
    margin: 0 var(--margin);
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,.2);
  }
}
.mobile-menu {
  display: none;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: calc(100% + (var(--padding) * 2));
  margin: 0 var(--margin);
  padding: 15px var(--padding);
  text-align: center;
  background: linear-gradient(0, #27367d 0, #208ac9 100%);
  border: 0;
  cursor: pointer;
}
.mobile-menu,
.mobile-menu:hover,
.mobile-menu:focus {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 20px;
  font-weight: var(--font-weight-700);
  color: #fff;
}
.mobile-menu .icon {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  justify-content: space-between;
  width: 20px;
  height: 16px;
}
.mobile-menu .icon span {
  display: block;
  height: 2px;
  background: #fff;
}
@media(max-width: 768px) {
  .mobile-menu {
    display: flex;
  }
}

section#hello {
  background: url('../../images/hello-bg.webp') no-repeat center;
  background-size: cover;
}
.hello {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.hello-form {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  gap :10px;
  flex: 0 0 380px;
  margin: 0;
  padding: 40px 15px;
  font-size: 10px;
  font-weight: var(--font-weight-400);
  color: #fff;
  text-align: center;
  background: linear-gradient(0, rgba(39,54,125,.9) 0, rgba(32,138,201,.9) 100%);
  border-radius: 15px;
}
.hello-form input,
.hello-form textarea,
.hello-form button {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}
.hello-form .form-control {
  padding: 12px 10px;
  font-size: 12px;
  text-align: center;
  box-shadow: 0 0 0 2px #3e92d1;
  border-radius: 10px;
}
.hello-form .form-control::placeholder {
  color: #666;
}
.hello-form .btn {
  border-radius: 10px;
}
.hello-form .title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: var(--font-weight-600);
  text-transform: uppercase;
}
.hello-form .note {
  margin-top: 10px;
}
.hello-body {
  flex: 1 1 auto;
  color: #fff;
}
.hello-body h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: var(--font-weight-700);
  text-transform: uppercase;
  text-shadow: 9px 8px 10px rgba(0,0,0,.5);
}
.hello-body p {
  display: block;
  margin: 50px 0 100px 0;
  font-size: 21px;
  line-height: 1.1;
  font-weight: var(--font-weight-600);
  text-shadow: 9px 8px 10px rgba(0,0,0,.5);
}
@media(max-width: 1100px) {
  .hello-body h1 {
    font-size: 24px;
  }
  .hello-body p {
    font-size: 18px;
  }
}
@media(max-width: 992px) {
  .hello-form {
    display: none;
  }
}
@media(max-width: 768px) {
  section#hello {
    background-position: left center;
  }
  .hello-body {
    text-align: center;
  }
  .hello-body h1 {
    font-size: 18px;
    line-height: 1.4;
  }
  .hello-body p {
    margin: 20px 0 30px 0;
    font-size: 14px;
    line-height: 1.4;
  }
}

section#order {
  background: url('../../images/section-order-bg.webp') no-repeat center;
  background-size: cover;
}
.order-body {
  display: block;
}
.order-subtitle {
  display: block;
  margin-top: -40px;
  padding: 0;
  font-size: 23px;
  font-weight: var(--font-weight-600);
  text-align: center; 
}
.order-note {
  display: block;
  font-size: 16px;
  font-weight: var(--font-weight-400);
  text-align: center; 
}
.order-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 20px;
  margin: 40px 0;
  grid-template-areas:
        "a b c"
        "d d d "
        ". f .";
}
.order-form span[data-name="textarea-455"]{
	grid-area: d;
}
.order-form span[data-name="your-name"]{
	grid-area: a;
}
.order-form span[data-name="your-phone"]{
	grid-area: b;
}
.order-form span[data-name="your-email"]{
	grid-area: c;
}
.order-form .btn{
	grid-area: f;
}
@media(max-width: 768px) {
  .order-form {
    grid-template-columns: repeat(1, 1fr);
	  grid-template-areas:
        "a"
		"b"
		"c"
        "d"
        "f";
  }
}
@media(max-width: 500px) {
  .order-form {
    grid-template-columns: repeat(1, 1fr);
	grid-template-areas:
        "a"
		"b"
		"c"
        "d"
        "f";
  }
}

section#services {
  background: transparent;
}
.services-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 30px;
}
.service {
  display: flex;
  position: relative;
  overflow: hidden;
  flex-flow: column;
  align-items: stretch;
  justify-content: stretch;
  margin: 0;
  padding: 15px;
  background: #ebebeb;
  border-radius: 15px;
  font-size: 18px;
  font-weight: var(--font-weight-500);
  color: var(--color-default);
  text-align: center;
  text-decoration: none;
  transition: all .2s ease;
}
.service:hover {
  box-shadow: 5px 5px 10px rgba(0,0,0,.3);
}
.service-cover {
  display: block;
  overflow: hidden;
  flex: 0 0 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
} 
.service-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  margin: 20px 0 5px 0; 
}
@media(max-width: 992px) {
  .services-body {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media(max-width: 768px) {
  .services-body {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

section#address {
  background: url('../../images/address-bg.webp') #eceded no-repeat center;
  background-size: cover;
}
.address-body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}
.address-item {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
}
.address-item-map {
  display: block;
  flex: 0 0 500px;
}
.address-item-map iframe, .address-item-map img {
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #2087c7;
  object-fit: cover;
  object-position: center;
  min-height:250px;
}
.address-item-body {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  justify-content: center;
  flex: 1 1 auto;
  font-size: 18px;
  font-weight: var(--font-weight-500);
}
.address-item-body h4 {
  display: block;
  margin: 0 0 35px 0;
  font-size: 26px;
  font-weight: var(--font-weight-600);
}
.address-item-body ul,
.address-item-body ul li {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.address-item-body ul li {
  padding-left: 25px;
  margin-bottom: 5px;
}
.address-item-body ul li::before {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 14px;
  background: url('../../images/address-marker.webp') no-repeat center;
  background-size: contain;
}
.address-item-body .btns {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
@media(max-width: 992px) {
  .address-body {
    display: flex;
    flex-flow: column;
    align-items: stretch;
  }
  .address-item {
    flex-flow: column;
    align-items: stretch;
    gap: 20px;
  }
  .address-item-map {
    order: 1;
    flex: 1 1 auto;
  }
  .address-item-map img, .address-item-map iframe {
    max-height: 400px;
  }
  .address-item-body {
    order: 2;
    font-size: 14px;
  }
  .address-item-body h4 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

section#plus {
  background: transparent;
}
.plus-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 60px;
}
.plus-cover img {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}
.plus-items {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 25px;
}
.plus-item {
  display: block;
  margin: 0;
  padding: 30px 20px 40px 20px;
  background: #ebebeb;
  border-radius: 15px;
}
.plus-item h4 {
  display: block;
  margin: 0 0 20px 0;
  font-size: 26px;
  line-height: 1;
  font-weight: var(--font-weight-600);
}
@media(max-width: 992px) {
  .plus-body {
    gap: 30px;
  }
}
@media(max-width: 768px) {
  .plus-body {
    grid-template-columns: 1fr;
    grid-template-rows: 400px 2fr;
    gap: 15px;
  }
  .plus-items {
    gap: 15px;
  }
}

.docs-body {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 0 50px;
}
.docs-carousel {
  order: 2;
  flex: 1 1 auto;
}
.docs-carousel .doc {
  display: block;
  margin: 0;
  padding: 0;
}
.docs-carousel .doc img {
  display: block;
  width: 100%;
  height: auto;
}
.docs-nav {
  display: block;
  flex: 0 0 44px;
  height: 44px;
  cursor: pointer;
}
.docs-nav.prev {
  order: 1;
  background: url('../../images/docs-nav-prev.webp') no-repeat center;
  background-size: contain;
}
.docs-nav.next {
  order: 3;
  background: url('../../images/docs-nav-next.webp') no-repeat center;
  background-size: contain;
}
@media(max-width: 992px) {
  .docs-body {
    gap: 30px;
    padding: 0;
  }
}
@media(max-width: 500px) {
  .docs-body {
    gap: 15px;
  }
  .docs-nav {
    flex: 0 0 30px;
    height: 30px;
  }
}

section#footer {
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
  background: url('../../images/footer-bg.webp') no-repeat center;
  background-size: cover;
}
.footer {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.footer-map {
  display: block;
  overflow: hidden;
  flex: 1 1 auto;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
}
.footer-map img, .footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  min-height:310px;
}
.footer-body {
  display: block;
  flex: 0 0 450px;
}
.footer-brand {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: -65px 0 30px 0;
  padding: 65px 40px 20px 40px;
  background: #fff;
  border-radius: 0 0 15px 15px;
}
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-item {
  display: block;
  position: relative;
  margin: 0 0 35px 0;
  padding: 0;
  font-size: 20px;
  font-weight: var(--font-weight-500);
  color: #fff;
}
.footer-item a {
  color: #fff;
  text-decoration: none;
}
.footer-item.icon {
  padding-left: 35px;
  font-size: 18px;
}
.footer-item.icon::before {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 22px;
  height: 27px;
  background: no-releat center;
  background-size: contain;
}
.footer-item.icon.point::before {
  background-image: url('../../images/footer-icon-point.webp');
}
.footer-item.icon.phone::before {
  background-image: url('../../images/footer-icon-phone.webp');
}
@media(max-width: 768px) {
  .footer {
    flex-flow: column;
    gap: 30px;
  }
  .footer-map {
    padding: 0;
  }
  .footer-body {
    flex: 1 1 auto;
  }
  .footer-brand {
    max-width: 200px;
    margin-bottom: 20px;
    padding: 50px 20px 10px 20px;
  }
  .footer-item {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .footer-item.icon {
    font-size: 14px;
  }
}

.modal {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  position: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 98;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 50px 20px;
  visibility: hidden;
  opacity: 0;
  background: rgba(0,0,0,.5);
  -webkit-backdrop-filter: blur(10px);
     -moz-backdrop-filter: blur(10px);
      -o-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.modal.opened {
  visibility: visible;
  opacity: 1;
}
.modal-container {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  margin: 0;
  padding: 50px;
  color: #000;
  background: #fff;
  box-shadow: 0 0 100px 0 rgba(0,0,0,.5);
  border-radius: 15px;
}
.modal-container .title {
  font-size: 30px;
  font-weight: var(--font-weight-700);
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(0deg, #27367d 0%, #208ac9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #27367d;
}
.modal-container .note {
  display: block;
  margin: 10px 0 0 0;
  font-size: 12px;
  font-weight: var(--font-weight-400);
  text-align: center;
}
.modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
  opacity: .3;
  transition: all .2s ease;
}
.modal-close:hover {
  opacity: .5;
}
.modal-close::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: no-repeat center url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg height='512px' id='Layer_1' style='enable-background:new 0 0 512 512;' version='1.1' viewBox='0 0 512 512' width='512px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath d='M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4 L256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1 c-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1 c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z'/%3E%3C/svg%3E");
  background-size: contain;
}
@media(max-width: 500px) {
  .modal {
    padding: 10px;
  }
  .modal-container {
    padding: 50px 20px;
  }
  .modal-container .title {
    font-size: 26px;
  }
}

.mail-alert {
  display: block;
  position: fixed;
  z-index: 99;
  top: -20px;
  left: 20px;
  width: 100%;
  max-width: 300px;
  margin: 0;
  padding: 20px;
  font-size: 14px;
  font-weight: var(--font-weight-600);
  color: #fff;
  background: linear-gradient(0, rgba(39,54,125,.9) 0, rgba(32,138,201,.9) 100%);
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s ease;
  visibility: hidden;
  opacity: 0;
}
.mail-alert.success {
  top: 20px;
  visibility: visible;
  opacity: 1;
}
.mail-alert h1 {
  margin: 0 0 10px 0;
  font-size: 18px;
}

.wpcf7-spinner{display:none;}

.form-ban {
	display: flex;
    flex-direction: column;
    gap: 10px;
	
}

.yoast-breadcrumbs {padding: 10px 0;}
.yoast-breadcrumbs a {color: #004f9f;}

i.yb::before {
	content: '';
    display: inline-block;
    position: relative;
    top: 1px;
    left: 0;
    width: 10px;
    height: 10px;
    background: url(../../images/address-marker.webp) no-repeat center;
    background-size: contain;
    margin: 0 5px;
	}
	
.wp-block-table.is-style-stripes thead tr {
	color: #fff;
    text-align: left;
    font-size: 18px;
    background: linear-gradient(0deg, #27367d 0%, #208ac9 100%);
    line-height: 2;
}
.wp-block-table.is-style-stripes thead {
	border: 0;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: #ebebeb;
}

.wp-block-file:not(.wp-element-button) {
    font-size: 1em;
}

.order-form .wpcf7-response-output  {grid-column: 1 / span 4;}

.order-form .wpcf7-not-valid-tip {margin-bottom: -25px;}

@keyframes fbt-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(44,168,221,.6);
  }
  100% {
    box-shadow: 0 0 0 6px rgba(44,168,221,0);
  }
}

.ftb {
  display: block;
  position: fixed;
  z-index: 99;
    bottom: 80px;
    right: 20px;
  margin: 0;
  padding: 0;
}
.ftb-link {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  margin: 10px 0 0 0;
  padding: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.ftb-link.tlg {
  background: #2ca8dd;
  animation: fbt-shadow 1.5s linear 0s infinite;
}
.ftb-link.wa {
  background: #01e675;
  animation: fbt-shadow 1.5s linear 0s infinite;
}
.ftb-link.tlg img, .ftb-link.wa img {
  width: 40px;
  height: auto;
}

.wp-block-file *+.wp-block-file__button {
    display: inline-block;
}

#swipebox-overlay {
    background: #0d0d0d9e;
}

.modal-container .note a, #order .order-note a {
    color: #25488d;
}

.footer-tb {
	flex: 1 1 100%;
	padding-top: 15px;
	color: #fff;
}

.footer-tb a{
	color: #fff;
}



/**/