.c-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  padding: 0 1rem;
  background: #fff;
  position: sticky;
  top: 0px;
  box-shadow: 1px 1px 10px 0px rgba(153, 153, 153, 0.25);
  z-index: 100;
}

.c-header__main {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-header__menu {
  display: none;
}

.c-header__rightside {
  display: flex;
  width: 100%;
  align-items: center;
}

.c-header__search {
  display: flex;
  width: 220px;
  height: 42px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  border-radius: 8px 8px 0px 0px;
  border-bottom: 1px solid #d3d3d3;
  background: #f8fafe;
  box-sizing: border-box;
}

.c-header__search__input,
.c-header__search input {
  box-sizing: border-box;
  background: none;
  border: none;
  outline: none;
  margin: 0;
  width: 100%;
  padding: 0px 0px 0px 16px;
  height: 100%;
  display: flex;
  align-items: center;

  font-family: "Glacial Indifference";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.c-header__search__input::placeholder,
.c-header__search input::placeholder {
  color: #999;
}

input[name="s"]:focus {
  border: none;
}

.c-header__search__button {
  box-sizing: border-box;
  background: none;
  padding: none;
  border: none;
  padding: 0px 8px 0px 0px;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.c-header__c-logo {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-header__nav {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.c-header__nav__link {
  color: var(--dash-10, #051838);
  font-family: "Glacial Indifference";
  position: relative;
  font-size: 18px;
  font-style: normal;
  height: 56px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.c-header__nav__link:hover {
  color: #0a58ca;
}

.c-header__nav__link::before {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #214ca4;
  position: absolute;
  transition: 0.2s;
  top: 100%;
}

.c-header__nav__link:hover::before {
  width: 100%;
  transition: 0.2s;
}

.c-header__c-drop-list {
  position: relative;
}

.c-header__c-drop-list__list {
  width: 312px;
  list-style: none;
  position: absolute;
  top: 100%;
  border: 1px solid #ececec;
  border-radius: 0px 12px 12px 12px;
  background: rgba(246, 246, 246, 0.8);
  backdrop-filter: blur(10px);
  display: inline-flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.c-header__c-drop-list__list__option {
  display: flex;
  width: 100%;
  padding: 16px 14px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 1px 1px 10px 0px rgba(153, 153, 153, 0.25);
}

.c-header__c-drop-list__list__option__title {
  color: #777;
  font-family: "Glacial Indifference Bold";
  font-size: 18px;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
}

.c-header__c-drop-list__list__option__subtitle {
  color: #777;
  font-family: "Glacial Indifference";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.c-header__c-drop-list__list__option__link {
  color: var(--Light-Blue, #214ca4);
  font-family: "Glacial Indifference Bold";
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  text-decoration-line: underline;
}

.c-header__c-drop-list__list__option__linked_title {
  text-decoration: none;
}

@media (max-width: 1100px) {
  .c-header {
    padding: 12px 0px;
    height: max-content;
  }

  .c-header__main {
    flex-direction: column;
  }

  .c-header__leftside {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 16px;
  }

  .c-header__menu {
    display: flex;
    width: 30px;
    height: 24px;
    padding: 6px 6px;
    justify-content: space-between;
    background: transparent;
    outline: none;
    flex-direction: column;

    border: none;
    position: relative;
  }

  .c-header__menu__icon {
    display: flex;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 2px;
    background: #092b66;
    transition: 0.2s;
    transform: rotate(0deg);
  }

  .c-header__menu--open .c-header__menu__icon {
    position: absolute;
    width: 18px;
    transform: rotate(45deg);
    transition: 0.2s;
  }

  .c-header__menu--open .c-header__menu__icon:first-child {
    width: 18px;
    transform: rotate(-45deg);
    transition: 0.2s;
  }

  .c-header__rightside {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "search"
      "nav";
    justify-content: flex-end;
    transition: 0.4s;
    max-height: 0vh;
    overflow: auto;
  }

  .c-header__rightside--open {
    transition: 0.4s;
    max-height: calc(100vh - 48px);
  }

  .c-header__search {
    grid-area: search;
    margin: 16px auto;
    width: calc(100% - 32px);
  }

  .c-header__nav {
    grid-area: nav;
    width: 100%;
    flex-direction: column;
    margin: 0;
    height: max-content;
  }

  .c-header__nav__link {
    width: 100%;
    text-align: left;
    justify-content: space-between;
  }

  .c-header__c-drop-list {
    width: 100%;
  }

  .c-header__c-drop-list__list {
    position: relative;
    width: 100%;
  }
}
