@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Roboto+Condensed:wght@700&display=swap");
@media screen and (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
.wall {
  background: url(assets/img/1026345.jpg) no-repeat center center fixed;
  box-shadow: inset 0 0 0 2000px rgba(185, 185, 185, 0.555);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body {
  font-family: poppins;
}

.hidden {
  opacity: 0;
  filter: blur(15px);
  transform: translateX(-50%);
  transition: all 0.8s;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

header {
  margin: 0 auto;
  align-items: center;
  display: table;
  padding-top: 20px;
}
header nav {
  align-items: center;
  display: flex;
}
header nav a:hover {
  color: #61892f;
  transition: 0.3s;
}
header nav a {
  color: #101110;
  text-transform: uppercase;
  text-indent: 10px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
}
header img {
  max-width: 10vh;
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

main {
  display: block;
  padding-top: 2%;
  letter-spacing: 0.5px;
  margin: 0 auto;
  text-align: center;
}
main h2 {
  color: white;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 2px;
  padding-top: 70px;
}
main p .hover-underline-animation {
  color: white;
}
main p a {
  font-weight: bold;
}
main .button {
  background-color: rgba(3, 87, 0, 0.2862745098);
  border-radius: 15px;
  color: white;
  padding: 2vh 4vh 2vh 4vh;
  box-shadow: 5px 5px 33px #383838;
  position: inherit;
  font-size: 1.3rem;
  font-weight: 600;
}
main .button:hover:before {
  width: 100%;
}
main h1 {
  color: white;
  max-width: 130vh;
  font-size: 6rem;
  margin: 0 auto;
  font-weight: 600;
}
main p {
  font-weight: 400;
  font-size: 1.3rem;
}
main .p-white {
  color: rgb(255, 255, 255);
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: white;
  margin-bottom: 30px;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  margin-bottom: -2px;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #6064eb;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.text-focus-in {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
nav .effect {
  padding-left: 0;
  margin-left: 5px;
}
nav a img {
  max-width: 5vh;
}

.effect {
  transition: transform 250ms, opacity 400ms;
}

.effect:hover {
  transform: scale(1.2);
  opacity: 1;
}

.video-wrapper {
  width: 80vh; /* or 100% */
  max-width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px; /* Rounded corners */
  margin: 0 auto;
  margin-top: 50px;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.about {
  max-width: 50%;
  margin: 0 auto;
  padding-top: 50px;
  font-size: 1.2rem;
}

.profile {
  max-width: 40vh;
  border-radius: 15px;
  margin-top: 30px;
  box-shadow: 5px 5px 33px #000000;
  margin-bottom: 50px;
}

.profile {
  transition: transform 0.3s ease;
}

.profile:hover {
  transform: scale(1.05);
}

.shorts {
  margin: 0 auto;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  height: 56vh;
}
.shorts iframe {
  width: 100%;
}

body {
  background-color: #222629;
  margin: 0;
}

p {
  color: white;
  font-size: 1rem;
  font-weight: 500;
}

h1 {
  color: white;
  font-size: 2.5rem;
}

h3 {
  color: white;
  font-size: 1.5rem;
}

a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: -50px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: rgba(255, 0, 0, 0);
  cursor: pointer;
  padding: 15px;
}
#myBtn img {
  max-width: 25%;
}

#myBtn:hover {
  background-color: rgba(85, 85, 85, 0);
}

.cv {
  padding-bottom: 20px;
}

footer {
  box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.199);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: block;
  text-align: center;
  margin: 0 auto;
}
footer .footer-text p {
  color: white;
  font-size: 1rem;
  padding-top: 10px;
  margin-bottom: 0;
  padding-bottom: 20px;
}
footer .footer-social {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
footer .footer-social a img {
  width: 5vh;
  margin-top: 30px;
  margin-left: 10px;
  margin-right: 10px;
}

@media (max-width: 1550px) {
  .work {
    max-width: 70%;
  }
  .portfolio .port-grup {
    margin: 0 auto;
    max-width: 70%;
  }
  .about {
    max-width: 70%;
  }
  header {
    max-width: 75%;
  }
  .experience {
    max-width: 70%;
  }
  main {
    max-width: 75%;
    padding-top: 2%;
  }
  main .button {
    font-size: 1rem;
  }
  main h1 {
    font-size: 3.4rem;
  }
  main h1 b {
    font-size: 3.4rem;
  }
  .arrow {
    margin-top: -50px;
  }
  #myBtn img {
    max-width: 18%;
  }
}
@media (min-width: 1000px) and (max-width: 1300px) {
  nav a {
    font-size: 1rem;
  }
  nav a img {
    max-width: 25px;
  }
  main p {
    font-size: 1.1rem;
  }
  main h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 800px) {
  .portfolio .port-grup {
    display: contents;
  }
  .portfolio .port-grup .port {
    margin-bottom: 50px;
    text-align: center;
  }
  .portfolio .port-grup .port p {
    max-width: 350px;
    text-align: center;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .portfolio .port-grup .port .port1 {
    margin: 0 auto;
    text-align: center;
  }
  .portfolio .port-grup .port .port1 a .port-left {
    margin-right: 0;
  }
  .portfolio .port-grup .port .port1 a .port-right {
    margin-left: 0;
  }
  .portfolio .port-grup .port .port1 a img {
    max-width: 85%;
    max-height: auto;
  }
  .about {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    padding-top: 0;
  }
  .about .about-pic {
    display: block;
    text-align: center;
  }
  .about .about-pic p {
    padding-bottom: 40px;
  }
  .about .about-pic img {
    margin: 0;
    max-width: 80%;
    margin-bottom: 50px;
    margin-top: 50px;
  }
  .fields .fields-p {
    display: grid;
  }
  .fields .fields-p .p1 {
    padding-right: 0;
    padding: 15px;
  }
  main {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 95%;
  }
  main #auto-type {
    height: 15vh;
  }
  main button img {
    display: none;
  }
  main p {
    font-size: 2vh;
  }
  main h1 {
    font-size: 5vh;
    white-space: wrap;
  }
  header {
    display: flex;
    text-align: center;
    max-width: 95%;
  }
  header .nav-mob {
    display: inline-flex;
  }
  header .nav-mob a {
    font-size: 2.5vh;
    font-weight: 600;
    margin-left: 40px;
    padding-top: 30px;
  }
  header nav {
    display: block;
  }
  .experience {
    margin-left: 15px;
    margin-right: 15px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .experience h3 span {
    margin-left: 0;
  }
  .social-mob {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    max-width: 90vh;
  }
  .social-mob a img {
    max-width: 35px;
    margin-top: 20px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .hidden {
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */