@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);
  cursor: url("/images/click.svg"), pointer;
  font-size: 2rem;
  position: absolute;
  top: 2vh;
  right: 3vh;
}

#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: 20%;
  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: 24.7%;
  }
  .dropdown_menu a {
    color: var(--text-color);
    font-weight: 400;
  }
  .dropdown_menu a:hover {
    color: var(--hover-color);
  }
  .dropdown_menu .action_btn:hover {
    color: var(--text-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%;
  }
  .dropdown_menu .action_btn {
    width: 40%;
  }
}
/*Icon Bar*/
.icon-bar {
  position: fixed;
  left: 2vh;
  top: 50%;
  transform: rotate(270deg);
  transform-origin: left center;
}

.icon-bar p {
  background-color: var(--icon-bar);
  border: 1px solid black;
  display: block;
  text-align: center;
  padding: 2vh;
  transition: all 0.2s ease;
  color: white;
  font-size: 1.2rem;
}

.icon-bar p:hover {
  transform: scale(1.3);
  background-color: #2C2B2B;
}

/*Main*/
.maincontainer {
  width: 90vw;
  background-image: url(/images/imageedit_11_2121274814.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  grid-template-columns: 1fr 2fr;
  -moz-column-gap: 6vw;
       column-gap: 6vw;
  text-align: justify;
  align-self: center;
  justify-self: center;
  padding-left: 9vw;
  margin-left: 5vw;
  overflow: hidden;
}

.line {
  stroke: var(--text-color);
}

.imagecontainer {
  margin-top: 7vh;
  grid-column: 1/2;
  justify-content: center;
}
.imagecontainer img {
  box-shadow: 20px 15px 10px var(--header-background);
  border-radius: 1%;
  max-width: 90%;
  height: 90%;
  width: 90%;
}
.imagecontainer img:hover {
  transform: scale(1.2);
  animation-delay: 3s;
  border-radius: 50%;
}

.container {
  grid-column: 2/3;
  width: 80%;
}
.container h1 {
  text-transform: uppercase;
  margin-top: 4vh;
}

.container h1, p {
  color: var(--text-color);
}

/*Social Link*/
.social_links {
  display: flex;
  gap: 1.5vw;
  margin-top: 3vh;
  margin-bottom: 3vh;
}

.linkedin {
  color: rgb(48, 126, 228);
  font-size: 1.2rem;
}
.linkedin:hover {
  -webkit-text-decoration: line-through white;
          text-decoration: line-through white;
  color: rgb(48, 126, 228);
}

.imdb {
  color: #f6a904;
  font-size: 1.2rem;
}
.imdb:hover {
  color: #f6a904;
  -webkit-text-decoration: line-through white;
          text-decoration: line-through white;
}

.vimeo {
  color: rgb(103, 195, 253);
  font-size: 1.2rem;
}
.vimeo:hover {
  color: rgb(103, 195, 253);
  -webkit-text-decoration: line-through white;
          text-decoration: line-through white;
}

/*Boxes with social links*/
.maincontentlinks {
  width: 100vw;
  min-height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.maincontentlinks .box {
  width: 33%;
  height: 100%;
}

.box i {
  text-align: center;
  padding-top: 7vh;
  padding-bottom: 7vh;
  font-size: 3rem;
  font-weight: 100;
}

.box1, .box2 {
  border-right: 1px solid #aca395;
}

/*Skills*/
.contentmain {
  width: 80%;
  padding-bottom: 8vh;
}

.content {
  width: 90vw;
  margin-left: 5vw;
  min-height: 25vh;
  padding-top: 6vh;
  padding-left: 7vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-image: url(/images/imageedit_11_2121274814.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.content h1 {
  color: var(--text-color);
}

.buttonandcv {
  display: flex;
  margin-bottom: 3vh;
  gap: 2vw;
}

.playshowreel {
  border: none;
  height: 40px;
  width: 160px;
  position: relative;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: var(--background-color);
  border: 0.5px dotted #f6b01a;
}

.playshowreel span {
  background-color: var(--background-color);
  position: relative;
  transition: opacity 0.3s ease;
}

.playshowreel:hover span {
  opacity: 0;
}

.playshowreel:hover::before {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  font-size: 1.2em;
  color: var(--text-color);
  transition: 0.3s ease-in-out;
}

.playshowreel:hover {
  color: var(--icons-color);
  background-color: var(--background-links-color);
}

.playshowreel span:hover {
  color: var(--text-color);
}

.cv {
  border: none;
  height: 40px;
  width: 160px;
  position: relative;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: var(--background-color);
  border: 0.5px dotted #f6b01a;
}

.cv span {
  background-color: var(--background-color);
  position: relative;
  transition: opacity 0.3s ease;
  cursor: crosshair;
}

.cv:hover span {
  opacity: 0;
}

.cv:hover::before {
  content: "\f019";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  font-size: 1.2em;
  color: var(--text-color);
}

.cv:hover {
  background-color: var(--background-links-color);
}

.cv a {
  text-decoration: none;
}

@media screen and (max-width: 992px) {
  .maincontainer {
    display: flex;
    gap: 0;
    flex-direction: column-reverse;
  }
  .imagecontainer {
    margin: 4vh 0 5vh 0;
    text-align: center;
  }
  .imagecontainer img {
    width: 90%;
    height: 90%;
    max-width: 400px;
  }
  .container {
    width: 100%;
  }
  .content-links {
    margin: 0;
  }
  .buttonandcv {
    gap: 4vw;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .maincontainer {
    display: flex;
    flex-direction: column-reverse;
  }
  .imagecontainer {
    margin-left: -4vw;
    margin-bottom: 5vh;
    text-align: center;
  }
  .imagecontainer img {
    width: 100%;
    height: 100%;
    max-width: 400px;
  }
  .container {
    margin: 4vh auto;
    width: 90%;
  }
  .maincontentlinks {
    flex-direction: column;
  }
  .box1, .box2 {
    border-right: none;
    border-bottom: 1px solid #aca395;
  }
  .content {
    display: block;
    padding-left: 10vw;
  }
  .contentabout {
    margin-top: 6vh;
    padding-bottom: 5vh;
  }
  .contentmain {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .maincontainer {
    margin-left: 5vw;
  }
  .icon-bar {
    display: none;
  }
  .container, .contentmain, .contentabout {
    margin-left: -1vw;
  }
  .imagecontainer img {
    width: 90%;
    height: 90%;
  }
  .contentmain {
    padding: 0;
  }
  .contentabout {
    padding-bottom: 5vh;
  }
  .buttonandcv {
    flex-direction: column;
    gap: 2vh;
    margin-left: 0;
  }
}
.linkscontainer {
  background-color: var(--background-color);
  padding: 70px 30px 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.row {
  display: flex;
  padding-bottom: 3rem;
}

.social-links {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}

.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;
}

.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: 3.28vh;
  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=about1.css.map */