@charset "UTF-8";
:root {
  --black: #030105;
  --dark: #222024;
  --grey: #5e5d60;
  --silver: #c3c3c4;
  --lightgrey: #ececec;
  --white: #fdfdfd;
  --brand: #007097;
  --accent: #c55f5f;
  --success: #00ca9a;
  --error: #ff5518;
  --progress: #184fff;
  --warning: #ffc818;
  --sea-green: #1aa8bb;
  --mantis:#8fbc59;
  --yellow: #fcb707;
  --peach: #f39859;
  --froly: #e1696d;
  --purple: #a68fc3;
  --jade: #00ad7c;
  --orange: #ff7e00;
  --blue: #4d86c7;
}

.animateFadeIn {
  animation-name: animateFadeIn;
}

.stepsFadeInUp {
  animation-name: stepsFadeInUp;
}

@keyframes animateFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes stepsFadeInUp {
  from {
    opacity: 0;
    transform: translate(0%, 50%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.stepsFadeInLeft {
  animation-name: stepsFadeInLeft;
}

@keyframes stepsFadeInLeft {
  from {
    opacity: 0;
    transform: translate(-10%, 0%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes stepsFadeInRight {
  from {
    opacity: 0;
    transform: translate(10%, 0%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
body {
  background: #ececec;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}
body.overflow {
  overflow: hidden;
}
@media (min-width: 992px) {
  body.overflow {
    overflow: auto;
  }
}
header {
  z-index: 5;
  top: 0;
}
header:after {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  opacity: 0.72;
  background-image: linear-gradient(to bottom, #030105 0%, rgba(3, 1, 5, 0) 99%);
  left: 0;
  top: 0;
  z-index: 0;
}
header a {
  color: #fdfdfd;
  font-size: 15px;
  transition: all 0.25s ease;
  position: relative;
  font-weight: bold;
  text-decoration: none;
}
header .navbar-nav {
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
header .affix-brand {
  display: none;
}
header .normal {
  display: block;
}
header .affixed {
  display: none;
}
header.affix {
  box-shadow: 0 8px 24px 0 rgba(0, 112, 151, 0.12);
}

header.affix .affix-brand {
  display: block;
}
header.affix .normal {
  display: none;
}
header.affix .affixed {
  display: block;
}
header.affix:after {
  opacity: 1;
  background: #fff;
}
header.affix a {
  color: #222024;
}
header .navbar-nav {
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.desktop-menu {
  height: 64px;
  width: 100%;
  left: 0;
  right: 0;
  position: fixed;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-color: rgba(3, 1, 5, 0.16);
  z-index: 10;
  padding-bottom: 0;
  padding-top:0;
}
.desktop-menu .dropdown-toggle:after {
  display: none;
}
.desktop-menu:after {
  display: none;
}

.desktop-menu .nav-item:hover .dropdown-menu {
  display: block;
}
.desktop-menu.affix {
  box-shadow: 0 8px 24px 0 rgba(0, 112, 151, 0.12);
  background-color: rgba(220, 220, 220, 0.6);
}
.desktop-menu .container {
  position: relative;
  z-index: 1;
  align-items: flex-start;
  height: 100%;
}
.desktop-menu .navbar-nav-scroll, .desktop-menu .navbar-nav {
  height: 100%;
}
.desktop-menu .active {
  position: relative;
}
.desktop-menu .active:before {
  position: absolute;
  top: -21px;
  left: -15px;
  content: "";
  display: block;
  height: 7px;
  width: calc(100% + 30px);
  background: grey;
}
.desktop-menu .navbar-brand {
  width:70px;
  margin-left:20px;
}
.desktop-menu .navbar-brand img {
  width: 100%;
}
.desktop-menu ul{
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: row;
  align-items: center;
  width: 100%;
  list-style: none;
  margin-top:1.2rem;
}
.desktop-menu ul li {
  margin: 0 15px;
  position: relative;
}
.desktop-menu ul li a{ padding:1.27rem; }
.mobile-menu {
  width: 100%;
  left: 0;
  right: 0;
  position: fixed;
  height: 56px;
  padding-top: 2px;
}
.desktop-menu .sub-menu{
  width:max-content;
  max-width:400px;
  transform: translate(-50%, 1px);
  float: none;
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
  left:50%;
  top: 44px;
  margin: 0;
  box-shadow: 0 8px 24px 0 rgba(0, 112, 151, 0.12);
  border: 0;
  display:none;
}

.desktop-menu .sub-menu li:after {
  position: absolute;
  content: "";
  opacity: 0;
  background-color: #030105;
  width: calc(100% + 30px);
  height: 72px;
  top: -21px;
  left: -15px;
  transition: all 0.25s ease-out;
  z-index: -1;
}
.desktop-menu .sub-menu li a{
  color: var(--black);
  padding: 1rem;
  display: block;
}
.navbar-brand{
  margin-left:5px;
}
.mobile-menu .navbar-brand {
  width: 55px;
  padding-top:0;
  padding-bottom:0;
}
.mobile-menu .navbar-brand img {
  width: 100%;
}
.mobile-menu .hamburger {
  margin-left: auto;
  margin-right: 0;
  width: 32px;
  height: 32px;
  padding: 5px;
}
.overlay-masking {
  top: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 6;
  display: flex;
  overflow: hidden;
  opacity: 0;
  transition: all 0.25s ease-out;
  pointer-events: none;
}
.overlay-masking.active {
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 992px) {
  .overlay-masking {
    pointer-events: none;
    display: none !important;
  }
}


.side-menu {
  width: 100vw;
  top: 0;
  bottom: 0;
  right: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  position: fixed;
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 7;
  padding: 0;
  transform: translateX(100%);
  transition: all 0.15s ease;
}
.side-menu ul {
  list-style: none;
  padding-left: 0;
}
.side-menu a {
  color: #222024;
  margin: 1.5rem 0;
  display: block;
}
.side-menu .nav-item {
  border-bottom: 1px solid rgba(195, 195, 196, 0.48);
}
.side-menu .nav-link {
  margin: 0.5rem 0;
  padding: 0.65rem 1.5rem;
  font-size: 19px;
  font-weight: bold;
  color: #222024;
}
.side-menu.active {
  transform: translateX(0);
}
.side-menu .sidebar-header {
  padding: 0.5rem 0.85rem;
  position: relative;
  height: 50px;
  border-bottom: 1px solid rgba(195, 195, 196, 0.48);
}
.side-menu .close {
  position: absolute;
  right: 12px;
  top: 12px;
  margin: 0;
  width: 24px;
  height: 24px;
  padding: 2px;
  cursor: pointer;
  background: url("../images/close-black.svg") top center/cover;
  background-size: 22px;
}

.side-menu .language-toggle img {
  margin-right: 0.75rem;
}
.side-menu .second-level {
  background-color: #007097;
}
.side-menu .second-level a {
  margin: 0;
  font-size: 15px;
  font-weight: bold;
  color: #fdfdfd;
  padding: 0.8rem 3rem;
}
.side-menu .second-level li {
  position: relative;
}
.side-menu .second-level li:before {
  position: absolute;
  content: "";
  width: 10px;
  background: var(--accent);
  height: 2px;
  top: 22px;
  left: 25px;
}
@media (min-width: 992px) {
  .side-menu {
    display: none !important;
  }
}

.masthead-slider .container {
  margin-top: 0;
  margin-bottom: 0;
}
.masthead-slider .img-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 80%;
}
.masthead-slider .img-wrapper:before {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  height: 70%;
  width: 100%;
  opacity: 0.60;
  background-image: linear-gradient(to bottom, rgba(3, 1, 5, 0), #030105);
  z-index: 1;
}
.masthead-slider .img-wrapper:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -1px;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.masthead-slider .img-wrapper img {
  position: absolute;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.masthead-slider .slick-current .img-wrapper img {
  animation: zoomOutSlow 5s forwards ease-out;
}
.masthead-slider .slider-content {
  width: 100%;
  height: 100%;
  padding-top: 50%;
  position: relative;
  z-index: 3;
}
.masthead-slider .slider-content a {
  color: var(--white);
  background-image: linear-gradient(78deg, #bb7097, #c55f5f);
  border-radius: 8px;
  font-size: 15px;
  padding: 1rem 1.25rem;
  transition: all 0.35s ease-out;
  display: inline-block;
  text-decoration: none;
}
.masthead-slider .slider-content a:hover {
  outline: none;
  text-decoration: none;
  background-image: linear-gradient(208deg, #bb7097, #c55f5f);
  transform: translate(0, -2px);
}
.masthead-slider h1 {
  margin: 0 2px;
  margin-bottom: 1rem;
  color: var(--white);
  font-size:20px;
}
@media(min-width:992px){
  .masthead-slider h1 {font-size:36px;}
}
.masthead-slider .slick-current h1 {
  animation: fadeUpSlow 1.15s forwards ease-out;
}
.masthead-slider .slick-current .slider-content a {
  animation: fadeUpSlower 1.15s forwards ease-out;
}
@media (min-width: 640px) {
  .masthead-slider .img-wrapper {
    padding-bottom: 80%;
  }
  .masthead-slider .slider-content {
    padding-top: 40%;
  }
}
@media (min-width: 768px) {
  .masthead-slider .img-wrapper {
    padding-bottom: 41.6666%;
  }
  .masthead-slider .slider-content {
    padding-top: 28%;
  }
}
@media (min-width: 1200px) {
  .masthead-slider h1 {
    margin-bottom: 2.25rem;
  }
  .masthead-slider .slider-content {
    padding-top: 18%;
  }
  .masthead-slider a {
    padding: 1.05rem 3rem;
  }
}
@media (min-width: 1200px) {
  .masthead-slider .slider-content {
    padding-top: 20%;
  }
}
@media (min-width: 1400px) {
  .masthead-slider .slider-content {
    padding-top: 24%;
  }
}
@media (min-width: 1600px) {
  .masthead-slider .slider-content {
    padding-top: 30%;
  }
}
.masthead-slider .slick-dots {
  bottom: 6%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .masthead-slider .slick-dots {
    bottom: 8%;
  }
}
@media (min-width: 992px) {
  .masthead-slider .slick-dots {
    bottom: 5%;
  }
}
.masthead-slider .slick-dots li {
  line-height: 0;
}
.masthead-slider .slick-dots li a {
  color: var(--lightgrey);
  height: 16px;
  line-height: 16px;
}
.masthead-slider .slick-dots li a:hover {
  color: #c55f5f;
}
@media (min-width: 768px) {
  .masthead-slider .slick-dots li {
    margin: 6px;
  }
}
.masthead-slider .slick-dots li button {
  margin: 0 auto;
  width: 12px;
  height: 12px;
  background: var(--lightgrey);
  transition: background-color 0.25s ease;
  border-radius: 50%;
}
.masthead-slider .slick-dots li button:before {
  display: none;
}
.masthead-slider .slick-dots li button:hover {
  background: var(--white);
}
.masthead-slider span:before {
  line-height: 10px;
}
.masthead-slider .slick-dots li.slick-active button {
  background-color: var(--accent);
}
.stories {
  overflow:hidden;
  text-align: center;
}
.stories .zebra {
  margin-bottom: 2rem;
}
.stories .hero {
  font-size: 30px;
  margin-bottom: 0.5rem;
}
.stories h2 {
  font-size: 25px;
  color:#fff;
}
.stories .large-middle{padding-left:15px;padding-right:15px;}
.stories .caption {
  color: var(--white);
  font-size: 15px;
}
.stories .color-wrapper, .stories .image-content {
  padding: 30px 15px;
}
.stories .image-content {
  z-index: 2;
  position: relative;
  text-align: left;
}
.stories a {
  color: var(--accent);
  text-decoration: none;
}

.stories .image-wrapper {
  height: 0;
  padding-bottom: 65%;
  position: relative;
}
.stories .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.stories .image-wrapper:before {
  z-index: 1;
  opacity: 0.72;
  height: 100%;
  width: 100%;
  left:0;
  position: absolute;
  display: block;
  background-image: linear-gradient(to right, #030105 0%, rgba(3, 1, 5, 2%));
  content: "";
}
.stories .color-wrapper {
  display: flex;
  background: var(--white);
  color: var(--black);
  text-align:left;
}
@media (min-width: 768px) {
  .stories .zebra {
    margin-bottom: 2rem;
  }
  .stories .image-wrapper {
    height: 0;
    padding-bottom: 35%;
  }
  .stories .color-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
  .stories .color-wrapper .large-middle {
    display: flex;
    flex-direction: column;
    align-self: center;
  }
  .stories .image-content {
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
  }
  .stories .zebra:nth-child(odd) {
    flex-direction: row-reverse;
  }

  .stories .color-content {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
  }
}
@media (min-width: 992px) {
  .stories {
    max-width: 960px;
  }
  .stories .color-content {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
  }
}
@media (min-width: 1200px) {
  .stories {
    max-width: 1140px;
  }
  .stories .hero {
    font-size: 58px;
  }
  .stories .unit {
    font-size: 15px;
  }
  .stories h2 {
    font-size: 37px;
  }
}

@media (min-width: 992px) {
  section.container-fluid {
    max-width: 960px;
  }
}
.introduction-row {
  font-size:16px;
  line-height:1.8;
  margin: 2.5rem 0;
}
@media (min-width: 992px) {
  .introduction-row {
    font-size:20px;
    margin: 2.75rem 0;
  }
}

footer{
  padding:3rem;
  background:#0e183e;
  color:#fff;
  text-align:center;
}
.page-template-default #main{flex:1;padding-top:6rem;}
#main{padding-top:2rem;}
aside{
  margin-top:3rem;
  margin-bottom:2rem;
}
@media(min-width:768px){
  .page-template-default #main{padding-top:7.25rem;}
  .single-service{padding-top:0;}
  #main{padding-top:3rem;}
  aside{
    margin-top:0;
  }
  footer{
    margin-top:2rem;
    padding:1rem;
  }
}
.featured-image{max-height:250px;width:100%;overflow:hidden;position:relative;}
.featured-image:after{
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  opacity: 0.6;
  background-image: linear-gradient(to top, #030105 0%, rgba(3, 1, 5, 0) 99%);
  left: 0;
  bottom: 0;
  z-index: 0;


}
.featured-image img{
  aspect-ratio: 16/9;
  object-fit:cover;
  width:100%;
  height:100%;
}

.featured-image h1{
  padding-left:10px;
  padding-right:10px;
  position:absolute;
  bottom:2rem;
  font-size:20px;
  color: var(--white);
  z-index:2;
}

@media(min-width:728px){
  .featured-image h1{
    text-align:center;width:100%;font-size:30px;
    bottom:1rem;
  }
}
