/* @import url("./global.css"); */

/* font family links */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kings&display=swap");

/* locomotive style */

/*! locomotive-scroll v4.1.3 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction="horizontal"] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction="horizontal"] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}
.c-scrollbar:hover {
  transform: scaleX(1.45);
}
.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
  opacity: 1;
}
[data-scroll-direction="horizontal"] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}
[data-scroll-direction="horizontal"] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
}
.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
[data-scroll-direction="horizontal"] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

/* locomotive scroll manual style */

.c-scrollbar {
  z-index: 99;
}

/* roots */

:root {
  --h1-font: 4rem;
  --h2-font: 3rem;
  --h3-font: 2rem;
  --mini-p-font: 1rem;
  --sub-title-font: 1.5rem;
  --mini-title-font: 2.5rem;
  --p-font: 1.2rem;
  --a-font: 1rem;
  --black-color: #000000;
  --white-color: #ffffff;
  --bg-color: #f3f0ff;
  --theme-color: #4d3add;
  --light-theme-color: #562af0;
  --text-color: #0a0535;
  --second-text-color: #2d3958;
}

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

::after,
::before {
  box-sizing: border-box;
  transition: all 0.5s ease;
}

ul {
  list-style: none;
}

a,
button,
input {
  position: relative;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.5s ease;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
mark {
  background: #ff0;
  color: #000;
}
code,
kbd,
pre,
samp {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
}
q {
  quotes: "\201C""\201D""\2018""\2019";
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  overscroll-behavior: none;
  color: var(--black-color);
}

/* custom cursor */

@media (any-pointer: fine) {
  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    pointer-events: none;
    opacity: 0;
    z-index: 99;
  }
  .cursor__inner {
    fill: transparent;
    stroke: var(--theme-color);
    stroke-width: 2px;
  }
}

/* custom cursor end */

/* scrollbar start */

::-webkit-scrollbar {
  display: none;
}

/* scrollbar end */

/* scroll container and wrapper */

.wrapper {
  width: 100%;
  height: 100%;
}

/* utilities classes */

.container {
  max-width: 81.25rem;
  width: 100%;
  margin: 0 auto;
}

.section {
  min-height: 100vh;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text__box {
  position: relative;
  overflow: hidden;
  pointer-events: none;
  transform-origin: bottom;
}

.img__box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
}

a,
button {
  color: var(--black-color);
}

/* nav start */

.nav {
  width: 100%;
  height: fit-content;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 19;
  padding: 1rem 0;
  background-color: var(--white-color);
  transform: translate3d(0, 0, 0);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease;
}

.nav[data-direction="down"] {
  transform: translate3d(0, -100%, 0);
}

.nav .nav__container {
  max-width: 1300px;
  width: 100%;
  height: 100%;
  position: relative;
}

.nav .nav__container .logo {
  width: fit-content;
  height: fit-content;
}

.nav .nav__container .logo img {
  width: 200px;
}

.nav .nav__container .nav__links {
  width: fit-content;
}

.nav .nav__container .nav__links .nav__btn {
  font-size: var(--a-font);
  line-height: 1.5;
  font-weight: 400;
  padding-bottom: 0.2rem;
  margin: 0 3rem;
  cursor: pointer;
}

.nav .nav__container .nav__links .nav__btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--theme-color);
  bottom: 0;
  left: 0;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.nav .nav__container .nav__links .nav__btn:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}

.nav .nav__container .nav__links .nav__btn:hover {
  color: var(--theme-color);
}

.nav .nav__container .nav__main__btn {
  width: fit-content;
  height: fit-content;
}

.nav .nav__container .nav__main__btn .contact__btn {
  font-size: var(--a-font);
  font-weight: 500;
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  border-radius: 10px;
  padding: 0.7rem 1.6rem;
}

.nav .nav__container .nav__main__btn .contact__btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

/* hamburger start */

.hamb__btn {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 50%;
  padding: 0 0.2rem;
  position: fixed;
  top: 0.4rem;
  right: 1rem;
  z-index: 200;
  transition: all 0.5s ease;
  cursor: pointer;
  display: none;
}

.hamb__btn[data-direction="down"] {
  transform: translate3d(0, -100%, 0);
  opacity: 0;
}

.hamb__btn.active[data-direction="down"] {
  transform: unset;
  opacity: 1;
}

.hamb__btn div {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  transition: all 0.5s ease;
  background-color: var(--theme-color);
}

.hamb__btn.active div {
  background-color: var(--white-color);
}

.hamb__menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 199;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background-color: var(--theme-color);
  padding: 2rem;
  transition: all 0.5s ease;
  transform: translateX(100%);
  will-change: transform;
}

.hamb__menu .hamb__text__box {
  width: 100%;
  height: fit-content;
  position: relative;
  padding: 4rem 0;
  border-top: 1px solid var(--white-color);
  will-change: transform;
  transform: scaleX(0);
  transform-origin: right;
}

.hamb__menu .hamb__text__box:last-child {
  border-bottom: 1px solid var(--white-color);
}

.hamb__menu.active {
  transform: translateX(0);
}

.hamb__menu a {
  font-size: var(--p-font);
  font-weight: 500;
  color: var(--white-color);
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

/* hamburger end */

/* nav end */

/* banner start */

.banner__section {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.banner__section .container.hero-box {
  box-shadow: 0 0 10px #fafafa;
  width: 100%;
  height: 100%;
  max-height: 43.75rem;
  min-height: 43.75rem;
  border-radius: 10px;
  background: linear-gradient(102.38deg, #fff2db 0%, #ebe8fd 100%);
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.banner__section .container .inner__container {
  width: fit-content;
  height: fit-content;
  position: relative;
  z-index: 5;
}

.banner__section .container h1.title.hero-title {
  font-size: var(--h1-font);
  font-weight: 700;
  color: var(--light-theme-color);
}

.banner__section .container h2.sub-title {
  font-size: var(--sub-title-font);
  font-weight: 600;
  color: var(--second-text-color);
  margin-top: 1rem;
}

.banner__section .container ul {
  list-style: unset;
  margin: 1rem 0 2rem 0;
  padding-left: 1rem;
}

.banner__section .container ul li {
  padding: 0.4rem 0;
}

.banner__section .container p {
  font-size: var(--p-font);
  font-weight: 400;
  color: var(--second-text-color);
}

.banner__section .container a.banner__btn {
  border-radius: 12px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.08), 0px 2px 10px rgba(0, 0, 0, 0.08),
    0px 16px 20px rgba(0, 0, 0, 0.16);
  border: 4px solid rgba(255, 255, 255, 0.8);
  background-color: var(--theme-color);
  color: var(--white-color);
  display: block;
  font-size: var(--a-font);
  font-weight: 500;
  padding: 1rem 2rem;
  width: 11.25rem;
  height: 3.75rem;
}

.banner__section .container a:hover {
  box-shadow: none;
  transform: scale(0.9);
}

.banner__section .container .bg__comp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner__section .container .bg__comp figure {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  transform-origin: center;
  transition: all 0.8s linear;
}

.banner__section .container .bg__comp figure img {
  position: absolute;
}

.banner__section .container .bg__comp figure.spaceman img {
  right: 0;
  top: 20%;
  /* transform: translateY(-50%); */
  animation: components 4s ease-in-out infinite;
  animation-delay: 0.2s;
}

.banner__section .container .bg__comp figure.rocket img {
  animation: components 4s ease-in-out infinite;
  animation-delay: 0.2s;
  top: 0;
  left: 0;
}

.banner__section .container .bg__comp figure.cube img {
  animation: components 4s ease-in-out infinite;
  animation-delay: 0.4s;
  bottom: 0;
  left: 5rem;
}

@keyframes components {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(1rem);
  }
}
/* banner end */

/* about start */

.about__section {
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  max-height: 100vh;
}

.about__section .container {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 8;
}

.about__section .container .text__box h1 {
  font-size: var(--h2-font);
  font-weight: 700;
  text-align: center;
  color: var(--text-color);
}

.about__section .container .inner__container {
  width: 100%;
  height: 100%;
  align-items: flex-start;
  padding-top: 5rem;
  max-width: 1100px;
}

.about__section .container .inner__container .about__img,
.about__section .container .inner__container .about__content {
  flex: 0 0 50%;
  max-width: 50%;
  width: 100%;
  position: relative;
}

.about__section .container .inner__container .about__content .text__box {
  margin: 1.5rem 0 0 0;
}

.about__section .container .inner__container .about__content p {
  font-size: var(--p-font);
  font-weight: 500;
  width: 75%;
  line-height: 1.6;
}

.about__section .container .inner__container .about__content p span {
  color: var(--theme-color);
  font-weight: 700;
}

.about__section .container .inner__container .about__img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__section .container .inner__container .about__img figure {
  width: 90%;
  height: 90%;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--white-color);
  padding: 1rem;
  box-shadow: 0 0 10px #e1e1e1;
}

.about__section .container .inner__container .about__img figure img {
  width: 100%;
  height: auto;
}

.about__section .container .inner__container .about__img .com {
  position: absolute;
  top: -8.2rem;
  left: 50%;
  height: fit-content;
  width: fit-content;
  box-shadow: none;
  background-color: transparent;
  z-index: 8;
  transform: scale(1.1) translateX(-50%);
  transform-origin: center;
}

.about__section .container .bg__component {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.about__section .container .bg__component figure {
  position: absolute;
  top: 0;
  left: 0;
}

.about__section .container .bg__component figure img {
  position: absolute;
}

.about__section .container .bg__component figure.rocket__two img {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about__section .container .bg__component figure.ball img {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  animation: components 5s ease-in-out infinite;
}

.about__section .container .bg__component figure.circle img {
  bottom: 10%;
  left: 0;
  transform: translateY(10%);
  animation-delay: 0.5s;
  animation: components 3s ease-in-out infinite;
}

.about__section .container .bg__component figure.saturan img {
  top: 15%;
  left: 0;
  transform: translateY(10%);
  animation-delay: 0.5s;
  animation: components 3s ease-in-out infinite;
}

/* about end */

/* info */

.info__section {
  width: 100%;
  height: 100%;
}

.info__section .container {
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 3rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info__section .container .big__title h1 {
  font-size: var(--h2-font);
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
  line-height: 2;
}

.info__section .container .inner__container.skills-container {
  width: 100%;
  min-height: 32.5rem;
  height: fit-content;
  align-items: stretch;
  background-color: #f6f4ff;
  padding: 2.5rem;
  border-radius: 2.5rem;
  border: 1px solid #ebe8fd;
  margin-top: 1rem;
  box-shadow: inset 0 0 10px #d0d0d0;
}

.info__section .container .inner__container .left__side,
.info__section .container .inner__container .right__side {
  flex: 0 0 45%;
  max-width: 45%;
  width: 100%;
  background: linear-gradient(102.38deg, #fff2db 0%, #ebe8fd 100%);
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 20px;
  border: 10px solid var(--white-color);
  box-shadow: 0 0 10px #dadada;
  overflow: hidden;
}

.info__section .container .side h1.title {
  font-size: var(--sub-title-font);
  font-weight: 700;
}

.info__section .container .side p {
  font-size: var(--p-font);
  font-weight: 500;
  margin-top: 1rem;
}

.info__section .container .side ul.list {
  margin-top: 1rem;
}

.info__section .container .left__side ul.list {
  display: flex;
  justify-content: space-between;
  max-width: 80%;
  margin: 0 auto;
  margin-top: 10px;
}

.info__section .container .side ul.list ul.list-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.info__section .container .side ul.list ul.list-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.info__section .container .right__side ul.list {
  display: flex;
  justify-content: space-between;
  max-width: 80%;
  margin: 0 auto;
  margin-top: 10px;
}

.info__section .container .side ul.list li span {
  margin-left: 10px;
}

.info__section .container .side ul li {
  padding: 0.4rem 0;
}

.info__section .container figure.com {
  position: absolute;
  width: fit-content;
  height: fit-content;
  right: 40%;
}

.info__section .container figure.com__two {
  position: absolute;
  width: fit-content;
  height: fit-content;
  top: -7%;
  right: -30%;
  z-index: 1000;
}

.info__section .container figure.com__two img {
  width: 850px;
  max-width: 850px;
}

/* info */

/*  project */

.project__section {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  background-color: var(--bg-color);
}

.project__section .container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.project__section .container .big__title h1 {
  font-size: var(--h2-font);
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
}

.project__section .container .inner__container {
  width: 100%;
  height: fit-content;
  padding: 2rem 0;
  align-items: flex-start;
  margin-top: 1rem;
}

.project__section .container .inner__container a.work__box {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 20px;
  background-color: var(--white-color);
  flex: 0 0 30%;
}

.project__section .container .inner__container a.work__box .text__box {
  text-align: center;
}

.project__section .container .inner__container a.work__box .text__box h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
}

.project__section .container .inner__container a.work__box figure {
  margin: 30px 0;
}

.project__section .container .inner__container a.work__box .work__content p {
  font-size: 15px;
  font-weight: 500;
  color: var(--black-color);
}

.project__section .container .inner__container a.work__box:hover {
  box-shadow: inset 0 0 10px #c4c4c4;
}

.project__section .container .inner__container a.work__box .show-more-btn {
  padding: 10px 0;
  color: var(--light-theme-color);
  font-weight: 600;
}

/*  project */

/* contact */

.contact__section {
  width: 100%;
  height: 100%;
}

.contact__section .container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.contact__section .container .inner__container {
  position: relative;
  width: 100%;
  /* height: 60vh; */
  min-height: 31.25rem;
  max-height: 31.25rem;
  background: linear-gradient(102.38deg, #fff2db 0%, #ebe8fd 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact__section .container .inner__container h1.title {
  font-size: var(--h2-font);
  font-weight: 700;
  color: var(--text-color);
}

.contact__section .container .inner__container p {
  font-size: var(--p-font);
  font-weight: 500;
  line-height: 1.6;
  margin: 1rem 0 0 0;
  color: #2d3958;
}

.contact__section .container .inner__container p.paragraph {
  max-width: 90%;
}

.contact__section .container .inner__container p:nth-of-type(2) {
  margin: 0 0 1rem 0;
}

.contact__section .container .inner__container .text__box {
  margin-bottom: 1rem;
  width: 70%;
  position: relative;
  z-index: 10;
}

.contact__section .container .inner__container a.sayhi__btn {
  font-size: var(--a-font);
  font-weight: 600;
  color: var(--white-color);
  background-color: var(--theme-color);
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.08), 0px 2px 10px rgba(0, 0, 0, 0.08),
    0px 16px 20px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  padding: 20px 80px;
  position: relative;
  z-index: 10;
  margin-top: 2rem;
}

.contact__section .container .inner__container a:hover {
  transform: scale(0.9);
  box-shadow: none;
}

.contact__section .container .inner__container .component {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact__section .container .inner__container .component figure {
  width: fit-content;
  height: fit-content;
  position: absolute;
}

.contact__section .container .inner__container .component figure.com {
  top: -6.8rem;
  left: 50%;
  transform: translateX(-50%);
}

.contact__section .container .inner__container .component figure.com__2 {
  top: -7rem;
  right: 1rem;
  animation: components 6s ease-in-out infinite;
}

.contact__section .container .inner__container .component figure.com__3 {
  bottom: 10%;
  transform: translateY(10%);
  left: 0;
}

.contact__section .container .inner__container .component figure.com__4 {
  top: 0;
  left: 8%;
}

.contact__section .container .inner__container div.getin__message-container {
  text-align: left;
}

.contact__section .container .inner__container p.getin__message {
  max-width: 40.625rem;
  margin: 0 auto;
}

.contact__section .container .inner__container p.follow-me {
  max-width: 40.625rem;
  margin: 0 auto;
}

.contact__section .container .inner__container .follow-me__container {
  text-align: left;
}

/* contact */

/* footer */
footer {
  width: 100%;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(91.9deg, #c9ffff 0.11%, #ffe4f9 100%);
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

footer .footer-links {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 1rem;
}

footer .footer-links a img {
  width: 4rem;
  transition: all 0.5s ease;
}

footer .footer-links a:hover img {
  transform: scale(1.2);
}

footer h3 {
  margin: 1rem 0;
}

footer p.mini-title {
  margin-top: 1rem;
  font-weight: 500;
}

footer .img__box {
  position: absolute;
  width: fit-content;
  height: fit-content;
}

footer .balloon {
  top: -50%;
  animation: components 3s ease-in-out infinite;
}

footer .balloon img {
  width: 14rem;
}

/* footer */

/* loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.loader__one {
  z-index: 1000;
  background-color: var(--theme-color);
}

.loader__two {
  z-index: 999;
  background-color: #7700ff;
}

/* media quarry start */

@media only screen and (max-width: 1400px) {
  .info__section .container figure.com {
    display: none;
  }
}

@media only screen and (max-width: 1320px) {
  .container {
    max-width: 1100px;
  }
  .info__section .container figure.com__two {
    right: -35%;
    top: -9%;
  }

  .info__section .container .left__side ul.list,
  .info__section .container .right__side ul.list {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1130px) {
  .container {
    max-width: 900px;
  }

  .nav .nav__container .nav__links .nav__btn {
    margin: 0;
    margin-right: 1rem;
  }

  .nav .nav__container .nav__links .nav__btn:last-child {
    margin-right: 0;
  }

  .banner__section .container .bg__comp figure.spaceman img {
    top: 10%;
    right: -7%;
    transform: translateY(-10%);
  }
  .about__section .container .inner__container .about__content p {
    width: 90%;
  }
  .project__section {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .project__section .container .inner__container {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .project__section .container .inner__container a.work__box {
    flex: 0 0 45%;
    max-width: 45%;
    margin: 0.5rem 0;
  }
  .project__section .container .inner__container a.work__box:last-child {
    margin: 0 auto;
    margin-top: 1rem;
  }
  .project__section,
  .project__section .container {
    max-height: fit-content;
    height: fit-content;
  }

  .info__section .container .inner__container .left__side,
  .info__section .container .inner__container .right__side {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .info__section .container .inner__container .left__side {
    margin-right: 10px;
  }

  .info__section .container figure.com__two {
    display: none;
  }

  .info__section .container .big__title h1 {
    font-size: 3rem;
    line-height: normal;
  }
}

@media only screen and (max-width: 920px) {
  .container {
    max-width: 800px;
  }
  .nav .nav__container .nav__links {
    display: none;
  }
  .nav .nav__container .nav__main__btn {
    display: none;
  }
  .hamb__btn {
    display: flex;
  }
  .cursor {
    display: none;
  }
}

@media only screen and (max-width: 850px) {
  .banner__section .container .bg__comp figure.spaceman img {
    width: 18rem;
  }
  .banner__section .container .bg__comp figure.cube img {
    width: 12rem;
  }
  .banner__section .container .bg__comp figure.rocket img {
    width: 15rem;
  }
  .container {
    max-width: 100%;
  }
  .about__section .container .inner__container {
    flex-wrap: wrap-reverse;
    margin-top: 4rem;
  }
  .about__section .container .inner__container .about__img,
  .about__section .container .inner__container .about__content {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .about__section {
    max-height: fit-content;
  }
  .about__section .container .inner__container .about__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .about__section .container .inner__container .about__content .text__box {
    width: 80%;
  }
  .about__section .container .inner__container .about__content p {
    width: 100%;
  }
  .contact__section .container {
    margin: 0 !important;
  }
  .contact__section .container .inner__container {
    border-radius: 0;
  }
  .contact__section .container .inner__container .component figure.com__4 {
    right: 0;
    top: 0;
    left: 0;
  }
  .contact__section .container .inner__container .text__box {
    width: 85%;
  }

  .info__section .container figure.com__two {
    top: -2rem;
    right: -22rem;
  }

  .info__section .container .inner__container {
    flex-wrap: wrap;
  }
  .info__section .container .inner__container .left__side,
  .info__section .container .inner__container .right__side {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 1rem 0;
  }
  .info__section .container {
    max-height: fit-content;
    height: fit-content;
  }
}

@media only screen and (max-width: 750px) {
  .project__section .container .inner__container {
    flex-direction: column;
    align-items: center;
  }

  .project__section .container .inner__container a.work__box {
    max-width: 90%;
    align-items: center;
  }
}

@media only screen and (max-width: 700px) {
  .project__section .container .inner__container .work__box {
    flex: 0 0 25rem;
    max-width: 25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  :root {
    --p-font: 1rem;
    --sub-title-font: 1.3rem;
    --h1-font: 3rem;
    --h2-font: 2rem;
    --h3-font: 1.5rem;
  }
  .info__section .container figure.com__two {
    display: none;
  }

  .info__section {
    margin-bottom: 3rem;
  }
}

@media only screen and (max-width: 580px) {
  .banner__section .container {
    padding: 0 1rem;
  }
  .contact__section .container .inner__container .component figure.com__2 img {
    width: 8rem;
  }
  .contact__section .container .inner__container .component figure.com__2 {
    top: -5rem;
  }
  .contact__section .container .inner__container .component figure.com__3 img {
    width: 8rem;
  }
  .banner__section .container .bg__comp {
    display: none;
  }
}

@media only screen and (max-width: 500px) {
  /* body {
    position: relative;
  } */

  .project__section .container .inner__container .work__box {
    flex: 0 0 100%;
    max-width: 100%;
  }
  footer .footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hamb__menu {
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;
  }

  .about__section .container .inner__container .about__img .com {
    display: none;
  }

  .about__section .container .bg__component {
    display: none;
  }

  .about__section .container .inner__container {
    margin-top: 0;
    padding: 10px 0;
  }
  .info__section .container .big__title h1 {
    font-size: 2rem;
  }

  .contact__section .container .inner__container .component {
    display: none;
  }

  .contact__section .container {
    padding: 10px 0;
  }
}

/* media quarry end */

/* import main stylesheet */
/* @import url("./global.css"); */

.certificate-banner .hero-box {
  display: flex;
  flex-direction: column;
}

.certificate-banner .hero-box .bg__comp .one img {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  animation-delay: 0.5s;
  animation: components 3s ease-in-out infinite;
}

.certificate-banner .hero-box .bg__comp .trophy img {
  bottom: 5%;
  left: 10%;
  animation-delay: 0.5s;
  animation: components 3s ease-in-out infinite;
}

.certificate-banner .hero-box .bg__comp .message img {
  top: 5%;
  left: 10%;
  animation-delay: 0.5s;
  animation: components 3s ease-in-out infinite;
}

.certificate-banner .hero-box .banner__btn {
  margin-top: 5%;
}
/* grade-8 section start */

div#first-container {
  margin-top: 5rem;
}

div.section-wrapper {
  padding: 5rem;
}

div.section-wrapper.gray-container {
  background-color: #f3f0ff;
}

.section__intro {
  text-align: center;
  margin-bottom: 4rem;
}

.section__intro .section__title {
  font-size: 3rem;
  font-weight: 600;
  color: #4d3add;
}

.section__intro .section__subtitle {
  font-size: 1.5rem;
  color: #0a0535;
  margin: 10px 0 1rem 0;
}

.section__intro .section__text {
  color: var(--light-theme-color);
  font-size: 1.2rem;
  font-weight: 600;
  max-width: 50%;
  margin: 0 auto;
  letter-spacing: 1px;
}

.certi-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

div.section-wrapper .certi-card .certi-content {
  order: 2;
  flex: 0 0 50%;
  max-width: 50%;
}

div.section-wrapper .certi-card .certi-img {
  order: 1;
  flex: 0 0 50%;
  max-width: 50%;
}

div.section-wrapper.gray-container .certi-card .certi-content {
  order: 1;
  flex: 0 0 50%;
  max-width: 50%;
}

div.section-wrapper.gray-container .certi-card .certi-img {
  order: 2;
  flex: 0 0 50%;
  max-width: 50%;
}

.certi-card .certi-content {
  padding: 2rem;
}

.certi-card .certi-img img {
  max-width: 600px;
  height: auto;
}

.certi-title {
  font-size: 2rem;
  font-weight: 600;
  color: #562af0;
  margin-bottom: 10px;
}

.certi-type {
  color: brown;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.certi-text {
  letter-spacing: 1px;
  max-width: 90%;
}

.certi-card.dual-layout {
  display: flex;
  flex-direction: column !important;
}

.certi-card.dual-layout .certi-content {
  text-align: center;
}

.certi-card.dual-layout .img-container {
  display: flex;
}

.certi-card.dual-layout .img-container :last-child {
  margin-left: 15px;
}

.certi-card#nursery {
  display: flex;
  flex-direction: column;
}

.certi-card#nursery .certi-content {
  text-align: center;
}

.certi-card#nursery .certi-img {
  margin-bottom: 1.2rem;
}

.big__span {
  padding: 2rem 0;
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .certi-card .certi-img img {
    max-width: 500px;
  }
}

@media only screen and (max-width: 950px) {
  .certi-card .certi-img img {
    max-width: 400px;
  }

  .certi-title {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 850px) {
  div.section-wrapper {
    padding: 0;
    padding: 2rem 0;
  }

  .certi-card {
    flex-direction: column;
    align-items: center;
  }

  .certi-card .certi-content {
    text-align: center;
    order: 2;
  }

  .certi-card .certi-img {
    order: 1;
  }

  .certi-card.dual-layout .img-container {
    flex-direction: column;
  }

  .certi-card.dual-layout .img-container :last-child {
    margin: 0;
    margin-top: 1rem;
  }
}


/*# sourceMappingURL=/certi.29306da0.css.map */