* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-color: #fbfbfb;
  --text-primary: #000;
  --text-sec: #2d2d2d;
  --landing-bg: #c9c9c9;
  --footer-bg: #434343;
  --padding: 8%;
  --section-space: 200px;
}

body {
  max-width: 1920;
  margin: auto;
  background-color: var(--bg-color);
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

ul {
  list-style-type: none;
}

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

h1 {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.3em;
}

h2 {
  font-size: 36px;
  font-weight: 500;
}

p {
  color: var(--text-sec);
  line-height: 25px;
}

button {
  border: none;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  padding: 10px 20px;
  background-color: var(--text-primary);
  color: var(--bg-color);
  border-radius: 4px;
  cursor: pointer;
  transition: color, background-color 0.2s ease-in-out;
}
button:hover {
  background-color: transparent;
  color: var(--text-primary);
}

li,
button span {
  position: relative;
}
li::before,
button span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: #18272f;
  bottom: -2px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
li:hover::before, li:focus::before,
button span:hover::before,
button span:focus::before {
  transform-origin: left;
  transform: scaleX(1);
}

button:hover span::before {
  transform-origin: left;
  transform: scaleX(1);
}

header {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
  padding: 10px var(--padding);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
header img {
  height: 55px;
}
header ul {
  display: flex;
  align-items: center;
}
header ul li {
  margin-right: 40px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
header ul li:last-child {
  margin-right: 0;
}
header ul li:last-child::before {
  display: none;
}
header .ham {
  width: 25px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  display: none;
}
header .ham span {
  width: 100%;
  height: 3px;
  margin-bottom: 4px;
  border-radius: 500px;
  background-color: var(--text-primary);
  transition: 0.2s ease-in-out;
}
header .ham span:nth-child(1) {
  width: 50%;
}
header .ham span:nth-child(2) {
  width: 75%;
}
header .ham span:nth-child(3) {
  margin-bottom: 0;
}
header .ham:hover span {
  width: 100% !important;
}
header .mobile-links {
  position: absolute;
  right: -300px;
  top: 0;
  flex-direction: column;
  height: 100vh;
  width: 300px;
  background-color: var(--bg-color);
  z-index: 6;
  padding: 50px 70px;
  pointer-events: none;
  transition: right 0.3s ease-in-out;
}
header .mobile-links svg {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
header .mobile-links ul {
  margin-top: 70px;
  flex-direction: column;
}
header .mobile-links ul li {
  margin: 0;
  margin-bottom: 30px;
}
header .bg-blur {
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.719);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  transition: opacity 0.3s ease-in-out;
}

.landing {
  width: 100%;
  padding: 0 calc(var(--padding) + 5%);
  background: linear-gradient(269deg, #c9c9c9 0%, rgba(201, 201, 201, 0) 100%);
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
}
.landing .content {
  width: 50%;
}
.landing .content h1 {
  max-width: 800px;
}
.landing .content p {
  opacity: 0.9;
  max-width: 530px;
  line-height: 1.75em;
  margin: 40px 0 30px;
}
.landing img {
  max-width: 500px;
  width: 40%;
  transform: translateY(52px);
  border-radius: 4px;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.25);
}

.about {
  text-align: center;
  margin: 0 auto;
  padding-top: calc(var(--section-space) + 50px);
  max-width: 720px;
}
.about h2 {
  margin-bottom: 20px;
}

.desc {
  padding: var(--section-space) var(--padding) 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.desc.happy {
  justify-content: flex-end;
}
.desc.happy img {
  margin-right: 0;
  margin-left: 100px;
}
.desc img {
  max-width: 780px;
  width: 50%;
  border-radius: 40px;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.25);
  margin-right: 100px;
}
.desc .content {
  width: 40%;
  max-width: 520px;
}
.desc .content h2 {
  margin-bottom: 30px;
}

.services {
  padding: var(--section-space) var(--padding) 0;
}
.services .title {
  text-align: center;
}
.services .title h2 {
  margin-bottom: 10px;
}
.services .title p {
  color: #676565;
  text-transform: uppercase;
  font-size: 14px;
}
.services .container {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.services .container .content {
  width: 33.3333333333%;
  padding: 35px 50px;
}
.services .container .content h3 {
  display: flex;
  margin-bottom: 25px;
  color: #333;
  font-size: 24px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 3px solid #333;
  max-width: 325px;
}
.services .container .content h3 span {
  margin-right: 10px;
}
.services .container .content p {
  color: #404040;
}

footer {
  position: relative;
  background-color: var(--footer-bg);
  padding: 50px var(--padding) 80px;
  margin-top: calc(var(--section-space) / 2);
  color: var(--bg-color);
  display: flex;
  justify-content: space-between;
  gap: 150px;
}
footer p {
  color: inherit;
}
footer .content {
  max-width: 650px;
  width: 35%;
}
footer .content h2 {
  margin-bottom: 20px;
}
footer .contact {
  display: flex;
  gap: 100px;
  font-size: 18px;
}
footer .contact h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  border-bottom: 2px solid currentColor;
  padding: 10px 0;
}
footer .contact a {
  text-decoration: underline;
  cursor: pointer;
}
footer .contact .container {
  min-width: 280px;
}
footer .contact .container .social {
  margin-bottom: 20px;
}
footer .contact .container .social p {
  margin-bottom: 5px;
}
footer .contact .container .social .btns {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: none;
}
footer .contact .container .social .btns a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 5px 10px;
  border: 1px solid currentColor;
  border-radius: 4px;
}
footer .copyright {
  color: #dedede;
  font-size: 14px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1320px) {
  :root {
    --padding: 5%;
  }
  .services .container .content {
    width: 50%;
    height: 300px;
  }
  footer {
    flex-direction: column;
    gap: 50px;
  }
  footer .content {
    width: auto;
    max-width: none;
  }
  footer .contact {
    gap: 50px;
  }
  footer .contact .container {
    min-width: auto;
  }
}
@media (max-width: 1050px) {
  :root {
    --section-space: 150px;
  }
  header img {
    height: 40px;
  }
  header .nav-links {
    display: none;
  }
  header .ham {
    display: flex;
  }
  header.active .mobile-links {
    right: 0;
    pointer-events: initial;
  }
  header.active .bg-blur {
    opacity: 1;
    pointer-events: initial;
  }
  .landing {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .landing .content {
    width: 100%;
    margin: 50px 0;
  }
  .landing img {
    display: none;
  }
  .about {
    padding: var(--section-space) var(--padding);
  }
  .desc {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }
  .desc.happy .content {
    order: 2;
  }
  .desc img {
    width: 100%;
    margin: 0 !important;
  }
  .desc .content {
    width: 100%;
    max-width: 800px;
  }
  .services .container .content {
    padding: 30px 25px;
  }
}
@media (max-width: 700px) {
  :root {
    --padding: 4%;
    --section-space: 100px;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
  .landing {
    padding: 0 var(--padding);
  }
  .landing .content p {
    margin-top: 30px;
  }
  .services .container {
    margin-top: 30px;
  }
  .services .container .content {
    width: 100%;
    height: auto;
    padding: 20px 0;
  }
  .services .container .content h3 {
    max-width: 400px;
  }
  footer .contact {
    flex-direction: column;
    gap: 20px;
  }
  footer .contact .container {
    max-width: 300px;
  }
}/*# sourceMappingURL=styles.css.map */