/* 
** The Header Media Queries **
** Tweak as per your needs **
*/

.header-carisma{
  width: 28%%;

}
.brand {
margin-top: 2px;
  align-items: center;
  justify-content: center;
  }

.site-header {
  position: relative;
  height: 80px;
  background-color: black;
  }

.site-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem; }
  @media (min-width: 660px) {
    .site-header__wrapper {
      padding-top: 0;
      padding-bottom: 0; }
      .site-header__wrapper > * {
        flex: 1; } }
@media (min-width: 660px) {
  .site-header__start {
    text-align: center; } }

@media (min-width: 660px) {
  .site-header__middle {
    order: -1; } }

@media (min-width: 660px) {
  .site-header__end {
    display: flex;
    justify-content: flex-end;
    /* Better for LTR/RTL support */ } }

@media (max-width: 659px) {
  .site-header__end {
    padding-right: 4rem; } }

@media (min-width: 660px) {
  .nav__wrapper {
    display: flex; } }

@media (max-width: 659px) {
  .nav__wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: -1;
    background-color: #d9f0f7;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out; }
    .nav__wrapper.active {
      visibility: visible;
      opacity: 1;
      transform: translateY(0); } }

.nav__item:not(:last-child) {
  margin-right: 1.5rem; }

.nav__item a {
  display: block;
  padding: 1.5rem 1rem; }
  @media (min-width: 660px) {
    .nav__item a {
      padding-left: 0;
      padding-right: 0; } }
.nav__toggle {
  display: none; }
  @media (max-width: 659px) {
    .nav__toggle {
      display: block;
      position: absolute;
      right: 1rem;
      top: 1rem; } }