html {
    position: relative;
}
body {
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}
body::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    content: "";
    background: url(images/body-bg.svg) no-repeat center center /cover;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}
html {
	scroll-behavior: smooth;
}
section {
    scroll-margin-top: 70px;
}
/* scrollbar */
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px #d4d4d4;
	box-shadow: inset 0 0 6px #d4d4d4;
	background-color: #d4d4d4;
}
::-webkit-scrollbar {
	width: 6px;
	background-color: #313131;
}
::-webkit-scrollbar-thumb {
	background-color: #313131;
}
* {
	scrollbar-color: #313131 #8f8f8f;
	scrollbar-width: thin;
}
header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 10px 30px;
}
header .header-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo-holder {
  display: block;
}
header .logo-img {
  height: 60px;
  display: block;
}
header .shop-holder {
  display: block;
}
header .shop-img {
    height: 40px;
    display: block;
    width: 100%;
}
h1 {
    text-align: center;
    font-size: 9vw;
    text-transform: uppercase;
    color: #00a0fe;
    background: -webkit-linear-gradient(195deg, #481780, #00a0fe 100%);
    background: linear-gradient(195deg, #481780, #00a0fe 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0;
    line-height: 1;
    margin-bottom: 100px;
    font-weight: 900;
    letter-spacing: -0.5vw;    
}
.logo-img {
    transition: all .25s ease-in-out 0s;
    transform: scale(1);
    width: 100%;
    height: 100%;
}
.shop-img {
    transition: all .25s ease-in-out 0s;
    transform: scale(1);
    width: 100%;
    height: 100%;
}
.social-img {
    transition: all .25s ease-in-out 0s;
    transform: scale(1);
    width: 100%;
    height: 100%;
}
.logo-img:hover {
    transform: scale(.8);
}
.shop-img:hover {
    transform: scale(.8);
}
.social-img:hover {
    transform: scale(.8);
}
/* .heading-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
} */
.heading-with-icon img {
    height: 7vw;
}
.menu-social-icons-container {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}
.menu-social-icons-item a img {
  height: 50px;
  margin: 0 5px;
}
/* loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background: #fff;
    transition: all .25s ease-in-out 1s;
}
.loader-left-part {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 50%;
    height: 100%;
    background: #000;
    transition: all .5s ease-in-out 0s;
}
.loader-right-part {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    width: 50%;
    height: 100%;
    background: #000;
    transition: all .5s ease-in-out 0s;
}
.loader-logo-holder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 9;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .75s ease-in-out .1s;
}
.loader-logo-holder img {
    height: 960px;
    width: 100%;
}
/* loaded page */
body.loaded .loader-left-part {
    transform: translateX(-100%);
}
body.loaded .loader-right-part {
    transform: translateX(100%);
}
body.loaded .loader-logo-holder {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}
body.loaded .loader-container {
    opacity: 0;
    z-index: -1;
}
/* animations */
.pulse {
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(204,169,44, 0.4);
  animation: pulse 2s infinite;
}
.pulse:hover {
  animation: none;
}
.icons-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(72, 23, 128, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(72, 23, 128, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(72, 23, 128, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(72, 23, 128, 0.4);
    box-shadow: 0 0 0 0 rgba(72, 23, 128, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(72, 23, 128, 0);
      box-shadow: 0 0 0 10px rgba(72, 23, 128, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(72, 23, 128, 0);
      box-shadow: 0 0 0 0 rgba(72, 23, 128, 0);
  }
}
/* responsive */
@media only screen and (max-width: 768px) {
    header .logo-img {
        height: 40px;
    }
}
@media only screen and (max-width: 576px) {
    .main-section {
        margin-top: 100px;
    }
}