@font-face {
  font-family: "gill_sans_mtbold";
  src: url("../fonts/gill-sans-mt-bold-webfont.eot");
  src: url("../fonts/gill-sans-mt-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/gill-sans-mt-bold-webfont.woff2") format("woff2"), url("../fonts/gill-sans-mt-bold-webfont.woff") format("woff"), url("../fonts/gill-sans-mt-bold-webfont.ttf") format("truetype"), url("../fonts/gill-sans-mt-bold-webfont.svg#gill_sans_mtbold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gill_sans_mtregular";
  src: url("../fonts/gill-sans-mt-webfont.eot");
  src: url("../fonts/gill-sans-mt-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/gill-sans-mt-webfont.woff2") format("woff2"), url("../fonts/gill-sans-mt-webfont.woff") format("woff"), url("../fonts/gill-sans-mt-webfont.ttf") format("truetype"), url("../fonts/gill-sans-mt-webfont.svg#gill_sans_mtregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*** Backgrounds ***/
.bg-blue {
  background-color: #0870D8;
}

.bg-blue-g {
  background-color: #0068B5;
}

.bg-blue-g-opac {
  background-color: rgba(0, 104, 181, 0.6);
}

.bg-white {
  background-color: #fff;
}

.bg-lgrey {
  background-color: #F2F2F2;
}

.bg-tranparent {
  background-color: transparent;
}

.bg-fixed {
  background-attachment: fixed;
}

.has-bg {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.half-bg {
  background-repeat: no-repeat;
  background-size: 60%;
}

/*** Colors ***/
.color-white {
  color: #fff;
}

.color-blue {
  color: #0870D8;
}

.color-blue-g {
  color: #0068B5;
}

.color-black {
  color: #000000;
}

/*** Borders ***/
.border-white {
  border-color: #fff;
}

.border-blue {
  border-color: #0870D8;
}

.border-blue-g {
  border-color: #0068B5;
}

.border-grey {
  border-color: #cce1f0;
}

.b-1 {
  border-width: 1px;
  border-style: solid;
}

.bl-3 {
  border-left: solid;
  border-width: 3px;
}

/*** Headings ***/
.heading-smd {
  font-size: 1.25rem;
  line-height: 1.75rem;
  letter-spacing: -0.2px;
}

.heading-md {
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.24px;
}

.heading-emd {
  font-size: 2rem;
  line-height: 2.5rem;
  letter-spacing: -0.64px;
}

.heading-exl {
  font-size: 3rem;
  line-height: 3.5rem;
  letter-spacing: -0.96px;
}

.heading-sxl {
  font-size: 2.25rem;
  line-height: 2.75rem;
  letter-spacing: -0.96px;
}

/*** Paragraphs ***/
.para-default {
  font-size: 1rem;
  line-height: 1.5rem;
}

.para-sm {
  font-size: 1.375rem;
  line-height: 1.688rem;
  letter-spacing: -0.36px;
}

.para-md {
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.24px;
}

/*** Font Style ***/
.font-bold {
  font-family: "gill_sans_mtbold";
  font-weight: 700;
}

.font-reg {
  font-family: "gill_sans_mtregular";
  font-weight: 400;
}

/*** Content ***/
.v-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/** hover zoom **/
.img-zoom {
  overflow: hidden;
}
.img-zoom img {
  transition: transform ease-in-out 0.4s;
}
.img-zoom:hover img {
  transform: scale(1.08);
}

/** Reboot **/
a {
  text-decoration: none !important;
}
a:hover {
  color: inherit;
}

ul {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none;
}

.addresses .col-lg-4 {
  padding-right: 0.4rem;
  padding-left: 0.4rem;
}

.no-scroll {
  overflow: hidden;
}

.m-t-1 {
  margin-top: 1rem;
}

.m-t-2 {
  margin-top: 2rem;
}

.m-t-3 {
  margin-top: 3rem;
}

.m-t-4 {
  margin-top: 4rem;
}

.m-t-5 {
  margin-top: 5rem;
}

.m-t-6 {
  margin-top: 6rem;
}

.m-t-7 {
  margin-top: 7rem;
}

.m-t-8 {
  margin-top: 8rem;
}

.m-t-9 {
  margin-top: 9rem;
}

.m-t-10 {
  margin-top: 10rem;
}

.m-t-11 {
  margin-top: 11rem;
}

.m-t-12 {
  margin-top: 12rem;
}

.m-t-13 {
  margin-top: 13rem;
}

.m-t-14 {
  margin-top: 14rem;
}

.m-t-15 {
  margin-top: 15rem;
}

.m-t-16 {
  margin-top: 16rem;
}

.m-t-17 {
  margin-top: 17rem;
}

.m-t-18 {
  margin-top: 18rem;
}

.m-t-19 {
  margin-top: 19rem;
}

.m-t-20 {
  margin-top: 20rem;
}

.m-r-1 {
  margin-right: 1rem;
}

.m-r-2 {
  margin-right: 2rem;
}

.m-r-3 {
  margin-right: 3rem;
}

.m-r-4 {
  margin-right: 4rem;
}

.m-r-5 {
  margin-right: 5rem;
}

.m-r-6 {
  margin-right: 6rem;
}

.m-r-7 {
  margin-right: 7rem;
}

.m-r-8 {
  margin-right: 8rem;
}

.m-r-9 {
  margin-right: 9rem;
}

.m-r-10 {
  margin-right: 10rem;
}

.m-r-11 {
  margin-right: 11rem;
}

.m-r-12 {
  margin-right: 12rem;
}

.m-r-13 {
  margin-right: 13rem;
}

.m-r-14 {
  margin-right: 14rem;
}

.m-r-15 {
  margin-right: 15rem;
}

.m-r-16 {
  margin-right: 16rem;
}

.m-r-17 {
  margin-right: 17rem;
}

.m-r-18 {
  margin-right: 18rem;
}

.m-r-19 {
  margin-right: 19rem;
}

.m-r-20 {
  margin-right: 20rem;
}

.m-b-1 {
  margin-bottom: 1rem;
}

.m-b-2 {
  margin-bottom: 2rem;
}

.m-b-3 {
  margin-bottom: 3rem;
}

.m-b-4 {
  margin-bottom: 4rem;
}

.m-b-5 {
  margin-bottom: 5rem;
}

.m-b-6 {
  margin-bottom: 6rem;
}

.m-b-7 {
  margin-bottom: 7rem;
}

.m-b-8 {
  margin-bottom: 8rem;
}

.m-b-9 {
  margin-bottom: 9rem;
}

.m-b-10 {
  margin-bottom: 10rem;
}

.m-b-11 {
  margin-bottom: 11rem;
}

.m-b-12 {
  margin-bottom: 12rem;
}

.m-b-13 {
  margin-bottom: 13rem;
}

.m-b-14 {
  margin-bottom: 14rem;
}

.m-b-15 {
  margin-bottom: 15rem;
}

.m-b-16 {
  margin-bottom: 16rem;
}

.m-b-17 {
  margin-bottom: 17rem;
}

.m-b-18 {
  margin-bottom: 18rem;
}

.m-b-19 {
  margin-bottom: 19rem;
}

.m-b-20 {
  margin-bottom: 20rem;
}

.m-l-1 {
  margin-left: 1rem;
}

.m-l-2 {
  margin-left: 2rem;
}

.m-l-3 {
  margin-left: 3rem;
}

.m-l-4 {
  margin-left: 4rem;
}

.m-l-5 {
  margin-left: 5rem;
}

.m-l-6 {
  margin-left: 6rem;
}

.m-l-7 {
  margin-left: 7rem;
}

.m-l-8 {
  margin-left: 8rem;
}

.m-l-9 {
  margin-left: 9rem;
}

.m-l-10 {
  margin-left: 10rem;
}

.m-l-11 {
  margin-left: 11rem;
}

.m-l-12 {
  margin-left: 12rem;
}

.m-l-13 {
  margin-left: 13rem;
}

.m-l-14 {
  margin-left: 14rem;
}

.m-l-15 {
  margin-left: 15rem;
}

.m-l-16 {
  margin-left: 16rem;
}

.m-l-17 {
  margin-left: 17rem;
}

.m-l-18 {
  margin-left: 18rem;
}

.m-l-19 {
  margin-left: 19rem;
}

.m-l-20 {
  margin-left: 20rem;
}

.m-x-1 {
  margin: 1rem;
}

.m-x-2 {
  margin: 2rem;
}

.m-x-3 {
  margin: 3rem;
}

.m-x-4 {
  margin: 4rem;
}

.m-x-5 {
  margin: 5rem;
}

.m-x-6 {
  margin: 6rem;
}

.m-x-7 {
  margin: 7rem;
}

.m-x-8 {
  margin: 8rem;
}

.m-x-9 {
  margin: 9rem;
}

.m-x-10 {
  margin: 10rem;
}

.m-x-11 {
  margin: 11rem;
}

.m-x-12 {
  margin: 12rem;
}

.m-x-13 {
  margin: 13rem;
}

.m-x-14 {
  margin: 14rem;
}

.m-x-15 {
  margin: 15rem;
}

.m-x-16 {
  margin: 16rem;
}

.m-x-17 {
  margin: 17rem;
}

.m-x-18 {
  margin: 18rem;
}

.m-x-19 {
  margin: 19rem;
}

.m-x-20 {
  margin: 20rem;
}

.p-t-1 {
  padding-top: 1rem;
}

.p-t-2 {
  padding-top: 2rem;
}

.p-t-3 {
  padding-top: 3rem;
}

.p-t-4 {
  padding-top: 4rem;
}

.p-t-5 {
  padding-top: 5rem;
}

.p-t-6 {
  padding-top: 6rem;
}

.p-t-7 {
  padding-top: 7rem;
}

.p-t-8 {
  padding-top: 8rem;
}

.p-t-9 {
  padding-top: 9rem;
}

.p-t-10 {
  padding-top: 10rem;
}

.p-t-11 {
  padding-top: 11rem;
}

.p-t-12 {
  padding-top: 12rem;
}

.p-t-13 {
  padding-top: 13rem;
}

.p-t-14 {
  padding-top: 14rem;
}

.p-t-15 {
  padding-top: 15rem;
}

.p-t-16 {
  padding-top: 16rem;
}

.p-t-17 {
  padding-top: 17rem;
}

.p-t-18 {
  padding-top: 18rem;
}

.p-t-19 {
  padding-top: 19rem;
}

.p-t-20 {
  padding-top: 20rem;
}

.p-r-1 {
  padding-right: 1rem;
}

.p-r-2 {
  padding-right: 2rem;
}

.p-r-3 {
  padding-right: 3rem;
}

.p-r-4 {
  padding-right: 4rem;
}

.p-r-5 {
  padding-right: 5rem;
}

.p-r-6 {
  padding-right: 6rem;
}

.p-r-7 {
  padding-right: 7rem;
}

.p-r-8 {
  padding-right: 8rem;
}

.p-r-9 {
  padding-right: 9rem;
}

.p-r-10 {
  padding-right: 10rem;
}

.p-r-11 {
  padding-right: 11rem;
}

.p-r-12 {
  padding-right: 12rem;
}

.p-r-13 {
  padding-right: 13rem;
}

.p-r-14 {
  padding-right: 14rem;
}

.p-r-15 {
  padding-right: 15rem;
}

.p-r-16 {
  padding-right: 16rem;
}

.p-r-17 {
  padding-right: 17rem;
}

.p-r-18 {
  padding-right: 18rem;
}

.p-r-19 {
  padding-right: 19rem;
}

.p-r-20 {
  padding-right: 20rem;
}

.p-b-1 {
  padding-bottom: 1rem;
}

.p-b-2 {
  padding-bottom: 2rem;
}

.p-b-3 {
  padding-bottom: 3rem;
}

.p-b-4 {
  padding-bottom: 4rem;
}

.p-b-5 {
  padding-bottom: 5rem;
}

.p-b-6 {
  padding-bottom: 6rem;
}

.p-b-7 {
  padding-bottom: 7rem;
}

.p-b-8 {
  padding-bottom: 8rem;
}

.p-b-9 {
  padding-bottom: 9rem;
}

.p-b-10 {
  padding-bottom: 10rem;
}

.p-b-11 {
  padding-bottom: 11rem;
}

.p-b-12 {
  padding-bottom: 12rem;
}

.p-b-13 {
  padding-bottom: 13rem;
}

.p-b-14 {
  padding-bottom: 14rem;
}

.p-b-15 {
  padding-bottom: 15rem;
}

.p-b-16 {
  padding-bottom: 16rem;
}

.p-b-17 {
  padding-bottom: 17rem;
}

.p-b-18 {
  padding-bottom: 18rem;
}

.p-b-19 {
  padding-bottom: 19rem;
}

.p-b-20 {
  padding-bottom: 20rem;
}

.p-l-1 {
  padding-left: 1rem;
}

.p-l-2 {
  padding-left: 2rem;
}

.p-l-3 {
  padding-left: 3rem;
}

.p-l-4 {
  padding-left: 4rem;
}

.p-l-5 {
  padding-left: 5rem;
}

.p-l-6 {
  padding-left: 6rem;
}

.p-l-7 {
  padding-left: 7rem;
}

.p-l-8 {
  padding-left: 8rem;
}

.p-l-9 {
  padding-left: 9rem;
}

.p-l-10 {
  padding-left: 10rem;
}

.p-l-11 {
  padding-left: 11rem;
}

.p-l-12 {
  padding-left: 12rem;
}

.p-l-13 {
  padding-left: 13rem;
}

.p-l-14 {
  padding-left: 14rem;
}

.p-l-15 {
  padding-left: 15rem;
}

.p-l-16 {
  padding-left: 16rem;
}

.p-l-17 {
  padding-left: 17rem;
}

.p-l-18 {
  padding-left: 18rem;
}

.p-l-19 {
  padding-left: 19rem;
}

.p-l-20 {
  padding-left: 20rem;
}

.p-x-1 {
  padding: 1rem;
}

.p-x-2 {
  padding: 2rem;
}

.p-x-3 {
  padding: 3rem;
}

.p-x-4 {
  padding: 4rem;
}

.p-x-5 {
  padding: 5rem;
}

.p-x-6 {
  padding: 6rem;
}

.p-x-7 {
  padding: 7rem;
}

.p-x-8 {
  padding: 8rem;
}

.p-x-9 {
  padding: 9rem;
}

.p-x-10 {
  padding: 10rem;
}

.p-x-11 {
  padding: 11rem;
}

.p-x-12 {
  padding: 12rem;
}

.p-x-13 {
  padding: 13rem;
}

.p-x-14 {
  padding: 14rem;
}

.p-x-15 {
  padding: 15rem;
}

.p-x-16 {
  padding: 16rem;
}

.p-x-17 {
  padding: 17rem;
}

.p-x-18 {
  padding: 18rem;
}

.p-x-19 {
  padding: 19rem;
}

.p-x-20 {
  padding: 20rem;
}

.hb-content {
  position: relative;
}
.hb-content .hb-text {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
}
.hb-content .hb-text h1, .hb-content .hb-text h2 {
  font-family: "gill_sans_mtbold";
  font-size: 3rem;
  color: #fff;
  line-height: 3.5rem;
  margin: 0;
}
.hb-content .hb-r-block {
  position: absolute;
  right: 10%;
  bottom: 0;
}

.tl-btn {
  font-family: "gill_sans_mtregular";
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: -0.32px;
  border: none;
  padding: 0.7rem 1.7rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 10px;
}
.tl-btn.color-white span.document {
  background-image: url(../../dist/images/downlaod-icon-white.svg);
}
.tl-btn.color-blue span.document {
  background-image: url(../../dist/images/downlaod-icon.svg);
}
.tl-btn span {
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../../dist/images/arrow-up-tilt.svg);
  background-repeat: no-repeat;
  margin-left: 1rem;
  transition: all linear 0.3s;
}
.tl-btn.margint-3 {
  margin-top: 1.5rem;
}
.tl-btn.color-blue span {
  background-image: url(../../dist/images/arrow-up-tilt-blue.svg);
}
.tl-btn:hover span {
  background-position: 0 -4px;
}

.tl-btn ~ a {
  display: inline-block;
}

.tl-btn-simple {
  font-family: "gill_sans_mtregular";
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: -0.32px;
  border: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: transparent;
}

.es-slide-arrows {
  display: flex;
}
.es-slide-arrows .btn-es {
  margin-right: 0.5rem;
  background: #fff;
  padding: 0.2rem 0.3rem;
  cursor: pointer;
}

.slide-arrows.sqaure-arrows .btn-arrow, .slide-arrows2.sqaure-arrows .btn-arrow {
  background: #fff;
  padding: 0.2rem 0.3rem;
  cursor: pointer;
}
.slide-arrows.sqaure-arrows.theme-blue .btn-arrow, .slide-arrows2.sqaure-arrows.theme-blue .btn-arrow {
  background-color: #0068B5;
}

.cta-cards-unit .single-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.cta-cards-unit .single-card.top {
  justify-content: flex-start;
}
.cta-cards-unit .single-card.top .card-details {
  top: 7rem;
}
.cta-cards-unit .single-card.center {
  justify-content: center;
}
.cta-cards-unit .single-card.bottom {
  justify-content: flex-end;
}
.cta-cards-unit .single-card.bottom .card-details {
  bottom: 1rem;
}
.cta-cards-unit .single-card .card-details {
  position: absolute;
  width: 100%;
  padding: 1rem 1.5rem;
  z-index: 2;
}
.cta-cards-unit .single-card .card-details h3 {
  color: #fff;
  font-family: "gill_sans_mtbold";
  font-size: 2rem;
  line-height: 2.5rem;
  transition: all linear 0.3s;
}
.cta-cards-unit .single-card .card-details h4 {
  color: #fff;
  font-family: "gill_sans_mtbold";
  font-size: 1.25rem;
  line-height: 1.75rem;
  transition: all linear 0.3s;
}
.cta-cards-unit .single-card .box-shadow {
  background: #0068B5;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  left: 0;
  right: 0;
  transition: opacity ease 0.4s;
  z-index: 1;
}
.cta-cards-unit .single-card .show-hover {
  opacity: 0;
  transition: all linear 0.4s;
}
.cta-cards-unit .single-card:hover .box-shadow {
  opacity: 0.4;
}
.cta-cards-unit .single-card:hover .show-hover {
  opacity: 1;
  margin-bottom: 0.5rem;
}

.tl-showcase .item .sc-details {
  position: absolute;
  bottom: 2rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
}

.product-cards-unit .card-details h4 {
  color: #7982A0;
  font-family: "gill_sans_mtbold";
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.product-cards-unit.bordered .single-card {
  border: 1px solid #9D9D9D;
  padding-bottom: 2rem;
}

.ts-products .product-cards-unit .card-details h4 {
  color: #7982A0;
}

.prod-card-nav {
  position: absolute;
  top: 40%;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.prod-card-nav .btn-slide {
  background-color: #0068B5;
  cursor: pointer;
  padding: 1rem;
  border-radius: 50%;
  position: relative;
}
.prod-card-nav .prev {
  left: -5rem;
}
.prod-card-nav .next {
  right: -5rem;
}

.full-cards .fc-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 4rem;
}

.profile-card {
  cursor: pointer;
}
.profile-card .card-details {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-bottom: 1rem;
  padding-left: 1rem;
  transition: border ease-in-out 0.4s;
}
.profile-card .card-details h4 {
  font-family: "gill_sans_mtregular";
  font-size: 1.375rem;
  line-height: 2.5rem;
  color: #fff;
}
.profile-card .card-details span {
  font-family: "gill_sans_mtregular";
  font-size: 1rem;
  line-height: 1.25rem;
  color: #fff;
}
.profile-card:hover .card-details {
  border-bottom: 12px inset #3c54ff;
}

.awards-cards-unit .single-card {
  padding: 1rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}
.awards-cards-unit .single-card .card-details p:nth-child(2) {
  height: 7.5rem;
}
.awards-cards-unit .col-lg-4 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 1.5rem;
}

.sticky-box {
  padding: 2rem;
  min-height: 30rem;
}
.sticky-box a {
  display: inline-block;
}

.tl-form-wrap label {
  width: 100%;
  color: #000000;
  font-family: "gill_sans_mtregular";
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.48px;
  margin-bottom: 0.5rem;
}
.tl-form-wrap label span {
  color: #F00;
}
.tl-form-wrap input:not([type=submit]) {
  width: 100%;
  border: none;
  color: #B5B3B3;
  font-size: 1rem;
  line-height: 1.5rem;
  border-bottom: 2px solid #B5B3B3;
  outline: none;
}
.tl-form-wrap input:not([type=submit])::-webkit-input-placeholder {
  color: #B5B3B3;
  font-size: 1rem;
  line-height: 1.5rem;
}
.tl-form-wrap .col-lg-6, .tl-form-wrap .col-lg-12 {
  margin-bottom: 1rem;
}

.tl-nav .navbar-nav .has-menu .nav-link::after {
  content: url(../../dist/images/arrow-down.svg);
  position: absolute;
  margin-left: 10px;
  bottom: 9px;
}
.tl-nav .navbar-nav .has-menu:hover {
  background-color: #0870D8;
}
.tl-nav .navbar-nav .has-menu:hover .dropdown {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.tl-nav .navbar-nav .has-menu .dropdown {
  position: absolute;
  padding: 5rem 2rem 2rem;
  left: 10%;
  width: 80%;
  display: flex;
  flex-direction: row;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.3s ease-out, opacity 0.3s ease-out, top 0.2s ease-out;
  justify-content: space-between;
  z-index: -1;
}
.tl-nav .navbar-nav .has-menu .dropdown a {
  color: #fff;
  font-family: "gill_sans_mtregular";
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.15px;
  position: relative;
  display: block;
  padding: 0.3rem 0;
}
.tl-nav .navbar-nav .has-menu .dropdown .subnav-description {
  transition: all 0.5s ease-out;
}
.tl-nav .navbar-nav .has-menu .dropdown .subnav-description.show {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.tl-nav .navbar-nav .has-menu .dropdown .subnav-description.hide {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.tl-nav .navbar-nav .has-menu .dropdown .sub2-description {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-out;
  height: 0;
}
.tl-nav .navbar-nav .has-menu .dropdown .sub2-description.show {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.tl-nav .navbar-nav .has-menu .dropdown .sub2-description.hide {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.tl-nav .navbar-nav .has-menu .dropdown .dropdown-description {
  font-family: "gill_sans_mtregular";
  color: #fff;
}
.tl-nav .navbar-nav .has-menu .dropdown .dropdown-description h3 {
  font-size: 2rem;
  line-height: 2.5rem;
}
.tl-nav .navbar-nav .has-menu .dropdown .dropdown-description p {
  font-size: 1rem;
  line-height: 1.5rem;
}

.tl-nav.scroll .navbar-nav .has-menu .nav-link::after {
  content: url(../../dist/images/arrow-down-white.svg);
}

.menu-bg {
  background: #0068B5;
  position: fixed;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 9;
  width: 90%;
  right: 0;
  left: 0;
  margin: auto;
  height: 0;
  transition: 0.2s ease-in-out;
  transform: scaleY(0);
  transform-origin: 50% 0;
}

.m-active {
  height: auto;
  opacity: 1 !important;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.filters-wrap {
  padding: 0 4rem;
}
.filters-wrap [class*=col] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.filters-wrap .filter-field {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #0068B5;
  background: rgba(121, 130, 160, 0.1);
  font-size: 1rem;
  font-family: "gill_sans_mtregular";
  letter-spacing: -0.32px;
  color: #0068B5;
  height: 2.75rem;
  outline: none;
  text-indent: 0.5rem;
}
.filters-wrap .filter-field::-webkit-input-placeholder {
  color: #0068B5;
  font-size: 1rem;
}
.filters-wrap .filter-btn {
  padding: 0.6rem 1rem;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  align-items: center;
}

.list-head {
  padding: 1rem 0;
  border-bottom: 2px solid #d2d2d2;
}
.list-head h6 {
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.list-head .col-6:nth-child(2) {
  text-align: right;
}

.single-list {
  padding: 1rem 0;
  border-bottom: 1px solid #d2d2d2;
}
.single-list .col-6:nth-child(2) {
  text-align: right;
}
.single-list:last-child {
  border: none;
}

.profile-description-modal .modal-body {
  padding: 2rem;
  position: relative;
}
.profile-description-modal .modal-body .btn-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  outline: none;
  background: none;
  width: auto;
  height: auto;
  border-radius: 50%;
  cursor: pointer;
  opacity: 1;
}
.profile-description-modal .modal-body .btn-close:hover {
  color: #fff;
  text-decoration: none;
  opacity: 1;
}
.profile-description-modal h2 {
  font-family: "gill_sans_mtregular";
  font-size: 2.5rem;
  color: #fff;
  line-height: 3rem;
  color: #17171B;
}
.profile-description-modal h5 {
  color: #0068B5;
  font-family: "gill_sans_mtregular";
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: -0.36px;
}
.profile-description-modal p {
  color: #17171B;
  font-family: "gill_sans_mtregular";
  font-size: 1rem;
  line-height: 1.3rem;
}

.tl-subsidiaries [class*=col-] {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  padding-bottom: 0.4rem;
  padding-top: 0.4rem;
}
.tl-subsidiaries .info-cards .p-address {
  height: 3.938rem;
}
.tl-subsidiaries .info-cards .info-txt {
  font-size: 0.875rem;
}
.tl-subsidiaries .info-cards .info-head {
  height: 3.875rem;
}

.tl-lists.color-white li:before {
  content: url(../../dist/images/list-icon-white.svg);
}
.tl-lists.color-black li:before {
  content: url(../../dist/images/list-icon-black.svg);
  margin-right: 0.8rem;
}
.tl-lists li {
  font-size: 1.125rem;
  line-height: 1.563rem;
  padding-bottom: 1.5rem;
}
.tl-lists li:before {
  margin-right: 0.8rem;
}

.tl-ratings {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #0068B5;
}
.tl-ratings .rating-lane {
  border-top-width: 1px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-style: solid;
  border-image: linear-gradient(to right, #747474, rgb(19, 87, 139)) 1;
  padding: 0.6rem;
}
.tl-ratings .rating-lane:last-of-type {
  border-bottom-width: 1px;
}

.content-unit a {
  display: inline-block;
}

.accordion.tl-accordion {
  --bs-accordion-bg: transparent;
}

.tl-accordion .accordion-item {
  border-color: #EAECF0;
  border-left: 0px;
  border-right: 0px;
}
.tl-accordion .accordion-item:first-of-type {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-top: none;
}
.tl-accordion .accordion-item:last-of-type {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom: none;
}
.tl-accordion .accordion-item .accordion-button {
  outline: none;
  background: transparent;
  border-radius: 0px;
}
.tl-accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.tl-accordion .accordion-item .accordion-button:not(.collapsed) {
  background: transparent;
}
.tl-accordion .accordion-item .accordion-body p {
  font-size: 1rem;
  font-family: "gill_sans_mtregular";
  line-height: 1.5rem;
}

.faqs-listing .tl-accordion .accordion-item .accordion-button {
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: #101828;
  font-family: "gill_sans_mtregular";
}
.faqs-listing .tl-accordion .accordion-item .accordion-button::after {
  background-image: url(../../dist/images/plus-circle-icon.svg);
  background-size: 1.5rem;
  height: 1.5rem;
  width: 1.5rem;
  transition: transform 0.4s ease-in-out;
}
.faqs-listing .tl-accordion .accordion-item .accordion-button:not(.collapsed) {
  color: #101828;
}
.faqs-listing .tl-accordion .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotate(135deg);
}
.faqs-listing .tl-accordion .accordion-item .accordion-body p {
  color: #667085;
}

.tl-comp-info .tl-accordion .accordion-item {
  margin: 1rem 0;
  border: none;
}
.tl-comp-info .tl-accordion .accordion-item .accordion-button {
  font-family: "gill_sans_mtbold";
  font-weight: 700;
  text-transform: uppercase !important;
  font-size: 2rem;
  line-height: 2.5rem;
  letter-spacing: -0.24px;
  color: #0870D8;
  padding-top: 0px;
  padding-bottom: 0;
}
.tl-comp-info .tl-accordion .accordion-item .accordion-button:not(.collapsed) {
  color: #0870D8;
  box-shadow: none;
}
.tl-comp-info .tl-accordion .accordion-item .accordion-button:first-of-type {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-top: none;
}
.tl-comp-info .tl-accordion .accordion-item .accordion-button:last-of-type {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom: none;
}
.tl-comp-info .tl-accordion .accordion-item .accordion-body p {
  color: #000;
}

.tl-fin-reports .accordion-item .accordion-button {
  font-family: "gill_sans_mtbold";
  font-weight: 700;
  text-transform: uppercase !important;
  font-size: 1.3rem;
  line-height: 1.7rem;
  letter-spacing: -0.24px;
  color: #0870D8;
}
.tl-fin-reports .accordion-item .accordion-button:not(.collapsed) {
  color: #0870D8;
  box-shadow: none;
}
.tl-fin-reports .accordion-item .accordion-button:first-of-type {
  border-top: none;
}
.tl-fin-reports .accordion-item .accordion-button:last-of-type {
  border-bottom: none;
}
.tl-fin-reports .accordion-item .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.tl-mobile-menu {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding-top: 3.5rem;
  transform: translate(-100%, 0);
  transition: 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  background-color: #fff;
  background-repeat: no-repeat;
}
.tl-mobile-menu.mm-active {
  transform: translate(0, 0);
}

.mm-close {
  position: absolute;
  right: 0.6rem;
  z-index: 11;
  top: 1rem;
}

.mm-parent-links li {
  border-bottom: 1px solid rgba(0, 104, 181, 0.15);
  position: relative;
  transition: all 0.8s ease-in-out;
}
.mm-parent-links li.has-child > a:after {
  content: url(../../dist/images/mm-angle-right.png);
  position: absolute;
  right: 0.5rem;
  bottom: 0;
  display: flex;
  flex-direction: row;
  height: 100%;
  align-items: center;
  flex-wrap: nowrap;
  transition: 0.3s cubic-bezier(0.39, 0.58, 0.57, 1);
}
.mm-parent-links li.has-child.mm-child-active > a:after {
  transform: rotate(90deg);
}
.mm-parent-links li a {
  color: #0068B5;
  font-family: "gill_sans_mtregular";
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.15px;
  position: relative;
  display: block;
  padding: 0.8rem 2rem;
  text-transform: uppercase;
}
.mm-parent-links .mm-child-links {
  display: none;
}
.mm-parent-links .mm-child-links li {
  border-top: 1px solid rgba(0, 104, 181, 0.15);
  padding-left: 1rem;
  border-bottom: 0px;
}
.mm-parent-links .mm-child-links li:first-child {
  border-top: 0px;
}
.mm-parent-links .mm-child-links a {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000000;
  padding: 0.2rem 2rem;
}

.navbar.tl-nav {
  position: fixed;
  z-index: 10;
  width: 100%;
  padding: 1.5rem 0;
  transition: all 0.5s ease-out;
}
.navbar.tl-nav.scroll {
  padding: 0.5rem 0;
  background-color: #0068B5;
  box-shadow: -1px 1px 19px 0px #6a4e4e;
}
.navbar li {
  padding: 0 1rem;
  border-radius: 0.5rem;
}
.navbar li .nav-link {
  color: #fff;
  font-family: "gill_sans_mtbold";
  font-size: 1rem;
  line-height: 1.2rem;
  /* 146.667% */
  letter-spacing: -0.15px;
  text-transform: capitalize;
  position: relative;
}
.navbar li .nav-link.nav-link:hover {
  color: #fff;
}
.navbar li .nav-link.nav-link:focus {
  color: #fff;
}
.navbar li:hover {
  color: #fff;
}

.verical-header {
  z-index: 2;
  position: fixed;
  transition: all 0.5s ease-out;
  transform: translateY(-120px);
  background-color: #0068B5;
  left: 0;
  width: 100%;
  padding: 0.5rem 0;
  box-shadow: -1px 1px 19px 0px #6a4e4e;
}
.verical-header .vh-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.verical-header .vh-tl-logo {
  padding-left: 2rem;
}
.verical-header .vh-links {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.verical-header .vh-links .vh-social-links {
  padding-right: 1rem;
}
.verical-header .vh-links .vh-social-links ul {
  display: flex;
}
.verical-header .vh-links .vh-social-links li {
  padding: 0 0.3rem;
}
.verical-header .vh-links .vh-web-link a {
  background: #fff;
  padding: 25px 20px 23px;
  font-family: "gill_sans_mtregular";
  font-weight: 400;
}

.show-vhead {
  transform: translateY(0px);
}

.nav-hide {
  transform: translateY(-120px);
}

footer {
  padding: 3.5rem 0;
}
footer h4, footer p {
  font-size: 1.125rem;
  line-height: 1.563rem;
  letter-spacing: -0.36px;
}
footer .tl-social {
  padding: 1.5rem 0;
}
footer .tl-social li {
  display: inline-block;
  margin-right: 0.2rem;
}
footer .tl-social li a {
  width: 3rem;
  height: 3rem;
  border: 1px solid #fff;
  border-radius: 24px;
  text-align: center;
  font-size: 2rem;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer .tl-foot-nav li {
  display: inline-block;
  margin-right: 1rem;
}
footer .tl-foot-nav li a {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.563rem;
  letter-spacing: -0.36px;
  font-family: "gill_sans_mtregular";
}
footer .tl-foot-nav li a:hover {
  color: #fff;
}
footer .credits a:hover {
  color: #fff;
}

.hide-sm, .show-sm, .hamburger, .tl-mobile-menu {
  display: none;
}

.sm-slide {
  display: none !important;
}

@media (min-width: 1700px) {
  :root {
    font-size: 20px;
  }

  .awards-cards-unit .single-card .card-details p:nth-child(2) {
    height: 8.5rem;
  }
}
@media (max-width: 1520px) and (min-width: 1380px) {
  .prod-card-nav {
    z-index: 1;
  }

  .prod-card-nav .prev {
    left: -2rem;
  }

  .prod-card-nav .next {
    right: -2rem;
  }
}
@media (max-width: 1290px) {
  .prod-card-nav {
    z-index: 1;
  }

  .prod-card-nav .prev {
    left: -2rem;
  }

  .prod-card-nav .next {
    right: -2rem;
  }

  .hb-content .hb-r-block {
    width: 30%;
  }
}
@media (max-width: 1024px) {
  /*Headings*/
  .heading-emd {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (max-width: 990px) {
  .hb-content .hb-text h1, .hb-content .hb-text h2 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .hamburger {
    display: block;
    margin-left: 1rem;
  }

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

  .tl-business-cards .col-md-4 {
    --bs-gutter-x: .5rem;
    --bs-gutter-y: .5rem;
  }
  .tl-business-cards .single-card .show-hover {
    opacity: 1;
  }
  .tl-business-cards .single-card .card-details {
    padding: 1rem 1.7rem;
  }
  .tl-business-cards .single-card .card-details h4 {
    font-size: 1rem;
  }

  .tl-two-cards .col-md-6 {
    --bs-gutter-x: .5rem;
    --bs-gutter-y: .5rem;
  }
  .tl-two-cards .single-card .show-hover {
    opacity: 1;
  }
  .tl-two-cards .single-card .card-details h3 {
    font-size: 1.2rem;
  }
  .tl-two-cards .single-card .card-details h5 {
    font-size: 1rem;
  }

  .hb-content .hb-r-block {
    display: none;
  }

  .full-cards .fc-content {
    padding: 2rem 2rem;
  }

  .es-slides .sticky-box {
    padding: 1.3rem;
    min-height: auto;
  }
  .es-slides .sticky-box .es-slider {
    margin-top: 0rem;
    margin-bottom: 1rem;
  }

  /*Padding*/
  .p-t-12 {
    padding-top: 5rem;
  }

  .p-b-12 {
    padding-bottom: 5rem;
  }

  .p-t-10 {
    padding-top: 5rem;
  }

  .p-b-10 {
    padding-bottom: 5rem;
  }

  .p-t-6 {
    padding-top: 2rem;
  }

  .p-b-6 {
    padding-bottom: 2rem;
  }

  .p-t-4 {
    padding-top: 1.5rem;
  }

  .p-b-4 {
    padding-bottom: 1.5rem;
  }

  .p-t-3 {
    padding-top: 1rem;
  }

  .p-b-3 {
    padding-bottom: 1rem;
  }

  .p-t-18 {
    padding-top: 10rem;
  }

  .p-b-18 {
    padding-bottom: 10rem;
  }

  .p-l-6 {
    padding-left: 3rem;
  }

  .p-r-6 {
    padding-right: 3rem;
  }

  .p-r-4 {
    padding-right: 1rem;
  }

  /*Headings*/
  .heading-emd {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .heading-exl {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }

  /*990*/
}
@media (min-width: 768px) {
  .hide-sm {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .show-sm {
    display: inline-block;
  }

  .tl-business-cards .row {
    margin: 0;
    --bs-gutter-x: 0;
  }

  .tl-two-cards .row {
    margin: 0;
    --bs-gutter-x: 0;
  }

  .sustain-slides.half-bg {
    background-size: cover;
  }
  .sustain-slides .tl-showcase {
    padding-top: 1rem;
  }

  .hb-content .hb-text h1, .hb-content .hb-text h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .awards-cards-unit .single-card img {
    width: 100%;
  }
  .awards-cards-unit .single-card .card-details p:nth-child(2) {
    height: auto;
  }

  .tl-comp-info .tl-accordion .accordion-item .accordion-button {
    font-size: 1.2rem;
    line-height: 1.7rem;
  }

  .prod-card-nav {
    display: none;
  }

  .has-bg {
    background-position: right;
  }

  .filters-wrap {
    padding: 0 0;
  }

  .lg-slide {
    display: none !important;
  }

  .sm-slide {
    display: block !important;
  }

  /*padding*/
  .p-t-10 {
    padding-top: 2rem;
  }

  .p-b-10 {
    padding-bottom: 2rem;
  }

  .p-t-18 {
    padding-top: 5rem;
  }

  .p-b-18 {
    padding-bottom: 5rem;
  }

  /*Headings*/
  .heading-exl {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  /*Para*/
  .para-sm {
    font-size: 1.2rem;
    line-height: 1.7rem;
  }

  /*767*/
}
@media (max-width: 576px) {
  .tl-business-cards .single-card .card-details {
    padding: 1rem 1.5rem;
  }

  .sticky-box {
    min-height: auto;
  }

  .verical-header .vh-tl-logo {
    padding-left: 0.5rem;
  }

  /*padding*/
  .p-l-6 {
    padding-left: 0.5rem;
  }

  .p-r-6 {
    padding-right: 0.5rem;
  }

  /*576*/
}
@media (max-width: 360px) {
  .tl-business-cards .single-card .card-details {
    padding: 1rem 1rem;
  }
  .tl-business-cards .single-card .card-details p {
    height: 50px;
  }

  .tl-two-cards .single-card .card-details h5 {
    height: 55px;
  }

  .tl-comp-info .tl-accordion .accordion-item .accordion-button {
    font-size: 1.05rem;
    line-height: 1.5rem;
  }

  .verical-header .vh-links .vh-social-links {
    padding-right: 0.2rem;
  }
  .verical-header .vh-links .vh-social-links li {
    padding: 0 0.2rem;
  }
  .verical-header .vh-links .vh-web-link a {
    padding: 26px 2px 24px;
    font-size: 0.9rem;
  }

  /*360*/
}

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