* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  --c1: #d9e4d1;
  --c1-t1: rgba(217, 228, 209, 0.51);
  --c1-t2: rgba(217, 228, 209, 0.84);
  --c2: #9CA986;
  --c3: #808D7C;
  --c4: #5F6F65;
}

body {
  font-family: "Comfortaa", sans-serif;
  font-weight: 500;
  font-size: 25px;
  color: var(--c4);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  background-color: var(--c1);
  position: relative;
  z-index: 6;
}
.container > * {
  width: 100%;
  max-width: 1500px;
}

a, a:visited, a:active {
  color: var(--c4);
}

.--bold {
  font-weight: 700;
}

.--paralax-img-1 {
  filter: hue-rotate(286deg) blur(2px);
}

.main {
  flex-grow: 1;
}
.main > * {
  width: 100%;
  margin-bottom: 200px;
}

.header {
  width: 100%;
  font-size: 24px;
  padding: 10px 0;
  background-color: var(--c1);
  position: fixed;
  top: 0;
  z-index: 100;
}
.header .__body {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .header {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .header {
    font-size: 14px;
  }
}

.paralax {
  height: 100vh;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.paralax .__header {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  background: var(--c1);
  box-shadow: 0 0 20px 20px var(--c1);
  font-size: 50px;
}
@media (max-width: 750px) {
  .paralax .__header {
    font-size: 35px;
  }
}
@media (max-width: 450px) {
  .paralax .__header {
    font-size: 27px;
  }
}
.paralax .__img-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.paralax .__img-wrap .__glass {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(var(--c1) 40px, var(--c1-t1), var(--c1));
}
.paralax .__img-wrap .__img {
  position: fixed;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 3;
}

.__plcs {
  list-style-type: none;
  padding: 30px 0px;
}
.__plcs .__plc {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.__plcs .__plc .__right {
  flex: 30% 0 0;
}
.__plcs .__plc .__right.__wide {
  flex: 40% 0 0;
  display: flex;
  gap: 20px;
}
.__plcs .__plc .__img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.__plcs .__plc .__img-wrap .__img {
  max-width: 100%;
  max-height: 400px;
  transition: transform 0.3s;
}
.__plcs .__plc .__img-wrap .__img.__radius {
  border-radius: 10px;
  overflow: hidden;
  outline: 3px black solid;
}
.__plcs .__plc .__img-wrap .__img:hover {
  transform: scale(105%);
}
@media (min-width: 751px) {
  .__plcs .__plc:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
@media (max-width: 750px) {
  .__plcs .__plc {
    flex-direction: column;
  }
}
.__plcs .__plc:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 885px) {
  .__plcs .__plc {
    font-size: 18px;
  }
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.contact .__header {
  font-size: 37.5px;
}
@media (max-width: 500px) {
  .contact .__header {
    font-size: 27px;
  }
}
@media (max-width: 340px) {
  .contact .__header {
    font-size: 24px;
  }
}

.technologies .__header {
  margin-bottom: 20px;
  text-align: center;
  font-size: 37.5px;
}
@media (max-width: 550px) {
  .technologies .__header {
    font-size: 25px;
  }
}
.technologies .__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin: 0 auto;
}
@media (max-width: 530px) {
  .technologies .__items {
    gap: 30px;
  }
}
@media (max-width: 540px) {
  .technologies .__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.technologies .__items {
  font-size: 17px;
  max-width: 700px;
}
@media (max-width: 920px) {
  .technologies .__items {
    max-width: 500px;
    font-size: 12px;
  }
}
.technologies .__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.technologies .__item .__img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.technologies .__item .__hover {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  transition: 0.3s;
  user-select: none;
  background-color: var(--c1-t2);
  opacity: 0;
}
.technologies .__item .__hover .__text {
  text-align: center;
  hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}
@media (max-width: 920px) {
  .technologies .__item .__hover {
    padding: 5px;
  }
}
.technologies .__item:hover .__hover {
  opacity: 1;
}
.technologies .__item:hover .__img {
  filter: blur(3px);
}

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