* {
  font-family: "Cairo", sans-serif;
  box-sizing: border-box;
}

header {
  background-color: #f0efea;
  margin-bottom: 80px !important;
}

@media (max-width: 767.98px) {
  header {
    margin-bottom: 40px !important;
  }
}

header .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px clamp(0rem, -0.2778rem + 1.1111vw, 0.625rem);
  padding-bottom: 0;
}

header .head .logo {
  height: 90px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  header .head .logo {
    height: 90px;
  }
}

header .head .controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

header .head .controls input {
  height: min-content;
  font-size: 20px;
  padding: 10px 15px;
  border-radius: 13px;
  height: min-content;
  font-size: 17px;
  padding: 8px 13px;
  border-radius: 13px;
}

@media (max-width: 991.98px) {
  header .head .controls input {
    font-size: 14px;
  }
}

header .head .controls form {
  position: relative;
}

@media (max-width: 767.98px) {
  header .head .controls form {
    display: none;
  }
}

header .head .controls form button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  font-size: 25px;
  border: none;
  background-color: transparent;
}

header .head .controls .btns {
  display: flex;
  height: min-content;
  gap: 0;
}

header .head .controls .btns button,
header .head .controls .btns a {
  border: none;
  color: white;
  background-color: #27318b;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 10px;
  border-radius: 13px;
  transition: 0.2s all ease-out;
  text-decoration: none;
}

header .head .controls .btns button:first-child,
header .head .controls .btns a:first-child {
  margin-left: 14px;
}

header .head .controls .btns button.menu,
header .head .controls .btns a.menu {
  display: none;
}

@media (max-width: 767.98px) {

  header .head .controls .btns button,
  header .head .controls .btns a {
    padding: 7px 13px;
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: 10px;
    border-radius: 13px;
    min-width: 50px;
  }

  header .head .controls .btns button:last-child,
  header .head .controls .btns a:last-child {
    display: none;
  }

  header .head .controls .btns button:nth-child(3),
  header .head .controls .btns a:nth-child(3) {
    background-color: #27318b !important;
  }
}

@media (max-width: 767.98px) {

  header .head .controls .btns button.menu,
  header .head .controls .btns a.menu {
    display: block;
  }

  header .head .controls .btns button:not(:first-child) i,
  header .head .controls .btns a:not(:first-child) i {
    font-size: 22px;
  }
}

header .head .controls .btns button:hover,
header .head .controls .btns a:hover {
  transform: scale(1.1);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

header .head .controls .btns button:not(:last-child),
header .head .controls .btns a:not(:last-child) {
  background-color: #e31b24;
}

header .head .controls .btns button i,
header .head .controls .btns a i {
  font-size: 25px;
}

@media (max-width: 750.98px) {
  header .head {
    padding: 15px clamp(0rem, -0.2778rem + 1.1111vw, 0.625rem);
    padding-bottom: 10px !important;
  }
}

header nav {
  justify-content: space-between;
  align-items: center;
  background-color: #27318b;
  border-radius: 15px;
  height: auto;
  padding: 0 15px;
  transform: translateY(50%);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 999999;
  max-height: 100vh;
  display: flex;
}

@media (max-width: 750.98px) {
  header nav {
    display: none;
    width: 80%;
    max-width: 430px;
    overflow: auto;
  }
}

header nav>i {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.2392156863);
  padding: 10px;
  border-radius: 11px;
  display: none !important;
}

@media (max-width: 750.98px) {
  header nav>i {
    display: block !important;
    cursor: pointer;
  }
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  gap: 2px;
}

header nav ul a {
  text-decoration: none;
  color: #fff !important;
  transition: 0.3s ease-out;
  border-radius: 13px;
  cursor: pointer;
}

header nav .social a {
  color: #fff !important;
}

header nav ul a:hover,
header nav ul a.active {
  background-color: #fff;
  color: #27318b !important;
  padding: 10px;
}

header nav ul li {
  height: max-content;
  padding: 8px 12px;
  font-size: 18px;
  padding: 10px;
  font-weight: 700;
  font-size: 17px;
}

header nav ul .more {
  display: none;
}

header nav ul .more a {
  display: none;
}

header nav ul .more ul {
  display: none;
}

@media (max-width: 1399.98px) {
  header nav ul {
    font-size: 19px;
  }

  header nav ul li {
    padding: 12px;
  }
}

@media (max-width: 1199.98px) {
  header nav ul {
    font-size: 17px;
  }

  header nav ul li {
    padding: 12px 10px;
  }
}

@media (max-width: 991.98px) {
  header nav ul.pages a:nth-last-of-type(-n+4) {
    display: none;
  }

  header nav ul .more {
    display: flex;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
  }

  header nav ul .more a:nth-last-of-type(-n+4) {
    display: block;
  }

  header nav ul .more ul {
    position: absolute;
    flex-direction: column;
    background-color: #27318b;
    width: max-content;
    padding: 10px;
    border-radius: 15px;
    top: calc(100% + 15px);
    right: 0;
  }

  header nav ul .more:hover {
    background-color: #fff;
    color: #27318b;
  }
}

@media (max-width: 767.98px) {
  header nav ul {
    font-size: 15px;
  }

  header nav ul.pages a:nth-last-of-type(-n+7) {
    display: none;
  }

  header nav ul li {
    padding: 8px 10px;
  }

  header nav ul .more a {
    display: none;
  }

  header nav ul .more a:nth-last-of-type(-n+7) {
    display: block;
  }
}

@media (max-width: 767.98px) {
  header nav {
    border-radius: 0;
    flex-direction: column;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    transform: none;
    background-image: linear-gradient(0deg, #27318b, #e31b24);
    min-width: 300px;
    padding: 15px;
  }

  header nav nav {
    display: none;
  }

  header nav nav::after {
    display: none;
  }

  header nav ul {
    flex-direction: column;
    width: 100%;
  }

  header nav ul a {
    display: block !important;
    width: 100%;
    text-align: center;
  }

  header nav ul .more {
    display: none;
  }
}

header nav .social a:hover {
  background-color: rgba(255, 255, 255, 0);
  color: #e31b24 !important;
}

header nav .social li {
  padding: 8px;
}

@media (max-width: 750px) {
  header nav .social .mobile ul {
    display: flex;
    flex-direction: row !important;
  }
}

header::after {
  content: "";
  width: calc(100vw - (100vw - 1300px) / 2);
  background: #27318b;
  height: 4px;
  position: absolute;
  right: 0;
  z-index: -1;
  top: 0;
}

@media (min-width: 576px) {
  header::after {
    max-width: calc(100vw - (100vw - 540px) / 2);
  }
}

@media (min-width: 768px) {
  header::after {
    max-width: calc(100vw - (100vw - 720px) / 2);
  }
}

@media (min-width: 992px) {
  header::after {
    max-width: calc(100vw - (100vw - 960px) / 2);
  }
}

@media (min-width: 1200px) {
  header::after {
    max-width: calc(100vw - (100vw - 1140px) / 2);
  }
}

@media (min-width: 1300px) {
  header::after {
    max-width: calc(100vw - (100vw - 1300px) / 2);
  }
}

header nav::after {
  content: "";
  width: 50vw;
  background: #27318b;
  height: 100%;
  position: absolute;
  right: 50%;
  z-index: -1;
}

@media (max-width: 767.98px) {
  header nav::after {
    display: none !important;
  }

  .menu {
    min-width: min-content !important;
    border-radius: 7px !important;
    margin-left: 9px !important;
  }

  header .head .controls .btns button i,
  header .head .controls .btns a i {
    font-size: 19px;
  }

  header .head .controls .btns button,
  header .head .controls .btns a {
    padding: 7px 10px;
    display: flex;
    align-items: center;
    font-size: 10px;
    gap: 5px;
    border-radius: 13px;
    min-width: 50px;
  }

  header .head .controls .btns button:not(:first-child) i,
  header .head .controls .btns a:not(:first-child) i {
    font-size: 15px;
  }

  header .head .controls .btns a:nth-child(2) {
    border-radius: 0 10px 10px 0 !important;
  }

  header .head .controls .btns a:nth-child(3) {
    border-radius: 10px 0 0 10px !important;
  }

  header .head .controls .btns a:last-child {
    padding: 0;
    background: 0;
    color: #353535;
    font-size: 30px;
    box-shadow: none !important;
    transform: none !important;
    margin-right: 5px !important;
    width: min-content;
    min-width: min-content;
    display: flex;
  }

  header .head .controls .btns a:last-child i {
    font-size: 13px !important;
    color: #ffffff;
    background-color: #353535 !important;
    padding: 10px 9px !important;
    margin-right: 5px !important;
    border-radius: 7px !important;
  }

  header .head .controls .btns a:last-child b {
    display: none;
  }

  header .head .controls .btns button:not(:last-child),
  header .head .controls .btns a:not(:last-child) {
    max-height: max-content;
    min-height: min-content;
    height: auto;
    height: 36px;
    display: flex;
  }
}

.animate__animated.animate__fadeInRight {
  --animate-duration: .5s;
}

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