/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

:root {
  scroll-behavior: unset;

  --primary: #0C475E; 
  --primary-rgb: 12, 71, 94;

  --secondary: #A0D8EA;
  --secondary-rgb: 160, 216, 234;

  --black: #000;
  --white-rgb: 0, 0, 0;

  --white: #FFFFFF;
  --white-rgb: 255, 255, 255;

  --blue: #4073DC;
  --blue-rgb: 64, 115, 220;

  --gray-light: #E8E8E8; 
  --gray-light-rgb: 232, 232, 23; 

  --gray: #CBCBCB;
  --gray-rgb: 203, 203, 203;

  --gray-dark: #838383;
  --gray-dark-rgb: 131, 131, 131;


  --border-radius: .25rem;
  --box-shadow: 0 .5rem 1rem rgba(var(--primary-rgb), .15);

  --link-color:       var(--primary);
  --link-hover-color: var(--secondary);

  --bg-primary:  var(--primary);
  --bg-secondary:  var(--secondary);
  --bg-light:  var(--gray-light);
  --bg-dark:  var(--gray-dark);
  --bg-gray:  var(--gray);
  --bg-white:  var(--white);
  --bg-black:  var(--black);

  --nav-height:  65px;
  --bs-gutter-x: .75rem;
  --em-gutter-x: .75rem;

  --font-family-kern: "Kern", sans-serif;
  --font-family-aktifo-b: "Aktifo-B", monospace;
}


:root {
  --bs-gutter-x: 32px;
  --em-gutter-x: 2rem;
}


/*@media (min-width: 992) {
  :root {
    --nav-height:  87px;
    --em-gutter-x: 1rem;
  }
}

@media (min-width: 1200px) {
  :root {
    --em-gutter-x: 1.5rem;
  }
}

@media (min-width: 1820px) {
  :root {
    --em-gutter-x: 1.5rem;
    --bs-gutter-x: 1.5rem;
  }
}

@media (min-width: 2560px) {
  :root {
    --em-gutter-x: 2.5rem;
  }
}*/


/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: var(--primary);
  background: var(--white);
  font-size: 1em;
  line-height: 1.4;
  font-family: var(--font-family-kern);
  font-weight: normal;
  font-style: normal;
  /* Smoothing */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;

  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;

  width: 100%;
/*   height: 100%; 
  overflow-x: hidden; */
}

body {
  position: relative;
  background: var(--white);
  height: 100%;
  overflow: hidden;
  margin: 0;
  /* Allows you to scroll below the viewport; default value is visible */
  overflow-y: scroll;

  /* To smooth any scrolling behavior */
  -webkit-overflow-scrolling: touch;

  width: 100%;
  overflow-x: hidden;
}


/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}


/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

p {
  font-size: 14px;
  font-family: var(--font-family-kern);
  color: var(--primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-aktifo-b);
  color: var(--primary);
  font-weight: normal;
  font-style: normal;
  line-height: 1.1em;
  -ms-word-wrap: break-word;
  word-wrap: break-word
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 55px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 19px;
}

h6 {
  font-size: 17px;
}


h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
 {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: inherit
}


a {
  font-family: var(--font-family-kern);
  color: var(--link-color);
  text-decoration: none;
  -webkit-transition: color .25s ease;
  -o-transition: color .25s ease;
  transition: color .25s ease
}

a:hover {
  color: var(--link-hover-color);
}

a,
a div,
a span,
button,
button div,
button span,
input,
textarea,
.touch-action {
  -ms-touch-action: manipulation;
  touch-action: manipulation; /*disable the delay of click events caused by support for the double-tap to zoom gesture. */
}

button {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-variant: inherit;
  line-height: 1;
  text-transform: none;
  cursor: pointer;
  -webkit-appearance: button;
}

a[disabled],
button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  box-sizing: border-box;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: auto;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*Force Hand Cursor over Clickable Items*/
a[href],
input[type="submit"],
input[type="image"],
label[for],
select,
button,
.pointer,
.clickable,
.tappable {
  cursor: pointer;
}

/* ==========================================================================
   Author's custom styles
========================================================================== */
.cv-auto {
  content-visibility: auto;
}

.disable-hover,
.disable-hover * {
  pointer-events: none !important;
}

/*stop interaction with the page when page is loading*/
/*or when the search is open*/
body.is-loading,
body.is-loading * {
  pointer-events: none !important;
}


/* PRELOADER */
.ip-header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1031;
  min-height: 460px;
  width: 100%;
  height: 100%;
  background: var(--gray-light);
}

.ip-logo,
.ip-loader {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

.ip-logo {
  top: 0;
  height: 100%;
  -webkit-transform: translate3d(0,25%,0);
  transform: translate3d(0,25%,0);
}

.logo-title {
  font-family: var(--font-family-kern);
}

.ip-loader {
  bottom: 20%;
}

.ip-header .ip-inner {
  display: block;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
}

.ip-header .ip-loader svg path {
  fill: none;
  stroke-width: 6;
}

.ip-header .ip-loader svg path.ip-loader-circlebg {
  stroke: #ddd;
}

.ip-header .ip-loader svg path.ip-loader-circle {
  -webkit-transition: stroke-dashoffset 0.2s;
  transition: stroke-dashoffset 0.2s;
  stroke: var(--primary);
}

.ip-container {
  position: relative;
  background: #fff;
  z-index: 1;
}

/* Content */
.ip-main {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  opacity: 1;
  background: #fff;
  z-index: 1;
}

/* Animations */

/* Initial animation of header elements */
.loading .ip-logo,
.loading .ip-loader {
  opacity: 1;
}

.loading .ip-logo {
/*  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;*/
  -webkit-animation: animInitialLogo 1s cubic-bezier(0.7,0,0.3,1) both;
  animation: animInitialLogo 1s cubic-bezier(0.7,0,0.3,1) both;
}

@-webkit-keyframes animInitialLogo {
  from { opacity: 0; }
}

@keyframes animInitialLogo {
  from { opacity: 0; }
}

.loading .ip-loader {
  -webkit-animation: animInitialLoader 1s cubic-bezier(0.7,0,0.3,1) both;
  animation: animInitialLoader 1s cubic-bezier(0.7,0,0.3,1) both;
}

@-webkit-keyframes animInitialLoader {
  from { opacity: 0; -webkit-transform: scale3d(0.5,0.5,1); }
}

@keyframes animInitialLoader {
  from { opacity: 0; -webkit-transform: scale3d(0.5,0.5,1); transform: scale3d(0.5,0.5,1); }
}

/* Header elements when loading finishes */
.loaded .ip-logo,
.loaded .ip-loader {
  opacity: 1;
}

.loaded .ip-logo {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-animation: animLoadedLogo 1s cubic-bezier(0.7,0,0.3,1) forwards;
  animation: animLoadedLogo 1s cubic-bezier(0.7,0,0.3,1) forwards;
}

@-webkit-keyframes animLoadedLogo {
  to { opacity: 0; -webkit-transform: translate3d(0,100%,0) translate3d(0,50px,0) scale3d(0.65,0.65,1); }
}

@keyframes animLoadedLogo {
  to { opacity: 0; -webkit-transform: translate3d(0,100%,0) translate3d(0,50px,0) scale3d(0.65,0.65,1); transform: translate3d(0,100%,0) translate3d(0,50px,0) scale3d(0.65,0.65,1); }
}

.loaded .ip-loader {
  -webkit-animation: animLoadedLoader 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
  animation: animLoadedLoader 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
}

@-webkit-keyframes animLoadedLoader {
  to { opacity: 0; -webkit-transform: translate3d(0,-100%,0) scale3d(0.3,0.3,1); }
}

@keyframes animLoadedLoader {
  to { opacity: 0; -webkit-transform: translate3d(0,-100%,0) scale3d(0.3,0.3,1); transform: translate3d(0,-100%,0) scale3d(0.3,0.3,1); }
}

/* Change the color of the logo */
.loaded .ip-logo svg path {
  -webkit-transition: all 0.5s ease 0.3s;
  transition: all 0.5s ease 0.3s;
  fill: #fff;
}

/* Header animation when loading finishes */
.loaded .ip-header {
  -webkit-animation: animLoadedHeader 1s cubic-bezier(0.7,0,0.3,1) forwards;
  animation: animLoadedHeader 1s cubic-bezier(0.7,0,0.3,1) forwards;
}

@-webkit-keyframes animLoadedHeader {
  to { -webkit-transform: translate3d(0,-100%,0); }
}

@keyframes animLoadedHeader {
  to { -webkit-transform: translate3d(0,-100%,0); transform: translate3d(0,-100%,0); }
}

/* Content animations */
/*This is only if there is a preloader*/
/*.loaded .ip-main {
  -webkit-animation: animLoadedContent 1s cubic-bezier(0.7,0,0.3,1) both;
  animation: animLoadedContent 1s cubic-bezier(0.7,0,0.3,1) both;
}

@-webkit-keyframes animLoadedContent {
  from { opacity: 0; -webkit-transform: scale3d(0.3,0.3,1); }
}

@keyframes animLoadedContent {
  from { opacity: 0; -webkit-transform: scale3d(0.3,0.3,1); transform: scale3d(0.3,0.3,1); }
}
*/
 
/*Helpers*/
.container-em,
.em-container {
  position: relative;
  padding-right: var(--em-gutter-x,.75rem);
  padding-left: var(--em-gutter-x,.75rem);
  max-width: 1660px;
}


.btn-em-link {
  font-family: var(--font-family-kern);
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  border-radius: 0;
}

.btn-em-link--primary {
   color: var(--primary);
   border-bottom: 1px solid var(--primary);
}

.btn-em-link--secondary {
   color: var(--secondary);
   border-bottom: 1px solid var(--secondary);
}

.btn-em-link--white {
   color: var(--white);
   border-bottom: 1px solid var(--white);
}

/* full side image within containers */
.side-image {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
}

.side-image.full-left {
  width: 50vw;
  float: right;
}

.side-image.full-right {
  width: 50vw;
  float: left;
}

.side-image img {
  width: 100%;
  height: 100%;
}

/* RESPONSIVE TABLET  */
@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  .side-image.full-left {
    width: 100vw;
    float: left;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-bottom: 50px;
  }
}



/*Botstrap overwritten extend*/
.ratio-9x16 {
  --bs-aspect-ratio: calc(16 / 9 * 100%);
}

.ratio-4x5 {
  --bs-aspect-ratio: calc(5 / 4 * 100%);
}

.ratio-3x4 {
  --bs-aspect-ratio: calc(4 / 3 * 100%);
}

.ratio-2x1 {
  --bs-aspect-ratio: 50%;
}

/*@media (max-width: 767px) {
  .ratio-3x4 {
    --bs-aspect-ratio: calc(2 / 1 * 100%);
  }
}*/

.g-6,
.gx-6 {
  --bs-gutter-x: 5rem;
}

.g-7,
.gx-7 {
  --bs-gutter-x: 7rem;
}

.img-cover {
  object-fit: cover;
  object-position: center;
}

.bg--primary {
  background-color: var(--bg-primary);
}

.bg--secondary {
  background-color: var(--bg-secondary);
}

.bg--light {
  background-color: var(--bg-light);
}

.bg--dark {
  background-color: var(--bg-dark);
}

.bg--white {
  background-color: var(--bg-white);
}

.bg--black {
  background-color: var(--bg-black);
}

.bg--gray {
  background-color: var(--bg-gray);
}

.p-relative{
  position: relative;
}

.remove-p{
  padding: 0px;
}


.section {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section--intro {
  padding-top: 115px ;
}

@media (max-width: 767px) {
  .section {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .section--intro {
    padding-top: 115px;
  }

  .vh-100 {
    height: auto !important;
  }
}


/* Page navigation start */
.slide-from-top {
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  -webkit-transform: translate3d(0,-100%,0);
      -ms-transform: translate3d(0,-100%,0);
      transform: translate3d(0,-100%,0);

  -webkit-backface-visibility: hidden;
        backface-visibility: hidden;

  -webkit-perspective: 1000;
      -ms-perspective: 1000;
          perspective: 1000;
}

.slide-from-top--init {
  -webkit-transform: translate3d(0,0,0);
      -ms-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0);
}

.has-nav-open .slide-from-top {
  -webkit-transform: translate3d(0,0,0);
      -ms-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0);
}

.slide-from-top.in,
body:not(.home):not(.didScroll) .slide-from-top {
  transition-delay: 0.2s;
  -webkit-transform: translate3d(0,0,0);
      -ms-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0);
}


.main-navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 902;
  border-bottom: 1px solid var(--primary);
}

.revo-nav {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: -2px;
  right: 0;
  padding: 15px 60px;
  border-bottom: 1px solid var(--primary);
  list-style: none;
}


.nav-item {
  margin-right: 40px
}

.nav-item:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .nav-item {
    margin-right: 20px
  }
}

.nav-link {
  color: #2c3a24;
}

.btn-search {
  display: inline-block;
  margin: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  margin-top: 2px;
}

.btn-search__svg {
  width: 32px;
  height: 32px;
}

.btn-search__svg path {
  fill: #2d3c23;
  -webkit-transition: fill .3s; /* For Safari 3.0 to 6.0 */
  transition: fill .3s; /* For modern browsers */
}

.has-nav-open .btn-search__svg path  {
  fill: #fff;
  transition-delay: .2s;
}


/* FULLSCREEN MENU */
.o-scroll {
    height: 100%;
}

.c-nav-button {
  display: inline-block;
  margin-top: 2px;
  padding: 0;
  outline: 0;
  border: 0;
  background: none;
  color: inherit;
  vertical-align: middle;
  z-index: 902;
  text-align: center;
  text-decoration: none;
    text-transform: none;
    line-height: normal;
  -webkit-appearance: button;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.c-nav-button:focus {
    outline: 0;
    box-shadow: none;
}

.c-nav-button--absolute {
  position: absolute;
  top: 25px;
  right: var(--em-gutter-x);
}

.c-nav-button_wrap {
  display: inline-block;
}

.c-nav-text{
  font-family: var(--font-family-kern);
  font-weight: normal;
  font-size: 25px;
  line-height: 50px;
  display: inline-block;
  color: var(--primary);
  text-transform: uppercase;
  cursor: pointer;
}

.c-nav-left {
  transform: translateX(-50%);
}

.c-nav-button_icon {
  display: inline-block;
  margin-top: 0.25rem;
  width: 40px;
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.has-nav-open .c-nav-button_icon {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
      transition-delay: 0.2s;
}

.c-nav-button_line {
  position: relative;
  display: block;
  height: 1px;
  margin-bottom: 11px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  transition: opacity 0.15s 0.05s, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, opacity 0.15s 0.05s;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, opacity 0.15s 0.05s, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.c-nav-button_line::before,
.c-nav-button_line::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 0em;
  background-color: #fff;
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: background-color .3s; /* For Safari 3.0 to 6.0 */
  transition: background-color .3s; /* For modern browsers */
}

.c-nav-button--primary .c-nav-button_line::before,
.c-nav-button--primary .c-nav-button_line::after {
  background-color: var(--primary);
}

.c-nav-button_line::after {
  opacity: 0;
}

.c-nav-button_line:nth-child(1)::before {
  transition-delay: 0.2s;
}

.has-nav-open .c-nav-button_line:nth-child(1) {
  transition-delay: 0s, 0.2s;
}
.has-nav-open .c-nav-button_line{
  opacity: 1;
  visibility: visible;
}

.has-nav-open .c-nav-button_line::before,
.has-nav-open .c-nav-button_line::after { 
  background-color: #000;
  transition-delay: 0.2s;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 699px) {
  .has-nav-open .c-nav-button_line:nth-child(1) {
    -webkit-transform: translateY(11px);
        -ms-transform: translateY(11px);
            transform: translateY(11px);
  }
}

@media (min-width: 700px) {
  .has-nav-open .c-nav-button_line:nth-child(1) {
    -webkit-transform: translateY(0.678rem);
        -ms-transform: translateY(0.678rem);
            transform: translateY(0.678rem);
  }
}

.c-nav-button_line:nth-child(2) {
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
}

.c-nav-button_line:nth-child(2)::before {
  transition-delay: 0.1s;
}

.has-nav-open .c-nav-button_line:nth-child(2) {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  transition-delay: 0.15s;
}

.c-nav-button_line:nth-child(3) {
  position: relative;
  margin-bottom: 0;
}

.c-nav-button_line:nth-child(3)::before {
  transition-delay: 0.0s;
}

.has-nav-open .c-nav-button_line:nth-child(3) {
  -webkit-transform: translateY(-0.59375rem);
      -ms-transform: translateY(-0.59375rem);
          transform: translateY(-0.59375rem);
  opacity: 0;
  transition-delay: 0s, 0.15s;
}

.c-nav-button_line:nth-child(3)::after {
  top: 0.59375rem;
}

/* Navigation Overlay */
.c-nav {
  position: fixed;
  width: 50%;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 901;
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0s 0.85s;
}

/*

.c-nav-top {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 99;
}
.c-nav-top .nav-left{
  background-color: rgba(12, 71, 94, .7);
  border-bottom: 1px solid var(--primary);
  transition: -webkit-background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-nav-top .nav-right{
  background-color: rgba(255, 255, 255, .7);
  border-bottom: 1px solid var(--primary);
}
.has-nav-open .c-nav-top .nav-left{
  background-color: rgba(12, 71, 94, .0);
  border-color: transparent;
  transition: -webkit-background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}*/

@media (max-width: 991px) {
  .c-nav {
    width: 100%;
  }
}

.has-nav-open .c-nav {
  visibility: visible;
  transition-delay: 0s;
}

body.is-loading[data-route-option="via-nav"] .c-nav {
  visibility: visible;
}

/*background transition*/
.c-nav_background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-nav_background::before,
.c-nav_background::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center left;
      -ms-transform-origin: center left;
          transform-origin: center left;
  transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-nav_background::before {
  background-color: rgba( var(--primary-rgb), .7);
  transition-delay: 0.25s;
  z-index: 1;
}

.c-nav_background::after {
  background-color: #fff; /*was #000*/
  transition-delay: 0.10s;
  z-index: 3;
}

/*@media (max-width: 575px) {
  .c-nav_background::after {
    bottom: 70px;
  }
}*/

.has-nav-open .c-nav_background::before, 
.has-nav-open .c-nav_background::after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.has-nav-open .c-nav_background::before {
  transition-delay: 0s;
}

.has-nav-open .c-nav_background::after {
  transition-delay: 0.15s;
}

/*Navigation container*/
.c-nav_list-wrap {
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  /*padding: 130px 60px 95px; */
  padding: 125px 60px 95px; 
  z-index: 4;
  display: flex;
  align-items: center;
  /*z-index: 999;*/
}

@media (max-width: 992px) {
  .c-nav_list-wrap {
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 575px) {
  .c-nav_list-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0px;
    left: 0;
    height: auto;
    font-size: 26px;
  }
}

@media (min-width: 576px) and (max-width: 1199px) {
  .c-nav_list-wrap {
    height: 100%;
  }
}


@media (max-width: 1199px) {
  .c-nav_list-wrap {
    visibility: hidden;
    transition: visibility 0s 0.6s;
  }
  .has-nav-open .c-nav_list-wrap {
    transition-delay: 0s;
    visibility: visible;
  }
}

.c-nav_list {
  position: relative;
  list-style: none;
  z-index: 4;
  margin-bottom: 0;
  padding: 0px;
  /*  
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -ms-flex-pack: center;
  justify-content: center;*/
}

@media (max-width: 767px) {
}

@media (max-width: 575px) {
}

/*List item element on menu*/
.c-nav_item {
  position: relative;
  margin-bottom: 56px;

  -webkit-transform: translateX(-100%) translateX(-7.5rem);
      -ms-transform: translateX(-100%) translateX(-7.5rem);
          transform: translateX(-100%) translateX(-7.5rem);

  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.c-nav_item:last-child {
    margin-bottom: 0;
}

.c-nav_item:nth-child(1) {
  transition-delay: 0.2s;
}

.c-nav_item:nth-child(2) {
  transition-delay: 0.1s;
}

.c-nav_item:nth-child(3) {
  transition-delay: 0.0666666667s;
}

.c-nav_item:nth-child(4) {
  transition-delay: 0.05s;
}

.c-nav_item:nth-child(5) {
  transition-delay: 0.04s;
}

.c-nav_item:nth-child(6) {
  transition-delay: 0.0333333333s;
}

.c-nav_item:nth-child(7) {
  transition-delay: 0.0285714286s;
}

.c-nav_item:nth-child(8) {
  transition-delay: 0.025s;
}

.c-nav_item:nth-child(9) {
  transition-delay: 0.0222222222s;
}

.c-nav_item:nth-child(10) {
  transition-delay: 0.02s;
}

.c-nav_item:nth-child(11) {
  transition-delay: 0.0181818182s;
}

.c-nav_item:nth-child(12) {
  transition-delay: 0.0166666667s;
}

.has-nav-open .c-nav_item {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.has-nav-open .c-nav_item:nth-child(1) {
  transition-delay: 0.19s;
}

.has-nav-open .c-nav_item:nth-child(2) {
  transition-delay: 0.23s;
}

.has-nav-open .c-nav_item:nth-child(3) {
  transition-delay: 0.27s;
}

.has-nav-open .c-nav_item:nth-child(4) {
  transition-delay: 0.31s;
}

.has-nav-open .c-nav_item:nth-child(5) {
  transition-delay: 0.35s;
}

.has-nav-open .c-nav_item:nth-child(6) {
  transition-delay: 0.39s;
}

.has-nav-open .c-nav_item:nth-child(7) {
  transition-delay: 0.43s;
}

.has-nav-open .c-nav_item:nth-child(8) {
  transition-delay: 0.47s;
}

.has-nav-open .c-nav_item:nth-child(9) {
  transition-delay: 0.51s;
}

.has-nav-open .c-nav_item:nth-child(10) {
  transition-delay: 0.55s;
}

.has-nav-open .c-nav_item:nth-child(11) {
  transition-delay: 0.59s;
}

.has-nav-open .c-nav_item:nth-child(12) {
  transition-delay: 0.63s;
}

.has-search-open .c-nav_item {
 -webkit-transform: translateX(-100%) translateX(-7.5rem);
      -ms-transform: translateX(-100%) translateX(-7.5rem);
          transform: translateX(-100%) translateX(-7.5rem);
    opacity: 0;
}


/*Item menu link*/
.c-nav_link {
  font-family: var(--font-family-aktifo-b);
  font-weight: 500;
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  text-transform: uppercase;
  transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


@media (max-width: 767px) {
  .c-nav_link {
    font-size: 30px;
    line-height: 120%;
  }
}


/* Page navigation end */

/*Page header titles*/
.em-page-title {
  font-size: 70px;
  line-height: 84px;
  font-family: var(--font-family-kern);
}

.em-page-subtitle {
  font-size: 23px;
  line-height: 45px;
  text-transform: uppercase;
  font-family: var(--font-family-kern);
}

.em-page-text, .single .em-page-text p{
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
  .em-page-title {
    font-size: 30px;
    line-height: 120%;
  }

  .em-page-subtitle {
    font-size: 14px;
    line-height: 120%;
  }

  .em-page-text, .single .em-page-text p {
    font-size: 14px;
    line-height: 20px;
  }
}



/* section element */
.em-section-card {
  padding-top: 90px;
  padding-bottom: 50px;
}

.em-section-body--full {
  max-width: 100%; 
}

.em-section-title {
  font-family: var(--font-family-aktifo-b);
  font-weight: 500;
  color: var(--primary);
  font-size: 40px;
  text-transform: uppercase;
}

.em-section-text {
  font-family: var(--font-family-kern);
  color: var(--gray-dark);
  font-size: 23px;
}

.em-section-text--sm {
  font-size: 18px;
}

@media (min-width: 1200px) {
  .em-section-body {
    max-width: 600px;
  }
}


@media (max-width: 991px) {
  .em-section-card {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .em-section-title {
    font-size: 24px;
  }
  .em-section-text {
    font-size: 14px;
  }
}

.feature-group {
  font-family: var(--font-family-kern);
  font-size: 14px;
  line-height: 26px;
  color: var(--gray-light);
}

.feature-group-item {
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--gray-dark);
}


/*text-fill overlay effect.*/
.em-reveal {
    display: inline;
    position: relative;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#000),to(#000));
    background-image: -o-linear-gradient(#000,#000);
    background-image: linear-gradient(#000,#000);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 100%;
    -webkit-transition: background-size .3s cubic-bezier(.165,.84,.44,1),color .1s;
    -o-transition: background-size .3s cubic-bezier(.165,.84,.44,1),color .1s;
    transition: background-size .3s cubic-bezier(.165,.84,.44,1),color .1s;
    /*padding-right: 5px;*/
    padding: 5px 5px 5px 0;
    line-height: 1.26;
}

.em-reveal:hover {
    background-size: 100% 100%
}

.em-reveal:hover {
    color: #fff;
    -webkit-transition: background-size .6s cubic-bezier(.165,.84,.44,1),color .35s;
    -o-transition: background-size .6s cubic-bezier(.165,.84,.44,1),color .35s;
    transition: background-size .6s cubic-bezier(.165,.84,.44,1),color .35s
}

/*reveal multiple line from top*/
.reveal-top span {
  width: 100%;
  display: inline-block;
  opacity: 0;
  animation-name: titleAnimation;
  animation-timing-function: ease;
  animation-duration: 0.6s;
}

.reveal-top span {
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
}

.reveal-top span:first-child {
  animation-delay: 0.7s;
}
.reveal-top span:last-child {
  animation-delay: 0.5s;
}

@keyframes titleAnimation {
  0% {
    transform: translateY(-50px);
    opacity: 0;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }
}


/* hover swipe effect. */
.em-hover {
  display: inline-block;
  cursor: pointer;
  position: relative;
  z-index: 0;
}

.em-hover::before {
  background: hsl(45 100% 70%);
  content: "";
  inset: 0;
  position: absolute;
  top: -1%;
  left: 0;
  height: 102%;
  z-index: -1;
  transition: transform 0.5s ease-in-out;
  -webkit-animation: rest 10s forwards;
            animation: rest 10s forwards;
}

.em-hover:hover::before {
  -webkit-animation: swipe 500ms forwards;
          animation: swipe 500ms forwards;
}

@-webkit-keyframes rest {
  0% {
    transform-origin: right center;
    transform: scaleX(0);
  }
  100% {
    transform-origin: right center;
    transform: scaleX(0);
  }
}
@keyframes rest {
  0% {
    transform-origin: right center;
    transform: scaleX(0);
  }
  100% {
    transform-origin: right center;
    transform: scaleX(0);
  }
}

@-webkit-keyframes swipe {
  0% {
    transform-origin: left center;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left center;
    transform: scaleX(1);
  }
  51% {
    transform-origin: right center;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right center;
    transform: scaleX(0);
  }
}
@keyframes swipe {
  0% {
    transform-origin: left center;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left center;
    transform: scaleX(1);
  }
  51% {
    transform-origin: right center;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right center;
    transform: scaleX(0);
  }
}


/*End Helpers*/
.form-control-em {
  padding-left: 0;
  color: var(--secondary);
  border-radius: 0;
  background-color: unset;
  border: unset;
  border-bottom: 1px solid var(--secondary, #96E0F7);
}

.form-control-em:focus {
    color: var(--secondary);
    background-color: unset;
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(var(--secondary-rgb, #96E0F7), .25);
}

.form-label-em {
  color:  var(--secondary, #96E0F7);
  opacity: 0.5;
  font-size: 18px;
}

.form-control-em::-moz-placeholder {
  color:  var(--secondary, #96E0F7);
  opacity: 0.5;
}

.form-control-em::placeholder {
  color:  var(--secondary, #96E0F7);
  opacity: 0.5;
}

.form-control-em--dark {
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
}

.form-control-em--dark:focus {
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), .25);
}

.form-control-em--dark::-moz-placeholder {
  color: var(--primary);
}
.form-control-em--dark::placeholder {
  color: var(--primary);
}

.form-label-em--dark {
  color:  var(--primary);
  opacity: 1;
}
/*Author styles*/

/*News Scroll*/
.scroll-ticker  {
  width: 100%;
  overflow: hidden;
  box-sizing: content-box;
  pointer-events: none;
  white-space: nowrap;
  position: relative;
  background-color: var(--white);
  margin-top: 46px;
}
.scroll-ticker__item {
  display: inline-block;
  padding-left: 2em;
  font-size: 110px;
  line-height: 100%;
  font-weight: 300;
  font-family: var(--font-family-aktifo-b);
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--gray-light);
  background-color: rgba(var(--white-rgb), 1);
  animation: scroll 10s infinite linear;
  will-change: transform;
}

@media (max-width: 767px) {
  .scroll-ticker__item {
    font-size: 45px;
  }
}

@-moz-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*END - News scroll*/

/*Job form*/
.job-form-section {
  padding-top: 130px;
  padding-bottom: 130px;
  position: relative;
}

.job-form-section--primary {
  background-color: var(--bg-primary);
}

.job-form-section--secondary {
  background-color: var(--bg-secondary);
}

.job-form-section--light {
  background-color: var(--bg-light);
}

.job-section-title {
  font-family: var(--font-family-aktifo-b);
  font-size: 40px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  max-width: 430px;
}

.job-section-description {
  font-family: var(--font-family-kern);
  font-size: 23px;
  line-height: 28px;
  color: var(--primary);
  max-width: 320px;
}

.job-apply-btn {
  font-size: 25px;
  font-family: var(--font-family-aktifo-b);
}

@media (max-width: 767px) {
  .job-form-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

  .job-section-title {
    font-size: 20px;
  }

  .job-section-description {
    font-size: 14px;
  }

  .job-apply-btn {
    font-size: 16px;
  }

  .job-form .form-label-em {
    font-size: 14px;
  }
}

.job-form .wpcf7 br{
  display: none;
}
/*END - Job form*/




/*Challange fund*/
.image-placeholder {
  background-color: #000000;
  position: relative;
  top: 0;
  bottom: 0;
}

.image-placeholder--right {
  right: 0;
}

.image-placeholder--left {
  left: 0;
}

.challange-fund__figure {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
}

.challange-fund__figure--image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 576px) {
  .image-placeholder--sm {
    position: absolute;
  }
}
@media (min-width: 768px) {
  .image-placeholder--md {
    position: absolute;
  }
}
@media (min-width: 992px) {
  .image-placeholder--lg {
    position: absolute;
  }
}
@media (min-width: 1200px) {
  .image-placeholder--xl {
    position: absolute;
  }
}
@media (min-width: 1400px) {
  .image-placeholder--xxl {
    position: absolute;
  }
}


/*About section homepage*/
.em-about {
  padding-top: 150px;
  padding-bottom: 150px;
}

.em-about-body {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.em-about-title,
.em-about-text {
  margin-bottom: 70px;
}

.em-about-list {
  border-radius: 0;
  /*margin: 70px 0;*/
}

.em-about-list__item {
    font-size: 25px;
    line-height: 30px;
    padding: 25px 3em 25px 0;
    white-space: nowrap;
    color: var(--primary);
    font-family: var(--font-family-aktifo-b);
    font-weight: 300;
    background-color: transparent;
    border: 0;
    border-top: 1px solid #E1E0E0;
    border-bottom: 1px solid #E1E0E0;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: padding 0.3s cubic-bezier(0.1, 0, 0.1, 1);
}

.em-about-list__item.active {
  font-weight: 500;
  color: var(--primary);
  background-color: inherit;
  border-color: #E1E0E0;
}

.em-about-list__item a {
  display: block;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}


.hover-effect::after {
  content: "";
  display: inline-block;
  background-image: url('../img/general/right.svg');
  position: absolute;
  top: 0;
  left: calc(100% - 2em);
  right: 3em;
  bottom: 0;
  background-size: 0.6em;
  background-repeat: no-repeat;
  background-position: center;
  transition: right 0.45s cubic-bezier(0.1, 0, 0.1, 1),  opacity 0.15s cubic-bezier(0.1, 0, 0.1, 1);
  opacity: 0;
}

.em-about-list__item.active,
.hover-effect:hover {
  padding: 25px 3em 25px .5em;
}

.em-about-list__item.active::after,
.hover-effect:hover::after {
  right: 0;
  opacity: 1;
}


/*Slider*/
.client-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 0;
}

.client-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: 5rem;
  background-color: var(--primary);
  color: var(--secondary);
}

.client-content__title,
.client-content__text,
.client-content__link {
  color: inherit;
}

.client-content__text {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 60px;
}

.client-content__link {
  font-family: var(--font-family-aktifo-b);
  font-weight: 300;
  font-size: 25px;
  line-height: 30px;
  border-bottom-color: var(--secondary);
}

@media (max-width: 991px) {
  .ratio-mob-none>* {
      position: relative;
      top: unset;
      left: unset;
      width: 100%;
      height: 100%;
  }

  .ratio-mob-none::before {
      display: none;
      padding-top: 0;
      content: none;
  }

  .client-content {
    position: relative;
    padding: var(--bs-gutter-x);
  }
}

@media (max-width: 767px) {
  .em-about {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .em-about-title,
  .em-about-text {
    margin-bottom: 25px;
  }

  .em-about-list__item {
    font-size: 20px;
    line-height: 120%;
    padding: 15px 3em 15px 0;
  }

  .client-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .client-content__text {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 35px;
    max-width: 100%;
  }

  .client-content__link {
    font-size: 18px;
  }
}
/*END - About section homepage*/




/*Portfolio cards*/
.em-portfolio {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}

.em-portfolio-card {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (min-width: 1400px) {
  .em-portfolio-left .em-portfolio-card {
    padding-left: 75px;
  }
}

@media (min-width: 1660px) {
  .em-portfolio-left .em-portfolio-card {
    padding-left: 150px;
  }
}

.em-portfolio-card.bg--primary {
  color: var(--white);
}

.em-portfolio-card.bg--secondary,
.em-portfolio-card.bg--light {
  color: var(--primary);
}

.em-portfolio-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 0;
  max-width: 600px;
}

.em-portfolio-card-title {
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 70px;
}

.em-portfolio-card-text {
  font-size: 23px;
  line-height: 175%;
  margin-bottom: 70px;
}

.bg--light .em-portfolio-card-text {
  color: var(--gray-dark);
}

.em-portfolio-card-link {
  font-size: 25px;
  font-weight: 500;
  font-family: var(--font-family-aktifo-b );
  line-height: 31px;
  font-weight: 500;
  text-transform: uppercase; 
  display: flex;
  align-items: baseline;
  padding: 30px 0;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}

.em-portfolio.bg--primary .em-portfolio-card-title,
.em-portfolio.bg--primary .em-portfolio-card-text,
.em-portfolio.bg--primary .em-portfolio-card-link{
  color: var(--white);
}

@media (max-width: 991px) {
  .em-portfolio-card-body {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .em-portfolio-card {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .em-portfolio-card-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .em-portfolio-card-text {
    font-size: 14px;
    line-height: 120%;
    margin-bottom: 40px;
  }

  .em-portfolio-card-link {
    font-size: 14px;
    line-height: 120%;
    padding: 15px 0;
    align-items: center;
  }
}



/*---------------*/
/***** Lily *****/
/*---------------*/
figure.effect-lily {
  overflow: hidden;
  cursor: pointer;
  /*position: relative;*/
}


figure.effect-lily figcaption {
  padding: var(--bs-gutter-x);
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

figure.effect-lily figcaption::before,
figure.effect-lily figcaption::after {
  pointer-events: none;
}

figure.effect-lily figcaption,
figure.effect-lily figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
figure.effect-lily figcaption > a {
  z-index: 10;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

figure.effect-lily .effect-lily__title {
  word-spacing: -0.15em;
  font-weight: 300;
  margin: 0;
  font-size: 30px;
}

figure.effect-lily .effect-lily__title--white {
  color: var(--white);
}

figure.effect-lily .effect-lily__title span {
  font-weight: bold;
}


figure.effect-lily img {
  max-width: none;
  width: -webkit-calc(100% + 50px);
  width: calc(100% + 50px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-40px,0, 0);
  transform: translate3d(-40px,0,0);
}

figure.effect-lily figcaption {
  text-align: left;
}


figure.effect-lily .effect-lily__title {
  opacity: 0;
  -webkit-transform: translate3d(0,40px,0);
  transform: translate3d(0,40px,0);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
  transition: opacity 0.2s, transform 0.35s;
}


figure.effect-lily:hover img,
figure.effect-lily:hover .effect-lily__title {
  opacity: 1;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}


figure.effect-lily:hover .effect-lily__title {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
}

@media (max-width: 767px) {
  .effect-lily__title {
    font-size: 24px;
  }
}


/*END - Portfolio cards*/


/*Horizontal accordion*/
.accordion.width {
  border: 1px solid rgba(0, 0, 0, 0.125);
  display: flex;
}

.accordion.width .card {
  flex-direction: row;
  flex-grow: 0;
  flex-shrink: 1;
  min-width: min-content;
}

.accordion.width .card .card-header {
  cursor: pointer;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
}

.accordion.width .card .card-header:not(.collapsed) {
  pointer-events: none;
}

.collapsing.width {
  transition: width 0.35s ease;
  height: auto;
  width: 0;
}


.em-horizontal-acc {
}

.em-horizontal-acc__item {
}

/*HEND - orizontal accordion*/


/*Service card*/
.em-card-col {
  position: relative;
  overflow-x: hidden;
  margin-top: 30px;
  margin-bottom: 30px;
}


.em-card-col::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0 ;
  border-right: 1px solid rgba(var(--primary-rgb), 0.7);
}


.em-card-col:last-child::after {
  content: none;
}


.em-card {
  border: unset;
  border-radius: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.em-card-body {
  padding: 0;
}

.em-card-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.em-card-text {
  font-size: 14px;
  line-height: 20px;
}


@media (max-width: 767px) {
  .em-card-col {
      margin-top: 0;
      margin-bottom: 0;
  }

  .em-card {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .em-card-title {
      margin-bottom: 15px;
  }

  .em-card {
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.7);
  }

  .em-card-col:last-child .em-card {
    border-bottom: none;
  }

  .em-card-col::after {
    content: none;
  }
}
/*END - Service card*/



/* Contact information */
.em-contact {
  border-top: 1px solid var(--primary);
  padding: 50px 0;
}

.em-contact-title {
  font-family: var(--font-family-kern);
  font-size: 14px;
  line-height: 120%;
}

.em-contact-text {
  font-family: var(--font-family-aktifo-b);
  font-weight: 500;
  font-size: 35px;
  color: var(--primary);
  text-transform: lowercase;
}

@media (max-width: 767px) {
  .em-contact {
    border-top: 1px solid transparent;
    padding: 15px 0;
  }

  .em-contact-text {
    font-size: 23px;
  }

}

/* END - Contact information */


/*Goggle map location*/
#map {
  position: relative;
  width: 100%;
  height: 530px;
}
@media (max-width: 767px) {
  #map {
    height: 380px;
  }
}
/*END - Goggle map location*/


/*Company Mission - Vision - value*/
.company-section {
  padding-top: 20px;
  padding-bottom: 0px;
  position: relative;
}


.company-section__item {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .company-section__item {
    padding-top:0px;
    padding-bottom:0px;
  }
}

.company-seperator {
  border-top: 1px solid rgba(var(--primary-rgb), 0.7);
  margin-top: 40px;
  margin-bottom: 40px;
  display: inline-block;
  width: 100%;
}

.company-title {
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 90px;
}

.company-description {
  font-size: 23px;
  line-height: 45px;
  max-width: 580px;
}

.company-description--full {
  max-width: unset;
}


@media (max-width: 767px) {
  .company-section {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .company-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .company-description {
    font-size: 14px;
    line-height: 120%;
    max-width: 100%;
  }
}



/*accordion*/
.faq-item {
    background-color: transparent;
    border: 1px solid var(--primary);
}

.faq-btn {
    padding: 35px 0;
    font-size: 20px;
    line-height: 120%;
    color: var(--primary);
    background-color: transparent;
}

.faq-btn:not(.collapsed) {
    color: var(--primary);
    background-color: transparent;
    box-shadow: none;
}


.faq-btn:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.faq-body {
  margin: 0;
  font-family: var(--font-family-kern);
  font-size: 16px;
  padding-left: 0;
  padding-right: 0;
}

.faq-item:last-of-type .faq-collapse {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.faq-item:last-of-type .faq-btn.collapsed {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

@media (max-width: 767px) {
  .faq-btn {
      font-size: 18px;
  }


  .faq-body {
    font-size: 14px;
  }

}

/*END = Company Mission - Vision - value*/


/*Slider Start*/

.swiper-clients {
  width: 100%;
  height: 100%;
}

.swiper-clients .swiper-slide {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  flex-grow: 1;
}

.swiper-clients .swiper-img {
  display: block;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

/*END - Slider*/

.art-slider-content {
  height: 243px; /*height of 3 elements*/
  overflow: hidden;
}

.art-slider-content .swiper-slide {
  cursor: pointer;
}


.art-slider-content .swiper-slide.swiper-slide-active {
  opacity: 1;
  font-weight: 500;
  color: var(--primary);
  background-color: inherit;
  border-color: #E1E0E0;
}

.art-slider-content .swiper-slide.swiper-slide-active::after {
  right: 0;
  opacity: 1;
}


.art-slider-images {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.art-slider-images .swiper-slide {
  background: var(--primary);
}



/*Newsletter*/
.newsletter {
  background-color: var(--primary);
  padding-top: 40px;
  padding-bottom: 80px;
}

.newsletter-sc-title {
  font-size: 23px;
  line-height: 54px;
  font-family: var(--font-family-kern);
  font-weight: 400;
  color: var(--secondary);
}

@media (max-width: 767px) {
  .newsletter-form .newsletter-form-input {
    margin-bottom: 10px;
  }
}


/*END - Newsletter*/

/*Footer*/
.footer {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--white);
}

.footer-logo {
  max-width: 118px;
  width: 100%;
  margin-top: ;
}

.company-intro {
  font-size: 14px;
  line-height: 26px;
  color: var(--gray-dark);
}

.footer-header {
  font-size: 20px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 30px;
}


.footer-nav {
  margin-bottom: 30px;
}

.footer-nav__item {
  font-family: var(--font-family-kern);
  font-size: 16px;
  line-height: 1.4;
  color: var(--gray-dark);
}

.footer-nav__link {
  padding-left: 0;
  padding-right: 0;
  color: var(--gray-dark);
}

.footer-nav__link.active,
.footer-nav__link:hover {
  color: var(--primary);
}

.footer-nav__link.disabled {
  color: var(--secondary);
  pointer-events: none;
  cursor: default;
}

.footer-nav--inline {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
  overflow-wrap: inherit;

}

.footer-nav--inline li {
  display: inline-block;
  position: relative;
}

.footer-nav--inline li + li {
  padding-left: 15px;
}

.footer-nav--inline li + li:before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "-");
  position: absolute;
  left: 4px;
  top: 7px;
}

@media (max-width: 767px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-header {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .footer-logo {
    max-width: 74px;
  }


  .social-nav .footer-nav__link {
    color: var(--primary);
  }
}

/*End - Footer*/


/*END - Author styles*/

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* Home Main Intro */

.intro {
  position: relative;
  width: 100%;
  min-height: 100%;
  margin:  0;
  padding: 0;
}

.intro-logo {
  display: inline-block;
  position: absolute;
  top: 15px;
  left: var(--em-gutter-x);
}

.intro_nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 14px 60px;
  text-transform: uppercase;
  font-size: 25px;
  line-height: 50px;
  border-bottom: 1px solid var(--primary);  
}

.home-main-intro{
  min-height: 100vh;
  position: relative;
  padding: 0px;
  z-index: 900; 
}
.intro-right-content{
  position: relative;
  min-height: calc(100vh - 360px);
}

.horizontal-white-border {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: 360px;
  left: 0;
}

.vertical-white-border{
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #fff;
  top: 0px;
  right: 17%;
}
.intro_content{
  position: relative;
  padding: 120px 60px 95px; /*95 + 25*/
  display: flex;
  flex-direction: column;
  height: 100%;
  /*justify-content: space-between;*/
}
.intro_content-title{
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--primary);
}
.intro_content-category {
  font-family: var(--font-family-kern);
  font-size: 12px;
  line-height: 26px;
  color: var(--gray-light);
  display: block;
  margin-bottom: 12px; 
}
.intro_content-text {
  font-size: 18px;
  line-height: 26px;
  color: var(--primary);
  margin-bottom: 0;
}

.bottom-intro-items{
  display: flex;
  flex-wrap: nowrap;
  height: 360px;
  width: 100%;
  flex-direction: row;
}
.bottom--item {
  background-color: var(--primary);
  display: flex;
  /*justify-content: center;*/
  align-items: flex-end;
  flex: 0 0 auto;
  width: 33.3333333333%;
  max-width: 100%;
  position: relative;
  border-right: 1px solid var(--white);
  padding: var(--em-gutter-x);
}

.bottom--item:last-child{
  border-right: 1px solid var(--primary);
}


.bottom--item .item-nr {
    position: absolute;
    top: 13px;
    right: 13px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 13px;
    color: var(--secondary);
}

.bottom--item p {

  font-size: 25px;
  line-height: 30px;
  color: var(--secondary);

  transform-origin: center left;
  -webkit-transform: rotate(-90deg) translate3d(-25px, 30px, 0px);
      -ms-transform: rotate(-90deg) translate3d(-25px, 30px, 0px);
          transform: rotate(-90deg) translate3d(-25px, 30px, 0px);

/*  transform-origin: center;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);

  -ms-writing-mode: tb-rl; 
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;*/


  margin: 0px;
  margin-top: auto;
  white-space: nowrap;
  position: relative;
}

.bottom--item-1{
  width: 50%;
}

.bottom--item-2 {
  width: 33%;
}

.bottom--item-3 {
  width: 17%;
}

@media (min-width: 1200px) {
  .bottom--item-1 {
    padding-left: 60px;
  }
}

@media (max-width: 1199px) {
  .intro_content {
    padding: 30px 32px;
  }
  .intro-img {
    max-height: 400px;
  }
}


@media (max-width: 768px) {
  .bottom--item{
    width: 33.3333%;
  }
}
/* END -  Home Main Intro */

/* Accordion Vertical */
.accordion-vertical {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
  background-color: #fff;
}

.accordion-vertical.accordion-large{
  height: 780px;
}


.accordion-vertical.accordion-large .box-contain{
  flex-direction: column;
  justify-content: space-between;
  padding: 125px 77px 60px 110px;
  /* margin-left: 105px; */
}
.accordion-vertical.accordion-large .box-item{
  position: relative;
}
.accordion-vertical .box-item.text-light .box-title,
.accordion-vertical .box-item.text-light .box-number,
.accordion-vertical .box-item.text-light .title,
.accordion-vertical .box-item.text-light .card-text,
.accordion-vertical .box-item.text-light p{
  color: #fff!important;
}
.accordion-vertical.accordion-large .box-item:after{
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 175px;
  height: 100%;
  background-color: rgba(0, 0, 0, .3);
}
@media (max-width: 1399px) {
  .accordion-vertical.accordion-large .box-contain{
    padding: 100px 50px 40px 40px;
  }
  .accordion-vertical.accordion-large .box-contain .title,
  .accordion-vertical.accordion-large .box-contain .card-text{
    margin-bottom: 30px!important;
  }

  .accordion-vertical.accordion-large .box-item:after{
    width: 110px;
  }
}
@media (max-width: 1024px) {
  .accordion-vertical.accordion-large .box-item:after{
    width: 100%;
    height: 102px;
  }
  .accordion-vertical.accordion-large .box-contain {
    padding: 20px 17px 30px 0px;
    margin-top: 26px;
	margin-right: -17px;
  }
  .accordion-vertical.accordion-large{
    height: auto;
  }
}

.accordion-vertical.accordion-large .box-contain .title{
  font-style: normal;
  font-weight: normal;
  font-size: 23px;
  line-height: 28px;
  text-transform: uppercase;
  color: #0C475E;
  margin-bottom: 67px;
}

.accordion-vertical.accordion-large .box-contain .card-text{
  font-style: normal;
  font-weight: normal;
  font-size: 23px;
  line-height: 30px;
  max-width: 100%;
  color: #0C475E;
}
.accordion-vertical.accordion-large .box-contain.has-no-image .card-text{
  max-width: 100%;
}

@media (max-width: 620px) {
  .accordion-vertical.accordion-large .box-contain .card-text,
  .accordion-vertical.accordion-large .box-contain .title{
    font-size: 18px;
    line-height: 26px;
    max-width: 100%;
  }
}

.accordion-vertical .box-item {
  transition: all 400ms linear 50ms;
  cursor: pointer;
  position: relative;
  /*height: 100%;*/
  width: 175px;
  overflow: hidden;
  flex: 0 0 auto;

}
.accordion-vertical .expand {
  width: calc(100% - 350px);
  color: white;
  /* transition: all 400ms ease-in-out 50ms; */

}
/* .expand .accordion-vertical-toggle{
  left: 59px;
  transition: all 400ms linear 50ms;
} */
.accordion-vertical-toggle{
  transition: all 400ms linear 50ms;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  left: 81px;
  bottom: 0px;
  height: 36px;
  margin-bottom: -18px;
  position: absolute;
  transform-origin: left;
  -webkit-transform: rotate(-90deg);
  -moz-transform:    rotate(-90deg);
  -ms-transform:     rotate(-90deg);
  -o-transform:      rotate(-90deg);
  transform:         rotate(-90deg);

}
.box-title{
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 37px;
  color: #0C475E;
  display: block;
  margin-left: 53px;
  z-index: 99;
  white-space: nowrap;
}
.box-number{
  margin-right: 44px;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 37px;
  color: #0C475E;
}
.box-contain{
  z-index: 2;
  position: relative;
  overflow-y: auto;
  margin-left: 175px;
  /* padding-right: 80px; */
  display: flex;
  height: 100%;
  align-self: baseline;
  align-items: center;
  padding-right: 20px;
}

.box-contain-description{
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 40px;
  margin-bottom: 0;
  color: #0C475E;
}


.bg--primary .box-number, 
.bg--primary .box-title, 
.bg--primary .box-contain-description, 
.bg--gray .box-number,
.bg--gray .box-title,
.bg--gray .box-contain-description{
 color: var(--white);
}
@media (max-width: 1550px) {
  .box-contain-description {
    font-size: 20px;
    line-height: 32px;
  }
  .accordion-vertical .box-item{
    width: 140px;
  }
  .accordion-vertical-toggle{
    left: 66px;
  }
  .box-contain {
    margin-left: 141px;
  }
}
@media (max-width: 1399px) {
  .accordion-vertical .box-item{
    width: 110px;
  }
  .accordion-vertical .expand{
    width: calc(100% - 220px);
  }
  .accordion-vertical-toggle{
    left: 55px;
  }
  .expand .accordion-vertical-toggle{
    left: 40px;
  }
  .box-contain{
    margin-left: 111px;
    padding-right: 30px;
    min-height: 400px;
  }
  .box-contain-description {
    font-size: 18px;
    line-height: 34px;
  }
}
@media (max-width: 1024px) {
  .accordion-vertical-toggle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    left: 0px!important;
    bottom: 0px;
    height: 36px;
    margin-bottom: 0;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .box-title, .box-number{
    margin-left: 0px;
    margin-right: 0px;
    font-size: 20px;
    line-height: 25px;
  }
  .accordion-vertical {
    flex-direction: column;
  }
  .accordion-vertical .expand,.accordion-vertical .box-item {
    width: 100%;
  }
  .box-contain {
      margin-left: 0px;
      padding-right: 0px;
      min-height: 260px;
      padding-top: 20px;
      padding-bottom: 35px;
      margin-top: 25px;
      align-items: start;
  }
  .accordion-vertical .box-item{
    padding: 40px 34px;
    height: 102px;
    transition: all 400ms linear 50ms;
  }
  .accordion-vertical .box-item.expand{
    height: 450px;
    transition: all 400ms linear 50ms;
  }
  .accordion-vertical.accordion-large .box-item.expand{
    height: 520px;
  }
}
@media (max-width: 620px) {
  .accordion-vertical.accordion-large .box-item.expand{
    height: 620px;
  }
}
/* END - Vertical Dropdown */





/* Accordion Vertical */


.horizontal-em {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 560px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style-type: none;
}

.horizontal-em__item {
  display: flex;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  width: auto;
  cursor: pointer;
  transition: all 0.5s ease;
}

.horizontal-em__header {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 45px 15px;
}

.horizontal-em__body {
  position: relative;
  z-index: 2;
  display: none;
  padding: 15px;
}


.horizontal-em__title {
  font-size: 30px;
  line-height: 1;
  width: 145px;
  color: var(--primary);
  font-family: var(--font-family-aktifo-b);
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  transform: rotate(180deg);
  white-space: nowrap;
  /*width: 100%;*/
  height: 100%;
  writing-mode: vertical-lr;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.horizontal-em__text {
  font-size: 23px;
  line-height: 45px;
  color: var(--primary);
  font-family: var(--font-family-kern);
  margin: 0;
  padding: 0;
  display: flex;
  align-self: center;
}


.horizontal-em__item.active {
  flex: 1 0 0%;
  cursor: default;
}

.horizontal-em__item.active .horizontal-em__body {
  display: flex;
}


.bg--primary .horizontal-em__title, 
.bg--primary .horizontal-em__text, 
.bg--gray .horizontal-em__title,
.bg--gray .horizontal-em__text{
  color: var(--white);
}

/* General pages style */
.inner-pages{
  padding-top: 115px;
}
.entry-content p{
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0.5rem;
}
.error-404{
  text-align: center;
  padding: 120px 20px;
}
.in-focus .form-label-em{
  opacity: .65;
  transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output, .wpcf7 form.sent .wpcf7-response-output {
    border-color: #ffb900;
    background: #fff;
    margin: 20px 0px;
    font-family: var(--font-family-kern);
    font-size: 17px;
    line-height: 33px;
    color: var(--primary);
}
.wpcf7 form.sent .wpcf7-response-output{
 border-color: #46b450!important;
}

@media (max-width: 767px) {
  .inner-pages{
    padding-top:60px;
  }
}

/* End general pages style */

/* Blog start style */
.blog-featured-image .wp-post-image{
  width: 100%;
  height: auto;
}
.blog-featured-image .post-thumbnail{
  position: relative;
  padding-top: 35%;
  overflow: hidden;
}
.blog-featured-image .post-thumbnail .wp-post-image{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single .size-full img{
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
section.widget{
  margin-bottom: 35px;
}
.wp-block-search__button {
    background: #0c475e;
    border: 1px solid #0c475e;
    color: #ffffff;
}
.wp-block-search__input{
    border: 1px solid #0c475e;

}
.single .em-page-text p {
  margin-bottom: 1.5rem;
}

.single  h2,
.single h3,
.single h4,
.single h5,
.single h6
{
  margin-top: 20px;
}
.archive .post-thumbnail{
  position: relative;
  padding-top: 64%;
  overflow: hidden;
  display: block;
  overflow: hidden;
}
.archive a.post-thumbnail img{
  transform: scale(1) translateY(-0.5rem) translateX(0.15rem);
  
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  height: 100%;
}
.archive a.post-thumbnail:hover img{
  transform: scale(1.1) translateY(-0.5rem) translateX(0.15rem);
}
.archive a.post-thumbnail:hover img{
-webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

@media (max-width: 767px) {
  .single h2 {
    font-size: 26px;
  }

  .single h3 {
    font-size: 22px;
  }

  .single h4 {
    font-size: 18px;
  }
}

/* Blog end style */

.home .codedropz-upload-handler{
  border-color: #ffffff;
}