/* RedHatDisplay Font Faces */
@font-face {
    font-family: 'RedHatDisplay';
    font-style: normal;
    font-weight: 400;
    src: local('RedHatDisplay Regular'), local('RedHatDisplay-Regular'),
         url('../fonts/RedHatDisplay-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'RedHatDisplay';
    font-style: normal;
    font-weight: 500;
    src: local('RedHatDisplay Medium'), local('RedHatDisplay-Medium'),
         url('../fonts/RedHatDisplay-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'RedHatDisplay';
    font-style: normal;
    font-weight: 600;
    src: local('RedHatDisplay SemiBold'), local('RedHatDisplay-SemiBold'),
         url('../fonts/RedHatDisplay-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'RedHatDisplay';
    font-style: normal;
    font-weight: 700;
    src: local('RedHatDisplay Bold'), local('RedHatDisplay-Bold'),
         url('../fonts/RedHatDisplay-Bold.ttf') format('truetype');
}



@charset "UTF-8";
html,
body {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: "RedHatDisplay", sans-serif;
  font-size: 18px;
  color: #000;
  line-height: 28px;
  font-weight: 400;
  background: #fff;
}
body.active {
  overflow: hidden;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

.auto__container {
  position: relative;
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 40px;
}

h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 65px;
  font-family: "RedHatDisplay", sans-serif;
  color: #0C4488;
}

h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 55px;
  font-family: "RedHatDisplay", sans-serif;
  color: #0C4488;  
}

h3 {
  font-weight: 600;
  font-size: 40px;
  line-height: 45px;
  color: #0C4488;
  font-family: "RedHatDisplay", sans-serif;
}

h4 {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  color: #0C4488;
  font-family: "RedHatDisplay", sans-serif;
}
h4.sm {
  font-weight: 700;
  font-size: 30px;
  line-height: 37px;
  font-family: "RedHatDisplay", sans-serif;
  color: #0C4488;
}

h5 {
  font-family: "RedHatDisplay", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
}

h6 {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}
h6.sm {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}

p.big {
  font-size: 20px;
  line-height: 32px;
}
p.ex {
  font-size: 24px;
  line-height: 130%;
}
p.sm {
  font-size: 16px;
  line-height: 20px;
}

.main {
  overflow: hidden;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.button.light {
  padding: 24px 46px;
  font-family: "RedHatDisplay", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #ffffff;
  background: #0C4488;
}
.button.light:hover {
  opacity: 1;
  background-color: #08150A;
}
.button.dark {
  padding: 24px 46px;
  font-family: "RedHatDisplay", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #ffffff;
  background: #08150A;
}

.input {
  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;
}
.input input,
.input textarea, .input select {
  width: 100%;
  padding: 22px 25px;
  font-size: 18px;
  line-height: 24px;
  color: #08150a;
  background-color: transparent;
  border: 1px solid #818181;
}
.input input::-webkit-input-placeholder, .input textarea::-webkit-input-placeholder, .input select::-webkit-input-placeholder {
  color: rgba(8, 21, 10, 0.5);
}
.input input::-moz-placeholder, .input textarea::-moz-placeholder, .input select::-moz-placeholder {
  color: rgba(8, 21, 10, 0.5);
}
.input input:-ms-input-placeholder, .input textarea:-ms-input-placeholder, .input select:-ms-input-placeholder {
  color: rgba(8, 21, 10, 0.5);
}
.input input::-ms-input-placeholder, .input textarea::-ms-input-placeholder, .input select::-ms-input-placeholder {
  color: rgba(8, 21, 10, 0.5);
}
.input input::placeholder,
.input textarea::placeholder, .input select::placeholder {
  color: rgba(8, 21, 10, 0.5);
}
.input textarea {
  resize: unset;
}

.check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.check__box {
  width: 40px;
  height: 40px;
  position: relative;
  margin-right: 20px;
}
.check__box span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #838383;
  z-index: 1;
}
.check__box span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 25%;
  border-top: 3px solid #0C4488;
  border-right: 3px solid #0C4488;
  content: "";
  -webkit-transform: translate(-50%, -70%) rotate(135deg);
          transform: translate(-50%, -70%) rotate(135deg);
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.check__box input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.check__box input:checked ~ span {
  border-color: #0C4488;
}
.check__box input:checked ~ span::before {
  opacity: 1;
}
.check p {
  width: calc(100% - 60px);
  color: #000;
}

.video {
  width: 100%;
  /*padding-bottom: 50%;*/
  position: relative;
  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;
}
.video::after {
  /*content: "";*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2666666667);
}
.video.active::after {
  display: none;
}
.video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video video [poster] {
  width: 100%;
  height: 100%;
}
.video video:hover ~ .video__play.active {
  opacity: 1;
}
.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  z-index: 3;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.1);
  border: 1px solid #d2d2d2;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.video__play.active {
  opacity: 0;
}
.video__play.active .video__play-icon img {
  display: none;
}
.video__play.active .video__play-icon::after {
  display: block;
}
.video__play.active .video__play-icon::before {
  display: block;
}
.video__play.active:hover {
  opacity: 1;
}
.video__play-icon {
  width: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.video__play-icon::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 35%;
  width: 7px;
  height: 45%;
  background-color: #0C4488;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.video__play-icon::before {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  right: 35%;
  width: 7px;
  height: 45%;
  background-color: #0C4488;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.video__play-icon img {
  width: 100%;
  max-width: 26px;
}

.upheader {
  background-color: #0C4488;
  text-align: center;
  color: #fff;
}
.upheader .auto__container {
  max-width: 1670px;
}
.upheader__inner {
  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;
  padding: 15px 0;
  max-height: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.upheader .more {
  display: none;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 99;
  background-color: #fffffff2;
}
.header .auto__container {
  max-width: 1670px;
}
.header__inner {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner-logo {
  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;
  width: 400px;
}
.header__inner-logo img {
  width: 70%;
}
.header__inner-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@-webkit-keyframes sticky {
  0% {
    top: 0px;
    opacity: 0;
  }
  100% {
    top: -70px;
    opacity: 1;
  }
}

@keyframes sticky {
  0% {
    top: 0px;
    opacity: 0;
  }
  100% {
    top: -70px;
    opacity: 1;
  }
}
@-webkit-keyframes more {
  0% {
    top: 80%;
    opacity: 0;
  }
  100% {
    top: 100%;
    opacity: 1;
  }
}
@keyframes more {
  0% {
    top: 80%;
    opacity: 0;
  }
  100% {
    top: 100%;
    opacity: 1;
  }
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner li {
  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: 20px;
}
.nav__inner li a {
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  padding: 20px;
}
.nav__inner li a:hover {
  opacity: 1;
  color: #0C4488;
}
.nav__inner li a.active {
  font-weight: 700;
}
.nav__inner .dropdown {
  position: relative;
}
.nav__inner .dropdown__title {
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  padding: 20px;
}
.nav__inner .dropdown__title:hover {
  opacity: 1;
  color: #0C4488;
}
.nav__inner .dropdown__title.active {
  font-weight: 700;
}
.nav__inner .dropdown:hover .dropdown__menu {
  opacity: 1;
  max-height: 400px;

}
.nav__inner .dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  z-index: 999;

}
.nav__inner .dropdown__menu a {
  width: 100%;
  padding: 5px;
  margin-bottom: 6px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;

}
.nav__inner .dropdown__menu a:hover {
  color: #000;
}
.nav__inner .dropdown__menu a:last-child {
  margin: 0;
}

.burger {
  display: none;
}

.footer {
  padding: 105px 0 115px;
  background-color: #000;
  color: #fff;
}

.footer p {

  color: #fff;
}
.footer__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__inner-main {
  width: calc(40% - 20px);
  max-width: 350px;
}
.footer__inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(25% - 20px);
  max-width: 244px;
}
.footer__inner-links a {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}
.footer__inner-links a:hover {
  opacity: 1;
  color: #000;
}
.footer__inner-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__inner-info {
  width: calc(35% - 20px);
  max-width: 285px;
}
.footer__inner-copy {
  padding-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: end;
}
.footer__inner h4 {
  margin-bottom: 26px;
}
.footer__inner h6 {
  margin-bottom: 28px;
  color: white;
}
.footer__inner h6.hidden {
  visibility: hidden;
  opacity: 0;
}

.search {
  /* position: absolute; */
  /* top: 100%; */
  /* display: none; */
  left: 0;
  width: 100%;
  background: #353535;
  padding: 15px 0px 0px 0px;
  z-index: 0;
  height: 50px;
}
.searchBtn {
  /* width: 20px; */
  /* height: 20px; */
  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: 0 50px 0 40px;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
}
.searchBtn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background-color: #ffffff;
  content: "";
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.searchBtn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background-color: #ffffff;
  content: "";
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
}
.searchBtn.active::before {
  opacity: 1;
}
.searchBtn.active::after {
  opacity: 1;
}
.searchBtn.active svg {
  opacity: 0;
}
.searchBtn:hover svg {
  color: #0C4488;
}
.searchBtn svg {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #ffffff;
}
.search.active {
  display: block;
  -webkit-animation: 0.2s linear search;
          animation: 0.2s linear search;
}
.searchInput {
  width: calc(100% - 174px);
}
.searchInput input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  font-family: "RedHatDisplay", sans-serif;
  font-weight: 400;
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  color: #08150a;
  border: 1px solid #818181;
}
.searchInput input::-webkit-input-placeholder {
  color: #08150a;
  opacity: 0.5;
}
.searchInput input::-moz-placeholder {
  color: #08150a;
  opacity: 0.5;
}
.searchInput input:-ms-input-placeholder {
  color: #08150a;
  opacity: 0.5;
}
.searchInput input::-ms-input-placeholder {
  color: #08150a;
  opacity: 0.5;
}
.searchInput input::placeholder {
  color: #08150a;
  opacity: 0.5;
}
.search__inner {
  max-width: 1110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  float: right;
  justify-content: space-around;
}
.search__inner button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  color: #fff;
  font-family: "RedHatDisplay", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  background: #353535;
  padding: 0px 13px;
}
.search__inner button svg {
  width: 31px;
  height: 31px;
  margin-right: 12px;
}

.lang {
  position: relative;
  z-index: 1000;
}

.lang img,.lang a img {
  width: 36px;
}

.lang:hover .lang__menu {
  max-height: 200px;
  opacity: 1;
  padding: 16px 6px 7px;
}
.lang__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background-color: #1875BA;
  padding: 0 6px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.lang__menu a {
  margin-bottom: 15px;
  color: white;  
}
.lang__menu a:last-child {
  margin: 0;
}
.lang a {
  width: 40px;
  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;
}
.lang a img {
  width: 100%;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  padding-top: 10px;
}
.breadcrumb.start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.breadcrumb span {
  margin: 0 8px;
  display: inline-block;
}
.breadcrumb li {
  font-size: 14px;
  color: #000000;
  line-height: 18px;
  margin-left: 0px!important;
}
.breadcrumb li a {
  color: #000000;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.breadcrumb li a:hover {
  color: #0C4488;
}

@-webkit-keyframes search {
  0% {
    top: 110%;
    opacity: 0;
  }
  100% {
    top: 100%;
    opacity: 1;
  }
}

@keyframes search {
  0% {
    top: 110%;
    opacity: 0;
  }
  100% {
    top: 100%;
    opacity: 1;
  }
}
.contact__inner-title {
  text-align: center;
  margin-bottom: 60px;
}
.contact__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contactItem {
  width: calc(33.3% - 10px);
  max-width: 350px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #e4ebf0;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px 15px 25px 20px;
  color: #232323;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}

.contactItem h5 {
  margin-bottom: 25px;
}
.contactItem p {
  margin-bottom: 25px;
}
.contactItem p:last-child {
  margin: 0;
}
.contactItem p a {
  color: #0C4488;
  font-weight: 700;
}

.location {
  padding: 100px 0;
}
.location__inner-title {
  text-align: center;
  margin-bottom: 50px;
}
.locationMap {
  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;
  padding-bottom: 50%;
  position: relative;

}
.locationMap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.location .video {
  border: 20px solid #f4f4f4;
  background-color: #bcbcbc;
}

.write__inner-title {
  text-align: center;
  margin-bottom: 35px;
}
.write__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.write__inner-foot {
  padding-top: 15px;
  padding: 15px 0 0 125px;
}
.write__inner .input {
  width: calc(100% - 125px);
  max-width: 366px;
}
.write__inner .input__outer {
  width: calc(47% - 15px);
  max-width: 500px;
  margin: 2px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.write__inner .input__outer:nth-child(even) {
  width: calc(53% - 15px);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 555px;
}
.write__inner .input__outer:nth-child(even) p {
  width: 150px;
}
.write__inner .input__outer:nth-child(even) .input {
  width: calc(100% - 180px);
}
.write__inner .input__outer:last-child {
  width: 100%;
  max-width: unset;
}
.write__inner .input__outer:last-child .input {
  max-width: 980px;
}
.write__inner .input__outer p {
  width: fit-content;
  margin-right: 30px;
  white-space: nowrap;
}
.write__inner .check {
  margin-bottom: 18px;
}
.write__inner .check:last-of-type {
  margin-bottom: 40px;
}
.write__inner .button {
  width: 100%;
  max-width: 252px;
}

.modal {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
}
.modal.active {
  -webkit-animation: 0.2s linear modal;
          animation: 0.2s linear modal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@-webkit-keyframes modal {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes modal {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.modal__inner {
  margin: auto;
  width: 100%;
  max-width: 540px;
  border-radius: 20px;
  background: #fff;
  padding: 42px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal__close svg {
  width: 100%;
  color: #000;
  height: 100%;
  pointer-events: none;
}
.modal h4 {
  margin-bottom: 16px;
}
.modal p {
  margin-bottom: 16px;
}
.modal p:last-child {
  margin-bottom: 0;
  opacity: 0.7;
  text-align: center;
}
.modal p:last-child a {
  opacity: 0.7;
}
.modal p:last-child a:hover {
  opacity: 1;
  color: #0C4488;
}
.modal .button {
  margin-bottom: 16px;
  width: 100%;
}

.input {
  position: relative;
  margin-bottom: 20px;
}
.input svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 16px;
  width: 18px;
  height: 18px;
  color: #000;
}
.input input,
.input select {
  font-size: 16px;
  color: #000;
  font-family: "RedHatDisplay", sans-serif;
  line-height: 24px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #dfdfdf;
  border-radius: 12px;
  padding: 12px 20px;
  -webkit-appearance: none;
}
.input input::-webkit-input-placeholder, .input select::-webkit-input-placeholder {
  color: #000;
  opacity: 0.7;
}
.input input::-moz-placeholder, .input select::-moz-placeholder {
  color: #000;
  opacity: 0.7;
}
.input input:-ms-input-placeholder, .input select:-ms-input-placeholder {
  color: #000;
  opacity: 0.7;
}
.input input::-ms-input-placeholder, .input select::-ms-input-placeholder {
  color: #000;
  opacity: 0.7;
}
.input input::placeholder,
.input select::placeholder {
  color: #000;
  opacity: 0.7;
}

.hero {
  height: 100%;
  position: relative;
  min-height: calc(100vh - 198px) !important;
  padding: 110px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.hero__slider .slick-dots {
  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;
  bottom: 48px;
}
.hero__slider .slick-dots li {
  width: 20px;
  height: 20px;
  background: #0C4488;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.hero__slider .slick-dots li.slick-active {
  background: #fff;
}
.hero__slider .slick-dots li button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0;
}
.hero__slider .slick-dots li button::before {
  display: none;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
}
.hero__bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.hero__inner {
  width: 100%;
  text-align: center;
}
.hero__inner h2 {
  margin-bottom: 12px;
  text-shadow: 3px 3px 5px #000;
  color: white;
  font-weight: 600;
  font-size: 60px;
  line-height: 70px;
  font-family: "RedHatDisplay", sans-serif;
}
.hero__inner p {  
  text-shadow: 3px 3px 5px #000;
  color: white;
}
.hero__inner img.pecet {
  margin: auto;
}

.hero__inner .button{
  margin-top: 20px;
} 

.sales {
  padding: 145px 0;
}
.sales__inner-title {
  text-align: center;
  margin-bottom: 70px;
}
.sales__inner-title p {
  max-width: 760px;
  margin: 0 auto;
}
.sales__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.sales__inner h2 {
  //margin-bottom: 80px;
}
.salesItem {
  margin: 15px;
  width: calc(33.3% - 30px);
  position: relative;
  display: block;
}
.salesItem:hover {
  opacity: 1;
}
.salesItem:hover .salesItem__content {
  opacity: 1;
  visibility: visible;
}
.salesItem:hover > h5 {
  opacity: 0;
  visibility: hidden;
}
.salesItem__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
  background-color: #0C4488;
  padding: 55px 20px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.salesItem__content p {
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.salesItem__content p span {
  width: 36px;
  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: 10px;
}
.salesItem__content p span img {
  width: 100%;
}
.salesItem__image {
  position: relative;
  padding-bottom: 100%;
  width: 100%;
  z-index: 1;
}
.salesItem__image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(24.3%, rgba(0, 0, 0, 0.00005)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00005) 24.3%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}
.salesItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  z-index: 1;
}
.salesItem > h5 {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  padding: 0 20px;
  color: #fff;
  z-index: 3;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.achieve {
  padding-bottom: 146px;
}
.achieve h3 {
  margin-bottom: 24px;
}
.achieve__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.achieve__inner-content {
  width: calc(60% - 15px);
  max-width: 635px;
}
.achieve__inner-content p {
  margin-bottom: 30px;
}
.achieve__inner-content ul li {
  padding: 20px 20px 20px 95px;
  position: relative;
}
.achieve__inner-content ul li h6 {
  margin-bottom: 16px;
  color: #0C4488;
}
.achieve__inner-content ul li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 65px;
  border-radius: 50%;
  display: block;
  height: 65px;
  background: #fff;
  border: 1px solid #d2d2d2;
  -webkit-box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.1);
}
.achieve__inner-content ul li span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  content: "";
  width: 8px;
  height: 16px;
  border-bottom: 3px solid #0C4488;
  border-right: 3px solid #0C4488;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.achieve__inner-content ul li::before {
  position: absolute;
  content: "";
  top: 0;
  left: 95px;
  width: calc(100% - 95px);
  height: 1px;
  background: #d2d2d2;
}
.achieve__inner-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.achieve__inner-image {
  width: calc(40% - 15px);
  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;
  overflow: hidden;
}
.achieve__inner-image img {
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.achieve__inner-image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.banner {
  padding-bottom: 20%;
  position: relative;
  height: 110px;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.about {
  padding-bottom: 90px;
}
.about__head {
  margin-bottom: 70px;
  text-align: center;
  margin: 0 auto 70px auto;
  max-width: 1110px;
}
.about__head h2 {
  margin-bottom: 70px;
}
.about__head p {
  max-width: 750px;
  margin: 0 auto;
}
.about__inner-text {
  margin-bottom: 70px;
}
.about__inner-text h3 {
  margin-bottom: 20px;
  color: #0C4488;
}
.about__inner-text h4 {
  color: #0C4488;
  margin-bottom: 20px;
}
.about__inner-text p {
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.6);
}
.about__inner-text p:last-child {
  margin-bottom: 0;
}
.about__inner-text a {
  color: #1875BA;
}
.about__inner-text ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.about__inner-text ul:last-child {
  margin-bottom: 0;
}
.about__inner-text ul li {
  list-style: disc;
  color: rgba(0, 0, 0, 0.6);
}
.about__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -15px;
}
.aboutItem {
  width: calc(33.3% - 30px);
  margin: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
}
.aboutItem__inner {
  background: #1875BA;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  aspect-ratio: 1 / 1; 
}
.aboutItem h3 {
  color: #fff;
  margin: 0 0 20px 0;
}
.aboutItem h5 {
  color: #fff;
  margin-bottom: 0;
}


.aboutItem__icon {
  width: 94px;
  height: 94px;
  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;
  margin: 0 auto;
}
.aboutItem__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}

.content {
  padding: 90px 0;
}
.content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin-bottom: 140px;
}
.content__inner:last-child {
  margin-bottom: 0;
}
.content__inner-text {
  width: calc(50% - 15px);
  padding: 15px;
  max-width: 510px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.content__inner-image {
  width: calc(50% - 15px);
  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;
}
.content__inner-image img {
  width: 100%;
}

.content h3 {
  margin-bottom: 24px;
  color: #0C4488;
}
.content p {
  color: #08150a;
  margin-bottom: 20px;
}

.feature {
  padding: 90px 0;
}
.feature__head {
  margin-bottom: 40px;
}
.feature__head h2 {
  margin-bottom: 16px;
}
.feature__head p {
  margin-bottom: 20px;
}
.feature__head p:last-child {
  margin-bottom: 0;
}
.feature__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -15px;
}
.featureItem {
  width: calc(33.3% - 30px);
  margin: 0 15px;
  background: #f4f4f4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
}
.featureItem__inner {
  background: #fff;
  padding: 50px 16px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.featureItem h3 {
  margin-bottom: 8px;
  color: #08150a;
}
.featureItem h5 {
  color: #08150a;
  margin-bottom: 20px;
}
.featureItem__icon {
  width: 100px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 20px;
}
.featureItem__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.featureItem__inner {
  background: #848484;
}

.blog {
  padding: 90px 0;
}
.blog.rp {
  padding: 0 0 140px 0;
}
.blog__head {
  margin-bottom: 40px;
}
.blog__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.blogItem {
  width: calc(33.3% - 30px);
  margin: 60px 15px 30px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 30px;
}
.blogItem__image {
  padding-bottom: calc(100%);
  position: relative;
  margin: 0 -30px;
  width: calc(100%);
  background-color: #848484;
}
.blogItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.blogItem__content {
  background: #1875BA;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  padding: 18px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: white;
  -webkit-box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.1);
  margin: -60px 0 0 -30px;
  width: calc(100%);
  position: relative;
  z-index: 2;
}
.blogItem__content h6 {
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 20px;
}
.blogItem:hover {
  opacity: 1;
}
.blogItem:hover .blogItem__content {
  background: #fff;
}
.blogItem:hover h6 {
    color: black;
}
.blogItem:hover .blogItem__link {
  color: #fff;
}
.blogItem:hover .blogItem__link svg {
  left: calc(100% - 130px);
}
.blogItem__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #1875BA;
  font-weight: 700;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  font-size: 12px;
  line-height: 14px;
  position: relative;
}
.blogItem__link svg {
  width: 36px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  position: absolute;
  height: 16px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.blogNew {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 58px;
}
.blogNew__content {
  background: #848484;
}
.blogNew:hover .blogNew__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.blogNew:hover .blogNew__link svg {
  left: calc(100% - 130px);
}
.blogNew:last-child {
  margin-bottom: 0;
}
.blogNew__more {
  width: 38%;
  height: 100%;
}
.blogNew__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.blogNew__image img {
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.blogNew.reverse .blogNew__content {
  padding: 20px 0 20px 20px;
}
.blogNew.reverse .blogNew__content-inner {
  padding: 32px 60px 32px 40px;
}
.blogNew__content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 62%;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  background: #f9f9f9;
  padding: 20px 20px 20px 0;
}
.blogNew__content-inner {
  background: #fff;
  height: 100%;
  padding: 32px 40px 32px 60px;
}
.blogNew__content h4 {
  margin-bottom: 16px;
  max-width: 400px;
}
.blogNew__content h6.xsm {
  color: #1875BA;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 20px;
}
.blogNew__content p {
  color: rgba(8, 21, 10, 0.5);
  margin-bottom: 50px;
}
.blogNew__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  color: #1875BA;
  font-weight: 700;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  font-size: 12px;
  line-height: 14px;
  position: relative;
}
.blogNew__link svg {
  width: 36px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  position: absolute;
  height: 16px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}

.faq {
  padding: 90px 0 120px 0;
}
.faq.sm {
  padding: 0 0 240px;
}
.faq h3 {
  margin-bottom: 70px;
}
.faqItem__head {
  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;
  padding: 12px 0;
  border-top: 1px solid #d2d2d2;
}
.faqItem__head h6 {
  color: #0C4488;
  width: calc(100% - 75px);
}
.faqItem__head span {
  width: 45px;
  border-radius: 50%;
  display: block;
  position: relative;
  height: 45px;
}
.faqItem__head span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  content: "";
  width: 16px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  height: 16px;
  border-bottom: 3px solid #0C4488;
  border-right: 3px solid #0C4488;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.faqItem__head.active span::before {
  -webkit-transform: translate(-50%, -50%) rotate(225deg);
          transform: translate(-50%, -50%) rotate(225deg);
}
.faqItem__body {
  max-height: 0;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  overflow: hidden;
}
.faqItem__body.active {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 20px;
}

.firewood {
  padding-bottom: 240px;
}
.firewood__inner-title {
  text-align: start;
  margin-bottom: 40px;
}
.firewood__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
.firewood__inner-content {
  width: calc(50% - 10px);
  max-width: 520px;
}
.firewood__inner-slider {
  width: calc(50% - 10px);
  max-width: 544px;
}
.firewood__inner-form {

  justify-content: center;
  margin-top: 60px;
}
.firewood__inner-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "RedHatDisplay", sans-serif;
}
.firewood__inner-table tr {
  border-top: 1px solid #d2d2d2;
}
.firewood__inner-table tr:last-child {
  border-bottom: 1px solid #d2d2d2;
}
.firewood__inner-table tr td,
.firewood__inner-table tr th {
  padding: 20px 0;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
}
.firewood__inner-table tr th {
  width: 30%;
  text-align: start;
  color: #0C4488;
  font-weight: 700;
  max-width: 320px;
}
.firewood__inner h3 {
  margin-bottom: 10px;
}
.firewood__inner .slick-dots {
  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;
  bottom: 24px;
}
.firewood__inner .slick-dots li {
  width: 20px;
  height: 20px;
  background: #0C4488;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.firewood__inner .slick-dots li.slick-active {
  background: #fff;
}
.firewood__inner .slick-dots li button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0;
}
.firewood__inner .slick-dots li button::before {
  display: none;
}
.firewood__inner .input {
  width: calc(100% - 130px);
  position: relative;
}
.firewood__inner .input__outer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 22px;
}
.firewood__inner .input__outer:last-of-type {
  width: calc(50% - 5px);
  margin: 0;
}
.firewood__inner .input__outer p {
  width: 100px;
  margin-right: 30px;
}
.firewood__inner .input select {
  -webkit-appearance: none;
}
.firewood__inner .input span {
  width: 26px;
  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: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.firewood__inner .input span img {
  width: 100%;
}
.firewood__inner .button {

  padding: 24px;
  line-height: 24px;
}
.firewoodItem__inner {
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}
.firewoodItem__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

@media (max-width: 1680px) {
  p.ex {
    font-size: 18px;
  }
  .header__inner-logo {
    width: 340px;
  }
  .hero {
    min-height: calc(100vh - 230px) !important;
  }
}
@media (max-width: 1380px) {
  p.ex {
    font-size: 16px;
  }
  h1 {
    font-size: 56px;
    line-height: 58px;
  }
  h2 {
    font-size: 50px;
    line-height: 52px;
  }
  h3 {
    font-size: 46px;
    line-height: 48px;
  }  
  h4 {
    font-size: 28px;
    line-height: 32px;
  }
  .upheader__inner {
    padding: 10px 0;
  }
  .header__inner {
    padding: 15px 0;
  }
  .header__inner-logo {
    width: 300px;
  }
  .nav__inner li {
    margin-right: 12px;
  }
  .nav__inner li a {
    font-size: 18px;
    line-height: 22px;
    padding: 10px;
  }
  .nav__inner .dropdown__title {
    font-size: 18px;
    line-height: 22px;
    padding: 10px;
  }
  .search {
    padding: 15px 0px 5px 0px;
  }
  .searchBtn {
    margin: 0 30px 0 15px;
  }
  .searchInput {
    width: calc(100% - 110px);
  }
  .searchInput input {
    padding: 10px;
  }
  .search__inner {
    max-width: 740px;
  }
  .search__inner button {
    padding: 0px 20px;
  }
  .lang a {
    width: 40px;
  }
  .breadcrumb li {
    font-size: 18px;
    line-height: 22px;
  }
  .hero {
    min-height: calc(100vh - 224px) !important;
  }
  .achieve__inner-content ul li {
    padding-left: 70px;
    padding-bottom: 16px;
    padding-top: 16px;
  }
  .achieve__inner-content ul li h6 {
    margin-bottom: 10px;
  }
  .achieve__inner-content ul li::before {
    left: 70px;
    width: calc(100% - 70px);
  }
  .achieve__inner-content ul li span {
    width: 56px;
    height: 56px;
  }
  .about__head {
    margin-bottom: 50px;
  }
  .about__head h2 {
    margin-bottom: 50px;
  }
  .about__inner-text {
    margin-bottom: 50px;
  }
  .content__inner {
    margin-bottom: 100px;
  }
  .faq.sm {
    padding: 0 0 170px;
  }
  .faqItem__head span {
    width: 56px;
    height: 56px;
  }
  .faqItem__head span::before {
    width: 10px;
    height: 10px;
  }
  .blogNew {
    margin-bottom: 42px;
  }
  .blogNew.reverse .blogNew__content {
    padding: 20px 0 20px 20px;
  }
  .blogNew.reverse .blogNew__content-inner {
    padding: 20px 32px;
  }
  .blogNew__content {
    padding: 20px 20px 20px 0;
  }
  .blogNew__content-inner {
    padding: 20px 32px;
  }
  .blogNew__content p {
    margin-bottom: 32px;
  }
}
@media (max-width: 1250px) {
  .header__inner-logo {
    width: 240px;
  }
  .hero {
    min-height: calc(100vh - 224px) !important;
  }
  .blog__head {
    margin-bottom: 32px;
  }
  .blog__inner {
    margin: 0 -10px;
  }
  .blogItem {

    width: calc(33.3% - 20px);
    padding: 0 20px;
  }
  .blogItem__image {

    width: calc(100%);
  }
  .blogItem__content {
    padding: 10px 20px;
  }
  .about__inner-row {
    margin: 0 -10px;
  }
  .aboutItem {
    padding: 15px;
    margin: 0 10px;
    width: calc(33.3% - 20px);
  }
  .feature__inner {
    margin: 0 -10px;
  }
  .featureItem {
    padding: 15px;
    margin: 0 10px;
    width: calc(33.3% - 20px);
  }
}
@media (max-width: 1180px) {
  .auto__container {
    padding: 0 30px;
  }
  h1 {
    font-size: 54px;
    line-height: 56px;
  }
  h2 {
    font-size: 50px;
    line-height: 52px;
  }
  h3 {
    font-size: 46px;
    line-height: 48px;
  }
  h5 {
    font-size: 20px;
    line-height: 25px;
  }
  p.ex {
    font-size: 14px;
  }
  .banner {
    padding-bottom: 30%;
  }
  .footer {
    padding: 80px 0;
  }
  .lang a {
    width: 30px;
  }
  .breadcrumb li {
    font-size: 16px;
    line-height: 20px;
  }
  .sales {
    padding: 100px 0;
  }
  .sales__inner-title {
    margin-bottom: 40px;
  }
  .sales__inner h2 {
    margin-bottom: 50px;
  }
  .contact__inner-title {
    margin-bottom: 70px;
  }
}
@media (max-width: 1024px) {
  .search{
    padding: 15px 0px 15px 0px;
  }

  h1 {
    font-size: 50px;
    line-height: 52px;
  }
  h2 {
    font-size: 46px;
    line-height: 48px;
  }
  h3 {
    font-size: 42px;
    line-height: 44px;
  }
  h4 {
    font-size: 24px;
    line-height: 32px;
  }
  p.ex {
    font-size: 12px;
  }
  p.sm {
    font-size: 14px;
    line-height: 18px;
  }
  .button.light {
    padding: 20px 32px;
  }
  ::-webkit-scrollbar {
    display: none;
  }
  .header__inner {
    padding: 10px 0;
  }
  .header__inner-logo {
    width: 200px;
  }
  body.active {
    overflow: hidden;
  }
  .nav {
    position: fixed;
    top: 119px;
    left: 0;
    width: 100%;
    height: calc(100% - 119px);
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .nav.active {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 400px;
    z-index: 1;
    padding: 20px 20px 20px 20px;
    height: 100%;
    overflow-y: auto;
    background: #fefefe;
  }
  .nav__inner .dropdown {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav__inner .dropdown:hover .dropdown__menu {

    opacity: 1;
  }
  .nav__inner .dropdown__title {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .nav__inner .dropdown__menu {
    width: 100%!important;
    position: static;
    padding: 0;
    max-height: unset;
    opacity: 1;
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .nav__inner .dropdown__menu a {
    width: 100%;
    padding-left: 30px;
    text-align: left;
    margin: 0;
  }
  .nav__inner li {
    margin: 0;
    width: 100%;
  }
  .nav__inner li a {
    display: block;
    width: 100%;
  }
  .burger {
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    position: relative;
    width: 30px;
    height: 30px;
    margin-left: 30px;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 20%;
    width: 100%;
    height: 3px;
    background-color: #0C4488;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger span {
    top: 50%;
    width: 100%;
    height: 3px;
    background-color: #0C4488;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-ransform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .burger::after {
    bottom: 20%;
    width: 100%;
    height: 3px;
    background-color: #0C4488;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active span {
    opacity: 0;
  }
  .burger.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }
  .footer {
    padding: 60px 0;
  }
  .footer a {
    color: white;
  }  
  .footer__inner {
    font-size: 16px;
    line-height: 24px;
  }
  .footer__inner-links a {
    font-size: 16px;
    line-height: 28px;
  }
  .footer__inner h4 {
    margin-bottom: 16px;
  }
  .footer__inner h6 {
    margin-bottom: 22px;
  }
  .searchInput {
    width: calc(100% - 60px);
  }
  .searchInput input {
    padding: 12px 16px;
  }
  .search__inner {
    max-width: 540px;
  }
  .search__inner button {
    padding: 12px 16px;
  }
  .search__inner button svg {
    margin: 0;
  }
  .search__inner button span {
    display: none;
  }
  .hero {
    min-height: calc(100vh - 224px) !important;
  }
  .hero__slider .slick-dots li {
    width: 16px;
    height: 16px;
  }
  .achieve__inner-content ul li {
    padding-left: 60px;
  }
  .achieve__inner-content ul li::before {
    left: 60px;
    width: calc(100% - 60px);
  }
  .achieve__inner-content ul li span {
    width: 40px;
    height: 40px;
  }
  .blogItem {
    padding: 0;
  }
  .blogItem__image {
    margin: 0;
    width: 100%;
    padding-bottom: 100%;
  }
  .blogItem__content {
    margin: 0;
  }
  .blogNew {
    margin-bottom: 32px;
  }
  .blogNew.reverse .blogNew__content {
    padding: 0;
  }
  .blogNew.reverse .blogNew__content-inner {
    padding: 20px 32px;
  }
  .blogNew__content {
    padding: 0;
  }
  .blogNew__content-inner {
    padding: 20px 32px;
  }
  .blogNew__content p {
    margin-bottom: 32px;
  }
  .faq h3 {
    margin-bottom: 50px;
  }
  .faqItem__head h6 {
    width: calc(100% - 50px);
  }
  .faqItem__head span {
    width: 40px;
    height: 40px;
  }
  .contact__inner-title {
    margin-bottom: 50px;
  }
  .contactItem {
    width: calc(33.3% - 6px);
    border-width: 12px;
    padding: 15px;
  }
  .contactItem h5 {
    margin-bottom: 16px;
  }
  .contactItem p {
    margin-bottom: 16px;
  }
  .location {
    padding: 70px 0;
  }
  .location__inner-title {
    margin-bottom: 35px;
  }
  .locationMap {
    border-width: 15px;
  }
  .location .video {
    border-width: 15px;
  }
  .firewood {
    padding-bottom: 180px;
  }
  .firewood__inner-row {
    margin-bottom: 40px;
  }
  .firewood__inner-form {
    margin-bottom: 30px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .firewood__inner-table tr th {
    width: 40%;
  }
  .firewood__inner .input {
    width: 100%;
  }
  .firewood__inner .input__outer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 18px;
  }
  .firewood__inner .input__outer p {
    width: unset;
    margin: 0 0 10px 0;
  }
  .firewood__inner .input input,
  .firewood__inner .input select {
    padding: 19px;
  }
}
@media (max-width: 930px) {

  h1 {
    font-size: 42px;
    line-height: 45px;
  }
  h2 {
    font-size: 40px;
    line-height: 43px;
  }
  h3 {
    font-size: 36px;
    line-height: 40px;
  }
  h4 {
    font-size: 22px;
    line-height: 24px;
  }  
  h5 {
    font-size: 17px;
    line-height: 22px;
  }
  p.sm {
    font-size: 12px;
    line-height: 16px;
  }
  .check__box {
    width: 30px;
    height: 30px;
  }
  .check p {
    width: calc(100% - 50px);
  }
  .video__play {
    width: 70px;
    height: 70px;
  }
  .video__play-icon {
    width: 18px;
  }
  .video__play-icon::before {
    width: 5px;
  }
  .video__play-icon::after {
    width: 5px;
  }
  .footer__inner-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__inner-main {
    width: calc(60% - 20px);
  }
  .footer__inner-links {
    width: calc(40% - 20px);
  }
  .footer__inner-info {
    width: 100%;
    max-width: unset;
    margin-top: 30px;
  }
  .sales {
    padding: 70px 0;
  }
  .sales__inner-title {
    margin-bottom: 30px;
  }
  .sales__inner-row {
    margin: 0 -8px;
  }
  .sales__inner h2 {
    margin-bottom: 30px;
  }
  .salesItem {
    margin: 8px;
    width: calc(33.3% - 16px);
  }
  .salesItem__content {
    padding: 30px 20px 20px;
  }
  .salesItem > h5 {
    bottom: 20px;
  }
  .contact__inner-title {
    margin-bottom: 35px;
  }
  .contactItem {
    width: calc(33.3% - 6px);
    border-width: 12px;
    padding: 10px;
  }
  .contactItem h5 {
    margin-bottom: 12px;
  }
  .contactItem p {
    margin-bottom: 12px;
  }
  .write__inner-title {
    margin-bottom: 20px;
  }
  .write__inner-foot {
    padding: 15px 0 0 0;
  }
  .write__inner .input {
    width: 100%;
    max-width: unset;
  }
  .write__inner .input__outer {
    width: calc(50% - 10px);
    max-width: 500px;
    margin: 2px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .write__inner .input__outer:nth-child(even) {
    width: calc(50% - 10px);
    max-width: unset;
  }
  .write__inner .input__outer:nth-child(even) p {
    width: 150px;
  }
  .write__inner .input__outer:nth-child(even) .input {
    width: 100%;
  }
  .write__inner .input__outer:last-child {
    width: 100%;
    max-width: unset;
  }
  .write__inner .input__outer:last-child .input {
    max-width: unset;
  }
  .write__inner .input__outer p {
    width: 95px;
    margin-right: 30px;
    white-space: nowrap;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 840px) {
  .about {
    padding-bottom: 50px;
  }
  .about__head {
    margin-bottom: 28px;
  }
  .about__head h2 {
    margin-bottom: 22px;
  }
  .about__inner-text {
    margin-bottom: 28px;
  }
  .about__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  
  .about__inner-row {
    display: flex;
  flex-direction: column;
  align-items: center; 
  width: 100%; 
  justify-content: center;
  max-width: 1000px; 
  margin: 0 auto;

  }
  
  .aboutItem {

padding: 20px;
  width: 30%; 
margin: 0 auto;
display: flex; 
  justify-content: center;
  text-align: center; 

  }  
  .feature {
    padding: 50px 0;
  }
  .feature__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .featureItem {
    padding: 20px;
    margin: 0 0 20px 0;
    width: 100%;
  }
  .content {
    padding: 50px 0;
  }
  .faq {
    padding: 50px 0;
  }
  .faq.sm {
    padding: 0 0 120px;
  }
  .blog {
    padding: 50px 0;
  }
  .blogNew {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blogNew__more {
    width: 100%;
  }
  .blogNew__image {
    padding-bottom: 42%;
    height: unset;
  }
  .blogNew__content {
    width: 100%;
    padding: 20px !important;
  }
  .firewood {
    padding-bottom: 140px;
  }
  .firewood__inner-title {
    margin-bottom: 24px;
  }
  .firewood__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .firewood__inner-content {
    padding-top: 10px;
    width: 100%;
    max-width: unset;
    margin-bottom: 40px;
  }
  .firewood__inner-slider {
    width: 100%;
    max-width: unset;
  }
  .firewood__inner-table tr td,
  .firewood__inner-table tr th {
    font-size: 13px;
    padding: 15px 0;
  }
}
@media (max-width: 750px) {
  .auto__container {
    padding: 0 20px;
  }
  
  h1 {
    font-size: 40px;
    line-height: 43px;
  }
  h2 {
    font-size: 38px;
    line-height: 42px;
  }
  h3 {
    font-size: 32px;
    line-height: 36px;
  }
  h4 {
    font-size: 22px;
    line-height: 24px;
  }
  h4.sm {
    font-size: 25px;
    line-height: 30px;
  }
  .banner {
    padding-bottom: 40%;
  }
  .footer {
    padding: 40px 0 30px;
  }
  .footer__inner-main {
    width: 100%;
    max-width: 440px;
    margin-bottom: 30px;
  }
  .footer__inner-links {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer__inner-info {
    margin: 0;
  }
  .footer__inner-copy {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding-top: 35px;
  }
  .footer__inner h6 {
    margin-bottom: 15px;
  }
  .sales {
    padding: 50px 0;
  }
  .salesItem {
    width: calc(50% - 16px);
  }
  .achieve__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .achieve__inner-content {
    width: 100%;
    margin-bottom: 32px;
  }
  .achieve__inner-image {
    width: 100%;
  }
  .blog__inner {
    margin: 0 -20px;
  }
  .blogItem {
    margin: 20px;
    width: calc(50% - 40px);
  }
  .content__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 80px;
  }
  .content__inner-text {
    width: 100%;
    margin-bottom: 32px;
    max-width: unset;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .content__inner-image {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .location {
    padding: 50px 0;
  }
  .location__inner-title {
    margin-bottom: 24px;
  }
  .locationMap {
    border-width: 10px;
  }
  .location .video {
    border-width: 10px;
  }
  .contact__inner-title {
    margin-bottom: 20px;
  }
  .contact__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contactItem {
    width: 100%;
    max-width: unset;
    border-width: 17px;
    padding: 20px;
    margin: 0 0 24px 0;
  }
  .contactItem:last-child {
    margin: 0;
  }
  .contactItem h5 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .contactItem p {
    margin-bottom: 20px;
  }
  .contactItem p.sm {
    font-size: 16px;
    line-height: 22px;
  }
  .write__inner-title {
    margin-bottom: 20px;
  }
  .write__inner .input input {
    padding: 16px 20px;
  }
}
@media (max-width: 650px) {
  .video__play {
    width: 50px;
    height: 50px;
  }
  .video__play-icon {
    width: 12px;
  }
  .video__play-icon::before {
    width: 3px;
  }
  .video__play-icon::after {
    width: 3px;
  }
  .blog__inner {
    margin: 0 -10px;
  }
  .blogItem {
    width: calc(50% - 20px);
    margin: 10px;
  }
  .write__inner-title {
    margin-bottom: 20px;
  }
  .write__inner .input__outer {
    width: 100%;
    max-width: unset;
    margin: 0 0 2px 0;
  }
  .write__inner .input__outer:last-child {
    margin: 0;
  }
  .write__inner .input__outer:nth-child(n) {
    width: 100%;
    max-width: unset;
  }
  .write__inner .input input, .write__inner .input textarea {
    padding: 16px 20px;
  }
  .write__inner .button {
    max-width: 200px;
    padding: 16px;
  }
  .write__inner .check {
    margin-bottom: 12px;
  }
  .write__inner .check:last-of-type {
    margin-bottom: 24px;
  }
  .write__inner .check p {
    font-size: 12px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 30px;
    line-height: 40px;
  }
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
  h3 {
    font-size: 28px;
    line-height: 36px;
  }
  body {
    font-size: 16px;
    line-height: 24px;
  }
  .check__box {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }
  .check p {
    width: calc(100% - 32px);
    font-size: 13px;
    line-height: 16px;
  }
  .video {
    padding-bottom: 56%;
  }
  .video__play {
    width: 38px;
    height: 38px;
  }
  .video__play-icon {
    width: 10px;
  }
  .video__play-icon::before {
    width: 3px;
  }
  .video__play-icon::after {
    width: 3px;
  }
  .banner {
    padding-bottom: 50%;
  }
  .modal__inner {
    padding: 32px 20px;
  }
  .header__inner-logo {
    width: 180px;
  }
  .header__inner-side .lang {
    margin-left: 10px;
  }
  .nav {
    top: 114.92px;
    height: calc(100% - 114.92px);
  }
  .burger {
    margin-left: 16px;
  }
  .searchBtn {
    margin: 0;
  }
  .sales {
    padding: 40px 0;
  }
  .sales__inner-title {
    margin-bottom: 24px;
  }
  .sales__inner-row {
    margin: 0;
  }
  .sales__inner h2 {
    margin-bottom: 20px;
  }
  .salesItem {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .salesItem:last-child {
    margin: 0;
  }
  .salesItem__content {
    padding: 40px 20px 30px;
  }
  .salesItem > h5 {
    bottom: 30px;
  }
  .achieve {
    padding-bottom: 100px;
  }
  .achieve__inner-content ul li {
    padding-left: 44px;
  }
  .achieve__inner-content ul li::before {
    left: 44px;
    width: calc(100% - 44px);
  }
  .achieve__inner-content ul li span {
    width: 34px;
    height: 34px;
  }
  .achieve__inner-content ul li span::before {
    width: 5px;
    height: 10px;
  }
  .blog.rp {
    padding-bottom: 100px;
  }
  .blog__inner {
    margin: 0;
  }
  .blogItem {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .blogNew__more {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .blogNew__image {
    padding-bottom: 63%;
  }
  .blogNew__content {
    padding: 10px !important;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .blogNew__content-inner {
    padding: 20px !important;
  }
  .faq.sm {
    padding: 0 0 70px;
  }
  .faq h3 {
    margin-bottom: 30px;
  }
  .faqItem__head h6 {
    width: calc(100% - 40px);
    font-size: 17px;
    line-height: 24px;
  }
  .faqItem__head span {
    width: 32px;
    height: 32px;
  }
  .faqItem__head span::before {
    width: 8px;
    height: 8px;
  }
  .location {
    padding: 30px 0;
  }
  .location__inner-title {
    margin-bottom: 16px;
  }
  .locationMap {
    border-width: 7px;
    padding-bottom: 56%;
  }
  .location .video {
    border-width: 7px;
  }
  .firewood {
    padding-bottom: 70px;
  }
  .firewood__inner-content {
    margin-bottom: 30px;
  }
  .firewood__inner-row {
    margin-bottom: 24px;
  }
  .firewood__inner-table {
    min-width: 400px;
  }
  .firewood__inner-table-wrapper {
    overflow-y: auto;
  }
  .firewood__inner-table tr td,
  .firewood__inner-table tr th {
    font-size: 11px;
    padding: 12px 0;
  }
  .firewood__inner .slick-dots li {
    width: 16px;
    height: 16px;
  }
  .firewood__inner .input input,
  .firewood__inner .input select {
    padding: 12px 15px;
  }
  .firewood__inner .input span {
    width: 20px;
  }
  .firewood__inner .button {
    padding: 14px;
  }
  .firewood__inner h4.sm {
    font-size: 20px;
    line-height: 24px;
  }
  .write__inner .input input, .write__inner .input textarea {
    padding: 12px 16px;
  }
}
@media (max-width: 440px) {
  h2 {
    font-size: 22px;
    line-height: 30px;
  }
  h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .header {
    /* position: fixed; */
    z-index: 100;
    width: 100%;
    left: 0;
    top: 0;
    background: #fff;
    //top: 38px;
  }
  .header__inner-logo {
    width: 150px;
  }
  .upheader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    width: 100%;
  }
  .upheader__inner {
    height: 38px;
  }
  .upheader .more {
    color: #fff;
    background: transparent;
    font-family: "RedHatDisplay", sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    font-size: 16px;
    line-height: 18px;
  }
  .upheader .more svg {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    width: 16px;
    height: 16px;
    color: #fff;
    margin-left: 4px;
  }
  .upheader p {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
    width: 100%;
    background: #0C4488;
    -webkit-animation: 0.2s linear more;
            animation: 0.2s linear more;
  }
  .upheader p.active {
    display: block;
  }
  .nav {
    top: 91px;
    height: calc(100% - 91px);
  }
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.textAdd{
  width: -webkit-fill-available;
  color:  white;
  padding-right: 15px;
  white-space: nowrap;
  align-self: center;
}

.textAdd a {
  color: white;
  text-decoration: underline;
}


.searchBox {
  position: absolute;
  top: 100%;
  display: none;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px 0;
  z-index: 999;
}
.searchBoxBtn {
  width: 20px;
  height: 20px;
  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: 0 50px 0 40px;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
}
.searchBoxBtn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 2px;
  background-color: #0C4488;
  content: "";
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.searchBoxBtn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 2px;
  background-color: #0C4488;
  content: "";
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
}
.searchBoxBtn.active::before {
  opacity: 1;
}
.searchBoxBtn.active::after {
  opacity: 1;
}
.searchBoxBtn.active svg {
  opacity: 0;
}
.searchBoxBtn:hover svg {
  color: #000;
}
.searchBoxBtn svg {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #0C4488;
}
.searchBox.active {
  display: block;
  -webkit-animation: 0.2s linear search;
          animation: 0.2s linear search;
}
.searchBoxInput {
  width: calc(100% - 174px);
}
.searchBoxInput input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 22px;
  font-family: "RedHatDisplay", sans-serif;
  font-weight: 400;
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  color: #08150a;
  border: 1px solid #818181;
}
.searchBoxInput input::-webkit-input-placeholder {
  color: #08150a;
  opacity: 0.5;
}
.searchBoxInput input::-moz-placeholder {
  color: #08150a;
  opacity: 0.5;
}
.searchBoxInput input:-ms-input-placeholder {
  color: #08150a;
  opacity: 0.5;
}
.searchBoxInput input::-ms-input-placeholder {
  color: #08150a;
  opacity: 0.5;
}
.searchBoxInput input::placeholder {
  color: #08150a;
  opacity: 0.5;
}
.searchBox__inner {
  max-width: 1110px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.searchBox__inner button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  color: #fff;
  font-family: "RedHatDisplay", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  background: #0C4488;
  padding: 26px 38px;
}
.searchBox__inner button svg {
  width: 19px;
  height: 19px;
  margin-right: 12px;
}

.signpost {padding: 40px 0px;}
.signpost .container-super-wide {
  max-width: 1600px;
}
.signpost .signpost__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  align-content: center;
  align-items: center;
  justify-items: center;
}
.signpost .signpost__box {
  overflow: hidden;
  position: relative;
  background-color: black;
  width: 100%;
  aspect-ratio: 1 / 1; /* tvercov pomr stran */
}
.signpost .signpost__box h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
}
.signpost .signpost__box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Zachov tvercov formt a obrzek bude oznut podle rmeku */
  display: block;
  transition: all 2s linear;
  opacity: 1;
}
.signpost .signpost__box:hover img {
  opacity: 1;
  transform: scale(1.1);
}

@media only screen and (max-width: 1100px) {
  .signpost .signpost__box h3 {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 700px) {
  .signpost .signpost__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 550px) {
  .signpost .signpost__box h3 {
    line-height: 2rem;
  }
}