

/* CUSTOM CHECKBOX */

form .element.select label {
  display: block !important;
}


.element.checkbox .field{
  display: flex;
}

/* The container */
.icheck-primary {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 1rem;
}

/* Hide the browser's default checkbox */
.icheck-primary input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #ff6900;
}

/* On mouse-over, add a grey background color */
.icheck-primary:hover input ~ .checkmark {
  background-color: #712f00;
}

/* When the checkbox is checked, add a blue background */
.icheck-primary input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  background: #fff;
}

/* Show the checkmark when checked */
.icheck-primary input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.icheck-primary .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #ff6900;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}







.media-module .media{
    overflow: hidden;
    position:relative;
    
}

.media-module .header {
    padding-bottom: 1.875rem;
}
.media-module .content {
 padding-bottom: 1rem;
}
.media-module .content .media {
  width: 4.375rem;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}
.media-module .content .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.media-module .content .text .xxs-heading{
    color:#ff6900;
    margin-bottom: 0.1em;
}
/* ------------------------------
Import separate stylesheets
-------------------------------*/
/* ------------------------------
HTML5 OPTIONS
--------------------------------*/
nav, header, section, main, aside, footer {
  display: block;
}

/* ------------------------------
OVERFLOW OPTIONS
--------------------------------*/
.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

/* ------------------------------
CONTENT OVERFLOW CONTROL
--------------------------------*/
.content-wrapper {
  position: relative;
  overflow: hidden;
}

/* ------------------------------
HIDE SCROLLBAR
--------------------------------*/
.hide-scroll {
  overflow: hidden;
}

/* ------------------------------
CLASS TO FIX BOOTSTRAP MODAL ISO
--------------------------------*/
.clickable {
  cursor: pointer;
}

/* ------------------------------
RESPONSIVE PANEL PADDING
--------------------------------*/
.panel-padding {
  width: 100%;
  overflow: hidden;
  padding: 100px 0 100px 0;
}

@media screen and (max-width: 1199px) {
  .panel-padding {
    width: 100%;
    overflow: hidden;
    padding: 80px 0 80px 0;
  }
}

@media screen and (max-width: 991px) {
  .panel-padding {
    width: 100%;
    overflow: hidden;
    padding: 60px 0 60px 0;
  }
}

@media screen and (max-width: 767px) {
  .panel-padding {
    width: 100%;
    overflow: hidden;
    padding: 40px 0 40px 0;
  }
}

@media screen and (max-width: 640px) {
  .panel-padding {
    width: 100%;
    overflow: hidden;
    padding: 30px 0 30px 0;
  }
}

/* ------------------------------
PADDING OPTIONS
--------------------------------*/
.no-top-padding {
  padding-top: 0 !important;
}

.no-bottom-padding {
  padding-bottom: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.padding-top-sm {
  margin-top: 20px !important;
}

.paddingn-top-md {
  margin-top: 40px !important;
}

.padding-top-lg {
  margin-top: 60px !important;
}

.padding-bottom-sm {
  margin-bottom: 20px !important;
}

.padding-bottom-md {
  margin-bottom: 40px !important;
}

.padding-bottom-lg {
  margin-bottom: 60px !important;
}

/* ------------------------------
MARGIN OPTIONS
--------------------------------*/
.no-top-margin {
  margin-top: 0 !important;
}

.no-bottom-margin {
  margin-bottom: 0 !important;
}

.no-margin {
  margin: 0 !important;
}

.margin-top-sm {
  margin-top: 20px !important;
}

.margin-top-md {
  margin-top: 40px !important;
}

.margin-top-lg {
  margin-top: 60px !important;
}

.margin-bottom-sm {
  margin-bottom: 20px !important;
}

.margin-bottom-md {
  margin-bottom: 40px !important;
}

.margin-bottom-lg {
  margin-bottom: 60px !important;
}

/* ------------------------------
ALIGN OPTIONS
--------------------------------*/
.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

/* ------------------------------
TEXT TRANSFORM OPTIONS
--------------------------------*/
.text-transform-uppercase {
  text-transform: uppercase;
}

.text-transform-lowercase {
  text-transform: lowercase;
}

.text-transform-normal {
  text-transform: none;
}

/* ------------------------------
TEXT DECORATION OPTIONS
--------------------------------*/
.td-underline {
  text-decoration: underline;
}

.td-none {
  text-decoration: none;
}

/* ------------------------------
FONT WEIGHT OPTIONS
--------------------------------*/
.fw-bold {
  font-weight: bold !important;
}

.fw-normal {
  font-weight: normal !important;
}

/* ------------------------------
BACKGROUND IMAGE OPTIONS
--------------------------------*/
.full-bg {
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

/* ------------------------------
BACKGROUND POSITIONS OPTIONS
--------------------------------*/
.background-fixed {
  background-attachment: fixed !important;
  -webkit-backface-visibility: hidden !important;
}

/* ------------------------------
PSEUDO OVERLAY EFFECT
--------------------------------*/
.overlay {
  position: relative;
}

.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  display: block;
  z-index: 0;
}

/* ------------------------------
RESPONSIVE IFRAME
--------------------------------*/
.responsive-iframe {
  position: relative;
  padding-bottom: 56.25%;
  /* proportion value to aspect ratio 16:9 (9 / 16 = 0.5625 or 56.25%) */
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ------------------------------
ZOOM ON HOVER EFFECT
--------------------------------*/
.zoom {
  transition: all 12s ease-out;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
}

.zoom:hover {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1.1, M12=-0, M21=0, M22=1.1);
}

/* ------------------------------
CURSOR EFFECT
--------------------------------*/
/* ------------------------------
CURSOR EFFECT
--------------------------------*/
/* ------------------------------
Plugins Defaults
-------------------------------*/
/* transition active state (same for leave and enter) */
.barba-leave-active,
.barba-enter-active {
  transition: opacity 4500s ease;
}

/* initial state */
.barba-leave {
  opacity: 1;
}

.barba-enter {
  opacity: 0;
}

/* ending state */
.barba-leave-to {
  opacity: 0;
}

.barba-enter-to {
  opacity: 1;
}

/* Note that this code can be refactored for optimization */
/* once: active state, define the transition */
.barba-once-active {
  transition: opacity 4s ease;
}

/* once: initial state */
.barba-once {
  opacity: 0;
}

/* once: ending state */
.barba-once-to {
  opacity: 1;
}

/* fade and slide transition active states (same for leave and enter) */
.fade-leave-active,
.fade-enter-active,
.slide-leave-active,
.slide-enter-active {
  transition: opacity 450ms ease, transform 650ms ease-in-out;
}

/* fade transition states */
.fade-leave,
.fade-enter-to {
  opacity: 1;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

/* slide transition states */
.slide-leave,
.slide-enter-to {
  transform: translateX(0);
}

.slide-enter,
.slide-leave-to {
  transform: translateX(100%);
}

/**
 * Swiper 5.3.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 29, 2020
 */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
  z-index:1;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  transition-duration: .1s;
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: .1s;
}

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  transition-duration: .15s;
}

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: .15s;
}

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  transition-duration: .2s;
}

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: .2s;
}

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  transition-duration: .25s;
}

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: .25s;
}

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  transition-duration: .3s;
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: .3s;
}

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  transition-duration: .35s;
}

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: .35s;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  transition-duration: .4s;
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: .4s;
}

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  transition-duration: .45s;
}

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: .45s;
}

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  transition-duration: .5s;
}

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: .5s;
}

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  transition-duration: .55s;
}

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: .55s;
}

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  transition-duration: .6s;
}

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: .6s;
}

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  transition-duration: .65s;
}

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: .65s;
}

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  transition-duration: .7s;
}

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: .7s;
}

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  transition-duration: .75s;
}

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: .75s;
}

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  transition-duration: .8s;
}

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: .8s;
}

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  transition-duration: .85s;
}

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: .85s;
}

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  transition-duration: .9s;
}

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: .9s;
}

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  transition-duration: .95s;
}

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: .95s;
}

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media screen {
  html:not(.no-js) [data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity,transform;
  }
  html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: none;
  }
  html:not(.no-js) [data-aos=fade-up] {
    transform: translate3d(0, 100px, 0);
  }
  html:not(.no-js) [data-aos=fade-down] {
    transform: translate3d(0, -100px, 0);
  }
  html:not(.no-js) [data-aos=fade-right] {
    transform: translate3d(-100px, 0, 0);
  }
  html:not(.no-js) [data-aos=fade-left] {
    transform: translate3d(100px, 0, 0);
  }
  html:not(.no-js) [data-aos=fade-up-right] {
    transform: translate3d(-100px, 100px, 0);
  }
  html:not(.no-js) [data-aos=fade-up-left] {
    transform: translate3d(100px, 100px, 0);
  }
  html:not(.no-js) [data-aos=fade-down-right] {
    transform: translate3d(-100px, -100px, 0);
  }
  html:not(.no-js) [data-aos=fade-down-left] {
    transform: translate3d(100px, -100px, 0);
  }
  html:not(.no-js) [data-aos^=zoom][data-aos^=zoom] {
    opacity: 0;
    transition-property: opacity,transform;
  }
  html:not(.no-js) [data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
  html:not(.no-js) [data-aos=zoom-in] {
    transform: scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-up] {
    transform: translate3d(0, 100px, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-down] {
    transform: translate3d(0, -100px, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-right] {
    transform: translate3d(-100px, 0, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-left] {
    transform: translate3d(100px, 0, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-out] {
    transform: scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-up] {
    transform: translate3d(0, 100px, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-down] {
    transform: translate3d(0, -100px, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-right] {
    transform: translate3d(-100px, 0, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-left] {
    transform: translate3d(100px, 0, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos^=slide][data-aos^=slide] {
    transition-property: transform;
    visibility: hidden;
  }
  html:not(.no-js) [data-aos^=slide][data-aos^=slide].aos-animate {
    visibility: visible;
    transform: translateZ(0);
  }
  html:not(.no-js) [data-aos=slide-up] {
    transform: translate3d(0, 100%, 0);
  }
  html:not(.no-js) [data-aos=slide-down] {
    transform: translate3d(0, -100%, 0);
  }
  html:not(.no-js) [data-aos=slide-right] {
    transform: translate3d(-100%, 0, 0);
  }
  html:not(.no-js) [data-aos=slide-left] {
    transform: translate3d(100%, 0, 0);
  }
  html:not(.no-js) [data-aos^=flip][data-aos^=flip] {
    backface-visibility: hidden;
    transition-property: transform;
  }
  html:not(.no-js) [data-aos=flip-left] {
    transform: perspective(2500px) rotateY(-100deg);
  }
  html:not(.no-js) [data-aos=flip-left].aos-animate {
    transform: perspective(2500px) rotateY(0);
  }
  html:not(.no-js) [data-aos=flip-right] {
    transform: perspective(2500px) rotateY(100deg);
  }
  html:not(.no-js) [data-aos=flip-right].aos-animate {
    transform: perspective(2500px) rotateY(0);
  }
  html:not(.no-js) [data-aos=flip-up] {
    transform: perspective(2500px) rotateX(-100deg);
  }
  html:not(.no-js) [data-aos=flip-up].aos-animate {
    transform: perspective(2500px) rotateX(0);
  }
  html:not(.no-js) [data-aos=flip-down] {
    transform: perspective(2500px) rotateX(100deg);
  }
  html:not(.no-js) [data-aos=flip-down].aos-animate {
    transform: perspective(2500px) rotateX(0);
  }
}

/* ------------------------------
Top
--------------------------------*/
.top {
  /* &.fixed {
        background: rgba(255, 255, 255, 1);
    }
*/
  z-index: 3;
  position: fixed;
  width: 100%;
  background: white;
}

.top .top-actions {
  background: #f7f7f7;
  padding: 10px 0;
}

.top .top-actions ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.top .top-actions ul li {
  display: inline-block;
  margin-left: 20px;
}

.top .top-actions ul li a {
  color: #2e2a28;
  text-decoration: none;
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 600;
  display: block;
}
.top .top-actions ul li a.btn {
  color: #fff;
}
.top .top-actions ul li a.btn:hover {
    color: #fff;
}

.top .top-actions ul li a:hover {
  color: #ff6900;
}

.top .primary-nav {
  padding: 10px 0;
}

.top .primary-nav .brand {
  display: block;
}

.top .primary-nav .brand img {
  width: 80%;
  padding: 20px 0px;
}

@media (min-width: 992px) {
  .top .primary-nav .brand img {
    width: 70%;
    padding: 20px 0px;
  }
}

.top nav {
  text-align: right;
  padding: 10px 0 10px 0;
}

.top nav ul {
  position: relative;
  top: -5px;
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .top nav ul {
    display: inline-flex;
  }
}

.top nav ul li {
  display: block;
  margin-left: 10px;
  position: relative;
  padding: 5px 0;
}

.top nav ul li a {
  color: #2e2a28;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 13px;
  
  font-weight: 600;
  display: block;
}
@media (min-width: 1200px) {
  .top nav ul li a {

  font-size: 14px;

}  
}

.top nav ul li a i {
  margin-left: 5px;
}

.top nav ul li a:hover {
  color: #ff6900;
}

.top nav ul li ul {
  display: none;
  position: absolute;
  left: -20px;
  min-width: max-content;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  top: 27px;
  border-radius: 8px;
  padding: 10px 20px;
  text-align: left;
  margin: 0;
  min-height: 50px;
  overflow: none;
}

.top nav ul li ul li {
    width:100%;
  text-align: left;
  padding: 5px 0;
  margin: 0;
}

.top nav ul li:hover ul {
  display: block;
}

.top nav ul li:nth-last-of-type(-n+2) ul {
  left: auto;
  right: 0;
}

.top nav .burger {
  cursor: pointer;
  display: inline-block;
  background: rgba(0, 0, 0, 0);
  width: 40px;
  height: 30px;
  position: relative;
  top: -4px;
  margin-left: 30px;
}

.top nav .burger span {
  display: block;
  background: #ff6900;
  width: 100%;
  height: 4px;
  border-radius: 23em;
  top: 20px;
  position: relative;
}

.top nav .burger span:before {
  content: "";
  display: block;
  background: #ff6900;
  width: 100%;
  height: 4px;
  border-radius: 23em;
  position: absolute;
  top: -10px;
}

.top nav .burger span:after {
  content: "";
  display: block;
  background: #ff6900;
  width: 100%;
  height: 4px;
  border-radius: 23em;
  position: absolute;
  top: 10px;
}

.top nav .burger:hover span {
  background: #2e2a28;
}

.top nav .burger:hover span:before, .top nav .burger:hover span:after {
  background: #2e2a28;
}

body.active-menu {
  overflow: hidden;
}

body.active-menu .mobile-nav .navigation {
  right: 0px;
}

body.active-menu .mobile-nav .bg {
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.mobile-nav {
  position: relative;
}

.mobile-nav .sub-heading {
  font-size: 16px;
  margin-bottom: 15px;
  padding-left: 20px;
  padding-top: 20px;
}

.mobile-nav .hide-menu {
  cursor: pointer;
  background: #ff6900;
  width: 60px;
  height: 60px;
  display: block;
  position: absolute;
  right: 0px;
  top: 0;
  padding: 20px 15px;
  text-align: center;
}

.mobile-nav .hide-menu:hover {
  background: #2e2a28;
}

.mobile-nav .hide-menu i {
  color: #ffffff;
  font-size: 20px;
  margin: 0 auto;
}

.mobile-nav .bg {
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -2;
  transition: 500ms opacity ease-in-out;
}

.mobile-nav .navigation {
  transition: 800ms all ease-in-out;
  position: fixed;
  z-index: 999;
  right: -300px;
  width: 300px;
  height: 100%;
  overflow-y: scroll;
  overflow-x: visible;
  background: #ffffff;
  padding: 0px;
  box-shadow: 5px 20px 20px rgba(0, 0, 0, 0.2);
}

.mobile-nav .social {
  width: 100%;
  position: fixed;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  bottom: 0;
  list-style: none;
  padding: 0 20px;
  margin: 0;
}

.mobile-nav .social dt {
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  color: rgba(0, 0, 0, 0.5);
  margin-right: 10px;
}

.mobile-nav .social dd {
  display: inline-block;
  padding: 7px 2px;
}

.mobile-nav nav {
  padding: 5px 0 5px 0;
  height: 100%;
}

.mobile-nav nav ul {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 30px 0 70px 0;
  margin: 0;
}

.mobile-nav nav ul li {
  margin-bottom: 10px;
  padding: 0 20px;
}

.mobile-nav nav ul li a {
  text-decoration: none;
  color: #2e2a28;
  font-size: 24px;
  font-size: 1.33333rem;
  font-weight: 700;
  letter-spacing: -1px;
  position: relative;
  display: block;
}

.mobile-nav nav ul li a i {
  position: absolute;
  right: 0;
  top: 7px;
}

.mobile-nav nav ul li a.show-menu + ul {
  display: block;
}

.mobile-nav nav ul li a:hover {
  color: #ff6900;
}

.mobile-nav nav ul li ul {
  margin-top: 10px;
  display: none;
  padding: 20px 0 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav nav ul li ul li {
  padding: 0;
}

.mobile-nav nav ul li ul li a {
  font-size: 20px;
  font-size: 1.11111rem;
}

/*
.topdark, .statictopdark {
    &.fixeddark
     {
        background: rgba(46, 42, 40, 1);
    }
        z-index: 2;
        position: fixed;
        width:100%;
        background: rgba(46, 42, 40, 0);
        transition: 800ms all ease-in-out;
    
        .top-actions {
            background: #f7f7f7;
            padding: 10px 0;
    
            ul {
                list-style: none;
                margin: 0;
                padding: 0;
    
                li {
                    display: inline-block;
                    margin-left: 20px;
    
                    a {
                        color: $body-copy-colour;
                        text-decoration: none;
                        @include font-size(16px);
                        font-weight: 600;
                        display: block;
    
                        &:hover {
                            color: $primary-colour;
                        }
                    }
                }
            }
        }
    
        .primary-nav {
            padding: 10px 0;
    
            .brand {
                display: block;
    
                img {
                    width: 80%;
                    padding: 20px 0px;
    
                    @include largetablet {
                        width: 70%;
                        padding: 20px 0px;
                    }
                }
    
            }
        }
    
        nav {
            text-align: right;
            padding: 10px 0 10px 0;
        ul.dark,
        ul.dark a{
                    color: $body-copy-colour;
                }
            ul {
                position: relative;
                top: -5px;
                display: none;
                
    
                @include largetablet {
                    display: inline-flex;
                }
    
                list-style: none;
                margin:0;
                padding:0;
               
                li {
                    display: inline-block;
                    margin-left: 20px;
                    position: relative;
                    padding:5px 0;
    
                    a {
                        color: $white;
                        text-decoration: none;
                        @include font-size(16px);
                        font-weight: 600;
                        display: block;
                        i{
                            margin-left:5px;
                        }
                        &:hover {
                            color: $primary-colour;
                        }
                    }
    
                    ul {
                        display: none;
                        position: absolute;
                        // width: auto;
                        left:-20px;
                        min-width: 18rem;
                        box-shadow: 0 0 30px rgba(0,0,0,0.1);
                        background: $white;
                        top: 28px;
                        border-radius: 8px;
                        padding: 10px 20px;
                        text-align: left;
                        margin:0;
                        height:300px;
                overflow: scroll;
                        li{
                            display: block;
                            text-align: left;
                            padding:5px 0;
                            margin:0;
                            a{}
                        }
    
                    }
                    &:hover{
                        ul{
                            display: block;
                        }
                    }
                    &:nth-last-of-type(-n+2){
                        ul{
                            left:auto;
                            right:0;
                        }
                        
                    }
                }
            }
    
            .burger {
                cursor: pointer;
                display: inline-block;
                background: rgba(0, 0, 0, 0);
                width: 40px;
                height: 30px;
                position: relative;
                top: -4px;
    
                @include largetablet {
                    // top:3px;
                }
    
                margin-left:30px;
    
                span {
                    display: block;
                    background: $white;
                    width: 100%;
                    height: 4px;
                    border-radius: 23em;
                    top: 20px;
                    position: relative;
    
                    &:before {
                        content: "";
                        display: block;
                        background: $white;
                        width: 100%;
                        height: 4px;
                        border-radius: 23em;
                        position: absolute;
                        top: -10px;
                    }
    
                    &:after {
                        content: "";
                        display: block;
                        background: $white;
                        width: 100%;
                        height: 4px;
                        border-radius: 23em;
                        position: absolute;
                        top: 10px;
                    }
                }
                &:hover{
                    span{
                        background:$white;
                        &:before, &:after{
                            background: $white;
                        }
                    }
                }
    
    
            }
        }
    
    }
    
    body.active-menu{
        overflow: hidden;
        .mobile-nav{
            .navigation{
                right:0px;
            }
            .bg{
                z-index: 2;
                background: rgba(0,0,0,0.2);
                opacity: 1;
            } 
        }
    }
    .mobile-nav{
        position: relative;
        .sub-heading{
            font-size: 16px;
            margin-bottom: 15px;
            padding-left: 20px;
            padding-top: 20px;
            
        }
    .hide-menu{
        cursor: pointer;
        background: $primary-colour;
        &:hover{
            background: $body-copy-colour;
        }
        width:60px;
        height:60px;
        display:block;
        position: absolute;
        right:0px;
        top:0;
        padding:20px 15px;
        text-align: center;
        i{
            color:$white;
            font-size: 20px;
            margin:0 auto;
        }
    }
        .bg{
            background: rgba(0,0,0,0.2);
            opacity: 0;
            position: fixed;
            width: 100%;
            height:100%;
            z-index: -2;
            transition: 500ms opacity ease-in-out;
    
        }
        .navigation{
            transition: 800ms all ease-in-out;
            position: fixed;
            z-index: 999;
            // top:0;
            right:-300px;
            width:300px;
            height:100%;
            overflow-y: scroll;
            overflow-x: visible;
            background: $white;
            padding:0px;
            box-shadow: 5px 20px 20px rgba(0, 0, 0, 0.2);
        }
    
        .social{
            width:100%;
            position: fixed;
            background: $white;
            border-top:1px solid rgba(0,0,0,0.1);
            bottom:0;
            list-style: none;
            padding:0 20px;
            margin:0;
            dt{
                font-size: 12px;
                 font-weight: 700;
                 display: inline-block;
                 color:rgba(0,0,0,0.5);
                 margin-right: 10px;
            }
            dd{
                display: inline-block;
                padding:10px;
            }
        }
        nav{
            
            
            padding:5px 0 5px 0;
            height: 100%;
            ul{
                border-top:1px solid rgba(0,0,0,0.1);
                list-style: none;
                padding:30px 0 70px 0;
                margin:0;
                li{
                    margin-bottom: 10px;
                    padding: 0 20px;
                    a{
                        text-decoration: none;
                        color:$body-copy-colour;
                        @include font-size(24px);
                        font-weight: 700;
                        letter-spacing: -1px;
                        position: relative;
                        display: block;
                        i{
                            position: absolute;
                            right:0;
                            top:7px;
                        }
                        &.show-menu + ul{
                            display: block;
                        }
                        &:hover{
                            color:$primary-colour;
                        }
                    }
                    
                    ul{
                        margin-top:10px;
                        display: none;
                        padding:20px 0 10px 0;
                        border-bottom:1px solid rgba(0,0,0,0.1);
                        li{
                            padding: 0;
                            a{
                                @include font-size(20px); 
                            }
                        }
                       
                    }
                }
                
            }
        }
    }

*/
/* ------------------------------
Headers
--------------------------------*/
/* ------------------------------
Primary nav
--------------------------------*/
/* ------------------------------
Secondary nav
--------------------------------*/
/* ------------------------------
Modules
--------------------------------*/
/* ------------------------------
Modals
--------------------------------*/
.j-modal-active {
  overflow: hidden;
  height: 100%;
}

.j-modal-active .site {
  overflow: hidden;
  height: 100%;
}

.j-modal.fade-in {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.3s ease;
}

.j-modal.fade-out {
  opacity: 1;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.j-modal#login.fade-out {
  opacity: 0;
}

.j-modal-overlay {
  background: rgba(157, 160, 163, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  overflow-y: scroll;
  /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
  display: none;
}

.j-modal {
  overflow-y: scroll;
  /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
  transform: scale(0);
  transition: transform 0.3s ease;
  opacity: 0;
  overflow: auto;
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
}

.j-modal .close {
  padding: 8px 11px;
  width: 40px;
  height: 40px;
}

.j-modal .j-modal-vertical-align {
  display: flex;
  align-items: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 30px auto;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .j-modal .j-modal-vertical-align {
    margin: auto;
  }
}

.j-modal .j-modal-vertical-align .j-modal-content {
  border-top: 1px solid rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  margin: auto;
  box-align: center;
  padding: 40px;
  position: relative;
}

@media (min-width: 768px) {
  .j-modal .j-modal-vertical-align .j-modal-content {
    margin: 0px 0;
    border-top: 0px solid rgba(0, 0, 0, 0);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      max-width:60%;
  }
}

.j-modal .j-modal-vertical-align .j-modal-content .sm-heading {
  display: block;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 30px;
  font-size: 1.66667rem;
}

.j-modal .j-modal-vertical-align .j-modal-content ul {
  font-size: 1em;
  list-style: none;
  padding: 0;
  margin: 0;
}

.j-modal .j-modal-vertical-align .j-modal-content li .active {
  color: #ff6900;
}

.j-modal .j-modal-vertical-align .j-modal-content li a:active,
.j-modal .j-modal-vertical-align .j-modal-content li a:hover {
  color: #712f00;
}

.j-modal .j-modal-vertical-align .j-modal-content li a {
  color: #090909;
  text-decoration: none;
  font-weight: bold;
}

.j-modal .j-modal-vertical-align .j-modal-content .nav-pills {
  font-size: 0.7em;
}

.j-modal .j-modal-vertical-align .j-modal-content .nav-pills .nav-link.active {
  color: #ffffff;
  background-color: #ff6900;
  border: 2px solid #ffffff;
}

.j-modal .j-modal-vertical-align .j-modal-content .nav-pills .nav-link {
  margin-right: 5px;
  background-color: #ffffff;
  border: 2px solid #f8f8f8;
  padding: 5px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .j-modal .j-modal-vertical-align .j-modal-content {
    position: relative;
  }
}

@media (max-height: 400px) {
  .j-modal .j-modal-vertical-align .j-modal-content {
    position: relative;
  }
}

@media (min-width: 768px) {
  .j-modal .j-modal-vertical-align .j-modal-content {
    margin: 0 auto;
  }
}

.j-modal form {
  margin: 0px 0;
}

.Firefox .j-modal-vertical-align {
  top: 15%;
  bottom: 15%;
}

.j-modal .j-modal-vertical-align {
  display: flex;
  align-items: center;
}

@media (max-height: 680px) {
  .j-modal .j-modal-vertical-align {
    display: table;
    align-items: center;
  }
}

/* ------------------------------
  End Default Modals
  --------------------------------*/
.j-modal .j-modal-vertical-align .j-modal-content {
  margin: 30px 30px;
  padding: 25px;
  border-radius: 5px;
}

@media (min-width: 768px) {
  .j-modal .j-modal-vertical-align .j-modal-content {
    margin: 30px auto;
  }
}

@media (min-width: 1024px) {
  .j-modal .j-modal-vertical-align .j-modal-content {
    padding: 40px;
    margin: 30px auto;
  }
}

.j-modal-overlay {
  background: rgba(9, 9, 9, 0.5);
}

.j-modal-content {
  background: #ffffff;
  padding: 15px;
}

.j-modal-content .content a.btn {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.j-modal-content span.close {
  position: absolute;
  top: 5px;
  right: 0px;
}

@media (min-width: 768px) {
  .j-modal-content {
    padding: 25px;
  }
}

@media (min-width: 768px) {
  .small-modal .j-modal-content {
    max-width: 700px;
  }
}

@-moz-document url-prefix() {
  .j-modal-vertical-align {
    height: 100%;
    display: table !important;
  }
  .j-modal-vertical-align .helper {
    position: absolute;
    top: 50%;
    display: table-cell;
    vertical-align: middle;
  }
  .j-modal-vertical-align .j-modal-content {
    position: relative;
    top: -50%;
    margin: 0 auto;
  }
}

/* ------------------------------
Footer
--------------------------------*/
footer {
  background-color: #f8f8f8;
  padding: 30px 0;
}

footer .sm-heading {
  color: #ff6900;
}

footer .xxs-heading {
  margin: 30px 0;
}

footer .contact-details {
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 500;
  margin-bottom: 30px;
}

footer .contact-details strong {
  font-weight: 700;
}

footer .contact-details strong.country {
  display: block;
}

footer .contact-details span.tel {
  display: block;
}

footer .contact-details span.email {
  display: block;
}

footer .footer-links {
  line-height: 1;
}

footer .footer-links dt {
  font-weight: 700;
  margin-bottom: 8px;
}

footer .footer-links dt a {
  color: #2e2a28;
  text-decoration: none;
  font-size: 16px;
  font-size: 0.88889rem;
}

footer .footer-links dd a {
  color: #2e2a28;
  text-decoration: none;
  font-size: 15px;
  font-size: 0.83333rem;
  letter-spacing: -0.5px;
}

footer ul.social {
  list-style: none;
  padding: 0;
  margin: 20px 0 10px 0;
}

footer ul.social li {
  padding: 0;
  margin: 0 10px 0 0;
  display: inline-block;
}

footer ul.social li a {
  color: #2e2a28;
  font-size: 20px;
  font-size: 1.11111rem;
}

/* ------------------------------
Signoff
--------------------------------*/
.signoff {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.signoff p {
  margin-bottom: 0;
  font-size: 13px;
  font-size: 0.72222rem;
}

.signoff p a {
  color: #2e2a28;
  text-decoration: none;
  font-size: 13px;
  font-size: 0.72222rem;
  margin-left: 5px;
}

.signoff p a:hover {
  color: #ff6900;
}

.signoff .awards-qualifcations {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.signoff .awards-qualifcations li {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.signoff .awards-qualifcations li img {
  width: 100%;
  max-width: 100px;
  object-fit: contain;
}

/* ------------------------------
Rich Text Editor
--------------------------------*/
.rte .blog-title {
  margin-bottom: 0.5em;
}

.rte .fa-file-pdf {
  font-size: 3em;
}

.rte .fa-ul a {
  color: #ff6900;
  text-decoration: underline;
}

.rte p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.rte p strong {
  font-weight: bold;
}

.rte img {
  max-width: 100%;
  height: auto;
}

.rte blockquote {
  left: -30px;
  width: calc(100% - 45px);
  color: #ff6900;
  font-weight: 500;
  font-size: 1.2rem;
  position: relative;
  line-height: 1.2;
}

.rte blockquote .author {
  color: #2e2a28;
}

.rte blockquote .job-title {
  color: #2e2a28;
}

@media (max-width: 768px) {
  .rte blockquote {
    position: relative;
    left: 0px;
  }
}

.rte .nav-pills {
  font-size: 0.7em;
  line-height: 1em;
}

.rte .nav-pills li {
  line-height: 1em;
}

.rte .nav-pills span.h6 {
  margin-right: 10px;
}

.rte .nav-pills .nav-link.active {
  color: #ffffff;
  background-color: #9da0a3;
  border: 2px solid #ffffff;
}

.rte .nav-pills .nav-link {
  margin-right: 5px;
  background-color: #ffffff;
  border: 2px solid #f8f8f8;
  padding: 5px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .rte {
    position: relative;
  }
}

@media (max-height: 400px) {
  .rte {
    position: relative;
  }
}

@media (min-width: 768px) {
  .rte {
    margin: 0 auto;
  }
}

.rte .shad {
  box-shadow: 0 0.1rem 1.5rem rgba(0, 0, 0, 0.1) !important;
  display: block;
  padding: 2em;
  border: 1px solid #dee2e6;
}

.rte .event-details p {
  font-size: 12px;
  font-weight: 650;
  color: rgba(0, 0, 0, 0.2);
}

.rte .event-details .fa {
  display: block;
  font-size: 1.6em;
  color: rgba(0, 0, 0, 0.1);
}

.rte .black {
  color: #2e2a28;
  font-weight: 800;
  font-size: 1.2rem;
  position: relative;
  line-height: 1.2;
}

/* ------------------------------
Main
--------------------------------*/
.main {
  padding-top: 155px;
}

.content-wrapper {
  background: #ffffff;
}

.signoff-wrapper {
  background-color: #f8f8f8;
}

.contact.padding-top {
  padding-top: 80px;
}

.blog.padding-top {
  padding-top: 50px;
}
@media (min-width: 320px) {
    .padding-top-bottom{
            padding: 40px 0px 40px 0px;
    }
}

@media (min-width: 768px) {
   .padding-top-bottom{
            padding: 60px 0px 60px 0px;
    }
}

@media (min-width: 1024px) {
    .padding-top-bottom{
            padding: 80px 0px 80px 0px;
    }
}
@media (min-width: 1200px) {
    .padding-top-bottom{
            padding: 100px 0px 100px 0px;
    }
}

@media (min-width: 320px) {
  .padding-top {
    padding-top: 40px;
  }
}

@media (min-width: 768px) {
  .padding-top {
    padding-top: 60px;
  }
}

@media (min-width: 1024px) {
  .padding-top {
    padding-top: 80px;
  }
}
@media (min-width: 1200px) {
  .padding-top {
    padding-top: 100px;
  }
}

@media (min-width: 320px) {
  .padding-bottom {
    padding-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .padding-bottom {
    padding-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .padding-bottom {
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .padding-bottom {
    padding-bottom: 100px;
  }
}

.pt-xs {
  padding-top: 11px;
}

@media (min-width: 768px) {
  .pt-xs {
    padding-top: 10px;
  }
}

@media (min-width: 1024px) {
  .pt-xs {
    padding-top: 15px;
  }
}

.pt-sm {
  padding-top: 22px;
}

@media (min-width: 768px) {
  .pt-sm {
    padding-top: 20px;
  }
}

@media (min-width: 1024px) {
  .pt-sm {
    padding-top: 30px;
  }
}

.pt-md {
  padding-top: 44px;
}

@media (min-width: 768px) {
  .pt-md {
    padding-top: 30px;
  }
}

@media (min-width: 1024px) {
  .pt-md {
    padding-top: 44px;
  }
}

.mt-xs {
  margin-top: 11px;
}

@media (min-width: 768px) {
  .mt-xs {
    margin-top: 10px;
  }
}

@media (min-width: 1024px) {
  .mt-xs {
    margin-top: 15px;
  }
}

.mt-sm {
  margin-top: 22px;
}

@media (min-width: 768px) {
  .mt-sm {
    margin-top: 20px;
  }
}

@media (min-width: 1024px) {
  .mt-sm {
    margin-top: 30px;
  }
}

.mt-md {
  margin-top: 44px;
}

@media (min-width: 768px) {
  .mt-md {
    margin-top: 30px;
  }
}

@media (min-width: 1024px) {
  .mt-md {
    margin-top: 44px;
  }
}

.pb-xs {
  padding-bottom: 11px;
}

@media (min-width: 768px) {
  .pb-xs {
    padding-bottom: 10px;
  }
}

@media (min-width: 1024px) {
  .pb-xs {
    padding-bottom: 15px;
  }
}

.pb-sm {
  padding-bottom: 22px;
}

@media (min-width: 768px) {
  .pb-sm {
    padding-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .pb-sm {
    padding-bottom: 30px;
  }
}

.pb-md {
  padding-bottom: 44px;
}

@media (min-width: 768px) {
  .pb-md {
    padding-bottom: 30px;
  }
}

@media (min-width: 1024px) {
  .pb-md {
    padding-bottom: 44px;
  }
}

.mb-xs {
  margin-bottom: 11px;
}

@media (min-width: 768px) {
  .mb-xs {
    margin-bottom: 10px;
  }
}

@media (min-width: 1024px) {
  .mb-xs {
    margin-bottom: 15px;
  }
}

.mb-sm {
  margin-bottom: 22px;
}

@media (min-width: 768px) {
  .mb-sm {
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .mb-sm {
    margin-bottom: 30px;
  }
}

.mb-md {
  margin-bottom: 44px;
}

@media (min-width: 768px) {
  .mb-md {
    margin-bottom: 30px;
  }
}

@media (min-width: 1024px) {
  .mb-md {
    margin-bottom: 44px;
  }
}

.primary {
  color: #ff6900;
}

.off-white {
  background: #f8f8f8 url("../img/pattern-1.gif") no-repeat right top;
}

.light-grey-bg {
  background: #f8f8f8;
}

.grey-bg {
  background: #9da0a3;
}

.grey-bg h1, .grey-bg h2, .grey-bg h3, .grey-bg h4, .grey-bg h5, .grey-bg h6, .grey-bg p, .grey-bg li {
  color: #ffffff;
}

.waved-bg {
  position: relative;
}

.waved-bg:before {
  content: "";
  background: url("../img/wave-white.svg");
  position: absolute;
  background-position: center top;
  background-repeat: repeat-x;
  background-size: cover;
  width: 100%;
  height: 65px;
  z-index: 1;
  display: block;
  display: block;
  top: -65px;
}

@media (min-width: 768px) {
  .waved-bg:before {
    height: 118px;
  }
}

@media (min-width: 1024px) {
  .waved-bg:before {
    height: 148px;
  }
}

@media (min-width: 1200px) {
  .waved-bg:before {
    height: 188px;
  }
}

@media (min-width: 1400px) {
  .waved-bg:before {
    height: 199px;
  }
}

@media (min-width: 768px) {
  .waved-bg:before {
    top: -118px;
  }
}

@media (min-width: 1024px) {
  .waved-bg:before {
    top: -148px;
  }
}

@media (min-width: 1200px) {
  .waved-bg:before {
    top: -188px;
  }
}

@media (min-width: 1400px) {
  .waved-bg:before {
    top: -188px;
  }
}

.waved-bg.white:before {
  background: url("../img/wave-white.svg");
}

.waved-bg.off-white:before {
  background: url("../img/wave-off-white.svg");
  background-color: #fdfdfd;
}

ul.social {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

ul.social li {
  padding: 0;
  margin: 0 10px 0 0;
  display: inline-block;
}

ul.social li a {
  color: #2e2a28;
  font-size: 20px;
  font-size: 1.11111rem;
}

.has-no-hero {
  padding-top: 80px;
}

@media (min-width: 320px) {
  .has-no-hero {
    padding-top: 30px;
  }
}

@media (min-width: 768px) {
  .has-no-hero {
    padding-top: 30px;
  }
}

@media (min-width: 1024px) {
  .has-no-hero {
    padding-top: 40px;
  }
}

@media (min-width: 1200px) {
  .has-no-hero {
    padding-top: 50px;
  }
}

.svg-icon {
  width: 60px;
  margin-bottom: 20px;
  color: #ffffff;
  fill: #ffffff!important;
}
.svg-icon path {
  fill: #ffffff;
}

.hero.md-banner {
  
  position: relative;
  overflow: hidden;
  height: 300px;
  background-blend-mode: multiply;
     background-image: inherit;
       background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}



@media (min-width: 768px) {
  .hero.md-banner {
    height: 300px;
  }
}

@media (min-width: 1024px) {
  .hero.md-banner {
    height: 300px;
  }
}

.hero.md-banner .content-overlay {
  position: relative;
  min-height: 300px;
  width: 100vw;
  display: flex;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}



.hero.md-banner .content-overlay .content h1, .hero.md-banner .content-overlay .content h2, .hero.md-banner .content-overlay .content h3, .hero.md-banner .content-overlay .content h4, .hero.md-banner .content-overlay .content h5, .hero.md-banner .content-overlay .content h6, .hero.md-banner .content-overlay .content p, .hero.md-banner .content-overlay .content li, .hero.md-banner .content-overlay .content a {
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero.md-banner .content-overlay .content h1, .hero.md-banner .content-overlay .content h2, .hero.md-banner .content-overlay .content h3, .hero.md-banner .content-overlay .content h4, .hero.md-banner .content-overlay .content h5, .hero.md-banner .content-overlay .content h6, .hero.md-banner .content-overlay .content p, .hero.md-banner .content-overlay .content li, .hero.md-banner .content-overlay .content a {
    color: #2e2a28;
  }
}

.hero.md-banner .content-overlay .content .md-heading {
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero.md-banner .content-overlay .content p.lrg-text {
    padding-right: 80px;
  }
}

.hero.md-banner .content-overlay .content .btn {
  margin-right: 10px;
}

.hero.lrg-banner {
  background: #fdfdfd;
  position: relative;
  overflow: hidden;
  height: 869px;
}

.hero.lrg-banner .checkbox #remote {
  color: #2e2a28;
  margin-left: 20px;
}

@media (min-width: 320px) {
  .hero.lrg-banner .checkbox #remote {
    color: #ffffff;
  }
}

@media (min-width: 768px) {
  .hero.lrg-banner .checkbox #remote {
    color: #2e2a28;
  }
}

@media (min-width: 768px) {
  .hero.lrg-banner {
    height: 829px;
  }
}

@media (min-width: 1024px) {
  .hero.lrg-banner {
    height: 889px;
  }
}

.hero.lrg-banner .home-mask {
  height: 745px;
  width: 680px;
  position: absolute;
  right: 0;
  z-index: 0;
}

@media (min-width: 768px) {
  .hero.lrg-banner .home-mask {
    right: -20%;
  }
}

@media (min-width: 1024px) {
  .hero.lrg-banner .home-mask {
    right: -10%;
  }
}

@media (min-width: 1200px) {
  .hero.lrg-banner .home-mask {
    right: 0%;
  }
}

@media (min-width: 1400px) {
  .hero.lrg-banner .home-mask {
    right: 0%;
  }
}

.hero.lrg-banner .home-mask .img {
  height: 100%;
  width: 100%;
  background-position: left center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 100% 0;
  text-align: center;
  overflow: hidden;
  z-index: 0;
  position: relative;
  background-size: cover;
}

.hero.lrg-banner .home-mask .img video {
  display: block;
  width: 200%;
  height: 100%;
  left: -50%;
  position: absolute;
  z-index: -1;
  top: -50px;
}

.hero.lrg-banner .home-mask .img:after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  transition: 800ms all ease-in-out;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero.lrg-banner .home-mask .img:after {
    background: rgba(0, 0, 0, 0);
  }
}

@media (min-width: 768px) {
  .hero.lrg-banner .home-mask .img {
    background-attachment: initial;
  }
}

.hero.lrg-banner .home-mask .mask {
  background-position: left center;
  background-repeat: no-repeat;
  background-position: 100% 0%;
  background-size: 100%;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
}

.hero.lrg-banner .content-overlay {
  position: relative;
  margin-top: 160px;
}

@media (min-width: 768px) {
  .hero.lrg-banner .content-overlay {
    margin-top: 140px;
  }
}

.hero.lrg-banner .content-overlay .content h1, .hero.lrg-banner .content-overlay .content h2, .hero.lrg-banner .content-overlay .content h3, .hero.lrg-banner .content-overlay .content h4, .hero.lrg-banner .content-overlay .content h5, .hero.lrg-banner .content-overlay .content h6, .hero.lrg-banner .content-overlay .content p, .hero.lrg-banner .content-overlay .content li, .hero.lrg-banner .content-overlay .content a {
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero.lrg-banner .content-overlay .content h1, .hero.lrg-banner .content-overlay .content h2, .hero.lrg-banner .content-overlay .content h3, .hero.lrg-banner .content-overlay .content h4, .hero.lrg-banner .content-overlay .content h5, .hero.lrg-banner .content-overlay .content h6, .hero.lrg-banner .content-overlay .content p, .hero.lrg-banner .content-overlay .content li, .hero.lrg-banner .content-overlay .content a {
    color: #2e2a28;
  }
}

@media (min-width: 768px) {
  .hero.lrg-banner .content-overlay .content p.lrg-text {
    padding-right: 80px;
  }
}

.hero.sm-banner {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /*   &.sm-banner {
        width: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        .content-overlay {
            position: relative;
            min-height: 300px;
            @include tablet{
               // min-height: 670px;
            }
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: center;
            color: $white;
            padding: 80px 0 90px 0;
            @include tablet{
                padding: 140px 0 140px 0;
            }
            @include desktop{
                padding: 190px 0 160px 0;
            }
            @include largedesktop{
                padding: 190px 0 160px 0;
            }
            
            .md-heading,
            p {
                color: $white;
                &.lrg-text{
                    @include font-size(20px);
                }
            }
            
        }*/
}

.hero.sm-banner .content-overlay {
  position: relative;
  min-height: 300px;
  width: 100vw;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;

}

.hero.sm-banner.grad-overlay::before {
    content: "";
  background: linear-gradient( to bottom, red, transparent);
    mix-blend-mode: darken;
  position: absolute;
    min-height: 300px;
  width: 100vw;
  text-align: left;
  display: flex;
  z-index: 0;
  display: block;
}

.hero.sm-banner .content-overlay .md-heading,
.hero.sm-banner .content-overlay p {
  color: #ffffff;
}

.hero.sm-banner .content-overlay .md-heading.lrg-text,
.hero.sm-banner .content-overlay p.lrg-text {
  font-size: 20px;
  font-size: 1.11111rem;
}

.hero.sm-banner .content-overlay h1 {
  margin-bottom: 0px;
}

@media (min-width: 1024px) {
  .hero.sm-banner:after {
    height: 138px;
  }
}

@media (min-width: 1200px) {
  .hero.sm-banner:after {
    height: 208px;
  }
}

@keyframes animIndicator {
  0% {
    top: 0%;
  }
  50% {
    top: calc(100% - 25px);
  }
  100% {
    top: 0%;
  }
}

.strong {
  font-weight: 650;
}

.indicator {
  display: block;
  position: absolute;
  width: 4px;
  height: 100px;
  background: #ff6900;
  bottom: 100px;
  right: 50px;
  z-index: 1;
}

.indicator span {
  position: absolute;
  background: #ffffff;
  width: 100%;
  height: 25px;
  top: 0;
  background-size: 100%;
  /* Safari 4+ */
  /* Fx 5+ */
  /* Opera 12+ */
  animation: animIndicator 2s infinite;
  /* IE 10+, Fx 29+ */
}
/* ------------------------------
swiper-hero
--------------------------------*/
.swiper-hero {
  overflow: hidden;
  position: relative;
  width: 100vw;
  height: 60vh;
  max-height: 350px;
}

@media (min-width: 768px) {
  .swiper-hero {
    min-height: 500px;
    max-height: 600px;
  }
  
}

@media (min-width: 768px) {
  .swiper-hero::after {
    content: "";
    width: 463px;
    height: 80vh;
    background: url("../uploads/HomeOverlay.png") no-repeat;
    top: 0;
    right: 0;
    position: absolute;
    display: inline-block;
    margin: 0;
    z-index: 1;
    opacity: 0.6;
    mix-blend-mode: color-dodge;
  }
}

.swiper-hero .swiper-image {
  position: absolute;
  width: 100vw;
  height: inherit;
  margin: 0;
  transform: scale3d(1, 1, 1);
  backface-visibility: hidden !important;
  will-change: transform;
  transition: transform 1500ms ease;
  transition-delay: 0.4s;
  z-index: 1 !important;
}

.swiper-hero .swiper-image::before {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: 1;
  margin: 0;
background: linear-gradient( to bottom, black, transparent);
mix-blend-mode: darken;
text-align: left;
display: flex;
z-index: 0;
display: block;
}
@media (min-width: 1024px) {
  .swiper-hero .swiper-image {
    min-height: inherit;
  }
}



@media (min-width: 1024px) {
  .swiper-hero .swiper-image::before {
    min-height: inherit;
  }
}
.swiper-hero .hero-wrapper {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 3 !important;
  height: 100%;
  width: 100%;
}

.swiper-hero .hero-wrapper .content {
  position: relative;
  height: inherit;
  color: #fff;
  opacity: 0;
  transition-duration: 1.5s, 0.6s;
  transition-property: opacity, transform;
  transition-delay: 0.4s;
}



.swiper-hero .hero-wrapper .content h1,
.swiper-hero .hero-wrapper .content h2,
.swiper-hero .hero-wrapper .content h3,
.swiper-hero .hero-wrapper .content h4,
.swiper-hero .hero-wrapper .content h5,
.swiper-hero .hero-wrapper .content h6,
.swiper-hero .hero-wrapper .content p,
.swiper-hero .hero-wrapper .content li,
.swiper-hero .hero-wrapper .content a {
  color: #ffffff;
}
.swiper-hero .hero-wrapper .content .heading,
.swiper-hero .hero-wrapper .content h1{
    font-size: 2.2rem;
}
@media (min-width: 768px) {
 .swiper-hero .hero-wrapper .content .heading,
.swiper-hero .hero-wrapper .content h1{
    font-size: 3rem;
    line-height: normal;
}   
}
.swiper-hero .hero-wrapper .content p.lrg-text,
.swiper-hero .hero-wrapper .content p{
  padding-right: 40%;
  font-weight: bold;
}

@media (min-width: 768px) {
  .swiper-hero .hero-wrapper .content p.lrg-text,
  .swiper-hero .hero-wrapper .content p{
    padding-right: 0%;
  }
}

.swiper-hero .swiper-slide {
  margin: 0;
  overflow: hidden !important;
}

.swiper-hero .swiper-slide.swiper-slide-active .swiper-image {
  transform: scale3d(1.02, 1.02, 1);
  will-change: transform;
}

.swiper-hero .swiper-slide.swiper-slide-active .content {
  opacity: 1;
}
.swiper-hero .swiper-nav-wrapper {
  position: absolute;
  width: auto;
  bottom: 4rem;
  right: 5rem;
  z-index: 2;
}
@media (min-width: 768px) {
.swiper-hero .swiper-nav-wrapper {
  position: absolute;
  width: auto;
  bottom: 4rem;
  right: 7rem;
  z-index: 2;
}
}

.swiper-hero .swiper-nav-wrapper .swiper-button-next {
  right: 0;
  left: 0;
}

.swiper-hero .swiper-nav-wrapper .swiper-button-prev {
  right: 15px;
  left: auto;
}

.swiper-hero .swiper-nav-wrapper .swiper-button-prev {
  border-radius: 100px;
  border: 2px solid white;
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 13px 11px;
  line-height: 1;
}

.swiper-hero .swiper-nav-wrapper .swiper-button-prev:after {
  content: "\f053";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: white;
  margin-left: 7px;
  transition: all 250ms ease-in-out;
}

.swiper-hero .swiper-nav-wrapper .swiper-button-prev:hover {
  background: rgba(255, 105, 0, 0.6);
}
.swiper-hero .hero-wrapper .content {
  margin-right: 1rem;
}
.swiper-hero .swiper-nav-wrapper .swiper-button-prev:focus {
  outline: none;
}

.swiper-hero .swiper-nav-wrapper .swiper-button-next {
  border-radius: 100px;
  border: 2px solid white;
  width: 50px;
  height: 50px;
  display: inline-block;
  left: auto;
  right: auto;
  padding: 13px 11px;
  line-height: 1;
}

.swiper-hero .swiper-nav-wrapper .swiper-button-next:after {
  content: "\f054";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: white;
  margin-left: 10px;
  transition: all 250ms ease-in-out;
}

.swiper-hero .swiper-nav-wrapper .swiper-button-next:hover {
  background: rgba(255, 105, 0, 0.6);
}

.swiper-hero .swiper-nav-wrapper .swiper-button-next:focus {
  outline: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
/* ------------------------------
End swiper-hero
--------------------------------*/
.hoz-sectors {
  margin-top: 65px;
}
.hoz-sectors a{
    text-decoration:none;
}
.hoz-sectors a:hover{
    text-decoration: underline;
}
@media (min-width: 768px) {
  .hoz-sectors {
    margin-top: 118px;
  }
}

@media (min-width: 1024px) {
  .hoz-sectors {
    margin-top: 148px;
  }
}

@media (min-width: 1200px) {
  .hoz-sectors {
    margin-top: 188px;
  }
}

@media (min-width: 1400px) {
  .hoz-sectors {
    margin-top: 188px;
  }
}

.hoz-sectors {
  position: relative;
}

.hoz-sectors .md-heading {
  color: #ff6900;
  padding-bottom: 55px;
}

@media (min-width: 768px) {
  .hoz-sectors .md-heading {
    padding-bottom: 0;
  }
}

.hoz-sectors .swiper-container {
  margin: 30px 0;
  overflow: visible;
}

.hoz-sectors .swiper-slide {
  height: calc((100% - 30px) / 2);
  /* Center slide text vertically */
  display: flex;
  vertical-align: top;
  margin-bottom: 30px;
}

.hoz-sectors .swiper-slide .img {
  width: 80px;
  height: 80px;
  vertical-align: top;
  margin-right: 15px;
}

.hoz-sectors .swiper-slide .img img {
  width: 100%;
}

.hoz-sectors .swiper-slide .content .xs-heading {
  min-height: 60px;
}

.hoz-sectors .swiper-navigation {
  position: absolute;
  top: -90px;
  right: 0;
}

.hoz-sectors .swiper-navigation div {
  margin: 0 3px;
}

.hoz-sectors .swiper-navigation .swiper-button-prev {
  left: auto;
  right: auto;
  position: relative;
  background: rgba(0, 0, 0, 0);
  border-radius: 100px;
  border: 2px solid #2e2a28;
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 13px 11px;
  line-height: 1;
}

.hoz-sectors .swiper-navigation .swiper-button-prev:after {
  content: "\f053";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #2e2a28;
  margin-left: 7px;
  transition: all 250ms ease-in-out;
}

.hoz-sectors .swiper-navigation .swiper-button-prev:focus {
  outline: none;
}

.hoz-sectors .swiper-navigation .swiper-button-next {
  color: #090909;
  position: relative;
  background: rgba(0, 0, 0, 0);
  border-radius: 100px;
  border: 2px solid #2e2a28;
  width: 50px;
  height: 50px;
  display: inline-block;
  left: auto;
  right: auto;
  padding: 13px 11px;
  line-height: 1;
}

.hoz-sectors .swiper-navigation .swiper-button-next:after {
  content: "\f054";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #2e2a28;
  margin-left: 10px;
  transition: all 250ms ease-in-out;
}

.hoz-sectors .swiper-navigation .swiper-button-next:focus {
  outline: none;
}

.list-of-content {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.list-of-content .no-list-item {
  height: 100%;
  vertical-align: middle;
  content: none;
}

.list-of-content .no-list-item:before {
  content: none;
}

.list-of-content li {
  padding: 0 0 0 50px;
  margin: 0;
  position: relative;
  margin-bottom: 50px;
}

.list-of-content li:before {
  content: "\f00c";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 24px;
  color: #ff6900;
  margin-left: 10px;
  transition: all 250ms ease-in-out;
}

@media (min-width: 768px) {
  .list-of-content li .content .xxs-heading {
    min-height: 60px;
  }
}

@media (min-width: 768px) {
  .list-of-content li {
    display: flex;
    vertical-align: top;
    width: calc(33.33% - 20px);
    flex-direction: column;
    margin-right: 30px;
  }
  .list-of-content li:nth-child(3n) {
    margin-right: 0;
  }
}

.list-of-content-no-tick {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.list-of-content-no-tick .card img {
  padding-bottom: 40px;
}

.list-of-content-no-tick li {
  padding: 50px 20px 50px 20px;
  margin: 0;
  position: relative;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .list-of-content-no-tick li .content .xxs-heading {
    min-height: 60px;
  }
}

@media (min-width: 768px) {
  .list-of-content-no-tick li {
    display: flex;
    vertical-align: top;
    width: calc(33.33% - 20px);
    flex-direction: column;
    margin-right: 30px;
  }
  .list-of-content-no-tick li:nth-child(3n) {
    margin-right: 0;
  }
}

@keyframes slowZoom {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 105%;
  }
  100% {
    background-size: 100%;
  }
}

.awards {
  background-attachment: fixed;
  background-position: top center;
  /* background-repeat: no-repeat; */
  background-size: cover!important;
}

.awards .inline-link:after {
  color: #ffffff;
}

.awards .heading {
  font-size: 70px;
  font-size: 3.88889rem;
}

@media (min-width: 992px) {
  .awards .heading {
    font-size: 90px;
    font-size: 5rem;
  }
}

@media (min-width: 1200px) {
  .awards .heading {
    font-size: 110px;
    font-size: 6.11111rem;
  }
}

.awards .heading span {
  display: block;
}

.awards .heading span:nth-of-type(3) {
  display: inline-block;
}

.awards .heading span.and {
  border-radius: 100em;
  background: #ff6900;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 40px;
  display: inline-block;
  line-height: 1;
  margin-right: 20px;
  width: 70px;
  height: 70px;
  position: relative;
  top: 5px;
  margin-left: 40%;
}

@media (min-width: 768px) {
  .awards .heading span.and {
    top: -3px;
    margin-left: 10%;
  }
}

@media (min-width: 1024px) {
  .awards .heading span.and {
    top: -12px;
  }
}

.awards .abs-testimonial {
  position: absolute;
  top: -160px;
  right: 20px;
  background: white;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 180px;
  z-index: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .awards .abs-testimonial {
    top: -150px;
  }
}

@media (min-width: 1200px) {
  .awards .abs-testimonial {
    top: -150px;
  }
}

.awards .abs-testimonial blockquote {
  display: block;
  text-align: center;
}

.awards .abs-testimonial blockquote q {
  display: block;
  color: #2e2a28;
  font-size: 13px;
  font-size: 0.72222rem;
  line-height: 1.3;
}

.awards .abs-testimonial blockquote .author {
  margin-top: 8px;
  display: block;
  color: #2e2a28;
  font-size: 13px;
  font-size: 0.72222rem;
  line-height: 1.3;
  font-weight: 500;
}

.awards .abs-testimonial .img {
  width: 50px;
  height: 50px;
  border-radius: 100em;
  overflow: hidden;
  margin: 0 auto -40px auto;
  border: 5px solid rgba(255, 255, 255, 0.5);
}

.awards .abs-testimonial .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awards .content {
  color: #ffffff;
}

.awards .content h1, .awards .content h2, .awards .content h3, .awards .content h4, .awards .content h5, .awards .content h6, .awards .content p, .awards .content li {
  color: #ffffff;
}

.awards .awards-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  padding: 150px 0;
}

@media (min-width: 768px) {
  .awards .awards-overlay {
    background: rgba(0, 0, 0, 0.3);
  }
}

@media (min-width: 768px) {
  .awards .awards-overlay {
    padding: 230px 0;
  }
}

@media (min-width: 1024px) {
  .awards .awards-overlay {
    padding: 260px 0;
  }
}

@media (min-width: 1200px) {
  .awards .awards-overlay {
    padding: 300px 0;
  }
}

@media (min-width: 1400px) {
  .awards .awards-overlay {
    padding: 300px 0;
  }
}

.awards .awards-overlay:before {
  content: "";
  background: url("../img/wave-white-top.svg");
  position: absolute;
  background-position: center top;
  background-repeat: repeat-x;
  background-size: cover;
  width: 100%;
  height: 78px;
  z-index: 1;
  display: block;
  display: block;
  top: -1px;
}

@media (min-width: 768px) {
  .awards .awards-overlay:before {
    height: 118px;
  }
}

@media (min-width: 1024px) {
  .awards .awards-overlay:before {
    height: 148px;
  }
}

@media (min-width: 1200px) {
  .awards .awards-overlay:before {
    height: 188px;
  }
}

@media (min-width: 1400px) {
  .awards .awards-overlay:before {
    height: 199px;
  }
}
@media (min-width: 1600px) {
  .awards .awards-overlay:before {
    height: 240px;
  }
}

.awards .awards-overlay:after {
  content: "";
  background: url("../img/wave-white.svg");
  position: absolute;
  background-position: center top;
  background-repeat: repeat-x;
  background-size: cover;
  width: 100%;
  height: 70px;
  z-index: 1;
  display: block;
  display: block;
  bottom: -1px;
}

@media (min-width: 768px) {
  .awards .awards-overlay:after {
    height: 118px;
  }
}

@media (min-width: 1024px) {
  .awards .awards-overlay:after {
    height: 148px;
  }
}

@media (min-width: 1200px) {
  .awards .awards-overlay:after {
    height: 188px;
  }
}

@media (min-width: 1400px) {
  .awards .awards-overlay:after {
    height: 188px;
  }
}

@media (min-width: 1600px) {
  .awards .awards-overlay:after {
    height: 240px;
  }
}

@media (min-width: 768px) {
  .awards {
    background-size: 100%;
    /* Safari 4+ */
    /* Fx 5+ */
    /* Opera 12+ */
    animation: slowZoom 25s infinite;
    /* IE 10+, Fx 29+ */
  }
}

.awards .logos {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
}

.awards .logos li {
  display: flex;
  width: 25%;
  padding: 15px;
}

.awards .logos li .img {
  width: calc(100% - 15px);
}

.awards .logos li .img img {
  width: 100%;
  height: 100%;
  max-height: 100px;
  object-fit: contain;
}

.case-studies {
  position: relative;
}

.case-studies .sm-heading {
  padding-bottom: 55px;
}

@media (min-width: 768px) {
  .case-studies .sm-heading {
    padding-bottom: 0;
  }
}

.case-studies .swiper-container {
  margin: 30px 0;
  overflow: visible;
}

.case-studies .swiper-slide {
  height: calc((100% - 30px) / 2);
  /* Center slide text vertically */
  display: flex;
  vertical-align: top;
  margin-bottom: 30px;
}

.case-studies .swiper-slide .box {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  display: block;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.case-studies .swiper-slide .box a {
  text-decoration: none;
}

.case-studies .swiper-slide .img {
  width: 130px;
  height: 130px;
  vertical-align: top;
  margin: 60px auto;
  display: flex;
  align-items: center;
}

.case-studies .swiper-slide .img img {
  width: 100%;
}

.case-studies .swiper-slide .content {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 15px 0;
}

.case-studies .swiper-slide .content .sub-heading {
  text-transform: unset;
  letter-spacing: 0;
  font-weight: 600;
}

.case-studies .swiper-navigation {
  position: absolute;
  top: -90px;
  right: 0;
}

.case-studies .swiper-navigation div {
  margin: 0 3px;
}

.case-studies .swiper-navigation .swiper-button-prev {
  left: auto;
  right: auto;
  position: relative;
  background: rgba(0, 0, 0, 0);
  border-radius: 100px;
  border: 2px solid #2e2a28;
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 13px 11px;
}

.case-studies .swiper-navigation .swiper-button-prev:after {
  content: "\f053";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #2e2a28;
  margin-left: 7px;
  transition: all 250ms ease-in-out;
}

.case-studies .swiper-navigation .swiper-button-prev:focus {
  outline: none;
}

.case-studies .swiper-navigation .swiper-button-next {
  position: relative;
  background: rgba(0, 0, 0, 0);
  border-radius: 100px;
  border: 2px solid #2e2a28;
  width: 50px;
  height: 50px;
  display: inline-block;
  left: auto;
  right: auto;
  padding: 13px 11px;
}

.case-studies .swiper-navigation .swiper-button-next:after {
  content: "\f054";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #2e2a28;
  margin-left: 10px;
  transition: all 250ms ease-in-out;
}

.case-studies .swiper-navigation .swiper-button-next:focus {
  outline: none;
}
.featured-clients .box {
/*  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
padding:30px;
  display: block;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}
.featured-clients.img {
  width: 130px;
  height: 130px;
  vertical-align: top;
  margin: 60px auto;
  display: flex;
  align-items: center;
}
.featured-clients .img img {
max-height: 100px;
}
/* New slider */
.featured-clients .swiper-wrapper {
    overflow:visible;
 
}
.featured-clients .swiper-container {
    text-align:center;
}
.featured-clients .swiper-navigation {
    margin-top: 2rem;
    width: 100%;
    text-align: center;
    z-index: 0;
}
.featured-clients .swiper-navigation .swiper-button-prev {
  left: auto;
  right: auto;
  position: relative;
  background: rgba(0, 0, 0, 0);
  border-radius: 100px;
  border: 2px solid #2e2a28;
width: 3rem;
height: 3rem;
display: inline-block;
line-height: 3rem;
}

.featured-clients .swiper-navigation .swiper-button-prev:after {
  content: "\f053";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
font-size: 1.2rem;
  color: #2e2a28;
  transition: all 250ms ease-in-out;
}

.featured-clients .swiper-navigation .swiper-button-prev:focus {
  outline: none;
}

.featured-clients .swiper-navigation .swiper-button-next {
  left: auto;
  right: auto;
  position: relative;
  background: rgba(0, 0, 0, 0);
  border-radius: 100px;
  border: 2px solid #2e2a28;
  width: 3rem;
  height: 3rem;
  display: inline-block;
line-height: 3rem;
}

.featured-clients .swiper-navigation .swiper-button-next:after {
  content: "\f054";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
font-size: 1.2rem;
  color: #2e2a28;
  transition: all 250ms ease-in-out;
}

.featured-clients.swiper-navigation .swiper-button-next:focus {
  outline: none;
}

/*end new slider*/
.latest-media-resources {
  position: relative;
}


.latest-media-resources .list-of-media {
  list-style: none;
  padding: 60px 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .latest-media-resources .list-of-media li {
    display: flex;
    vertical-align: top;
    width: calc(33.33% - 20px);
    flex-direction: column;
    margin-right: 30px;
  }
  .latest-media-resources .list-of-media li:nth-child(3n) {
    margin-right: 0;
  }
}

.latest-media-resources .media-snippet {
  position: relative;
  margin-bottom: 30px;
}

.latest-media-resources .media-snippet .img {
  border-radius: 8px;
  overflow: hidden;
}

.latest-media-resources .media-snippet .img a {
  display: block;
  position: relative;
}

.latest-media-resources .media-snippet .img.video {
  position: relative;
}

.latest-media-resources .media-snippet .img.video a:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  transition: 800ms all ease-in-out;
}

.latest-media-resources .media-snippet .img.video a:after {
  content: "\f04b";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: none;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 27px;
  color: white;
  transition: all 250ms ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 70px;
  height: 70px;
  border-radius: 100em;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: calc(50% - 35px);
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 14px 16px 14px 20px;
  transform: scale(1);
}

.latest-media-resources .media-snippet .img.video a:hover:before {
  background: rgba(0, 0, 0, 0.4);
}

.latest-media-resources .media-snippet .img.video a:hover:after {
  transform: scale(0.9);
}

.latest-media-resources .media-snippet .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-media-resources .media-snippet .xs-heading {
  margin: 15px 0;
  color: #ffffff;
}

.latest-media-resources .media-snippet .inline-link {
  color: #ffffff;
}

.latest-media-resources .media-snippet .inline-link:after {
  color: #ffffff;
}

.latest-media-resources a.btn {
  margin: 10px 10px;
}

.job-assets .display-results {
  font-weight: 600;
}

.job-search {
  margin: 30px auto;
}

.job-search.padding-top {
  padding-top: 160px;
}

@media (min-width: 768px) {
  .job-search.padding-top {
    padding-top: 180px;
  }
}

@media (min-width: 1024px) {
  .job-search.padding-top {
    padding-top: 160px;
  }
}

.job-search .back-to {
  margin-bottom: 15px;
  display: inline-block;
}

.job-inner-results {
  list-style: none;
  padding: 0px 0;
  margin: 0px 0;
}

.job-inner-results li {
  margin-bottom: 30px;
}

.job-inner-results li:first-child {
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.job-inner-results li:last-child {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.job-inner-results li .card .job-title {
  padding-bottom: 10px;
}

.jobicons .fas {
  color: #ff6900;
}

.jobicons .far {
  color: #ff6900;
}

.spec .formholder .content {
  margin-bottom: 30px;
}

.spec .formholder form label {
  display: inline-block;
  font-weight: 600;
}

.spec i {
  margin-right: 1em;
}

.spec .element .field .fa-chevron-down {
  color: #2e2a28;
}

.spec .posted {
  display: block;
  color: #2e2a28;
  font-weight: 650;
  margin-bottom: 10px;
  font-size: 16px;
  text-transform: capitalize;
}

.spec.MCS .job-sector {
  color: #ff6900;
}

.spec .job-title {
  padding-bottom: 10px;
  display: block;
  position: relative;
}

.spec .job-title .btn {
  position: absolute;
  right: 15px;
  top: 0;
}

.spec .job-salary, .spec .job-location, .spec .job-type, .spec .job-ref {
  color: #2e2a28;
}

.spec .job-salary label, .spec .job-location label, .spec .job-type label, .spec .job-ref label {
  display: block;
  margin-bottom: 0;
}

.spec .job-desc {
  margin: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
}

.spec .job-desc .fa-ul, .spec .job-desc .fas, .spec .job-desc .far {
  color: #2e2a28;
  font-size: 1.17em;
}

.upload-cta {
  background-color: #9da0a3;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px;
  border-radius: 8px;
  border-bottom-right-radius: 100px;
  color: #ffffff;
}

.upload-cta .xs-heading {
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 700 !important;
}

.upload-cta form p {
  color: #ffffff;
  display: inline-block;
  float: left;
  margin-top: 3px;
}

.upload-cta form .element {
  display: inline-block;
  float: left;
  margin: 0 5px;
  min-height: 50px;
  width: 100%;
}

@media (min-width: 768px) {
  .upload-cta form .element {
    width: auto;
  }
}

.upload-cta form .element label {
  display: none;
}

.upload-cta form .element.select .field {
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.upload-cta form .element.select .field select {
  color: #ffffff;
  padding: 5px 50px 5px 20px;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.upload-cta form .element.select .field i {
  color: #ffffff;
  z-index: 0;
}

.upload-cta form .element.file .field {
  padding: 0px 20px 0px 20px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  max-width: 200px;
  width: 200px;
  overflow: hidden;
}

.upload-cta form .element.file .field .placeholder {
  max-width: 180px;
  overflow: hidden;
  padding: 8px 0;
}

.upload-cta form .element.checkbox {
  margin-top: 3px;
  margin-right: 10px;
}

.upload-cta form .element.checkbox label {
  display: inline-block;
}

.upload-cta form .element.checkbox label span {
  color: #ffffff;
}

.upload-cta form .element.checkbox label span a {
  color: #ffffff;
  text-decoration: underline;
}

.upload-cta form .element.checkbox label span:before {
  border: 1px solid #ffffff;
}

.upload-cta form .element.checkbox label span:after {
  color: #ffffff;
}

.upload-cta form .element.submit .btn {
  padding-left: 40px;
  padding-right: 40px;
}

.articles {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px;
}

.articles .featured {
  list-style: none;
  padding: 0;
  margin: 0;
}

.articles .featured li {
  padding: 0;
  margin: 0;
}

.articles .featured li:last-child .article {
  border-bottom: 0;
}

.articles dl dt {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.blog-details.padding-top {
  padding-top: 38px;
}

@media (min-width: 768px) {
  .blog-details.padding-top {
    padding-top: 70px;
  }
}

@media (min-width: 1024px) {
  .blog-details.padding-top {
    padding-top: 100px;
  }
}

.blog-details .inline-link.back-to {
  margin-top: 10px;
  margin-bottom: 25px;
  display: inline-block;
}

.categories {
  margin: 0px 0;
  border-top: 1px solid rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.categories .btn{
    padding: 0.375rem 0.75rem;
    text-decoration: none;
    border: 0;
    font-size: 18px;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 1rem;
    letter-spacing: -0.5px;
}

.categories .input-group input{
  border-radius: 100em;
  border-top-right-radius: 100em !important; 
  border-bottom-right-radius: 100em !important;
}

@media (min-width: 768px) {
  .categories {
    margin: 0px 0;
    border-top: 0px solid rgba(0, 0, 0, 0);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.categories .sm-heading {
  display: block;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 30px;
  font-size: 1.66667rem;
}

.categories ul {
  font-size: 1em;
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories li .active {
  color: #ff6900;
}

.categories li a:active,
.categories li a:hover {
  color: #712f00;
}

.categories li a {
  color: #090909;
  text-decoration: none;
  font-weight: bold;
}

div.featured {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  margin-top: 43px;
}

.article {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 0px solid rgba(0, 0, 0, 0);
  padding-top: 15px;
  margin-bottom: 0;
}

.article.nobottomborder {
  border-bottom: 0px solid rgba(0, 0, 0, 0.1);
  border-top: 0px solid rgba(0, 0, 0, 0);
  padding-top: 15px;
  margin-bottom: 0;
}
.article .img img {
    max-width: 100%;
    min-height: 185px;
    object-fit: cover;
}
ul.featured {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.featured li .article {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 0px solid rgba(0, 0, 0, 0);
  padding-top: 15px;
  margin-bottom: 0;
}

.wavebg {
  background-color: #f8f8f8;
}

.wave {
  top: 0;
  z-index: 1;
  transform: rotateY(180deg);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxNTBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0zMjAgMjhDMTYwIDI4IDgwIDQ5IDAgNzBWMGgxMjgwdjcwYy04MCAyMS0xNjAgNDItMzIwIDQyLTMyMCAwLTMyMC04NC02NDAtODR6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 100% 150px;
  height: 150px;
}

.divider {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px;
}

.article-assets strong {
  font-weight: 650;
}

.articles {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px;
}

.article .sm-heading a {
  font-weight: 900;
}

.article a {
  color: #2e2a28;
  font-weight: 650;
  text-decoration: none;
}

.article .author {
  font-weight: 650;
  display: block;
  font-size: 15px;
}

.article .job-title {
  font-weight: 250;
  display: block;
  font-size: 15px;
}

.article .post {
  display: block;
  font-size: 14px;
  margin-bottom: 15px;
}

.article span.tag {
  font-weight: 650;
  display: block;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 1.1px;
  color: #ff6900;
}

.filter-switch {
  transition: 500ms all ease-in-out;
  top: 0;
  position: relative;
  z-index: 1;
}

.filter-switch.disappear {
  opacity: 0;
  top: 80px;
}

.filter-switch:hover .shape:not(:hover) {
  filter: grayscale(1);
  opacity: .75;
}

.filter-switch .shape {
  transition: 800ms all ease-in-out;
  cursor: pointer;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #ff6900;
  float: left;
  margin: 5px;
}

@media (min-width: 768px) {
  .filter-switch .shape {
    width: 90px;
    height: 90px;
  }
}

.filter-switch .shape span {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding-top: 20px;
}

.filter-switch .shape span strong {
  color: #ffffff;
  display: block;
  font-size: 25px;
  font-size: 1.38889rem;
  line-height: 0.7;
  font-weight: 650;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .filter-switch .shape span strong {
    font-size: 40px;
    font-size: 2.22222rem;
  }
}

.filter-switch .shape span em {
  color: #ffffff;
  font-size: 16px;
  font-size: 0.88889rem;
  line-height: 1;
  font-variant: normal;
  font-style: normal;
  font-weight: 400;
}


.ethics {
  position: relative;
  top: -50px;

}
.ethics .row{
  display:flex;    
  align-items: stretch;

}
.ethics .row .col-12,
.ethics .row .col-md-4{
        margin-bottom: 2rem;
}
.ethics .card {
height:100%;
  padding: 50px 30px 0px 30px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-bottom: 0px;
}

.card-top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border: 5px solid #ff6900;
  height: 5px;
}

.card {
  background: #ffffff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card.job {
  color: #2e2a28;
  padding: 15px;
}

.card.job i {
  margin-right: 1em;
}

.card.job .fas {
  color: #ff6900;
}

.card.job .far {
  color: #ff6900;
}

.card.job .sector-post {
  display: block;
  margin-top: 20px;
}

.card.job .job-sector {
  font-weight: 650;
  display: block;
}

.card.job .job-post-date {
  display: block;
  color: #2e2a28;
  margin-bottom: 10px;
  font-size: 16px;
  text-transform: capitalize;
}

.card.job p {
  margin-bottom: 5px;
  line-height: 1;
}

.card.job .btn {
  margin-right: 10px;
  margin-bottom: 5px;
}

.card.job .btn{
  background: #ff6900;
}

.card.job .btn:hover{
  background: #712f00;
}


.card.job .btn.btn-white span {
  color: #9da0a3;
}

.card.job .btn.btn-white:hover span {
  color: #ffffff;
}

.card.job .job-type {
  color: #2e2a28;
}

.card.job .job-type label {
  display: block;
}

.card.job .job-title {
  color: #2e2a28;
}

.card.job .job-ref {
  position: absolute;
  right: 15px;
  top: 0;
  border-radius: 50px;
  padding: 5px 10px;
  font-size: 12px;
}

.card.job .job-location {
  font-weight: bold;
  color: #2e2a28;
  padding-bottom: 10px;
}

.card.job .job-location label {
  display: block;
}

.card.job .job-salary {
  color: #2e2a28;
  padding-bottom: 10px;
  font-weight: bold;
  display: flex;
}

.card.job .job-salary label {
  display: block;
}



.card.job .job-snippet p {
  font-size: 16px;
  color: #2e2a28;
  line-height: 1.3;
}

.top-candidates {
  position: relative;
}

.top-candidates .card-top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border: 5px solid #ff6900;
  background-color: #ff6900;
  height: auto;
  color: white;
}

.top-candidates .card-top .xxs-heading,
.top-candidates .card-top .sub-heading {
  color: white;
}

.top-candidates .card-top .sub-heading {
  display: inline;
}

.top-candidates .card-top .xxs-heading {
  margin-bottom: 0.2em;
}

.top-candidates .card-top .fas {
  display: inline;
  margin-right: 10px;
}
@media (max-width: 768px) {
.candidates-bg .align-right {
     text-align: center; 
}
}

.top-candidates .profile {
  text-align: center;
  width:100%;
  height:100%;
}

.top-candidates .profile .content{
  height:100%;
    padding-bottom:0px;
}
.profile .content{
  height:100%;
  padding-bottom:50px;
}
.team-filter .profile .content{
  padding-left: 1rem;
  padding-right: 1rem;
}
.team-filter .btn{
   padding: 9px 20px; 
}
.team-filter form .element.text .field input::placeholder {
color: #090909;
font-weight: 650;
}
.top-candidates .profile .img {
  text-align: center;
  margin: 0px auto;
  padding: 0;
}

.top-candidates .profile .img img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.top-candidates .card {
  padding: 50px 30px;
  margin-bottom: 30px;
  display: flex;
align-items: stretch;

}

.top-candidates .card .xs-heading {
  margin-bottom: 0px;
}

.top-candidates .card .xxs-heading {
  display: inline;
}

.top-candidates .card p {
  font-size: 14px;
}

.top-candidates .swiper-container {
  margin: 30px 0;
  overflow: visible;
}

.top-candidates .swiper-slide {
flex-shrink: 0;
width: 100%;
height: auto;
position: relative;
transition-property: transform;
  vertical-align: top;
  margin-bottom: 30px;
  
}

@media (max-width:900px) {
  .top-candidates .swiper-slide{
    width: 100% !important;
  }
}

.top-candidates .swiper-navigation {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.top-candidates .swiper-navigation div {
  margin: 0 3px;
}

.top-candidates .swiper-navigation .swiper-button-prev {
  position: relative;
  background: rgba(0, 0, 0, 0);
  border-radius: 100px;
  border: 2px solid #2e2a28;
  width: 70px;
  height: 70px;
  display: inline-block;
  left: auto;
  right: auto;
  padding: 20px 20px;
  line-height: 1;
}

.top-candidates .swiper-navigation .swiper-button-prev:after {
  content: "\f053";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #2e2a28;
  margin-left: 7px;
  transition: all 250ms ease-in-out;
}

.top-candidates .swiper-navigation .swiper-button-prev:focus {
  outline: none;
}

.top-candidates .swiper-navigation .swiper-button-next {
  position: relative;
  background: rgba(0, 0, 0, 0);
  border-radius: 100px;
  border: 2px solid #2e2a28;
  width: 70px;
  height: 70px;
  display: inline-block;
  left: auto;
  right: auto;
  padding: 20px 20px;
  line-height: 1;
}

.top-candidates .swiper-navigation .swiper-button-next:after {
  content: "\f054";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #2e2a28;
  margin-left: 10px;
  transition: all 250ms ease-in-out;
}

.top-candidates .swiper-navigation .swiper-button-next:focus {
  outline: none;
}



.card-top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border: 5px solid #ff6900;
  height: 5px;
}

.card {
  background: #ffffff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card.job {
  color: #2e2a28;
  padding: 15px;
}

.card.job i {
  margin-right: 1em;
}

.card.job .fas {
  color: #ff6900;
}

.card.job .far {
  color: #ff6900;
}

.card.job .sector-post {
  display: block;
  margin-top: 20px;
}

.card.job .job-sector {
  font-weight: 650;
  display: block;
}

.card.job .job-post-date {
  display: block;
  color: #2e2a28;
  margin-bottom: 10px;
  font-size: 16px;
  text-transform: capitalize;
}

.card.job p {
  margin-bottom: 5px;
  line-height: 1;
}

.card.job .btn {
  margin-right: 10px;
  margin-bottom: 5px;
  position: absolute;
bottom: 0;
}

.card.job .btn.btn-white span {
  color: #9da0a3;
}

.card.job .btn.btn-white:hover span {
  color: #ffffff;
}

.card.job .job-type {
  color: #2e2a28;
  display: flex;
}

.card.job .job-type label {
  display: block;
}

.card.job .job-title {
  color: #2e2a28;
}

.card.job .job-ref {
  position: absolute;
  right: 15px;
  top: 0;
  border-radius: 50px;
  padding: 5px 10px;
  font-size: 12px;
}

.card.job .job-location {
  font-weight: bold;
  color: #2e2a28;
  padding-bottom: 10px;
  display:flex;
}

.card.job .job-location label {
  display: block;
}

.card.job .job-salary {
  color: #2e2a28;
  padding-bottom: 10px;
  font-weight: bold;
}

.card.job .job-salary label {
  display: block;
}

.card.job .job-snippet {
color: #2e2a28;
font-size: 16px;
margin: 20px 0 65px 0;
line-height: 1.2;
}

.card.job .job-snippet p {
  font-size: 16px;
  color: #2e2a28;
  line-height: 1.3;
}

.message-form .formholder .element label {
  display: inline-block;
}

.job-inner-results {
  list-style: none;
  padding: 0px 0;
  margin: 0px 0;
}
.job-inner-results a{
    text-decoration:none;
}
.job-inner-results a:hover{
    text-decoration: underline;
}
.job-inner-results li {
  margin-bottom: 30px;
}

.job-inner-results li:first-child {
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.job-inner-results li:last-child {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.job-inner-results li .card .job-title {
  padding-right: 100px;
}

.job-search-filters h5 {
  font-size: 1.8em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .job-search-filters h5 {
    margin-bottom: .5rem;
  }
}

.job-search-filters h5 span {
  display: inline-block;
  font-size: 12px;
  font-size: 0.66667rem;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.5px;
  top: -2px;
}

@media (min-width: 768px) {
  .job-search-filters h5 span {
    display: none;
  }
}

.job-search-filters h5 span i {
  margin: 0 2px 0 5px;
}

.job-search-filters h5.show span i:before {
  content: "\f106";
}

.job-search-filters .search-form {
  display: none;
}

@media (min-width: 768px) {
  .job-search-filters .search-form {
    display: block;
  }
}

.job-search-filters .search-form.show {
  display: block;
}

.job-search-filters .element {
  margin-bottom: 5px;
}

.job-search-filters .element label {
  display: block;
  margin-bottom: 15px;
}

.job-search-filters .element.text {
  margin-bottom: 0;
}

.job-search-filters .element.submit {
  margin-bottom: 15px;
}

.job-search-filters .element.submit input {
  width: 100%;
}

.job-search-filters ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.job-search-filters ul li {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.job-search-filters ul li .main-label {
  color: #2e2a28;
  font-weight: 650;
  margin-bottom: 10px;
  font-size: 16px;
  text-transform: capitalize;
}

.job-search-filters ul li .main-label.toggle-collapse {
  cursor: pointer;
}

.job-search-filters ul li .main-label.toggle-collapse:hover {
  color: #ff6900;
}

.job-search-filters ul li .ico {
  position: absolute;
  right: 0;
  display: none;
}

.job-search-filters ul li .collapsable-filters {
  display: block;
  padding-top: 15px;
}

.list-of-profiles {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 419px) {
.list-of-profiles li {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 2rem;
}

  .list-of-profiles li .profile {
    margin: 5px;
  }
}
@media (min-width: 420px) {
  .list-of-profiles li {
    flex: 0 0 50%;
    max-width: 50%;
      margin-bottom: 2rem;
  }
  .list-of-profiles li .profile {
    margin: 0 15px 20px 15px;
          height: 100%;
  }
}

@media (min-width: 768px) {
  .list-of-profiles li {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .list-of-profiles li .profile {
    margin: 0 15px 40px 15px;
      height: 100%;
  }
}

@media (min-width: 1024px) {
  
  .list-of-profiles li {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 1024px) {
  .list-of-profiles li:nth-last-child(-n+3) .profile {
    margin-bottom: 0;
  }
}

.job-details.padding-top,
.person-details.padding-top {
  padding-top: 200px;
}

@media (min-width: 768px) {
  .job-details.padding-top,
  .person-details.padding-top {
    padding-top: 180px;
  }
}

@media (min-width: 1024px) {
  .job-details.padding-top,
  .person-details.padding-top {
    padding-top: 200px;
  }
}

.job-details .back-to,
.person-details .back-to {
  margin-top: 15px;
  margin-bottom: 30px;
  display: inline-block;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 30px 0;
}

@media (min-width: 992px) {
  .job-details .back-to,
  .person-details .back-to {
    margin-bottom: 30px;
    border-top: 0px solid rgba(0, 0, 0, 0);
    border-bottom: 0px solid rgba(0, 0, 0, 0);
    width: auto;
    padding: 0px 0;
  }
}
.job-details .profile a{
    text-decoration: none;
}
.job-details .profile .content a h3:hover{
 color: #ff6900!important;   
}
.job-details .profile .xs-heading.profile-name,
.person-details .profile .xs-heading.profile-name {
  font-size: 20px;
  font-size: 1.11111rem;
}

.job-details .profile .position,
.person-details .profile .position {
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 500;
}

.job-details .back-to,
.person-details .back-to {
  margin-top: 15px;
  margin-bottom: 30px;
  display: inline-block;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 30px 0;
}

@media (min-width: 992px) {
  .job-details .back-to,
  .person-details .back-to {
    margin-bottom: 30px;
    border-top: 0px solid rgba(0, 0, 0, 0);
    border-bottom: 0px solid rgba(0, 0, 0, 0);
    width: auto;
    padding: 0px 0;
  }
}

.job-details .profile,
.person-details .profile {
  padding: 10% 0% 30px 0%;
}

.person-details .profile img{
width: 12rem;
height: 12rem;
    border-radius:100%;
    object-fit: cover;
}
.job-details .profile .xs-heading.profile-name,
.person-details .profile .xs-heading.profile-name {
  font-size: 20px;
  font-size: 1.11111rem;
}

.job-details .profile .position,
.person-details .profile .position {
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 500;
}

.profile {
  text-align: center;
}
.job-details .profile .img img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.profile .img {
  border-radius: 100%;
  border-top-right-radius: 0;
 /* overflow: hidden;*/
}
.team-filter .profile .img {
  text-align: center;
  margin: 0px auto;
  padding: 0;
}

.team-filter .profile .img img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.profile .content .profile-name {
  margin: 15px 0 15px 0;
}

.profile .content .position {
  margin-bottom: 15px;
  display: block;
  color: #ff6900;
}
.person-details .profile .content ul.contact-more {
list-style: none;
position: relative;
top: 2rem;
width: 100%;
text-align: center;
padding: 0 10% 0 10%;
}
.profile .content ul.contact-more {
list-style: none;
position: absolute;
bottom: 0;
width: calc(100% - 30px);
text-align: center;
padding: 0 10% 0 10%;
}
.profile ul.contact-more li {
  display: inline-block;
}

.profile ul.contact-more li a {
 background: #ff6900;
border-radius: 100px;
width: 2.5rem;
height: 2.5rem;
display: block;
line-height: 2.5rem;
text-align: center;
}

.profile ul.contact-more li a i {
  color: #ffffff;
}

.profile ul.contact-more li:nth-child(1) a {
  background: #ff6900;
}

.profile ul.contact-more li:nth-child(2) a {
  background: #2e2a28;
}

.profile ul.contact-more li:nth-child(3) a {
  background: #2e2a28;
}
.profile ul.contact-more {
list-style: none;
position: absolute;
bottom: 0;
width:100%;
/*width: calc(100% - 50px);*/
text-align: center;
padding: 0% 10% 0px 10%;
}
.top-candidates .profile .content ul.contact-more {
list-style: none;
padding: 0;
position: absolute;
bottom: 0;
width: calc(100% - 60px);
text-align: center;
}

.profile .content ul.contact-more li {
  display: inline-block;
}

.profile .content ul.contact-more li a {
 background: #ff6900;
border-radius: 100px;
width: 2.5rem;
height: 2.5rem;
display: block;
line-height: 2.5rem;
text-align: center;
}

.profile .content ul.contact-more li a i {
  color: #ffffff;
}

.profile .content ul.contact-more li:nth-child(1) a {
  background: #ff6900;
}

.profile .content ul.contact-more li:nth-child(2) a {
  background: #2e2a28;
}

.profile .content ul.contact-more li:nth-child(3) a {
  background: #2e2a28;
}

.jobs-slider {
  background-attachment: fixed;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.jobs-slider-overlay {
  background: rgba(0, 0, 0, 0);
  position: relative;
  padding: 100px 0;
}

@media (min-width: 768px) {
  .jobs-slider-overlay {
    background: rgba(0, 0, 0, 0);
  }
}

.jobs-slider-overlay:before {
  content: "";
  /*background: url('../img/wave-white-btm.svg');
        -moz-transform: scaleY(-1);
        -o-transform: scaleY(-1);
        -webkit-transform: scaleY(-1);
        transform: scaleY(-1);
        filter: FlipV;
        -ms-filter: "FlipV";*/
  background: url("../img/wave-white-top-new.svg");
  position: absolute;
  background-position: center top;
  background-repeat: repeat-x;
  background-size: cover;
  width: 100%;
  height: 65px;
  z-index: 1;
  display: block;
  top: -1px;
}

@media (min-width: 768px) {
  .jobs-slider-overlay:before {
    height: 118px;
  }
}

@media (min-width: 1024px) {
  .jobs-slider-overlay:before {
    height: 148px;
  }
}

@media (min-width: 1200px) {
  .jobs-slider-overlay:before {
    height: 188px;
  }
}

@media (min-width: 1400px) {
  .jobs-slider-overlay:before {
    height: 210px;
  }
}
@media (min-width: 1600px) {
  .jobs-slider-overlay:before {
    height: 240px;
  }
}
.jobs-slider-overlay:after {
  content: "";
  position: absolute;
  background-position: center top;
  background-repeat: repeat-x;
  background-size: cover;
  width: 100%;
  height: 65px;
  z-index: 1;
  display: block;
  display: block;
  bottom: 0;
}

@media (min-width: 768px) {
  .jobs-slider-overlay:after {
    height: 118px;
  }
}

@media (min-width: 1024px) {
  .jobs-slider-overlay:after {
    height: 148px;
  }
}

@media (min-width: 1200px) {
  .jobs-slider-overlay:after {
    height: 188px;
  }
}

@media (min-width: 1400px) {
  .jobs-slider-overlay:after {
    height: 188px;
  }
}

@media (min-width: 768px) {
  .jobs-slider-overlay {
    background-size: 100%;
    /* Safari 4+ */
    /* Fx 5+ */
    /* Opera 12+ */
    animation: slowZoom 25s infinite;
    /* IE 10+, Fx 29+ */
  }
}

.jobs-slider-overlay .inline-link:after {
  color: #ffffff;
}

.jobs-slider-overlay .sub-heading {
  color: #ffffff;
}

.jobs-slider-overlay .heading {
  font-size: 70px;
  font-size: 3.88889rem;
}

@media (min-width: 992px) {
  .jobs-slider-overlay .heading {
    font-size: 90px;
    font-size: 5rem;
  }
}

@media (min-width: 1200px) {
  .jobs-slider-overlay .heading {
    font-size: 110px;
    font-size: 6.11111rem;
  }
}

.jobs-slider-overlay .heading span {
  display: block;
}

.jobs-slider-overlay .heading span:nth-of-type(3) {
  display: inline-block;
}

.jobs-slider-overlay .heading span.and {
  border-radius: 100em;
  background: #ff6900;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 40px;
  display: inline-block;
  line-height: 1;
  margin-right: 20px;
  width: 70px;
  height: 70px;
  position: relative;
  top: 5px;
  margin-left: 40%;
}

@media (min-width: 768px) {
  .jobs-slider-overlay .heading span.and {
    top: -3px;
    margin-left: 10%;
  }
}

@media (min-width: 1024px) {
  .jobs-slider-overlay .heading span.and {
    top: -12px;
  }
}

.latest-jobs-slider {
  padding-top: 30px;
  padding-bottom: 30px;
}

.latest-jobs-slider.sector .col{
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.latest-jobs-slider .content .sm-heading {
  color: #ffffff;
}

.latest-jobs-slider .content .inline-link {
  color: #ffffff;
}

.latest-jobs-slider .content .inline-link:after {
  color: #ffffff;
}

@media (min-width: 768px) {
  .latest-jobs-slider {
    padding-top: 50px;
  }
}

@media (min-width: 768px) {
  .latest-jobs-slider {
    padding-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .latest-jobs-slider {
    padding-bottom: 100px;
  }
}

.latest-jobs-slider.waved-bg {
  padding-bottom: 100px;
}

.latest-jobs-slider.waved-bg:after {
  bottom: 30%;
  z-index: 0;
}

.latest-jobs-slider.waved-bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: #fcfaff;
}

.latest-jobs-slider .swiper-container.jobs {
  overflow: visible;
  margin: 50px 0 0 0;
}
.latest-jobs-slider .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    position: relative;
    transition-property: transform;
    align-items: stretch;
    align-content: stretch;
    display: flex;
}


.latest-jobs-slider .filter-switch {
  margin-top: 50px;
}

.latest-jobs-slider .swiper-navigation {
  position: relative;
  top: 30px;
}

.latest-jobs-slider .swiper-navigation div {
  margin: 0 0.5rem;
}

.latest-jobs-slider .swiper-navigation .swiper-button-prev {
  position: relative;
  border: 2px solid #ffffff;
  border-radius: 100%;
  display: inline-block;
  width: 4rem;
  height: 4rem;
  display: inline-block;
  line-height: 4rem;
  text-align: center;
}

.latest-jobs-slider .swiper-navigation .swiper-button-prev:after {
  content: "\f053";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1rem;
  color: #ffffff;
  transition: all 250ms ease-in-out;
}

.latest-jobs-slider .swiper-navigation .swiper-button-prev:focus {
  outline: none;
}

.latest-jobs-slider .swiper-navigation .swiper-button-next {
  position: relative;
  border: 2px solid #ffffff;
  border-radius: 100%;
  display: inline-block;
  width: 4rem;
  height: 4rem;
  display: inline-block;
  line-height: 4rem;
  text-align: center;
}

.latest-jobs-slider .swiper-navigation .swiper-button-next:after {
  content: "\f054";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1rem;
  color: #ffffff;
  transition: all 250ms ease-in-out;
}

.latest-jobs-slider .swiper-navigation .swiper-button-next:focus {
  outline: none;
}

.latest-jobs-slider.sector .swiper-container.jobs {
  overflow: hidden;
  padding-bottom: 30px;
}

.latest-jobs-slider.sector .swiper-navigation {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.latest-jobs-slider.sector .swiper-navigation div {
  margin: 0 1rem;
}

.testimonials {
  background: #9da0a3;
  margin: 40px 0;
}

.testimonials .swiper-slide {
  opacity: 0.2;
  transition: 500ms opacity ease-in-out;
}

.testimonials .swiper-slide-active {
  opacity: 1;
}

.testimonials .swiper-navigation {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  right: 15px;
}

.testimonials .swiper-navigation div {
  margin: 0 3px;
}

.testimonials .swiper-navigation .swiper-button-prev {
  left: auto;
  right: auto;
  position: relative;
  background: #ff6900;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 13px 11px;
}

.testimonials .swiper-navigation .swiper-button-prev:after {
  content: "\f053";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #ffffff;
  margin-left: 10px;
  transition: all 250ms ease-in-out;
}

.testimonials .swiper-navigation .swiper-button-prev:focus {
  outline: none;
}

.testimonials .swiper-navigation .swiper-button-next {
  position: relative;
  background: #ff6900;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  display: inline-block;
  left: auto;
  right: auto;
  padding: 13px 11px;
}

.testimonials .swiper-navigation .swiper-button-next:after {
  content: "\f054";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #ffffff;
  margin-left: 10px;
  transition: all 250ms ease-in-out;
}

.testimonials .swiper-navigation .swiper-button-next:focus {
  outline: none;
}

.testimonials-slider-overlay {
  position: relative;
  /*   &:after {
        content: "";
        background: url('../img/wave-white.svg');
        position: absolute;
        background-position: center top;
        background-repeat: repeat-x;
        background-size: cover;
        width: 100%;
        height: 65px;
        z-index: 1;
        display: block;
        @include tablet {
            height: 118px;
        }
        @include desktop {
            height: 148px;
        }
        @include largedesktop {
            height: 188px;
        }
        @include widescreen {
            height: 188px;
        }
        display:block;
        bottom: 0;
    }*/
}

.testimonials-slider-overlay:before {
  content: "";
  position: absolute;
  background-position: center top;
  background-repeat: repeat-x;
  background-size: cover;
  width: 100%;
  height: 65px;
  z-index: 1;
  display: block;
  top: 0;
}

@media (min-width: 768px) {
  .testimonials-slider-overlay:before {
    height: 118px;
  }
}

@media (min-width: 1024px) {
  .testimonials-slider-overlay:before {
    height: 148px;
  }
}

@media (min-width: 1200px) {
  .testimonials-slider-overlay:before {
    height: 188px;
  }
}

@media (min-width: 1400px) {
  .testimonials-slider-overlay:before {
    height: 188px;
  }
}

@media (min-width: 768px) {
  .testimonials-slider-overlay {
    background-size: 100%;
    /* Safari 4+ */
    /* Fx 5+ */
    /* Opera 12+ */
    animation: slowZoom 25s infinite;
    /* IE 10+, Fx 29+ */
  }
}

.testimonials-slider-overlay .inline-link:after {
  color: #2e2a28;
}

.testimonials-slider-overlay .sub-heading {
  color: #2e2a28;
}

.testimonials-slider-overlay .heading {
  font-size: 70px;
  font-size: 3.88889rem;
}

@media (min-width: 992px) {
  .testimonials-slider-overlay .heading {
    font-size: 90px;
    font-size: 5rem;
  }
}

@media (min-width: 1200px) {
  .testimonials-slider-overlay .heading {
    font-size: 110px;
    font-size: 6.11111rem;
  }
}

.testimonials-slider-overlay .heading span {
  display: block;
}

.testimonials-slider-overlay .heading span:nth-of-type(3) {
  display: inline-block;
}

.testimonials-slider-overlay .heading span.and {
  border-radius: 100em;
  background: #ff6900;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 40px;
  display: inline-block;
  line-height: 1;
  margin-right: 20px;
  width: 70px;
  height: 70px;
  position: relative;
  top: 5px;
  margin-left: 40%;
}

@media (min-width: 768px) {
  .testimonials-slider-overlay .heading span.and {
    top: -3px;
    margin-left: 10%;
  }
}

@media (min-width: 1024px) {
  .testimonials-slider-overlay .heading span.and {
    top: -12px;
  }
}

.latest-testimonials-slider .swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  align-content: stretch;
  height: 100%;
}
  /*    padding-top: 30px;

    @include tablet {
        padding-top: 50px;
    }

    @include desktop {
        padding-top: 100px;
    }
    padding-bottom: 30px;

    @include tablet {
        padding-bottom: 50px;
    }

    @include desktop {
        padding-bottom: 100px;
    }*/


.latest-testimonials-slider .content .sm-heading {
  color: #2e2a28;
}

.latest-testimonials-slider .content .inline-link {
  color: #2e2a28;
}

.latest-testimonials-slider .content .inline-link:after {
  color: #2e2a28;
}

.latest-testimonials-slider.waved-bg {
  padding-bottom: 100px;
}

.latest-testimonials-slider.waved-bg:after {
  bottom: 30%;
  z-index: 0;
}

.latest-testimonials-slider.waved-bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: #fcfaff;
}

.latest-testimonials-slider .swiper-container.jobs {
  overflow: visible;
  margin: 50px 0 0 0;
}

.latest-testimonials-slider .filter-switch {
  margin-top: 50px;
}

.latest-testimonials-slider .swiper-navigation {
  position: relative;
  z-index: 1;
  top: 30px;
}

.latest-testimonials-slider .swiper-navigation div {
  margin: 0 3px;
}

.latest-testimonials-slider .swiper-navigation .swiper-button-prev {
  position: relative;
  border: 2px solid #090909;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  display: inline-block;
  left: auto;
  right: auto;
  padding: 20px 20px;
}

.latest-testimonials-slider .swiper-navigation .swiper-button-prev:after {
  content: "\f053";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #090909;
  margin-left: 10px;
  transition: all 250ms ease-in-out;
}

.latest-testimonials-slider .swiper-navigation .swiper-button-prev:focus {
  outline: none;
}

.latest-testimonials-slider .swiper-navigation .swiper-button-next {
  color: #090909;
  position: relative;
  border: 2px solid #090909;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  display: inline-block;
  left: auto;
  right: auto;
  padding: 20px 20px;
}

.latest-testimonials-slider .swiper-navigation .swiper-button-next:after {
  color: #090909;
  content: "\f054";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  margin-left: 10px;
  transition: all 250ms ease-in-out;
}

.latest-testimonials-slider .swiper-navigation .swiper-button-next:focus {
  outline: none;
}

.latest-testimonials-slider.sector .swiper-container.jobs {
  overflow: hidden;
  padding-bottom: 30px;
}

.latest-testimonials-slider.sector .swiper-navigation {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  z-index:2;
}

.latest-testimonials-slider.sector .swiper-navigation div {
  margin: 0 5px;
}

.filter-switch {
  transition: 500ms all ease-in-out;
  top: 0;
  position: relative;
  z-index: 1;
}

.filter-switch.disappear {
  opacity: 0;
  top: 80px;
}

.filter-switch:hover .shape:not(:hover) {
  filter: grayscale(1);
  opacity: .75;
}

.filter-switch .shape {
  transition: 800ms all ease-in-out;
  cursor: pointer;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #ff6900;
  float: left;
  margin: 5px;
}

@media (min-width: 768px) {
  .filter-switch .shape {
    width: 90px;
    height: 90px;
  }
}

.filter-switch .shape span {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding-top: 20px;
}

.filter-switch .shape span strong {
  color: #ffffff;
  display: block;
  font-size: 25px;
  font-size: 1.38889rem;
  line-height: 0.7;
  font-weight: 650;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .filter-switch .shape span strong {
    font-size: 40px;
    font-size: 2.22222rem;
  }
}

.filter-switch .shape span em {
  color: #ffffff;
  font-size: 16px;
  font-size: 0.88889rem;
  line-height: 1;
  font-variant: normal;
  font-style: normal;
  font-weight: 400;
}

.testimonial-bg {
  background-color: #ff6900;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 125px 25px 25px 25px;
  border-radius: 8px;
  color: #ffffff;
  height:100%;
}

.testimonial-bg .xs-heading {
  color: #ffffff;
  margin-bottom: 5px;
  font-weight: 700 !important;
}

.testimonial-bg .sub-heading,
.testimonial-bg p {
  color: #ffffff;
}

.newsletter-bg {
  background-color: #ff6900;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 125px 25px 25px 25px;
  border-radius: 8px;
  color: #ffffff;
}

.newsletter-bg .xs-heading {
  color: #ffffff;
  margin-bottom: 5px;
  font-weight: 700 !important;
}

.newsletter-bg .sub-heading,
.newsletter-bg p {
  color: #ffffff;
}

.signup-bg {
  background-color: #ff6900;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 25px 25px 25px;
  color: #ffffff;
}

.signup-bg .xs-heading {
  color: #ffffff;
  margin-bottom: 0.5em;
  font-weight: 700 !important;
}

.signup-bg .sub-heading,
.signup-bg p {
  color: #ffffff;
}

.signup-bg form .element.text .field {
  border: 2px solid #ffffff;
  padding: 8px 28px;
  border-radius: 100px;
  color: #ffffff;
}

.signup-bg form input {
  color: #ffffff;
}

.signup-bg form div.field {
  color: #ffffff;
}

.moveposition {
  position: relative;
  z-index: 1;
  bottom: -20px;
}

.office-cta {
  background-color: #ff6900;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  color: #ffffff;
  margin-bottom: 4rem;
 
}
.office-cta.rounded{
   min-height: 20rem;
  position: relative;
  overflow: hidden;
}
.office-cta.rounded.moveposition::before{
  display: none;
}
.office-cta.rounded::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  mix-blend-mode: normal;
  z-index: 0;
}
.office-cta.rounded .container{
  z-index: 2;
}
.office-cta p {
  color: #ffffff;
}

.office-cta a {
  font-weight: bold;
  color: #ffffff;
}

.office-cta .xs-heading {
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 700 !important;
}

.rounded {
  border-radius: 0.5rem !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.candidates-bg {
  background-size: cover;
  max-width: 1100px;
  resize: both;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px;
  border-radius: 8px;
  background-color: #f8f8f8;
  color: #ffffff;
}

.candidates-bg .xs-heading {
  color: #ffffff;
  margin-bottom: 5px;
  font-weight: 700 !important;
}

.candidates-bg .sub-heading,
.candidates-bg p {
  color: #ffffff;
}

.salary-bg {
  background-color: #090909;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding-top: 20px;
  min-height: 680px;
  color: #ffffff;
}
.salary.survey-layout-2 .salary-bg {
  padding: 11rem 1rem 0px 1rem;
}
.salary.survey-layout-2 .salary-bg .fa-file-pdf {
  display:none;
}
.salary.survey-layout-2 .salary-bg .md-heading{
    font-size: 1.5rem;
}
@media (min-width: 768px) {
.salary.survey-layout-2 .salary-bg .md-heading{
    font-size: 2rem;
}
}
.salary.survey-layout-2 .salary-bg .checkbox p{
  margin-bottom: 0;
}
@media (min-width: 768px) {
.salary.survey-layout-2 .salary-bg .fa-file-pdf {
  font-size: 4em;
  display: block;
}
}

.salary-bg .fa-file-pdf {
  font-size: 4em;
}

@media (min-width: 768px) {
  .salary-bg {
    padding: 55px 20px 0px 20px;
  }
}

@media (min-width: 1024px) {
  .salary-bg {
    padding: 125px 50px 0px 60px;
  }
  .salary.survey-layout-2 .salary-bg {
  padding: 15rem 3rem 13rem 3rem;
}
}

@media (min-width: 1200px) {
  .salary-bg {
    padding: 125px 50px 0px 60px;
  }
}

.salary-bg .xs-heading {
  color: #ffffff;
  margin-bottom: 5px;
  font-weight: 700 !important;
}

.salary-bg .md-heading {
  color: #ffffff;
  margin-bottom: 5px;
}

.salary-bg .sub-heading,
.salary-bg p {
  color: #ffffff;
}

.content-layout-3.waved-bg {
  padding-bottom: 100px;
}

@media (min-width: 768px) {
  .content-layout-3.waved-bg {
    padding-bottom: 180px;
  }
}

@media (min-width: 768px) {
  .content-layout-3.waved-bg .content {
    padding-bottom: 50px;
  }
}

.content-layout-3 .content h1, .content-layout-3 .content h2, .content-layout-3 .content h3, .content-layout-3 .content h4, .content-layout-3 .content h5, .content-layout-3 .content h6, .content-layout-3 .content p, .content-layout-3 .content li, .content-layout-3 .content a {
  color: #ffffff;
}

.content-layout-3 .accordion .toggle-list {
  position: relative;
  font-size: 30px;
  font-size: 1.66667rem;
  display: block;
  color: #ffffff;
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 15px 0;
}

.content-layout-3 .accordion .toggle-list:first-of-type {
  border-top: 0px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.content-layout-3 .accordion .toggle-list i {
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  color: white;
  font-size: 14px;
  /**        border-top-left-radius: 23px;
                border-top-right-radius: 0px;
                border-bottom-left-radius: 23px;
                border-bottom-right-radius: 23px;
            */
  padding: 8px;
  position: absolute;
  right: 15px;
  top: 22px;
}

.content-layout-3 .accordion .toggle-list.on-list i:before {
  content: "\f068";
}

.content-layout-3 .accordion .list-data {
  display: none;
  color: #ffffff;
}

.content-layout-3 .accordion .list-data h1, .content-layout-3 .accordion .list-data h2, .content-layout-3 .accordion .list-data h3, .content-layout-3 .accordion .list-data h4, .content-layout-3 .accordion .list-data h5, .content-layout-3 .accordion .list-data h6, .content-layout-3 .accordion .list-data p, .content-layout-3 .accordion .list-data li, .content-layout-3 .accordion .list-data a {
  color: #ffffff;
}

.content-layout-3 .logos {
  list-style: none;
  padding: 0;
  margin: 30px 5px;
  display: flex;
  flex-wrap: wrap;
}

.content-layout-3 .logos li {
  display: flex;
  padding: 15px;
}

.content-layout-3 .logos li .img {
  width: calc(100% - 15px);
}

.content-layout-3 .logos li .img img {
  width: 100%;
  height: 100%;
  max-height: 100px;
  object-fit: contain;
}

.visionIcons {
  background: rgba(255, 255, 255, 0);
  border-radius: 100%;
  width: 65px;
  height: 65px;
  fill: #ffffff;
  border: 1.5px solid white;
  margin-right: 5px;
  position: relative;
}

.visionIcons:hover, .visionIcons:active {
  background: white;
  border-radius: 100%;
  width: 65px;
  height: 65px;
  fill: #ff6900;
  border: 1.5px solid white;
}

/*
#mapDiv{
    position: absolute;
}
.gmap{ position: relative; 
    top:-100px;
z-index: 1;}*/
.bg-wave-top-light {
  background: #f8f8f8;
  position: relative;
}
.bg-wave-top-light .col-md-6 { 
    margin-bottom:2rem;
}
.bg-wave-top-light .col-md-6 .card{
    height:100%;
}
@media (min-width: 768px) {
  .bg-wave-top-light {
    background: #f8f8f8;
  }
}

.bg-wave-top-light:before {
  content: "";
  background: url("../img/wave-white-top.svg");
  position: absolute;
  background-position: center top;
  background-repeat: repeat-x;
  background-size: cover;
  width: 100%;
  height: 65px;
  z-index: 1;
  display: block;
  display: block;
  top: 0;
}

@media (min-width: 768px) {
  .bg-wave-top-light:before {
    height: 118px;
  }
}

@media (min-width: 1024px) {
  .bg-wave-top-light:before {
    height: 148px;
  }
}

@media (min-width: 1200px) {
  .bg-wave-top-light:before {
    height: 188px;
  }
}

@media (min-width: 1400px) {
  .bg-wave-top-light:before {
    height: 199px;
  }
}
@media (min-width: 1600px) {
  .bg-wave-top-light:before {
    height: 240px;
  }
}

.bg-wave-top {
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}

.bg-wave-top:before {
  content: "";
  background: url("../img/wave-white-top-new.svg");
  position: absolute;
  background-position: center top;
  background-repeat: repeat-x;
  background-size: cover;
  width: 100%;
  height: 80px;
  z-index: 1;
  display: block;
  top: -1px;
}

@media (min-width: 768px) {
  .bg-wave-top:before {
    height: 128px;
  }
}

@media (min-width: 1024px) {
  .bg-wave-top:before {
    height: 148px;
  }
}

@media (min-width: 1200px) {
  .bg-wave-top:before {
    height: 188px;
  }
}

@media (min-width: 1400px) {
  .bg-wave-top:before {
    height: 199px;
  }
}
@media (min-width: 1600px) {
  .bg-wave-top:before {
    height: 240px;
  }
}
.bg-wave-btm {
  background-attachment: fixed;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-wave-btm-overlay {
  background: rgba(0, 0, 0, 0);
  position: relative;
  padding: 50px 0;
}

@media (min-width: 768px) {
  .bg-wave-btm-overlay {
    background: rgba(0, 0, 0, 0);
  }
}

.bg-wave-btm-overlay:after {
  content: "";
  background: url("../img/wave-white.svg");
  position: absolute;
  background-position: center top;
  background-repeat: repeat-x;
  background-size: cover;
  width: 100%;
  height: 65px;
  z-index: 1;
  display: block;
  bottom: -1px;
}

@media (min-width: 768px) {
  .bg-wave-btm-overlay:after {
    height: 118px;
  }
}

@media (min-width: 1024px) {
  .bg-wave-btm-overlay:after {
    height: 148px;
  }
}

@media (min-width: 1200px) {
  .bg-wave-btm-overlay:after {
    height: 188px;
  }
}

@media (min-width: 1400px) {
  .bg-wave-btm-overlay:after {
    height: 199px;
  }
}

@media (min-width: 768px) {
  .bg-wave-btm-overlay {
    background-size: 100%;
    /* Safari 4+ */
    /* Fx 5+ */
    /* Opera 12+ */
    animation: slowZoom 25s infinite;
    /* IE 10+, Fx 29+ */
  }
}

.bg-wave-btm-overlay .inline-link:after {
  color: #ffffff;
}

.bg-wave-btm-overlay .sub-heading {
  color: #ffffff;
}

.bg-wave-btm-overlay .heading {
  font-size: 70px;
  font-size: 3.88889rem;
}

@media (min-width: 992px) {
  .bg-wave-btm-overlay .heading {
    font-size: 90px;
    font-size: 5rem;
  }
}

@media (min-width: 1200px) {
  .bg-wave-btm-overlay .heading {
    font-size: 110px;
    font-size: 6.11111rem;
  }
}

.bg-wave-btm-overlay .heading span {
  display: block;
}

.bg-wave-btm-overlay .heading span:nth-of-type(3) {
  display: inline-block;
}

.bg-wave-btm-overlay .heading span.and {
  border-radius: 100em;
  background: #ff6900;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 40px;
  display: inline-block;
  line-height: 1;
  margin-right: 20px;
  width: 70px;
  height: 70px;
  position: relative;
  top: 5px;
  margin-left: 40%;
}

@media (min-width: 768px) {
  .bg-wave-btm-overlay .heading span.and {
    top: -3px;
    margin-left: 10%;
  }
}

@media (min-width: 1024px) {
  .bg-wave-btm-overlay .heading span.and {
    top: -12px;
  }
}

.our-team {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .our-team.alt .team-mosaic {
    max-height: 760px;
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .our-team {
    padding-right: 0px;
    padding-left: 0px;
    margin-bottom: 0;
  }
}

.our-team .intro-para {
  margin-bottom: 40px;
}

.our-team .team-mosaic {
  position: relative;
  height: 100%;
}

.our-team .team-mosaic .brand {
  max-width: 150px;
  margin-bottom: 20px;
}

.our-team .team-mosaic .brand img {
  width: 100%;
}

.our-team .team-mosaic .xxs-heading {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.our-team .team-mosaic .img {
  height: 100%;
}

.our-team .team-mosaic .h-m {
  height: auto;
}

@media (min-width: 768px) {
  .our-team .team-mosaic .h-m {
    height: 50%;
  }
}

.our-team .team-mosaic .h-100 {
  height: auto !important;
}

@media (min-width: 768px) {
  .our-team .team-mosaic .h-100 {
    height: 100% !important;
  }
}

.our-team .misc-brand {
  position: absolute;
  top: calc(25% - 75px);
  left: calc(50% - 75px);
  width: 150px;
  height: 150px;
  z-index: 2;
}

@media (min-width: 768px) {
  .our-team .misc-brand {
    top: calc(50% - 75px);
  }
}

.our-team .misc-brand img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  padding: 20px;
}

.our-team .misc-brand img.animate-rotate {
  position: absolute;
  z-index: 1;
  padding: 0;
}

.our-team .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.our-team .cta {
  background: #ff6900;
  text-align: center;
  padding: 50px;
}

@media (min-width: 768px) {
  .our-team .cta {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .our-team .cta {
    padding: 30px 10px;
  }
}

@media (min-width: 1024px) {
  .our-team .cta {
    padding: 50px 30px;
  }
}

.our-team .cta .content h1, .our-team .cta .content h2, .our-team .cta .content h3, .our-team .cta .content h4, .our-team .cta .content h5, .our-team .cta .content h6, .our-team .cta .content p, .our-team .cta .content li {
  color: #ffffff;
}

.our-team .cta .content .sm-heading {
  font-size: 50px;
  font-size: 2.77778rem;
}

@media (min-width: 768px) {
  .our-team .cta .content .sm-heading {
    font-size: 25px;
  }
}

@media (min-width: 1024px) {
  .our-team .cta .content .sm-heading {
    font-size: 35px;
    font-size: 1.94444rem;
  }
}

@media (min-width: 768px) {
  .our-team .cta .content p {
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .our-team .cta .content p {
    font-size: 16px;
    font-size: 0.88889rem;
  }
}

.our-team .cta a:hover {
  background: #ffffff;
}

.our-team .cta a:hover span {
  color: #ff6900;
}

.img-collection {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .img-collection {
    padding-right: 0px;
    padding-left: 0px;
    margin-bottom: 0;
  }
}

.img-collection .img-mosaic {
  position: relative;
  height: 100%;
}

.img-collection .img-mosaic .img {
  height: 100%;
}

.img-collection .img-mosaic .h-m {
  height: auto;
}

@media (min-width: 768px) {
  .img-collection .img-mosaic .h-m {
    height: 50%;
  }
}

.img-collection .img-mosaic .h-100 {
  height: auto !important;
}

@media (min-width: 768px) {
  .img-collection .img-mosaic .h-100 {
    height: 100% !important;
  }
}

.img-collection .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.content-overlay1 {
  position: relative;
  width: 100vw;
  display: flex;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.content-img .img {
  width: 100vw;
  height: 90vw;
  border-top-right-radius: 0;
  overflow: hidden;
  max-width: 560px;
  max-height: 560px;
  margin: 40px 15px 0 15px;
}
@media (min-width: 520px) {
  .content-img .img {
   width: 90vw;
  height: 90vw;
  border-top-right-radius: 0;
  overflow: hidden;
  max-width: 560px;
  max-height: 560px;
  margin: 40px 15px 0 15px;
  }
}
@media (min-width: 768px) {
  .content-img .img {
    width: 35vw;
    height: 35vw;
  }
}

@media (min-width: 1024px) {
  .content-img .img {
    width: 42vw;
    height: 42vw;
  }
}

@media (min-width: 768px) {
  .content-img .img {
    margin: 0px 0;
  }
}

.content-img .img img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.content-img .social a {
  color: #9da0a3;
}

.content-img .social a:hover {
  color: #ff6900;
}

.full-width-image-static {
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 768px) {
  .full-width-image-static {
    height: auto;
  }
}

@media (min-width: 1024px) {
  .full-width-image-static {
    height: auto;
  }
}

.full-width-image-static .content {
  color: #ffffff;
}

.full-width-image-static .content .subheading,
.full-width-image-static .content h1, .full-width-image-static .content h3 {
  color: #ffffff;
}

.full-width-image {
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

@media (min-width: 768px) {
  .full-width-image {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .full-width-image {
    height: 600px;
  }
}

.list-of-media {
  list-style: none;
  padding: 20px 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .list-of-media li {
    display: flex;
    vertical-align: top;
    width: calc(100% - 20px);
    flex-direction: column;
    margin-right: 30px;
  }
  .list-of-media li:nth-child(3n) {
    margin-right: 0;
  }
}

.list-of-media .media-snippet {
  position: relative;
}

.list-of-media .media-snippet .img {
  border-radius: 8px;
  overflow: hidden;
}

.list-of-media .media-snippet .img a {
  display: block;
  position: relative;
}

.list-of-media .media-snippet .img.video {
  position: relative;
}

.list-of-media .media-snippet .img.video a:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  transition: 800ms all ease-in-out;
}

.list-of-media .media-snippet .img.video a:after {
  content: "\f04b";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 27px;
  color: white;
  transition: all 250ms ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 70px;
  height: 70px;
  border-radius: 100em;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: calc(50% - 35px);
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 14px 16px 14px 20px;
  transform: scale(1);
}

.list-of-media .media-snippet .img.video a:hover:before {
  background: rgba(0, 0, 0, 0.4);
}

.list-of-media .media-snippet .img.video a:hover:after {
  transform: scale(0.9);
}

.list-of-media .media-snippet .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.list-of-media .media-snippet .xs-heading {
  margin: 15px 0;
  color: #ffffff;
}

.list-of-media .media-snippet .inline-link {
  color: #ffffff;
}

.list-of-media .media-snippet .inline-link:after {
  color: #ffffff;
}

.timeline {
  position: relative;
  z-index: 1;
}

/*Line*/
.timeline > li::before {
  content: '';
  position: absolute;
  width: 1px;
  background-color: #ff6900;
  top: 0;
  bottom: 0;
  left: -19px;
}

/*Circle*/
.timeline > li::after {
  text-align: center;
  padding-top: 10px;
  z-index: 10;
  content: counter(item);
  position: absolute;
  width: 50px;
  height: 50px;
  border: 3px solid white;
  background-color: #ff6900;
  border-radius: 50%;
  top: 0;
  left: -43px;
}

/*Content*/
.timeline > li {
  counter-increment: item;
  padding: 7px 30px;
  margin-left: 0px;
  min-height: 70px;
  position: relative;
  background-color: white;
  list-style: none;
  font-weight: 600;
  color: #ffffff;
}

.timeline > li:nth-last-child(1)::before {
  width: 0px;
}

/* Accordion */
.content-layout-2 .accordion {
  position: relative;
}

.content-layout-2 .accordion .toggle-list {
  position: relative;
  font-size: 30px;
  font-size: 1.66667rem;
  display: block;
  color: #ffffff;
  font-weight: 700;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  padding: 15px 0;
}

.content-layout-2 .accordion .toggle-list:first-of-type {
  border-top: 0px solid rgba(0, 0, 0, 0);
}

.content-layout-2 .accordion .toggle-list .img {
  display: inline;
  width: 40px;
  vertical-align: top;
  margin-right: 15px;
}

.content-layout-2 .accordion .toggle-list .img img {
  display: inline;
  width: 40px;
  vertical-align: top;
  margin-right: 15px;
}

.content-layout-2 .accordion .toggle-list .xs-heading {
  display: inline;
  font-size: 28px;
  font-size: 1.55556rem;
  min-height: 60px;
}

.content-layout-2 .accordion .toggle-list i {
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  color: #090909;
  font-size: 0.8em;
  padding: 8px;
  position: absolute;
  right: 15px;
  top: 22px;
}

.content-layout-2 .accordion .toggle-list.on-list {
  color: #ff6900;
}

.content-layout-2 .accordion .toggle-list.on-list .xs-heading {
  color: #ff6900;
}

.content-layout-2 .accordion .toggle-list.on-list i:before {
  content: "\f106";
}

.content-layout-2 .accordion .list-data {
  display: none;
  color: #090909;
}

.content-layout-2 .accordion .list-data h1, .content-layout-2 .accordion .list-data h2, .content-layout-2 .accordion .list-data h3, .content-layout-2 .accordion .list-data h4, .content-layout-2 .accordion .list-data h5, .content-layout-2 .accordion .list-data h6, .content-layout-2 .accordion .list-data p, .content-layout-2 .accordion .list-data li, .content-layout-2 .accordion .list-data a {
  color: #090909;
}

.content-layout-2 .accordion .list-data a {
  margin-bottom: 1rem;
}

/*Sector page */
@media screen and (min-width: 1200px) {
.card .title {
 min-height: 95px;
}
}
@media screen and (max-width: 1199px) {
.card .title {
 min-height: 74px;
}
}
/* -----------------------------
Content Split -25-25-25-25 */
.content-25-25-25-25 .bg{
background-repeat: no-repeat;
background-size: cover;
}
@media (min-width: 320px) {
  .content-25-25-25-25 .bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .content-25-25-25-25 .content{
   border-bottom: 5px solid #ffffff;
   padding-bottom: 2rem;
padding-top: 2rem;
}
}

@media (min-width: 768px) {
  .content-25-25-25-25 .bg{
    padding-top: 60px;
    padding-bottom: 60px;
  }
   .content-25-25-25-25 .content{
   border-bottom: none;
    padding-bottom: 0rem;
   padding-top: 0rem;
}
}

@media (min-width: 1024px) {
.content-25-25-25-25 .bg{
    padding-top: 80px;
    padding-bottom: 80px;
  }
   .content-25-25-25-25 .content{
   border-bottom: none;
   padding-bottom: 0rem;
   padding-top: 0rem;
}
}
@media (min-width: 1200px) {
.content-25-25-25-25 .bg{
    padding-top: 100px;
    padding-bottom: 100px;
  }
    .content-25-25-25-25 .content{
   border-bottom: none;
    padding-bottom: 0rem;
   padding-top: 0rem;
}
}

.content-25-25-25-25 .media {
  height: 5.375rem;
  margin-bottom: 1.875rem;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}
.content-25-25-25-25 .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.content-25-25-25-25 .content{
    color:#ffffff;
}
.content-25-25-25-25 .content .sm-heading{
    text-align: center;
    color:#ff6900;
    margin-bottom: 1.875rem;
}
.content-25-25-25-25 .content .xxs-heading{
    color:#ffffff;
}
.content-25-25-25-25 .content ul {
    margin-left:0px;
    padding-left: 1.5rem;
}
.content-25-25-25-25 .content ul li{
      color:#ffffff;  
      font-weight: normal;
}
.content-25-25-25-25 .content ul li::marker{
    color:#ff6900;
}

/* -----------------------------
End Content Split -25-25-25-25 */

/* -----------------------------
Testimonials slider with-bg
--------------------------------*/

.testimonials-slider.with-bg .bg{
background-repeat: no-repeat;
background-size: cover;
}
.testimonials-slider.with-bg .latest-testimonials-slider .swiper-container{
    overflow:visible;
}
.testimonials-slider.with-bg .latest-testimonials-slider .swiper-navigation .swiper-button-prev::after,
.testimonials-slider.with-bg .latest-testimonials-slider .swiper-navigation .swiper-button-next::after{
    color:#ffffff;
}
.testimonials-slider.with-bg .latest-testimonials-slider .swiper-navigation .swiper-button-next,
.testimonials-slider.with-bg .latest-testimonials-slider .swiper-navigation .swiper-button-prev{
  color:#ffffff;
position: relative;
border: 2px solid #ffffff;
border-radius: 100%;
width: 70px;
height: 70px;
display: inline-block;
left: auto;
right: auto;
padding: 20px 20px;  
}
.testimonials-slider.with-bg .latest-testimonials-slider .swiper-navigation{
   position: relative;
z-index: 1;
bottom: 3rem; 
top:auto;
}
@media (min-width: 320px) {
  .testimonials-slider.with-bg .bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
 
}

@media (min-width: 768px) {
  .testimonials-slider.with-bg .bg{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .testimonials-slider.with-bg .swiper-navigation .swiper-button-prev.swiper-button-disabled,
.testimonials-slider.with-bg .swiper-navigation .swiper-button-next.swiper-button-disabled,
  .testimonials-slider.with-bg .swiper-navigation .swiper-button-prev,
.testimonials-slider.with-bg .swiper-navigation .swiper-button-next{
   display:none!important;
}
 
}

@media (min-width: 1024px) {
      .testimonials-slider.with-bg .bg{
    padding-top: 80px;
    padding-bottom: 80px;
  }
   .testimonials-slider.with-bg .swiper-navigation .swiper-button-prev.swiper-button-disabled,
.testimonials-slider.with-bg .swiper-navigation .swiper-button-next.swiper-button-disabled,
  .testimonials-slider.with-bg .swiper-navigation .swiper-button-prev,
.testimonials-slider.with-bg .swiper-navigation .swiper-button-next{
    display:none!important;
}
}
@media (min-width: 1200px) {
    .testimonials-slider.with-bg .bg{
    padding-top: 100px;
    padding-bottom: 100px;
  }
   .testimonials-slider.with-bg .swiper-navigation .swiper-button-prev.swiper-button-disabled,
.testimonials-slider.with-bg .swiper-navigation .swiper-button-next.swiper-button-disabled,
  .testimonials-slider.with-bg .swiper-navigation .swiper-button-prev,
.testimonials-slider.with-bg .swiper-navigation .swiper-button-next{
   display:none!important;
}
}
  .testimonials-slider.with-bg .testimonial-bg{
      background: none;
      padding: 0;
      border-radius: 0;
  }
    .testimonials-slider.with-bg .swiper-slide{
        position:relative;
        overflow:visible;
    }
.testimonials-slider.with-bg .swiper-slide:before {
    font-family: serif;
    line-height:normal;
    color:#ffffff;
    content: open-quote;
    font-size: 10rem;
    position: absolute;
    left: -2rem;
    top: -3rem;
    opacity:0.1;
}
.testimonials-slider.with-bg .swiper-slide:after {
    font-family: serif;
    line-height:normal;
    color:#ffffff;
    content: close-quote;
    font-size: 10rem;
    position: absolute;
    right: 0;
    bottom: -3rem;
    opacity:0.1;
}
.table-responsive{
    display:inline-table;
}

  .spec .share dl{display:flex;}
  .spec .share dl dt{margin-right:10px;}
