body {
  font-family: "Euclid Square";
  margin: 0;
  padding: 0;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}

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

.container {
  width: 1440px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  outline: none;
}

.top_menu {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  -webkit-box-shadow: 0px 0px 16px -2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 0px 16px -2px rgba(34, 60, 80, 0.2);
}
.top_menu .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 110px;
}
.top_menu .container .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top_menu .container .left .logo {
  width: 250px;
}
.top_menu .container .left .logo img {
  width: 100%;
}
.top_menu .container .left .logo_title {
  margin-left: 30px;
  color: #071141;
  line-height: 126%;
  font-size: 20px;
}
.top_menu .container .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top_menu .container .right .icon_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 40px;
}
.top_menu .container .right .icon_box .img {
  margin-right: 10px;
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top_menu .container .right .icon_box .img img {
  width: 100%;
}
.top_menu .container .right .icon_box span {
  display: block;
  font-size: 14px;
  color: #071141;
  opacity: 0.64;
  font-weight: 400;
}
.top_menu .container .right .icon_box div,
.top_menu .container .right .icon_box a {
  font-size: 20px;
  color: #071141;
  font-weight: 600;
  text-decoration: none;
}
.top_menu .container .right .icon_box:hover a {
  color: #FEA845;
}
.top_menu .container .right .menu_btn {
  width: 50px;
  height: 50px;
  background-color: #071141;
  border-radius: 50%;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  margin-left: 15px;
}
.top_menu .container .right .menu_btn .ham {
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.top_menu .container .right .menu_btn .ham .top {
  stroke-dasharray: 40 160;
}
.top_menu .container .right .menu_btn .ham .middle {
  stroke-dasharray: 40 142;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
}
.top_menu .container .right .menu_btn .ham .bottom {
  stroke-dasharray: 40 85;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-transition: stroke-dashoffset 400ms, -webkit-transform 400ms;
  transition: stroke-dashoffset 400ms, -webkit-transform 400ms;
  transition: transform 400ms, stroke-dashoffset 400ms;
  transition: transform 400ms, stroke-dashoffset 400ms, -webkit-transform 400ms;
}
.top_menu .container .right .menu_btn .ham .line {
  fill: none;
  -webkit-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #fff;
  stroke-width: 5.5;
  stroke-linecap: round;
}
.top_menu .container .right .menu_btn.active .ham {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.top_menu .container .right .menu_btn.active .ham .top {
  stroke-dashoffset: -64px;
}
.top_menu .container .right .menu_btn.active .ham .middle {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.top_menu .container .right .menu_btn.active .ham .bottom {
  stroke-dashoffset: -64px;
}
.top_menu .container .right .menu_btn:hover {
  background-color: #FEA845;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #F7F7F7;
  -webkit-box-shadow: 0px 0px 16px -2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 0px 16px -2px rgba(34, 60, 80, 0.2);
  margin-top: 110px;
  z-index: 9;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
.menu .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 50px;
}
.menu .container ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu .container ul li {
  margin-left: 40px;
}
.menu .container ul li a {
  text-decoration: none;
  color: #1E1E1E;
  font-size: 17px;
  border-bottom: 2px solid #F7F7F7;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
.menu .container ul li:hover {
  color: #071141;
  border-bottom: 2px solid #071141;
}
.menu.not-active {
  margin-top: 0px;
}
.menu.active {
  margin-top: 110px;
}

.video_block {
  background-image: url(../images/video-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 90vh;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 110px;
  overflow: hidden;
}
.video_block #video-background {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}
.video_block::after {
  content: "";
  background-color: #071141;
  opacity: 0.6;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.video_block .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
}
.video_block .container > div {
  width: 50%;
}
.video_block .container > div.info {
  color: #fff;
}
.video_block .container > div.info .box_text {
  font-size: 30px;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #fff;
  color: #071141;
  display: inline-block;
  font-weight: 500;
}
.video_block .container > div.info h1 {
  font-size: 50px;
  line-height: 150%;
  font-weight: 600;
  margin: 0px;
  margin-bottom: 15px;
  margin-top: 15px;
}
.video_block .container > div.info p {
  font-size: 26px;
  line-height: 150%;
  margin: 0px;
}
.video_block .container > div.right {
  position: relative;
}
.video_block .container > div #kmacb {
  position: absolute;
  width: 160px;
  height: 160px;
  left: 50%;
  top: 50%;
  -webkit-transition: visibility 0.5s ease 0s;
  transition: visibility 0.5s ease 0s;
  z-index: 200000 !important;
  cursor: pointer;
}
.video_block .container > div #kmacb .text {
  position: absolute;
  left: 55%;
  background-color: #fff;
  width: 236px;
  height: 65px;
  padding: 13px 19px 13px 48px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 50%;
  margin-top: -30px;
  border-radius: 10px;
  z-index: -2;
}
.video_block .container > div #kmacb .a {
  text-decoration: none;
}
.video_block .container > div #kmacb .kmacb-img-circle {
  background: #FEA845 url("../images/icons/player.svg") no-repeat scroll center center;
  border: 2px solid transparent;
  border-radius: 100%;
  height: 80px;
  left: 40px;
  position: absolute;
  top: 40px;
  -webkit-transform-origin: 50% 50% 0;
          transform-origin: 50% 50% 0;
  width: 80px;
}
.video_block .container > div #kmacb .kmacb-circle-fill {
  -webkit-animation: 2.3s ease-in-out 0s normal none infinite running kmacb-circle-fill-anim !important;
          animation: 2.3s ease-in-out 0s normal none infinite running kmacb-circle-fill-anim !important;
  background: #fff none repeat scroll 0 0;
  border: 2px solid transparent;
  border-radius: 100%;
  height: 110px;
  left: 25px;
  opacity: 0.24;
  position: absolute;
  top: 25px;
  width: 110px;
}
.video_block .container > div #kmacb .kmacb-circle {
  -webkit-animation: 2.2s ease-in-out 0s normal none infinite running kmacb-circle-anim !important;
          animation: 2.2s ease-in-out 0s normal none infinite running kmacb-circle-anim !important;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 100%;
  height: 100%;
  opacity: 0.35;
  position: absolute;
  width: 100%;
}
.video_block .container > div #kmacb:hover .kmacb-img-circle,
.video_block .container > div #kmacb:hover .kmacb-circle-fill {
  background-color: #071141;
}
.video_block .container > div #kmacb:hover .kmacb-circle {
  border-color: #071141;
}
@-webkit-keyframes kmacb-circle-anim {
  0% {
    opacity: 0.1;
    -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
            transform: rotate(0deg) scale(0.5) skew(1deg);
  }
  30% {
    opacity: 0.5;
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
            transform: rotate(0deg) scale(0.7) skew(1deg);
  }
  100% {
    opacity: 0.6;
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
            transform: rotate(0deg) scale(1) skew(1deg);
  }
}
@keyframes kmacb-circle-anim {
  0% {
    opacity: 0.1;
    -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
            transform: rotate(0deg) scale(0.5) skew(1deg);
  }
  30% {
    opacity: 0.5;
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
            transform: rotate(0deg) scale(0.7) skew(1deg);
  }
  100% {
    opacity: 0.6;
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
            transform: rotate(0deg) scale(1) skew(1deg);
  }
}
@keyframes kmacb-circle-anim {
  0% {
    opacity: 0.1;
    -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
            transform: rotate(0deg) scale(0.5) skew(1deg);
  }
  30% {
    opacity: 0.5;
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
            transform: rotate(0deg) scale(0.7) skew(1deg);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
            transform: rotate(0deg) scale(1) skew(1deg);
  }
}
@-webkit-keyframes kmacb-circle-fill-anim {
  0% {
    opacity: 0.2;
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
            transform: rotate(0deg) scale(0.7) skew(1deg);
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.2;
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
            transform: rotate(0deg) scale(0.7) skew(1deg);
  }
}
@keyframes kmacb-circle-fill-anim {
  0% {
    opacity: 0.2;
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
            transform: rotate(0deg) scale(0.7) skew(1deg);
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.2;
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
            transform: rotate(0deg) scale(0.7) skew(1deg);
  }
}
@keyframes kmacb-circle-fill-anim {
  0% {
    opacity: 0.2;
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
            transform: rotate(0deg) scale(0.7) skew(1deg);
  }
  50% {
    opacity: 0.2;
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
            transform: rotate(0deg) scale(1) skew(1deg);
  }
  100% {
    opacity: 0.2;
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
            transform: rotate(0deg) scale(0.7) skew(1deg);
  }
}

.advantages {
  padding: 50px 0px 0px;
}
.advantages .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.advantages .container .item {
  width: 100%;
}
.advantages .container .item .img {
  margin-bottom: 15px;
}
.advantages .container .item .img img {
  height: 115px;
}
.advantages .container .item .info {
  width: 80%;
}
.advantages .container .item .info .title {
  color: #071141;
  font-size: 24px;
  line-height: 150%;
  margin: 0px;
  margin-bottom: 15px;
}
.advantages .container .item .info p {
  color: #667985;
  line-height: 150%;
  font-size: 14px;
  margin: 0px;
}

.about {
  padding: 50px 0px;
}
.about .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about .container > div {
  width: 45%;
}
.about .container > div.info .title {
  font-size: 55px;
  color: #071141;
  line-height: 90%;
  font-weight: 800;
  margin-bottom: 50px;
}
.about .container > div.info p {
  font-size: 20px;
  line-height: 150%;
  color: #667985;
  margin: 0xp;
}
.about .container > div.info .open_all {
  margin-top: 50px;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1E1E1E;
  font-weight: 500;
  cursor: pointer;
}
.about .container > div.info .open_all img {
  margin-left: 10px;
}
.about .container > div.info .open_all:hover img {
  margin-left: 15px;
}
.about .container > div.slide swiper-container {
  width: 100%;
  height: 100%;
}
.about .container > div.slide swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  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;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.about .container > div.slide swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .container > div.slide swiper-container {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
.about .container > div.slide swiper-slide {
  background-size: cover;
  background-position: center;
}
.about .container > div.slide .mySwiper {
  height: 80%;
  width: 100%;
}
.about .container > div.slide .mySwiper2 {
  height: 20%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
}
.about .container > div.slide .mySwiper2 swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
}
.about .container > div.slide .mySwiper2 .swiper-slide-thumb-active {
  opacity: 1;
}
.about .container > div.slide swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about2 {
  background-image: url(../images/about-bg.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
  padding-top: 500px;
}
.about2 .container .first_block {
  background-color: #fff;
  border-radius: 40px;
  padding: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}
.about2 .container .first_block .info .title {
  font-size: 50px;
  display: block;
  line-height: 150%;
  margin-bottom: 20px;
  font-weight: 800;
  color: #071141;
}
.about2 .container .first_block .info p {
  margin: 0px;
  font-size: 20px;
  line-height: 150%;
  color: #667985;
  margin-bottom: 20px;
}
.about2 .container .first_block .info .open_all {
  margin-top: 50px;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1E1E1E;
  font-weight: 500;
  cursor: pointer;
}
.about2 .container .first_block .info .open_all img {
  margin-left: 10px;
}
.about2 .container .first_block .info .open_all:hover img {
  margin-left: 15px;
}
.about2 .container .big_boss {
  border-radius: 40px;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right;
  padding: 100px 55px;
  background-color: #F2F2F2;
  margin-bottom: 50px;
}
.about2 .container .big_boss .info {
  width: 55%;
}
.about2 .container .big_boss .info .title {
  font-size: 40px;
  line-height: 110%;
  color: #071141;
  font-weight: 800;
  margin-bottom: 10px;
}
.about2 .container .big_boss .info .sub_title {
  font-size: 20px;
  line-height: 150%;
  color: #071141;
  margin-bottom: 30px;
}
.about2 .container .big_boss .info p {
  font-size: 20px;
  line-height: 150%;
  color: #667985;
}
.about2 .container .all_mans {
  margin-bottom: 50px;
}
.about2 .container .all_mans swiper-slide {
  margin-bottom: 50px;
}
.about2 .container .all_mans swiper-slide .img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.about2 .container .all_mans swiper-slide .img img {
  width: 100%;
}
.about2 .container .all_mans swiper-slide .info {
  padding: 15px;
}
.about2 .container .all_mans swiper-slide .info .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  color: #071141;
  margin-bottom: 10px;
}
.about2 .container .all_mans swiper-slide .info .sub_title {
  font-size: 14px;
  color: #52597A;
  border-bottom: 1px solid #B0B9BF;
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 500;
}
.about2 .container .all_mans swiper-slide .info p {
  font-size: 14px;
  line-height: 150%;
  margin: 0px;
  color: #667985;
  display: -webkit-box;
  /*-webkit-line-clamp: 3;*/
  -webkit-box-orient: vertical;
  overflow: hidden;
}

section.brand-poster {
  padding: 50px 0px 0px;
}
section.brand-poster .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
section.brand-poster .row .left {
  padding: 50px;
}
section.brand-poster .row .left .title {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 150%;
}
section.brand-poster .row .left .title::before {
  content: "";
  width: 200px;
  height: 1px;
  background-color: #fff;
  display: block;
  margin-bottom: 10px;
}
section.brand-poster .row .left .text {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  line-height: 150%;
}
section.brand-poster .row .right {
  background-size: cover;
  width: 40%;
  max-width: 40%;
  min-width: 40%;
}

/*accordion*/
/* FOOTER */
.footer-map {
  position: relative;
  overflow: hidden;
}
.footer-map .map__container {
  background: #f3f3f3;
}
.footer-map .map__container [class*=ymaps-2][class*=-ground-pane] {
  -webkit-filter: grayscale();
          filter: grayscale();
}
.footer-map .map-info {
  width: 100%;
  max-width: 415px;
  background: #ffffff;
  -webkit-box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  position: relative;
  z-index: 5;
  padding: 40px;
}
.footer-map .map-info .title {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  color: #071141;
}
.footer-map .map-info__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.footer-map .map-info__img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #071141;
  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;
  margin-right: 9px;
}
.footer-map .map-info__text span {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 32, 51, 0.6);
}
.footer-map .map-info__text p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #071141;
  margin: 0px;
}
.footer-map .map-img {
  width: 100%;
  background: #ffffff;
  -webkit-box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  position: relative;
  z-index: 5;
  border: 5px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  max-width: 415px;
  overflow: hidden;
}
.footer-map .map-img img {
  width: 100%;
}
.footer-map .footer-map__contacts {
  position: absolute;
  top: 0;
  margin-top: 50px;
  padding-left: 200px;
}

.slide-poster {
  margin-bottom: 50px;
}
.slide-poster .mySwiper_poster swiper-slide {
  width: 100%;
  text-align: center;
  font-size: 22px;
  text-decoration: none;
  height: 100px;
  line-height: 100px;
  position: relative;
  outline: none;
  color: #4F4F4F;
  cursor: pointer;
}
.slide-poster .mySwiper_poster swiper-slide:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #FAFAFA;
  border: 1px solid #DFDFDF;
  -webkit-transform: skew(345deg);
  transform: skew(345deg);
  z-index: -1;
}
.slide-poster .mySwiper_poster swiper-slide:first-child::before {
  left: 20px;
}
.slide-poster .mySwiper_poster swiper-slide:last-child::before {
  right: 20px;
}
.slide-poster .mySwiper_poster swiper-slide.swiper-slide-thumb-active {
  color: #fff;
}
.slide-poster .mySwiper_poster swiper-slide.swiper-slide-thumb-active::before {
  background-color: #FEA845;
  border-color: #FEA845;
}
@media only screen and (max-width: 1550px) {
  .slide-poster .mySwiper_poster swiper-slide {
    font-size: 16px;
    height: 65px;
    line-height: 65px;
  }
}
@media only screen and (max-width: 960px) {
  .slide-poster .mySwiper_poster {
    display: none;
  }
}
.slide-poster .slide-poster-inner swiper-slide {
  padding: 100px 0px;
  background-size: cover;
  background-position: center;
}
.slide-poster .slide-poster-inner swiper-slide .info {
  padding-left: 50px;
  position: relative;
  width: 50%;
}
.slide-poster .slide-poster-inner swiper-slide .info::before {
  content: "";
  width: 8px;
  position: absolute;
  top: 10%;
  bottom: 10%;
  background-color: #FEA845;
  left: 0;
}
.slide-poster .slide-poster-inner swiper-slide .info .title {
  font-weight: 800;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  font-size: 36px;
  color: #071141;
  line-height: 55px;
  text-transform: uppercase;
  margin: 0px;
  margin-bottom: 25px;
}
.slide-poster .slide-poster-inner swiper-slide .info .text {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 30px;
  color: #4F4F4F;
}
@media only screen and (max-width: 1550px) {
  .slide-poster .slide-poster-inner swiper-slide .info {
    width: 60%;
  }
  .slide-poster .slide-poster-inner swiper-slide .info .title {
    margin-bottom: 10px;
    line-height: 110%;
  }
  .slide-poster .slide-poster-inner swiper-slide .info .text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 960px) {
  .slide-poster .slide-poster-inner swiper-slide {
    padding: 50px 0px;
  }
  .slide-poster .slide-poster-inner swiper-slide .info {
    width: 100%;
    padding-left: 20px;
  }
  .slide-poster .slide-poster-inner swiper-slide .info .title {
    margin-bottom: 10px;
    line-height: 110%;
    font-size: 28px;
  }
  .slide-poster .slide-poster-inner swiper-slide .info .text {
    font-size: 16px;
  }
  .slide-poster .slide-poster-inner swiper-slide .info::before {
    width: 4px;
  }
}

.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 70px;
}
.footer .container .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: #52597A;
}
.footer .container .left p {
  margin: 0px;
}
.footer .container .left ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0px;
  margin-left: 20px;
}
.footer .container .left ul li {
  margin-left: 10px;
}
.footer .container .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0px;
}
.footer .container .right ul li {
  margin-left: 15px;
}
.footer .container .right ul li a {
  font-size: 16px;
  color: #52597A;
}

@media only screen and (max-width: 1550px) {
  .container {
    width: 900px;
  }
  .top_menu .container {
    height: 82px;
  }
  .top_menu .container .left .logo {
    width: auto;
  }
  .top_menu .container .left .logo img {
    width: 150px;
  }
  .top_menu .container .left .logo_title {
    font-size: 13px;
    margin-left: 20px;
  }
  .top_menu .container .right .icon_box {
    margin-left: 20px;
  }
  .top_menu .container .right .icon_box div,
  .top_menu .container .right .icon_box a {
    font-size: 16px;
  }
  .top_menu .container .right .icon_box span {
    font-size: 12px;
  }
  .top_menu .container .right .icon_box .img {
    width: 38px;
    height: 38px;
  }
  .menu {
    margin-top: 82px;
  }
  .menu .container {
    height: 45px;
  }
  .menu .container ul li {
    margin-left: 25px;
  }
  .menu .container ul li a {
    font-size: 14px;
  }
  .menu.active {
    margin-top: 82px;
  }
  .video_block {
    height: 550px;
    padding-top: 82px;
  }
  .video_block .container > div.info .box_text {
    font-size: 18px;
  }
  .video_block .container > div.info h1 {
    font-size: 36px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .video_block .container > div.info p {
    font-size: 16px;
  }
  .video_block .container > div #kmacb {
    left: 0%;
  }
  .advantages .container .item .img img {
    height: 75px;
  }
  .advantages .container .item .info .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .about .container > div.info .title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .about .container > div.info p {
    font-size: 16px;
  }
  .about .container > div.info .open_all {
    font-size: 18px;
    margin-top: 30px;
  }
  .about .container > div.slide swiper-slide {
    border-radius: 5px;
  }
  .about2 {
    padding-top: 260px;
  }
  .about2 .container .first_block {
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
  }
  .about2 .container .first_block .info .title {
    font-size: 36px;
  }
  .about2 .container .first_block .info p {
    font-size: 16px;
  }
  .about2 .container .first_block .info .open_all {
    margin-top: 30px;
  }
  .about2 .container .big_boss {
    padding: 25px;
    margin-bottom: 20px;
  }
  .about2 .container .big_boss .info .title {
    font-size: 36px;
  }
  .about2 .container .big_boss .info .sub_title {
    margin-bottom: 10px;
  }
  .about2 .container .big_boss .info p {
    font-size: 16px;
  }
  section.brand-poster {
    padding-top: 0px;
  }
  section.brand-poster .row .left {
    padding: 20px;
  }
  section.brand-poster .row .left .title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  section.brand-poster .row .left .text {
    font-size: 16px;
  }
  .footer-map .map-img {
    display: none;
  }
  .footer .container .right {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  .container {
    width: 460px;
  }
  .top_menu .container .left .logo_title {
    display: none;
  }
  .top_menu .container .right .icon_box.location {
    display: none;
  }
  .top_menu .container .right .menu_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu {
    margin-top: -200px;
  }
  .menu .container {
    height: auto;
    display: block;
  }
  .menu .container ul {
    display: block;
    padding: 10px 0px;
  }
  .menu .container ul li {
    margin-left: 0px;
  }
  .menu .container ul li a {
    font-size: 14px;
    line-height: 32px;
    width: 100%;
    display: block;
  }
  .menu.not-active {
    margin-top: -200px;
  }
  .menu.active {
    margin-top: 82px;
  }
  .video_block {
    height: auto;
    padding: 130px 0px 150px;
  }
  .video_block .container {
    display: block;
  }
  .video_block .container > div {
    width: 100%;
  }
  .advantages .container {
    display: block;
  }
  .advantages .container .item {
    margin-bottom: 20px;
  }
  .advantages .container .item:last-child {
    margin-bottom: 0px;
  }
  .about .container {
    display: block;
  }
  .about .container > div {
    width: 100%;
  }
  .about .container > div.info {
    margin-bottom: 20px;
  }
  .about2 .container .first_block {
    display: block;
  }
  .about2 .container .first_block .img {
    display: none;
  }
  .about2 .container .big_boss {
    padding-top: 320px;
    background-size: auto 300px;
    background-position: top right;
  }
  .about2 .container .big_boss .info {
    width: 100%;
  }
  .footer-map .map-info {
    width: 100%;
    padding: 15px;
  }
  .footer-map .map-info .title {
    font-size: 24px;
  }
  .footer-map .map-info .map-info__img {
    width: 35px;
    height: 35px;
  }
  .footer-map .map-info .map-info__img img {
    width: 50%;
  }
  .footer-map .map-info .map-info__text span {
    font-size: 14px;
  }
  .footer-map .map-info .map-info__text p {
    font-size: 14px;
  }
  .footer-map .map-info .map-info__contacts {
    margin-top: 10px;
  }
  .footer-map .footer-map__contacts {
    padding: 0px;
    left: 20px;
  }
}
@media only screen and (max-width: 500px) {
  .about2 .container .big_boss .info .title {
    font-size: 24px;
  }
  .video_block .container > div.info h1 {
    font-size: 28px;
  }
  .container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .top_menu .container .right .icon_box .text {
    display: none;
  }
  .about2 {
    padding-top: 150px;
    background-size: 130%;
  }
  section.brand-poster .row .right {
    display: none;
  }
  .footer-map .map-info {
    padding: 20px;
    width: 300px;
  }
  .footer-map .footer-map__contacts {
    padding-left: 15px;
  }
}
.product {
  padding: 50px 0px;
}
.product .container > .title {
  font-size: 50px;
  display: block;
  line-height: 150%;
  margin-bottom: 20px;
  font-weight: 800;
  color: #071141;
}
.product .container .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product .container .row .left ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.product .container .row .left ul li a {
  line-height: 120%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F2F2F2;
  color: #969696;
  border-top: 1px solid #B6BABD;
  width: 350px;
  padding: 0px 20px;
}
.product .container .row .left ul li.active a {
  font-weight: 600;
  color: #071141;
  border-color: #FEA845;
}
.product .container .row .right {
  padding: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.product .container .row .right .item .img {
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 16px -2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 0px 16px -2px rgba(34, 60, 80, 0.2);
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  width: 100%;
}
.product .container .row .right .item .img img {
  width: 100%;
}
.product .container .row .right .item .img .btn {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
}
.product .container .row .right .item .img .btn span {
  color: #fff;
  border-radius: 3px;
  background-color: #071141;
  font-size: 18px;
  font-weight: 400;
  border: 1px solid #fff;
  padding: 5px 8px;
}
.product .container .row .right .item .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  color: #071141;
  margin-bottom: 10px;
}
.product .container .row .right .item .text {
  font-size: 14px;
  line-height: 150%;
  margin: 0px;
  color: #667985;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product .container .row .right .item:hover {
  cursor: pointer;
}
.product .container .row .right .item:hover .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product .container .row .right .item:hover .img:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 17, 65, 0.314);
}

@media only screen and (max-width: 1550px) {
  .product .container .row .left ul li a {
    height: 44px;
    width: 230px;
  }
  .product .container .row .right {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding: 15px;
  }
  .product .container .row .right .item .img {
    margin-bottom: 5px;
  }
  .product .container .row .right .item .img .btn span {
    font-size: 13px;
  }
  .product .container .row .right .item .title {
    font-size: 14px;
    line-height: 120%;
    margin-bottom: 5px;
  }
  .product .container .row .right .item .text {
    font-size: 13px;
    line-height: 120%;
  }
}
@media only screen and (max-width: 960px) {
  .product .container .row {
    display: block;
  }
  .product .container .row .left {
    margin-bottom: 15px;
  }
  .product .container .row .left ul li a {
    width: 100%;
  }
  .product .container .row .right {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    padding: 0px;
  }
}
@media only screen and (max-width: 420px) {
  .product .container .row {
    display: block;
  }
  .product .container .row .right {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    padding: 0px;
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#modal-container {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  z-index: 99;
}
#modal-container.two {
  -webkit-transform: scale(1);
          transform: scale(1);
}
#modal-container.two .modal-background {
  background: rgba(0, 0, 0, 0);
  -webkit-animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two .modal-background .modal {
  opacity: 0;
  -webkit-animation: scaleUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: scaleUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two + .content {
  -webkit-animation: scaleBack 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: scaleBack 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two.out {
  -webkit-animation: quickScaleDown 0s 0.5s linear forwards;
          animation: quickScaleDown 0s 0.5s linear forwards;
}
#modal-container.two.out .modal-background {
  -webkit-animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two.out .modal-background .modal {
  -webkit-animation: scaleDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: scaleDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two.out + .content {
  -webkit-animation: scaleForward 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: scaleForward 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container .modal-background {
  display: table-cell;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  vertical-align: middle;
}
#modal-container .modal-background .modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#modal-container .modal-background .modal .x {
  position: absolute;
  right: 0;
  top: 0;
  padding: 20px;
  cursor: pointer;
}
#modal-container .modal-background .modal .title {
  font-size: 40px;
  line-height: 110%;
  color: #071141;
  font-weight: 800;
  margin-bottom: 10px;
}
#modal-container .modal-background .modal .text {
  font-size: 16px;
  line-height: 150%;
  margin: 0px;
  color: #667985;
  margin-bottom: 10px;
}
#modal-container .modal-background .modal .mini_text {
  font-size: 14px;
  line-height: 150%;
  margin: 0px;
  color: #667985;
  margin-bottom: 10px;
}
#modal-container .modal-background .modal ul.set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  padding: 0px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid #F2F2F2;
  padding-top: 35px;
  margin-top: 35px;
}
#modal-container .modal-background .modal ul.set li {
  margin-left: 10px;
}
#modal-container .modal-background .modal ul.set li:first-child {
  margin-left: 0px;
}
#modal-container .modal-background .modal form .form-group {
  margin-bottom: 10px;
  position: relative;
}
#modal-container .modal-background .modal form .form-group input {
  width: 100%;
  line-height: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #BDBDBD;
  border-radius: 14px;
  padding: 0px 25px;
  outline-width: 1px;
  outline-color: #FEA845;
  font-size: 18px;
  padding-left: 70px;
  position: relative;
}
#modal-container .modal-background .modal form .form-group input::-webkit-input-placeholder {
  color: #BDBDBD;
  font-size: 18px;
}
#modal-container .modal-background .modal form .form-group input::-moz-placeholder {
  color: #BDBDBD;
  font-size: 18px;
}
#modal-container .modal-background .modal form .form-group input:-ms-input-placeholder {
  color: #BDBDBD;
  font-size: 18px;
}
#modal-container .modal-background .modal form .form-group input::-ms-input-placeholder {
  color: #BDBDBD;
  font-size: 18px;
}
#modal-container .modal-background .modal form .form-group input::placeholder {
  color: #BDBDBD;
  font-size: 18px;
}
#modal-container .modal-background .modal form .form-group.name::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -15px;
  margin-left: 20px;
  background-image: url(../images/icons/form-man.svg);
  background-size: cover;
  z-index: 9;
}
#modal-container .modal-background .modal form .form-group.phone::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -15px;
  margin-left: 20px;
  background-image: url(../images/icons/form-phone.svg);
  background-size: cover;
  z-index: 9;
}
#modal-container .modal-background .modal form .form-group .button {
  background-color: #071141;
  color: #fff;
  line-height: 60px;
  border: 0px;
  width: 100%;
  border-radius: 14px;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  padding: 0px;
}
#modal-container .modal-background .modal form .form-group label {
  cursor: pointer;
  font-size: 14px;
  line-height: 150%;
  margin: 0px;
  color: #667985;
}
#modal-container .modal-background .modal form .form-group.checks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
#modal-container .modal-background .modal form .form-group.checks input {
  width: auto;
}
#modal-container .modal-background .modal .form,
#modal-container .modal-background .modal .sent {
  position: relative;
  display: none;
  width: 500px;
  background-color: #fff;
  border-radius: 27px;
  padding: 50px;
}
#modal-container .modal-background .modal .about_text,
#modal-container .modal-background .modal .goal_text {
  position: relative;
  display: none;
  width: 960px;
  background-color: #fff;
  border-radius: 27px;
  padding: 50px;
  text-align: left;
}
@media only screen and (max-width: 1050px) {
  #modal-container .modal-background .modal .about_text,
  #modal-container .modal-background .modal .goal_text {
    width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
  }
}
@media only screen and (max-width: 560px) {
  #modal-container .modal-background .modal .x {
    position: fixed;
    right: 10px;
    top: 0;
    margin-top: -10px;
    padding: 10px;
    cursor: pointer;
    background: #fff;
  }
  #modal-container .modal-background .modal .title {
    font-size: 24px;
  }
  #modal-container .modal-background .modal form .form-group.name::before,
  #modal-container .modal-background .modal form .form-group.phone::before {
    margin-left: 13px;
  }
  #modal-container .modal-background .modal form .form-group label {
    text-align: left;
    padding-left: 10px;
  }
  #modal-container .modal-background .modal form .form-group input {
    line-height: 50px;
    padding-left: 50px;
  }
  #modal-container .modal-background .modal .form,
  #modal-container .modal-background .modal .sent {
    width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 15px;
  }
  #modal-container .modal-background .modal .about_text,
  #modal-container .modal-background .modal .goal_text {
    width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 15px;
  }
}
#modal-container.order .modal .form {
  display: block;
}
#modal-container.order_after .modal .sent {
  display: block;
}
#modal-container.btn-about_text .modal .about_text {
  display: block;
}
#modal-container.btn-goal_text .modal .goal_text {
  display: block;
}

@-webkit-keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.7);
  }
}

@keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.7);
  }
}
@-webkit-keyframes scaleUp {
  0% {
    -webkit-transform: scale(0.8) translateY(1000px);
            transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
    opacity: 1;
  }
}
@keyframes scaleUp {
  0% {
    -webkit-transform: scale(0.8) translateY(1000px);
            transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
    opacity: 1;
  }
}
@-webkit-keyframes scaleBack {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
}
@keyframes scaleBack {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
}
@-webkit-keyframes quickScaleDown {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  99.9% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes quickScaleDown {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  99.9% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@-webkit-keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, 0.7);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}
@keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, 0.7);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}
@-webkit-keyframes scaleDown {
  0% {
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.8) translateY(1000px);
            transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
}
@keyframes scaleDown {
  0% {
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.8) translateY(1000px);
            transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
}
@-webkit-keyframes scaleForward {
  0% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaleForward {
  0% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.mySwiperNews .img {
  width: 100%;
  height: 230px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
}
.mySwiperNews .info {
  padding-top: 20px;
}
.mySwiperNews .info .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  color: #071141;
  margin-bottom: 10px;
}
.mySwiperNews .info .sub_title {
  font-size: 14px;
  color: #52597A;
  border-bottom: 1px solid #B0B9BF;
  display: inline-block;
  margin-bottom: 5px;
  padding-bottom: 5px;
  font-weight: 500;
}
.mySwiperNews .info p {
  font-size: 14px;
  line-height: 150%;
  margin: 0px;
  color: #667985;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.body-news .about {
  padding-top: 200px;
}
.body-news .about .container {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media only screen and (max-width: 960px) {
  .body-news .about {
    padding-top: 100px;
  }
}