@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,500&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style: none;
  font-family: "Fira Sans", sans-serif;
}

:root {
  --color-600: #474545;
}

/* Start Header */
header.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.body-active {
  overflow: hidden;
}
.header-menu {
  background-color: #fff;
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  display: none;
  z-index: 1;
}
.sub-menu {
  padding-left: 0px;
}
/* #menu-header-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  align-items: center;
  height: 100vh;
  line-height: 3rem;
  overflow-y: auto;
  padding-left: 0px;
  margin-top: 2rem;
} */
.social-icon-img {
  width: 25px;
  filter: contrast(0) brightness(0) invert(1);
}
header ul a {
  font-family: "Gilda Display", serif;
  font-size: 2rem;
  color: #fff;
}

/* Start Hover Animation */

/* 
header .menu {
position: absolute;
top: 0;
margin: auto;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
header .menu li {
margin: 0 20px;
position: relative;
} */
/* header .menu li a {
  text-decoration: none;
  display: block;
  padding: 5px 0;
  font-family: "Open Sans";
  font-size: 26px;
  line-height: 1;
  font-weight: bold;
  position: relative;
  z-index: 1;
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #f5ae70, 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: -100%;
  transition: all 0.3s ease-in-out;
} */
header .menu li a:before {
  display: block;
  content: "";
  width: 0;
  height: 3px;
  bottom: 5px;
  left: 0;
  bottom: -3px;
  z-index: 0;
  position: absolute;
  background: #f5ae70;
  transition: all 0.3s ease-in-out;
}
header .menu li a:hover {
  background-position: 0%;
}
header .menu li a:hover:before {
  width: 100%;
}
/* End Hover Animation */

/* Start Hamburger */
#nav-icon2 {
  width: 48px;
  height: 45px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  /* display: none; */
}

#nav-icon2 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background-color: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
  left: 35%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1),
#nav-icon2 span:nth-child(2) {
  top: 0px;
}

#nav-icon2 span:nth-child(3),
#nav-icon2 span:nth-child(4) {
  top: 14px;
}

#nav-icon2 span:nth-child(5),
#nav-icon2 span:nth-child(6) {
  top: 29px;
}

#nav-icon2.open span:nth-child(1),
#nav-icon2.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),
#nav-icon2.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 9px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 9px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 22px;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 22px;
}

.open-close-btn {
  position: absolute;
  right: 0px;
  top: 22px;
  overflow: hidden;
}

/* End Hamburger */
.header-contact-details {
  padding-right: 4rem;
}

/* End Header */

@import "phone.css";
