@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  margin: 0;
  box-sizing: border-box;
  font-family: "Crimson Text", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #2D2F33;
  display: flex;
  justify-content: center;
}

main {
  max-width: 1240px;
  width: 100%;
  position: relative;
  overflow: visible;
}

a {
  text-decoration: none;
  color: white;
  font-size: 20px;
}

h3 {
  font-size: 27px;
  font-weight: 300;
  color: white;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

h2 {
  font-size: 40px;
  font-weight: 500;
  color: #FFC069;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 32px;
  }
}

.titleDiv {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px 0;
}
.titleDiv hr {
  flex-grow: 1;
  border: 1.5px solid #FFC069;
  height: 1px;
}
.titleDivTitle {
  text-align: center;
  width: 350px;
  color: white;
}
@media screen and (max-width: 768px) {
  .titleDiv hr {
    display: none;
  }
  .titleDivTitle {
    color: #FFC069;
    width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .titleDiv {
    padding: 20px 20px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 60px;
  height: 100px;
  width: 100%;
  z-index: 3;
  backdrop-filter: blur(20px);
}
header > a {
  transition: all 0.2s ease;
}
header a:hover {
  color: #FFC069;
  padding-bottom: 6px;
  border-bottom: 2px solid #FFC069;
}
header .menuToggle {
  display: none;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
}
header .menuToggleCheckbox {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7;
  left: -3;
  cursor: pointer;
  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */
  -webkit-touch-callout: none;
}
header .menuToggle > span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: white;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
header .menuToggle > span:first-child {
  transform-origin: 0% 0%;
}
header .menuToggleCheckbox:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(1px, -2px);
  background: white;
}
header .menuToggleCheckbox:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
header .menuToggleCheckbox:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}
header .menuToggleCheckbox:checked ~ ul {
  transform: none;
}
header .menuToggleMenu {
  position: absolute;
  max-width: 400px;
  width: 100vw;
  max-height: 100vh;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #35363A;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  border-radius: 12px;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
header .menuToggleMenu > li {
  padding: 10px;
  font-size: 22px;
}
header .menuToggleMenu > li > a {
  color: white;
}
header .menuToggleMenu > li > a > label {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  header {
    height: 60px;
  }
  header > a {
    display: none;
  }
  header .menuToggle {
    display: block;
  }
}
@media (hover: none) {
  header a:hover {
    color: #68696C;
    padding: 0;
    border-bottom: none;
  }
}

.introSection {
  margin-top: 100px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.introSectionLeftPart {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 620px;
  padding: 100px 0px;
}
.introSectionLeftPartWrapper {
  margin-top: 50px;
}
.introSectionLeftPartWrapper a {
  font-size: 27px;
  color: #FFC069;
  border: 4px solid #FFC069;
  border-radius: 12px;
  position: relative;
  padding: 10px 35px;
}
.introSectionLeftPartWrapper a span {
  position: relative;
  z-index: 2;
}
.introSectionLeftPartWrapper a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #FFC069;
  border-radius: 7px;
  transition: all 0.35s;
}
.introSectionLeftPartWrapper a:hover {
  color: white;
}
.introSectionLeftPartWrapper a:hover:after {
  width: 100%;
}
@media (hover: none) {
  .introSectionLeftPartWrapper a:after {
    background-color: inherit;
    transition: none;
  }
  .introSectionLeftPartWrapper a:hover {
    color: #FFC069;
  }
}
.introSectionRightPart {
  max-width: 620px;
}
.introSectionRightPartImg {
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .introSection {
    padding: 0px 20px;
  }
}
@media screen and (max-width: 992px) {
  .introSectionLeftPart {
    padding: 40px 0;
    width: 100%;
  }
  .introSectionRightPart {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .introSection {
    margin-top: 60px;
  }
  .introSectionLeftPartWrapper {
    margin-top: 20px;
  }
  .introSectionLeftPartWrapper a {
    display: flex;
    justify-content: center;
    border: 2px solid #FFC069;
    width: 100%;
    font-size: 20px;
  }
}

.aboutSection {
  scroll-margin-top: 100px;
  width: 100vw;
  background-color: #35363A;
  position: relative;
  transform: translateX(-50%);
  left: 50%;
}
.aboutSectionContent {
  padding-bottom: 30px;
  max-width: 1240px;
  margin: 0 auto;
}
.aboutSectionContentText {
  color: white;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 1280px) {
  .aboutSectionContent {
    padding: 0px 20px 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  .aboutSection {
    scroll-margin-top: 60px;
  }
  .aboutSectionContentText {
    font-size: 14px;
  }
}

.skillsSection {
  scroll-margin-top: 100px;
  padding-bottom: 20px;
}
.skillsSectionGrid {
  justify-content: space-between;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  row-gap: 30px;
}
.skillsSectionGrid > div {
  border-radius: 12px;
  background-color: #35363A;
  width: 170px;
  height: 170px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.5s;
}
.skillsSectionGrid > div img {
  width: auto;
  height: 80%;
  transition: all 0.5s ease;
}
.skillsSectionGrid > div p {
  margin-top: 15px;
  color: white;
  font-size: 18px;
  transition: all 0.3s;
  font-family: "Lato", sans-serif;
}
.skillsSectionGrid > div:hover {
  background-color: #FFC069;
  padding: 15px;
}
.skillsSectionGrid > div:hover img {
  margin: 0;
  height: 95%;
  width: auto;
}
.skillsSectionGrid > div:hover p {
  opacity: 0;
  visibility: hidden;
}
@media (hover: none) {
  .skillsSectionGrid > div {
    pointer-events: none;
  }
}
@media screen and (max-width: 1280px) {
  .skillsSectionGrid {
    justify-content: space-evenly;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .skillsSectionGrid {
    justify-content: space-evenly;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .skillsSection {
    scroll-margin-top: 60px;
  }
  .skillsSectionGrid {
    justify-content: space-evenly;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .skillsSectionGrid > div {
    width: 40vw;
    height: 40vw;
  }
  .skillsSectionGrid > div p {
    font-size: 16px;
  }
}

.projectsSection {
  scroll-margin-top: 100px;
}
.projectsSectionGrid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.projectsSectionGridCard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
  background-color: #35363A;
  padding: 20px 28px;
  width: 353.3333333333;
}
.projectsSectionGridCard h3 {
  color: #FFC069;
  margin-bottom: 20px;
}
.projectsSectionGridCard p {
  color: white;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 25px;
}
.projectsSectionGridCardLogos {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 20px;
}
.projectsSectionGridCardLogos img {
  color: white;
  width: auto;
  height: 35px;
  transition: transform 1s ease;
}
.projectsSectionGridCardLogos img:hover {
  cursor: pointer;
  transform: rotateY(360deg);
}
@media (hover: none) {
  .projectsSectionGridCardLogos img {
    transition: none;
  }
  .projectsSectionGridCardLogos img:hover {
    transform: none;
  }
}
.projectsSectionGridCard--p1 {
  justify-self: start;
}
.projectsSectionGridCard--p2 {
  justify-self: center;
}
.projectsSectionGridCard--p3 {
  justify-self: end;
}
@media screen and (max-width: 1280px) {
  .projectsSectionGrid {
    justify-content: space-evenly;
    grid-template-columns: repeat(2, 1fr);
  }
  .projectsSectionGridCard {
    justify-self: center;
  }
}
@media screen and (max-width: 768px) {
  .projectsSection {
    scroll-margin-top: 60px;
  }
  .projectsSectionGrid {
    grid-template-columns: repeat(1, 1fr);
  }
  .projectsSectionGridCard {
    justify-self: center;
  }
  .projectsSectionGrid p {
    font-size: 14px;
  }
  .projectsSectionGrid img {
    height: 25px;
    width: auto;
  }
}
@media screen and (max-width: 576px) {
  .projectsSectionGrid {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  .projectsSectionGridCard {
    width: 100%;
  }
}

.contactSection {
  padding-bottom: 40px;
}
.contactSectionContainer {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.contactSectionContainerCard {
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  border-radius: 12px;
  background-color: #35363A;
  padding: 8px 32px;
  display: flex;
  flex-direction: row;
  transition: all 0.4s ease;
}
.contactSectionContainerCard img {
  height: 30px;
  width: auto;
}
.contactSectionContainerCard:hover {
  background-color: #FFC069;
}
.contactSectionContainerCard > p {
  color: white;
  font-size: 27px;
}
@media screen and (max-width: 1280px) {
  .contactSectionContainer {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .contactSectionContainerCard {
    width: fit-content;
    margin: 0 20px;
  }
  .contactSectionContainerCard > img {
    height: 20px;
    width: auto;
  }
  .contactSectionContainerCard > p {
    font-size: 16px;
  }
}

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