@charset "UTF-8";
/*=====ADD FONT=====*/
@import url('https://fonts.googleapis.com/css2 ?family=Raleway:wght@300;400;500;600;700;900&display=swap');
/*=====END ADD FONT=====*/



/*=====BUTTON-UP=====*/
#button-up {
  display: none;
  opacity: 0.8;
  filter: alpha(opacity=50);
  position: fixed;
  right: 0.5em;
  bottom: 1.2em;
  color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border-radius: 6em;
  border: 3px solid red;
  transition: .3s;
}

#button-up:hover {
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: .3s;
}

#button-up span {
  font-size: 2em;
  font-weight: bold;
}

/*=====END BUTTON-UP=====*/

/*=====SCROLLBAR=====*/
::-webkit-scrollbar-button {
  background-image: url("");
  background-repeat: no-repeat;
  width: 1px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  background-color: #eae8e8;
  background-image: url("https://yraaa.ru/_pu/24/59610063.png");
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px;
  border: 0.5px solid #fff;
}

::-webkit-resizer {
  background-image: url("");
  background-repeat: no-repeat;
  width: 3px;
  height: 0px;
}

::-webkit-scrollbar {
  width: 9px;
  background-color: #fff;
  border-radius: 3px;
}

/*=====END SCROLLBAR=====*/

/*=====ROOT=====*/
:root {
  --size: calc(100vw / 100);
  --width-container: 90vw;
}

@media (min-width: 769px) and (max-width: 1023px) {
  :root {
    --size: calc(100vw / 75);
    --width-container: 90vw;
  }
}

@media (min-width: 451px) and (max-width: 768px) {
  :root {
    --size: calc(100vw / 55);
    --width-container: 92vw;
  }
}

@media (max-width: 450px) {
  :root {
    --size: calc(100vw / 25);
    --width-container: 94vw;
  }
}

/*=====END ROOT=====*/

/*=====HTML & BODY=====*/
html, body {
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  max-width: 100%;
  color: #1E313F;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*, a:focus {
  outline: none !important;
}

html {
  overflow-y: scroll;
}



/*=====END HTML & BODY=====*/


/*=====HOME=====*/
.call-wrap {
  padding: 0 5% 0 30%;
}

.call-flex {
  margin: 0.5em 0;
  display: flex;
}

@media (max-width: 1023px) {
  .call-wrap {
    padding: 0;
  }

  .call-flex {
    flex-direction: column;
  }
}

/*=====END HOME=====*/


/*=====NEWS=====*/
.bg-box-text {
  width: 100%;
}

.news-table {
  width: 100%;
  margin-top: 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  align-items: stretch;
}

.itemnew {
  display: flex;
  flex-direction: column;
  width: 32.3%;
  align-self: stretch;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(34, 60, 80, 0.14);
  -moz-box-shadow: 0px 0px 6px 0px rgba(34, 60, 80, 0.14);
  box-shadow: 0px 0px 6px 0px rgba(34, 60, 80, 0.14);
}

.imgnew {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: flex;
}

.new50 {
  width: 50%;
  float: left;
  margin: 0 2em 2em 0;
}

.imnew {
  width: 100%;
  height: auto;
  object-fit: cover;
  left: 0 !important;
}

.textnew {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5em;
  flex-grow: 1;
}

.textnew h3 {
  margin-top: 0 !important;
}

.textnew p {
  margin-bottom: 2.5em !important;
}

.flexbottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.linkico {
  display: flex;
  align-items: center;
}

.newdate {
  display: flex;
  align-items: center;
  color: #3D5059;
  padding-top: 1.5em;
}

.new-nav {
  display: flex;
  border-bottom: 1px solid #C4C4C4;
}

.new-nav a {
  padding: 0.7em 1.5em;
  color: #3D5059;
  /*border-bottom: 3px solid transparent;*/
  text-decoration: none;
  background-image: linear-gradient(#1C7FBE, #1C7FBE);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .3s;
}

.new-active {
  color: #1C7FBE;
  border-bottom: 2px solid #1C7FBE;
}

.new-nav a:hover {
  background-size: 100% 2px;
}

.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 1em;
}

.pag-nav {
  display: flex;
  gap: 0.15em;
}

.pag-nav li {
  list-style: none;
}

.pag-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  border: 1px solid #1C7FBE;
  border-radius: 0.5em;
}

.pag-nav li a:hover {
  border: 1px solid #02A3FF;
  background: rgba(2, 163, 255, 0.1);
}

.pag-nav li .pag-active {
  color: #02A3FF;
  border: 1px solid #02A3FF;
  background: rgba(2, 163, 255, 0.1);
}

.newscontent {
  width: 100%;
  padding: 10em 5vw 8em 5vw;
  background-image: url("/img/bg.png");
}

@media (max-width: 1023px) {
  .itemnew {
    width: 100%;
  }

  .newscontent {
    padding: 2em 5vw 2em 5vw;
    background-image: none;
  }

  .new50 {
    width: 100%;
    float: none;
    margin: 0;
  }

}

/*=====END NEWS=====*/
/*-----NEWS HOME-----*/

.bt-lk {
  color: #00A3FF;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-top: 3em;
}

.bt-lk span {
  margin-left: 0.2em;
}

.rt-span {
  margin-right: 0.2em;
}

.bt-lk:hover {
  color: #69C9FF;
}

.dt-new {
  display: flex;
  align-items: center;
  color: #8598A5;
}

.dt-new span {
  margin-right: 0.2em;
}

.mb-null {
  margin-bottom: 0;
}

.na {
  margin-bottom: 30px;
}

@media (max-width: 450px) {

  .imnew {
    width: 100%;
    margin-bottom: 1.5em;
  }

}

/*-----END NEWS HOME-----*/

/*-----CONTACT-----*/
.tabscont {
  font-size: 0;
}

.tabscont>input[type="radio"] {
  display: none;
}

.tabscont>div {
  /* скрыть контент по умолчанию */
  display: none;
  padding: 1em 0;
  font-size: 1rem;
}

/* отобразить контент, связанный с вабранной радиокнопкой (input type="radio") */
#tab-btn-cont-1:checked~#tcontent-1,
#tab-btn-cont-2:checked~#tcontent-2,
#tab-btn-cont-3:checked~#tcontent-3 {
  display: flex;
  color: black;
  padding-top: 2em;
  border-top: 1px solid #C4C4C4;
}

#tab-btn-cont-1:checked~#tcontent-1 p,
#tab-btn-cont-2:checked~#tcontent-2 p,
#tab-btn-cont-3:checked~#tcontent-3 p {
  color: #03345A;
}

.contmaps {
  width: 60%;
  margin-left: 3em;
}

.conttext {
  width: 40%;
}

.tabscont>label {
  display: inline-block;
  text-align: center;
  user-select: none;
  color: #03345A;
  border-bottom: 2px solid transparent;
  padding: 0.2em 2em;
  margin-right: 0.2em;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
  cursor: pointer;
  position: relative;
  top: 1px;
}

.tabscont>label:not(:first-of-type) {}

.tabscont>input[type="radio"]:checked+label {
  color: #03345A;
  border-bottom: 3px solid #1C7FBE;
}

.flex-p {
  padding: 0.7em 0;
}

@media (max-width: 1023px) {
  .tabscont>label {
    padding: 0.2em 0.7em;
    font-size: 0.8rem;
  }

  .contmaps {
    width: 100%;
    margin-left: 0;
  }

  .conttext {
    width: 100%;
  }

  #tcontent-1, #tcontent-2, #tcontent-3 {
    flex-direction: column;
  }
}

/*-----END CONTACT-----*/


/*=====UMBRACO GRID=====*/
.umb-block-grid__layout-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--umb-block-grid--grid-columns, 1), minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: minmax(50px, min-content);
  column-gap: var(--umb-block-grid--column-gap, 0);
  row-gap: var(--umb-block-grid--row-gap, 0);
  background-color: transparent !important;
}

.umb-block-grid__layout-item {
  position: relative;
  /* For small devices we scale columnSpan by three, to make everything bigger than 1/3 take full width: */
  grid-column-end: span min(calc(var(--umb-block-grid--item-column-span, 1) * 6), var(--umb-block-grid--grid-columns));
  grid-row: span var(--umb-block-grid--item-row-span, 1);
  background-color: transparent !important;
}


.umb-block-grid__area-container, .umb-block-grid__block--view::part(area-container) {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--umb-block-grid--area-grid-columns, var(--umb-block-grid--grid-columns, 1)), minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: minmax(50px, min-content);
  column-gap: var(--umb-block-grid--areas-column-gap, 0);
  row-gap: var(--umb-block-grid--areas-row-gap, 0);
  background-color: transparent !important;

}

.umb-block-grid__area {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* For small devices we scale columnSpan by three, to make everything bigger than 1/3 take full width: */
  grid-column-end: span min(calc(var(--umb-block-grid--area-column-span, 1) * 6), var(--umb-block-grid--grid-columns));
  grid-row: span var(--umb-block-grid--area-row-span, 1);
  background-color: transparent !important;
}

@media (min-width:1024px) {
  .umb-block-grid__layout-item {
    grid-column-end: span min(var(--umb-block-grid--item-column-span, 1), var(--umb-block-grid--grid-columns));
  }

  .umb-block-grid__area {
    grid-column-end: span var(--umb-block-grid--area-column-span, 1);
  }
}


/**** Custom additions to the default Grid Layout Stylehseet: ****/


/* additional CSS options for area-container and areas: */
.umb-block-grid__area-container, .umb-block-grid__block--view::part(area-container) {
  max-width: var(--my-container-max-width);
  padding: var(--my-container-padding);
  margin-left: auto;
  margin-right: auto;
  --umb-block-grid--areas-column-gap: 2em;
  --umb-block-grid--areas-row-gap: 2em;
  background-color: transparent !important;
}

.umb-block-grid__area {
  justify-content: center;
}

.umb-block-grid__layout-item[data-content-element-type-alias="oneColumnSectionBlock"] .umb-block-grid__layout-container {
  --umb-block-grid--column-gap: 2em;
  --umb-block-grid--row-gap: 2em;
}


.umb-block-grid {
  container-type: inline-size;
  --my-container-max-width: 80vw;
  --my-container-padding: 0;

}

@container (min-width: 720px) {
  .umb-block-grid__layout-container {
    --my-container-padding: 0;
  }
}

section {
  padding: 3em 0 !important;
}

section[bright-contrast] {
  color: white;
}

.pdtop {
  padding-top: 12em !important;
}

@media (max-width: 1023px) {
  .umb-block-grid {
    --my-container-max-width: 90vw;
  }

  section {
    padding: 1.5em 0 !important;
  }

  .pdtop {
    padding-top: 2em !important;
    background-image: none !important;
  }
}


/** only works on website. */
.umb-block-grid__layout-item:has(section[nobackgroundcolor])+.umb-block-grid__layout-item section[nobackgroundcolor] {
  padding-top: 0;
}

/*=====END UMBRACO GRID=====*/



/*=====CARDS=====*/

/* Call to action */
.call-to-action {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 2em;
  background-color: #1C7FBE;
  color: white;
}

.call-to-action img {
  width: 1.5em;
  margin-right: 0.5em;
}

.call-to-action:hover {
  background-color: #00A3FF;
  color: white !important;
}

.bottom-but {
  position: absolute;
  left: -4em;
  bottom: -0.5em;
}

@media (max-width: 1023px) {
  .bottom-but {
    left: 1em;
    bottom: 2em;
  }
}

/* end Call to action */



/* Card */
.card {
  position: relative;
}


.im-auto {
  display: flex;
  width: 100%;
  height: 100%;
}

.im-16-on-9 {
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.im-4-on-3 {
  display: flex;
  width: 100%;
}

.im-5-on-6 {
  display: flex;
  width: 100%;
  aspect-ratio: 5 / 6;
}

.im-2-on-2 {
  display: flex;
  width: 100%;
  aspect-ratio: 2 / 2;
}

.im-16-on-9 img, .im-4-on-3 img, .im-5-on-6 img, .im-2-on-2 img {
  height: 100%;
  width: 100%;
}

.im-auto img {
  width: auto;
  height: 100%;
}

.card img {
  object-fit: cover;
  height: 110%;
  width: 100%;
}

.card .card-content {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 20px;
  font-weight: 400 !important;
}

.aleft {
  left: 0;
}

.aright {
  right: 0;
}

.acenter {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}

.atop {
  top: 0;
}

.abottom {
  bottom: 0;
}

.av-center {
  margin-top: auto;
  margin-bottom: auto;
  top: 0;
  bottom: 0;
  text-align: center;
}

.card .card-content .wrap {
  margin: auto 0;
}

.card .card-content p {
  margin: 0;
  font-weight: 400 !important;
  color: white;
  margin: auto 0;
}

.card .card-content h3, .card .card-content h4 {
  color: white;
}


.card.--medium {
  height: auto;
}

.card.--medium .card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.card.--medium:hover .card-media img {
  transform: scale(1.2);
}

.card.--medium .card-content {
  position: relative;
  z-index: 1;
  bottom: 0;
  width: 99%;
  color: white !important;
  background-color: #00A3FF;
  transition: 0.3s;
}

.card.--medium:hover .card-content {
  background-color: #69C9FF;

}

.card.--medium .card-content p {
  display: flex;
  align-items: center;
}

@media (max-width: 1023px) {
  .card {
    width: 100% !important;
    aspect-ratio: 16 / 12 !important;
  }

  .card .card-content h3, .card .card-content h4 {
    font-size: 0.8rem;
  }
}

/* my style */

.nbtn {
  max-width: 10vw;
  margin: 0 auto;
}

.twobutton {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 88%;
  left: -0.5em;
  bottom: 1em;
  z-index: 20;
}

.border-gray {
  border: 1px solid #C4C4C4 !important;
}

.border-gray h4 {
  color: #9B9B9B;
}

@media (max-width: 1023px) {
  .nbtn {
    max-width: 100%;
  }
}

/* end my style */

/* end Card */


/* Div */
.flex-div {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 1em;
  border: 1px solid transparent;
  margin: 0 auto;
  background-color: transparent;
}

.flex-div .umb-block-grid__area-container {
  width: 100% !important;
  padding: 0;
}

.flex-div .umb-block-grid__area-container .umb-block-grid__area {
  width: 100% !important;
  padding: 0;
}

.g-l {
  justify-content: start;
}

.g-c {
  justify-content: center;
}

.g-r {
  justify-content: end;
}

.v-l {
  align-items: flex-start;
}

.v-c {
  align-items: center;
}

.v-r {
  align-items: flex-end;
}

.v-str {
  align-items: stretch;
}

.headerdiv {
  background: rgba(255, 255, 255, 0.7) !important;
  border-radius: 7px;
  padding: 4em;
  width: 91%;
  z-index: 10;
  position: relative;
}

.headerdiv::after {
  content: '';
  position: absolute;
  top: 0;
  left: 2.5%;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid #FFFFFF;
  box-sizing: border-box;
  transform: matrix(1, -0.05, 0.06, 1, 0, 0);
  width: 95%;
  height: 100%;
  z-index: -1;
}

.nhd {
  width: 100%;
  padding: 5em !important;
}

@media (max-width: 1023px) {
  .headerdiv {
    background: transparent !important;
    width: 100%;
    padding: 0;
  }

  .headerdiv::after {
    background: transparent;
    border: 2px solid transparent;
  }

  .nhd {
    padding: 0 1em !important;
  }

}

.divheight {
  min-height: 56vh !important;
  padding: 3em;
  width: 70%;
}

.divheight .umb-block-grid__area-container {
  width: 100% !important;
  height: 100% !important;
  padding: 0;
  /*border:1px solid yellow;*/
}

.divheight .umb-block-grid__area-container .umb-block-grid__area {
  width: 100% !important;
  height: 56vh !important;
  padding: 0;
  /*border:1px solid yellow;*/
}

.divheight .umb-block-grid__layout-container .umb-block-grid__layout-item {
  height: 28vh !important;
  padding: 0;
  /*border:1px solid yellow;*/
}

@media (max-width: 1023px) {
  .divheight {
    padding: 0;
    width: 100%;
  }

  .divheight p {
    display: none;
  }
}

.div80 {
  width: 80%;
}

@media (max-width: 1023px) {
  .div80 {
    width: 100%;
  }

  .umb-block-grid__layout-item:has(> .col-none) {
    display: none !important;
  }
}

/* end Div */


/* Image */
.image, .im {
  background-color: transparent !important;
}

.im {
  display: flex;
  align-items: start;
  padding: 0 !important;
}

.im-auto {
  display: flex;
  /*width: 100%;*/
  height: auto;
  overflow: hidden;
  background-color: transparent !important;
}

.im-16-on-9 {
  display: flex;
  /*width: 100%;*/
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: transparent !important;
}

.im-4-on-3 {
  display: flex;
  /*width: 100%;*/
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: transparent !important;
}

.im-5-on-6 {
  display: flex;
  /* width: 100%;*/
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background-color: transparent !important;
}

.im-2-on-2 {
  display: flex;
  /*width: 100%;*/
  aspect-ratio: 2 / 2;
  overflow: hidden;
  background-color: transparent !important;
}

.im-16-on-9 img, .im-4-on-3 img, .im-5-on-6 img, .im-2-on-2 img {
  height: 100%;
  width: 100%;
}

.im-auto img {
  height: auto;
  width: 100%;
}

.Cover {
  object-fit: cover;
}

.Contain {
  object-fit: contain;
}

.center {
  margin: 0 auto;
}

.left {
  margin-right: auto;
}

.right {
  margin-left: auto;

}

@media (max-width: 1023px) {
  .image {
    display: block;
    margin: 0 auto !important;
  }
}

/* end Image */

/* Img Text*/
.img-txt {
  display: flex;
  flex-direction: column;
  height: 100%;
  font: var(--size) 'Roboto', sans-serif;
  font-weight: 400 !important;
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0;
  color: #3D5059;
  background-color: transparent !important;
}

.Align-left {
  justify-content: flex-start;
}

.Align-right {
  justify-content: flex-end;
}

.Align-center {
  justify-content: center;
}

.Img-left, .Img-right {
  flex-direction: row !important;
  align-items: stretch;
}

.Img-top, .Img-bottom {
  align-items: center;
}

.Img-bottom {
  flex-direction: column-reverse !important;
}

.Img-right {
  flex-direction: row-reverse !important;
}

.Img-right .card-content p {
  text-align: right;
}

.Img-left .card-content, .Img-right .card-content {
  justify-content: center;
}


.img-txt .card-media {
  position: relative;
  /*width: 100%;*/
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.img-txt .card-media img {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
}

.img-txt .card-content {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.img-txt .card-content p {
  margin: 0;
}

.img-txt .card-content p span.white {
  color: #ffffff !important;
}

.Img-top .card-content p, .Img-bottom .card-content p, .Img-top .card-content p, .Img-bottom .card-content p {
  text-align: center;
}

.Img-top .card-content .ng-binding p {
  text-align: center;
}

/* end Img Text*/


/* Rich Text */
.rich-text {
  font-weight: 400;
}

.rich-text ul {
  padding: 0;
  margin: 0;
}

.rich-text>p:first-child {
  margin-top: 0;
  font: var(--size) 'Roboto', sans-serif;
  font-weight: 400 !important;
}

@media (max-width: 1023px) {
  .rich-text {
    font-size: 0.8rem;
  }
}

.rich-text>ul {
  list-style-position: inside;
}

li {
  margin-bottom: 1em !important;
}

@media (max-width: 450px) {
  .rich-text {
    text-align: left !important;
  }
}

/* end Rich Text */


/* Hr */
.separator {
  display: flex;
  height: 100%;
  align-items: center;
}

hr {
  width: 100%;
  padding: 0;
  margin: 0.5em 0;
  height: 0;
  border: none;
  border-bottom: 1px solid #3D5059;
}

/* end Hr */

/* Hero */
.hero {
  width: 100% !important;
  height: auto;
  padding: 0;
  position: relative;
  left: -5vw;
  top: -3em;
}

.hero video {
  width: 100vw;
  height: auto;
}

@media (max-width: 1023px) {
  .hero video {
    width: 200vw;
    position: relative;
    left: -50vw;
  }
}

/* end Hero */

/*=====END CARDS====*/


/*=====TYPOGRAPHY UMBRACO=====*/
ul {
  list-style-position: inside;
}

li {
  margin-bottom: 1em !important;
}

@media (max-width: 1023px) {
  table {
    margin: 0 auto;
  }

  td flex {
    flex-direction: row !important;
  }
}

@media (max-width: 1023px) {
  h1 {
    font-size: 1.4em;
    line-height: 1.5625em;
  }
}

@media (max-width:1023px) {
  h2 {
    font-size: 1.4em;
    line-height: 1.4em;
  }
}


@media (max-width: 1023px) {
  h4 {
    text-align: center !important;
    font-size: 1.5em;
  }
}

@media (max-width: 1023px) {
  p.paragraph-medium {
    font-size: 0.8em;
    line-height: 1.4em;
  }
}

a.link-blue:hover {
  color: #28A5FF;
}


a.link-orange:hover {
  color: #FFC700;
}

@media (max-width: 1023x) {
  h2 {
    margin: 0;
    padding: 0;
  }
}

a.link-blue:hover {
  color: #69C9FF;
}




















/*=====END TYPOGRAPHY UMBRACO=====*/

















/**umb_name:Link Blue*/
a, a.link-blue {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #1C7FBE;
  text-decoration: none;
}

@media (max-width: 1023px) {
  a, a.link-blue {
    font-size: 3.2vw;
    line-height: 3.7vw;
  }
}

a:hover, a.link-blue:hover {
  color: #00A3FF !important;
}

/**umb_name:H1*/
h1 {
  font-size: 5.2rem;
  line-height: 5.5rem;
  font-weight: 900;
  margin-top: 0;
  padding-top: 0;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  h1 {
    font-size: 8.2vw;
    line-height: 8.7vw;
    width: 100%;
    text-align: center;
  }
}

/**umb_name:H2*/
h2 {
  font-size: 3rem;
  line-height: 3.2rem;
  font-weight: 900;
  padding-bottom: 0.3em;
  text-align: center;
  text-transform: uppercase;
  color: #333333;
}

@media (max-width: 1023px) {
  h2 {
    font-size: 6.2vw;
    line-height: 6.7vw;
  }
}

/**umb_name:H3*/
h3 {
  font-size: 1.75rem;
  line-height: 2.15rem;
  font-weight: 500;
  color: #333333;
}

h3:after {
  content: ' ';
  width: 100%;
  border-top: 2px solid #2092c0;
  height: 1px;
  display: block;
  margin: 20px 0 30px;
}

@media (max-width: 1023px) {
  h3 {
    font-size: 3.2vw;
    line-height: 3.7vw;
  }
}

/**umb_name:H4*/
h4 {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  color: #333333;
}

@media (max-width: 1023px) {
  h4 {
    font-size: 3.2vw;
    line-height: 3.7vw;
  }
}


/**umb_name:Paragraph*/
p {
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0;
  font-weight: 400;
  color: #333333;
}

@media (max-width: 1023px) {
  p, li {
    font-size: 3.2vw;
    line-height: 3.7vw;
  }
}

/**umb_name:Paragraph medium*/
p.paragraph-medium {
  font-size: 0.875rem;
  line-height: 1.125rem;
  padding: 0 10px;
}

@media (max-width: 1023px) {
  p.paragraph-medium {
    font-size: 3.2vw;
    line-height: 3.7vw;
  }
}

/**umb_name:bigText*/
.bigText {
  font-size: 2rem !important;
  font-weight: 600;
}

@media (max-width: 1023px) {
  .bigText {
    font-size: 8.2vw !important;
    line-height: 8.7vw;
  }
}

/**umb_name:WHITE*/
.white {
  color: #ffffff !important;
}

/**umb_name:RED*/
.red {
  font-size: 1.5rem;
  font-weight: 600;
  color: #A40F0F !important;
}

/**umb_name:violet*/
.violet {
  color: #6573A7 !important;
}

/**umb_name:mustard*/
.mustard {
  color: #A08643 !important;
}

/**umb_name:vinous*/
.vinous {
  color: #A40F0F !important;
}




/*footer*/
.bg-footer div {
  z-index: 5;
}

.bg-footer::before {
  content: '';
  position: absolute;
  left: -12.5%;
  top: -1em;
  z-index: 0;
  width: 100vw;
  height: calc(100% + 4em);
  background: rgba(61, 61, 61, 0.08);
}

@media (min-width: 0) and (max-width: 1023px) {

  .bg-footer, .bg-footer .umb-block-grid__area-container {
    padding: 0;
    margin: 0;
  }

  .bg-footer::before {
    visibility: hidden !important;
  }
}


/*footer/*/

/*header*/
.header {
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-attachment: fixed;
}

.header:before {
  content: "";
  width: 80%;
  height: 5px;
  position: absolute;
  left: 10%;
  bottom: 0;
  z-index: 5;
  background-color: #2092c0;
}

.header div {
  width: 100% !important;
}

.header div {
  z-index: 5;
}

.header h1 {
  color: white;
}

.header:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
}

@media (min-width: 320px) and (max-width: 1023px) {
  .header {
    min-height: 40vh;
  }

  .header:after {
    height: 40vh;
  }
}

/*header/*/

#about, #cars, #contact {
  border-top: 4.5rem solid transparent;
  margin-top: -4.5rem;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}



#preloader {
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 9999999;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#loading {
  height: 100vh;
  width: 100vw;
  background: url(~/img/preloader.gif) center no-repeat;
}

.ctn {
  color: #2092c0;
  font-weight: 400 !important;
  text-transform: none !important;
  font-size: 2.2rem;
  text-align: center;
}