@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Manrope:wght@200..800&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  background-color: #F7F6F3;
  color: #171717;
  padding: 0 64px;
  font-family: "Libre Franklin", sans-serif;
}

body.uk {
  font-family: "Manrope", sans-serif;
}
body.uk #hero .left h1, body.uk #hero .left span, body.uk #about .right h1, body.uk #contact h1 {
  font-family: "Lora", serif;
}

.caps {
  text-transform: uppercase;
}

.mobile, .short {
  display: none;
}

header {
  position: fixed;
  background-color: #F7F6F3;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 64px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 1000;
  transition: box-shadow 0.6s ease;
}
header.shadow {
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.15);
}
header .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .logo h3 {
  font-size: 20px;
  font-weight: 500;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}
header nav li {
  list-style: none;
}
header nav li a {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
header nav li a:hover {
  color: #3061DD;
}
header .nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  transition: height 0.3s ease;
}
header .nav-wrapper.hide {
  height: 0;
}
header .nav-wrapper nav.mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #F7F6F3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  z-index: 1000;
}
header .nav-wrapper nav.mobile ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0;
}
header .nav-wrapper nav.mobile ul li a {
  font-size: 24px;
  font-weight: 500;
}
header .nav-wrapper nav.mobile .lang {
  display: none;
  flex-direction: row;
  gap: 24px;
}
header .nav-wrapper nav.mobile .lang button, header .nav-wrapper nav.mobile .lang span {
  font-size: 24px;
  font-weight: 500;
  color: #666666;
  text-decoration: none;
  border: none;
  padding: 0;
  background: none;
  transition: color 0.3s ease;
}
header .nav-wrapper nav.mobile .lang button:hover, header .nav-wrapper nav.mobile .lang span:hover {
  color: #3061DD;
  text-decoration: underline;
  background: none;
}
header .nav-wrapper nav.mobile .menu-toggle {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #666666;
  background-color: #DEDEDA;
  width: 36px;
  height: 36px;
  padding: 0;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  box-shadow: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .nav-wrapper nav.mobile .menu-toggle svg {
  width: 24px;
  height: 24px;
}
header .action {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}
header .action .lang button, header .action .lang span {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  text-decoration: none;
  border: none;
  padding: 0;
  background: none;
  transition: color 0.3s ease;
}
header .action .lang button:hover, header .action .lang span:hover {
  color: #3061DD;
  text-decoration: underline;
  background: none;
}
header .action .lang button {
  cursor: pointer;
}
header .action button {
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  background-color: #3061DD;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
header .action button:hover {
  background-color: #587ad0;
}
header .action button.menu-toggle {
  display: none;
  color: #666666;
  background-color: #DEDEDA;
  width: 36px;
  height: 36px;
  padding: 0;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header .action button.menu-toggle svg {
  width: 24px;
  height: 24px;
}

#hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 64px 0;
  margin-top: 72px;
  gap: 32px;
  background-image: linear-gradient(to right, rgba(222, 222, 218, 0.5) 1px, transparent 1px), linear-gradient(to bottom, rgba(222, 222, 218, 0.5) 1px, transparent 1px);
  background-size: 32px 32px;
}
#hero .left {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#hero .left h1 {
  font-size: 76px;
  font-weight: 700;
  font-family: "Spectral", serif;
  line-height: 1.2;
  letter-spacing: -1%;
}
#hero .left h1 span {
  font-weight: 700;
  font-family: "Spectral", serif;
  color: #3061DD;
}
#hero .left h5 {
  font-size: 16px;
  font-weight: 500;
  color: #3061DD;
}
#hero .left p {
  font-size: 24px;
  font-weight: 400;
  color: #666666;
}
#hero .left .action {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  width: 100%;
}
#hero .left .action button {
  font-size: 24px;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #3061DD;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: calc(50% - 16px);
}
#hero .left .action button:hover {
  background-color: #587ad0;
}
#hero .left .action button.secondary {
  background-color: #FFFFFF;
  color: #666666;
  border: 1px solid #DEDEDA;
}
#hero .left .action button.secondary:hover {
  background-color: #DEDEDA;
  color: #FFFFFF;
}
#hero .right {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#hero .right img {
  width: 95%;
  height: auto;
  display: block;
  filter: drop-shadow(0px 4px 40px rgba(0, 0, 0, 0.15));
}

.sep {
  width: 100%;
  height: 2px;
  background-color: #DEDEDA;
}

#attributes {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  text-wrap: nowrap;
  align-items: center;
  padding: 64px 0;
}
#attributes h2 {
  font-size: 24px;
  font-weight: 600;
}
#attributes h3 {
  font-size: 24px;
  font-weight: 500;
  color: #666666;
}

#work {
  display: flex;
  flex-direction: column;
  padding: 64px 0;
  gap: 64px;
}
#work h2 {
  font-size: 24px;
  font-weight: 500;
}
#work .cards {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 32px;
}
#work .cards .card {
  width: calc(33.333% - 21.333px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 2px solid #DEDEDA;
  border-radius: 16px;
  background-color: #FFFFFF;
  overflow: hidden;
  padding: 24px;
}
#work .cards .card .content {
  height: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#work .cards .card img {
  margin: -26px;
  margin-bottom: 0;
  width: calc(100% + 52px);
  height: auto;
  aspect-ratio: 2/1;
  display: block;
  border-radius: 0 0 16px 16px;
  object-fit: cover;
  object-position: top;
  border: 2px solid #DEDEDA;
}
#work .cards .card .text {
  display: flex;
  flex-direction: column;
}
#work .cards .card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}
#work .cards .card h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}
#work .cards .card p {
  font-size: 20px;
  font-weight: 500;
  color: #666666;
}
#work .cards .card .tags {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#work .cards .card .tags span {
  font-size: 20px;
  font-weight: 500;
  color: #666666;
}

#services {
  display: flex;
  flex-direction: column;
  padding: 64px 0;
  gap: 64px;
}
#services h2 {
  font-size: 24px;
  font-weight: 500;
}
#services .points {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#services .points .point {
  width: calc(20% - 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
#services .points .point h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}
#services .points .point p {
  font-size: 18px;
  font-weight: 500;
  color: #666666;
  text-align: center;
}
#services .points .point .text {
  width: 100%;
}

#process {
  display: flex;
  flex-direction: column;
  padding: 64px 0;
  gap: 64px;
}
#process h2 {
  font-size: 24px;
  font-weight: 500;
}
#process .timeline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 32px;
  border-top: 2px solid #666666;
}
#process .timeline .part {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  padding-top: 24px;
}
#process .timeline .part h4 {
  font-size: 18px;
  font-weight: 600;
  color: #3061DD;
}
#process .timeline .part h3 {
  font-size: 20px;
  font-weight: 600;
  text-wrap: nowrap;
}
#process .timeline .part p {
  font-size: 18px;
  font-weight: 500;
  color: #666666;
}
#process .timeline .part::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 16px;
  background-color: #666666;
}

#about {
  display: flex;
  flex-direction: row;
  padding: 64px 0;
  gap: 32px;
}
#about h2 {
  font-size: 24px;
  font-weight: 500;
}
#about .left {
  width: 100%;
  max-width: 50%;
  display: flex;
  background-color: #DEDEDA;
}
#about .left img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}
#about .right {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
#about .right h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Spectral", serif;
}
#about .right p {
  font-size: 20px;
  font-weight: 500;
  color: #666666;
}
#about .right .tags {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#about .right .tags span {
  font-size: 16px;
  font-weight: 500;
  color: #666666;
}
#about .right .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#rep {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 64px 0;
  gap: 64px;
}
#rep .left {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#rep .left img {
  width: 64px;
  height: auto;
}
#rep .left p {
  font-size: 20px;
  font-weight: 500;
  color: #666666;
}
#rep .sep {
  min-width: 2px;
  width: 2px;
  height: 200px;
}
#rep .right {
  max-width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
}
#rep .right .point {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
#rep .right .point svg {
  margin-bottom: 8px;
}
#rep .right .point h3 {
  font-size: 32px;
  font-weight: 600;
}
#rep .right .point h4 {
  font-size: 20px;
  font-weight: 500;
  color: #666666;
  text-wrap: nowrap;
}

#contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 64px 0;
  gap: 64px;
}
#contact .col {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#contact h2 {
  font-size: 20px;
  font-weight: 500;
  color: #666666;
}
#contact h1 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Spectral", serif;
  text-wrap: nowrap;
}
#contact .socials {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
#contact .socials a {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  color: #666666;
  gap: 16px;
}
#contact .socials a:hover {
  text-decoration: underline;
}
#contact .socials a svg, #contact .socials a img {
  width: 48px;
  min-width: 48px;
}
#contact .socials a .col {
  gap: 8px;
}
#contact .socials a h3 {
  font-size: 20px;
  font-weight: 600;
}
#contact .socials a p {
  font-size: 20px;
  font-weight: 500;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
  gap: 8px;
}
footer h2 {
  font-size: 24px;
  font-weight: 600;
}
footer h3 {
  font-size: 20px;
  font-weight: 500;
  color: #666666;
}

@media (max-width: 1300px) {
  #work {
    padding: 32px 0;
    gap: 24px;
  }
  #work .cards {
    flex-direction: column;
  }
  #work .cards .card {
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 0;
  }
  #work .cards .card img {
    margin: -2px;
    width: 40%;
    height: 250px;
    border-radius: 16px;
  }
  #work .cards .card .content {
    padding: 24px;
    padding-left: 0;
    gap: 16px;
  }
  #work .cards .card .tags {
    justify-content: flex-start;
    gap: 16px;
  }
}
@media (max-width: 1200px) {
  body {
    padding: 0 48px;
  }
  header {
    padding: 24px 48px;
  }
  header .nav-wrapper nav.mobile .menu-toggle {
    top: 24px;
    right: 48px;
  }
  #hero .left h1 {
    font-size: 64px;
  }
  #hero .left .action button {
    font-size: 20px;
  }
  #attributes {
    padding: 32px 0;
    justify-content: space-between;
  }
  #attributes h2, #attributes h3 {
    font-size: 20px;
  }
  #services {
    padding: 32px 0;
    gap: 24px;
  }
  #services .points {
    flex-wrap: wrap;
    justify-content: center;
    gap: 64px;
  }
  #services .points .point {
    width: calc(30% - 32px);
  }
  #process {
    padding: 32px 0;
    gap: 24px;
  }
  #process .timeline {
    gap: 18px;
  }
  body.uk #process .timeline {
    flex-direction: column;
    border-top: none;
    border-left: 2px solid #666666;
    margin-top: 10px;
  }
  body.uk #process .timeline .part {
    padding-top: 0;
    padding-left: 24px;
  }
  body.uk #process .timeline .part:first-child {
    margin-top: -10px;
  }
  body.uk #process .timeline .part::before {
    top: 10px;
    left: -2px;
    width: 16px;
    height: 2px;
  }
  #about {
    padding: 32px 0;
    gap: 24px;
  }
  #about .right {
    gap: 24px;
  }
  #about .right .content {
    gap: 16px;
  }
  #about .right .tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  #rep {
    padding: 32px 0;
    gap: 24px;
  }
  #rep .right .point h4 {
    font-size: 16px;
  }
  #contact {
    padding: 32px 0;
    gap: 24px;
  }
  #contact .socials a {
    gap: 12px;
  }
  #contact .socials a svg, #contact .socials a img {
    width: 40px;
    min-width: 40px;
  }
  #contact .socials a h3, #contact .socials a p {
    font-size: 14px;
  }
}
@media (max-width: 1120px) {
  #hero .left h1 {
    font-size: 52px;
  }
  body.uk #attributes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 32px 128px;
    text-wrap: wrap;
  }
  #rep {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  #rep .left {
    max-width: 100%;
  }
  #rep .sep {
    width: 100%;
    height: 2px;
  }
  #rep .right {
    width: 100%;
    max-width: unset;
    justify-content: space-around;
    gap: 16px;
  }
  #contact {
    flex-direction: column;
    gap: 32px;
  }
  #contact .col {
    width: 100%;
    max-width: unset;
    gap: 16px;
  }
  #contact .socials a {
    gap: 16px;
  }
  #contact .socials a svg, #contact .socials a img {
    width: 48px;
    min-width: 48px;
  }
  #contact .socials a h3, #contact .socials a p {
    font-size: 16px;
  }
}
body.uk #contact {
  flex-direction: column;
  gap: 32px;
}
body.uk #contact .col {
  width: 100%;
  max-width: unset;
  gap: 16px;
}
body.uk #contact .socials a {
  gap: 16px;
}
body.uk #contact .socials a .col {
  gap: 4px;
}

@media (max-width: 950px) {
  header nav ul {
    gap: 32px;
  }
  #hero {
    padding: 32px 0;
    padding-top: 48px;
    flex-direction: column;
    align-items: center;
  }
  #hero .left, #hero .right {
    max-width: 100%;
  }
  #hero .left {
    gap: 16px;
  }
  #hero .left h1 {
    font-size: 48px;
  }
  #hero .right {
    align-items: center;
  }
  #hero .right img {
    width: 90%;
    height: auto;
  }
  #process .timeline {
    flex-direction: column;
    border-top: none;
    border-left: 2px solid #666666;
    margin-top: 10px;
  }
  #process .timeline .part {
    padding-top: 0;
    padding-left: 24px;
  }
  #process .timeline .part:first-child {
    margin-top: -10px;
  }
  #process .timeline .part::before {
    top: 10px;
    left: -2px;
    width: 16px;
    height: 2px;
  }
}
@media (max-width: 850px) {
  header nav ul {
    display: none;
  }
  header .action button.menu-toggle {
    display: flex;
  }
  #attributes, body.uk #attributes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 32px 64px;
  }
  body.uk #attributes h3 {
    text-wrap: wrap;
  }
  #work .cards .card img {
    height: 200px;
  }
  #work .cards .card .content {
    padding: 16px;
    padding-left: 0;
  }
  #work .cards .card .content h3 {
    font-size: 20px;
  }
  #work .cards .card .content h4 {
    font-size: 18px;
  }
  #work .cards .card .content p {
    font-size: 16px;
  }
  #work .cards .card .content span {
    font-size: 16px;
  }
  #services .points {
    gap: 32px 64px;
  }
  #about {
    flex-direction: column;
  }
  #about h2.mobile {
    display: block;
  }
  #about .left {
    max-width: 100%;
    height: 300px;
  }
  #about .right {
    max-width: 100%;
    gap: 16px;
  }
  #about .right h2 {
    display: none;
  }
}
@media (max-width: 650px) {
  header .action .lang {
    display: none;
  }
  header .nav-wrapper nav.mobile .lang {
    display: flex;
  }
  #attributes, body.uk #attributes {
    padding: 32px 0;
    text-wrap: nowrap;
  }
  #attributes h2, #attributes h3, body.uk #attributes h2, body.uk #attributes h3 {
    font-size: 16px;
  }
  body.uk #attributes h3 {
    tetx-wrap: wrap;
  }
  #work .cards .card {
    flex-direction: column;
    gap: 16px;
  }
  #work .cards .card img {
    width: calc(100% + 4px);
    height: auto;
    aspect-ratio: 2/1;
    margin: -2px;
  }
  #work .cards .card .content {
    padding: 16px;
    padding-top: 0;
  }
  #work .cards .card .content h3 {
    font-size: 18px;
  }
  #work .cards .card .content h4 {
    font-size: 16px;
  }
  #work .cards .card .content p {
    font-size: 14px;
  }
  #work .cards .card .content span {
    font-size: 14px;
  }
  #services .points {
    flex-direction: column;
    gap: 32px;
  }
  #services .points .point {
    width: 100%;
    flex-direction: row;
    gap: 16px;
  }
  #services .points .point svg {
    width: 64px;
    min-width: 64px;
    height: 64px;
    min-height: 64px;
  }
  #services .points .point .text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  #services .points .point .text h3, #services .points .point .text p {
    text-align: left;
    text-wrap: wrap;
  }
  #rep .right {
    flex-direction: row;
    justify-content: space-around;
    gap: 32px 16px;
  }
  #rep .right .point svg {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  #rep .right .point h3 {
    font-size: 24px;
  }
  #rep .right .point .long {
    display: none;
  }
  #rep .right .point .short {
    display: block;
  }
  #rep .right .point h4 {
    font-size: 16px;
  }
  #contact .col h2 {
    font-size: 16px;
  }
  #contact .col h1 {
    font-size: 24px;
  }
  #contact .socials {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 500px) {
  body {
    padding: 0 24px;
  }
  header {
    padding: 24px 24px;
  }
  header .nav-wrapper nav.mobile .menu-toggle {
    top: 24px;
    right: 24px;
  }
  #hero .left {
    gap: 12px;
  }
  #hero .left h5 {
    font-size: 14px;
  }
  #hero .left h1 {
    font-size: 32px;
  }
  #hero .left p {
    font-size: 16px;
  }
  #hero .left .action button {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  #contact .col h1 {
    text-wrap: wrap;
  }
}
@media (max-width: 400px) {
  #hero .left .action {
    flex-direction: column;
    gap: 16px;
  }
  #hero .left .action button {
    width: 100%;
  }
  #attributes, body.uk #attributes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #attributes .attribute, body.uk #attributes .attribute {
    align-items: flex-start;
  }
  body.uk #attributes h3 {
    text-wrap: wrap;
  }
}

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