/* @import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* variable define */
:root {
    --primary-color: #fff;
    --secondary-color: #F58220;
    --third-color: #f98169;
    --white-color: #fff;
    --text-color: #555;
    --text-gray: #999;
    --black-color: #000;
    --primary-font: Outfit;
    --secondary-font: Raleway;
  
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

:active,
:hover,
:focus {
  outline: 0 !important;
  outline-offset: 0;
}


/* --------------------------
--------- Header Design---- */
.navigation-wrap {
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 1000;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navigation-wrap .nav-item {
  padding: 0 0.625rem;
  transition: all 200ms linear;
}

.navbar-toggler:focus {
  outline: unset;
  border-color: unset;
  box-shadow: none;
}

.navbar-brand img {
  width: 85px;
  height: 85px;
}

.nav-link {
  /* font-size: 0.9375rem; */
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--black-color);
  letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.navigation-wrap .main-btn {
  padding: 0.3125rem 1.4375rem;
  box-shadow: none;
  margin-left: 00.625rem;
}

.navigation-wrap .nav-link {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  letter-spacing: 1px;
}

.nav-header {
  background-color: #fff;
}

/* change navbar styling on-scroll */
.navigation-wrap.scroll-on {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* background: var(--white-color); */
  box-shadow: 0 0.12rem 1.75rem 0 rgb(0, 0, 0, 0.09);
  transition: all .15s ease-in-out 0s;
}

.mtop-banner{
  margin-top: 145px;
}
/* --------------------------
--------- Footer Design---- */
.sticky-footer{
  padding-top: 2rem;
}
.sticky-footer .footer-heading{
  color: var(--primary-color);
}

.sticky-footer .links{
  color: var(--primary-color);
  font-size: 18px;
  text-decoration: none;
  padding-bottom: 5px;
}

@media (max-width: 767px) {
  .mobile_menu{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mtop-banner{
    margin-top: 145px;
  }
}


/* PIXEL BTNS */

.pixel-btn
{
    position: relative;
    width: 100%;
    height: 60px;
    border: none;
    outline: none;
    color: #fff;
    background: #333;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
}

.pixel-btn span
{
    position: relative;
    z-index: 2;
}

.pixel-container
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
} 

.pixel 
{
    position: absolute;
    width: 10px;
    height: 10px;
    pointer-events: none;
    background: var(--clr);
    border: 1px solid rgba(0,0,0,.25);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pixel-btn:hover .pixel
{
    opacity: 1;
}