/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
/*-- Google Font --*/
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@400;500;600;700&family=Open+Sans:wght@300;400;500&display=swap");
/*-- Common Style --*/

h1, h2, h3, h4, h5, h6 {
  font-family: "Antonio", sans-serif;
  
  font-weight: 700;
  margin-top: 0;
  line-height: 1.5;
  margin-bottom: 0;
}

h1 {
  font-size: 36px;
}

@media only screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 30px;
}

@media only screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 24px;
}

@media only screen and (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p {
  margin-bottom: 0;
}

a, button {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

a, button, img, input {
  transition: all 0.3s linear;
  outline: 0;
}

a:focus, button:focus, img:focus, input:focus {
  outline: 0;
}

a:focus {
  color: none;
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #ffa800;
}

ul, ol {
  padding: 0;
  list-style: none;
  margin: 0;
}

button, input[type="submit"] {
  cursor: pointer;
}

/*----------------------------------------*/
/*  02. Header CSS
/*----------------------------------------*/
/*--
/*  2.1 - Header Top CSS
/*----------------------------------------*/
.header {
  background: #0a0c1c;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

@media only screen and (max-width: 991px), only screen and (max-width: 767px) {
  .header {
    padding: 15px 0;
  }
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-menu .main-menu {
  display: flex;
}

.header-menu .main-menu > li {
  position: relative;
  padding: 30px 10px;
}

@media only screen and (max-width: 1199px) {
  .header-menu .main-menu > li {
    padding: 30px 15px;
  }
}

.header-menu .main-menu > li a {
  font-size: 16px;
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}

.header-menu .main-menu > li a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 8px;
  height: 0px;
  background: #ffa800;
  top: auto;
  transition: all 0.3s linear;
}

.header-menu .main-menu > li .menu-icon::after {
  content: '\f16c';
  font-family: "flaticon";
  font-size: 10px;
  color: #ffffff;
  margin-left: 5px;
  transition: all 0.3s linear;
}

.header-menu .main-menu > li.active-menu > .menu-icon::after {
  color: #ffa800;
}

.header-menu .main-menu > li.active-menu > a {
  color: #ffa800;
}

.header-menu .main-menu > li.active-menu > a::before {
  height: 30px;
  top: 65%;
  bottom: auto;
}

.header-menu .main-menu > li:hover > .menu-icon::after {
  color: #ffa800;
}

.header-menu .main-menu > li:hover > a {
  color: #ffa800;
}

.header-menu .main-menu > li:hover > a::before {
  height: 30px;
  top: 65%;
  bottom: auto;
}

.header-menu .main-menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.header-menu .main-menu > li .sub-menu {
  position: absolute;
  left: 0;
  top: 110%;
  width: 270px;
  background: #ffffff;
  box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  border-bottom: 3px solid #ffa800;
  opacity: 0;
  z-index: 99;
  visibility: hidden;
  transition: all 0.3s linear;
}

.header-menu .main-menu > li .sub-menu li {
  padding: 0;
}

.header-menu .main-menu > li .sub-menu li a {
  padding: 5px 25px;
  font-size: 14px;
  font-family: "Antonio", sans-serif;
  font-weight: 600;
  color: #0a0c1c;
  display: block;
  position: relative;
  z-index: 1;
}

.header-menu .main-menu > li .sub-menu li.active > a {
  color: #ffa800;
}

.header-menu .main-menu > li .sub-menu li:hover > a {
  color: #ffa800;
}

.header-middle {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .header-cart {
    margin-right: 25px;
  }
}

.header-meta .header-btn .link-btn:hover::before {
  transform: scale(-1);
}

.header-toggle button {
  background: none;
  border: 0;
  padding: 0;
}

.header-toggle button span {
  width: 25px;
  height: 2px;
  background: #ffa800;
  margin: 5px 0;
  display: block;
}

.header-toggle button span:last-child {
  margin-bottom: 0;
}

.header-toggle-02 button span {
  background: #f82c47;
}

.header-toggle-03 button span {
  background: #fc653c;
}

.header-02 {
  background: transparent;
  border-bottom: 1px solid #95a5b8;
}

.header-02.sticky {
  background: #0a0c1c;
  border-bottom: 0;
}

.sticky {
  position: fixed;
  top: 0;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
  -webkit-animation: sticky 1s;
          animation: sticky 1s;
}
.header-toggle button {
  background: none;
  border: 0;
  padding: 0;
}

.header-toggle button span {
  width: 25px;
  height: 2px;
  background: #ffa800;
  margin: 5px 0;
  display: block;
}

.header-toggle button span:last-child {
  margin-bottom: 0;
}

.header-toggle-02 button span {
  background: #f82c47;
}

.header-toggle-03 button span {
  background: #fc653c;
}
/*--
/*  2.2 - Header Top CSS
/*----------------------------------------*/
.offcanvas {
  background: #0a0c1c;
  width: 320px;
}

@media only screen and (max-width: 575px) {
  .offcanvas {
    width: 280px;
  }
}

.offcanvas-header .close-btn {
  background: none;
  border: 0;
  font-size: 18px;
  color: #ffa800;
  transition: all 0.3s linear;
}

.offcanvas-header .close-btn:hover {
  transform: rotate(90deg);
}

.offcanvas-menu .main-menu li {
  position: relative;
}

.offcanvas-menu .main-menu li a {
  display: block;
  font-size: 15px;
  font-family: "Antonio", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffa800;
  padding: 5px 0px;
  position: relative;
}

.offcanvas-menu .main-menu li .menu-expand {
  position: absolute;
  right: 20px;
  top: 8px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.offcanvas-menu .main-menu li .menu-expand::before {
  position: absolute;
  content: '';
  width: 16px;
  height: 2px;
  background-color: #ffa800;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s linear;
}

.offcanvas-menu .main-menu li .menu-expand::after {
  position: absolute;
  content: '';
  width: 2px;
  height: 16px;
  background-color: #ffa800;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s linear;
}

.offcanvas-menu .main-menu li.active > .menu-expand::after {
  height: 0;
}

.offcanvas-menu .main-menu li ul {
  padding-left: 6%;
  display: none;
}