@charset "UTF-8";
body {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  position: relative;
  font-style: normal;
  font-size: 16px;
  color: #1A1B26;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  --duration: 300ms;
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --bounce-out: cubic-bezier(0.34, 1.56, 0.64, 1);
}
body:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 40;
  background: #000;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all ease 0.5s;
}
body.search-open:after {
  opacity: 0.7;
  visibility: visible;
}
body.search-open .search-button .search-icon {
  opacity: 0;
  pointer-events: none;
}
body.search-open .search-button .search-hamburger {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
body.search-open nav.search {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0px);
}

h1 {
  font-size: 44px;
  font-weight: 800;
}

h2 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 800;
}

h3 {
  font-size: 28px;
  font-weight: 800;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

h5 {
  font-size: 16px;
  font-weight: 700;
}

p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

section {
  margin-bottom: 70px;
}

blockquote {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  font-style: italic;
  border-left: 3px solid #232E63;
}

p a {
  font-weight: 700;
  color: #2f4486;
}
p a:hover {
  color: #232E63;
}

.icon-doc {
  background: url("assets/images/icon-doc.svg");
  height: 22px;
  width: 22px;
  position: relative;
  vertical-align: middle;
  display: inline-block;
}

.sidebar-button {
  width: 100%;
  padding: 17px 20px;
  background: #232E63;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  border-radius: 10px;
  text-transform: uppercase;
  margin-bottom: -10px;
  position: relative;
  z-index: 2;
  text-decoration: none;
}
.sidebar-button:hover, .sidebar-button:focus {
  outline: none;
  text-decoration: none;
  color: #fff;
}
.sidebar-button.active {
  border-radius: 10px 10px 0 0;
  color: #fff;
}
.sidebar-button.active .arrow:before {
  transform: rotate(-45deg);
}
.sidebar-button.active .arrow:after {
  transform: rotate(45deg);
}
.sidebar-button .arrow {
  display: block;
  width: 10px;
  position: absolute;
  right: 30px;
  top: 26px;
}
.sidebar-button .arrow:before {
  position: absolute;
  content: "";
  display: block;
  height: 2px;
  width: 10px;
  background: #fff;
  transform: rotate(45deg);
}
.sidebar-button .arrow:after {
  left: 7px;
  position: absolute;
  content: "";
  display: block;
  height: 2px;
  width: 10px;
  background: #fff;
  transform: rotate(-45deg);
}

.video-play-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 250px;
  right: 50px;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 24px 14px 1px 38px;
}
.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  border: 2px solid #fff;
  background: #232E63;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #232E63;
  box-shadow: 0 0 30px #fff;
  border-radius: 50%;
  transition: all 200ms;
}
.video-play-button.active:before {
  visibility: hidden;
  animation-play-state: paused;
}
.video-play-button.active:after {
  background-color: #232E63;
}
.video-play-button:hover:before {
  background-color: #B22029;
}
.video-play-button:hover:after {
  background-color: #B22029;
}
.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 22px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

aside.catalogue-sidebar {
  max-width: 310px;
}
aside.catalogue-sidebar .image-holder {
  position: relative;
  display: inline-block;
}
aside.catalogue-sidebar .download-icon {
  position: absolute;
  top: 0;
  right: 0;
  color: #232E63;
}

aside.sidebar {
  width: 100%;
  max-width: 300px;
  float: right;
}
aside.sidebar .menu {
  position: relative;
  margin: 0 0 15px;
  background: #E2EDF9;
  box-shadow: 0px 4px 15px rgba(0, 80, 130, 0.08);
  border-radius: 6px;
  max-width: 500px;
  border: none;
  padding: 20px 20px 33px 35px;
}
aside.sidebar .menu li {
  list-style: none;
}
aside.sidebar .menu li a {
  display: block;
  border-radius: 8px;
  position: relative;
  font-weight: 600;
  text-decoration: underline;
  border: none;
  padding: 10px 15px 10px 22px;
  transition: all ease 0.3s;
  color: #1A1B26;
}
aside.sidebar .menu li a:before {
  content: "";
  position: absolute;
  height: 6px;
  width: 6px;
  left: 0px;
  top: 20px;
  background: #fff;
  border-radius: 1px;
}
aside.sidebar .menu li a.active:before {
  background: #2f4486;
}

.theme-color {
  color: #2f4486;
}

.theme-main {
  color: #2f4486;
}

.theme-red {
  color: #B22029;
}

.theme-green {
  color: #05894A;
}

.theme-yellow {
  color: #FFA930;
}

.theme-purple {
  color: #8060A9;
}

.theme-orange {
  color: #FF6B00;
}

.social-links a {
  color: #9799A1;
  display: inline-block;
  margin-right: 5px;
}
.social-links a:hover {
  color: #232E63;
}

.table {
  font-size: 14px;
}
.table .table {
  margin-bottom: 0;
}

.table > :not(:last-child) > :last-child > * {
  border: 2px solid #232E63;
}

.table-hover > tbody > tr:hover {
  background: #F0F4F9;
  --bs-table-accent-bg: #F0F4F9;
}

.title.invert {
  color: #fff;
}
.title sup {
  font-size: 0.5em;
}
.title .custom-button-link {
  margin-left: 15px;
  font-size: 16px;
}
.title .custom-button-link.invert {
  color: #fff;
}

.description {
  font-size: 22px;
}
.description.description-md {
  font-size: 18px;
}
.description.invert {
  color: #fff;
}

.title-line {
  height: 3px;
  width: 40px;
  background: #2f4486;
  margin-bottom: 30px;
  margin-top: 5px;
}
.title-line.title-line-sm {
  height: 3px;
  margin-bottom: 20px;
  width: 15px;
}

.info {
  max-width: 1200px;
}
.info.invert {
  color: #fff;
}

.text-center .info {
  margin: 0 auto;
}
.text-center .description {
  margin: 0 auto;
}

.list-custom ul {
  padding-left: 15px;
  list-style: none;
}
.list-custom ul li {
  margin-bottom: 10px;
}
.list-custom ul li:before {
  content: "•";
  color: #2f4486;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.list-custom ul li a {
  color: #1A1B26;
}
.list-custom ul li a:hover {
  color: #232E63;
}

.image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 6px;
}

.search-button {
  vertical-align: top;
  border: none;
  cursor: pointer;
  position: relative;
  text-align: center;
  background: #fff;
  border-radius: 6px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  display: inline-block;
  color: #2f4486;
  font-size: 18px;
  margin-top: 10px;
}
.search-button .search-icon {
  opacity: 1;
  pointer-events: all;
}
.search-button .search-hamburger {
  opacity: 0;
  visibility: hidden;
  display: block;
  width: 18px;
  height: 18px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  left: 16px;
  pointer-events: none;
  background: linear-gradient(45deg, transparent 45%, #2f4486 46%, #2f4486 55%, transparent 56%), linear-gradient(-45deg, transparent 45%, #2f4486 46%, #2f4486 55%, transparent 56%);
}

.phone-button {
  margin-top: 22px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-right: 20px;
}
.phone-button i {
  display: inline-block;
  margin-right: 5px;
  color: #fff;
}

.clean-button {
  visibility: hidden;
  pointer-events: none;
}
.clean-button.active {
  pointer-events: all;
  visibility: visible;
}

.custom-button {
  vertical-align: top;
  cursor: pointer;
  position: relative;
  z-index: 1;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  padding: 16px 20px 15px;
  border-radius: 5px;
  text-decoration: none;
  background: transparent;
  -webkit-transition: all ease 0.1s;
  -moz-transition: all ease 0.1s;
  -o-transition: all ease 0.1s;
  transition: all ease 0.1s;
  min-width: 170px;
  line-height: 17px;
  font-weight: 600;
  border: none;
}
.custom-button.custom-button-arrow.custom-button-arrow-main {
  color: #fff;
}
.custom-button.custom-button-arrow.custom-button-arrow-main:after {
  background: #232E63;
}
.custom-button.custom-button-arrow.custom-button-arrow-white {
  color: #fff;
}
.custom-button.custom-button-arrow.custom-button-arrow-white:after {
  background: #fff;
}
.custom-button.custom-button-arrow span {
  display: inline-block;
  transition: transform var(--duration) var(--ease-out);
  transition-timing-function: var(--bounce-out);
}
.custom-button.custom-button-arrow:after {
  content: "";
  border-radius: 6px;
  height: 100%;
  width: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 0 50%, 0% 0%);
  transition: transform var(--duration) var(--ease-out), clip-path var(--duration) var(--ease-out);
}
.custom-button.custom-button-arrow:hover span {
  transform: translateX(18px);
}
.custom-button.custom-button-arrow:hover:after {
  -webkit-clip-path: polygon(88% 0%, 100% 50%, 88% 100%, 0% 100%, 12% 50%, 0% 0%);
  clip-path: polygon(88% 0%, 100% 50%, 88% 100%, 0% 100%, 12% 50%, 0% 0%);
  transform: translateX(10%);
  transition-timing-function: var(--bounce-out);
}
.custom-button i {
  margin: 0 5px;
}
.custom-button:hover, .custom-button:focus {
  text-decoration: none;
}
.custom-button.custom-button-lg {
  min-width: 220px;
  line-height: 20px;
  padding: 20px 35px;
}
.custom-button.custom-button-md {
  font-size: 16px;
  min-width: 220px;
  padding: 22px 20px 20px;
}
.custom-button.custom-button-sm {
  min-width: 90px;
}
.custom-button.custom-button-xs {
  font-size: 13px;
  min-width: 80px;
  padding: 12px 20px 11px;
}
.custom-button.custom-button-main {
  position: relative;
  background: #232E63;
  color: #fff;
}
.custom-button.custom-button-main:disabled {
  opacity: 0.4;
}
.custom-button.custom-button-main:hover, .custom-button.custom-button-main:focus {
  background: #2f4486;
  text-decoration: none;
  color: #fff;
}
.custom-button.custom-button-light {
  position: relative;
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}
.custom-button.custom-button-light:hover, .custom-button.custom-button-light:focus {
  color: #fff;
  background: transparent;
  text-decoration: none;
  box-shadow: inset 0 0 0 2px #fff;
}
.custom-button.custom-button-sec {
  position: relative;
  background: #e2edf9;
  color: #1A1B26;
}
.custom-button.custom-button-sec:hover, .custom-button.custom-button-sec:focus {
  background: #dfe4ed;
  color: #1A1B26;
  text-decoration: none;
}
.custom-button.custom-button-white {
  background: #fff;
  text-decoration: none;
  color: #232E63;
}
.custom-button.custom-button-white:hover, .custom-button.custom-button-white:focus {
  background: #fff;
  text-decoration: none;
  color: #232E63;
}

.custom-button-link {
  font-weight: 600;
  display: inline-block;
  background: transparent;
  border: none;
  color: #2f4486;
}
.custom-button-link span {
  border-bottom: 1px solid #2f4486;
}
.custom-button-link:hover {
  color: #232E63;
}
.custom-button-link.invert {
  color: #fff;
}
.custom-button-link.invert span {
  border-bottom: 1px solid #fff;
}
.custom-button-link.invert:hover {
  color: #fff;
}

.convergine-wrapper {
  width: 280px;
  font-size: 14px;
  margin-top: -20px;
  float: right;
  display: table;
  color: #1A1B26;
}
.convergine-wrapper a span {
  text-decoration: underline;
}
.convergine-wrapper .left-block {
  width: calc(100% - 60px);
  float: none;
  display: table-cell;
  vertical-align: middle;
  font-weight: 400;
}
.convergine-wrapper .left-block a {
  color: #1A1B26;
  text-transform: none;
  display: block;
  text-decoration: none;
}
.convergine-wrapper .left-block a:hover {
  color: #232E63;
}
.convergine-wrapper .right-block {
  width: 55px;
}
.convergine-wrapper .right-block a {
  text-decoration: none;
  margin-top: 0;
  display: block;
  position: relative;
}

.invert .slick-arrow {
  background: #e2edf9;
  color: #9799A1;
}
.invert .slick-arrow svg path {
  fill: #9799A1;
}
.invert .slick-arrow:hover svg path {
  fill: #fff;
}

.invert-light .slick-arrow {
  background: #fff;
  color: #2f4486;
}
.invert-light .slick-arrow svg path {
  fill: #2f4486;
}
.invert-light .slick-arrow:hover svg path {
  fill: #fff;
}

.invert-dark .slick-arrow {
  background: #e2edf9;
  color: #9799A1;
}
.invert-dark .slick-arrow svg path {
  fill: #355FBE;
}
.invert-dark .slick-arrow:hover svg path {
  fill: #fff;
}
.invert-dark.slider {
  width: calc(100% + 30px);
  min-height: 205px;
}
.invert-dark.slider .slider-testimonials {
  opacity: 0;
  transition: all ease 1s;
  transition-delay: 1s;
}
.invert-dark.slider .slider-testimonials .slick-dots li.slick-active button {
  background: #fff;
}
.invert-dark.slider .slider-testimonials .slick-dots li button {
  background: rgba(255, 255, 255, 0.3);
}
.invert-dark.slider.initialized .slider-testimonials {
  opacity: 1;
}
.invert-dark.slider .slick-dots {
  bottom: -50px;
}
.invert-dark.slider .slick-dots li.slick-active button {
  background: #2f4486;
}
.invert-dark.slider .slick-dots li button {
  background: rgba(44, 86, 182, 0.3);
}
.invert-dark svg path {
  fill: #2f4486;
}

.invert.slider,
.invert-light.slider {
  width: calc(100% + 30px);
}
.invert.slider .loader-holder,
.invert-light.slider .loader-holder {
  width: calc(100% + 60px);
  margin-left: -30px;
}
.invert.slider .slick-list,
.invert-light.slider .slick-list {
  padding: 0 0 30px;
}
.invert.slider .slick-track,
.invert-light.slider .slick-track {
  margin-left: 0;
  margin-right: 0;
}
.invert.slider .slick-dots,
.invert-light.slider .slick-dots {
  text-align: left;
  padding-left: 15px;
  bottom: 10px;
}
.invert.slider .slick-dots li.slick-active button,
.invert-light.slider .slick-dots li.slick-active button {
  background: #2f4486;
}
.invert.slider .slick-dots li button,
.invert-light.slider .slick-dots li button {
  background: rgba(44, 86, 182, 0.3);
}

.slick-arrow {
  top: calc(50% - 20px);
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 6px;
  text-align: center;
  line-height: 40px;
  border: none;
  z-index: 10;
  color: #fff;
}
.slick-arrow:hover {
  color: #fff;
  border-color: #2f4486;
  background-color: #2f4486;
}
.slick-arrow:before {
  content: none !important;
}
.slick-arrow i {
  font-size: 22px;
}
.slick-arrow.slick-prev {
  left: -100px;
}
.slick-arrow.slick-next {
  right: -100px;
}

.slick-dots {
  bottom: 60px;
}
.slick-dots li {
  margin: 0 8px;
  padding: 0;
  color: #fff;
  background-color: transparent;
  height: 18px;
  width: 18px;
  border-radius: 1px;
}
.slick-dots li button {
  position: absolute;
  top: 2px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-indent: -9999999px;
  color: #fff;
  font-size: 20px;
  border-radius: 5px;
  padding: 0;
  width: 18px;
  height: 2px;
  border: none;
  background: #fff;
}
.slick-dots li button:before {
  content: none;
}
.slick-dots li.slick-active button {
  border-color: #fff;
  background-color: #2f4486;
}

.main-wrapper {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.tags {
  margin: 0;
  padding: 0;
}
.tags li {
  list-style: none;
  display: inline-block;
}
.tags li:not(:last-child) {
  margin-right: 15px;
}
.tags li a {
  color: #1A1B26;
  font-style: italic;
  font-size: 13px;
  display: inline-block;
}
.tags li a:hover {
  color: #232E63;
}

.posts {
  position: relative;
}
.posts .post {
  text-align: left;
  height: 460px;
  width: 460px;
  margin: 20px auto 40px;
  max-width: 100%;
  padding: 0 45px 20px;
  background: #FFFFFF;
  box-shadow: 0px 10px 15px rgba(0, 23, 37, 0.15);
  border-radius: 6px;
  display: block;
}
.posts .post.post-simple {
  width: 100%;
  height: auto;
  margin: 0 0 20px;
  background: transparent;
  box-shadow: none;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #e2edf9;
}
.posts .post.post-simple .post-title {
  min-height: 20px;
}
.posts .post.post-simple .post-date:after {
  content: none;
}
.posts .post .post-date {
  position: relative;
  font-size: 12px;
}
.posts .post .post-date:after {
  content: "";
  display: block;
  width: 10px;
  margin: 10px 0 20px;
  height: 2px;
  background: #2f4486;
}
.posts .post .image-holder {
  display: block;
}
.posts .post .content-holder {
  display: block;
}
.posts .post .post-title {
  min-height: 130px;
}
.posts .post .post-title a {
  color: #1A1B26;
  line-height: 1.4;
  text-decoration: none;
  border-bottom: 1px solid #1A1B26;
}
.posts .post .post-title a:hover {
  color: #2f4486;
  border-color: #2f4486;
}

.studies {
  position: relative;
}
.studies .study {
  display: block;
  color: #1A1B26;
  position: relative;
  background: #e2edf9;
  padding: 10px;
  border-radius: 6px;
  min-height: 175px;
  padding-left: 160px;
  text-decoration: none;
  margin-bottom: 20px;
}
.studies .study:hover {
  box-shadow: 0px 10px 20px rgba(0, 23, 37, 0.15);
}
.studies .study .image-holder {
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 6px;
  width: 160px;
  height: 160px;
  overflow: hidden;
}
.studies .study .title-line {
  width: 10px;
  height: 2px;
  margin-bottom: 20px;
  background: #2f4486;
}
.studies .study .study-title {
  text-decoration: underline;
}
.studies .study .content-holder {
  height: 100%;
  text-decoration: none;
  padding: 25px 30px 0;
}

.products {
  position: relative;
}
.products.slider .product {
  margin-bottom: 40px;
  margin-top: 20px;
}
.products .product {
  text-align: left;
  height: 410px;
  width: 460px;
  position: relative;
  margin: 0 auto 30px;
  max-width: 100%;
  padding: 10px;
  background: #FFFFFF;
  border-radius: 6px;
  display: block;
  color: #1A1B26;
  text-decoration: none;
  box-shadow: 0px 10px 15px rgba(0, 23, 37, 0.15);
}
.products .product.product-sm {
  height: 380px;
  width: 340px;
}
.products .product.product-sm .content-holder {
  padding: 10px 15px;
}
.products .product.product-sm .product-title {
  font-size: 18px;
}
.products .product .dimensions {
  font-size: 14px;
  position: absolute;
  bottom: 20px;
  padding-right: 20px;
  line-height: 1.3;
}
.products .product .icon-new {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 2;
}
.products .product:hover {
  box-shadow: 0px 10px 15px rgba(0, 23, 37, 0.2);
}
.products .product:hover .image-holder img {
  transform: scale(1.05);
}
.products .product:hover .product-title span {
  color: #2f4486;
  border-color: #2f4486;
}
.products .product .image-holder {
  display: block;
  background: #e2edf9;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #e2edf9;
}
.products .product .image-holder img {
  transition: all ease 0.5s;
}
.products .product .image-holder:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.65) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  top: 0;
  opacity: 0.05;
  pointer-events: none;
}
.products .product .image-holder:after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 80%;
  height: 4px;
  left: 10%;
  background: #e2edf9;
  border-radius: 0px 0px 6px 6px;
}
.products .product .content-holder {
  padding: 15px 50px;
  display: block;
}
.products .product .product-title {
  line-height: 1.4;
}
.products .product .product-title span {
  color: #1A1B26;
  text-decoration: none;
  border-bottom: 1px solid #1A1B26;
}
.products .product .product-title span:hover {
  color: #2f4486;
  border-color: #2f4486;
}

.services {
  position: relative;
}
.services .service {
  text-align: left;
  position: relative;
  display: block;
  height: 240px;
  width: 100%;
  max-width: 700px;
  margin: 20px auto 40px;
  background: #FFFFFF;
  box-shadow: 0px 10px 15px rgba(0, 23, 37, 0.15);
  border-radius: 6px;
  color: #1A1B26;
  text-decoration: none;
}
.services .service:hover .service-title span {
  color: #2f4486;
  border-color: #2f4486;
}
.services .service .image-holder {
  height: 240px;
  position: relative;
  border-radius: 6px;
  margin: 0;
  display: block;
  max-width: 350px;
  background: #e2edf9;
  box-shadow: 0 0 0 1px #e2edf9;
}
.services .service .image-holder:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.65) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#a6000000",GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  top: 0;
  opacity: 0.05;
  pointer-events: none;
}
.services .service .content-holder {
  height: 240px;
  max-width: 100%;
  padding: 30px 40px 20px 30px;
  display: block;
  position: relative;
}
.services .service .service-title {
  line-height: 1.4;
}
.services .service .service-title span {
  color: #1A1B26;
  text-decoration: none;
  border-bottom: 1px solid #1A1B26;
}
.services .service .service-title span:hover {
  color: #2f4486;
  border-color: #2f4486;
}
.services .service .custom-button {
  position: absolute;
  bottom: 30px;
}

.featured-title {
  border-left: 3px solid #232E63;
  padding-left: 15px;
}

.documents .document {
  display: block;
  background: #e2edf9;
  padding: 0 80px 0 30px;
  max-width: 460px;
  border-radius: 6px;
  color: #1A1B26;
  text-decoration: none;
  position: relative;
  margin-bottom: 30px;
}
.documents .document.document-sm .d-table-cell {
  height: 100px;
}
.documents .document.document-sm h5 {
  margin-bottom: 0;
}
.documents .document:hover {
  background: radial-gradient(101% 202% at 50% 160%, #232E63 0%, #2f4486 100%);
}
.documents .document:hover .icon-holder .icon-doc {
  background: url("assets/images/icon-doc-invert.svg");
}
.documents .document:hover * {
  color: #fff;
}
.documents .document:hover .icon-holder {
  background: #fff;
}
.documents .document:hover .icon-holder svg path {
  fill: #232E63;
}
.documents .document .d-table-cell {
  height: 140px;
}
.documents .document .content-holder {
  padding-right: 50px;
}
.documents .document .icon-holder {
  background: radial-gradient(101% 202% at 50% 160%, #232E63 0%, #2f4486 100%);
  width: 44px;
  height: 44px;
  top: calc(50% - 22px);
  right: 30px;
  padding: 10px 12px;
  border-radius: 6px;
  position: absolute;
}

.ajax-post {
  display: none;
}
.ajax-post.active {
  display: block;
}

.morelink {
  line-height: 1;
  display: block;
  font-weight: 300;
  color: #2f4486;
  border-radius: 5px;
  text-align: left;
  font-size: 16px;
  margin: 10px auto 25px;
  position: relative;
  z-index: 1;
}
.morelink:hover {
  color: #232E63;
}

.morecontent > span {
  display: none;
}

.scroll-top {
  cursor: pointer;
  position: fixed;
  z-index: 999;
  left: 2%;
  bottom: 40px;
  display: block;
  opacity: 0;
  height: 44px;
  width: 44px;
  background: #FFFFFF;
  box-shadow: 0px 4px 15px rgba(0, 80, 130, 0.08);
  border-radius: 6px;
  padding: 8px 10px;
  text-align: center;
  transition: all ease 0.5s;
}
.scroll-top:hover {
  background: #e2edf9;
}
.scroll-top:hover svg {
  -webkit-animation: arrowsRotate 1.5s linear infinite reverse;
  -moz-animation: arrowsRotate 1.5s linear infinite reverse;
  animation: arrowsRotate 1.5s linear infinite reverse;
}
.scroll-top svg {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 12px;
  transition: all ease 0.5s;
}
.scroll-top svg:nth-child(1) {
  top: 15px;
  opacity: 0.7;
  animation-delay: 0.6s;
}
.scroll-top svg:nth-child(2) {
  opacity: 0.4;
  top: 20px;
  animation-delay: 0.4s;
}
.scroll-top svg:nth-child(3) {
  top: 25px;
  opacity: 0.3;
  animation-delay: 0.2s;
}
@keyframes arrowsRotate {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

.testimonials .testimonial:not(.invert) {
  color: #fff;
}
.testimonials .testimonial.invert {
  background: #e2edf9;
  border-radius: 6px;
  margin-bottom: 30px;
}
.testimonials .testimonial.invert:hover {
  background: radial-gradient(71.4% 142.8% at 50% 137.9%, #232E63 0%, #2f4486 100%);
}
.testimonials .testimonial.invert:hover * {
  color: #fff;
}
.testimonials .testimonial.invert .content-holder {
  padding: 50px 45px;
}
.testimonials .testimonial.invert .content {
  font-size: 18px;
  margin-bottom: 15px;
}
.testimonials .testimonial .content-holder {
  max-width: 1050px;
  margin: 0 auto;
}
.testimonials .testimonial .content-holder .description {
  position: relative;
  margin-bottom: 15px;
}
.testimonials .testimonial .content-holder .description em {
  font-style: italic;
  font-weight: 400;
  display: inline-block;
}

.light-bg {
  position: relative;
  padding: 60px 0;
  border-radius: 6px;
  background: #e2edf9;
}

.dark-bg {
  position: relative;
  padding: 60px 0;
  border-radius: 6px;
  background: #232E63;
}
.dark-bg .gradient {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background: linear-gradient(87.29deg, rgba(35, 46, 99, 0.2) 0%, rgba(5, 137, 74, 0.2) 23.96%, rgba(178, 32, 41, 0.2) 48.44%, rgba(255, 169, 48, 0.2) 75%, rgba(128, 96, 169, 0.2) 100%);
}

select.wpcf7-select {
  width: 100%;
}

select.form-control {
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 5px;
}

.form {
  margin: 30px 0 0;
}
.form .g-recaptcha {
  position: relative;
}
.form .dynamicselect .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -35px;
}
.form .wpcf7-form-control-wrap .select2-container {
  min-width: 100%;
}
.form .wpcf7 .form-field br {
  display: none;
}
.form .wpcf7 form .wpcf7-response-output {
  margin: 0;
}
.form .wpcf7-not-valid-tip {
  font-size: 12px;
  font-weight: 600;
}
.form .note {
  position: absolute;
  font-size: 12px;
  color: #232E63;
}
.form label.error {
  display: block;
  color: #ff0000;
  margin-top: 2px;
  position: relative;
  font-size: 12px;
  z-index: 10;
}
.form .label-placeholder {
  display: block;
  position: absolute;
  color: #1A1B26;
  font-size: 16px;
  pointer-events: none;
  line-height: 21px;
  left: 14px;
  top: 15px;
  z-index: 2;
  transition: all ease 0.2s;
}
.form .form-field {
  margin-bottom: 30px;
  position: relative;
}
.form .form-field.button-holder {
  position: relative;
  margin-bottom: 30px;
}
.form .form-field.button-holder .ajax-loader {
  display: inline-block;
  margin: 0;
  position: absolute;
  vertical-align: top;
  top: 25px;
  z-index: 2;
  left: 38px;
}
.form .form-field br {
  display: none;
}
.form .form-field.error .form-control {
  border-color: #ff000066;
}
.form .form-field.active .label-placeholder {
  top: -20px;
  font-size: 14px;
  color: #05894a;
  font-weight: 700;
}
.form .form-field.active .form-control {
  box-shadow: none;
}
.form .form-field textarea.form-control {
  height: 100px;
}
.form .form-field .form-control {
  font-size: 16px;
  height: 50px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #C8D3DE;
  color: #000;
}
.form .form-field .form-control.error {
  border-color: #ff000066;
}
.form .form-field .form-control:focus {
  outline: none;
  box-shadow: none;
}
.form .form-field .form-control:-webkit-autofill, .form .form-field .form-control:-webkit-autofill, .form .form-field .form-control:-webkit-autofill {
  -webkit-text-fill-color: #1A1B26;
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

label.form-checkbox {
  margin-right: 15px;
  padding-top: 0px;
  line-height: 20px;
  display: inline-block;
  margin-top: 5px;
  font-weight: 200;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 16px;
}
label.form-checkbox strong {
  font-size: 18px;
  font-weight: 500;
}
label.form-checkbox input {
  position: absolute;
  opacity: 0;
  left: 0;
  height: 30px;
  width: 30px;
  top: 0;
}
label.form-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #FAFAFA;
  border-radius: 3px;
  border: 1px solid #BDC3C7;
  transition: all ease 0.2s;
}
label.form-checkbox input:checked ~ .checkmark {
  border-color: #2f4486;
}
label.form-checkbox input:checked ~ .checkmark:after {
  visibility: visible;
  opacity: 1;
  -webkit-transform: rotate(45deg) scale(1);
  -ms-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1);
}
label.form-checkbox .checkmark:after {
  content: "";
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.15s;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid #2f4486;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg) scale(0);
  -ms-transform: rotate(45deg) scale(0);
  transform: rotate(45deg) scale(0);
}

nav.catalog-menu {
  margin-bottom: 20px;
}

nav.catalog-filter .nav-tabs {
  border: none;
  max-width: 340px;
  display: block;
}
nav.catalog-filter .nav-item {
  display: block;
  margin-bottom: 10px;
}
nav.catalog-filter .nav-item .nav-link {
  position: relative;
  font-size: 18px;
  padding: 25px 15px 25px 35px;
  display: block;
  color: #1A1B26;
  font-weight: 700;
  background: #FFFFFF;
  box-shadow: 0px 4px 15px rgba(0, 80, 130, 0.08);
  border-radius: 6px;
  overflow: hidden;
  border: none;
}
nav.catalog-filter .nav-item .nav-link:hover {
  color: #232E63;
}
nav.catalog-filter .nav-item .nav-link:hover .text {
  transform: translateX(10px);
}
nav.catalog-filter .nav-item .nav-link.active {
  color: #fff;
}
nav.catalog-filter .nav-item .nav-link.active:hover {
  color: #fff;
}
nav.catalog-filter .nav-item .nav-link.active .line {
  width: 100%;
}
nav.catalog-filter .nav-item .nav-link .text {
  position: relative;
  display: inline-block;
  z-index: 2;
  transition: transform var(--duration) var(--ease-out);
  transition-timing-function: var(--bounce-out);
}
nav.catalog-filter .nav-item .nav-link .line {
  display: block;
  position: absolute;
  width: 6px;
  height: 100%;
  top: 0;
  left: 0;
  background: #232E63;
}

ul.nav-alphas {
  margin: 0;
  padding: 20px 0;
}
ul.nav-alphas .nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
ul.nav-alphas .nav-item .nav-link {
  color: #232E63;
  text-decoration: underline;
}
ul.nav-alphas .nav-item .nav-link.nav-link-empty {
  color: #9799A1;
  text-decoration: none;
}
ul.nav-alphas .nav-item .nav-link.nav-link-empty:hover {
  border-color: transparent;
}
ul.nav-alphas .nav-item .nav-link.active {
  background: #232E63;
  color: #fff;
  text-decoration: none;
}

.select2-container--default .select2-search--dropdown {
  position: relative;
}
.select2-container--default .select2-search--dropdown input.select2-search__field {
  padding-left: 30px;
  border: 1px solid #C8D3DE;
  height: 40px;
  border-radius: 6px;
}
.select2-container--default .select2-search--dropdown input.select2-search__field:focus {
  outline: none;
}
.select2-container--default .select2-search--dropdown:before {
  color: #9799A1;
  content: "";
  position: absolute;
  top: 10px;
  left: 15px;
  z-index: 2;
  font-family: "fontAwesome";
}
.select2-container--default .select2-results__option {
  font-size: 14px;
  padding-left: 10px;
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #C8D3DE;
  border-radius: 6px;
  padding: 10px 11px;
  height: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
  right: 10px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #1A1B26;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #232E63;
  color: white;
}
.select2-container--default .select2-results__option--selected {
  background: #FAFAFF;
  color: #2f4486;
}

nav.filter {
  padding: 0;
  margin-bottom: 20px;
  border-radius: 6px;
  font-weight: 700;
}
nav.filter .form-control {
  height: 50px;
}
nav.filter select.form-control {
  background-position-y: 12px;
}
nav.filter .form-label {
  font-weight: 700;
}
nav.filter .form-checkbox {
  font-weight: 700;
}

nav.breadcrumb-holder {
  margin: 20px 0 30px;
  padding: 0;
  border: none;
}
nav.breadcrumb-holder .breadcrumb {
  margin: 0;
  padding: 0;
}
nav.breadcrumb-holder .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "";
  font-size: 14px;
  color: #9799A1;
  font-family: "fontAwesome";
}
nav.breadcrumb-holder .breadcrumb .breadcrumb-item {
  color: #1A1B26;
  font-weight: 600;
  font-size: 14px;
}
nav.breadcrumb-holder .breadcrumb .breadcrumb-item.active {
  color: #2f4486;
}
nav.breadcrumb-holder .breadcrumb .breadcrumb-item a {
  color: #1A1B26;
  font-weight: 600;
  font-size: 14px;
}

nav.search {
  visibility: hidden;
  pointer-events: none;
  transition: all ease 0.5s;
  transform: translateY(-500px);
  width: 100%;
  left: 0;
  right: 0;
  z-index: 98;
  position: fixed;
  margin: 0 auto;
  max-width: 1760px;
}
nav.search .wrapper {
  margin-top: 70px;
  border-radius: 6px;
  padding: 100px 0;
  background: #fff;
}
nav.search .title {
  color: #232E63;
}
nav.search .search-form {
  position: relative;
  max-width: 1180px;
  margin: 20px auto;
}
nav.search .search-icon {
  outline: none;
  border: none;
  background-color: transparent;
  font-size: 22px;
  height: 100%;
  width: 80px;
  position: absolute;
  padding: 20px 30px;
  right: 0;
  bottom: 0;
  color: #2f4486;
  transition: all 0.2s ease-out;
}
nav.search .search-icon:hover {
  color: #232E63;
}
nav.search .search-input {
  display: block;
  height: 80px;
  width: 100%;
  outline: none;
  border: 1px solid #C8D3DE;
  border-radius: 6px;
  font-size: 22px;
  padding: 20px 33px;
  color: #1A1B26;
  background: #fff;
}
nav.search .search-input::placeholder {
  color: #1A1B26;
  opacity: 1;
}
nav.search .search-input:-ms-input-placeholder {
  color: #1A1B26;
}
nav.search .search-input::-ms-input-placeholder {
  color: #1A1B26;
}

body.menu-open {
  height: 100%;
  overflow: hidden;
}
body.menu-open nav.popup-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  z-index: 30;
  transform: translateY(0) scaleY(1);
}
body.menu-open nav.popup-menu .wrapper {
  transform: matrix(1, 0, 0, 1, 0, 0);
}

nav.popup-menu {
  position: fixed;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 100em;
  perspective: 100em;
  min-height: auto;
  padding-top: 0;
  border-radius: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  overflow-y: auto;
  max-width: 280px;
  right: 0;
  transition: all ease 0.5s;
  transform: translateY(0) translateX(280px) scaleY(1);
}
nav.popup-menu .wrapper {
  height: 100%;
  transition: all ease 0.5s;
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
  transform: matrix3d(-0.342021, 0, -0.939692, 0, 0, 1, 0, 0, 1.28947, 0, -0.469331, 0, 0, 0, 0, 1);
}
nav.popup-menu .phone-button {
  padding: 5px 20px;
  font-size: 16px;
  color: #fff;
}
nav.popup-menu .phone-button i {
  color: #fff;
}
nav.popup-menu .social-links {
  padding: 20px 20px 10px;
}
nav.popup-menu .social-links a {
  font-size: 22px;
  margin-right: 15px;
  text-align: center;
  color: #fff;
}
nav.popup-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
nav.popup-menu ul li {
  position: relative;
}
nav.popup-menu ul.menu li.current-menu-item > a {
  color: #fff !important;
}
nav.popup-menu ul.menu > li.current-menu-item > a {
  color: #fff !important;
}
nav.popup-menu ul.menu > li {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: none;
}
nav.popup-menu ul.menu > li.on {
  background: #081a38;
}
nav.popup-menu ul.menu > li.on > a {
  color: #fff;
}
nav.popup-menu ul.menu > li.on > .arrow {
  color: #fff;
}
nav.popup-menu ul.menu > li.on > .arrow:after {
  content: "";
}
nav.popup-menu ul.menu > li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
nav.popup-menu ul.menu > li > a {
  display: block;
  padding: 14px 20px;
  border-bottom: none;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  width: calc(100% - 50px);
  text-transform: uppercase;
}
nav.popup-menu ul.menu > li > ul {
  display: none;
  border-radius: 0;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  visibility: visible;
  opacity: 1;
  box-shadow: none;
  transform: translateY(0);
  background: #fff;
}
nav.popup-menu ul.menu > li > ul li {
  border-left: 1px solid #E9E9E9;
  border-bottom: 1px solid #E9E9E9;
}
nav.popup-menu ul.menu > li > ul li:last-child {
  border-bottom: none;
}
nav.popup-menu ul.menu > li > ul a {
  display: block;
  color: #1A1B26;
  padding: 14px 20px 14px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}
nav.popup-menu .menu-item-has-children .arrow {
  cursor: pointer;
  border: none;
  height: 100%;
  text-align: center;
  padding: 0;
  width: 51px;
  top: 0;
  right: 0;
  color: #fff;
  display: block;
  position: absolute;
  font-size: 24px;
  line-height: 44px;
}
nav.popup-menu .menu-item-has-children .arrow:before {
  content: "";
  height: 30px;
  width: 1px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  left: 0;
  position: absolute;
  top: 10px;
}
nav.popup-menu .menu-item-has-children .arrow:after {
  content: "";
  font-family: "fontAwesome", sans-serif;
  display: inline-block;
}

body.menu-open .menu-button .hamburger {
  background: linear-gradient(45deg, transparent 45%, #fff 46%, #fff 55%, transparent 56%), linear-gradient(-45deg, transparent 45%, #fff 46%, #fff 55%, transparent 56%);
}

.menu-button {
  vertical-align: middle;
  background: transparent;
  position: relative;
  display: inline-block;
  height: 40px;
  width: 30px;
  padding: 10px 0;
  text-align: right;
  max-width: 100%;
}
.menu-button .hamburger {
  display: inline-block;
  margin: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
  background: linear-gradient(to bottom, #fff 19%, transparent 19%, transparent 40%, #fff 41%, #fff 49%, transparent 61%, transparent 83%, #fff 84%);
}

nav.header-menu {
  position: relative;
}
nav.header-menu ul.menu {
  padding: 0;
  margin: 0;
}
nav.header-menu ul.menu > li.columns > ul.sub-menu {
  min-width: 700px;
  width: inherit;
  padding: 5px 0 5px 5px;
}
nav.header-menu ul.menu > li.columns > ul.sub-menu > li {
  display: table;
  width: 33%;
  float: left;
  padding: 5px;
  border-bottom: none;
}
nav.header-menu ul.menu > li.columns > ul.sub-menu > li.current-menu-item > a {
  background: #232E63;
  color: #fff;
}
nav.header-menu ul.menu > li.columns > ul.sub-menu > li > a {
  background: #e2edf9;
  color: #232E63;
  display: table-cell;
  vertical-align: middle;
  height: 50px;
  padding: 5px 15px;
  font-size: 14px;
}
nav.header-menu ul.menu > li {
  display: inline-block;
  position: relative;
}
nav.header-menu ul.menu > li:not(:last-child) {
  margin: 0 40px 0 0;
}
nav.header-menu ul.menu > li.current-page-ancestor:before, nav.header-menu ul.menu > li.current_page_parent:before, nav.header-menu ul.menu > li.current-menu-item:before {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  background-color: #fff;
  top: 0px;
  position: absolute;
}
nav.header-menu ul.menu > li.current-page-ancestor > a, nav.header-menu ul.menu > li.current_page_parent > a, nav.header-menu ul.menu > li.current-menu-item > a {
  color: #fff;
}
nav.header-menu ul.menu > li:focus-within > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}
nav.header-menu ul.menu > li:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}
nav.header-menu ul.menu > li:hover > ul.sub-menu > li {
  opacity: 1;
  transform: scale(1, 1);
}
nav.header-menu ul.menu > li:hover > a {
  color: #fff;
}
nav.header-menu ul.menu > li > a {
  font-weight: 600;
  position: relative;
  padding: 24px 0 20px;
  display: block;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
nav.header-menu ul.menu > li ul.sub-menu {
  padding: 5px;
  margin: 0;
  background: #fff;
  list-style: none;
  border-radius: 0 0 5px 5px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 240px;
  z-index: 10;
  box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.15);
  visibility: hidden;
  opacity: 0;
  -o-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  -o-transition: -o-transform 0.4s, opacity 0.4s;
  -ms-transition: -ms-transform 0.4s, opacity 0.4s;
  -moz-transition: -moz-transform 0.4s, opacity 0.4s;
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  transform: scale(0.9);
  transition: all ease 0.3s;
}
nav.header-menu ul.menu > li ul.sub-menu > li.theme-main a {
  background-color: #232E63;
  color: #fff;
}
nav.header-menu ul.menu > li ul.sub-menu > li.theme-main a:hover {
  background-color: #232E63;
  opacity: 0.8;
}
nav.header-menu ul.menu > li ul.sub-menu > li.theme-red a {
  background-color: #B22029;
  color: #fff;
}
nav.header-menu ul.menu > li ul.sub-menu > li.theme-red a:hover {
  background-color: #B22029;
  opacity: 0.8;
}
nav.header-menu ul.menu > li ul.sub-menu > li.theme-green a {
  background-color: #05894A;
  color: #fff;
}
nav.header-menu ul.menu > li ul.sub-menu > li.theme-green a:hover {
  background-color: #05894A;
  opacity: 0.8;
}
nav.header-menu ul.menu > li ul.sub-menu > li.theme-yellow a {
  background-color: #FFA930;
  color: #fff;
}
nav.header-menu ul.menu > li ul.sub-menu > li.theme-yellow a:hover {
  background-color: #FFA930;
  opacity: 0.8;
}
nav.header-menu ul.menu > li ul.sub-menu > li.theme-purple a {
  background-color: #8060A9;
  color: #fff;
}
nav.header-menu ul.menu > li ul.sub-menu > li.theme-purple a:hover {
  background-color: #8060A9;
  opacity: 0.8;
}
nav.header-menu ul.menu > li ul.sub-menu > li.theme-orange a {
  background-color: #FF6B00;
  color: #fff;
}
nav.header-menu ul.menu > li ul.sub-menu > li.theme-orange a:hover {
  background-color: #FF6B00;
  opacity: 0.8;
}
nav.header-menu ul.menu > li ul.sub-menu:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 10px;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #e2edf9;
  border-left: 8px solid transparent;
}
nav.header-menu ul.menu > li ul.sub-menu > li {
  transition: all ease 0.3s;
}
nav.header-menu ul.menu > li ul.sub-menu li.menu-item-has-children > a:after {
  content: "";
  font-family: "fontAwesome", sans-serif;
  position: absolute;
  top: calc(50% - 10px);
  right: 15px;
}
nav.header-menu ul.menu > li ul.sub-menu ul.sub-menu {
  left: 100%;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  right: 0;
  top: 0;
}
nav.header-menu ul.menu > li ul.sub-menu ul.sub-menu:before {
  top: 22px;
  right: 100%;
  bottom: auto;
  left: auto;
  border-top: 5px solid transparent;
  border-right: 5px solid rgba(255, 255, 255, 0.9);
  border-bottom: 5px solid transparent;
}
nav.header-menu ul.menu > li ul.sub-menu li {
  position: relative;
  margin: 0;
  padding: 5px;
  border-bottom: 1px solid #D7D7D7;
}
nav.header-menu ul.menu > li ul.sub-menu li:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}
nav.header-menu ul.menu > li ul.sub-menu li:focus-within > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}
nav.header-menu ul.menu > li ul.sub-menu li:last-child {
  border-bottom: none;
}
nav.header-menu ul.menu > li ul.sub-menu li a {
  display: block;
  background: #e2edf9;
  color: #232E63;
  border-radius: 6px;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}
nav.header-menu ul.menu > li ul.sub-menu li a:hover {
  background-color: #232E63;
  color: #fff;
  text-decoration: none;
}

nav.footer-menu {
  overflow: hidden;
  margin-bottom: 30px;
}
nav.footer-menu ul.menu {
  padding: 0;
  margin: 0;
}
nav.footer-menu ul.menu > li {
  display: block;
  float: left;
}
nav.footer-menu ul.menu > li:nth-child(1) {
  width: 30%;
}
nav.footer-menu ul.menu > li:nth-child(2) {
  width: 30%;
}
nav.footer-menu ul.menu > li:nth-child(3) {
  width: 20%;
}
nav.footer-menu ul.menu > li:nth-child(4) {
  width: 20%;
}
nav.footer-menu ul.menu > li > a {
  font-weight: 700;
}
nav.footer-menu ul.menu ul {
  margin: 10px 0 0;
  padding: 0;
}
nav.footer-menu ul.menu li {
  list-style: none;
  margin-bottom: 10px;
}
nav.footer-menu ul.menu li.main-item > a {
  font-weight: 700;
}
nav.footer-menu ul.menu li a {
  color: #1A1B26;
}
nav.footer-menu ul.menu li a:hover {
  color: #2f4486;
}

header.main-header {
  position: fixed;
  height: 70px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  background: #232E63;
  z-index: 99;
  border-radius: 0px 0px 6px 6px;
}
header.main-header .logo {
  display: inline-block;
  margin: 7px 0 0;
}

footer.main-footer {
  padding-bottom: 40px;
}
footer.main-footer .footer-logos {
  border-top: 1px solid #E2EDF9;
  border-bottom: 1px solid #E2EDF9;
  padding: 20px 0;
  margin-bottom: 20px;
}
footer.main-footer .footer-logos .footer-logo {
  margin-right: 10px;
}
footer.main-footer .footer-text {
  font-size: 14px;
}
footer.main-footer .footer-text a {
  color: #1A1B26;
  text-decoration: none;
  font-weight: 700;
}
footer.main-footer .footer-text a:hover {
  color: #2f4486;
}

main.main-content {
  display: block;
  position: relative;
  transition: all ease 0.5s;
  padding-top: 73px;
}

section.banner {
  position: relative;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}
section.banner .slick-prev {
  left: 20px;
}
section.banner .slick-next {
  right: 20px;
}
section.banner .title.title-sm {
  font-size: 32px;
}
section.banner.banner-post {
  overflow: visible;
  background: #e2edf9;
}
section.banner.banner-post .image-holder {
  overflow: visible;
  position: relative;
  margin-bottom: -40px;
}
section.banner.banner-post .image-holder:after {
  content: "";
  display: block;
  position: absolute;
  height: 80px;
  width: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.4);
  filter: blur(50px);
  border-radius: 6px;
  transition: all ease 0.2s;
}
section.banner.banner-post .image-holder img {
  border-radius: 6px;
  position: relative;
  z-index: 2;
}
section.banner.banner-post .content-holder {
  padding-left: 120px;
}
section.banner.banner-post .title {
  color: #1A1B26;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 30px;
}
section.banner.banner-post .title a {
  color: #1A1B26;
  text-decoration: none;
  border-bottom: 2px solid #1A1B26;
}
section.banner.banner-post .title a:hover {
  color: #2f4486;
  border-bottom: 2px solid #2f4486;
}
section.banner.banner-post .tags {
  margin-top: 20px;
}
section.banner.banner-post .date {
  position: relative;
  font-size: 12px;
}
section.banner.banner-post .date:after {
  content: "";
  display: block;
  width: 10px;
  margin: 10px 0 20px;
  height: 2px;
  background: #2f4486;
}
section.banner.banner-post .image-holder {
  margin-top: 20px;
}
section.banner.banner-lg {
  height: 560px;
}
section.banner.banner-lg .d-table-cell {
  height: 560px;
}
section.banner.banner-md {
  height: 370px;
}
section.banner.banner-md .d-table-cell {
  height: 370px;
}
section.banner.banner-md.dark-bg {
  padding: 0;
}
section.banner.banner-sm {
  height: 160px;
  padding: 0;
}
section.banner.banner-sm .d-table-cell {
  height: 160px;
}
section.banner.banner-xs {
  height: 300px;
  padding: 0;
}
section.banner.banner-simple {
  overflow: visible;
}
section.banner .icon-holder {
  position: absolute;
  z-index: 9;
  right: 0;
  top: -15px;
  height: 70px;
  width: 70px;
}
section.banner .icon-holder img {
  width: 60px;
}
section.banner .image:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(84.71deg, rgba(6, 46, 102, 0.33) 21.82%, rgba(0, 23, 53, 0.75) 78.55%);
}
section.banner .container {
  position: relative;
  z-index: 2;
}
section.banner .image-holder {
  max-width: 700px;
  max-height: 100%;
  overflow: hidden;
}
section.banner .description {
  max-width: 700px;
}

section.image-section {
  position: relative;
}
section.image-section.right .content-holder {
  margin: 0;
}
section.image-section.right .button-holder {
  width: 100%;
  margin: 20px 0 0;
}
section.image-section.left .content-holder {
  float: right;
  margin: 0;
}
section.image-section.left .button-holder {
  width: 100%;
  float: right;
  margin: 20px 0 0;
}
section.image-section .service {
  background: #fff;
  box-shadow: 0px 10px 20px rgba(0, 23, 37, 0.15);
  border-radius: 6px;
  max-height: 469px;
  overflow: hidden;
}
section.image-section .service .service-content h4 {
  font-size: 16px;
}
section.image-section .service .service-title {
  margin-bottom: 20px;
}
section.image-section .service .service-title a {
  color: #1A1B26;
  text-decoration: none;
  border-bottom: 1px solid #1A1B26;
}
section.image-section .service .service-title a:hover {
  color: #2f4486;
  border-color: #2f4486;
}
section.image-section .service:not(:last-child) {
  margin-bottom: 60px;
}
section.image-section.featured.left .button-holder {
  left: 0;
}
section.image-section.featured.left .button-holder .custom-button {
  border-radius: 0 6px 6px 0;
}
section.image-section.featured.left .holder:before {
  left: 0;
}
section.image-section.featured.right .button-holder {
  right: 0;
}
section.image-section.featured.right .button-holder .custom-button {
  border-radius: 6px 0 0 6px;
}
section.image-section.featured.right .holder:before {
  right: 0;
}
section.image-section.featured .button-holder {
  position: absolute;
  bottom: 0;
}
section.image-section.featured .image-holder {
  position: relative;
  z-index: 2;
  margin-top: 65px;
  border-radius: 6px 6px 0px 6px;
  margin-bottom: 0;
}
section.image-section.featured .holder {
  border-radius: 6px;
  position: relative;
  background: #e2edf9;
}
section.image-section.featured .holder:before {
  content: "";
  height: 100%;
  width: 120px;
  background: #fff;
  position: absolute;
  top: 0;
}
section.image-section.featured .holder:after {
  content: "";
  z-index: -1;
  display: block;
  position: absolute;
  height: 100px;
  width: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  filter: blur(50px);
  border-radius: 6px;
}
section.image-section.video-section .holder {
  background: #fff;
}
section.image-section .d-table {
  width: 100%;
}
section.image-section .d-table-cell {
  height: 470px;
}
section.image-section .image-holder {
  position: relative;
}
section.image-section .content-holder {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
section.image-section .button-holder {
  max-width: 600px;
  margin: 30px auto 0;
  position: relative;
}
section.image-section .button-holder .custom-button-link {
  margin: 18px 40px;
}
section.image-section .video-icon {
  position: absolute;
  left: 0;
  right: 0;
  width: 90px;
  height: 90px;
  top: calc(50% - 45px);
  margin: 0 auto;
  z-index: 2;
  border-radius: 50%;
  padding: 20px;
  transition: all ease 0.3s;
  background: rgba(255, 255, 255, 0.3);
}
section.image-section .video-icon:after {
  content: "";
  transition: transform var(--duration) var(--ease-out);
  transition-timing-function: var(--bounce-out);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 70px;
  width: 70px;
  background: rgba(255, 255, 255, 0.3);
}
section.image-section .video-icon svg {
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
  z-index: 2;
  transition: transform var(--duration) var(--ease-out);
  transition-timing-function: var(--bounce-out);
}
section.image-section .video-holder {
  cursor: pointer;
  background: #000;
  position: relative;
}
section.image-section .video-holder img {
  opacity: 0.8;
  transition: all ease 0.3s;
}
section.image-section .video-holder:hover img {
  opacity: 1;
}
section.image-section .video-holder:hover .video-icon {
  background: transparent;
}
section.image-section .video-holder:hover .video-icon svg {
  border-color: #fff;
}
section.image-section .video-holder:hover .video-icon:after {
  transform: scale(1.5);
}

section.industries.industries-invert .boxes {
  margin: 0 0 20px;
}
section.industries.industries-invert .boxes:hover .box {
  opacity: 1;
  transform: scale(1);
}
section.industries.industries-invert .boxes .box {
  max-width: 320px;
  margin: 10px 20px 20px 0;
  background: #e2edf9;
  transition: transform var(--duration) var(--ease-out);
  transition-timing-function: var(--bounce-out);
}
section.industries.industries-invert .boxes .box:hover {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0px 4px 15px rgba(0, 80, 130, 0.15);
  color: #2f4486;
}
section.industries .info {
  color: #fff;
  margin-bottom: 30px;
}
section.industries .boxes {
  position: relative;
  margin: 0 -15px;
}
section.industries .boxes:hover .box {
  opacity: 0.8;
  transform: scale(0.95);
}
section.industries .boxes .box {
  text-align: left;
  width: 335px;
  color: #1A1B26;
  font-weight: 600;
  max-width: 100%;
  text-decoration: none;
  margin: 10px 5px;
  display: inline-block;
  background: #fff;
  border-radius: 6px;
  padding: 0 20px;
  vertical-align: top;
  transition: all ease 0.1s;
  box-shadow: 0px 4px 15px rgba(0, 80, 130, 0.08);
}
section.industries .boxes .box:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 80, 130, 0.8);
  color: #2f4486;
}
section.industries .boxes .box .box-content {
  position: relative;
}
section.industries .boxes .box .box-content .d-table-cell {
  height: 80px;
}
section.industries .boxes .box .box-content .box-title {
  padding-right: 40px;
  line-height: 1.2;
}
section.industries .boxes .box .box-content .box-icon {
  position: absolute;
  right: 0;
  top: 25px;
}
section.industries .custom-button:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 0 2px #fff, 0 0 15px rgba(255, 255, 255, 0.5);
}

section.latest-news {
  position: relative;
}

section.feedback {
  overflow: hidden;
}
section.feedback .image {
  opacity: 0.1;
  background-attachment: fixed;
}
section.feedback .container {
  position: relative;
  z-index: 2;
}
section.feedback .button-holder .custom-button {
  margin: 0 10px;
}
section.feedback .button-holder .custom-button:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 0 2px #fff, 0 0 15px rgba(255, 255, 255, 0.5);
}

section.article .post-content {
  padding-left: 120px;
  position: relative;
}
section.article .post-content video,
section.article .post-content iframe,
section.article .post-content figure,
section.article .post-content img {
  max-width: 100%;
  height: auto;
}
section.article .social-share {
  position: absolute;
  width: 100px;
  left: 0;
}
section.article .social-share .sfsi_wicons {
  display: block;
}

section.gallery .gallery-slider {
  height: 460px;
  max-width: 760px;
  position: relative;
  padding-right: 120px;
  overflow: hidden;
}
section.gallery .gallery-slider .slick-dots {
  bottom: 0;
  text-align: center;
}
section.gallery .gallery-slider.initialized .slider-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
section.gallery .gallery-slider .slider-loader {
  height: 100%;
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99;
  opacity: 1;
  visibility: visible;
}
section.gallery .gallery-slider .slider-loader .loader {
  top: 45%;
}
section.gallery .slider-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 105px;
  height: 100%;
  padding: 60px 0 40px;
  text-align: center;
}
section.gallery .slider-nav .slick-list {
  padding: 0;
}
section.gallery .slider-nav figure.image-holder {
  display: inline-block;
  margin-bottom: 10px;
  transition: all ease 0.5s;
}
section.gallery .slider-nav figure.image-holder:hover {
  opacity: 0.5;
}
section.gallery .slider-nav .slick-arrow.slick-prev {
  top: 20px;
  left: inherit;
  right: 35px;
}
section.gallery .slider-nav .slick-arrow.slick-next {
  top: calc(100% - 20px);
  right: 35px;
}
section.gallery .slider-for figure.image-holder {
  margin-bottom: 0;
  text-align: center;
}
section.gallery .slider-for figure.image-holder img {
  min-width: 100%;
}
section.gallery .slider-for figure.image-holder a {
  display: block;
  cursor: zoom-in;
}
section.gallery .slider-for figure.image-holder a:focus {
  outline: none;
}
section.gallery .d-table-cell {
  height: 460px;
}
section.gallery .content-holder {
  width: 100%;
  margin: 0 auto;
}
section.gallery .content-holder img {
  max-width: 100%;
  height: auto;
}
section.gallery .button-holder .custom-button-link {
  margin: 22px 30px;
}

section.accordion.accordion-default .panel-default {
  padding: 0;
  background: #fff;
}
section.accordion.accordion-default .panel-default .panel-heading .panel-title {
  margin: 0;
}
section.accordion.accordion-default .panel-default .panel-heading .panel-title a {
  text-decoration: none;
  padding: 18px 50px 18px 30px;
}
section.accordion.accordion-default .panel-default .content {
  padding: 10px 30px;
  position: relative;
}
section.accordion.accordion-default .panel-default .content:before {
  content: "";
  width: calc(100% - 60px);
  background: #2f4486;
  height: 2px;
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
section.accordion ul.nav-tabs {
  background: #fff;
  box-shadow: 0px 4px 15px rgba(0, 80, 130, 0.08);
  border-radius: 6px;
  max-width: 500px;
  border: none;
  padding: 20px 20px 33px 35px;
}
section.accordion ul.nav-tabs li.nav-item {
  display: block;
  width: 100%;
  margin: 0;
  border: none;
}
section.accordion ul.nav-tabs li.nav-item a.nav-link {
  color: #1A1B26;
  display: block;
  border-radius: 8px;
  position: relative;
  font-weight: 600;
  text-decoration: underline;
  border: none;
  padding: 10px 15px 10px 22px;
  transition: all ease 0.3s;
  background: transparent;
}
section.accordion ul.nav-tabs li.nav-item a.nav-link:before {
  content: "";
  position: absolute;
  height: 6px;
  width: 6px;
  left: 0px;
  top: 20px;
  background: #fff;
  border-radius: 1px;
}
section.accordion ul.nav-tabs li.nav-item a.nav-link.active {
  background: transparent;
  color: #2f4486;
}
section.accordion ul.nav-tabs li.nav-item a.nav-link.active:before {
  background: #2f4486;
}
section.accordion .card {
  border: none;
  border-radius: 0;
  margin-bottom: 5px;
  background: transparent;
}
section.accordion .card .card-header {
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
}
section.accordion .card .card-header .card-title {
  margin: 0;
  padding: 0;
  border-radius: 0;
}
section.accordion .card .card-header .card-title a {
  color: #1A1B26;
  display: block;
  border-radius: 5px;
  position: relative;
  text-decoration: none;
  background: #e2edf9;
  border: 1px solid #E8EBF3;
  font-weight: 700;
  padding: 15px 10px 15px 15px;
}
section.accordion .card .card-header .card-title a .arrow {
  display: block;
  width: 16px;
  position: absolute;
  right: 17px;
  top: 26px;
}
section.accordion .card .card-header .card-title a .arrow:before {
  position: absolute;
  content: "";
  display: block;
  height: 2px;
  width: 8px;
  background: #1A1B26;
  transform: rotate(45deg);
}
section.accordion .card .card-header .card-title a .arrow:after {
  left: 5px;
  position: absolute;
  content: "";
  display: block;
  height: 2px;
  width: 8px;
  background: #1A1B26;
  transform: rotate(-45deg);
}
section.accordion .card .card-header .card-title a[aria-expanded=false] .arrow:after {
  transform: rotate(-45deg);
}
section.accordion .card .card-header .card-title a[aria-expanded=true] {
  color: #fff;
  border-radius: 5px 5px 0 0;
  background: #2f4486;
}
section.accordion .card .card-header .card-title a[aria-expanded=true] .arrow:before {
  background: #fff;
  transform: rotate(-45deg);
}
section.accordion .card .card-header .card-title a[aria-expanded=true] .arrow:after {
  transform: rotate(45deg);
  background: #fff;
}
section.accordion .card .card-body {
  padding: 0;
  margin: 0;
  border: none;
}
section.accordion .panel-default {
  margin-bottom: 20px;
  border: none;
  background: #fff;
  padding-bottom: 10px;
  box-shadow: 0px 4px 15px rgba(0, 80, 130, 0.08);
  border-radius: 6px;
}
section.accordion .panel-default .panel-heading {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
section.accordion .panel-default .panel-heading .panel-title {
  margin-bottom: 0;
  margin-top: 0;
}
section.accordion .panel-default .panel-heading .panel-title a {
  color: #1A1B26;
  padding: 18px 50px 10px 70px;
  display: block;
  font-weight: 700;
  position: relative;
}
section.accordion .panel-default .panel-heading .panel-title a .icon {
  display: block;
  position: absolute;
  left: 35px;
}
section.accordion .panel-default .content {
  padding: 0 70px 15px;
  margin: 0;
}
section.accordion .panel-group {
  margin-bottom: 0;
}
section.accordion .panel-heading .panel-title a .arrow {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 18px;
  transition: all ease 0.5s;
}
section.accordion .panel-heading .panel-title a .arrow:before, section.accordion .panel-heading .panel-title a .arrow:after {
  content: "";
  height: 2px;
  width: 6px;
  top: 12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  display: block;
  background: #9799A1;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
section.accordion .panel-heading .panel-title a .arrow:before {
  left: -8px;
  transform: rotate(45deg);
}
section.accordion .panel-heading .panel-title a .arrow:after {
  transform: rotate(-45deg);
}
section.accordion .panel-heading .panel-title a[aria-expanded=true] {
  color: #2f4486;
}
section.accordion .panel-heading .panel-title a[aria-expanded=true] .icon svg path {
  fill: #2f4486;
}
section.accordion .panel-heading .panel-title a[aria-expanded=true] .arrow:before {
  left: -8px;
  transform: rotate(-45deg);
}
section.accordion .panel-heading .panel-title a[aria-expanded=true] .arrow:after {
  transform: rotate(45deg);
}
section.accordion .panel-heading .panel-title a[aria-expanded=false] .arrow:before {
  left: -8px;
  transform: rotate(45deg);
}
section.accordion .panel-heading .panel-title a[aria-expanded=false] .arrow:after {
  transform: rotate(-45deg);
}

section.icon-blocks .image {
  opacity: 0.15;
  background-attachment: fixed;
}
section.icon-blocks .container {
  z-index: 2;
}
section.icon-blocks .blocks.blocks-1 .block {
  max-width: 1200px;
  margin: 0 auto;
}
section.icon-blocks .blocks.blocks-2 .block {
  max-width: 660px;
}
section.icon-blocks .blocks.blocks-2 .block:not(:last-child) {
  margin-right: 60px;
}
section.icon-blocks .blocks.blocks-3 .block {
  max-width: 350px;
}
section.icon-blocks .blocks.blocks-3 .block:not(:last-child) {
  margin-right: 60px;
}
section.icon-blocks .blocks.blocks-4 .block {
  max-width: 300px;
}
section.icon-blocks .blocks.blocks-4 .block:not(:last-child) {
  margin-right: 30px;
}
section.icon-blocks .blocks .block {
  width: 100%;
  vertical-align: top;
  max-width: 230px;
  display: inline-block;
}

section.team-members-slider .team-members {
  position: relative;
}
section.team-members-slider .team-members .d-table-cell {
  height: 600px;
}
section.team-members-slider .team-members .content-holder {
  max-width: 600px;
}
section.team-members-slider .team-members .title {
  font-weight: 700;
}
section.team-members-slider .team-members .image-holder img {
  border-radius: 6px;
}

section.theme-members-list .team-members .team {
  cursor: pointer;
  position: relative;
  max-width: 410px;
  overflow: hidden;
}
section.theme-members-list .team-members .team .image-holder {
  position: relative;
}
section.theme-members-list .team-members .team .image-holder img {
  border-radius: 6px;
}
section.theme-members-list .team-members .team:hover .rollover {
  opacity: 1;
}
section.theme-members-list .team-members .team .rollover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all ease 0.5s;
}
section.theme-members-list .team-members .team .rollover .content {
  padding: 40px;
  position: relative;
  z-index: 2;
}
section.theme-members-list .team-members .team .rollover:after {
  content: "";
  opacity: 0.8;
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  background: radial-gradient(101% 202% at 50% 160%, #232E63 0%, #2f4486 100%);
}

section.contact .locations {
  max-width: 600px;
  float: right;
}
section.contact .locations .location a {
  color: #1A1B26;
  font-weight: 700;
  text-decoration: none;
}

section.timeline .slider {
  margin-top: 50px;
  position: relative;
  text-align: center;
}
section.timeline .slider .slider-timeline-nav {
  margin-bottom: 10px;
  padding-bottom: 25px;
  position: relative;
}
section.timeline .slider .slider-timeline-nav .year {
  font-size: 44px;
  font-weight: 800;
  transform: scale(0.8);
  transition: all ease 1s;
}
section.timeline .slider .slider-timeline-nav .slick-arrow.slick-prev {
  top: 250px;
}
section.timeline .slider .slider-timeline-nav .slick-arrow.slick-next {
  top: 250px;
}
section.timeline .slider .slider-timeline-nav .slide .title {
  cursor: pointer;
  color: #e2edf9;
  position: relative;
  padding-bottom: 20px;
}
section.timeline .slider .slider-timeline-nav .slide .title .dot {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e2edf9;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  margin: 0 auto;
  z-index: 2;
  transition: all ease 1s;
}
section.timeline .slider .slider-timeline-nav .slide .title .line {
  display: block;
}
section.timeline .slider .slider-timeline-nav .slide .title .line:before {
  content: "";
  width: 50%;
  height: 2px;
  background: #e2edf9;
  position: absolute;
  left: 0;
  bottom: 8px;
  margin: 0 auto;
}
section.timeline .slider .slider-timeline-nav .slide .title .line:after {
  content: "";
  width: 50%;
  height: 2px;
  background: #e2edf9;
  position: absolute;
  right: 0;
  bottom: 8px;
  margin: 0 auto;
}
section.timeline .slider .slider-timeline-nav .slide.slick-active.slick-current .title {
  color: #2f4486;
}
section.timeline .slider .slider-timeline-nav .slide.slick-active.slick-current .title .dot {
  background: #2f4486;
}
section.timeline .slider .slider-timeline-nav .slide.slick-active.slick-current .title .year {
  transform: scale(1);
}
section.timeline .slider .slider-timeline-nav .slide.slick-current .title {
  color: #2f4486;
}
section.timeline .slider .slider-timeline-nav .slide.slick-current .title .dot {
  background: #2f4486;
}
section.timeline .slider .slider-timeline-for .slide {
  padding-bottom: 30px;
  padding-top: 20px;
}
section.timeline .slider .slider-timeline-for .slide .holder {
  margin: 0 auto;
  max-width: 438px;
  transform: scale(0.8);
  background: #e2edf9;
  padding: 10px;
  border-radius: 6px;
  transition: all ease 0.5s;
}
section.timeline .slider .slider-timeline-for .slide.slick-active.slick-current .holder {
  background: #fff;
  transform: scale(1);
  opacity: 1;
  box-shadow: 0px 10px 15px rgba(0, 23, 37, 0.15);
}
section.timeline .slider .slider-timeline-for .slide.slick-current .holder {
  transform: scale(1);
  opacity: 1;
}
section.timeline .slider .image-holder {
  overflow: hidden;
  height: 220px;
  position: relative;
  width: 100%;
}
section.timeline .slider .image-holder img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
section.timeline .slider .content-holder {
  text-align: left;
  padding: 10px 15px;
}
section.timeline .slider .content-holder .year {
  position: relative;
  font-size: 12px;
}
section.timeline .slider .content-holder .year:after {
  content: "";
  display: block;
  width: 10px;
  margin: 10px 0 10px;
  height: 2px;
  background: #2f4486;
}

section.team-members-slider .slider .d-table-cell {
  height: 600px;
}
section.team-members-slider .slider .d-table-cell .content-holder {
  max-width: 600px;
}

body.single section.columns .col-lg-12 .content {
  max-width: 1200px;
}
body.single section.columns .col-lg-6 .content {
  max-width: 650px;
}

ul.nav.nav-featured-tabs {
  position: relative;
  z-index: 6;
  border-radius: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
ul.nav.nav-featured-tabs.nav-tabs-sm .nav-link {
  height: 60px;
  padding: 18px 15px;
  text-align: center;
  font-size: 15px;
  border-radius: 6px;
}
ul.nav.nav-featured-tabs .nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.nav.nav-featured-tabs .nav-item:last-child {
  margin-right: -1px;
}
ul.nav.nav-featured-tabs .nav-link {
  display: block;
  width: 100%;
  font-weight: 600;
  height: 100px;
  line-height: 1.4;
  font-size: 20px;
  padding: 23px 30px;
  color: #fff;
  border: none;
  transition: none;
  border-bottom: 3px solid #fff;
  text-align: left;
  border-radius: 6px 6px 0 0;
}
ul.nav.nav-featured-tabs .nav-link.active {
  border-bottom-color: transparent;
}

section.featured-tabs {
  padding-bottom: 50px;
}
section.featured-tabs .fade {
  transition: opacity 0s linear;
}
section.featured-tabs .show .content-holder .title,
section.featured-tabs .show .content-holder .info {
  opacity: 1;
  transform: translateY(0px);
}
section.featured-tabs .show .content-holder .button-holder {
  opacity: 1;
  transform: translateY(0px);
}
section.featured-tabs .content-holder {
  position: relative;
  padding: 80px 40px 40px 80px;
}
section.featured-tabs .content-holder .title {
  opacity: 0;
  transition: all ease 0.5s;
  transform: translateY(20px);
}
section.featured-tabs .content-holder .info {
  opacity: 0;
  transition: all ease 0.5s;
  transition-delay: 0.1s;
  transform: translateY(20px);
}
section.featured-tabs .content-holder .button-holder {
  opacity: 0;
  transition: all ease 0.5s;
  transition-delay: 0.2s;
  transform: translateY(20px);
}
section.featured-tabs .image-holder {
  position: relative;
  min-height: 440px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: -30px;
  margin-right: 5px;
  border-radius: 6px;
  text-align: right;
  display: inline-block;
}
section.featured-tabs .image-holder img {
  position: relative;
  border-radius: 6px;
}
section.featured-tabs .image-holder:after {
  content: "";
  z-index: -1;
  display: block;
  position: absolute;
  height: 100px;
  width: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  filter: blur(50px);
  border-radius: 6px;
  transition: all ease 0.2s;
}
section.featured-tabs .image-holder:before {
  content: "";
  z-index: -1;
  display: block;
  position: absolute;
  height: 60%;
  width: 300px;
  right: -100px;
  margin: 0 auto;
  bottom: 15%;
  opacity: 0;
  transition: all ease 0.2s;
  transform: translateX(-150px);
  background: rgba(0, 0, 0, 0.1);
  filter: blur(50px);
  border-radius: 100px;
}
section.featured-tabs .tab-content {
  position: relative;
}
section.featured-tabs .tab-content .holder {
  position: relative;
  z-index: 3;
  padding-right: calc(var(--bs-gutter-x)/ 2);
  padding-left: calc(var(--bs-gutter-x)/ 2);
}
section.featured-tabs .tab-content .background {
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  margin: 0 auto;
  pointer-events: none;
}
section.featured-tabs .tab-content .image {
  pointer-events: none;
  z-index: 1;
}
section.featured-tabs .image-holder {
  display: block;
}
section.featured-tabs .image-holder .image-title {
  color: #fff;
  z-index: 6;
  bottom: 46%;
  transition: all ease 0.3s;
  position: absolute;
  opacity: 0;
  transform: translateX(-50px);
  transition-timing-function: var(--bounce-out);
}
section.featured-tabs .image-holder .image-title a {
  color: #fff;
  text-decoration: none;
}
section.featured-tabs .image-holder:hover .image-title {
  opacity: 1;
  transform: translateX(80px);
}
section.featured-tabs .image-holder:hover:before {
  opacity: 1;
  transform: translateX(0);
}
section.featured-tabs .image-holder:hover:after {
  opacity: 0.7;
}
section.featured-tabs .image-holder:hover .image-wrapper {
  -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
  transform: translateX(10%);
  transition-timing-function: var(--bounce-out);
}
section.featured-tabs .image-wrapper {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 0 50%, 0% 0%);
  transition: transform var(--duration) var(--ease-out), clip-path var(--duration) var(--ease-out);
}
section.featured-tabs .image-wrapper img {
  transition: transform var(--duration) var(--ease-out);
}

section.manufacturers .loader-holder .loader {
  top: 50px;
}
section.manufacturers .logos {
  padding: 50px 0 0;
}
section.manufacturers .logos .d-table {
  width: 100%;
}
section.manufacturers .logos .d-table .d-table-cell {
  height: 100px;
}
section.manufacturers .logos .logo {
  width: 160px;
  height: 100px;
  margin: 0 auto;
  text-align: center;
}
section.manufacturers .logos .logo img {
  display: inline-block;
}

section.warranty .holder {
  padding: 40px 0;
}
section.warranty .title a {
  color: #1A1B26;
}

section.product-list {
  margin-bottom: 150px;
}

.multi-step-form {
  min-height: 500px;
  width: 100%;
  position: relative;
}
.multi-step-form fieldset {
  display: none;
  pointer-events: none;
  opacity: 0;
}
.multi-step-form fieldset.show {
  display: block;
  opacity: 1;
  pointer-events: all;
}
.multi-step-form fieldset.hide {
  display: none;
  pointer-events: none;
  opacity: 0;
}
.multi-step-form .steps {
  width: 100%;
  margin-bottom: 40px;
  height: 10px;
  border-radius: 10px;
  background: #E6F3ED;
}
.multi-step-form .steps button {
  width: 33%;
  height: 10px;
  padding: 0;
  margin: 0;
  display: inline-block;
  border: 0;
  position: relative;
  vertical-align: top;
}
.multi-step-form .steps button:first-child {
  border-radius: 10px 0 0 10px;
}
.multi-step-form .steps button:first-child span {
  left: 0;
}
.multi-step-form .steps button:last-child {
  border-radius: 0 10px 10px 0;
}
.multi-step-form .steps button:last-child span {
  right: 0;
}
.multi-step-form .steps button span {
  color: #999;
  text-align: center;
  top: -40px;
  line-height: 40px;
  font-size: 14px;
  position: absolute;
}
.multi-step-form .steps button[disabled] {
  background: none;
}
.multi-step-form .steps button.active {
  background: #05894A;
}
.multi-step-form .steps button.active span {
  color: #05894A;
}

section.newsletter .mc4wp-response {
  margin-top: 10px;
}
section.newsletter .mc4wp-response .mc4wp-alert.mc4wp-error {
  color: red;
}
section.newsletter .mc4wp-response .mc4wp-alert.mc4wp-error * {
  color: red;
}
section.newsletter .form {
  width: 100%;
  max-width: 520px;
  margin: 20px auto 0;
  position: relative;
}
section.newsletter .form .form-field {
  margin: 0;
  position: relative;
}
section.newsletter .form .form-field.active .button-submit svg path {
  fill: #05894a;
}
section.newsletter .form .form-control {
  height: 70px;
  font-size: 20px;
  padding: 10px 30px;
}
section.newsletter .form .button-submit {
  border: none;
  background: transparent;
  right: 0;
  top: 0;
  position: absolute;
  width: 70px;
  height: 70px;
  display: inline-block;
  vertical-align: top;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  transition: all ease 0.5s;
}
section.newsletter .form .button-submit svg {
  position: relative;
  top: -3px;
}
section.newsletter .form .button-submit:hover svg path {
  fill: #232E63;
}
section.newsletter .email_posts_subscribers {
  width: 100%;
  max-width: 520px;
  margin: 30px auto 0px;
  position: relative;
}
section.newsletter .email_posts_subscribers p br {
  display: none;
}
section.newsletter .email_posts_subscribers .email {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
section.newsletter .email_posts_subscribers input[type=email] {
  display: block;
  height: 70px;
  background: #fff;
  border: 1px solid #C8D3DE;
  border-radius: 8px;
  width: 100%;
  font-size: 20px;
  padding: 10px 30px;
  max-width: calc(100% - 140px);
}
section.newsletter .email_posts_subscribers input[type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  height: 70px;
  min-width: 140px;
  border: none;
  border-radius: 0 8px 8px 0;
  background: #232E63;
  color: #fff;
  font-size: 18px;
  padding: 10px 30px;
}

/*# sourceMappingURL=style.css.map */
