@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
  color: #EBEBEB;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #1A1A1A;
}

a {
  text-decoration: none;
  color: unset;
}

.l-page {
  background-image: linear-gradient(90deg, transparent 0px, transparent calc(100%/2), rgba(255, 255, 255, 0.03) calc((100%/2) + 2px), transparent calc((100%/2) + 4px));
  height: 100%;
  border-right: 2px solid rgba(255, 255, 255, 0.03);
  border-left: 2px solid rgba(255, 255, 255, 0.03);
  margin: 0 39px;
}
@media screen and (min-width: 700px) {
  .l-page {
    background: repeating-linear-gradient(90deg, transparent 1px, transparent calc((100%/4) - 1px), rgba(255, 255, 255, 0.03) calc((100%/4) - 1px), rgba(255, 255, 255, 0.03) calc((100%/4) + 1px));
    margin: 0 80px;
  }
}
@media screen and (min-width: 1100px) {
  .l-page {
    background: repeating-linear-gradient(90deg, transparent 1px, transparent calc((100%/6) - 1px), rgba(255, 255, 255, 0.03) calc((100%/6) - 1px), rgba(255, 255, 255, 0.03) calc((100%/6) + 1px));
  }
}
@media screen and (min-width: 1500px) {
  .l-page {
    background: repeating-linear-gradient(90deg, transparent 1px, transparent calc((100%/6) - 1px), rgba(255, 255, 255, 0.03) calc((100%/6) - 1px), rgba(255, 255, 255, 0.03) calc((100%/6) + 1px));
    margin: 0 auto;
    max-width: 1368px;
    width: 100%;
  }
}
.l-page--noline {
  background: transparent;
  border: none;
  padding: 0 30px;
}
@media screen and (min-width: 1100px) {
  .l-page--noline {
    padding: 0 100px;
  }
}
.l-page--nopadding {
  padding: 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 96px;
}
.header__logo {
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
}
@media screen and (min-width: 1100px) {
  .header__logo {
    font-size: 20px;
  }
}
.header__hamburger {
  cursor: pointer;
}
@media screen and (min-width: 700px) {
  .header {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1100px) {
  .header {
    width: calc((4/6)*100%);
    margin-bottom: 220px;
  }
}

.button {
  padding: 10px 16px;
  border: none;
  background: linear-gradient(90deg, #FF9D5B, #6C4C74);
  color: #1A1A1A;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.1s linear;
}
@media screen and (min-width: 1100px) {
  .button {
    padding: 15px 30px;
  }
}
.button:hover {
  opacity: 0.5;
}
.button:active {
  opacity: 0.3;
}
.button:focus {
  outline: none;
}
.button--secondary {
  padding: 8px 14px;
  border: 2px solid #717171;
  background: #1A1A1A;
  color: #C4C4C4;
  font-weight: 400;
}
@media screen and (min-width: 1100px) {
  .button--secondary {
    padding: 13px 28px;
  }
}
.button--tertiary {
  background: #1A1A1A;
  color: #C4C4C4;
  font-weight: 400;
}

.modaleHeader {
  position: fixed;
  top: 0;
  right: 0;
  width: 0px;
  height: 100vh;
  background: #111111;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.3s ease-in;
}
.modaleHeader ul {
  text-align: center;
}
.modaleHeader li {
  margin: 10px 0;
  list-style-type: none;
  display: block;
}
.modaleHeader li:hover {
  opacity: 0.5;
}
.modaleHeader a {
  white-space: nowrap;
}
.modaleHeader__close {
  position: absolute;
  top: 43px;
  right: 39px;
  cursor: pointer;
}

.hero {
  text-align: center;
  position: relative;
  height: 100vh;
  padding-top: 43px;
}
@media screen and (min-width: 700px) {
  .hero {
    padding-top: 70px;
  }
}
@media screen and (min-width: 1100px) {
  .hero {
    text-align: left;
  }
}
.hero__title {
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 36px;
  font-weight: 600;
}
@media screen and (min-width: 700px) {
  .hero__title {
    font-size: 52px;
    line-height: 62px;
  }
}
@media screen and (min-width: 1100px) {
  .hero__title {
    font-size: 62px;
    line-height: 74px;
    width: 60%;
  }
}
@media screen and (min-width: 1300px) {
  .hero__title {
    width: 50%;
  }
}
.hero__title span {
  color: #E38E60;
}
.hero__subtitle {
  font-size: 15px;
  line-height: 25px;
  color: #ACACAC;
  font-weight: 400;
  margin-bottom: 60px;
}
@media screen and (min-width: 700px) {
  .hero__subtitle {
    width: 80%;
    margin-bottom: 90px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1100px) {
  .hero__subtitle {
    font-size: 18px;
    width: 50%;
    margin: unset;
    margin-bottom: 110px;
  }
}
.hero__ctas {
  display: flex;
  flex-direction: column;
}
.hero__ctas :nth-child(1) {
  margin-bottom: 20px;
}
@media screen and (min-width: 700px) {
  .hero__ctas :nth-child(1) {
    margin: unset;
    margin: 0 10px;
  }
}
@media screen and (min-width: 1100px) {
  .hero__ctas :nth-child(1) {
    margin: unset;
  }
}
@media screen and (min-width: 700px) {
  .hero__ctas {
    flex-direction: unset;
    justify-content: center;
  }
}
@media screen and (min-width: 1100px) {
  .hero__ctas {
    justify-content: unset;
    flex-direction: unset;
  }
}
.hero__cta {
  display: inline-block;
  margin: auto;
  width: 100%;
}
@media screen and (min-width: 700px) {
  .hero__cta {
    margin: unset;
    width: unset;
    margin: 0 10px;
  }
}
@media screen and (min-width: 1100px) {
  .hero__cta {
    font-size: 18px;
    margin: unset;
    margin-right: 44px !important;
  }
}
.hero__watermark {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  transform: translateX(50%);
}
@media screen and (min-width: 1100px) {
  .hero__watermark {
    display: none;
  }
}
.hero__cross {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transform: translate(-50%, 100%);
}
.hero__hugeLine {
  display: none;
}
@media screen and (min-width: 1100px) {
  .hero__hugeLine {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: calc((1/6)*100%);
    background: linear-gradient(#FF9D5B, #382F7C);
  }
}

.portfolio {
  padding: 96px 0 142px 0;
}
@media screen and (min-width: 760px) {
  .portfolio {
    padding-top: 160px;
  }
}
.portfolio__title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 700px) {
  .portfolio__title {
    font-size: 38px;
    margin-bottom: 6px;
  }
}
@media screen and (min-width: 1100px) {
  .portfolio__title {
    text-align: unset;
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 10px;
  }
}
.portfolio__subtitle {
  font-size: 15px;
  line-height: 25px;
  color: #ACACAC;
  margin-bottom: 62px;
  text-align: center;
}
@media screen and (min-width: 700px) {
  .portfolio__subtitle {
    font-size: 18px;
    margin-bottom: 128px;
  }
}
@media screen and (min-width: 1100px) {
  .portfolio__subtitle {
    text-align: unset;
  }
}
.portfolio__img {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
.portfolio__img img {
  width: 100%;
}
.portfolio__img::before {
  content: "01";
  font-size: 100px;
  font-weight: 600;
  line-height: 100px;
  opacity: 5%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-30%);
}
@media screen and (min-width: 700px) {
  .portfolio__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 135px;
  }
}
@media screen and (min-width: 700px) {
  .portfolio__textcontent {
    margin: 10px 0 auto 42px;
  }
}
@media screen and (min-width: 1440px) {
  .portfolio__textcontent {
    margin: 30px 0 auto 96px;
    padding-right: 25%;
  }
}
.portfolio__itemtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
@media screen and (min-width: 700px) {
  .portfolio__itemtitle {
    font-size: 21px;
    line-height: 25px;
    margin-bottom: 19px;
  }
}
@media screen and (min-width: 1100px) {
  .portfolio__itemtitle {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 21px;
  }
}
@media screen and (min-width: 1400px) {
  .portfolio__itemtitle {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 24px;
  }
}
.portfolio__description {
  display: none;
}
@media screen and (min-width: 1100px) {
  .portfolio__description {
    display: unset;
    font-size: 18px;
    line-height: 27px;
    color: #ACACAC;
  }
}
.portfolio__tags {
  margin: 0 0 20px 0;
}
@media screen and (min-width: 700px) {
  .portfolio__tags {
    margin: unset;
    margin-bottom: 22px;
  }
}
@media screen and (min-width: 1100px) {
  .portfolio__tags {
    margin-top: 40px;
  }
}
.portfolio__tag {
  font-size: 15px;
  color: #5b5b5b;
  font-weight: 700;
  font-style: italic;
  margin-right: 5px;
}
@media screen and (min-width: 1100px) {
  .portfolio__tag {
    font-size: 18px;
  }
}
.portfolio__ctas {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 135px;
}
.portfolio__ctas--last {
  margin-bottom: 0;
}
@media screen and (min-width: 700px) {
  .portfolio__ctas {
    margin: unset;
    justify-content: unset;
  }
}
.portfolio__button {
  width: 50%;
}
@media screen and (min-width: 700px) {
  .portfolio__button {
    width: unset;
    margin-right: 22px;
    font-size: 18px;
  }
}

.cta {
  background: linear-gradient(90deg, #FF9D5B, #6C4C74);
  padding: 30px 0px 45px;
  text-align: center;
}
@media screen and (min-width: 1100px) {
  .cta {
    padding: 45px 0 45px;
  }
}
@media screen and (min-width: 1100px) {
  .cta__content {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
}
.cta__title {
  color: #1A1A1A;
  font-size: 30px;
  line-height: 39px;
  margin-bottom: 35px;
}
@media screen and (min-width: 1100px) {
  .cta__title {
    margin: unset;
    font-size: 48px;
  }
}
.cta__button {
  padding-right: 26px;
  padding-left: 26px;
}

.skills {
  padding-top: 87px;
  text-align: center;
}
@media screen and (min-width: 1100px) {
  .skills {
    text-align: unset;
    padding: 200px 0;
  }
}
@media screen and (min-width: 1100px) {
  .skills__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.skills__title {
  font-size: 30px;
  font-weight: 600;
}
@media screen and (min-width: 700px) {
  .skills__title {
    font-size: 38px;
    margin-bottom: 6px;
  }
}
@media screen and (min-width: 1100px) {
  .skills__title {
    font-size: 48px;
  }
}
.skills__subtitle {
  font-size: 15px;
  color: #ACACAC;
  margin-bottom: 70px;
}
@media screen and (min-width: 700px) {
  .skills__subtitle {
    font-size: 18px;
    margin-bottom: 128px;
  }
}
@media screen and (min-width: 1100px) {
  .skills__subtitle {
    font-size: 18px;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1100px) {
  .skills__img {
    margin-bottom: 20px;
  }
}
.skills__skillTitle {
  font-size: 25px;
  line-height: 25px;
  font-weight: 600;
  margin-bottom: 12px;
}
@media screen and (min-width: 1100px) {
  .skills__skillTitle {
    font-size: 32px;
    margin-bottom: 23px;
  }
}
.skills__paragraph {
  color: #878787;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 21px;
}
@media screen and (min-width: 1100px) {
  .skills__paragraph {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
.skills__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 6%;
  margin-bottom: 110px;
}
@media screen and (min-width: 1100px) {
  .skills__tags {
    padding: unset;
    justify-content: unset;
    width: 70%;
    margin: unset;
  }
}
.skills__tag {
  display: block;
  margin: 0 8px;
  color: #E38E60;
  opacity: 34%;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
}
@media screen and (min-width: 1100px) {
  .skills__tag {
    margin: 0 16px 0 0;
  }
}

.about {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}
@media screen and (min-width: 1100px) {
  .about {
    text-align: unset;
    padding-bottom: 250px;
  }
}
@media screen and (min-width: 1100px) {
  .about__content {
    display: flex;
    justify-content: space-between;
  }
}
.about__title {
  font-size: 30px;
  font-weight: 600;
}
@media screen and (min-width: 700px) {
  .about__title {
    font-size: 38px;
    margin-bottom: 6px;
  }
}
@media screen and (min-width: 1100px) {
  .about__title {
    font-size: 48px;
  }
}
.about__subtitle {
  font-size: 18px;
  color: #ACACAC;
  margin-bottom: 60px;
}
.about__photo {
  display: inline-block;
  margin: 0 auto 50px;
  width: 60%;
  position: relative;
  object-fit: contain;
}
.about__photo img {
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .about__photo {
    width: calc((1/3)*100%);
    margin: unset;
  }
}
.about__photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc((100%) - 7px);
  z-index: -1;
  background: linear-gradient(#FF9D5B, #382F7C);
  transform: translate(4%, 4%);
}
@media screen and (min-width: 1100px) {
  .about__text {
    width: 50%;
    padding-right: 21%;
    padding-left: 2px;
  }
}
.about__subhead {
  font-size: 25px;
  margin-bottom: 21px;
}
@media screen and (min-width: 1100px) {
  .about__subhead {
    font-size: 32px;
    margin-bottom: 38px;
  }
}
.about__quote {
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
}
@media screen and (min-width: 1100px) {
  .about__quote {
    font-size: 18px;
    line-height: 27px;
    padding-left: 23px;
    margin-bottom: 17px;
    border-left: solid 2px #E38E60;
  }
}
.about__line {
  height: 2px;
  width: 100px;
  margin: 20px auto;
  background-color: #E38E60;
}
@media screen and (min-width: 1100px) {
  .about__line {
    display: none;
  }
}
.about__me {
  font-size: 15px;
  line-height: 25px;
  color: #878787;
  margin-bottom: 60px;
}
@media screen and (min-width: 1100px) {
  .about__me {
    font-size: 18px;
  }
}
.about ul {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1100px) {
  .about ul {
    justify-content: unset;
  }
}
.about ul li {
  list-style-type: none;
  padding: 5px 8px;
}
@media screen and (min-width: 1100px) {
  .about ul li {
    padding: unset;
    margin-right: 28px;
  }
}
.about ul li:hover path {
  fill: #E38E60;
}

.contact {
  padding: 80px 0;
  background: #111111;
}
@media screen and (min-width: 1100px) {
  .contact__content {
    display: flex;
  }
}
.contact__text {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 1100px) {
  .contact__text {
    width: 50%;
    text-align: unset;
  }
}
.contact__title {
  font-size: 30px;
  font-weight: 600;
}
@media screen and (min-width: 700px) {
  .contact__title {
    font-size: 38px;
    margin-bottom: 6px;
  }
}
@media screen and (min-width: 1100px) {
  .contact__title {
    font-size: 42px;
  }
}
.contact__subtitle {
  font-size: 15px;
  color: #ACACAC;
}
@media screen and (min-width: 700px) {
  .contact__subtitle {
    font-size: 18px;
  }
}
@media screen and (min-width: 1100px) {
  .contact__subtitle {
    font-size: 18px;
  }
}
.contact__contact {
  padding: 40px 20px;
  background: #1A1A1A;
}
@media screen and (min-width: 1100px) {
  .contact__contact {
    width: 50%;
    padding: 65px 56px;
  }
}
.contact__labelDiv {
  display: block;
  margin-bottom: 20px;
}
@media screen and (min-width: 1100px) {
  .contact__labelDiv {
    margin-bottom: 50px;
  }
}
.contact__labelDiv textarea {
  max-height: 100px;
  overflow-y: scroll;
}
.contact__labelDiv small {
  color: #EB5F5F;
  font-size: 12px;
  font-style: italic;
}
.contact__label {
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
  color: #ACACAC;
}
.contact__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #707070;
  padding: 9px 12px;
}
.contact__input:focus {
  border-color: #E38E60;
  outline: none;
}
.contact__input--error {
  color: #EB5F5F;
  border-color: #EB5F5F;
}
.contact__input--success {
  color: #07ca5f;
  border-color: #07ca5f;
}

/*# sourceMappingURL=style.css.map */
