@import url(/savecss/variables.css);
@import url("https://fonts.googleapis.com/css2?family=Gowun+Batang:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gowun Batang", serif;
  font-weight: 400;
  font-style: normal;
}

html {
  cursor: url("/images/cursor.svg"), default;
}

body {
  overflow-x: hidden;
  background-color: var(--background-color);
  transition: background-color 0.3s, color 0.3s;
}

#preloader {
  background: #000 url("/images/loader-black.gif") no-repeat center center;
  background-size: 15%;
  z-index: 1;
  position: fixed;
  height: 100vh;
  width: 100%;
}

header {
  min-height: 25vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  height: 4vh;
  background: var(--background-color);
}

.top-bar h1 {
  margin-top: 5vh;
  font-size: 2.4rem;
  position: absolute;
  color: var(--text-color);
  left: 0;
  right: 0;
}

#icon {
  color: var(--text-color);
  font-size: 2rem;
  position: absolute;
  top: 2vh;
  right: 3vh;
  cursor: url("/images/click.svg"), pointer;
}

#icon:hover {
  color: #f6b01a;
}

/*Navbar*/
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 999;
  top: 15%;
  right: 0;
  background-color: var(--header-background);
  width: 100%;
  height: 7vh;
}

.current {
  color: #f6b01a;
  font-size: 1.1rem;
}

.circle {
  position: absolute;
  z-index: -999;
  top: 10vh;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-image);
  height: 110px;
  width: 220px;
  border-radius: 150px 150px 0 0;
}

.navbar .links {
  margin: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding-right: 9%;
  color: var(--text-color);
}

li {
  list-style: none;
}

a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  cursor: url("/images/click.svg"), pointer;
}

a:hover {
  color: #f6b01a;
}

.navbar .toggle_btn {
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.action_btn {
  cursor: url("/images/click.svg"), pointer;
  font-size: 0.8rem;
  background-color: var(--background-color);
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  margin-right: 3rem;
}

.action_btn:hover {
  color: #f6b01a;
  scale: 1.05;
}

/* Logo */
.logo {
  margin-left: 1.5rem;
}

.logo img {
  height: 50%;
  width: 50%;
}

/*Mobile Menu*/
.dropdown_menu {
  display: none;
  position: absolute;
  right: 1rem;
  width: 100%;
  height: 0;
  background: var(--mobile-menu-color);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dropdown_menu.open {
  margin: 0 0 0 0;
  height: auto;
}

.dropdown_menu li {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown_menu a {
  font-size: 1rem;
  margin-top: 1vh;
}

.dropdown_menu .current {
  color: #f6b01a;
  font-size: 1.1rem;
}

.dropdown_menu .action_btn {
  gap: 0.5rem;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*Responsive Design*/
@media screen and (min-width: 1800px) {
  header {
    min-height: 22vh;
  }
  .navbar {
    top: 13%;
    height: 6vh;
  }
}
@media screen and (max-width: 1300px) {
  header {
    min-height: 27vh;
  }
}
@media screen and (max-width: 992px) {
  .navbar {
    top: 15%;
  }
  .logo {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .toggle_btn i {
    margin-right: 0.5rem;
  }
  .navbar .links,
  .navbar .action_btn {
    display: none;
  }
  .navbar .toggle_btn {
    display: block;
  }
  .dropdown_menu.open {
    left: 0;
    right: 0;
    z-index: 100;
    display: block;
    top: 25%;
  }
  .dropdown_menu a {
    color: var(--text-color);
    font-weight: 400;
  }
  .dropdown_menu a:hover {
    color: var(--hover-color);
  }
  .action_btn {
    margin-right: 0;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .navbar {
    width: 100%;
    top: 15%;
  }
  .logo {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .toggle_btn i {
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 480px) {
  header {
    height: 29vh;
  }
  .top-bar h1 {
    font-size: 2rem;
  }
  .navbar {
    top: 17vh;
  }
  .circle {
    top: 12vh;
  }
  #icon {
    top: 10%;
  }
  .dropdown_menu.open {
    top: 27.3%;
  }
}
/*Text Section*/
.main_article {
  display: flex;
  background-image: url(/images/imageedit_11_2121274814.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  height: auto;
  margin-bottom: 5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.main_article .text-content {
  width: 29vw;
  left: 0;
  right: 0;
}
.main_article p {
  text-align: center;
  margin-top: 1.5vh;
  margin-bottom: 1.5vh;
  color: var(--text-color);
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .text-content {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .main_article {
    width: 100%;
  }
  .main_article .text-content {
    width: 75%;
  }
}
main {
  min-height: 25vh;
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-self: center;
  justify-items: center;
  text-align: center;
}
main h1, main p {
  text-align: center;
  color: var(--text-color);
  margin-bottom: 30px;
}

.box {
  width: 100%;
}

.dark-theme .box svg {
  filter: invert(100%);
}

@media screen and (max-width: 992px) {
  main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-self: center;
    justify-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .box {
    width: 100vw;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 480px) {
  main {
    justify-content: center;
    font-size: 0.8rem;
  }
  .box {
    width: 60vw;
    margin-bottom: 2vh;
  }
  .box svg {
    width: 50px;
    height: 50px;
  }
}
/* Slideshow container */
.slideshow-container {
  max-width: 900px;
  position: relative;
  margin: auto;
  margin-top: 40px;
}
.slideshow-container .mySlides {
  display: none;
}
.slideshow-container img {
  width: 100%;
  height: 100%;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 28%;
  width: auto;
  padding: 16px;
  font-weight: bold;
  font-size: 50px;
  transition: 0.6s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: var(--caption-color);
}

.prev {
  left: -80px;
}

.next {
  right: -80px;
}

/* Caption text */
.text {
  color: var(--caption-color);
  text-align: center;
  font-size: 1.1rem;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media screen and (max-width: 1100px) {
  .slideshow-container {
    margin-top: 0;
  }
  .text {
    font-weight: 500;
    font-size: 1.5rem;
    top: 290px;
  }
  .prev, .next {
    display: none;
  }
}
@media screen and (max-width: 915px) {
  .slideshow-container {
    margin-top: 20px;
  }
  .mySlides {
    margin: 0 auto;
    width: 90vw;
    align-items: center;
    justify-content: center;
    border-radius: 10%;
  }
  .text {
    font-size: 1rem;
  }
}
.linkscontainer {
  background-color: var(--background-color);
  padding: 70px 30px 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.linkscontainer .row {
  display: flex;
  padding-bottom: 3rem;
}
.linkscontainer .social-links {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
}
.linkscontainer .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: var(--background-links-color);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: var(--text-icons-color);
  transition: all 0.5s ease;
}
.linkscontainer .social-links a:hover {
  color: var(--icons-color);
  background-color: var(--hover-color2);
}

.footer__container p {
  left: 0;
  right: 0;
  font-size: 1rem;
  color: var(--text-color);
}

.designer {
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  margin: 0px 5px;
}

@media screen and (max-width: 480px) {
  .footer__container p {
    font-size: 0.8rem;
  }
}
/*Back-to-top button*/
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: var(--text-color);
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: none;
  font-size: 24px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}
.back-to-top:hover {
  background-color: var(--hover-color2);
  color: var(--text-icons-color);
}

@media screen and (max-width: 480px) {
  .back-to-top {
    box-shadow: none;
    right: 5px;
    bottom: 10px;
  }
}/*# sourceMappingURL=index.css.map */