* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100vw;
}

body {
  color: black;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  height: 100vh;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

.header-section {
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header-wrapper {
  display: flex;
  align-items: center;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0 0 0 auto;
}
.header-nav-list {
  gap: 40px;
  display: flex;
  align-items: center;
}
.header-nav-item > a {
  color: black;
  font-weight: 100;
}
.header-nav-item > a > img {
  width: 20px;
  height: 20px;
}
.header-nav-item > a > img:hover {
  color: #a8a4a4;
}
.header-nav-item > a:hover {
  color: #a8a4a4;
}
.header-burger-list {
  width: 100vw;
  height: 100vh;
  background-color: #dad6d6;
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.header-burger-list.is-active {
  display: flex;
}
.header-burger-item > a {
  color: black;
  font-weight: 100;
}
.header-burger-item > a:hover {
  color: #a8a4a4;
}
.header-burger:hover {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .header-nav-list {
    display: none;
  }
  .header-burger {
    width: 40px;
    height: 40px;
    background-image: url(../Images/burger.png);
    margin-right: 20px;
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
  }
  .header-burger.is-active {
    background-image: url(../Images/close.png);
  }
}
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100vw;
}

body {
  color: black;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  height: 100vh;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

.home-section {
  padding: 150px 0;
}
.home-title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}
.home-title > h1 {
  font-size: 60px;
  font-weight: 600;
  text-align: center;
}
.home-title > p {
  padding-left: 25px;
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  .home-section {
    padding: 0;
  }
  .home-section > h1 {
    font-size: 53px;
  }
}
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100vw;
}

body {
  color: black;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  height: 100vh;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

.works-section {
  padding: 50px 20px;
}
.works-section .works-title {
  text-align: center;
  margin-bottom: 30px;
}
.works-section .works-title h2 {
  font-size: 2rem;
  letter-spacing: 2px;
  display: inline-block;
  padding-bottom: 5px;
  font-weight: 500;
}
.works-section .works-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
}
.works-section .works-container .works-item .image-container {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.works-section .works-container .works-item .image-container .work-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}
.works-section .works-container .works-item .image-container .icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.works-section .works-container .works-item .image-container .icons .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  color: #dad6d6;
  border-radius: 50%;
  font-size: 18px;
  transition: background-color 0.3s, transform 0.3s;
}
.works-section .works-container .works-item .image-container .icons .icon:hover {
  background-color: #007bff;
  transform: scale(1.1);
}
.works-section .works-container .works-item .image-container .icons .icon img {
  width: 20px;
  height: 20px;
}
.works-section .works-container .works-item:hover .work-image {
  filter: blur(2px);
}
.works-section .works-container .works-item:hover .icons {
  opacity: 1;
}

@media (max-width: 768px) {
  .works-item {
    width: calc(50% - 16px);
  }
}
@media (max-width: 480px) {
  .works-item {
    width: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100vw;
}

body {
  color: black;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  height: 100vh;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

.skills-section {
  padding: 150px 0;
}
.skills-title {
  padding: 25px 0;
}
.skills-title > h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 450;
}
.skills-list {
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: 50px 0;
}
.skills-item {
  font-weight: 100;
}
.skills-item > p {
  text-align: center;
  margin: 10px 0;
}

@media screen and (max-width: 768px) {
  .skills-list {
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 30px 0;
  }
}
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100vw;
}

body {
  color: black;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  height: 100vh;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

.contact-section {
  padding: 150px 0;
}
.contact-title {
  padding: 25px 0;
}
.contact-title > h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 450;
}
.contact-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item {
  font-weight: 100;
  width: 100%;
}
.contact-item > a > img {
  width: 40px;
  height: 40px;
  position: relative;
  top: 0;
}
.contact-item > a > img:hover {
  top: -3px;
  transition: 0.3s;
}
.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100vw;
}

body {
  color: black;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  height: 100vh;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

.footer-message {
  text-align: center;
  font-weight: 300;
  font-size: 15px;
  padding: 20px 0;
  background-color: #dad6d6;
}

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