* {
  margin: 0;
  padding: 0;
  line-height: 1;
}

html {
  height: 100%;
}

body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  overflow-y: scroll;
  background: #fcfbfe;
}

img {
  border: none;
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.ma {
  margin: auto;
}

.clear {
  clear: both;
}

.clear:after {
  content: '';
  display: block;
  clear: both;
}

.content {
  overflow: hidden;
}

.header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #c6ced9;
}

.logo {
  display: block;
  position: absolute;
  top: 25px;
  left: 99px;
}

.h-body {
  float: right;
  display: flex;
  flex-direction: column;
  max-width: calc(100% - 400px);
  padding: 20px 0 0;
}

.h-top {
  padding-right: 50px;
  padding-bottom: 12px;
  display: flex;
  /* justify-content: space-between; */
  border-bottom: 1px dashed #dcdee7;
}

.h-top > div:not(:first-child) {
  margin-left: 1em;
}

.h-top > div:not(:last-child) {
  margin-right: 10%;
}

.h-phone {
  position: relative;
  display: inline-block;
  margin-top: 6px;
  padding-left: 37px;
  font-weight: 500;
  font-size: 22px;
  color: #8e9195;
}

.h-phone::before {
  content: '';
  display: block;
  position: absolute;
  left: 5px;
  width: 20px;
  height: 20px;
  background: url('/images/icons/icon-phone.png');
  transform: scale(1);
  transition: transform 0.5s;
}

.h-phone:hover::before {
  transform: scale(-1, 1);
}

.search-form {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.search-input {
  width: 375px;
  padding: 8px 32px 8px 10px;
  font-size: 11px;
  color: #757575;
  border: 1px solid #141414;
  border-radius: 9px;
  outline: 0;
  background: #f8fafc;
}

.search-form button {
  display: block;
  position: absolute;
  right: 7px;
  top: 5px;
  background: none;
  border: none;
  outline: 0;
  cursor: pointer;
}

.socials a {
  display: inline-block;
  margin-top: 3px;
  transform: scale(1);
  backface-visibility: hidden;
  transition: transform .5s;
}

.socials a:not(:first-child) {
  margin-left: 15px;
}

.socials a:not(:last-child) {
  margin-right: 15px;
}

.socials a:hover {
  transform: scale(1.1);
}

.h-bottom {
  margin-bottom: -1px;
}

.top-menu {
  font-size: 0;
  float: left;
}

.top-menu a {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 16px 6px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #161925;
  background: transparent;
  border-radius: 2px;
  outline: none;
  transition: background 0.5s;
}

.top-menu a:hover {
  background: #023d7c0e;
}

.top-menu a.active {
  /* background: #023d7c0e; */
  color: #1260b0;
}

.top-menu a:not(:first-child) {
  margin-left: 30px;
}

.top-menu a:not(:last-child) {
  margin-right: 30px;
}

.top-menu a[data-submenu] span {
  position: relative;
}

.top-menu a[data-submenu] span::after {
  content: '';
  display: block;
  width: 11px;
  height: 7px;
  position: absolute;
  right: -20px;
  top: 35%;
  background: url('/images/icons/dropdown.png');
}

.inquire-link {
  float: right;
  height: 71px;
  line-height: 71px;
  padding: 0 44px;
  margin-left: 50px;
  background: #0f5fb1;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  border-top-left-radius: 10px;
  transition: background .5s;
}

.inquire-link:hover {
  background: #0d4884;
}

.mobile-menu-wrapper {
  display: none;
}

.mobile-menu-state {
  display: none;
}

.mobile-menu-trigger {
  /* display: none; */
  float: right;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  cursor: pointer;
}

.mobile-menu-trigger span {
  height: 3px;
  width: 22px;
  margin: -1px auto 0;
  background: #023d7c;
  display: block;
  position: relative;
  top: 50%;
  transition: background 0.2s ease-out;
}

.mobile-menu-trigger span:before,
.mobile-menu-trigger span:after {
  background: #023d7c;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

.mobile-menu-trigger span:before {
  top: 7px;
}

.mobile-menu-trigger span:after {
  top: -7px;
}

.mobile-menu-state:checked ~ .mobile-menu {
  display: block;
  max-height: 240px;
}

.mobile-menu-state:checked ~ .mobile-menu-trigger span {
  background: transparent;
}

.mobile-menu-state:checked ~ .mobile-menu-trigger span:before {
  transform: rotate(-45deg);
}

.mobile-menu-state:checked ~ .mobile-menu-trigger span:after {
  transform: rotate(45deg);
}

.mobile-menu-state:checked ~ .mobile-menu-trigger:not(.steps) span:before,
.mobile-menu-state:checked ~ .mobile-menu-trigger:not(.steps) span:after {
  top: 0;
}

.mobile-menu {
  display: none;
  user-select: none;
  width: 100%;
  position: absolute;
  right: 0;
  top: 65px;
  z-index: 11;
}

.mobile-menu a {
  display: block;
  text-align: right;
  padding: 10px 15px 10px 5px;
  background-color: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid #c3c3c3;
  text-decoration: none;
  color: #fff;
}

.mobile-menu a:hover {
  background: rgba(0, 0, 0, 0.7);
}

.mobile-menu a.mobile-inquire {
  background: #0f5fb1;
  transition: background .5s;
}

.mobile-menu a.mobile-inquire:hover {
  background: #0d4884;
}

.mobile-search {
  display: none;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.9);
}

.mobile-search input {
  margin: 10px 15px 10px 5px;
  min-width: calc(100% - 20px);
  box-sizing: border-box;
}

.more-link {
  position: relative;
  display: inline-block;
  padding: 18px 66px 18px 26px;
  font-size: 24px;
  color: #fff;
  background: #1260b0;
  border-radius: 35px;
  box-shadow: 0 0 10px rgba(31, 60, 136, .18);
}

.more-link::after {
  content: '';
  display: block;
  position: absolute;
  width: 54px;
  height: 54px;
  top: 3px;
  right: 4px;
  border-radius: 50%;
  background: #fff url('/images/icons/more-link-arrow.jpg') 50% 50% no-repeat;
  transform: scale(1);
  transition: transform 0.5s;
}

.more-link:hover::after {
  transform: scale(-1, 1);
}

.top-sub-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: -1px 6px 9px 0px rgba(0,0,0,.11);
}

.tsm-close {
  display: block;
  position: absolute;
  top: 19px;
  right: 31px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #070707;
  background: url('/images/icons/close.png') 50% 50% no-repeat;
}

.top-sub-menu > div {
  display: none;
  max-width: 1740px;
  padding: 0 10px;
  margin: 25px auto 10px;
}

.top-sub-menu a {
  display: inline-block;
  vertical-align: top;
  width: 124px;
  padding: 10px;
  margin: 0 15px;
  text-align: center;
  background: #fff;
  border-radius: 2px;
  transition: background .2s;
}

.top-sub-menu a:hover {
  background: #023d7c0e;
}

.tsm-image {
  margin-bottom: 10px;
  height: 92px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.top-sub-menu a h6 {
  line-height: 1.2;
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 12px;
  color: #000022;
}

.top-sub-menu a p {
  line-height: 1.2;
  font-size: 9px;
  color: #000022;
}

.text-block {
  margin-bottom: 60px;
  position: relative;
  text-align: center;
  padding: 0 10px;
}

.text-block h1 {
  display: inline-block;
  position: relative;
  margin-bottom: 22px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 60px;
  font-style: italic;
  color: #000022;
  text-transform: uppercase;
  text-align: center;
}

.tb-sep {
  width: 130px;
  height: 2px;
  background: #0f5fb1;
  margin: 0 auto 22px;
  position: relative;
}

.text-block p {
  line-height: 1.2;
  position: relative;
  max-width: 785px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  color: #000022;
}

.text-block p:not(:last-child) {
  margin-bottom: 1em;
}

.tb-pattern-l {
  position: absolute;
  left: 0;
  top: -27px;
  width: 246px;
  height: 202px;
  background: url('/images/pattern-left.png');
}

.tb-pattern-r {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -81px;
}

.tb-pattern-r-alt {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 81px;
}

.tb-shadow-title {
  white-space: nowrap;
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 160px;
  color: #fff;
  text-shadow: 0px 0px 139px rgba(62, 101, 209, 0.22);
  text-transform: uppercase;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.tb-shadow-title-small {
  font-family: 'Oswald', sans-serif;
  white-space: nowrap;
  font-weight: 900;
  font-size: 155px;
  color: #fff;
  text-shadow: 0px 0px 139px rgba(62, 101, 209, 0.22);
  text-transform: uppercase;
  letter-spacing: 23px;
  position: absolute;
  top: -51px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.home-thumbs {
  position: relative;
  padding-top: 65px;
  background: #fcfbfe;
}

.ht-pattern {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -81px;
  width: 90px;
  height: 245px;
  background: url('/images/thumbs-block-pattern.png');
}

.home-thumbs .thumbs .wrapper {
  margin-left: -0.65%;
  margin-right: -0.65%;
}

.thumbs {
  font-size: 0;
  max-width: 1740px;
  padding: 0 10px 50px;
  margin: 0 auto;
  position: relative;
}

.thumbs a {
  width: 18.7%;
  position: relative;
  z-index: 2;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  margin-left: 0.65%;
  margin-right: 0.65%;
  margin-bottom: 20px;
  padding: 10px 10px 22px;
  border-radius: 5px;
  text-align: center;
  background: #fff;
  box-shadow: 0px 6px 35px rgba(62, 101, 209, 0.11);
}

.t-pic {
  height: 250px;
}

.t-pic img {
  max-width: 99%;
  max-height: 99%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.thumbs a > h4 {
  font-weight: 700;
  font-size: 24px;
  color: #000022;
}

.t-descr {
  font-size: 16px;
  color: #000022;
}

.thumbs a > h4 span {
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.t-hover {
  padding: 0 10px;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background: #0f5fb1;
  background-image: linear-gradient(
    #0f5fb1,
    #3871a9
  );
  transition: opacity 0.5s;
}

.t-hover h4 {
  margin-bottom: 21px;
  margin-top: 115px;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
}

.t-hover-sep {
  height: 1px;
  width: 102px;
  background: #fff;
  margin: 0 auto 24px;
}

.t-hover-descr {
  line-height: 1.2;
  font-size: 16px;
  color: #fff;
  max-width: 250px;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 0 auto 50px;
}

.t-hover span {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 24px;
  font-style: italic;
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
  color: #fff;
}

.t-hover span::after {
  content: "";
  display: block;
  width: 18px;
  height: 16px;
  position: absolute;
  top: 3px;
  right: -33px;
  background: url("/images/icons/chevrons.png");
}

.thumbs a:hover .t-hover {
  opacity: 1;
}

.welcome-block {
  padding: 115px 0 95px;
  background: #c7cfd6;
  background-image: linear-gradient(
    #c7cfd6,
    #bcc1c9
  );
}

.paragraph-cont {
  position: relative;
  margin: 60px 0;
}

.paragraph {
  max-width: 1740px;
  padding: 0 10px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

.paragraph:not(:last-child) {
  margin-bottom: 50px;
}

.par-txt {
  width: 45%;
}

.par-txt:only-child {
  width: 100%;
}

.par-media {
  width: 45%;
}

.par-media:only-child {
  width: 100%;
}

.par-L .par-txt {
  float: left;
}

.par-L .par-media {
  float: right;
}

.par-R .par-txt {
  float: right;
}

.par-R .par-media {
  float: left;
}

.par-txt > h3 {
  font-size: 30px;
  /* font-style: italic; */
  color: #0f5fb1;
  letter-spacing: 0px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

.par-txt > h2 {
  font-size: 50px;
  font-family: 'Oswald', sans-serif;
  /* font-style: italic; */
  color: #000022;
  letter-spacing: 0px;
  text-transform: uppercase;
  font-weight: 700;
}

.par-txt-sep {
  margin: 30px 0;
  width: 129px;
  height: 2px;
  background: #0f5fb1;
}

.par-txt-body p {
  line-height: 1.5;
  font-size: 18px;
  color: #000022;
}

.par-txt-body p:not(:last-child) {
  margin-bottom: 1em;
}
.par-txt-body ul {
  margin-bottom: 30px;
  padding-left: 20px;
}
.par-txt-body ul li {
  line-height: 1.5;
  font-size: 18px;
  color: #000022;
}

.par-txt-body {
  margin-bottom: 35px;
}

.par-media .wrapper {
  position: relative;
  max-width: 795px;
  border-radius: 15px;
}

.par-media .wrapper > img {
  border-radius: 15px;
  box-shadow: 0 0 29px rgba(0, 58, 114, .19);
  display: block;
}

.par-media-small {
  max-width: 30%;
  max-height: 30%;
  position: absolute;
  bottom: 40px;
}

.par-L .par-media-small {
  right: 50px;
}

.par-R .par-media-small {
  left: 50px;
}

.par-image-border {
  margin: 0 auto;
  height: 46px;
  max-width: 95%;
  background: url('/images/par-image-border.png') 50% 0 no-repeat;
  background-size: contain;
}

.certificates-block {
  padding: 89px 10px 55px;
  background-image: url('/images/certificates-block-bg.jpg');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.certificates-block .wrapper {
  max-width: 1740px;
  padding: 0 10px;
  margin: 0 auto;
}

.cb-title {
  position: relative;
  float: left;
  margin-bottom: 50px;
}

.cb-shadow-title {
  white-space: nowrap;
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 160px;
  color: #fcfbfe;
  text-shadow: 0px 0px 139px rgba(62, 101, 209, 0.22);
  text-transform: uppercase;
  position: absolute;
  top: -40px;
  pointer-events: none;
}

.cb-title h2 {
  position: relative;
  margin-bottom: 20px;
  padding-left: 120px;
  font-size: 72px;
  /* font-size: 40px; */
  /* font-style: italic; */
  color: #000022;
  letter-spacing: -3px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

.cbt-prefix {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 103px;
  height: 2px;
  background: #0f5fb1;
}

.cbt-prefix::before {
  content: '';
  display: block;
  position: absolute;
  right: -11px;
  bottom: 6px;
  width: 9px;
  height: 9px;
  background: #0f5fb1;
  border-radius: 50%;
}

.cb-title p {
  position: relative;
  line-height: 1.2;
  max-width: 730px;
  font-size: 18px;
}

.cb-title p:not(:last-child) {
  margin-bottom: 1em;
}

.cb-quote {
  float: right;
}

.quote-link {
  position: relative;
  display: inline-block;
  padding: 18px 66px 18px 26px;
  font-size: 24px;
  color: #0f5fb1;
  border: 1px solid #0f5fb1;
  border-radius: 35px;
  box-shadow: 0 0 10px rgba(31, 60, 136, .18);
}

.quote-link::after {
  content: '';
  display: block;
  position: absolute;
  width: 54px;
  height: 54px;
  top: 3px;
  right: 4px;
  border-radius: 50%;
  background: #0f5fb1 url('/images/icons/quote.png') 50% 50% no-repeat;
  transform: scale(1);
  transition: transform 0.5s;
}

.quote-link:hover::after {
  transform: scale(-1, 1);
}

.cb-items {
  font-size: 0;
  margin: 0 -3.01%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.cb-items a {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 3.01% 40px;
  width: 27.3%;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 6px 35px rgba(62,101,209, .11);
  transition: box-shadow .5s;
}

.cb-items a:hover {
  box-shadow: 0 6px 35px rgba(62,101,209, 1);
}

.footer {
  padding-top: 45px;
  color: #fff;
  background: #101d30;
}

.f-top {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

.f-item {
  position: relative;
  margin: 0 1% 20px;
}

.f-item h5 {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  writing-mode: vertical-lr;
  -ms-writing-mode: tb-rl;
  transform: rotate(180deg);
}

.f-item .socials a {
  display: inline-block;
  width: 25px;
  height: 25px;
  overflow: hidden;
}

.fi-wrapper {
  padding-left: 80px;
}

.f-contact-block {
  margin-bottom: 25px;
}

.f-contact-block p {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.3;
}

.f-contact-block div {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 1em;
}

.f-product-menu div {
  max-width: 215px;
  margin-bottom: 1em;
}

.f-product-menu a {
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
}

.f-product-menu a:hover span {
  text-decoration: underline;
}

.f-nav-menu div {
  max-width: 215px;
  margin-bottom: 1.5em;
}

.f-nav-menu div.f-nav-hdd {
  display: none;	
}

.f-nav-menu a {
  font-size: 16px;
  letter-spacing: 2px;
  color: #fff;
}

.f-nav-menu a:hover {
  text-decoration: underline;
}

.f-item h4 {
  letter-spacing: 2px;
  margin-bottom: 1em;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
}

.f-descr {
  margin-bottom: 20px;
  font-size: 12px;
}

.f-download {
  display: inline-block;
  height: 39px;
  line-height: 39px;
  padding: 0 22px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 25px;
  background: #d10000;
  transition: background 0.5s;
}

.f-download:hover {
  background: #a10000;
}

.f-bottom {
  padding: 20px 10px;
  background: #05101f;
  text-align: center;
}

.f-bottom p {
  line-height: 1.4;
  font-size: 14px;
  letter-spacing: 2px;
}

.f-bottom a {
  display: inline-block;
  white-space: nowrap;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid #fff;
  transition: border-bottom 0.5s;
}

.f-bottom a:hover {
  border-bottom: 1px solid transparent;
}

.title-block {
  position: relative;
  padding: 0 10px;
  background-size: cover;
  background-position: 0 100%;
  background-repeat: no-repeat;
}

.tb-bg-blue {
  display: inline-block;
  margin-left: 150px;
  height: 333px;
  padding: 0 35px 0 20px;
  background: #145499;
}

.title-block h1 {
  font-family: 'Oswald', sans-serif;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  line-height: .9;
  font-size: 90px;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
}

.products-info-background {
  background: #fcfbfe;
}

.product-info {
  max-width: 1740px;
  padding: 45px 10px 55px;
  margin: 0 auto;
}

.breadcrumbs {
  margin-bottom: 25px;
  font-size: 0;
}

.breadcrumbs * {
  margin-right: 3px;
  font-size: 16px;
  color: #161925;
}

.breadcrumbs span:not(:last-child)::after,
.breadcrumbs a:not(:last-child)::after {
  content: '>';
  display: inline-block;
  margin-left: 3px;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span:last-child {
  font-weight: 700;
}

.pi-media:not(:only-child) {
  float: left;
  width: 43.6%;
}

.pi-descr:not(:only-child) {
  float: right;
  width: 54.16%;
}

.pg-viewport {
  width: calc(100% - 205px);
  padding: 40px 50px 30px;
  box-sizing: border-box;
  margin-bottom: 27px;
  background: #fff;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 6px 35px rgba(62,101,209,.11);
  transition: box-shadow .5s;
}

.pg-viewport:hover {
  box-shadow: 0 6px 35px rgba(62,101,209,1);
}

.pg-viewport a {
  display: block;
}

.pgv-image {
  margin-bottom: 20px;
  height: 342px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.pg-viewport a span {
  font-size: 18px;
  color: #0f5fb1;
  border-bottom: 1px solid #0f5fb1;
  transition: border-bottom .5s;
}

.pg-viewport:hover span {
  border-bottom: 1px solid transparent;
}

.pi-top {
  margin-bottom: 35px;
}

.pi-title {
  padding-bottom: 35px;
  margin-right: 1em;
  padding-left: 18px;
  border-bottom: 1px solid #d2d2d2;
}

.pi-title:not(:only-child) {
  float: left;
  width: calc(100% - 400px);
}

.pi-title h1 {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 36px;
  color: #000022;
}

.pi-title p {
  font-weight: 700;
  font-size: 16px;
  color: #757575;
}

.pi-title p:not(:last-child) {
  margin-bottom: 1em;
}

.pi-inquire {
  float: right;
  margin-bottom: 25px;
}

.product-quote-link {
  display: inline-block;
  vertical-align: top;
  padding: 22px 39px;
  background: #0f5fb1;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  transition: background 0.5s;
}

.product-quote-link::after {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 8px;
  left: 6px;
  border: 2px solid #0f5fb1;
  border-radius: 10px;
  box-shadow: border-box;
  z-index: 0;
  transition: top 0.5s, left 0.5s, border 0.5s;
}

.product-quote-link:hover {
  background: #0d4884;
}

.product-quote-link:hover::after {
  top: 0;
  left: 0;
  border: 2px solid #0d4884;
}

.pdf-link {
  display: inline-block;
  padding: 10px 0 0 43px;
  min-height: 25px;
  font-size: 16px;
  color: #0f5fb1;
  background: url('/images/icons/pdf-icon.png') 0 0 no-repeat;
}

.pi-files > div:not(:last-child) {
  margin-bottom: 20px;
}

.pdf-link span {
  border-bottom: 1px solid #0f5fb1;
  transition: border-bottom .5s;
}

.pdf-link:hover span {
  border-color: transparent;
}

.pi-descr-wrapper {
  padding-left: 18px;
}

.pi-descr-wrapper h2 {
  margin-bottom: 18px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-style: italic;
  color: #213b60;
  text-transform: uppercase;
}

.pi-full-descr {
  margin-bottom: 40px;
}

.pi-full-descr:not(:only-child) {
  float: left;
  max-width: calc(100% - 400px);
}

.pi-files {
  margin-right: 25px;
  max-width: 260px;
  float: right;
}

.pi-full-descr p {
  font-size: 18px;
  color: #141414;
  line-height: 1.2;
}

.pi-full-descr p:not(:last-child) {
  margin-bottom: 1em;
}

.pi-list {
  display: inline-block;
  vertical-align: top;
}

.pi-list:not(:last-child) {
  margin-right: 60px;
}

.pi-list ul {
  list-style: none;
}

.pi-list li {
  max-width: 400px;
  padding-left: 20px;
  margin-bottom: 1em;
  position: relative;
  font-size: 18px;
  color: #141414;
  line-height: 1.2;
}

.pi-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  border-radius: 50%;
  background: #213b60;
}

.pp-specs {
  padding: 67px 10px 72px;
  background: #ebecf0;
}

.pp-specs-wrapper {
  max-width: 1740px;
  margin: 0 auto;
}

.pps-item {
  margin-bottom: 30px;
}

.pps-item:not(:only-child) {
  width: 50%;
  float: left;
}

.pp-specs h2 {
  margin-bottom: 40px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 50px;
  font-style: italic;
  color: #0f5fb1;;
  text-transform: uppercase;
}

.pp-specs h3 {
  margin-bottom: 22px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  /* font-style: italic; */
  color: #213b60;
  text-transform: uppercase;
}

.pps-item:first-child .wrapper {
  margin-right: 40px;
}

.pps-item:last-child .wrapper {
  margin-left: 40px;
}

.specs-table:not(:last-child) {
  margin-bottom: 40px;
}

.st-row {
  padding: 11px 7px;
  font-size: 18px;
  color: #141414;
}

.st-row:not(:last-child) {
  border-bottom: 1px solid #d2d2d2;
}

.st-label {
  padding-right: 10px;
  box-sizing: border-box;
}

.st-label:not(:last-child) {
  width: 50%;
  float: left;
}

.st-value {
  width: 50%;
  float: right;
}

.p-carousel {
  padding: 80px 10px 70px;
  text-align: center;
  /* background: #ebecf0; */
}

.p-carousel > h2 {
  margin-bottom: 40px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 50px;
  font-style: italic;
  color: #0f5fb1;;
  text-transform: uppercase;
}

.product-form-block {
  padding: 0 10px 70px;
  /* background: #fcfbfe; */
    background: #ebecf0;
}

.product-form-block .wrapper {
  padding-top: 69px;
  max-width: 1740px;
  margin: 0 auto;
  /* border-top: 1px solid #a0a0a0; */
}

.product-form-block .wrapper > h2 {
  margin-bottom: 40px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 50px;
  font-style: italic;
  color: #0f5fb1;;
  text-transform: uppercase;
}

.pf-item:not(:only-child) {
  width: 50%;
  float: left;
}

.product-form {
  margin-right: 40px;
}

.pf-shipping {
  margin-left: 40px;
}

.pf-shipping h6 {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 24px;
  color: #141414;
}

.pf-shipping p {
  line-height: 1.5;
  font-size: 18px;
  color: #141414;
}

.pf-shipping p:not(:last-child) {
  margin-bottom: 1em;
}

.pf-shipping p a {
  color: #0e5e75;
  border-bottom: 1px solid #0e5e75;
  transition: border-bottom .5s;
}

.pf-shipping p a:hover {
  border-color: transparent;
}

.why-us-block {
  padding: 75px 10px 100px;
  background-image: url('/images/certificates-block-bg.jpg');
  background-size: cover;
  background-position: 50% 50%;
}

.wb-body {
  max-width: 1740px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.wb-points {
  width: 29%;
}

.wb-points > div {
  padding-bottom: 11px;
  border-bottom: 1px solid #757575;
}

.wb-points > div:not(:first-child) {
  margin-top: 70px;
}

.wb-points > div span:first-child {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  margin-right: 22px;
}

.wb-points > div span:last-child {
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
}

.wb-pic {
  width: 32%;
}

.wb-pic img {
  width: 100%;
  display: block;
}

.facility-carousel-cont {
  padding: 50px 10px 100px;
}

.faq-block {
  position: relative;
  padding: 35px 10px;
  margin: 45px 0 25px;
}

.faq-block .tb-pattern-l {
  opacity: .2;
}

.faq-block .tb-pattern-r {
  opacity: .2;
}

.certificates-block .tb-pattern-l {
  left: -100px;
  opacity: 0.4;
}
.faq-block .wrapper {
  max-width: 1740px;
  margin: 0 auto;
  column-count: 2;
  column-gap: 3.6%;
}

.faq-item {
  margin-bottom: 30px;
  break-inside: avoid-column;
}

.faq-item a {
  margin-bottom: 22px;
  padding: 2% 7% 2% 5%;
  font-weight: 700;
  font-size: 24px;
  color: #161925;
  background: #f0f0f0;
  border-radius: 15px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 89%;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.faq-item a:hover {
  background: #14549931;
}
.faq-item a::after {
  content: '';
  display: block;
  background-image: url(/images/icons/dropdown.png);
  background-repeat: no-repeat;
  position: absolute;
  float: right;
  top: 40%;
  right: 1em;
  color: #7288a2;
  padding: 5px;
  width: 5px;
  height: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 0;
  /* text-align: center; */
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.faq-item a.active::after {
  transform: rotate(180deg);
  opacity: 0.5;
  top: 30%;
}

.faq-descr {
  padding: 0 26px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  clear: both;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.faq-descr.active {
  opacity: 1;
  padding: 1rem;
  max-height: 100%;
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.faq-descr p {
  line-height: 1.2;
  font-size: 18px;
  color: #161925;
}

.faq-descr p:not(:last-child) {
  margin-bottom: 1em;
}

.page-err {
  text-align: center;
  padding: 90px 10px;
}

.page-err * {
  margin-bottom: 20px;
}

.page-err a {
  color: #0e5e75;
  border-bottom: 1px solid #0e5e75;
  transition: border-bottom .5s;
}

.page-err a:hover {
  border-color: transparent;
}

.search-block {
  padding: 50px 10px;
}

.empty-search-criteria {
  text-align: center;
  font-size: 24px;
  color: rgb(211, 81, 81);
}

.nothing-found {
  text-align: center;
  font-size: 24px;
}

.cross-refference-block {
  padding: 60px 10px;
}

.cross-refference-block h2 {
  margin-bottom: 40px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 40px;
  font-style: italic;
  color: #213b60;
  text-align: center;
  text-transform: uppercase;
}

.crb-items {
  max-width: 1740px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}

.crb-item {
  margin-right: -1px;
  flex-grow: 1;
  border: 1px solid #c7cfdc;
}

.crb-item:first-child {
  border-radius: 15px 0 0 15px;
}

.crb-item:last-child {
  border-radius: 0 15px 15px 0;
}

.crb-item h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-style: italic;
  color: #213b60;
  text-transform: uppercase;
  padding: 16px 35px;
  border-bottom: 1px solid #d1d5e0;
}

.crb-body {
  padding: 16px 35px;
}

.crb-body p:not(:last-child) {
  margin-bottom: 1em;
}

.fancybox-thumbs {
  top: auto !important;
  width: auto !important;
  bottom: 0 !important;
  left: 0 !important;
  right : 0 !important;
  height: 95px !important;
  padding: 10px 10px 5px 10px !important;
  box-sizing: border-box !important;
  background: rgba(0, 0, 0, 0.3) !important;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 0 !important;
  bottom: 95px !important;
}

.parts-ref-search div{
  width: auto;
  max-width: 350px;
  padding-bottom: 30px;			
}

.parts-ref-search input{
  width: calc(100% - 20px);
  padding: 10px;		
  border: 1px solid #B9B8BD;
  border-radius: 5px;
  background: url(/images/icons/search.png) 98% 50% no-repeat;	 		
}

.search-part{
  text-align: center;
  padding: 50px 0;
  font-size: 14pt;			
}

.search-part font{
  color: #145499;	
}

.parts-ref table{
  border: 0;
  background-color: #668db7;		
}

.parts-ref td{
  background-color: #FCFBFE;
  text-align: center;
  padding: 10px;			
}

.parts-ref td.parts-header{
  background-color: #145499;
  color: #FFF;		
}

@media (max-width: 1860px) {
  .top-menu a:not(:first-child) {
    margin-left: 17px;
  }

  .top-menu a:not(:last-child) {
    margin-right: 17px;
  }
}

@media (max-width: 1800px) {
  .top-menu a:not(:first-child) {
    margin-left: 10px;
  }

  .top-menu a:not(:last-child) {
    margin-right: 10px;
  }
}

@media (max-width: 1700px) {
  .top-menu a:not(:first-child) {
    margin-left: 9px;
  }

  .top-menu a:not(:last-child) {
    margin-right: 9px;
  }
}

@media (max-width: 1725px) {
  .pi-title:not(:only-child) {
    width: calc(100% - 300px);
  }

  .pi-full-descr:not(:only-child) {
    max-width: calc(100% - 300px);
  }
}

@media (max-width: 1685px) {
  .top-menu a {
    font-size: 17px;
  }
}

@media (max-width: 1590px) {
  .logo {
    left: 10px;
  }

  .par-txt {
    width: 49%;
  }

  .par-media {
    width: 49%;
  }

  .par-txt > h3 {
    font-size: 20px;
  }

  .par-txt > h2 {
    font-size: 30px;
  }
}

@media (max-width: 1540px) {
  .product-form {
    margin-right: 15px;
  }

  .pf-shipping {
    margin-left: 15px;
  }
}

@media (max-width: 1500px) {
  .tb-shadow-title {
    top: -20px;
    font-size: 100px;
  }
}

@media (max-width: 1490px) {
  .top-menu a {
    font-size: 15px;
  }
}

@media (max-width: 1440px) {
  .tb-bg-blue {
    height: 200px;
  }

  .title-block h1 {
    font-size: 60px;
  }
}

@media (max-width: 1430px) {
  .pi-title:not(:only-child) {
    margin-bottom: 30px;
    float: none;
    width: auto;
  }

  .pi-inquire {
    float: none;
    margin-bottom: 25px;
  }

  .pi-full-descr:not(:only-child) {
    float: none;
    max-width: none;
  }

  .pi-full-descr {
    margin-bottom: 20px;
  }

  .pi-files {
    margin-bottom: 20px;
    margin-right: 0;
    max-width: none;
    float: none;
  }
}

@media (max-width: 1420px) {
  .logo {
    top: 33px;
    max-width: 300px;
  }

  .h-body {
    float: right;
    display: flex;
    flex-direction: column;
    max-width: calc(100% - 320px);
  }
  .search-input {
    width: 275px;
  }
}

@media (max-width: 1400px) {
  .cb-shadow-title {
    top: -18px;
    font-size: 100px;
  }
}

@media (max-width: 1325px) {
  .logo {
    top: 45px;
    max-width: 200px;
  }

  .h-body {
    float: right;
    display: flex;
    flex-direction: column;
    max-width: calc(100% - 220px);
  }
  
}

@media (max-width: 1240px) {
  .logo {
    top: 11px;
  }

  .h-top {
    padding-right: 10px;
    border-bottom: 0;
  }

  .h-bottom {
    display: none;
  }

  .mobile-menu-wrapper {
    display: block;
  }

  .h-phone {
    font-size: 20px;
  }

  .header .socials a:not(:last-child) {
    margin-right: 5px;
  }
  .h-top > div:not(:last-child) {
    margin-right: 0%;
}
}

@media (max-width: 1190px) {
  .thumbs a {
    width: 23.7%;
  }
}

@media (max-width: 1145px) {
  .cb-title h2 {
    font-size: 55px;
  }

  .cb-shadow-title {
    top: -28px;
  }

  .certificates-block {
    padding: 49px 10px 35px;
  }
}

@media (max-width: 1135px) {
  .search-input {
    width: 175px;
  }
}

@media (max-width: 1110px) {
  .pps-item:not(:only-child) {
    width: auto;
    float: none;
  }

  .pps-item:first-child .wrapper {
    margin-right: 0;
  }

  .pps-item:last-child .wrapper {
    margin-left: 0;
  }
}

@media (max-width: 1100px) {
  .crb-items {
    flex-wrap: wrap;
  }

  .crb-item {
    margin: 0 .5% 20px;
    box-sizing: border-box;
    width: 49%;
    flex-grow: unset;
  }

  .crb-item:first-child,
  .crb-item:last-child {
    border-radius: 0;
  }
}

@media (max-width: 1080px) {
  .why-block {
    padding: 50px 10px;
  }

  .wb-body {
    flex-direction: column;
  }

  .wb-points {
    width: auto;
    text-align: center;
  }

  .wb-points > div:not(:first-child) {
    margin-top: 0;
  }

  .wb-points > div {
    display: inline-block;
    margin-top: 0;
    border: none;
    margin: 0 0 20px;
  }

  .wb-pic {
    max-width: 400px;
    margin: 0 auto;
    width: auto;
  }
}

@media (max-width: 1035px) {
  /* .h-top div:nth-child(3) {
    display: none;
    margin: 0;
  } */

  .h-top > div:not(:last-child) {
    margin-right: 0;
  }
}

@media (max-width: 1015px) {
  .cb-title {
    float: none;
    margin-bottom: 20px;
  }

  .cb-quote {
    float: none;
    margin-bottom: 20px;
  }

  .breadcrumbs {
    padding-left: 18px;
  }

  .faq-block {
    margin-top: 0;
  }
}

@media (max-width: 1000px) {
  .pi-media:not(:only-child) {
    float: none;
    width: auto;
  }

  .pi-descr:not(:only-child) {
    float: none;
    width: auto;
  }
}

@media (max-width: 900px) {
  .thumbs a {
    width: 32%;
  }
}

@media (max-width: 870px) {
  .product-form-block {
    text-align: center;
  }

  .pf-item:not(:only-child) {
    width: auto;
    float: none;
  }

  .pf-item:not(:last-child) {
    margin-bottom: 30px;
  }

  .pf-shipping {
    margin-left: 0;
  }

  .product-form {
    margin-right: 0;
  }
}

@media (max-width: 800px) {
  .tb-shadow-title {
    top: -15px;
    font-size: 70px;
  }

  .text-block h1 {
    font-size: 45px;
  }

  .title-block {
    background-position: 50% 50%;
  }

  .title-block h1 {
    font-size: 45px;
  }

  .tb-bg-blue {
    opacity: .8;
    margin-left: 0;
  }
}

@media (max-width: 775px) {
  .paragraph-cont {
    margin: 40px 0 30px;
  }

  .h-phone {
    display: none;
  }

  .par-txt {
    float: none;
    width: 100%;
  }

  .par-txt:not(:last-child) {
    margin-bottom: 30px;
  }

  .par-media {
    float: none;
    width: 100%;
  }

  .par-media:not(:last-child) {
    margin-bottom: 30px;
  }

  .welcome-block {
    padding: 60px 0;
  }
}

@media (max-width: 750px) {
  .faq-block .wrapper {
    column-count: 1;
    column-gap: 0;
  }
}

@media (max-width: 690px) {
  .cb-shadow-title {
    display: none;
  }

  .cb-title h2 {
    font-size: 30px;
  }

  .cb-items a {
    margin: 0 3% 40px;
    width: 44%;
  }
}

@media (max-width: 680px) {
  .tb-pattern-l {
    display: none;
  }

  .tb-pattern-r {
    display: none;
  }

  .f-item {
    width: 98%;
  }

  .facility-carousel-cont {
    padding: 0 10px 30px;
  }

  .text-block {
    margin-bottom: 30px;
  }
}

@media (max-width: 650px) {
  .thumbs a {
    width: 48.7%;
  }

  .why-us-block {
    padding: 45px 10px 40px;
  }

  .thumbs a {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .home-thumbs .thumbs .wrapper {
    margin: 0;
  }
}

@media (max-width: 600px) {
  .tb-shadow-title {
    display: none;
  }

  .st-row:not(:last-child) {
    border-bottom: none;
  }

  .pp-specs {
    padding: 47px 10px 42px;
  }

  .st-label:not(:last-child) {
    display: inline-block;
    float: none;
    width: auto;
    font-weight: 700;
  }

  .st-value {
    float: none;
    width: auto;
  }
}

@media (max-width: 520px) {
  .h-top > div:nth-child(2) {
    display: none;
  }

  .mobile-search {
    display: block;
  }

  .cb-title h2 {
    font-size: 25px;
  }
}

@media (max-width: 515px) {
  .crb-item {
    width: 99%;
  }
}

@media (max-width: 490px) {
  .wb-points > div span:last-child {
    font-size: 18px;
  }
  .mss-image-item {
    max-width: 200px;
    max-height: 200px;
}
}

@media (max-width: 435px) {
  .cb-items a {
    width: 94%;
  }
}
