[class^="icon-"],[class*=" icon-"] {
 /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
 /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-menu-m:before {
  content: "\e904";
}

.icon-arrow-right:before {
  content: "\e901";
}

.icon-arrow-left:before {
  content: "\e902";
}

.icon-search:before {
  content: "\e900";
}

.breadcrumb {
  width: 844px;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0;
  margin: 0;
}

.breadcrumb__item {
  list-style: none;
  margin-right: 10px;
}

.breadcrumb__item--first {
  padding-left: 0;
  background-image: none;
  margin-right: 13px;
}

.breadcrumb__link {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #4f5255;
  text-decoration: none;
  transition: color .3s;
}

.breadcrumb__link:hover {
  color: #050606;
}

.breadcrumb__arrow {
  margin-right: 10px;
  font-size: 9px;
}

.application {
  position: relative;
  display: flex;
  flex-direction: column;
}

.application__wrapper {
  display: flex;
  padding: 30px 0;
}

.application__container {
  overflow: hidden;
  position: relative;
}

.application__hidden-link {
  transition: .3s;
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 75%;
  padding: 20px 25px;
  background-color: #00182c;
  font-size: 28px;
  color: #fff;
  opacity: 0;
  transition: opacity .3s;
}

.application__hidden-link a {
  text-decoration: none;
}

.application__content {
  display: flex;
  flex: 0 0 25%;
  flex-direction: row;
  transition: .3s;
}

.application__content:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  z-index: 2;
}

.application__content:hover .application__text {
  display: none;
}

.application__content:hover .application__hidden-link {
  opacity: 1;
}

.application__title {
  display: block;
  margin-bottom: 0;
}

.application__item {
  position: relative;
  flex: 1;
  transition: .3s;
}

.application__item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: black;
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 50%);
}

.application__item__btn {
  border: none;
  background-image: linear-gradient(to right, #1f96ff, #3af0f8);
  color: #fff;
  display: inline-block;
  width: 100%;
  display: block;
  height: 35px;
  max-width: 150px;
  margin-top: 20px;
}

.application__item__btn .icon {
  margin-top: 20px;
  margin-left: 15px;
  font-size: 12px;
}

.application__img {
  width: 100%;
  height: 100%;
}

.application__text {
  display: block;
  position: absolute;
  z-index: 1;
  left: 40px;
  bottom: 25px;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  transition: .3s;
}

.application__link {
  font-size: 12px;
  font-weight: 800;
  align-self: center;
  color: #00182c;
  text-decoration: underline;
  transition: color .3s;
}

.application__link__icon {
  margin-left: 7px;
  display: inline-block;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.application__link:hover {
  color: #0b99d5;
}

.application__link:hover .application__link__icon {
  color: #0b99d5;
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.application__next,.application__prev {
  position: absolute;
  background-color: #fff;
  width: 38px;
  height: 38px;
  top: 50%;
  z-index: 10;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  transition: background-color .3s;
}

.application__next:hover,.application__prev:hover {
  background-color: #f2f2f2;
}

.application__next:hover .icon,.application__prev:hover .icon {
  color: #0b99d5;
}

.application__next .icon,.application__prev .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #083986;
}

.application__prev {
  left: 40px;
}

.application__next {
  right: 48px;
}

@font-face {
  font-family:'icomoon';src:url("../fonts/icomoon59bb.woff") format("woff"), url("../fonts/icomoon59bb.html") format("svg");font-weight:normal;font-style:normal;
}

@media only screen and (max-width: 1247px) {
  .breadcrumb {
    width: 750px;
  }

  .application__hidden-link {
    font-size: 20px;
  }

  .application__text {
    font-size: 21px;
  }

  .application__link {
    font-size: 11px;
  }
}

@media only screen and (max-width: 1023px) {
  .breadcrumb {
    display: none;
  }

  .application__hidden-link {
    display: none;
  }

  .application__content:hover {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .application__content:hover .application__text {
    display: block;
  }

  .application__content:hover .application__hidden-link {
    opacity: 0;
  }

  .application__text {
    font-size: 19px;
  }

  .application__prev {
    left: 15px;
  }

  .application__next {
    right: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .application__content {
    flex: 0 0 100%;
    padding: 0 24px;
  }

  .application__text {
    font-size: 25px;
  }
}

[class^="icon-"],[class*=" icon-"] {
 /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
 /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-menu-m:before {
  content: "\e904";
}

.icon-arrow-right:before {
  content: "\e901";
}

.icon-arrow-left:before {
  content: "\e902";
}

.icon-search:before {
  content: "\e900";
}

.breadcrumb {
  width: 844px;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0;
  margin: 0;
}

.breadcrumb__item {
  list-style: none;
  margin-right: 10px;
}

.breadcrumb__item--first {
  padding-left: 0;
  background-image: none;
  margin-right: 13px;
}

.breadcrumb__link {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #4f5255;
  text-decoration: none;
  transition: color .3s;
}

.breadcrumb__link:hover {
  color: #050606;
}

.breadcrumb__arrow {
  margin-right: 10px;
  font-size: 9px;
}

.js-promoSlider.swiper-container {
  overflow: hidden;
  position: relative;
}

.js-promoSlider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  background-color: white;
  margin: 0 6px;
  border-radius: 50%;
}

.js-promoSlider .swiper-pagination-bullet:last-child {
  margin: none;
}

.js-promoSlider .swiper-pagination-bullet-active {
  background-image: linear-gradient(to right, #1f96ff, #3af0f8);
}

.js-promoSlider .swiper-button-prev {
  margin-right: 66px;
}

.js-promoSlider .swiper-button-prev,.js-promoSlider .swiper-button-next {
  color: #fff;
  cursor: pointer;
  z-index: 15;
}

.js-promoSlider .swiper-button-prev.swiper-button-disabled,.js-promoSlider .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}

.promo {
  position: relative;
  display: flex;
  width: 100%;
  height: 100vh;
}

.promo__tools {
  position: absolute;
  bottom: 95px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.promo__arrows {
  display: flex;
}

.promo__content {
  flex: 0 0 100%;
  background-image: url(../image/promo/promo.html);
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}

.promo__content__item {
  position: relative;
  padding: 25px 70px 0 0;
  margin-top: 15px;
  width: 450px;
}

.promo__overlay {
  position: absolute;
  border-radius: 7px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #00182c;
  opacity: 0;
}

.promo__title {
  display: inline-block;
  position: relative;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.31;
  color: #fff;
  margin-left: 0;
  margin-bottom: 50px;
}

.promo__title:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background-color: #fff;
  bottom: -28px;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.promo__subtitle {
  display: inline-block;
  position: relative;
}

.promo__subtitle h2 {
  display: inline-block;
  font-size: 18px;
  margin-left: 0;
  line-height: 1.56;
  color: #fff;
  margin-top: 0;
}

.promo__pagination {
  margin-left: 45px;
}

.container.-product {
  position: relative;
  display: flex;
  background-size: contain;
  background-repeat: no-repeat;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  min-height: 500px;
  padding-left: 45px;
  padding-top: 25px;
  padding-bottom: 55px;
}

.product {
  width: 100%;
  background-repeat: no-repeat;
  background-position: right center;
}

.product__title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.26;
  color: #252829;
  margin-bottom: 10px;
}

.product__desc {
  line-height: 1.75;
  color: #252829;
  width: 390px;
  margin-bottom: 35px;
}

.product__link {
  font-size: 12px;
  font-weight: 800;
  color: #0b99d5;
  text-decoration: none;
}

.product__link__icon {
  margin-left: 7px;
  text-decoration: none;
}

.product__link__icon:before {
  display: inline-block;
}

.swiper-pagination-bullet {
  cursor: pointer;
}

@font-face {
  font-family:'icomoon';src:url("../fonts/icomoon59bb.woff") format("woff"), url("../fonts/icomoon59bb.html") format("svg");font-weight:normal;font-style:normal;
}

@media only screen and (min-width: 768px) {
  .product {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-size: contain;
  }
}

@media only screen and (max-width: 1247px) {
  .breadcrumb {
    width: 750px;
  }

  .promo {
    height: 700px;
  }

  .promo__title {
    font-size: 43px;
  }

  .promo__subtitle h2 {
    font-size: 16px;
  }

  .container.-product {
    min-height: 450px;
  }

  .product__title {
    font-size: 38px;
  }

  .product__desc {
    width: 300px;
  }

  .product__link {
    font-size: 11px;
  }

  .product__link {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1023px) {
  .breadcrumb {
    display: none;
  }

  .promo {
    margin-top: 60px;
    height: 420px;
  }

  .promo__tools {
    bottom: 25px;
    width: 100%;
    margin: 0;
    justify-content: center;
  }

  .promo__arrows {
    display: none;
  }

  .promo__content__item {
    width: 350px;
    padding: 15px 60px 0 15px;
  }

  .promo__title {
    font-size: 33px;
    margin-bottom: 20px;
  }

  .promo__title:after {
    bottom: -18px;
  }

  .promo__pagination {
    margin: 0;
  }

  .container.-product {
    min-height: 290px;
  }

  .product__title {
    font-size: 34px;
  }

  .product__desc {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .js-promoSlider .swiper-button-prev,.js-promoSlider .swiper-button-next {
    display: none;
  }

  .promo {
    height: 340px;
  }

  .promo__content__item {
    width: 280px;
    margin: 0 auto;
    padding: 15px;
  }

  .promo__title {
    font-size: 25px;
    margin-left: 0;
    margin-bottom: 32px;
  }

  .promo__title:after {
    bottom: -14px;
  }

  .promo__subtitle h2 {
    line-height: 1.38;
    margin: 0;
    width: auto;
    width: 280px;
  }

  .container.-product {
    justify-content: flex-start;
    align-items: center;
    margin: 0 0;
    padding: 27px 33px 0;
  }

  .product {
    height: 550px;
    background-image: url(../image/pvc-mobile.jpg);
    background-position: center center;
  }

  .product-text {
    margin-bottom: 10px;
    text-align: center;
  }

  .product__title {
    font-size: 25px;
  }

  .product__desc {
    margin-bottom: 30px;
    width: auto;
    text-align: center;
  }
}

[class^="icon-"],[class*=" icon-"] {
 /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
 /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-menu-m:before {
  content: "\e904";
}

.icon-arrow-right:before {
  content: "\e901";
}

.icon-arrow-left:before {
  content: "\e902";
}

.icon-search:before {
  content: "\e900";
}

.breadcrumb {
  width: 844px;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0;
  margin: 0;
}

.breadcrumb__item {
  list-style: none;
  margin-right: 10px;
}

.breadcrumb__item--first {
  padding-left: 0;
  background-image: none;
  margin-right: 13px;
}

.breadcrumb__link {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #4f5255;
  text-decoration: none;
  transition: color .3s;
}

.breadcrumb__link:hover {
  color: #050606;
}

.breadcrumb__arrow {
  margin-right: 10px;
  font-size: 9px;
}

.news__wrapper {
  display: flex;
  margin-bottom: 40px;
}

.news__detail-title {
  margin-top: 90px;
}

.news__slider {
  position: relative;
}

.news__pagination {
  text-align: center;
}

.news__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  background-color: #cdd6de;
  margin: 0 6px;
  border-radius: 50%;
}

.news__pagination .swiper-pagination-bullet-active {
  background-color: #0b99d5;
}

.news__container {
  overflow: hidden;
  position: relative;
}

.news__content {
  flex: 0 0 24%;
  border: 1px solid #dfe6eb;
  background-color: #fff;
  margin: 0 0.5%;
  transition: background-color .3s;
}

.news__content > a {
  text-decoration: none;
}

.news__content:hover {
  background-color: #f7f7f7;
}

.news__content:hover .news__title {
  color: #0b99d5;
}

.news__item {
  display: flex;
  flex-direction: column;
}

.news__item img {
  max-width: 100%;
  display: block;
}

.news__item .news__img {
  display: block;
  max-width: 100%;
  min-height: 170px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.news__item__content {
  padding: 24px 20px 27px;
  max-height: 300px;
}

.news__title {
  font-weight: 600;
  color: #252829;
  margin-bottom: 13px;
  font-size: 16px;
  transition: color .3s;
}

.news p {
  font-size: 14px;
  line-height: 1.43;
  margin-bottom: 25px;
  color: #6c6c6c;
}

.news__date {
  color: #0b99d5;
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  bottom: 27px;
}

.news__next,.news__prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  outline: none;
  cursor: pointer;
}

.news__next:hover .icon,.news__prev:hover .icon {
  color: #0b99d5;
}

.news__prev {
  left: -40px;
}

.news__next {
  right: -40px;
}

@font-face {
  font-family:'icomoon';src:url("../fonts/icomoon59bb.woff") format("woff"), url("../fonts/icomoon59bb.html") format("svg");font-weight:normal;font-style:normal;
}

@media only screen and (max-width: 1247px) {
  .breadcrumb {
    width: 750px;
  }

  .news__detail-title {
    margin-top: 70px;
  }

  .news__item {
    margin: 0 auto;
  }

  .news__title {
    font-size: 14px;
  }

  .news p {
    font-size: 12px;
  }

  .news__date {
    font-size: 10px;
  }

  .news__next .icon,.news__prev .icon {
    font-size: 12px;
    color: #252829;
    transition: color .3s;
  }

  .news__prev {
    left: -11px;
  }

  .news__next {
    right: -11px;
  }
}

@media only screen and (max-width: 1023px) {
  .breadcrumb {
    display: none;
  }

  .news__detail-title {
    margin-top: 50px;
  }

  .news__item__content {
    max-height: initial;
  }

  .news__prev {
    left: -13px;
  }

  .news__next {
    right: -13px;
  }
}

@media only screen and (max-width: 767px) {
  .news__detail-title {
    margin-top: 40px;
  }

  .news__content {
    flex: 0 0 90%;
    padding: 0;
    margin: 0 5%;
  }

  .news__item {
    display: block;
  }

  .news__item img {
    margin: 0 auto;
  }

  .news__title {
    font-size: 16px;
  }

  .news p {
    font-size: 14px;
  }

  .news__date {
    font-size: 11px;
  }

  .news__prev {
    left: -0%;
  }

  .news__next {
    right: -2%;
  }
}

@media only screen and (max-width: 399px) {
  .news__prev {
    left: -6%;
  }

  .news__next {
    right: -7%;
  }
}

[class^="icon-"],[class*=" icon-"] {
 /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
 /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-menu-m:before {
  content: "\e904";
}

.icon-arrow-right:before {
  content: "\e901";
}

.icon-arrow-left:before {
  content: "\e902";
}

.icon-search:before {
  content: "\e900";
}

.breadcrumb {
  width: 844px;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0;
  margin: 0;
}

.breadcrumb__item {
  list-style: none;
  margin-right: 10px;
}

.breadcrumb__item--first {
  padding-left: 0;
  background-image: none;
  margin-right: 13px;
}

.breadcrumb__link {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #4f5255;
  text-decoration: none;
  transition: color .3s;
}

.breadcrumb__link:hover {
  color: #050606;
}

.breadcrumb__arrow {
  margin-right: 10px;
  font-size: 9px;
}

.widget {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.widget__box {
  flex: 1;
  flex-grow: 5;
  margin-right: 115px;
}

.widget__box.-gray {
  flex-grow: 4;
  margin-right: 0;
 
  background-color: #f7f9fa;
}

.widget__title {
  font-size: 32px;
  font-weight: 600;
  color: #252829;
  margin-bottom: 20px;
}

.widget__desc {
  color: #4f5255;
  line-height: 1.75;
}

.widget__subtitle {
  font-size: 23px;
  font-weight: 600;
  color: #00182c;
  margin-bottom: 25px;
}

.widget__text {
  color: #6c6c6c;
  margin-bottom: 20px;
}

.widget__form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.widget__form__input {
  border: 1px solid #dfe6eb;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.widget__form__search-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 150px;
  height: 60px;
  background-color: #0b99d5;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
}

@font-face {
  font-family:'icomoon';src:url("../fonts/icomoon59bb.woff") format("woff"), url("../fonts/icomoon59bb.html") format("svg");font-weight:normal;font-style:normal;
}

@media only screen and (max-width: 1247px) {
  .breadcrumb {
    width: 750px;
  }

  .widget__title {
    font-size: 28px;
  }

  .widget__form__search-btn {
    font-size: 11px;
  }
}

@media only screen and (max-width: 1023px) {
  .breadcrumb {
    display: none;
  }

  .widget {
    flex-direction: column;
  }

  .widget__box {
    margin: 0 0 30px;
  }

  .widget__box.-gray {
    margin-bottom: 0;
    margin-right: -25px;
    margin-left: -25px;
    padding: 50px 24px 60px;
  }

  .widget__title {
    text-align: center;
    margin-bottom: 14px;
  }

  .widget__desc {
    text-align: center;
  }

  .widget__subtitle {
    margin-bottom: 15px;
    text-align: center;
  }

  .widget__text {
    text-align: center;
    line-height: 1.25;
  }
}

@media only screen and (max-width: 767px) {
  .widget__box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0 45px;
  }

  .widget__box.-gray {
    margin-left: -25px;
    margin-right: -25px;
    margin: 0;
  }

  .widget__title {
    font-size: 25px;
  }

  .widget__form {
    flex-direction: column;
  }

  .widget__form__input {
    margin-bottom: 12px;
    height: 60px;
    min-height: 60px;
    color: #4f5255;
    font-size: 16px;
  }

  .widget__form__search-btn {
    max-width: none;
    border-radius: 4px;
    min-height: 60px;
  }
}