:root {
  --secondary-color: #d4955a;
  --contrast-color: #e97123;
}

@font-face {
  font-family: "newfont";
  src: url("../fonts/Cutiemolly.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "primaryfont";
  src: url("../fonts/Shaky_Hand_Some_Comic_3D.otf");
  font-weight: 400;
}

@font-face {
  font-family: "secondaryfont";
  src: url("../fonts/REM-VariableFont_wght.ttf");
}

@font-face {
  font-family: "boldfont";
  src: url("../fonts/SpicySoup.ttf");
}

@font-face {
  font-family: "latobold";
  src: url("../fonts/Lato-Black.ttf");
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* section{
  overflow-x: hidden;
} */
body {
  font-family: 'boldfont';
  overflow-x: hidden;
  /* background-color: #d4955a; */
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: rgb(255, 255, 255);
}

body::-webkit-scrollbar-thumb {
  background: var(--contrast-color);
  border-radius: 20px;
}

p {
  font-family: 'secondaryfont';
}

/* section{
  overflow-x: hidden;
} */
#hero {
  /* margin-top: 37px; */
  width: 100%;
  min-height: 100vh;
  padding: 180px 50px 50px;
  position: relative;
  overflow: hidden;
  background: url(../images/herobg2.webp) center bottom no-repeat;
  background-size: cover;
  transition: all 400ms linear;
}

.htbox {
  /* position: absolute; */
  /* right: 300px; */
  /* top: 120px; */
  /* backdrop-filter: blur(1px); */
  width: 100%;
}

.herotitle {
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin-top: 10px;
}

#hero h1 {
  font-size: 150px;
  line-height: 160px;
  color: var(--contrast-color);
  letter-spacing: 10px;
  text-shadow: -5px 5px 0 #cbb5b5;
  width: 100%;
  text-align: center;
  -webkit-text-stroke: 1px white;
  animation: heroSlideUp .8s ease-in-out 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 400ms linear;

}


@media (max-width: 850px) {
  #hero h1 {
    font-size: 150px;
    line-height: 150px;
  }

  .herotitle {
    height: 150px;
  }
}

@media (max-width: 640px) {
  #hero h1 {
    font-size: 120px;
    line-height: 120px;

  }

  .herotitle {
    height: 120px;
    margin-top: 20px;
  }

}

@media (max-width: 546px) {
  #hero h1 {
    line-height: 90px;
    font-size: 90px;
    letter-spacing: 0;
  }

  .herotitle {
    height: 90px;
  }

  .htbox {
    padding-top: 40px;
  }

}

@media (max-width: 430px) {
  #hero {
    padding: 180px 30px 0;
    /* background-position: 60% bottom; */
  }

  #hero h1 {
    line-height: 70px;
    font-size: 70px;
  }

  .herotitle {
    height: 70px;
  }

  .htbox {
    padding-top: 100px;
  }
}

@media (max-width: 370px) {
  .htbox {
    padding-top: 70px;
  }

  #hero {
    /* background-position: 58% bottom; */
  }
}


.communitytakeover {
  /* font-family: 'Montserrat'; */
  font-size: 80px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.communitytakeover h2 {
  /* font-family: 'Montserrat'; */
  font-size: 60px;
  text-transform: uppercase;
  text-align: center;
  animation: scalee .8s ease-in-out 1;
  font-family: 'secondaryfont';
  color: var(--contrast-color);
}

@keyframes heroSlideUp {
  0% {
    transform: translateY(200px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes scalee {
  0% {
    transform: scale(0.2);
  }

  100% {
    transform: scale(1);
  }
}

#hero h3 {
  padding: 15px 20px;
  border-radius: 10px;
  word-break: break-all;
  text-align: center;
  font-size: 50px;
  /* font-family: 'Montserrat'; */
  color: rgb(255, 255, 255);
  background-color: var(--dark-);
  animation: scaleUp .8s ease-in-out 1;
  /* -webkit-text-stroke: 1px rgb(255, 255, 255); */
  font-family: 'secondaryfont';
}

.herotext {
  /* display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px; */
  margin-top: 50px;
}

.herorimg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--contrast-color);
  margin: 0 auto;
  padding: 10px 10px 0;
  box-shadow: -2px 5px 0 #cbb5b5;
  animation: scaleup 1s linear;
  display: flex;
  justify-content: center;
  position: relative;
  background-color: #f4f4f4;
}

.herorimg img {
  /* width: 100%; */
  height: 90px;
  width: auto;
  object-fit: cover;
  transition: all 300ms linear;
  position: absolute;
  top: 2px;

}

.herorimg .img2 {
  position: absolute;
  top: 101%;
}

.herorimg:hover .img2 {
  top: 2px;
  transition: all 300ms linear;
}

.herorimg:hover img:nth-child(1) {
  top: 101%;
}

@keyframes scaleup {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}


.hicons {
  width: 100%;
  max-width: 800px;
  margin: 80px auto 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;

  align-items: center;
  gap: 40px;
  /* position: absolute ;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%); */
  z-index: 999;
}

.avcont {
  animation: goRight 1s ease-in-out;
}

.avcont button {
  width: 100%;
  border: 2px solid var(--contrast-color);
  padding: 10px 20px;
  background: none;
  border-radius: 50px;
  color: var(--contrast-color);
  font-size: 18px;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 200ms linear;

}

.avcont button:hover {
  border: 2px solid var(--secondary-color);
  background: var(--contrast-color);
  ;
  color: var(--secondary-color);

}

.socialsiconscont {
  /* width: 100%; */
  /* padding: 20px; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.socials-icon a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.socials-icon img {
  width: 80px;
  height: 80px;
  animation: goDown 1s ease-in-out;
  transition: all 300ms ease-in-out;
}

.socials-icon img:hover {
  transform: scale(1.2);
}

.socials-icon:nth-child(2) img {
  animation: goDown 1s ease-in-out .2s;
}

.socials-icon:nth-child(3) img {
  animation: goDown 1s ease-in-out .4s;
}

.socials-icon:nth-child(4) img {
  animation: goDown 1s ease-in-out .6s;
}

@media (max-width: 900px) {
  #hero {
    padding-bottom: 0px;
  }

}



@media (max-width: 500px) {

  .hicons {
    margin-top: 30px;
  }
}


@media (max-width: 600px) {

  .socials-icon img {
    width: 50px;
    height: 50px;
  }

}

#infitetext {
  background-color: #2d1107;
  overflow-x: hidden;
  /* position: absolute;
    top: 0; */
  z-index: 99;
}

.infinite {
  width: 100%;
  overflow: hidden;
  padding: 10px;
  display: flex;
  gap: 50px;
}

.infinite .p {
  font-size: 15px;
  white-space: nowrap;
  color: white;
  display: flex;
  font-family: 'secondaryfont';
  gap: 50px;
  background: linear-gradient(to right, #ff6b08, #eedd44, #f0b90b, #eedd44, #ff6b08);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}


.infinite .p {
  animation: infiniteslide 30s linear infinite;
}

@keyframes infiniteslide {
  0% {
    transform: translateX(0)
  }

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


#tokenomic {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-direction: column;
  background-color: #3c7373;
  padding-top: 50px 0 0;
  box-sizing: 0 10px 5px black;
  /* overflow: hidden; */
  position: relative;
  /* min-height: 100vh; */
}

#tokenomic .sectiontitle {
  margin-top: 50px;
  width: 100%;
  transform: translateY(-200px);
  opacity: 0;
  transition: all 500ms ease-in-out .8s;
  color: white;
}


.Tokenomicsbox-cont {
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px 50px 120px;
}

/* .tokimgbox{
  width: 100%;
} */
.tokimgbox:nth-child(1),
.tokimgbox:nth-child(3) {
  transform: rotateZ(357deg);
}

.tokimgbox:nth-child(2),
.tokimgbox:nth-child(4) {
  transform: rotateZ(-357deg) translateY(-5px);
}

.tokimgbox:nth-child(2) {
  transition-delay: 0.100s;
}

.tokimgbox:nth-child(3) {
  transition-delay: 0.200s;
}

.tokimgbox:nth-child(4) {
  transition-delay: 0.300s;
}

.tokimgbox img {
  width: 260px;
  height: auto;
}

.transimg {
  width: 100%;
  height: auto;
}

/* baeeff
.Tokenomicsbox{
  width: auto;
  padding: 20px 30px;
  background-color: var(--secondary-color);
  border-radius: 15px;
  text-align: center;
  border: 3px solid var(--secondary-color);
  transition: all 500ms ease-in-out;
  transform: translateY(200px);
  opacity: 0;
} */

/* .Tokenomicsbox:hover{
  background: var(--darker-);
} */
/* 
.Tokenomicsbox h3, .Tokenomicsbox p{
    font-size: 30px;
    letter-spacing: 3px;
    transition: all 500ms ease-in-out;
    color: white;
}

.Tokenomicsbox:hover{
  color: var(--contrast-color);
  background-color: white;

}


.Tokenomicsbox:hover *{
  color: var(--contrast-color);
}


@media (max-width: 487px) {
  .Tokenomicsbox {
    width: 100%;
  }
} */

.tokbox {
  background-color: #e7e1d9;
  border-radius: 10px;
  padding: 20px;
  border: 4px solid black;
}

.tokimg {
  width: 100%;
  border-radius: 10px;
  border: 4px solid black;
  background-color: #3c7373;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.toktext {
  margin-top: 20px;
  font-family: 'boldfont';
  font-size: 25px;
  padding-left: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #873401;
  font-weight: 400;
}

.toktext h5 {
  font-weight: 400;
}

@media (max-width: 400px) {
  .Tokenomicsbox-cont {
    padding: 30px 20px 170px;
  }

  .tokimgbox {
    width: 100%;
  }
}



.sectiontitle {
  font-size: 70px;
  text-align: center;
  color: var(--contrast-color);
}

@media (max-width: 400px) {
  .sectiontitle {
    font-size: 50px;
  }
}


.animateEl.t0.t1 {
  transform: translateY(150px);
  opacity: 0;
  transition: all 500ms ease-in-out;
}

.animateEl.t0.t1.d1 {
  transition: all 500ms ease-in-out 100ms;
}

.animateEl.t0.t1.d2 {
  transition: all 500ms ease-in-out 200ms;
}

.animateEl.t0.t1.d3 {
  transition: all 500ms ease-in-out 300ms;
}

.arrows.animateEl.t0.t1.d5 {
  transform: translate(-50%, 150px);
  transition: all 500ms ease-in-out 500ms;
}


.animateEl.t0.t2 {
  transform: translateY(-150px);
  opacity: 0;
  transition: all 500ms ease-in-out;
}

.animateEl.t0.visible {
  transform: translate(0, 0) !important;
  opacity: 1 !important;
}

.animateEl.slidefromleft {
  transform: translateX(-150px);
  opacity: 0;
}

.animateEl.slidefromleft.visible {
  transform: translateX(0);
  opacity: 1;
}

.animateEl.slidefromright {
  transform: translateX(150px);
  opacity: 0;
}

.animateEl.slidefromright.visible {
  transform: translateX(0);
  opacity: 1;
}

.arrows.animateEl.t0.visible {
  transform: translate(-50%, 0) !important;
  opacity: 1 !important;
}

.meetchef-box.m1.animateEl.t0.visible {
  transform: translate(0) rotate(2deg) !important;
  opacity: 1 !important;
}

.meetchef-box.m2.animateEl.t0.visible {
  transform: translate(0) rotate(-2deg) !important;
  opacity: 1 !important;
}

.ssparator {
  width: 100%;
}

.ssparator svg {
  width: 100%;
  height: 200px;
}




#howtobuy {
  /* height: 100vh; */
  padding: 0 0 50px;
  background-color: #ff9702;
}

/* #howtobuy h2{
  font-size: 90px;
  font-family: 'Huggable';
  color: white;
  -webkit-text-stroke: 3px black;
  letter-spacing: 8px;
  width: 100%;
  text-align: center;
} */

.howtobuybox-wrapper {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
  /* overflow: auto hidden; */
  margin-top: 40px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* flex-direction: column; */
  gap: 50px;
}

.howtobuyboxcont {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 50%;
}

.howtobuybox {
  padding: 0 20px;
  width: 900px;
  max-width: 100%;
  background-color: #3c7373;
  padding: 30px 50px;
  box-shadow: -11px 13px 10px black;
  /* transform: rotateZ(358deg); */
  position: relative;
  margin-bottom: 30px;
  border-radius: 15px;
  border: 1px solid #b3b3b312;
  backdrop-filter: blur(2px);
}

#howtobuy .sectiontitle {
  color: #3c7373;
}

.howtobuybox.en {
  /* transform: rotateZ(3deg); */
  box-shadow: 11px 13px 10px black;
}

.howtobuybox h3 {
  font-size: 45px;
  letter-spacing: 3px;
  color: #f05119;
}

.howtobuybox p {
  font-size: 30px;
  letter-spacing: 3px;
  color: #ececec;
  margin-top: 10px;
}

.howtobuyimgcont {
  width: 500px;
}

.howtobuyimgcont img {
  width: 100%;
  height: auto;
}


@media (max-width: 1000px) {
  .howtobuybox-wrapper {
    flex-direction: column;
    gap: 25px;
  }
}

@media (max-width: 834px) {
  .howtobuyboxcontsvg svg {
    transform: translateY(200px);

  }

  .howtobuyboxcontsvg.rt svg {
    transform: translateY(200px) rotateY(180deg);
  }

  .howtobuyboxcont {
    width: 100%;
  }

  .howtobuyimgcont {
    height: 500px;
    width: auto;
  }

  .howtobuyimgcont img {
    width: auto;
    height: 100%;
  }
}

@media (max-width: 600px) {
  .howtobuyboxcontsvg {
    display: none;

  }
}

@media (max-width: 400px) {
  #howtobuybox-wrapper {
    padding: 0 20px;
  }
}


#image-gallery2 {
  width: 100%;
  /* padding: 50px; */
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  background-color: #393613;
}

.image-gallery2-cont {
  width: 100%;
  /* font-family: Lato, sans-serif; */
  margin: 0;
  /* margin-top: 100px; */
  padding: 1rem;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* #image-gallery2 h2{
  font-size: 90px;
  color: white;
  -webkit-text-stroke: 3px black;
  letter-spacing: 8px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
} */

#image-gallery2 img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 1000ms, scale 200ms ease-in-out;
}

#image-gallery2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 100%;
  width: 70rem;
  transition: all 500ms ease-in-out;
}

#image-gallery2 figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  transition: all 500ms ease-in-out;
}

#image-gallery2 figure::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: rgba(0, 0, 0, 0.5);
  transform-origin: center;
  opacity: 0;
  transform: scale(2);
  transition: opacity 300ms;
}

#image-gallery2 figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: white;
  font-size: 1.2rem;
  z-index: 1;
  opacity: 0;
  transition: opacity 600ms, transform 600ms;
}

#image-gallery2 a:is(:hover, :focus) figure::after {
  opacity: 1;
}

#image-gallery2 a:is(:hover, :focus) img {
  transform: scale(1.1);
}

#image-gallery2 a:is(:hover, :focus) figcaption {
  opacity: 1;
  transition: opacity 600ms;
}



footer {
  padding-top: 100px;
  background: #80c9fe;
  flex-direction: column;
  text-transform: uppercase;
  display: flex;
  color: #6f3814;
}

footer img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ftextcont {
  width: 100%;
  background: #80cf1b;
  padding: 40px 50px 30px;
}

.ftext {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-weight: 600;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 30px;
}

.ftext h1 {
  font-family: 'boldfont';
  color: var(--contrast-color);
  font-size: 50px;
  text-transform: uppercase;
  /* text-shadow: -3px 3px 0 white; */
  text-shadow: -5px 5px 0 #cbb5b5;
  -webkit-text-stroke: 1px white;
}


.discla {
  max-width: 600px;
  width: 100%;
}

.discla p {
  font-size: 13px;
  text-transform: uppercase;
  color: #fff9ed;
}

.discla p:nth-child(2) {
  margin-top: 7px;
}


#find-us {
  background: #fef7df;
  /* background: linear-gradient(to bottom, #bcb21c, #c4ba1d); */
  display: flex;
  flex-direction: column;
  /* transform: skewY(6deg); */
  /* overflow: hidden; */

}

#find-us h2 {
  transform: translateY(200px);
  opacity: 0;
  transition: all 500ms ease-in-out;
}

#find-us svg:nth-child(1) {
  transform: translateY(10px);
}

.finduscont {
  padding: 20px 50px 80px;
  overflow: hidden;
  /* background-color: #FFB59D; */
}

.finduscont h2 {
  color: var(--contrast-color);
}

.partners-cont {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  padding: 50px 0;
}

.partners {
  /* width: 100%; */
  background-color: #d4955a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 15px 20px;
  gap: 10px;
  border: 1px solid #151226;
  box-shadow: -6px 5px 0px #641515;
  transition: all 200ms linear;
}

.partners.fr,
.partners.fr {
  box-shadow: 6px 5px 0px #641515;
}

.partners-cont a {
  transition: all 300ms linear;
  transform: translateY(200px);
}

.w150des {
  width: 150px;
}

.partners:hover {
  transform: scale(1.1) rotateZ(1deg) translate(0, 0) !important;
  background-color: var(--contrast-color);
}

.partners img {
  height: 50px;
  width: auto;
}

.partners p {
  font-family: 'Montserrat';
  font-weight: bold;
  font-size: 20px;
}

.partners.scale img {
  transform: scale(1.2);
}

.partners.scale2 img {
  transform: scale(1.5);
}

.makeyourownpfp {
  background: #a4a79a;
  width: 100%;
  padding: 100px 50px 100px;
  margin-top: -5px;
}

.makeyourownpfpcont {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  gap: 40px;
}

.mypfptext h1 {
  text-align: center;
  color: #e2decd;
  display: flex;
  flex-direction: column;
  font-size: 90px;
  line-height: 90px;
  margin-bottom: 20px;
}

.mypfptext p {
  font-size: 30px;
  margin-bottom: 10px;
  text-align: center;
  color: #243d3d;
}

.mypimgs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.mypimgs .mypimg {
  border: 1px solid black;
  border-radius: 5px;
  overflow: hidden;
  width: 280px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid black;
  box-shadow: 10px 10px 0 #0000002e;
}

.mypimgs img {
  width: auto;
  height: 100%;
  object-fit: cover;
}


.mypbtncont {
  width: 100%;
  display: flex;
  justify-content: center;
}

.mypbtncont a {
  width: 100%;
  max-width: 350px;
  padding: 10px 20px;
  font-size: 25px;
  background-color: none;
  text-align: center;
  text-decoration: none;
  color: black;
  background: #3c7373;
  border-radius: 5px;
  color: white;
  border-bottom: 3px solid black;
  box-shadow: 5px 5px 0 #0000002e;
  transform: rotate(0);
  transition: all 150ms ease-in-out;
}

.mypbtncont a:hover {
  transform: rotate(5deg);
}

.meetchef {
  width: 100%;
  padding: 100px 0 70px;
  /* overflow-x: hidden; */
  background-color: #cdff00;
}

.meetchefwrap {
  width: 100%;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.meetchef-box {
  width: 100%;
  display: flex;
  max-width: 1200px;
  border: 1px solid black;
  box-shadow: inset 10px 10px #fff3, 10px 10px 0px #00000038;
  border-radius: 5px;
  transform: translateY(200px) rotate(2deg);
  transform-origin: right top;
  transition: all 500ms linear;
  overflow: hidden;
  backdrop-filter: blur(2px);
  opacity: 0;
  border-bottom: 3px solid black;
}

.meetchef-box.m2 {
  margin-top: 100px;
  transform: translateY(200px) rotate(-2deg);
  transform-origin: left top;
  box-shadow: inset -10px 10px #fff3, -10px 10px 0px #00000038;
}

.meetchef-text {
  padding: 20px;
  width: 60%;
  padding: 50px 40px;
}

.meetchef-text h3 {
  font-size: 80px;
  line-height: 80px;
  letter-spacing: 3px;
  /* color: #492205; */
  color: var(--contrast-color);
}

.meetchef-box.m2 h3 {
  font-size: 50px;
  line-height: 50px;
  font-weight: 600px;
  letter-spacing: -1px;
}

.meetchef-text p {
  font-size: 30px;
  letter-spacing: 3px;
  color: black;
  margin-top: 20px;
}

.meetchef-img {
  width: 40%;
}



.meetchef-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.meetchef-box.m2 .meetchef-img {
  width: 70%;
}

.meetchef-box.m2 .meetchef-text {
  /* padding: 20px; */
  width: 50%;
  padding: 50px 30px;
}

.meetchef-box.m2 img {
  object-position: left;
}


.menu {
  position: fixed;
  top: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 999999999;
  opacity: 1;
  transition: all 1s ease-in-out;
  padding: 0 50px;
}

.menu.hide {
  top: -100px;
  opacity: 0;
}

.menubtns {
  width: 100%;
  /* padding: 0 30px; */
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
}

/* .menubtns .menubtn:nth-child(1), .menubtns .menubtn:nth-child(3){
  width: 165px;
} */
.menubtns .menubtn.nvg {
  width: 165px;
}

.menubtns button {
  background-color: var(--contrast-color);
  color: white;
  border: none;
  font-size: 18px;
  padding: 15px 20px;
  font-weight: bold;
  font-family: 'latobold';
  border-radius: 5px;
  border: 2px solid white;
  cursor: pointer;
}

#menumodal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.356);
  backdrop-filter: blur(10px);
  transform: translateY(-100vh);
  z-index: 99999999999;
  transition: all 500ms linear;
  padding: 30px;

}

.tobescrollmenucont {
  display: flex;
  gap: 50px;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.menumodalbox {
  width: 100%;
  height: 100%;
  /* background-color: black; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.menumodalbox a {
  width: 100%;
  padding: 30px 50px;
  font-size: 30px;
  max-width: 700px;
  text-align: center;
  color: white;
  text-decoration: none;
  background: linear-gradient(177deg, #e97123, #ebac3a);
  /* height: 100%; */
  transition: all 1s linear;
}

.menumodalbox a:hover {
  background: linear-gradient(177deg, #ebac3a, #e97123);
}


#menumodal.visible {
  transform: translate(0);
}

@media (max-width: 800px) {

  /* .tobescrollmenucont{
    flex-direction: column;
    justify-content: center;
  } */
  .menumodalbox {
    height: auto;
  }

  .menumodalbox a {
    padding: 15px 50px;
  }
}

@media (max-width: 650px) {
  .menu {
    top: 60px;
  }

  .menubtns {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .menubtns a:nth-child(2) {
    order: 1;
  }
}

@media (max-width: 360px) {
  .menu {
    padding: 0 25px;
  }
}

.socials {
  width: 100%;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.socials h3 {
  font-size: 70px;
  color: white;
  text-shadow: 5px 5px 8px var(--contrast-color);
  text-align: center;
  text-transform: uppercase;
}

.socialsiconscont {
  /* width: 100%; */
  /* padding: 20px; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.socials-icon a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid var(--contrast-color);
  /* padding: 10px; */
  transition: all 200ms ease-in-out;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  background-color: var(--contrast-color);
  align-items: center;
  /* transform: translateY(100px);
  opacity: 0; */
}

.socials-icon svg {
  width: 40px;
  height: 40px;
  /* animation: goDown 1s ease-in-out; */
  transition: all 200ms ease-in-out;
}

.socials-icon a:hover {
  transform: scale(1.1);
  border: 2px solid #e9e9e9;
}

.socials-icon a:hover svg,
.socials-icon a:hover g {
  fill: #e9e9e9;
}

/* .socials-icon:nth-child(1) a{
  animation: goUp 1s ease-in-out;
}
.socials-icon:nth-child(2) a{
  animation: goUp 1s ease-in-out .2s;
}
.socials-icon:nth-child(3) a{
  animation: goUp 1s ease-in-out .4s;
}
.socials-icon:nth-child(4) a{
  animation: goUp 1s ease-in-out .6s;
} */
.socials-icon img {
  width: 50px;
  height: 50px;
}

@keyframes goDown {
  0% {
    transform: translateY(-100px);
  }

  70% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes goUp {
  0% {
    opacity: 0;
    transform: translateY(220px);
  }

  70% {
    opacity: 1;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (max-width: 800px) {
  .socials {
    padding: 0px 0 30px;
  }
}

@media (max-width: 450px) {
  .socials h3 {
    font-size: 50px;
    line-height: 55px;
  }

  .socialsiconscont {
    flex-wrap: wrap;
  }

  .menumodalbox a {
    font-size: 20px;
  }
}

@media (max-width: 350px) {
  .socials h3 {
    font-size: 50px;
    line-height: 55px;
  }

  .socialsiconscont {
    flex-wrap: wrap;
  }

  .menumodalbox a {
    padding: 15px;
  }
}

.closembtn {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  overflow: hidden;
  transition: all 300ms linear;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.closembtn img {
  height: 100%;
  transform: scale(1.2);
  object-fit: cover;
  transition: all 1s linear infinite;

}

.closembtn:hover {
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotateZ(0deg);
  }

  to {
    transform: rotateZ(360deg);
  }
}

.avbtn {
  display: flex;
  justify-content: center;
  z-index: 9999;
  padding: 5px 20px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.avbtn button {
  font-size: 25px;
  border: 2px solid white;
  background-color: var(--contrast-color);
  color: white;
  padding: 15px 20px;
  width: 100%;
  font-weight: bold;
  font-family: 'latobold';
  border-radius: 5px;
  /* transform: rotateZ(-6deg) skew(20deg); */
}

.topnav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  transition: all 1s ease-in-out;
  width: 100%;
}

.topnav.hide {
  top: -40px;
  opacity: 0;
}


.button-container-2 {
  position: relative;
  /* width: 100px; */
  height: 50px;
  overflow: hidden;
  border: 1px solid white;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  transition: 0.5s;
  letter-spacing: 1px;
  border-radius: 8px;
}

.button-container-2 button {
  width: 101%;
  height: 100%;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
  background: var(--contrast-color);
  -webkit-mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
  mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
  -webkit-mask-size: 3000% 100%;
  mask-size: 3000% 100%;
  border: none;
  color: #fff;
  cursor: pointer;
  -webkit-animation: ani2 0.7s steps(29) forwards;
  animation: ani2 0.7s steps(29) forwards;
}

.button-container-2 button:hover {
  -webkit-animation: ani 0.7s steps(29) forwards;
  animation: ani 0.7s steps(29) forwards;
}

.mas {
  position: absolute;
  color: var(--contrast-color);
  text-align: center;
  width: 101%;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  position: absolute;
  font-size: 18px;
  margin-top: 17px;
  overflow: hidden;
  font-weight: bold;
}

@-webkit-keyframes ani {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

@keyframes ani {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

@-webkit-keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }

  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}

@keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }

  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}


#chart {
  width: 100%;
  min-height: 100vh;
  padding: 100px 50px 100px;
  background: #80c9fe;
  position: relative;
  background-size: cover;
  /* overflow-x: hidden; */
}

#chart h2 {
  color: white;
}

.iframecontwrapper {
  width: 100%;
  position: relative;
  padding: 0 30px;
  height: 500px;
}

#chart .iframecont {
  position: absolute;
  width: 100%;
  max-width: 1000px;
  /* padding-bottom: 125%; */
  height: 500px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999999;
}

#chart iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0;
}

.chartcont {
  padding: 20px 10px 0px;
  border: 1px solid white;
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  border-radius: 20px 20px 0 0;
}

.cloudchart1 {
  position: absolute;
  bottom: -30px;
  left: -50px;
  z-index: 9999999;
  width: 400px;
  height: 60px;
}

.cloudchart2 {
  position: absolute;
  bottom: -40px;
  right: -50px;
  z-index: 9999999;
  width: 400px;
  height: 80px;
}

.cloudchart3 {
  position: absolute;
  top: -130px;
  left: -50px;
  z-index: 999999;
  width: 400px;
}

.cloudchart4 {
  position: absolute;
  top: -100px;
  right: -50px;
  z-index: 999999;
  width: 400px;
}



#justanimg {
  width: 100%;
}


#justanimg img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.arrows {
  position: absolute;
  top: 120px;
  left: calc(50% + 40px);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%)
}

.container {
  margin: 0 auto;
  max-width: 1540px;
  padding-left: 10px;
  padding-right: 10px
}

.buy {
  position: relative;
  padding: 0 50px 50px;
  background-color: #80c9fe;
  /* z-index: -3 */
}

.buy .sectiontitle {
  color: #baeeff;
}

.buy__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
}

.buy__content>div {
  width: 100%;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.buy__content>div>div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.buy__content>div>div img {
  max-width: 100dvw;
  /* padding-right: 50px */
}

.invalid {
  padding-left: 30px
}


.community {
  position: relative;
  background-color: #80c9fe;
}

.community_bg {
  top: -80px;
  position: absolute
}

.community_div {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.cm {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  z-index: 999
}

.xuy {
  position: relative
}

.xuy>div {
  position: absolute;
  top: 25%;
  right: 4%;
  max-width: 700px;
}

.xuy>div>h2 {
  font-family: var(--font-cutie);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--contrast-color);
  font-weight: 800;
  text-transform: uppercase
}

.xuy>div>p {
  font-family: var(--font-cutie);
  font-size: clamp(18px, 4vw, 24px);
  color: #1d364d;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 20px;
  line-height: 35px;
}

.com_photo {
  position: absolute;
  left: 3%;
  top: 8%;
  /* bottom: 50%; */
  /* transform: translateY(50%); */
  width: 40%
}

.com_bg {
  width: 100%
}

.xuy>div>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-top: 40px
}

.xuy>div>div>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 102px;
  height: 73px;
  -webkit-transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s
}

.xuy>div>div>a img {
  width: 30px;
  height: 36px
}

.xuy>div>div>a:hover {
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px)
}


/*main divs*/
.infoPane {
  width: 1200px;
  height: 3000px;
  margin: 0 auto;
  position: relative;
  background: white;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, .3);
  overflow: hidden;
  z-index: -5;
}

.cloudPane {
  margin: 0 auto;
  position: absolute;
  z-index: 99999;
  width: 100%;
  height: 400px;
  bottom: 0;
}

/*cloud position*/
#cloud1 {
  opacity: .9;
  top: 50px;
  left: 120%;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
  -moz-animation: drift 25s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  -moz-animation-delay: 8s;
  -webkit-animation: drift 25s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-delay: 8s;
  animation: drift 25s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: 8s;
  z-index: 2;
}

#circ1 p {
  color: #B3DAE6;
  font-size: 40px;
  font-family: helvetica;
  position: absolute;
  top: 5px;
  left: -10px;
}

#cloud2 {
  opacity: .8;
  top: 100px;
  left: 120%;
  -webkit-transform: scale(.7);
  -moz-transform: scale(.7);
  transform: scale(.7);
  -moz-animation: drift 50s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  -webkit-animation: drift 50s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation: drift 50s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  z-index: 1;
}

#cloud3 {
  opacity: 0;
  top: 20px;
  left: 50%;
  -webkit-transform: scale(.35);
  -moz-transform: scale(.35);
  transform: scale(.35);
  -moz-animation: driftBg 70s;
  -moz-animation-timing-function: linear;
  -webkit-animation: driftBg 70s;
  -webkit-animation-timing-function: linear;
  animation: driftBg 70s;
  animation-timing-function: linear;
  z-index: 0;
}

#cloud4 {
  opacity: 0;
  top: 200px;
  left: 20%;
  -webkit-transform: scale(.40, .45);
  -moz-transform: scale(.40, .45);
  transform: scale(.40, .45);
  -moz-animation: driftBg2 60s;
  -moz-animation-timing-function: linear;
  -webkit-animation: driftBg2 60s;
  -webkit-animation-timing-function: linear;
  animation: driftBg2 60s;
  animation-timing-function: linear;
  z-index: 0;
}

#cloud5 {
  opacity: 0;
  top: 220px;
  left: 90%;
  -webkit-transform: scale(.40);
  -moz-transform: scale(.40);
  transform: scale(.40);
  -moz-animation: driftBg3 90s;
  -moz-animation-timing-function: linear;
  -webkit-animation: driftBg3 90s;
  -webkit-animation-timing-function: linear;
  animation: driftBg3 90s;
  animation-timing-function: linear;
  z-index: 0;
}

#cloud6 {
  opacity: .7;
  top: 300px;
  left: 120%;
  -webkit-transform: scale(.40);
  -moz-transform: scale(.40);
  transform: scale(.40);
  -moz-animation: drift 110s;
  -moz-animation-timing-function: linear;
  -mox-animation-iteration-count: infinite;
  -moz-animation-delay: 11s;
  -webkit-animation: drift 110s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-delay: 11;
  animation: drift 110s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: 11;
  z-index: 0;
}

#cloud7 {
  opacity: .8;
  top: 95px;
  left: 120%;
  -webkit-transform: scale(.7);
  -moz-transform: scale(.7);
  transform: scale(.7);
  -moz-animation: drift 45s;
  -moz-animation-timing-function: linear;
  -mox-animation-iteration-count: infinite;
  -moz-animation-delay: 35s;
  -webkit-animation: drift 45s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-delay: 35s;
  animation: drift 45s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: 35s;
  z-index: 1;
}

/*individual circle position*/
#circ1 {
  z-index: 1;
}

#circ2 {
  top: 50px;
  left: -40px;
}

#circ3 {
  top: 50px;
  left: -120px;
}

#circ4 {
  top: 30px;
  left: -60px;
}

#circ5 {
  top: 100px;
  left: -150px;
}

#circ6 {
  top: 100px;
  left: 130px;
}

/*circle shadows*/
#circ1shadow,
#circ2shadow,
#circ3shadow,
#circ5shadow,
#circ6shadow {
  background-repeat: no-repeat;
  position: absolute;
  z-index: 2;
  -webkit-transform: scale(.9, -.9);
  -mox-transform: scale(.9, -.9);
  transform: scale(.9, -.9);

}

#circ1shadow {
  background: -webkit-radial-gradient(48% 64%, circle, rgba(204, 0, 0, 0) 110px, #9BBBC4 50px);
  background: -moz-radial-gradient(48% 64%, circle, rgba(204, 0, 0, 0) 110px, #9BBBC4 50px);
  background: radial-gradient(48% 64%, circle, rgba(204, 0, 0, 0) 110px, #9BBBC4 50px);
  top: 2px;
  z-index: 3;
}

#circ2shadow {
  background: -webkit-radial-gradient(58% 61%, circle, rgba(204, 0, 0, 0) 82px, #9BBBC4 50px);
  background: -moz-radial-gradient(58% 61%, circle, rgba(204, 0, 0, 0) 82px, #9BBBC4 50px);
  background: radial-gradient(58% 61%, circle, rgba(204, 0, 0, 0) 82px, #9BBBC4 50px);
  top: 0px;
}

#circ3shadow {
  background: -webkit-radial-gradient(54% 60%, circle, rgba(204, 0, 0, 0) 80px, #9BBBC4 50px);
  background: -moz-radial-gradient(54% 60%, circle, rgba(204, 0, 0, 0) 80px, #9BBBC4 50px);
  background: radial-gradient(54% 60%, circle, rgba(204, 0, 0, 0) 80px, #9BBBC4 50px);
  top: 8px;
  -webkit-transform: scale(.8, -.8);
  -moz-transform: scale(.8, -.8);
  transform: scale(.8, -.8);
}

#circ5shadow {
  background: -webkit-radial-gradient(57% 61%, circle, rgba(204, 0, 0, 0) 53px, #9BBBC4 40px);
  background: -moz-radial-gradient(57% 61%, circle, rgba(204, 0, 0, 0) 53px, #9BBBC4 40px);
  background: radial-gradient(57% 61%, circle, rgba(204, 0, 0, 0) 53px, #9BBBC4 40px);
  top: 0px;
}

#circ6shadow {
  background: -webkit-radial-gradient(44% 65%, circle, rgba(204, 0, 0, 0) 53px, #9BBBC4 40px);
  background: -moz-radial-gradient(44% 65%, circle, rgba(204, 0, 0, 0) 53px, #9BBBC4 40px);
  background: radial-gradient(44% 65%, circle, rgba(204, 0, 0, 0) 53px, #9BBBC4 40px);
  top: 0px;
}

/*style the clouds*/
.bigCloud {
  box-shadow: 10px 10px 5px 20px black inset;
  position: absolute;
}

/*style circles that make up clouds*/
.smallCircle {
  height: 100px;
  width: 100px;
  background: white;
  border-radius: 100%;
  position: absolute;
}

.middleCircle {
  height: 150px;
  width: 150px;
  background: white;
  border-radius: 100%;
  position: absolute;
}

.largeCircle {
  height: 200px;
  width: 200px;
  background: white;
  border-radius: 100%;
  position: absolute;
}

/*Circle shadows*/

/*#circShadow1 {
  background: grey;
  border-radius: 30px 20px 500px 20px;
  
  -webkit-transform: rotate(45deg);
  z-index:2;
}*/

/*stars*/
.star {
  height: 3px;
  width: 3px;
  background: white;
  position: absolute;
  z-index: 0;
}

#star1 {
  top: 20px;
  left: 20%;
}

#star1+.star {
  top: 20px;
  left: 70%;
}

#star2 {
  top: 80px;
  left: 4%;
}

#star2+.star {
  top: 80px;
  left: 75%;
}

#star3 {
  top: 150px;
  left: 3%;
}

#star3+.star {
  top: 150px;
  left: 90%;
}

#star4 {
  top: 100px;
  left: 7%;
}

#star4+.star {
  top: 100px;
  left: 78%;
}

#star5 {
  top: 130px;
  left: 13%;
}

#star5+.star {
  top: 130px;
  left: 60%;
}

#star6 {
  height: 5px;
  width: 5px;
  top: 50px;
  left: 18%;
}

#star6+.star {
  height: 5px;
  width: 5px;
  top: 50px;
  left: 92%;
}

#star7 {
  top: 35px;
  left: 27%;
}

#star7+.star {
  top: 35px;
  left: 79%;
}

#star8 {
  top: 35px;
  left: 900px;
}

#star8+.star {
  top: 35px;
  left: 88%;
}

#star9 {
  height: 4px;
  width: 4px;
  top: 50px;
  left: 45%;
}

#star9+.star {
  height: 4px;
  width: 4px;
  top: 50px;
  left: 97%;
}

#star10 {
  top: 100px;
  left: 44%;
}

#star10+.star {
  top: 100px;
  left: 83%;
}

#star11 {
  top: 75px;
  left: 37%;
}

#star11+.star {
  top: 75px;
  left: 66%;
}

@-webkit-keyframes drift {
  from {
    left: 120%;
  }

  to {
    left: -25%;
  }
}

@-moz-keyframes drift {
  from {
    left: 120%;
  }

  to {
    left: -25%;
  }
}

@keyframes drift {
  from {
    left: 120%;
  }

  to {
    left: -25%;
  }
}

@-webkit-keyframes driftBg {
  0% {
    left: 50%;
    opacity: 0
  }

  3% {
    left: 48%;
    opacity: .7
  }

  100% {
    left: -25%;
    opacity: .7;
  }
}

@-moz-keyframes driftBg {
  0% {
    left: 50%;
    opacity: 0
  }

  3% {
    left: 48%;
    opacity: .7
  }

  100% {
    left: -25%;
    opacity: .7;
  }
}

@keyframes driftBg {
  0% {
    left: 50%;
    opacity: 0
  }

  3% {
    left: 48%;
    opacity: .7
  }

  100% {
    left: -25%;
    opacity: .7;
  }
}

@-webkit-keyframes driftBg2 {
  0% {
    left: 20%;
    opacity: 0
  }

  3% {
    left: 19%;
    opacity: .7
  }

  100% {
    left: -25%;
    opacity: .7;
  }
}

@-moz-keyframes driftBg2 {
  0% {
    left: 20%;
    opacity: 0
  }

  3% {
    left: 19%;
    opacity: .7
  }

  100% {
    left: -25%;
    opacity: .7;
  }
}

@keyframes driftBg2 {
  0% {
    left: 20%;
    opacity: 0
  }

  3% {
    left: 19%;
    opacity: .7
  }

  100% {
    left: -25%;
    opacity: .7;
  }
}

@-webkit-keyframes driftBg3 {
  0% {
    left: 90%;
    opacity: 0
  }

  2% {
    left: 88%;
    opacity: .65
  }

  100% {
    left: -25%;
    opacity: .65;
  }
}

@-moz-keyframes driftBg3 {
  0% {
    left: 90%;
    opacity: 0
  }

  2% {
    left: 88%;
    opacity: .65
  }

  100% {
    left: -25%;
    opacity: .65;
  }
}

@keyframes driftBg3 {
  0% {
    left: 90%;
    opacity: 0
  }

  2% {
    left: 88%;
    opacity: .65
  }

  100% {
    left: -25%;
    opacity: .65;
  }
}

.textBody {
  height: 100%;
  width: 1200px;
  padding: 15px 15px 15px 15px;
}

.leftText {
  width: 800px;
  top: 600px;
  position: absolute;
  margin-left: 20px;

  /*border-style: solid;
  border-width: 2px;
  border-color: black;*/
}

.leftText h2 {
  font-family: "Century Gothic";
  letter-spacing: -2px;
  font-size: 40px;
  font-weight: normal;
  margin-left: 20px;
}

.leftText p {
  font-family: "arial";
  font-size: 15px;
  font-weight: normal;
  line-height: 30px;
  text-align: center;
  z-index: 5;
}

.rightText {
  width: 300px;
  height: auto;
  position: relative;
  left: 875px;
  top: 200px;
  /*border-style: solid;
  border-width: 2px;
  border-color: black;*/
}

.rightText h4 {
  font-family: "Century Gothic";
  font-size: 20px;
  font-weight: normal;
  margin-left: 20px;
}

.rightText p {
  font-family: "arial";
  font-size: 12px;
  font-weight: normal;
  line-height: 20px;
  text-align: left;
  margin: 30px;
}

.sepimg {
  width: 100%;
  background-color: #cdff00;
  margin-top: -3px;
}

.sepimg img {
  width: 100%;
}

#find-us .sepimg {
  background: none;
}


.copyca {
  width: 100%;
  position: absolute;
  top: 65px;
  padding: 0 20px;
  /* z-index: 9999; */
}

.copycacont {
  transform: rotate(357deg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 20px;
  max-width: 450px;
  width: 100%;
  width: auto;
  margin: 0 auto;
  padding: 7px 10px;
  gap: 15px;
  background-color: #e7e1d9;
  border: 4px solid black;
}

.copycacontbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
  font-family: 'boldfont';
  border-radius: 20px;
  background: #3c7373;
  color: white;
  font-size: 18px;
  font-weight: 400;
  border: none;
  width: 195px;
  cursor: pointer;
}

.copycacontbtn svg {
  width: 35px;
  fill: white;
}

.copycaddres {
  padding: 0 10px;
  font-size: 18px;
  font-family: 'boldfont';
  color: #873401;
  font-weight: 400;
  word-break: break-word;
  text-align: center;
}





/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999999999999;
  overflow: hidden;
  background-color: #f9b00b;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid white;
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

#preloader .loadimg {
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  background-color: #3c7373;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
}

#preloader img {
  width: auto;
  height: 200px;
}



@keyframes animate-preloader {
  0% {
    width: 200px;
    height: 200px;
    top: calc(50% - 145px);
    /* left: calc(50% - 5px); */
    opacity: 1;
  }

  100% {
    width: 250px;
    height: 250px;
    top: calc(50% - 170px);
    /* left: calc(50% - 36px); */
    opacity: 0;
  }
}

.loader {
  width: fit-content;
  font-weight: bold;
  font-family: monospace;
  font-size: 30px;
  background: radial-gradient(circle closest-side, #3c7373 94%, #3c737300) right/calc(200% - 1em) 100%;
  animation: l24 1s infinite alternate linear;
}

.loader::before {
  content: "Loading...";
  line-height: 1em;
  color: #0000;
  background: inherit;
  background-image: radial-gradient(circle closest-side, #fff 94%, #3c7373);
  -webkit-background-clip: text;
  background-clip: text;
}

@keyframes l24 {
  100% {
    background-position: left
  }
}

.partners__text {
  color: #fff;
  font-family: 'Roboto', sans-serif !important;
}

.partners-cont a {
  text-decoration: none;
}