html {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Hansip', Verdana, Geneva, Tahoma, sans-serif;
}

.marquee-container {
  overflow-x: hidden !important;
  display: flex !important;
  flex-direction: row !important;
  position: relative;
  width: 100%;
}

.marquee-container:hover div {
  animation-play-state: var(--pause-on-hover);
}

.marquee-container:active div {
  animation-play-state: var(--pause-on-click);
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}

.overlay::before,
.overlay::after {
  background: linear-gradient(to right, var(--gradient-color));
  content: "";
  height: 100%;
  position: absolute;
  width: var(--gradient-width);
  z-index: 2;
}

.overlay::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.overlay::before {
  left: 0;
  top: 0;
}

.marquee {
  flex: 0 0 auto;
  min-width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  animation: scroll var(--duration) linear var(--delay) var(--iteration-count);
  animation-play-state: var(--play);
  animation-delay: var(--delay);
  animation-direction: var(--direction);
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.logo {
	padding-top: 1rem;
    position: relative;
}

.logofont1 {
	font-size: 3.5rem;
}

.logostroke1 {
	-webkit-text-fill-color: rgb(236, 235, 229);
}
.logostroke1-bup {
	-webkit-text-stroke: 2px whitesmoke;
	-webkit-text-fill-color: #2f2f1f;
}

.logo1 {
    width: 15rem;
}

.crownimg {
    position: absolute;
	height: 3.5rem;	
    top: -0.5rem;
	left: -2.5rem;
    z-index: 1;
}

.leafsimg {
    position: absolute;
	width: 3.5rem;
    z-index: 2;
    right: -3rem;
    top: 0rem;
}

.logo-text {
    position: absolute;
    z-index: 3;
}

.nyofont {
	font-family: 'Hansip';
	font-weight: 400;
}

.show p {
    height: auto !important;
}

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

    .logo_link {
        margin-top: -2rem;
        margin-left: 1rem;
    }

    .logo1 { 
        width: 8rem; 
    }

    .logofont1 {
    	font-size: 1.75rem;
    }

    .crownimg {
        height: 2.25rem;	
        top: -0.25rem;
	    left: -1.25rem;  
    }

    .leafsimg {
        width: 2.25rem;
        right: -1.5rem;
        top: 0.5rem;
    }


}