/*
Theme Name: ZULU RED
Theme URI: https://zuluthemes.com
Author: Akere achu
Author URI: https://akereachu.com/
Description: ZULU RED is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog
Text Domain: twentysixteen

*/


 
/*------------------------------------
  Default Styles
------------------------------------*/
 

/* #Typography Variables
================================================== */
/* #Colour Variables
================================================== */

@font-face {
  font-family: "Century Gothic";
  font-style: normal;
  font-weight: 400;
  src: url(assets/fonts/Century-Gothic.ttf) format("truetype");
}
@font-face {
  font-family: "Century Gothic";
  font-style: normal;
  font-weight: 700;
  src: url(assets/fonts/century-gothic-Bold.ttf) format("truetype");
}

html {
  font-size: 1rem;
}

html {
  overflow-y: scroll;
}
 

body {
  font-family: "Century Gothic", Sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
  transition: all 200ms linear;
}
 
/* Zulu ContainerFLuid Width */
.container-fluid {
  max-width: 1280px;
}


a {
  color: #777777;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

a:hover {
  color: #dd391b;
}

a:focus {
  outline: none;
}

p {
  line-height: 1.8;
}

figure {
  margin-bottom: 0;
}

hr {
  border-color: #e6e7e9;
}

[role=button] {
  cursor: pointer;
}

.text-red{
  color: #ee3123;
}
.bg-red{
  background-color: #dd391b;
}
.bg-gray{
  background-color: #f0f0f0;
}
/*------------------------------------
  Headings
------------------------------------*/
.h1, .h2, .h3, .h4, .h5, .h6, .h7,
h1, h2, h3, h4, h5, h6 {
  line-height: 1.6;
}


/*------------------------------------
  Buttons
------------------------------------*/
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 0.8rem;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 0px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.header-btn {
  background: #54595f;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: Uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-left: 20px;
}

.btn-red {
  color: #fff;
  background-color: #e92b25;
  border-color: #e92b25;
}
.btn-red:hover {
  color: #fff;
  background-color: #54595f;
  border-color: #54595f;
}

.btn-simple{
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e92b25;
    border-radius: 0;
}




/*------------------------------------
  Video Button and Pop up
------------------------------------*/
.video-play-button {
  position: relative;
  z-index: 10;
  top: 50%;
  margin-left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #ba1f24;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #e92b26;
  border-radius: 50%;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: #da0528;
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.video-overlay-close:hover {
  color: #fa183d;
}

.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  /* width: 90%; */
  /* height: auto; */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}


/*------------------------------------
  Titles
------------------------------------*/
.zulu-headiafoliba-title {
  font-family: "Century Gothic",Sans-serif;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.4em;
  letter-spacing: 2px;
}
.zulu-second-headiafoliba-title {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.4em;
  letter-spacing: 2px;
}
.zulu-sub-headiafoliba-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5em;
  letter-spacing: 2px;
}
.zulu-sec-headiafoliba-title {
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.5em;
  letter-spacing: 2px;
}
/*------------------------------------
  Highlight Color
------------------------------------*/
::-moz-selection {
  color: #fff;
  background-color: #eee;
}

::selection {
  color: #fff;
  background-color: #eee;
}

.bg-primary ::-moz-selection {
  color: #dd391b;
  background-color: #eee;
}

.bg-primary ::selection {
  color: #dd391b;
  background-color: #eee;
}

/*----------------------------------
  Alerts
------------------------------------*/
/* Alert Icon */
.alert__icon {
  font-size: 1.25rem;
}

/* Alert Close Button */
.alert__close {
  padding: 0;
  line-height: 1.3;
  opacity: .7;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.625rem;
  transition: all .3s;
}

.alert__close--light {
  color: #fff;
}

.alert__close--dark {
  color: #1b1e24;
}

.alert__close:hover {
  opacity: 1;
}

.alert__close:focus {
  outline: 0 none;
  box-shadow: none;
}

/*----------------------------------
  Background Arrow
------------------------------------*/
.zulu-bg-arrow-wrapper {
  position: relative;
}

.zulu-bg-arrow-bottom::before {
  position: absolute;
  content: "";
  left: 50%;
  margin-left: -20px;
  bottom: -25px;
  border-style: solid;
  border-width: 25px 20px 0 20px;
  border-color: #fff transparent transparent transparent;
  z-index: 3;
}

/*----------------------------------
  Avatars
------------------------------------*/
.zulu-avatar {
  border: solid 3px #fff;
}

/*----------------------------------
  Border Radius
------------------------------------*/
.rounded-md {
  border-radius: .625rem;
}

/*----------------------------------
  Buttons
------------------------------------*/
.btn {
  cursor: pointer;
  transition: .2s ease;
}

.btn.focus,
.btn:focus .btn.active:focus, .btn:active:focus {
  outline: 0 none;
  box-shadow: none;
  border-color: transparent;
}

.btn--circle {
  border-radius: 100%;
  padding: 0;
  width: 2.625rem;
  height: 2.625rem;
  line-height: 2.625rem;
}

.btn--circle.btn-sm {
  width: 1.9375rem;
  height: 1.9375rem;
  line-height: 1.9375rem;
}

.btn--circle.btn-lg {
  width: 3.25rem;
  height: 3.25rem;
  line-height: 3.25rem;
}

.btn--pill {
  border-radius: 6.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.btn--pill.btn-sm {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

.btn--pill.btn-lg {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}

.btn-link {
  color: #dd391b;
}

.btn-link:hover {
  color: #dd391b;
}

/*----------------------------------
  Carousell
------------------------------------*/
.carousel-control-size {
  font-size: 2rem;
}

/*----------------------------------
  Forms
------------------------------------*/
/* Form Lable States */
.is-valid .form-label-text {
  color: #0dd157;
}

.is-invalid .form-label-text {
  color: #fb4143;
}

.is-disabled .form-label-text {
  color: #8f95a0;
}

/* Form Pilled Shape */
.form--pill {
  border-radius: 6.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Forms Icon */
.form-icon-wrapper {
  position: relative;
  display: block;
}

.form-icon-input-left {
  padding-left: 2.1875rem;
}

.form-icon-input-right {
  padding-right: 2.1875rem;
}

.form-icon {
  position: absolute;
  height: 100%;
  width: 2.5rem;
}

.form-icon--left {
  left: 0;
}

.form-icon--right {
  right: 0;
}

.form-icon__item {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #8f95a0;
  transform: translate(-50%, -50%);
}

/* Form Toggles */
.form-toggle {
  position: relative;
  cursor: pointer;
}

.form-toggle__item {
  display: block;
  padding-left: 1px;
  padding-right: 1px;
  cursor: pointer;
  width: 43px;
  height: 22px;
  font-style: normal;
  font-weight: 700;
  font-size: 9px;
  color: #d5d7dc;
  border: solid 1px #d5d7dc;
  border-radius: 6.25rem;
}

.form-toggle__item i::before, .form-toggle__item i::after {
  content: "";
  display: block;
  position: absolute;
}

.form-toggle__item i::before {
  content: attr(data-uncheck-icon);
  top: 0;
  left: 0;
  width: 100%;
  line-height: 18px;
  text-align: right;
  padding: 2px 7px;
}

.form-toggle__item i::after {
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: #d5d7dc;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: left .2s ease;
}

.form-toggle input[type="checkbox"],
.form-toggle input[type="radio"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.form-toggle input[type="checkbox"]:checked + .form-toggle__item,
.form-toggle input[type="checkbox"]:checked + * .form-toggle__item,
.form-toggle input[type="radio"]:checked + .form-toggle__item,
.form-toggle input[type="radio"]:checked + * .form-toggle__item {
  color: #fff;
  background-color: #dd391b;
  border-color: #dd391b;
  transition: all .3s ease;
}

.form-toggle input[type="checkbox"]:checked + .form-toggle__item i:before,
.form-toggle input[type="checkbox"]:checked + * .form-toggle__item i:before,
.form-toggle input[type="radio"]:checked + .form-toggle__item i:before,
.form-toggle input[type="radio"]:checked + * .form-toggle__item i:before {
  content: attr(data-check-icon);
  text-align: left;
}

.form-toggle input[type="checkbox"]:checked + .form-toggle__item i::after,
.form-toggle input[type="checkbox"]:checked + * .form-toggle__item i::after,
.form-toggle input[type="radio"]:checked + .form-toggle__item i::after,
.form-toggle input[type="radio"]:checked + * .form-toggle__item i::after {
  left: calc(100% - 19px);
  background-color: #fff;
}

.is-valid .form-toggle__item {
  color: #0dd157;
  border: solid 1px #0dd157;
}

.is-valid .form-toggle__item i::after {
  background-color: #0dd157;
}

.is-valid .form-toggle input[type="checkbox"]:checked + .form-toggle__item,
.is-valid .form-toggle input[type="checkbox"]:checked + * .form-toggle__item,
.is-valid .form-toggle input[type="radio"]:checked + .form-toggle__item,
.is-valid .form-toggle input[type="radio"]:checked + * .form-toggle__item {
  background-color: #0dd157;
  border-color: #0dd157;
}

.is-invalid .form-toggle__item {
  color: #fb4143;
  border: solid 1px #fb4143;
}

.is-invalid .form-toggle__item i::after {
  background-color: #fb4143;
}

.is-invalid .form-toggle input[type="checkbox"]:checked + .form-toggle__item,
.is-invalid .form-toggle input[type="checkbox"]:checked + * .form-toggle__item,
.is-invalid .form-toggle input[type="radio"]:checked + .form-toggle__item,
.is-invalid .form-toggle input[type="radio"]:checked + * .form-toggle__item {
  background-color: #fb4143;
  border-color: #fb4143;
}

.is-disabled .form-toggle__item {
  color: #e6e7e9;
  border: solid 1px #e6e7e9;
}

.is-disabled .form-toggle__item i::after {
  background-color: #e6e7e9;
}

.is-disabled .form-toggle input[type="checkbox"]:checked + .form-toggle__item,
.is-disabled .form-toggle input[type="checkbox"]:checked + * .form-toggle__item,
.is-disabled .form-toggle input[type="radio"]:checked + .form-toggle__item,
.is-disabled .form-toggle input[type="radio"]:checked + * .form-toggle__item {
  background-color: #e6e7e9;
  border-color: #e6e7e9;
}

/* Bootstrap's Custom Controls */
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #0dd157;
}

.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #fb4143;
}

.custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: #d5d7dc;
}

/*----------------------------------
  Modals
------------------------------------*/
.modal-content {
  box-shadow: 0 0.25rem 0.6rem rgba(27, 30, 36, 0.07);
}

@media (min-width: 576px) {
  .modal-content {
    box-shadow: 0 0.5rem 1.625rem rgba(27, 30, 36, 0.07);
  }
}

/*----------------------------------
  Pager
------------------------------------*/
.pager-btn {
  min-width: 7.2rem;
}

.pager-btn.btn-sm {
  min-width: 6.2rem;
}

.pager-btn.btn-lg {
  min-width: 9.4rem;
}

/*----------------------------------
  Popover
------------------------------------*/
.popover {
  box-shadow: 0 0.25rem 0.6rem rgba(27, 30, 36, 0.07);
}

/*----------------------------------
  Progress Bars
------------------------------------*/
.progress--pill {
  border-radius: 6.25rem;
}

.zulu-progress-bar-vertical {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  background-color: #faf7fc;
  height: 200px;
}

.zulu-progress-bar-vertical__indicator {
  background-color: #dd391b;
}

/*----------------------------------
  Tabs
------------------------------------*/
.nav-tabs--v1 .nav-item {
  margin-right: 3px;
}

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

.nav-tabs--v1 .nav-link {
  border-top-width: 3px;
}

.nav-tabs--v1 .nav-link:hover, .nav-tabs--v1 .nav-link:focus {
  border-color: transparent;
}

.nav-tabs--v1 .nav-link.active,
.nav-tabs--v1 .nav-item.show .nav-link {
  border-top-color: #dd391b;
}

.nav-tabs--v1 .nav-link.active:hover, .nav-tabs--v1 .nav-link.active:focus,
.nav-tabs--v1 .nav-item.show .nav-link:hover,
.nav-tabs--v1 .nav-item.show .nav-link:focus {
  border-left-color: #e6e7e9;
  border-right-color: #e6e7e9;
  border-top-color: #dd391b;
}

.tab-content--v1 {
  padding: 1.25rem 1rem;
  margin-top: -1px;
  border: solid 1px #e6e7e9;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.tab-content--v1 p:last-of-type {
  margin-bottom: 0;
}

/*----------------------------------
  Blockquote-v1
------------------------------------*/
.blockquote-v1 {
  padding: 1.5rem 1.25rem;
  background-color: #f6f9fc;
  font-size: 1.25rem;
  font-weight: 300;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.blockquote-v1--left {
  border-left: solid 0.25rem #dd391b;
}

.blockquote-v1--right {
  border-right: solid 0.25rem #dd391b;
}

/*----------------------------------
  Blockquote-v2
------------------------------------*/
.zulu-blockquote-v2 {
  position: relative;
  background-color: #fff;
  box-shadow: 5px 6px 9px -6px rgba(0, 0, 0, 0.15);
  padding: 1.875rem 1.875rem 1.875rem 3.75rem;
}

.zulu-blockquote-v2::before {
  content: "\201C";
  position: absolute;
  width: 3.75rem;
  margin: -1.5625rem 0 0 -2.5rem;
  color: #dd391b;
  font-size: 3.75rem;
}

.zulu-blockquote-v2::after {
  content: "";
  position: absolute;
  bottom: -1.875rem;
  left: 3.75rem;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: #fff transparent transparent transparent;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1));
}

.zulu-blockquote-v2__image {
  width: 3.75rem;
  height: 3.75rem;
}

/* Logos List */

.logos-list .zulu-logo__image {
  width: 10rem;
  margin-left: auto;
  margin-right: auto;
  /* filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale"); */
  /* filter: gray; */
  /* -webkit-filter: grayscale(100%); */
  /* opacity: .3; */
  transition: all 0.3s ease;
}

/*------------------------------------
  Clients
------------------------------------*/
.zulu-clients__item {
  border-width: 1px 0 1px 1px;
  /* border-color: #e6e7e9; */
  border-color:transparent;
  border-style: solid;
  padding: 3rem 0;
}

.zulu-clients__image {
  width: 7.5rem;
  margin-left: auto;
  margin-right: auto;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
  opacity: .3;
  transition: all 0.3s ease;
}

 
.zulu-clients__image:hover {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(0%);
  opacity: 1;
}

/*------------------------------------
  Mockup (Browser)
------------------------------------*/
.zulu-browser-img {
  position: relative;
  top: -7px;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

/*------------------------------------
  Device (iPad)
------------------------------------*/
.zulu-device {
  position: relative;
  width: 85%;
  z-index: -1;
  margin-bottom: -10rem;
}

.zulu-device__item {
  border-radius: 2rem;
  box-shadow: 10px 15px 55px 15px rgba(140, 152, 164, 0.1);
}

/*------------------------------------
  Icon
------------------------------------*/
.zulu-icon {
  position: relative;
  z-index: 1;
  line-height: .7;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.125rem;
  border-radius: .25rem;
  transition: .3s ease-in-out;
}

.zulu-icon__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.zulu-icon__inner-bottom-minus {
  top: 90%;
}

/*------------------------------------
  Icon Sizes
------------------------------------*/
/* Extra Small */
.zulu-icon--size--xs {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.8125rem;
}

/* Small */
.zulu-icon--size--sm {
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
}

/* Large */
.zulu-icon--size--lg {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.75rem;
}

/* Extra Large */
.zulu-icon--size--xl {
  width: 5rem;
  height: 5rem;
  font-size: 2.375rem;
}

/*------------------------------------
  Icon Default Styles
------------------------------------*/
/* primary */
.zulu-icon-primary {
  color: color-yiq(#dd391b);
  background-color: #dd391b;
  border-color: #dd391b;
}

.zulu-icon-primary[href]:hover {
  color: color-yiq(#441f5d);
  background-color: #441f5d;
  border-color: #3d1b54;
}

.zulu-icon-primary.disabled, .zulu-icon-primary:disabled {
  background-color: #dd391b;
  border-color: #dd391b;
}

/* secondary */
.zulu-icon-secondary {
  color: color-yiq(#00c9a7);
  background-color: #00c9a7;
  border-color: #00c9a7;
}

.zulu-icon-secondary[href]:hover {
  color: color-yiq(#00a387);
  background-color: #00a387;
  border-color: #00967d;
}

.zulu-icon-secondary.disabled, .zulu-icon-secondary:disabled {
  background-color: #00c9a7;
  border-color: #00c9a7;
}

/* success */
.zulu-icon-success {
  color: color-yiq(#0dd157);
  background-color: #0dd157;
  border-color: #0dd157;
}

.zulu-icon-success[href]:hover {
  color: color-yiq(#0bad48);
  background-color: #0bad48;
  border-color: #0aa143;
}

.zulu-icon-success.disabled, .zulu-icon-success:disabled {
  background-color: #0dd157;
  border-color: #0dd157;
}

/* info */
.zulu-icon-info {
  color: color-yiq(#2972fa);
  background-color: #2972fa;
  border-color: #2972fa;
}

.zulu-icon-info[href]:hover {
  color: color-yiq(#065af7);
  background-color: #065af7;
  border-color: #0555eb;
}

.zulu-icon-info.disabled, .zulu-icon-info:disabled {
  background-color: #2972fa;
  border-color: #2972fa;
}

/* warning */
.zulu-icon-warning {
  color: color-yiq(#fab633);
  background-color: #fab633;
  border-color: #fab633;
}

.zulu-icon-warning[href]:hover {
  color: color-yiq(#f9a90e);
  background-color: #f9a90e;
  border-color: #f4a306;
}

.zulu-icon-warning.disabled, .zulu-icon-warning:disabled {
  background-color: #fab633;
  border-color: #fab633;
}

/* danger */
.zulu-icon-danger {
  color: color-yiq(#fb4143);
  background-color: #fb4143;
  border-color: #fb4143;
}

.zulu-icon-danger[href]:hover {
  color: color-yiq(#fa1c1e);
  background-color: #fa1c1e;
  border-color: #fa0f12;
}

.zulu-icon-danger.disabled, .zulu-icon-danger:disabled {
  background-color: #fb4143;
  border-color: #fb4143;
}

/* light */
.zulu-icon-light {
  color: color-yiq(#f6f9fc);
  background-color: #f6f9fc;
  border-color: #f6f9fc;
}

.zulu-icon-light[href]:hover {
  color: color-yiq(#d9e6f2);
  background-color: #d9e6f2;
  border-color: #d0e0ef;
}

.zulu-icon-light.disabled, .zulu-icon-light:disabled {
  background-color: #f6f9fc;
  border-color: #f6f9fc;
}

/* dark */
.zulu-icon-dark {
  color: color-yiq(#1b1e24);
  background-color: #1b1e24;
  border-color: #1b1e24;
}

.zulu-icon-dark[href]:hover {
  color: color-yiq(#0b0c0e);
  background-color: #0b0c0e;
  border-color: #050607;
}

.zulu-icon-dark.disabled, .zulu-icon-dark:disabled {
  background-color: #1b1e24;
  border-color: #1b1e24;
}

/* white */
.zulu-icon-white {
  color: color-yiq(#fff);
  background-color: #fff;
  border-color: #fff;
}

.zulu-icon-white[href]:hover {
  color: color-yiq(#ececec);
  background-color: #ececec;
  border-color: #e6e6e6;
}

.zulu-icon-white.disabled, .zulu-icon-white:disabled {
  background-color: #fff;
  border-color: #fff;
}

/* facebook */
.zulu-icon-facebook {
  color: color-yiq(#3b5998);
  background-color: #3b5998;
  border-color: #3b5998;
}

.zulu-icon-facebook[href]:hover {
  color: color-yiq(#30497c);
  background-color: #30497c;
  border-color: #2d4373;
}

.zulu-icon-facebook.disabled, .zulu-icon-facebook:disabled {
  background-color: #3b5998;
  border-color: #3b5998;
}

/* google */
.zulu-icon-google {
  color: color-yiq(#d14130);
  background-color: #d14130;
  border-color: #d14130;
}

.zulu-icon-google[href]:hover {
  color: color-yiq(#b33628);
  background-color: #b33628;
  border-color: #a93325;
}

.zulu-icon-google.disabled, .zulu-icon-google:disabled {
  background-color: #d14130;
  border-color: #d14130;
}

/* twitter */
.zulu-icon-twitter {
  color: color-yiq(#1da1f2);
  background-color: #1da1f2;
  border-color: #1da1f2;
}

.zulu-icon-twitter[href]:hover {
  color: color-yiq(#0d8ddc);
  background-color: #0d8ddc;
  border-color: #0c85d0;
}

.zulu-icon-twitter.disabled, .zulu-icon-twitter:disabled {
  background-color: #1da1f2;
  border-color: #1da1f2;
}

/* instagram */
.zulu-icon-instagram {
  color: color-yiq(#3f729b);
  background-color: #3f729b;
  border-color: #3f729b;
}

.zulu-icon-instagram[href]:hover {
  color: color-yiq(#345e80);
  background-color: #345e80;
  border-color: #305777;
}

.zulu-icon-instagram.disabled, .zulu-icon-instagram:disabled {
  background-color: #3f729b;
  border-color: #3f729b;
}

/* github */
.zulu-icon-github {
  color: color-yiq(#24292e);
  background-color: #24292e;
  border-color: #24292e;
}

.zulu-icon-github[href]:hover {
  color: color-yiq(#131619);
  background-color: #131619;
  border-color: #0e1011;
}

.zulu-icon-github.disabled, .zulu-icon-github:disabled {
  background-color: #24292e;
  border-color: #24292e;
}

/*------------------------------------
  Icon Block
------------------------------------*/
.zulu-icon-block__col {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  .zulu-icon-block {
    border-bottom: solid 1px #e6e7e9;
  }
  .zulu-icon-block__col--left-brd {
    border-left: solid 1px #e6e7e9;
  }
}

/*----------------------------------
  Header
------------------------------------*/

@media (max-width: 991px) {
  .navbar-expand-md.fixed-top {
    background-color: rgba(27, 30, 36, 0.3);
  }
  .zulu-headiafoliba-title {
    font-size: 30px;
  }
  .zulu-second-headiafoliba-title{
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .navbar-expand-sm.fixed-top {
    background-color: rgba(27, 30, 36, 0.3);
  }
  .zulu-headiafoliba-title {
    font-size: 20px;
  }
  .zulu-second-headiafoliba-title{
    font-size: 20px;
  }
}



@media (max-width: 1199px) {
  .navbar-expand-lg.fixed-top {
    background-color:  rgba(27, 30, 36, 0.06);
  }
}

.navbar-bg-onscroll.fixed-top {
  background-color: #fff;
  transition: all .3s ease-out;
}

.navbar-bg-onscroll.fixed-top--fade {
  transition: all .4s ease-out;
}

/*------------------------------------
  Portfolio
------------------------------------*/
.zulu-portfolio-controls__item {
  display: inline-block;
  cursor: pointer;
}

.zulu-portfolio-controls__item:not(:last-child)::after {
  content: "|";
  font-size: 0.71429rem;
  margin: 0 4px;
  position: relative;
  top: -2px;
  line-height: inherit;
  display: inline-block;
  vertical-align: middle;
  color: transparent;
}

@media (min-width: 992px) {
  .zulu-portfolio-controls__item:not(:last-child)::after {
    color: #d5d7dc;
    margin: 0 7px 0 12px;
  }
}

.zulu-portfolio-controls a {
  color: #1b1e24;
}

.zulu-portfolio-controls a.active {
  color: #dd391b;
}

.zulu-portfolio__item {
  overflow: hidden;
  z-index: 2;
}

.zulu-portfolio__image {
  display: block;
  width: 100%;
  height: auto;
  transition: all .2s ease;
}

.zulu-portfolio__item:hover .zulu-portfolio__image {
  transform: translate3d(0, -60px, 0);
}

.zulu-portfolio__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3.75rem;
  overflow: hidden;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  color: #fff;
  background-color: #dd391b;
  transition: all .2s ease;
  transform: translate3d(0, 3.75rem, 0);
}

.zulu-portfolio__info small {
  opacity: .7;
}

.zulu-portfolio__item:hover .zulu-portfolio__info {
  transform: translate3d(0, 0, 0);
}

.zulu-portfolio__zoom {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-indent: -10000px;
}

/*----------------------------------
  Promo Block v1
------------------------------------*/
.zulu-promo-block {
  position: relative;
  min-height: 100vh;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background-repeat: no-repeat;
  /* background-position: 50% 0; */
  background-position: center;
  background-size: cover;
}

.zulu-promo-block--mheight-400 {
  min-height: 400px;
}
.zulu-promo-block--mheight-450 {
  min-height: 450px;
}

.zulu-promo-block--mheight-500 {
  min-height: 500px;
}

.zulu-promo-block--mheight-600 {
  min-height: 600px;
}
.zulu-promo-block--mheight-800 {
  min-height: 800px;
}
.zulu-promo-block--mheight-700 {
  min-height: 700px;
}

 
@media (min-width: 1500px) {
  .zulu-promo-block--mheight-500 {
    min-height: 700px;
  }
  .zulu-promo-block--mheight-600 {
    min-height: 700px;
  }
  .container-fluid{
    max-width: 1400px;
  }
  .industries_section {
    max-width: 1400px !important;
  }
}
@media (max-width: 1199px) {
  .zulu-promo-block {
    /* background-attachment: fixed; */
  }
}

/*------------------------------------
  Pricing
------------------------------------*/
.zulu-pricing {
  background-color: #fff;
}

.zulu-pricing__header {
  position: relative;
  padding: 2.5rem 1.5rem;
}

.zulu-pricing__header-price {
  display: block;
  line-height: .84;
}

.zulu-pricing__header-title {
  opacity: .8;
}

.zulu-pricing__header-decoration {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.zulu-pricing__content {
  padding: 1.5rem;
}

.zulu-pricing__content .disabled .zulu-icon {
  color: #85778f;
  background-color: rgba(133, 119, 143, 0.1);
}

.zulu-pricing .disabled {
  color: #85778f;
}

/*----------------------------------
  Spaces
------------------------------------*/
.zulu-content-space {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.zulu-content-space-top {
  padding-top: 6.25rem;
}

.zulu-content-space-bottom {
  padding-bottom: 6.25rem;
}

/*----------------------------------
  Pull
------------------------------------*/
.zulu-pull-half {
  transform: translate3d(0, -50%, 0);
}

/*----------------------------------
  Links
------------------------------------*/
.zulu-link {
  color: #1b1e24;
  text-decoration: none;
}

.zulu-link:hover {
  color: #dd391b;
  text-decoration: none;
}

/*----------------------------------
  Box Shadow
------------------------------------*/
.zulu-box-shadow-sm {
  box-shadow: 0 0.2rem 1.25rem 0 rgba(27, 30, 36, 0.07);
}

.zulu-box-shadow-lg {
  box-shadow: 0 0.4rem 2.2rem 0 rgba(27, 30, 36, 0.1);
}

/*----------------------------------
  Hero Image
------------------------------------*/
.zulu-hero-img {
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

/*----------------------------------
  Overlays
------------------------------------*/
.zulu-overlay {
  position: relative;
}

.zulu-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.zulu-overlay--dark::after {
  /* background-color: rgba(27, 30, 36, 0.3); */
  background-color: rgb(83, 89, 96, 0.3);
}


.zulu-overlay--light::after {
  /* background-color: rgba(255, 255, 255, 0.3); */
}

.zulu-overlay__inner {
  position: relative;
  z-index: 1;
}

/*----------------------------------
  Block Alignments
------------------------------------*/
.zulu-ver-center {
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  transform: translate3d(0, -50%, 0);
}
.zulu-ver-center .text-wrapper {
  /* margin-top: -17%; */
  padding-left: 55px;
}

.zulu-ver-bottom {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate3d(-50%, 0, 0);
}

/*----------------------------------
  Typography
------------------------------------*/
/* Font Family */
.zulu-font-accent {
  font-family: "Playfair Display", serif;
}

/* Font Size */
.zulu-font-size-75 {
  font-size: 75%;
}

.zulu-font-size-90 {
  font-size: 90%;
}

/* Letter Spacing */
.zulu-letter-spaciafoliba-xs {
  letter-spacing: 1px;
}

.zulu-letter-spaciafoliba-sm {
  letter-spacing: 2px;
}

/*----------------------------------
  Others
------------------------------------*/
.zulu-opacity-1 {
  opacity: .1;
}

.zulu-opacity-6 {
  opacity: .6;
}
/*----------------------------------
  Footer 1
------------------------------------*/

     

/* -------------------- */
.zulu-footer-main {
    padding: 55px 0 15px;
    background: #545960 !important;
    font-family: "Century Gothic", Sans-serif;
}

.zulu-footer-main  .fab {
      color: #fff;
  }

.zulu-footer-main h4 {
      font-size: 11px;
      text-transform: Uppercase;
      letter-spacing: 2px;
      color: #ffffff !important;
      margin-bottom: 30px !important;
      line-height: 1.2;
      font-weight: 700;
  }

  .zulu-footer-main .textwidget a {
  color: #ffffff !important;
  }
  .zulu-footer-main   a {
  color: #ffffff !important;
  }
  .zulu-footer-main a:hover {
  color: #ddd !important;
  }

  .zulu-footer-main .textwidget p, .zulu-footer-main  p.small {
      font-size: 12px;
      margin-bottom: 0px;
      letter-spacing: 0.2px;
      color: #ffffff !important;
  }

 

  .zulu-footer-main ul{
      padding-left: 0;
  }

  .zulu-footer-main ul li.menu-item{
      font-size: 12px;
      letter-spacing: 0.2px;
      color: #707070 !important;
      margin-bottom: 8px;
      list-style: none;
  }

  .zulu-footer-main .copyright-links li {
      display: inline;
      font-size: 12px;
      color: #707070 !important;
      letter-spacing: 0.2px;
      margin-right: 1rem !important;
  }
 

small,
.small {
  font-size: 73%;
  font-weight: 400;
}
.typed-cursor {
  display: none;
}

/* Blog Style */
.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.zulu-blog-categories-list li {
  display: inline-block;
  vertical-align: middle;
}

.zulu-blog-categories-list li:first-child a {
  margin-left: 0;
}

.zulu-blog-categories-list li a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 2;
  color: #54595f;
  margin: 0 17px;
}
.zulu-blog-categories-list li a:hover {
  color: #dd391b;
}

.zulu-post-content {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 14px;
}

.zulu-post-content .zulu-post-read-more {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #dd381c;
}

.zulu-post-meta {
  position: relative;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: #6e6e70;
  padding-left: 0px;
  margin-bottom: 14px;
}

.zulu-post-thumbnail {
  position: relative;
  margin-bottom: 19px;
}

.zulu-post-thumbnail a {
  position: relative;
  display: block;
}

.zulu-post-thumbnail img {
  width: 100%;
  height: auto;
}

.zulu-image-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  background: #282828;
  background: rgba(0, 0, 0, 0.7);
}

.zulu-image-overlay:before,
.zulu-image-overlay:after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  display: block;
  content: " ";
  background: #dd381c;
}

.zulu-image-overlay:before {
  width: 50px;
  height: 1px;
  margin-left: -25px;
}

.zulu-image-overlay:after {
  width: 1px;
  height: 50px;
  margin-top: -25px;
}
.zulu-post-thumbnail a:hover .zulu-image-overlay {
  opacity: 1;
}

/* Blog Single */

.zulu-post-header {
  padding-bottom: 28px;
}
.zulu-post-header img {
  width: 100%;
  margin-bottom: 15px;
}
.zulu-post-header h1 {
  font-size: 26px !important;
  line-height: 1.2 !important;
  font-weight: 700;
}

.zulu-post-header .zulu-post-meta {
  font-size: 11px;
  margin-top: 21px;
}

.zulu-post-header .zulu-post-meta em {
  font-style: normal;
}

.zulu-single-post-meta {
  background: #f7f7f7;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 19px 0;
  border-top: 0px;
  border-bottom: 0px;
}
.zulu-single-post-meta a {
  color: #dd391b;
}
/* comments */

.zulu-comments-area .zulu-comments-title {
  font-size: 22px !important;
  line-height: 1.2 !important;
  font-weight: 700;
}
.zulu-comment-list,
.zulu-comment-list li {
  list-style: square;
}
.zulu-comment-list .comment-meta a {
  color: #dd391b;
}
.zulu-comment-list .reply a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
}

.comment-reply-title {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

input {
  /* background-color: transparent; */
  border: 2px solid #ccc;
  border-radius: 3px;
  padding: 10px;
  color: #161616;
  font-size: 14px;
  outline: none;
  transition: -webkit-transform 0.25s cubic-bezier(0.5, 0.25, 0.015, 1);
  transition: transform 0.25s cubic-bezier(0.5, 0.25, 0.015, 1);
  transition: transform 0.25s cubic-bezier(0.5, 0.25, 0.015, 1), -webkit-transform 0.25s cubic-bezier(0.5, 0.25, 0.015, 1);
  width: 100%;
  margin-bottom: 15px;
  height: 51px;
}
.single-post .zulu-comments-area textarea,
.i_box input {
  display: block;
  width: 100%;
  height: 100px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.single-post .zulu-comments-area button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  display: inline-block;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0px;
  color: #fff;
  background-color: #dd391b;
  border-color: #dd391b;
}

.single-post .zulu-comments-area button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  color: #fff;
  background-color: #54595f;
  border-color: #54595f;
  transition: all 0.5s ease-in-out;
}

.single-post .zulu-comments-area button,
html input[type="button"],
input[type="reset"],
input[type="submit"]:hover {
  color: #fff;
  background-color: #dd391b;
  border-color: #dd391b;
}

/* Pagination */
.zulu-post-pagination {
  padding: 48px 0;
  overflow: hidden;
  border-top: 0px solid #eee;
}

.zulu-post-pagination .zulu-post-prev {
  float: left;
}

.zulu-post-pagination span,
.zulu-post-pagination span.subtitle {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}
.zulu-post-pagination .zulu-post-next {
  float: right;
  text-align: right;
}
/* Related post */
.related-title {
  background: #dd391b;
  padding: 10px;
  color: #fff;
  width: 200px;
}
.related-title span.h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  font-size: 15px;
}

@charset "UTF-8";
/*----------------------------------------------------------------------
  * Docs UI Kit - Responsive Website Template
  * Copyright 2019 Htmlstream
------------------------------------------------------------------------*/
/*------------------------------------
  Default Styles
------------------------------------*/
code {
  font-size: 100%;
}

a,
button {
  outline: none !important;
}

p {
  line-height: 1.7;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  font-weight: 500;
}

figure {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
}

table th {
  font-weight: 700;
}

.fa,
.fas {
  font-weight: 600;
}

/*------------------------------------
  Highlight Color
------------------------------------*/
::-moz-selection {
  color: #fff;
  background-color: #007bff;
}

::selection {
  color: #fff;
  background-color: #007bff;
}

.bg-primary :not(.form-control) ::-moz-selection {
  color: #007bff;
  background-color: #fff;
}

.bg-primary :not(.form-control) ::selection {
  color: #007bff;
  background-color: #fff;
}


/*------------------------------------
  Accordion
------------------------------------*/
.accordion-header {
  cursor: pointer;
}

.accordion-control {
  font-size: 90%;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  -o-transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}

.accordion-header:not(.collapsed) .accordion-control {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

/*------------------------------------
  AnchorJS Link
------------------------------------*/
[data-anchorjs-icon]::after {
  content: attr(data-anchorjs-icon);
}

.duik-anchorjs-link {
  padding-left: 0.5rem;
  font-size: 90%;
  color: rgba(0, 123, 255, 0.5);
  -webkit-transition: color 0.16s linear;
  -o-transition: color 0.16s linear;
  transition: color 0.16s linear;
  opacity: 0;
}

.duik-anchorjs-link:hover {
  color: #007bff;
  text-decoration: none;
}

h2:hover .duik-anchorjs-link,
h3:hover .duik-anchorjs-link,
h4:hover .duik-anchorjs-link {
  opacity: 1;
}

/*------------------------------------
  Breadcrumb
------------------------------------*/
.breadcrumb-light {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
}

.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-light .active {
  color: #fff;
}

.breadcrumb-light a {
  color: rgba(255, 255, 255, 0.7);
}

/*------------------------------------
  Button
------------------------------------*/
.btn-circle {
  border-radius: 100%;
  padding: 0 0;
  width: 3.1rem;
  height: 3.1rem;
}

.btn-circle.btn-sm {
  width: 2.6rem;
  height: 2.6rem;
}

.btn-circle.btn-lg {
  width: 4.2rem;
  height: 4.2rem;
}

.btn-pill {
  border-radius: 6.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.btn-pill.btn-sm {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.btn-pill.btn-lg {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.btn .spinner-border,
.btn .spinner-grow {
  position: relative;
  top: -0.3125rem;
}

/*------------------------------------
  Callout
------------------------------------*/
.duik-callout {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border-width: 1px 1px 1px 0.25rem;
  border-color: #dee2e6;
  border-style: solid;
  border-radius: 0.25rem;
}

.duik-callout-primary-lighter {
  border-left-color: #dbedff;
}

.duik-callout-dark-soft {
  border-left-color: #495057;
}

.duik-callout-black {
  border-left-color: #000;
}

.duik-callout-black-soft {
  border-left-color: rgba(0, 0, 0, 0.22);
}

.duik-callout-primary {
  border-left-color: #007bff;
}

.duik-callout-secondary {
  border-left-color: #6c757d;
}

.duik-callout-success {
  border-left-color: #28a745;
}

.duik-callout-info {
  border-left-color: #17a2b8;
}

.duik-callout-warning {
  border-left-color: #ffc107;
}

.duik-callout-danger {
  border-left-color: #dc3545;
}

.duik-callout-light {
  border-left-color: #f8f9fa;
}

.duik-callout-dark {
  border-left-color: #343a40;
}

/*------------------------------------
  Dropdown
------------------------------------*/
.dropdown-menu {
  border-top: solid 0.25rem #007bff;
}

/*------------------------------------
  Layout
------------------------------------*/
/* Header */
.duik-header {
  font-size: 1rem;
}

.duik-header .navbar-brand img {
  margin-top: -0.22rem;
}

.duik-header__nav .nav-link {
  line-height: 1.9;
}

/* Sidebar */
.duik-sidebar-sticky {
  position: relative;
  top: 0;
  width: 100%;
  height: 15rem;
  padding: 0.5rem 0;
  overflow: hidden;
}

@media (max-height: 500px) {
  .duik-sidebar-sticky {
    min-height: 15rem;
  }
}

@media (min-width: 768px) {
  .duik-sidebar-sticky {
    height: calc(100vh - 5rem);
  }
  .duik-sidebar-sticky--mini {
    height: calc(100vh - 22rem);
  }
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .duik-sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}

.duik-sidebar {
  z-index: 100;
  padding: 5rem 0 0;
}

@media (max-height: 500px) {
  .duik-sidebar {
    overflow: auto;
  }
}

.duik-sidebar--dark {
  color: #fff;
}

.duik-sidebar--dark hr {
  border-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .duik-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
  }
}

.duik-sidebar__heading {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
  padding-left: calc(0.7rem + 4px);
  padding-right: 1rem;
}

.duik-sidebar__nav {
  list-style: none;
  margin-bottom: 2rem;
  padding-left: 0;
}

.duik-sidebar__item {
  font-size: 100%;
  font-weight: 600;
}

.duik-sidebar__link {
  color: #495057;
  display: inline-block;
  border-left: 4px solid transparent;
  padding: 0.3rem 1rem 0.5rem 0.7rem;
}

.duik-sidebar__link.active {
  color: #dd391b;
  border-color: #dd391b;
  padding-top: 0.5rem;
}

.duik-sidebar__link:hover {
  color: #343a40;
  text-decoration: none;
}

.duik-sidebar--dark .duik-sidebar__link {
  color: rgba(255, 255, 255, 0.6);
}

.duik-sidebar--dark .duik-sidebar__link.active {
  color: #fff;
  border-color: #fff;
}

.duik-sidebar--dark .duik-sidebar__link:hover {
  color: #fff;
}

/* Page Nav */
.duik-content-nav {
  position: fixed;
  top: 6.5rem;
  border-left: 1px solid #dee2e6;
  padding-left: 1.5rem;
  overflow-y: auto;
  list-style: none;
}

.duik-content-nav ul {
  padding-left: 1rem;
  list-style: none;
}

.duik-content-nav__item {
  font-size: 80%;
}

.duik-content-nav__item > a {
  display: block;
  color: #495057;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}

.duik-content-nav__item.active > a,
.duik-content-nav__item > a:hover {
  color: #007bff;
  text-decoration: none;
}

/* Content */
.duik-content {
  min-height: calc(100vh - 5rem - 5.5rem);
}

.duik-content-2 {
  min-height: calc(100vh - 5.5rem - 1.5rem);
}

/*------------------------------------
  List
------------------------------------*/
.list-line {
  list-style: none;
  padding-left: 0;
}

.list-line li {
  position: relative;
  color: #212529;
  padding-left: 1.5rem;
}

.list-line li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "—";
  color: #007bff;
}

.list-icon {
  list-style: none;
  padding-left: 0;
}

.list-icon li {
  position: relative;
  color: #212529;
  padding-left: 1.8rem;
  margin-bottom: 1.8rem;
}

.list-icon li::before {
  position: absolute;
  top: 0;
  left: 0;
}

.list-icon-star li::before {
  content: "\f005";
  font-family: "FontAwesome";
  font-weight: 400;
  color: #007bff;
}

/*------------------------------------
  Paginations
------------------------------------*/
.page-item + .page-item {
  margin-left: 0.5rem;
}

.page-link {
  min-width: 2.81rem;
  text-align: center;
  border-radius: 0.25rem;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.page-link.active {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

/*------------------------------------
  Progress
------------------------------------*/
.progress-pill {
  border-radius: 6.25rem;
}

.duik-promo {
  position: relative;
  color: #fff;
}

.duik-promo-container {
  position: relative;
  z-index: 2;
}

/*------------------------------------
  Form
------------------------------------*/
label {
  color: #212529;
}

.form-control-dark::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}
.form-control:focus {
  border-color: #dd391b;
}

.custom-control-label::before,
.custom-control-label::after {
  margin-top: -1px;
}

.custom-control-label::before {
  border-color: #ced4da;
}

.custom-control-input:disabled:checked ~ .custom-control-label::before {
  border-color: rgba(0, 123, 255, 0.1);
}

.custom-control-input.is-valid ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #28a745;
  border-color: #28a745;
}

.was-validated .custom-control-input.is-valid ~ .custom-control-label::before,
.was-validated .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #28a745;
  border-color: #28a745;
}

.custom-control-input.is-invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before,
.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before {
  background-color: #dc3545;
  border-color: #dc3545;
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  height: calc(1rem - 4px) 0.25;
  pointer-events: all;
  border-radius: 0.5rem;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-color: #ced4da;
  cursor: pointer;
  margin-top: -2px;
}

.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #007bff;
  border-radius: 0.5rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  cursor: pointer;
  margin-top: -2px;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.custom-switch .custom-control-input:focus ~ .custom-control-label::before {
  border-color: #ced4da;
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  border-color: #007bff;
  -webkit-transform: translateX(0.45rem);
  -ms-transform: translateX(0.45rem);
  transform: translateX(0.45rem);
}

.custom-switch .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-switch .custom-control-input:disabled ~ .custom-control-label::after {
  background-color: rgba(0, 123, 255, 0.5);
}

.form-pill {
  border-radius: 1.875rem;
}

.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  padding-right: 2.625rem !important;
}

.input-group > .form-control:not(:last-child):not(.form-pill),
.input-group > .custom-select:not(:last-child):not(.form-pill) {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.input-group > .form-control:not(:last-child).form-pill,
.input-group > .custom-select:not(:last-child).form-pill {
  border-top-right-radius: 1.875rem;
  border-bottom-right-radius: 1.875rem;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  padding-left: 2.625rem;
}

.input-group > .form-control:not(:first-child).form-pill,
.input-group > .custom-select:not(:first-child).form-pill {
  border-top-left-radius: 1.875rem;
  border-bottom-left-radius: 1.875rem;
}

.input-group > .form-control:not(:first-child):not(.form-pill),
.input-group > .custom-select:not(:first-child):not(.form-pill) {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.input-group-prepend,
.input-group-append {
  position: relative;
  z-index: 4;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3.125rem;
  padding: 0.5rem 0.5rem;
}

.input-group-prepend .input-group-text,
.input-group-append .input-group-text {
  border: 0 none;
}

.input-group-prepend {
  margin-right: -3.125rem;
}

.input-group-append {
  margin-left: -3.125rem;
}

.input-group-text {
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*------------------------------------
  Go To
------------------------------------*/
.duik-go-to {
  position: fixed;
  right: 25px;
  bottom: -50px;
  z-index: 100;
  width: 2.75rem;
  height: 2.75rem;
  background-color: #007bff;
  color: #fff;
  font-size: 1rem;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.duik-go-to.show {
  bottom: 25px;
}

.duik-go-to__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.duik-go-to:hover,
.duik-go-to:focus:hover {
  color: #fff;
  opacity: 0.84;
}

/*------------------------------------
  Stand Alone Icon Block
------------------------------------*/
.duik-icon-block {
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.09);
  box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.09);
}

.duik-icon-block--pull2top {
  margin-top: -7rem;
}

.duik-icon-block__item {
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

/*------------------------------------
  SVG Icons
------------------------------------*/
.duik-icon-svg-1x {
  width: 1rem;
  height: auto;
}

.duik-icon-svg-2x {
  width: 2rem;
  height: auto;
}

.duik-icon-svg-3x {
  width: 3rem;
  height: auto;
}

.duik-icon-svg-4x {
  width: 4rem;
  height: auto;
}

.duik-icon-svg-primary-lighter {
  stroke: #dbedff;
}

.duik-icon-svg-dark-soft {
  stroke: #495057;
}

.duik-icon-svg-black {
  stroke: #000;
}

.duik-icon-svg-black-soft {
  stroke: rgba(0, 0, 0, 0.22);
}

.duik-icon-svg-primary {
  stroke: #007bff;
}

.duik-icon-svg-secondary {
  stroke: #6c757d;
}

.duik-icon-svg-success {
  stroke: #28a745;
}

.duik-icon-svg-info {
  stroke: #17a2b8;
}

.duik-icon-svg-warning {
  stroke: #ffc107;
}

.duik-icon-svg-danger {
  stroke: #dc3545;
}

.duik-icon-svg-light {
  stroke: #f8f9fa;
}

.duik-icon-svg-dark {
  stroke: #343a40;
}

/*------------------------------------
  Tabs
------------------------------------*/
.nav-bordered .nav-link {
  color: inherit;
}

.nav-bordered .nav-link.active,
.nav-bordered .show > .nav-link {
  color: #007bff;
  border-bottom: solid 3px #007bff;
}

/*------------------------------------
  Backgrounds
------------------------------------*/
.bg-primary-darker {
  background-color: #0069d9;
}

@media (min-width: 768px) {
  .bg-md-primary-darker {
    background-color: #0069d9;
  }
}

.bg-white-11 {
  background-color: rgba(255, 255, 255, 0.11) !important;
}

a.bg-hover-light:hover {
  background-color: #f8f9fa !important;
}

a.bg-hover-white:hover {
  background-color: #fff !important;
}

/*------------------------------------
  Borders
------------------------------------*/
@media (min-width: 576px) {
  .border-sm {
    border: 1px solid #dee2e6;
  }
  .border-sm-top {
    border-top: 1px solid #dee2e6;
  }
  .border-sm-right {
    border-right: 1px solid #dee2e6;
  }
  .border-sm-bottom {
    border-bottom: 1px solid #dee2e6;
  }
  .border-sm-left {
    border-left: 1px solid #dee2e6;
  }
  .border-sm-0 {
    border: 0 !important;
  }
  .border-sm-top-0 {
    border-top: 0 !important;
  }
  .border-sm-right-0 {
    border-right: 0 !important;
  }
  .border-sm-bottom-0 {
    border-bottom: 0 !important;
  }
  .border-sm-left-0 {
    border-left: 0 !important;
  }
}

@media (min-width: 768px) {
  .border-md {
    border: 1px solid #dee2e6;
  }
  .border-md-top {
    border-top: 1px solid #dee2e6;
  }
  .border-md-right {
    border-right: 1px solid #dee2e6;
  }
  .border-md-bottom {
    border-bottom: 1px solid #dee2e6;
  }
  .border-md-left {
    border-left: 1px solid #dee2e6;
  }
  .border-md-0 {
    border: 0 !important;
  }
  .border-md-top-0 {
    border-top: 0 !important;
  }
  .border-md-right-0 {
    border-right: 0 !important;
  }
  .border-md-bottom-0 {
    border-bottom: 0 !important;
  }
  .border-md-left-0 {
    border-left: 0 !important;
  }
}

@media (min-width: 992px) {
  .border-lg {
    border: 1px solid #dee2e6;
  }
  .border-lg-top {
    border-top: 1px solid #dee2e6;
  }
  .border-lg-right {
    border-right: 1px solid #dee2e6;
  }
  .border-lg-bottom {
    border-bottom: 1px solid #dee2e6;
  }
  .border-lg-left {
    border-left: 1px solid #dee2e6;
  }
  .border-lg-0 {
    border: 0 !important;
  }
  .border-lg-top-0 {
    border-top: 0 !important;
  }
  .border-lg-right-0 {
    border-right: 0 !important;
  }
  .border-lg-bottom-0 {
    border-bottom: 0 !important;
  }
  .border-lg-left-0 {
    border-left: 0 !important;
  }
}

@media (min-width: 1200px) {
  .border-xl {
    border: 1px solid #dee2e6;
  }
  .border-xl-top {
    border-top: 1px solid #dee2e6;
  }
  .border-xl-right {
    border-right: 1px solid #dee2e6;
  }
  .border-xl-bottom {
    border-bottom: 1px solid #dee2e6;
  }
  .border-xl-left {
    border-left: 1px solid #dee2e6;
  }
  .border-xl-0 {
    border: 0 !important;
  }
  .border-xl-top-0 {
    border-top: 0 !important;
  }
  .border-xl-right-0 {
    border-right: 0 !important;
  }
  .border-xl-bottom-0 {
    border-bottom: 0 !important;
  }
  .border-xl-left-0 {
    border-left: 0 !important;
  }
}

/*------------------------------------
  Colors
------------------------------------*/
.text-white-55 {
  color: rgba(255, 255, 255, 0.55);
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

/*------------------------------------
  Content Centered
------------------------------------*/
.content-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.content-x-centered {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

/*------------------------------------
  Gradients
------------------------------------*/
.gradient-primary {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#6c757d), to(#007bff));
  background-image: -webkit-linear-gradient(left, #6c757d, #007bff);
  background-image: -o-linear-gradient(left, #6c757d, #007bff);
  background-image: linear-gradient(to right, #6c757d, #007bff);
}

.gradient-dark {
  background-color: #343a40;
  background-image: -webkit-gradient(linear, left top, right top, from(#343a40), to(#000));
  background-image: -webkit-linear-gradient(left, #343a40, #000);
  background-image: -o-linear-gradient(left, #343a40, #000);
  background-image: linear-gradient(to right, #343a40, #000);
}

@media (max-width: 991.98px) {
  .gradient-primary-md {
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, right top, from(#6c757d), to(#007bff));
    background-image: -webkit-linear-gradient(left, #6c757d, #007bff);
    background-image: -o-linear-gradient(left, #6c757d, #007bff);
    background-image: linear-gradient(to right, #6c757d, #007bff);
  }
}

/*------------------------------------
	Links
------------------------------------*/
.link {
  color: #007bff;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.link:hover {
  color: #0069d9;
  text-decoration: none;
}

.link-white {
  color: #fff;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.link-white:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.link-white-55 {
  color: rgba(255, 255, 255, 0.55);
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.link-white-55:hover {
  color: #007bff;
  text-decoration: none;
}

.link-dark {
  color: #343a40;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.link-dark:hover {
  color: #007bff;
  text-decoration: none;
}

.link-headings-color {
  color: #212529;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.link-headings-color:hover {
  color: #007bff;
  text-decoration: none;
}

.link-hover-dark:hover {
  color: #343a40;
}

.link-muted {
  color: #6c757d;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.link-muted:hover {
  color: #007bff;
  text-decoration: none;
}

/*------------------------------------
  Opacity
------------------------------------*/
.opacity-10 {
  opacity: 0.1;
}

.opacity-30 {
  opacity: 0.3;
}

/*------------------------------------
  Position Spaces
------------------------------------*/
.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.top-3 {
  top: 3rem;
}

/*------------------------------------
  Sizing
------------------------------------*/
.h-100vh {
  height: 100vh;
}

.h-85vh {
  height: 85vh;
}

.mh-25rem {
  min-height: 25rem;
}

.mh-30rem {
  min-height: 30rem;
}

.mh-35rem {
  min-height: 35rem;
}

@media (min-width: 576px) {
  .w-sm-25 {
    width: 25% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-75 {
    width: 75% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
  .w-sm-auto {
    width: auto !important;
  }
  .h-sm-25 {
    height: 25% !important;
  }
  .h-sm-50 {
    height: 50% !important;
  }
  .h-sm-75 {
    height: 75% !important;
  }
  .h-sm-100 {
    height: 100% !important;
  }
  .h-sm-auto {
    height: auto !important;
  }
}

@media (min-width: 768px) {
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .w-md-auto {
    width: auto !important;
  }
  .h-md-25 {
    height: 25% !important;
  }
  .h-md-50 {
    height: 50% !important;
  }
  .h-md-75 {
    height: 75% !important;
  }
  .h-md-100 {
    height: 100% !important;
  }
  .h-md-auto {
    height: auto !important;
  }
}

@media (min-width: 992px) {
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
  .w-lg-auto {
    width: auto !important;
  }
  .h-lg-25 {
    height: 25% !important;
  }
  .h-lg-50 {
    height: 50% !important;
  }
  .h-lg-75 {
    height: 75% !important;
  }
  .h-lg-100 {
    height: 100% !important;
  }
  .h-lg-auto {
    height: auto !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-25 {
    width: 25% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
  .w-xl-auto {
    width: auto !important;
  }
  .h-xl-25 {
    height: 25% !important;
  }
  .h-xl-50 {
    height: 50% !important;
  }
  .h-xl-75 {
    height: 75% !important;
  }
  .h-xl-100 {
    height: 100% !important;
  }
  .h-xl-auto {
    height: auto !important;
  }
}

/*------------------------------------
  Typography Font Size
------------------------------------*/
.extra-small {
  font-size: 0.7rem;
}

.font-size-2rem {
  font-size: 2rem;
}

/*------------------------------------
  Letter Spacing
------------------------------------*/
.text-space-1 {
  letter-spacing: 1px;
}

/*------------------------------------
  Text Decoration
------------------------------------*/
.text-none {
  text-decoration: none;
}

.text-none:hover {
  text-decoration: none;
}

/*------------------------------------
  Transition
------------------------------------*/
.transition-bg-03s {
  -webkit-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

/*------------------------------------
  Z-index
------------------------------------*/
.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

/*------------------------------------
  Markup
------------------------------------*/
.code-toolbar {
  position: relative;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  padding: 1.5rem;
  font-size: 13px;
  background: rgba(248, 249, 250, 0.7);
  margin-bottom: 1rem;
}

code[class*="language-"],
pre[class*="language-"] {
  color: #212529;
  text-shadow: none;
  white-space: pre-wrap !important;
}

.token.punctuation,
.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
  color: #2f6f9f;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #4f9fcf;
}

.token.atrule,
.token.attr-value,
.token.function {
  color: #d44950;
}

div.code-toolbar > .toolbar {
  top: 10px;
  right: 10px;
  opacity: 1;
}

div.code-toolbar > .toolbar a {
  padding: 0.3rem 0.7rem !important;
  color: inherit;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 0.2rem;
}

div.code-toolbar > .toolbar a:hover {
  background-color: #007bff;
  color: #fff !important;
}

/*------------------------------------
  Scrollbar
------------------------------------*/
.mCustomScrollbar .mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCustomScrollbar .mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.2);
}

/*------------------------------------
  UI Autocomplete
------------------------------------*/
.ui-autocomplete {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
  z-index: 91199;
}

.ui-autocomplete-wrapper--dark .ui-autocomplete::-webkit-scrollbar {
  width: 1rem;
}

.ui-autocomplete-wrapper--dark .ui-autocomplete::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.22);
}

.ui-autocomplete-wrapper--dark .ui-autocomplete::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 0.25rem;
  outline: 1px solid #000;
}

.ui-autocomplete .left {
  float: left;
}

.ui-autocomplete .right {
  float: right;
}

.ui-autocomplete .ui-menu-item {
  padding: 0.25rem;
}

.ui-autocomplete .ui-menu-item:not(:last-child) {
  border-bottom: 1px solid #dee2e6;
}

.ui-autocomplete-wrapper--dark .ui-autocomplete .ui-menu-item:not(:last-child) {
  border-color: rgba(255, 255, 255, 0.1);
}

.ui-autocomplete .ui-menu-item-wrapper {
  display: block;
  color: inherit;
  background-color: transparent;
  border-color: transparent;
  padding: 7px 15px;
}

.ui-autocomplete .ui-menu-item-wrapper.ui-state-active,
.ui-autocomplete .ui-menu-item-wrapper:hover {
  background-color: rgba(0, 123, 255, 0.1);
  text-decoration: none;
}

.ui-autocomplete-wrapper--dark .ui-autocomplete .ui-menu-item-wrapper.ui-state-active,
.ui-autocomplete-wrapper--dark .ui-autocomplete .ui-menu-item-wrapper:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.ui-menu-item:hover .ui-autocomplete .ui-menu-item-wrapper {
  background-color: rgba(0, 123, 255, 0.1);
  border-color: transparent;
  border-radius: 0.125rem;
}

.ui-autocomplete-wrapper--dark .ui-menu-item:hover .ui-autocomplete .ui-menu-item-wrapper {
  background-color: rgba(255, 255, 255, 0.1);
}

.ui-autocomplete-category {
  padding: 5px 15px;
  margin: 0;
  font-weight: bold;
}

.ui-widget.ui-widget-content {
  border: thin solid #dee2e6;
  border-radius: 0.125rem;
  -webkit-box-shadow: 0 2px 16px 8px rgba(140, 152, 164, 0.135);
  box-shadow: 0 2px 16px 8px rgba(140, 152, 164, 0.135);
}

.ui-autocomplete-wrapper--dark .ui-widget.ui-widget-content {
  border: none;
  background: #343a40;
  -webkit-box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.5);
}

.duik-search__label {
  display: block;
  color: #007bff;
}

.ui-autocomplete-wrapper--dark .duik-search__label {
  color: #fff;
}

.duik-search__category {
  font-size: 80%;
  opacity: 0.4;
}

.ui-autocomplete-wrapper--dark .duik-search__category {
  color: white;
}


/*------------------------------------
  File for your custom SCSS style
------------------------------------*/
.duik-mt-5 {
  margin-top: 2rem !important;
}

.duik-mb-5 {
  margin-bottom: 2rem !important;
}

.duik-my-7 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.duik-mt-7 {
  margin-top: 3rem !important;
}

.duik-mb-7 {
  margin-bottom: 3rem !important;
}

.duik-my-11 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.duik-mt-11 {
  margin-top: 5rem !important;
}

.duik-mb-11 {
  margin-bottom: 5rem !important;
}

.duik-py-10 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.duik-pt-11 {
  padding-top: 5rem !important;
}

@media (min-width: 768px) {
  .duik-pt-md-11 {
    padding-top: 5rem !important;
  }
  .duik-pb-md-11 {
    padding-bottom: 5rem !important;
  }
}

.duik-bg-white-soft {
  background-color: rgba(255, 255, 255, 0.11) !important;
}

.duik-h1 {
  font-size: 2.3rem;
}

.duik-h2 {
  font-size: 2rem;
}

.duik-h3 {
  font-size: 1.75rem;
}

.duik-h4 {
  font-size: 1.5rem;
}

.duik-h5 {
  font-size: 1.25rem;
}

.duik-h6 {
  font-size: 1rem;
}

.duik-form-control {
  height: calc(1.5em + 1.5rem + 2px);
  padding: 0.75rem 1rem;
}

.duik-form-control-sm {
  height: calc(1.5em + 1.25rem + 2px);
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.duik-btn {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.duik-btn-sm {
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  line-height: 1.5;
}


 /* #Primary
================================================== */


/*  */
.overlay-shadow{
  position: absolute;
  height: 50%;
  bottom: -1px;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(40, 40, 40, 0), rgb(12, 10, 10) 100%);
}

::selection {
  background-color: #ddd;
}

::-moz-selection {
  background-color: #ddd;
}


/* #Navigation
================================================== */

.start-header {
  opacity: 1;
  transform: translateY(0);
  padding: 10px 0;
  box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.start-header.scroll-on {
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  padding: 5px 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.start-header.scroll-on .navbar-brand img {
  height: 28px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navigation-wrap {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar {
  padding: 0;
}

.navbar-brand img {
  height: 40px;
  width: auto !important;
  display: block;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar-toggler {
  float: right;
  border: none;
  padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
  outline: none;
}

.navbar-light .navbar-toggler-icon {
  width: 24px;
  height: 17px;
  background-image: none;
  position: relative;
  border-bottom: 1px solid #000;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
  width: 24px;
  position: absolute;
  height: 1px;
  background-color: #000;
  top: 0;
  left: 0;
  content: '';
  z-index: 2;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}

.nav-link {
  color: #212121 !important;
  font-weight: 700;
  transition: all 200ms linear;
}

.nav-item:hover .nav-link {
  color: #e92b26 !important;
}

.nav-item.active .nav-link {
  color: #777 !important;
}

.nav-link {
  position: relative;
  padding: 5px 0 !important;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
}

.nav-item:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background-color: #e92b26;
  opacity: 0;
  transition: all 200ms linear;
}

.nav-item:hover:after {
  bottom: 0;
  opacity: 1;
}

.nav-item.active:hover:after {
  opacity: 0;
}

.nav-item {
  position: relative;
  transition: all 200ms linear;
}

/* #Primary style
================================================== */

.bg-light {
  background-color: #fff !important;
  transition: all 200ms linear;
}

.section {
  position: relative;
  width: 100%;
  display: block;
}

.full-height {
  height: 100vh;
}

.over-hide {
  overflow: hidden;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: 40px;
  transform: translateY(-50%);
  z-index: 20;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  /* text-align: center; */
}

.navbar-brand h1 {
  font-size: 25px;
}

p {
  opacity: 1;
  transform: translate(0);
  transition: all 300ms linear;
  transition-delay: 1700ms;
}


h1 span {
  display: inline-block;
  transition: all 300ms linear;
  opacity: 1;
  transform: translate(0);
}

.nav-item .dropdown-menu {
  transform: translate3d(0, 10px, 0);
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  display: block;
  padding: 0;
  margin: 0;
  transition: all 200ms linear;
}

.nav-item.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  max-height: 999px;
  transform: translate3d(0, 0px, 0);
}

.dropdown-menu {
  padding: 10px !important;
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  color: #212121;
  background-color: #fcfaff;
  border: none;
  border-radius: 3px;
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  transition: all 200ms linear;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-item {
  padding: 3px 15px;
  color: #212121;
  border-radius: 2px;
  transition: all 200ms linear;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #fff;
  background-color: rgba(129, 103, 169, .6);
}

body.dark {
  color: #fff;
  background-color: #1f2029;
}

body.dark h1 {
  color: #fff;
}

body.dark h1 span {
  transition-delay: 0ms !important;
}

body.dark p {
  color: #fff;
  transition-delay: 0ms !important;
}

body.dark .bg-light {
  background-color: #14151a !important;
}

body.dark .start-header {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
}

body.dark .start-header.scroll-on {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}

body.dark .nav-link {
  color: #fff !important;
}

body.dark .nav-item.active .nav-link {
  color: #999 !important;
}

body.dark .dropdown-menu {
  color: #fff;
  background-color: #1f2029;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}

body.dark .dropdown-item {
  color: #fff;
}

body.dark .navbar-light .navbar-toggler-icon {
  border-bottom: 1px solid #fff;
}

body.dark .navbar-light .navbar-toggler-icon:after,
body.dark .navbar-light .navbar-toggler-icon:before {
  background-color: #fff;
}

body.dark .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}



/* #Media
================================================== */

@media (max-width: 767px) {
  h1 {
      font-size: 38px;
  }

  .nav-item:after {
      display: none;
  }

  .nav-item::before {
      position: absolute;
      display: block;
      top: 15px;
      left: 0;
      width: 11px;
      height: 1px;
      content: "";
      border: none;
      background-color: #000;
      vertical-align: 0;
  }

  .dropdown-toggle::after {
      position: absolute;
      display: block;
      top: 10px;
      left: -23px;
      width: 1px;
      height: 11px;
      content: "";
      border: none;
      background-color: #000;
      vertical-align: 0;
      transition: all 200ms linear;
  }

  .dropdown-toggle[aria-expanded="true"]::after {
      transform: rotate(90deg);
      opacity: 0;
  }

  .dropdown-menu {
      padding: 0 !important;
      background-color: transparent;
      box-shadow: none;
      transition: all 200ms linear;
  }

  .dropdown-toggle[aria-expanded="true"]+.dropdown-menu {
      margin-top: 10px !important;
      margin-bottom: 20px !important;
  }

  body.dark .nav-item::before {
      background-color: #fff;
  }

  body.dark .dropdown-toggle::after {
      background-color: #fff;
  }

  body.dark .dropdown-menu {
      background-color: transparent;
      box-shadow: none;
  }
}

/* #Link to page
================================================== */

.link-to-portfolio {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 200;
  cursor: pointer;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 3px;
  background-position: center center;
  background-size: cover;
  background-image: url('./assets/img/logos/ag-logo14.svg');
  box-shadow: 0 0 0 2px rgba(12, 12, 12, .1);
  transition: opacity .2s, border-radius .2s, box-shadow .2s;
  transition-timing-function: ease-out;
}

.link-to-portfolio:hover {
  opacity: 0.8;
  border-radius: 50%;
  box-shadow: 0 0 0 20px rgba(12, 12, 12, .1);
}




/* Custom header styles */

.afoliba-header-nav-container {
  width: 100%;
  position: absolute;
  z-index: 1000;
  top: 0;
  /* TODO remove if/when user icon is integrated into ngkit */
}
.afoliba-header-nav-container .navbar-always {
  -webkit-transition: all 200ms ease-in-out 0ms;
  -moz-transition: all 200ms ease-in-out 0ms;
  -ms-transition: all 200ms ease-in-out 0ms;
  -o-transition: all 200ms ease-in-out 0ms;
  transition: all 200ms ease-in-out 0ms;
  position: fixed;
  background: #fff;
  width: 100%;
  height: 100%;
  max-height: 60px;
  padding-inline-start: 4vw;
  padding-inline-end: 4vw;
}
.afoliba-header-nav-container .user-icon-link {
  height: 24px;
  overflow: hidden;
}
.afoliba-header-nav-container .user-icon-link i.afoliba-icon:before {
  content: "";
}
.afoliba-header-nav-container .user-icon-link img {
  -webkit-transition: opacity 200ms ease-in-out 0ms;
  -moz-transition: opacity 200ms ease-in-out 0ms;
  -ms-transition: opacity 200ms ease-in-out 0ms;
  -o-transition: opacity 200ms ease-in-out 0ms;
  transition: opacity 200ms ease-in-out 0ms;
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.afoliba-header-nav-container .user-icon-link img.account-icon-black {
  opacity: 1;
}
.afoliba-header-nav-container .user-icon-link img.account-icon-white {
  opacity: 0;
}
.afoliba-header-nav-container img.white-logo {
  display: none;
}
.afoliba-header-nav-container img.account-icon-white {
  display: none;
}
.afoliba-header-nav-container .navbar-menu {
  font-family: inherit;
  margin-top: 60px;
  background: #000;
  display: none;
  position: fixed;
  overflow: scroll;
  z-index: -1;
  width: 100%;
  height: 100%;
}
/* Contact button */
ul#header-nav-icons li.contact-button {
  display: inline-block;
}
.afoliba-button {
  -webkit-appearance: none;
  margin: 0;
  border: none;
  overflow: visible;
  font: inherit;
  font-family: inherit;
  color: #000;
  text-transform: uppercase;
  display: inline-block;
  box-sizing: border-box;
  padding: 0 35px;
  background: #fff;
  vertical-align: middle;
  line-height: 38px;
  min-height: 40px;
  font-size: 0.75rem;
  text-decoration: none;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -webkit-transition-duration: 400ms;
  border: 1px solid #ccc;
  border-radius: 0;
  text-shadow: none;
  font-weight: 500;
  font-size: 0.75rem;
  transition-duration: 400ms;
  letter-spacing: 0.15em;
  word-spacing: 0.22em;
}
.afoliba-button-primary {
  background-color: #e92b26;
  color: #fff;
  border-color: #e92b26;
  text-shadow: none;
}
.afoliba-button-mini {
  min-height: 35px;
  min-width: 100px;
  padding: 0 35px;
  line-height: 33px;
  font-size: 0.5rem;
}
/*  */
.afoliba-header-nav-container button[aria-haspopup="true"] {
  background-color: transparent;
  border: none;
  width: auto;
}
.afoliba-header-nav-container ul {
  margin: 0;
}
.afoliba-header-nav-container ul li {
  list-style: none;
  color: #fff;
}
.afoliba-header-nav-container ul li.level1-node li {
  text-transform: initial;
  font-size: initial;
  letter-spacing: initial;
}
.afoliba-header-nav-container ul li.level1-node > a {
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 2.2px;
}
.afoliba-header-nav-container ul li a {
  border-bottom: none;
  color: #fff;
  display: inline-block;
  padding: 10px 0;
}

a#header-logo-container {
  /* height: 40px; */
  height: 30px;
  width: 136px;
  float: left;
  border-bottom: none;
  display: inline-block;
  margin: 10px;
  position: relative;
}

a#header-logo-container img {
  height: 100%;
  position: absolute;
  left: 0;
}

ul#header-nav-icons {
  float: right;
  margin-top: 7px;
  padding-left: 0 !important;
}
ul#header-nav-icons li {
  display: inline-block;
  margin: 0 5px;
  vertical-align: top;
  height: 60px;
  line-height: initial;
}
ul#header-nav-icons li a {
  text-align: center;
  color: #fff;
  padding: 0;
}
ul#header-nav-icons li a .afoliba-icon {
  font-size: 24px;
  margin: 0 auto;
  color: #000;
}
ul#header-nav-icons li a .icon-subtext {
  font-family: inherit;
  font-size: 12px;
  color: #000;
}
ul#header-nav-icons li.cart-timer {
  width: 36px;
  text-align: center;
}
ul#header-nav-icons li.cart-timer + li.contact-button {
  display: none;
}
ul#header-nav-icons li.cart-timer.afoliba-hidden + li.contact-button {
  display: inline-block;
}
ul#header-nav-icons .contact-button > a.afoliba-button {
  width: auto;
  height: 30px;
  min-width: 0 !important;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 0px 10px;
}
[class^="afoliba-icon-"]:before,
[class*=" afoliba-icon-"]:before {
  font-family: "FontAwesome";
  display: inline-block;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.afoliba-icon-menu:before {
  content: "\f0c9";
}
.afoliba-icon-close:before,
.afoliba-icon-remove:before,
.afoliba-icon-times:before {
  content: "\f00d";
}
.afoliba-icon-directiondown:before,
.afoliba-icon-angle-down:before,
.afoliba-icon-direction-down:before {
  content: "\f078";
}

[class*="afoliba-icon-"],
[class*="afoliba-icon-"]:hover,
[class*="afoliba-icon-"]:focus {
  text-decoration: none;
}
.afoliba-icon,
.afoliba-icon svg {
  width: 1em;
  height: 1em;
  font-size: 1em;
  line-height: 1em;
  max-width: 100%;
  max-height: 100%;
  fill: currentColor;
}
.afoliba-icon {
  display: inline-block;
  position: relative;
}
ul#header-nav-icons li a .afoliba-icon {
  font-size: 24px;
  margin: 0 auto;
}
ul#header-nav-icons li a .icon-subtext {
  font-family: inherit;
  font-size: 12px;
}


/*  */
#header-nav-spacer {
  height: 96px;
}
.afoliba-header-nav-container.condensed ~ #header-nav-spacer {
  height: 60px;
}

@media only screen and (max-width: 1209px) {
  body .afoliba-header-nav-container .menu-icon-link {
    display: inline !important;
  }
  body .afoliba-header-nav-container .close-icon-link {
    display: none !important;
  }
  body .afoliba-header-nav-container .navbar-menu {
    display: none !important;
  }
  body.mobile-menu-open .afoliba-header-nav-container ~ div,
  body.mobile-menu-open .grey-nav ~ div {
    position: fixed;
  }
  body.mobile-menu-open .afoliba-header-nav-container .menu-icon-link,
  body.mobile-menu-open .grey-nav .menu-icon-link {
    display: none !important;
  }
  body.mobile-menu-open .afoliba-header-nav-container .close-icon-link,
  body.mobile-menu-open .grey-nav .close-icon-link {
    display: inline !important;
  }
  body.mobile-menu-open .afoliba-header-nav-container .navbar-menu,
  body.mobile-menu-open .grey-nav .navbar-menu {
    display: block !important;
  }

  .afoliba-header-nav-container #header-nav-icons {
    margin-right: 10px;
  }
  .afoliba-header-nav-container .menu-icon-link a {
    width: 30px;
  }
  .afoliba-header-nav-container .close-icon-link {
    display: none;
  }
  .afoliba-header-nav-container .close-icon-link a {
    width: 30px;
  }
  .afoliba-header-nav-container .user-icon-link {
    display: none !important;
  }
  .afoliba-header-nav-container .navbar-account-mobile {
    color: #fff;
    background: #222;
    margin-bottom: 20px;
  }
  .afoliba-header-nav-container .navbar-account-mobile li.account-node > a {
    height: inherit;
    line-height: inherit;
    padding: 20px 0;
    font-family: inherit;
    font-size: 16px;
  }
  .afoliba-header-nav-container .navbar-account-mobile li.account-node > a > img {
    display: inline;
    line-height: inherit;
    margin-right: 12px;
    width: 20px;
  }
  .afoliba-header-nav-container li.active > a {
    color: #e92b26 !important;
  }
  .afoliba-header-nav-container li.active > a ~ button {
    color: #e92b26;
  }
  .afoliba-header-nav-container ul.level1-list {
    padding: 0 20px !important;
  }
  .afoliba-header-nav-container ul.level1-list:not(.navbar-account-mobile) {
    margin-bottom: 35px;
  }
  .afoliba-header-nav-container li.level1-node:not(:last-child) {
    margin-bottom: 34px;
  }
  .afoliba-header-nav-container li.level1-node > a {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2.14px;
  }
  .afoliba-header-nav-container ul.level2-list {
    padding-left: 25px !important;
  }
  .afoliba-header-nav-container li.level2-node > button[aria-haspopup="true"] {
    color: white;
    height: 1rem;
    margin-left: 8px;
    font-size: 12px;
    padding: 0;
  }
  .afoliba-header-nav-container li.level2-node > button[aria-expanded="true"] ~ ul.level3-list {
    display: block;
  }
  .afoliba-header-nav-container ul.level3-list {
    display: none;
  }

  #header-nav-spacer {
    height: 60px !important;
  }
}
@media only screen and (min-width: 1210px) {
  .afoliba-header-nav-container.condensed .navbar-always {
    max-height: 60px !important;
  }
  .afoliba-header-nav-container.condensed #header-nav-container.top .level2-list {
    height: 0;
  }

  #header-nav-container {
    background: #fff !important;
    z-index: 10;
    text-align: center;
    /* underline animation */
  }
  #header-nav-container.top > .navbar-always {
    box-shadow: none !important;
  }
  #header-nav-container.top .level1-list:hover li.level1-node.active:hover ul.level2-list,
  #header-nav-container.top .level1-list:hover li.level1-node:hover ul.level2-list {
    box-shadow: none !important;
  }
  #header-nav-container.top.loaded > .navbar-always {
    -webkit-transition: all 200ms ease-in-out 0ms;
    -moz-transition: all 200ms ease-in-out 0ms;
    -ms-transition: all 200ms ease-in-out 0ms;
    -o-transition: all 200ms ease-in-out 0ms;
    transition: all 200ms ease-in-out 0ms;
    max-height: 96px;
  }
  #header-nav-container.top.loaded .level1-list:hover li.level1-node.active ul.level2-list,
  #header-nav-container.top.loaded .level1-list:hover li.level1-node ul.level2-list {
    top: 48px;
    height: 0;
  }
  #header-nav-container.top.loaded .level1-list:hover li.level1-node.active:hover > a:after,
  #header-nav-container.top.loaded .level1-list:hover li.level1-node:hover > a:after {
    -webkit-transform: scaleX(0.6);
    -moz-transform: scaleX(0.6);
    -ms-transform: scaleX(0.6);
    -o-transform: scaleX(0.6);
    transform: scaleX(0.6);
  }
  #header-nav-container.top.loaded .level1-list:hover li.level1-node.active:hover.has-children > a:after,
  #header-nav-container.top.loaded .level1-list:hover li.level1-node:hover.has-children > a:after {
    -webkit-transform: scaleX(30);
    -moz-transform: scaleX(30);
    -ms-transform: scaleX(30);
    -o-transform: scaleX(30);
    transform: scaleX(30);
  }
  #header-nav-container.top.loaded .level1-list:hover li.level1-node.active:hover ul.level2-list,
  #header-nav-container.top.loaded .level1-list:hover li.level1-node:hover ul.level2-list {
    height: 48px;
  }
  #header-nav-container.top.loaded .level1-list li.level1-node.active ul.level2-list {
    height: 48px;
  }
  #header-nav-container.top.loaded .level1-list li.level1-node.active > a:after {
    -webkit-transform: scaleX(0.6);
    -moz-transform: scaleX(0.6);
    -ms-transform: scaleX(0.6);
    -o-transform: scaleX(0.6);
    transform: scaleX(0.6);
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #e92b26;
  }
  #header-nav-container.top.loaded .level1-list li.level1-node.active.has-children > a:after {
    -webkit-transform: scaleX(30);
    -moz-transform: scaleX(30);
    -ms-transform: scaleX(30);
    -o-transform: scaleX(30);
    transform: scaleX(30);
  }
  #header-nav-container.top.loaded .level2-list {
    height: 0;
  }
  #header-nav-container .navbar-always {
    -webkit-transition: all 300ms ease-in-out 0ms;
    -moz-transition: all 300ms ease-in-out 0ms;
    -ms-transition: all 300ms ease-in-out 0ms;
    -o-transition: all 300ms ease-in-out 0ms;
    transition: all 300ms ease-in-out 0ms;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    background: #fff;
  }
  #header-nav-container .navbar-account-mobile {
    display: none !important;
  }
  #header-nav-container .menu-icon-link,
  #header-nav-container .close-icon-link {
    display: none !important;
  }
  #header-nav-container .navbar-menu {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    position: fixed;
    display: block !important;
    background: transparent;
    margin: 0;
    left: 50%;
    z-index: 1;
    width: 768px;
    height: 60px;
  }
  #header-nav-container .navbar-menu:hover {
    height: 100%;
  }

  #header-nav-container .navbar-menu a,
  #header-nav-container .navbar-menu button {
    color: #000;
  }
  #header-nav-container #header-logo-container {
    margin: 10px 0 10px 20px;
  }
  #header-nav-container #overflow-cover {
    overflow-x: hidden;
    background: #fff;
    height: auto;
  }
  #header-nav-container button[aria-haspopup="true"] {
    padding: 0;
  }
  #header-nav-container ul {
    text-align: center;
    height: 37px;
    display: inline-block;
    background: #fff;
  }
  #header-nav-container ul li {
    display: inline-block;
  }
  #header-nav-container ul li a {
    -webkit-transition: all 200ms ease-in-out 0ms;
    -moz-transition: all 200ms ease-in-out 0ms;
    -ms-transition: all 200ms ease-in-out 0ms;
    -o-transition: all 200ms ease-in-out 0ms;
    transition: all 200ms ease-in-out 0ms;
    position: relative;
  }
  #header-nav-container ul li a.active,
  #header-nav-container ul li a:hover {
    color: #000;
  }
  #header-nav-container .level1-list {
    position: relative;
    display: inline-block;
    width: 768px;
    z-index: 10;
    padding: 0 !important;
    margin: 0 auto;
    overflow-y: visible;
  }
  #header-nav-container .level1-list:hover li.level1-node.active > a,
  #header-nav-container .level1-list:hover li.level1-node > a {
    opacity: 0.4;
  }
  #header-nav-container .level1-list:hover li.level1-node.active:hover > a,
  #header-nav-container .level1-list:hover li.level1-node:hover > a {
    opacity: 1;
  }
  #header-nav-container .level1-list:hover li.level1-node.active > a:after {
    -webkit-transform: scaleX(0) !important;
    -moz-transform: scaleX(0) !important;
    -ms-transform: scaleX(0) !important;
    -o-transform: scaleX(0) !important;
    transform: scaleX(0) !important;
  }
  #header-nav-container .level1-list:hover li.level1-node:hover > a:after {
    -webkit-transform: scaleX(0.6) !important;
    -moz-transform: scaleX(0.6) !important;
    -ms-transform: scaleX(0.6) !important;
    -o-transform: scaleX(0.6) !important;
    transform: scaleX(0.6) !important;
  }
  #header-nav-container .level1-list:hover li.level1-node.has-children:hover > a:after {
    -webkit-transform: scaleX(30) !important;
    -moz-transform: scaleX(30) !important;
    -ms-transform: scaleX(30) !important;
    -o-transform: scaleX(30) !important;
    transform: scaleX(30) !important;
  }
  #header-nav-container .level1-list li.level1-node {
    font-size: 1rem;
    padding: 11px 30px 0 30px;
    margin: 0 -3px;
    background: #fff;
  }
  #header-nav-container .level1-list li.level1-node > a {
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 5px;
  }
  #header-nav-container .level1-list li.level1-node.active > a {
    color: #000;
    font-weight: 600;
  }
  #header-nav-container .level1-list li.level1-node.active > a:after {
    -webkit-transform: scaleX(0.6);
    -moz-transform: scaleX(0.6);
    -ms-transform: scaleX(0.6);
    -o-transform: scaleX(0.6);
    transform: scaleX(0.6);
  }
  #header-nav-container .level1-list li.level1-node.inactive > a {
    opacity: 0.4;
  }
  #header-nav-container .level1-list li.level1-node:hover .level2-list {
    -webkit-transition: all 300ms ease-in-out 300ms;
    -moz-transition: all 300ms ease-in-out 300ms;
    -ms-transition: all 300ms ease-in-out 300ms;
    -o-transition: all 300ms ease-in-out 300ms;
    transition: all 300ms ease-in-out 300ms;
    top: 48px;
    height: 48px;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
  }
  #header-nav-container .level1-list li.level1-node:hover .level3-list {
    display: block;
  }
  #header-nav-container .level2-list {
    -webkit-transition: all 300ms ease-in-out 0ms;
    -moz-transition: all 300ms ease-in-out 0ms;
    -ms-transition: all 300ms ease-in-out 0ms;
    -o-transition: all 300ms ease-in-out 0ms;
    transition: all 300ms ease-in-out 0ms;
    margin: auto;
    list-style: none;
    display: block;
    position: absolute;
    top: 48px;
    left: 0;
    height: 0;
    width: 768px;
    z-index: -1;
    background: #fff;
    padding-left: 0 !important;
    overflow: hidden;
  }
  #header-nav-container .level2-list:hover {
    overflow: visible;
  }
  #header-nav-container .level2-list:hover li.level2-node a,
  #header-nav-container .level2-list:hover li.level2-node button[aria-haspopup="true"] {
    color: #999;
  }
  #header-nav-container .level2-list:hover li.level2-node:hover a,
  #header-nav-container .level2-list:hover li.level2-node:hover button[aria-haspopup="true"],
  #header-nav-container .level2-list:hover li.level2-node:focus a,
  #header-nav-container .level2-list:hover li.level2-node:focus button[aria-haspopup="true"] {
    color: #000;
  }
  #header-nav-container .level2-list:hover li.level2-node > a:hover,
  #header-nav-container .level2-list:hover li.level2-node > a:focus {
    text-decoration: underline;
  }
  #header-nav-container .level2-list li.level2-node {
    position: relative;
    padding: 0 16px;
    margin: 0 -4px;
  }
  #header-nav-container .level2-list li.level2-node.dropdown > a ~ button[aria-haspopup="true"] {
    font-size: 8px;
    line-height: 8px;
    margin-left: 7px;
  }
  #header-nav-container .level2-list li.level2-node.active > a {
    font-weight: 700;
  }
  #header-nav-container .level2-list li.level2-node a {
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
  }
  #header-nav-container .level2-list li.level2-node button[aria-expanded="true"] ~ .level3-list {
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
    max-height: 500px;
    padding-bottom: 10px;
    display: block;
  }
  #header-nav-container .level3-list {
    -webkit-transition: all 300ms ease-in-out 0ms;
    -moz-transition: all 300ms ease-in-out 0ms;
    -ms-transition: all 300ms ease-in-out 0ms;
    -o-transition: all 300ms ease-in-out 0ms;
    transition: all 300ms ease-in-out 0ms;
    background: #fff;
    position: absolute;
    min-width: 200px;
    width: 100%;
    height: auto;
    max-height: 0;
    text-align: left;
    top: 48px;
    left: -4px;
    z-index: -2;
    padding: 0 20px;
    overflow: hidden;
    display: none;
  }
  #header-nav-container .level3-list > li.level3-node {
    display: block;
    width: 100%;
  }
  #header-nav-container .level3-list > li.level3-node.active > a {
    font-weight: 700;
  }
  #header-nav-container .level3-list > li.level3-node > a {
    color: #000 !important;
  }
  #header-nav-container .level3-list > li.level3-node > a:hover {
    text-decoration: underline;
  }
  #header-nav-container li.level1-node > a:after {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #e92b26;
  }
  #header-nav-container li[aria-expanded="true"] > a:after {
    -webkit-transform: scaleX(0.6);
    -moz-transform: scaleX(0.6);
    -ms-transform: scaleX(0.6);
    -o-transform: scaleX(0.6);
    transform: scaleX(0.6);
  }
  #header-nav-container li.has-children[aria-expanded="true"] > a:after {
    -webkit-transform: scaleX(30);
    -moz-transform: scaleX(30);
    -ms-transform: scaleX(30);
    -o-transform: scaleX(30);
    transform: scaleX(30);
  }

  ul#header-nav-icons {
    margin: 10px 15px 10px 0;
  }
  ul#header-nav-icons li.contact-button > a.afoliba-button {
    margin-top: 0;
  }
}
.afoliba-header-nav-container a#skip-to-content {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

.afoliba-header-nav-container a#skip-to-content:focus {
  clip: auto;
  height: auto;
  width: auto;
  z-index: 200;
  padding: 15px;
  background: #e92b26;
}

@media only screen and (min-width: 1210px) {
  .transparent-nav #header-nav-container.top .navbar-always,
  .transparent-nav #header-nav-container.top .navbar-menu {
    background: transparent !important;
  }
  
  .transparent-nav #header-nav-container.top .navbar-always {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0) 100%) !important;
  }
  .transparent-nav #header-nav-container.top .user-icon-link img {
    display: block;
  }
  .transparent-nav #header-nav-container.top .user-icon-link img.account-icon-white {
    opacity: 1;
  }
  .transparent-nav #header-nav-container.top .user-icon-link img.account-icon-black {
    opacity: 0;
  }
  .transparent-nav #header-nav-container.top #header-logo-container img {
    display: block;
  }
  .transparent-nav #header-nav-container.top #header-logo-container img.white-logo {
    opacity: 1;
  }
  .transparent-nav #header-nav-container.top #header-logo-container img.black-logo {
    opacity: 0;
  }
  .transparent-nav #header-nav-container.top .level1-node > a {
    color: #fff !important;
  }
  .transparent-nav #header-nav-container.top:hover .level1-list:hover .level1-node.active > a,
  .transparent-nav #header-nav-container.top:hover .level1-list:hover .level1-node a {
    opacity: 0.75;
  }
  .transparent-nav #header-nav-container.top:hover .level1-list:hover .level1-node.active:hover > a,
  .transparent-nav #header-nav-container.top:hover .level1-list:hover .level1-node:hover > a {
    opacity: 1;
  }
  .transparent-nav #header-nav-container.top #header-nav-icons li.contact-button > a {
    color: #000;
  }
  .transparent-nav #header-nav-container.top #header-nav-icons li a {
    color: #fff;
  }
  .transparent-nav #header-nav-container .level1-list,
  .transparent-nav #header-nav-container .level1-list .level1-node,
  .transparent-nav #header-nav-container .level2-list .level2-node,
  .transparent-nav #header-nav-container #overflow-cover,
  .transparent-nav #header-nav-container #header-nav-icons {
    background: transparent;
  }
  .transparent-nav #header-nav-container .level2-list {
    box-shadow: unset;
  }
  .transparent-nav #header-nav-container #header-logo-container img.white-logo {
    opacity: 0;
  }
  .transparent-nav #header-nav-container #header-logo-container img.black-logo {
    opacity: 1;
  }
  .transparent-nav #header-nav-container:hover .level1-list .level1-node:hover > .level2-list {
    background: #fff;
  }
  .transparent-nav #header-nav-spacer {
    display: none;
  }

  .grey-nav #header-nav-container .navbar-always,
  .grey-nav #header-nav-container .level1-list li.level1-node:hover .level2-list,
  .grey-nav #header-nav-container .level2-list li.level2-node button[aria-expanded="true"] ~ .level3-list {
    box-shadow: none !important;
  }
  .grey-nav #header-nav-container ul,
  .grey-nav #header-nav-container .navbar-always,
  .grey-nav #header-nav-container #overflow-cover,
  .grey-nav #header-nav-container .level1-list .level1-node {
    background: #f5f5f5 !important;
  }
  
}
#header-logo-container img {
  -webkit-transition: opacity 300ms ease-in-out 0ms;
  -moz-transition: opacity 300ms ease-in-out 0ms;
  -ms-transition: opacity 300ms ease-in-out 0ms;
  -o-transition: opacity 300ms ease-in-out 0ms;
  transition: opacity 300ms ease-in-out 0ms;
}

/***** Header hacks *****/
@media only screen and (min-width: 1210px) {
 
  /* [IPOD-503] Remove once nav is updated with show/hide option for header nav config */
  /* ul.level2-list > li.level2-node:nth-child(n + 6) {
    display: none !important;
  } */

  /********** end IPOD-503 **********/
}
#header-nav-container {
  -webkit-transition: all 300ms ease-in-out 0ms;
  -moz-transition: all 300ms ease-in-out 0ms;
  -ms-transition: all 300ms ease-in-out 0ms;
  -o-transition: all 300ms ease-in-out 0ms;
  transition: all 300ms ease-in-out 0ms;
}
 
 
@media only screen and (max-width: 1209px) {

  body.mobile-menu-open #homepage-nav ~ main {
    position: fixed;
  }
  body.mobile-menu-open #homepage-nav .menu-icon-link {
    display: none !important;
  }
  body.mobile-menu-open #homepage-nav .close-icon-link {
    display: inline !important;
  }
  body.mobile-menu-open #homepage-nav .navbar-menu {
    display: block !important;
    height: auto;
  }
}
/********** end IPOD-609 **********/
/**********  Hero hacks  **********/

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

/* mobile-nav-footer */

@media only screen and (max-width: 1099px) {
  #mobile-nav-footer,
  #hp-mobile-nav-footer {
    display: block;
    background: #222;
  }
}
#mobile-nav-footer .afoliba-padding-medium-vertical {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
#mobile-nav-footer .afoliba-padding-large-vertical {
  padding-top: 50px !important;
  padding-bottom: 140px !important;
}

#mobile-nav-footer .afoliba-padding-large-horizontal {
  padding-left: 50px !important;
  padding-right: 50px !important;
}
.afoliba-grid {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.afoliba-grid {
  margin-left: -25px;
}
.afoliba-grid:after {
  clear: both;
}
.afoliba-grid:before,
.afoliba-grid:after {
  content: "";
  display: block;
  overflow: hidden;
}
.afoliba-padding-large-horizontal {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.afoliba-padding-large-vertical {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.afoliba-flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.afoliba-grid > * {
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  margin: 0;
  float: left;
}
.afoliba-grid > * {
  padding-left: 25px;
}
.afoliba-grid > * > :last-child {
  margin-bottom: 0;
}

[class*="afoliba-width"] {
  box-sizing: border-box;
  width: 100%;
}

  h6,
.afoliba-h6 {
  margin: 0 0 25px 0;
  font-family: inherit;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  -webkit-font-smoothing: antialiased;
}
.afoliba-color-white {
  color: #fff;
}
.afoliba-padding-medium-top {
  padding-top: 20px !important;
}
.afoliba-margin-medium-bottom {
  margin-bottom: 20px !important;
}

.afoliba-icon-small {
  font-size: 150%;
  line-height: 150%;
  vertical-align: -10%;
}
.afoliba-icon-hover {
  color: #999;
  border-bottom: none;
}
.afoliba-margin-medium-right {
  margin-right: 20px !important;
}
#mobile-nav-footer p,
#mobile-nav-footer a:not([role="button"]),
#main-footer p,
#main-footer a:not([role="button"]),
#hp-footer p,
#hp-footer a:not([role="button"]),
#hp-mobile-nav-footer p,
#hp-mobile-nav-footer a:not([role="button"]) {
  font-weight: 400;
}

.afoliba-icon-facebook:before {
  content: "\f082";
}
.afoliba-icon-twitter:before {
  content: "\f099";
}
.afoliba-icon-instagram:before {
  content: "\f16d";
}
.afoliba-icon-youtube:before {
  content: "\f167";
}

.afoliba-text-center {
  text-align: center !important;
}
.afoliba-margin-medium-top {
  margin-top: 20px !important;
}
.afoliba-c-footer-social-module-mobile {
  display: none;
}
@media (min-width: 768px) {
  .afoliba-width-medium-1-4 {
    width: 25%;
    padding-left: 0px;
  }
  .afoliba-width-medium-3-4,
  .afoliba-tweetthis .afoliba-tweetthis-title {
    width: 75%;
  }
}

.afoliba-flex > *,
.afoliba-flex-inline > * {
  -ms-flex-negative: 1;
}
.afoliba-margin-medium-top {
  margin-top: 20px !important;
}
.afoliba-grid > * > :last-child {
  margin-bottom: 0;
}
.afoliba-header-nav-container p:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (min-width: 1210px) {
  #mobile-nav-footer,
  #hp-mobile-nav-footer {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {
  .afoliba-c-footer-social-module {
    padding-top: 10px;
  }
}

@media only screen and (max-width: 1099px) {
  #mobile-nav-footer p,
  #hp-mobile-nav-footer p {
    font-size: 12px;
     
  }
  #mobile-nav-footer h6,
  #hp-mobile-nav-footer h6 {
    font-size: 12px;
    letter-spacing: 4px;
  }
}
.afoliba-color-mdgray {
  color: #999;
}
.afoliba-edit-light {
  font-family: inherit;
  font-weight: 400;
  font-style: normal;
}
@media only screen and (max-width: 992px) {
  .afoliba-c-footer-social-module {
    padding-top: 0 !important;
  }
  .afoliba-c-footer-social-module h6 {
    font-size: 10px !important;
    padding-top: 0 !important;
    margin-bottom: 10px !important;
  }
  .afoliba-c-footer-social-module a {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
    padding-right: 10px;
    padding-left: 10px;
  }
  .card-blog .card-body {
    width: 92% !important;
  }
  a#header-logo-container {
    height: 23px;
    width: 100px;
  }
  .header__logo-img {
    width: 10rem !important;
  }
  ul#header-nav-icons .contact-button > a.afoliba-button {
    font-size: 0.5rem;
}
  .video-play-button span {
    border-left: 22px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
  .afoliba-c-footer-social-module {
    display: none;
  }
  .afoliba-c-footer-social-module-mobile {
    display: block;
    text-align: center;
  }
  .afoliba-c-footer-info {
    text-align: center;
}
.video-play-button{
  padding: 37px 12px 18px 28px;
}
.video-play-button:before{
  width: 60px;
  height: 60px;
}
.video-play-button:after {
  width: 60px;
  height: 60px;
} 
}
@media (max-width: 767px) {
  h6,
  .afoliba-h6 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.12em;
    word-spacing: 0.2em;
  }
}

/* Global Page styles */
#afoliba-page-header.afoliba-width-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

#afoliba-page-header .afoliba-slidenav-position {
  position: relative;
}

#afoliba-page-header .afoliba-hero-carousel {
  min-height: 70vh;
}

#afoliba-page-header .afoliba-slideshow {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  touch-action: pan-y;
}

#afoliba-page-header .afoliba-slideshow {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 80vh;
  padding-left: 0px !important;
}

#afoliba-page-header .afoliba-slideshow>li {
  position: absolute;
  height: 80vh;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}

#afoliba-page-header .afoliba-slideshow>.afoliba-active {
  z-index: 10;
  opacity: 1;
}

#afoliba-page-header .afoliba-hero-carousel .afoliba-slide-image-container {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#afoliba-page-header #herocarousel-item-608500 {
  height: 80vh;
  background-image: inherit;
}

#afoliba-page-header .afoliba-overlay {
  display: inline-block;
  position: relative;
  max-width: 100%;
  vertical-align: middle;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  margin: 0;
}

#afoliba-page-header .afoliba-overlay-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #fff;
}

#afoliba-page-header .afoliba-overlay-bottom {
  top: auto;
}

#afoliba-page-header .afoliba-overlay-gradient-0-50 {
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

#afoliba-page-header .afoliba-overlay> :first-child {
  margin-bottom: 0;
}

#afoliba-page-header .afoliba-hero-carousel .afoliba-overlay-panel {
  color: #000;
}

#afoliba-page-header .afoliba-text-left {
  text-align: left !important;
}

#afoliba-page-header .afoliba-padding-large-bottom {
  padding-bottom: 50px !important;
}

#afoliba-page-header .afoliba-contrast {
  color: #f5f5f5;
}

#afoliba-page-header .hero-nav {
  width: 100%;
  position: relative;
  z-index: 1;
}

#afoliba-page-header .hero-nav-panel {
  position: absolute !important;
  bottom: 0 !important;
  left: 0;
  right: 0;
  width: auto;
  font-size: 18px;
  font-weight: 300;
  margin: auto;
  height: auto;
  padding: 45px 45px 0 45px;
}

#afoliba-page-header .afoliba-text-display-xl {
  font-size: 4.375rem;
  line-height: 4.5rem;
  font-weight: 400;
  word-spacing: 0;
  letter-spacing: 0.625rem;
  text-transform: uppercase;
  font-family: inherit;
}

#afoliba-page-header .hero-nav-light h1.afoliba-text-display-xl {
  font-weight: 400 !important;
  padding: 0 !important;
  color: #f5f5f5;
  border-color: #f5f5f5;
}

#afoliba-page-header .afoliba-margin-bottom {
  margin-bottom: 10px !important;
}

#afoliba-page-header .afoliba-button-large {
  min-height: 50px;
  min-width: 235px;
  padding: 0 35px;
  line-height: 48px;
  font-size: 0.75rem;
}

#afoliba-page-header .hero-nav a {
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  -ms-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  position: relative;
  letter-spacing: 2.2px;
}

#afoliba-page-header .hero-nav a:before {
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 200ms ease-in-out 0s;
  -moz-transition: all 200ms ease-in-out 0s;
  -ms-transition: all 200ms ease-in-out 0s;
  -o-transition: all 200ms ease-in-out 0s;
  transition: all 200ms ease-in-out 0s;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -11px;
  background-color: #e92b26;
}

#afoliba-page-header .hero-nav a.afoliba-button-primary {
  color: #fff;
}

#afoliba-page-header .afoliba-contrast a.afoliba-button:hover {
  border-color: #444;
}

#afoliba-page-header .afoliba-contrast .afoliba-button-primary:hover,
#afoliba-page-header .afoliba-contrast .afoliba-button-primary:focus {
  background-color: #ffe066;
  color: #000;
}

#afoliba-page-header .afoliba-button:not(:disabled),
#afoliba-page-header .afoliba-pill-button:not(:disabled),
#afoliba-page-header .afoliba-daterange-trigger:not(:disabled),
#afoliba-page-header .afoliba-sharing-button:not(:disabled) {
  cursor: pointer;
}

@media (max-width: 959px) {

  #afoliba-page-header h1,
  #afoliba-page-header .afoliba-h1 {
      font-size: 3.125rem;
      font-weight: 400;
      line-height: 1.2;
      letter-spacing: 0.12em;
      word-spacing: 0.08em;
      margin-bottom: 35px;
  }
}

@media (max-width: 959px) {
  #afoliba-page-header .afoliba-text-display-xl {
      font-size: 3.125rem;
      letter-spacing: 0.375rem;
      line-height: 3.75rem;
  }
}

@media only screen and (max-width: 767px) {
  #afoliba-page-header .hero-nav-panel {
      padding: 1.25rem;
  }
}
/* override wp admin bar settgins on mobile */
@media screen and (max-width: 600px){
    #wpadminbar {
      position: fixed !important;
  }
}

@media (max-width: 767px) {

  #afoliba-page-header h1,
  #afoliba-page-header .afoliba-h1 {
      font-size: 2.1875rem;
      font-weight: 400;
      line-height: 1.3;
      letter-spacing: 0.12em;
      word-spacing: 0.08em;
      margin-bottom: 25px;
  }

  #afoliba-page-header .afoliba-text-display-xl {
      font-size: 2.1875rem;
      letter-spacing: 0.375rem;
      line-height: 3.15rem;
  }
}

/* Safari Support for bootstrap4 */
 
 
/* Safari Support for bootstrap4  ends */