header {
  background-color: white;
  position: fixed;
  width: 100%;
  z-index: 10;
  box-shadow: 0px 3px 6px #2D2D2D12;
}

.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 60px;
}

.logo {
  z-index: 100;
}

.logo img {
  max-height: 110px;
}

.contactButtons {
  display: flex;
  align-self: stretch;
  gap: 32px;
}

.headerQuotation {
  align-self: center;
  transition: 0.1s;
}

.headerQuotation:hover {
  background-color: var(--purpleNavy);
  border-color: var(--purpleNavy);
  transition: 0.1s;
}

.mobileMenus .headerQuotation {
  width: fit-content;
  border-color: var(--midnightBlue);
  margin-top: 16px;
  margin-left: 20px;
}

.mobileMenus .headerQuotation:hover {
  border-color: var(--purpleNavy);
}

.mobileMenus .headerAppointment {
  width: fit-content;
  border-color: var(--carolinaBlue);
  margin-top: 16px;
  margin-left: 20px;
}

.headerPhoneNumber {
  background-color: var(--midnightBlue);
  color: white;
  display: flex;
  text-decoration: none;
  padding: 0 20px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.headerPhoneNumber>span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.headerPhoneNumber>span:first-child {
  font-size: 24px;
  font-weight: 600;
}

.headerPhoneNumber>span:last-child {
  font-size: 14px;
}

.desktopWrapper>nav>ul {
  display: flex;
  list-style-type: none;
  gap: 75px;
  padding: 0;
}

.menuItem a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 18px;
  transition: 0.1s;
}

.menuItem a:hover {
  color: var(--liberty);
}

.submenu {
  position: absolute;
  display: block;
  background-color: white;
  width: 100%;
  left: 0;
  z-index: 2;
  box-shadow: 0px 3px 6px #2D2D2D12;
  top: 114px;
  border-top: solid 1px rgba(150, 150, 150, 0.1);
}

.submenu>ul {
  padding: 18px 0;
  display: flex;
  justify-content: center;
  list-style-type: none;
  gap: 75px;
}

.submenu>ul a {
  font-weight: 400;
}

.hide {
  display: none;
}

.mobileWrapper {
  display: none;
}

.mobilePhoneNumber {
  display: none;
}

.burgerMenu {
  z-index: 100;
  background-color: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.burgerMenu .line {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--jet);
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}

.burgerMenu.active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burgerMenu.active .line:nth-child(2) {
  opacity: 0;
}

.burgerMenu.active .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobileMenuItem>*:not(ul) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobileMenuItem>span,
.mobileMenuItem>a {
  padding: 16px 20px;
  padding-right: 26px;
}

.mobileMenuItem>span>img {
  transform: rotate(180deg);
  transition: 0.2s;
}

.mobileMenuItem>span>span {
  min-width: 25px;
  font-weight: 600;
}

.mobileSubmenu {
  background-color: white;
  padding: 5px 26px;
  list-style-type: none;
}

.mobileSubmenu li a:hover {
  color: var(--liberty);
}

nav:not(.mobileNavbar)>ul {
  display: flex;
  list-style-type: none;
  column-gap: 70px;
  padding: 0;
  margin: 0;
}

.mobileNavbar {
  position: fixed;
  display: block;
  top: 0px;
  right: -102%;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-color: white;
  transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
  z-index: 99;
  visibility: hidden;
}

.mobileNavbar.open {
  right: 0px;
  visibility: visible;
}

.mobileMenus {
  height: calc(100% - 140px);
  overflow-y: auto;
}

.mobileMenus>ul {
  margin: 0;
  padding: 0;
  margin-top: 109px;
  color: black;
  list-style-type: none;
}

.mobileMenus>ul li {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.75px;
}

.mobileMenus>ul a {
  color: black;
  text-decoration: none;
  font-weight: 600;
  transition: 0.1s;
}

.mobileMenus>ul a:hover {
  color: var(--liberty);
  transition: 0.1s;
}

.mobileSubmenu li a {
  display: flex;
  align-items: center;
  font-size: 20px;
  letter-spacing: -0.75px;
  text-transform: initial;
  padding: 9px 20px;
  column-gap: 2px;
  font-weight: 400;
  transition: 0.1s;
}

#rotate {
  transform: rotate(0deg);
  transition: 0.2s;
}

@media screen and (max-width: 1500px) {

  .desktopWrapper,
  .contactButtons {
    display: none;
  }

  .mobileWrapper {
    display: flex;
  }

  .headerInner {
    padding: 8px 20px;
  }

  .logo img {
    max-height: 68px;
  }

  .mobilePhoneNumber {
    display: flex;
    background-color: var(--purpleNavy);
    color: white;
    border-radius: 5px;
    align-items: center;
    font-weight: 600;
    padding: 8px 10px;
    text-decoration: none;
    gap: 9px;
  }
}