.kc-header {
  /*background-image: Comes from the .html as I need to use the `static` template tag;*/
  background-repeat: no-repeat;
  background-size: 1920px auto;
  background-attachment: fixed;
  background-position-x: center;
  background-position-y: top;

  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 1921px) {
  .kc-header {
    background-size: cover;
  }
}

.kc-header.sticky {
  position: sticky;
  top: 0;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .kc-header {
    background-attachment: initial;
    background-size: 1000px auto;
    background-position-y: center;
  }
}

@media screen and (max-width: 767px) {
  .kc-header > .menu-wrapper {
    width: 100%;
    padding: 0 15px 0 30px;
  }
}

.kc-header > .menu-wrapper > .free-trial-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 0 30px 0;
  height: 80px;
}
.kc-header > .menu-wrapper > .free-trial-container > .btn.free-trial {
  height: 35px;
  font-size: 16px;
  padding-left: 24px;
  padding-right: 24px;
}

.kc-header > .menu-wrapper > .menu-container {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kc-header > .menu-wrapper > .menu-container {
    padding-bottom: 40px;
  }
}
.kc-header > .menu-wrapper > .divider {
  padding-top: 4px;
  border-bottom: 1px solid #606060;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .kc-header > .menu-wrapper > .divider {
    margin-bottom: 40px;
  }
}

.kc-header > .menu-wrapper > .menu-container > .logo {
  display: flex;
  align-items: center;
  padding-right: 70px;
}
@media screen and (max-width: 1200px) {
  .kc-header > .menu-wrapper > .menu-container > .logo {
    padding-right: 0;
  }
}
.kc-header > .menu-wrapper > .menu-container > .logo > img {
  width: 155px;
  height: 80px;
}

@media screen and (max-width: 1200px) {
  .kc-header > .menu-wrapper > .menu-container > .logo > img {
    width: 130px;
    height: 66px;
  }
}

.kc-header > .menu-wrapper > .menu-container > .navigation-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.kc-header
  > .menu-wrapper
  > .menu-container
  > .navigation-container
  > .top-menu-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
}

.kc-header
  > .menu-wrapper
  > .menu-container
  > .navigation-container
  > .top-menu-container
  > form {
  display: none;
  flex-grow: 1;
  padding: 0;
}

.kc-header
  > .menu-wrapper
  > .menu-container
  > .navigation-container
  > .top-menu-container.search-form-open
  > form {
  display: block;
}


@media screen and (max-width: 1200px) {
.kc-header
  > .menu-wrapper
  > .menu-container
  > .navigation-container
  > .top-menu-container.search-form-open
  > form {
    position: absolute;
    width: 200px;
    right: 500px;
    height: 35px;
  }
}

@media screen and (max-width: 767px) {
.kc-header
  > .menu-wrapper
  > .menu-container
  > .navigation-container
  > .top-menu-container.search-form-open
  > form {
    /* position: absolute;
    width: 200px; */
    right: 88px;
    height: 40px;
  }
}

.kc-header
  > .menu-wrapper
  > .menu-container
  > .navigation-container
  > .top-menu-container.search-form-open
  > form
  > input {
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  outline: 0;
  border: none;
  padding-left: 10px;
}

.kc-header
  > .menu-wrapper
  > .menu-container
  > .navigation-container
  > .top-menu-container
  > .nav-btn-group {
  display: flex;
  border-radius: 8px;
}

@media screen and (max-width: 767px) {
.kc-header
  > .menu-wrapper
  > .menu-container
  > .navigation-container
  > .top-menu-container
  > .nav-btn-group {
    margin-top: 27px;
  }
}

.kc-header .top-menu-container .nav-btn-group .nav-btn {
  background-color: #1c202a;
  color: #eff2f5;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 14px;
  font-family: ralewaysemibold, sans;

  display: flex;
  align-items: center;
  height: 35px;

  padding: 0 20px;
  border-right: 2px solid #000000;
}

@media screen and (max-width: 1200px) {
  .kc-header .top-menu-container .nav-btn-group .nav-btn {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .kc-header .top-menu-container .nav-btn-group .nav-btn {
    background-color: #325B81;
    border-right: 1px solid white;
    height: 22px;
    padding-top: 3px;
    align-items: unset;
  }
}

.kc-header .top-menu-container .nav-btn-group .nav-btn.right-border {
  border-right: none;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.kc-header .top-menu-container .nav-btn-group .nav-btn.left-border {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.kc-header
  .top-menu-container.search-form-open
  .nav-btn-group
  .nav-btn.left-border {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.kc-header .top-menu-container .nav-btn-group .nav-btn > i {
  font-size: 1.2em;
}
.kc-header .top-menu-container .nav-btn-group .nav-btn > .fa-search {
  font-size: 1.35em;
  color: #9397a0;
}
.kc-header .top-menu-container .nav-btn-group .nav-btn.login {
  color: #719a30;
}

@media screen and (max-width: 767px) {
  .kc-header .top-menu-container .nav-btn-group .nav-btn.login {
    color: white;
  }
}
.kc-header .top-menu-container .nav-btn-group .nav-btn:hover,
.kc-header .top-menu-container .nav-btn-group .nav-btn:active,
.kc-header .top-menu-container .nav-btn-group .nav-btn:focus {
  filter: brightness(140%);
}

.kc-header .top-menu-container .kc-btn.open-menu {
    background: #FFFFFF26 0% 0% no-repeat padding-box;
    border-radius: 3px;
    width: 41px;
    height: 41px;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
}

.kc-header .top-menu-container .kc-btn.mobile-search-btn {
  background-color: transparent;
  height: 41px;
  color: white;
  padding-left: 5px;
  padding-right: 5px;
  margin-right: 15px;
  /* icon size */
  font-size: 1.3em;
}

.kc-header > .greetings-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}
.kc-header > .greetings-container > .greetings-text {
  font-size: 30px;
  color: white;
  font-family: ralewaylight, sans;
}
@media screen and (max-width: 1200px) {
  .kc-header > .greetings-container > .greetings-text {
    font-size: 26px;
  }
}

.kc-header > .greetings-container > .greetings-text.bold {
  font-family: ralewaysemibold, sans;
}
.kc-header > .greetings-container > .kc-btn.free-trial {
  height: 50px;
  font-size: 18px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.kc-header > .product-switch-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  width: 1124px;
}

@media screen and (max-width: 1200px) {
  .kc-header > .product-switch-container {
    width: 720px;
  }
}

@media screen and (max-width: 767px) {
  .kc-header > .product-switch-container {
    width: 100%;
  }
}

.kc-header > .product-switch-container > .kc-btn.product-switch {
  height: 60px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ralewaylight, sans;
  color: white;
  border-radius: 0;
  flex-basis: 50%;
}

@media screen and (max-width: 1200px) {
.kc-header > .product-switch-container > .kc-btn.product-switch {
    font-size: 21px;
  }
}

@media screen and (max-width: 767px) {
  .kc-header > .product-switch-container > .kc-btn.product-switch {
    height: 45px;
    font-size: 15px;
  }
}
.kc-header > .product-switch-container > .kc-btn.product-switch.active {
  background-color: #1c202a;
  font-family: ralewaysemibold, sans;
}
.kc-header > .product-switch-container > .kc-btn.product-switch > img {
  width: 45px;
  height: 32px;
  margin-right: 10px;
}

@media screen and (max-width: 1200px) {
  .kc-header > .product-switch-container > .kc-btn.product-switch > img {
    width: 35px;
    height: 25px;
  }
}

@media screen and (max-width: 767px) {
  .kc-header > .product-switch-container > .kc-btn.product-switch > img {
    width: 26px;
    height: 19px;
  }
}

.kc-header .top-menu-container .nav-btn-group .nav-btn.logged-user {
  text-transform: capitalize;
  color: #719a30;
}

.kc-header .top-menu-container .nav-btn-group .nav-btn.logged-user .fa-user {
  margin-right: 10px;
}

.kc-header .top-menu-container .nav-btn-group .nav-btn.logout {
  margin-top: 5px;
  width: 100%;
}

.kc-header
  .top-menu-container
  .nav-btn-group
  .kc-dropdown
  .kc-dropdown-content {
  min-width: 100%;
}

@media (max-width: 1200px) {
.kc-hidden-lg {
      display: none !important;
  }
}

/* $screen-sm-min: 768px;
$screen-xs-max: ($screen-sm-min - 1);
$screen-md-min: 992px;
$screen-sm-max: ($screen-md-min - 1);
$screen-lg-min: 1200px;
$screen-md-max: ($screen-lg-min - 1); */


@media screen and (min-width: 1201px) {
  .kc-visible-lg {
      display: none !important;
  }
}

@media screen and (max-width: 1200px) {
 .kc-visible-lg {
      display: block;
  }
}

@media (max-width: 991px) {
  .kc-hidden-sm {
       display: none !important;
   }
 }
 
 
 @media screen and (min-width: 992px) {
    .kc-visible-sm {
       display: none !important;
   }
 }

@media (max-width: 767px) {
 .kc-hidden-xs {
      display: none !important;
  }
}


@media screen and (min-width: 768px) {
   .kc-visible-xs {
      display: none !important;
  }
}

@media screen and (max-width: 767px) {
 .kc-visible-xs {
      display: block;
  }
}
