@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

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

body {
  font-family: "Poppins", sans-serif;
  background: #121212;
}

.container {
  max-width: 70rem;
  padding: 0 2rem;
  margin: 0 auto;
}

header {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #121212;
}

header:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(18, 18, 18, 0.11);
  z-index: 25;
}

.mountain1 {
  position: absolute;
  bottom: -100px;
  width: 1500px;
  right: 0;
  z-index: 19;
}

.person {
  position: absolute;
  width: 650px;
  bottom: -100px;
  left: -70px;
  z-index: 20;
}

.mountain2 {
  position: absolute;
  width: 1100px;
  bottom: -100px;
  left: 0;
  z-index: 18;
}

.mountain3 {
  position: absolute;
  width: 900px;
  bottom: 150px;
  right: 0;
  z-index: 17;
}

.sky {
  position: absolute;
  width: 2100px;
  bottom: 250px;
  right: 0;
}

nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 30;
  background-color: #121212;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}

.logo span {
  font-weight: 300;
}

.hamburger-menu {
  width: 1.55rem;
  height: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hamburger-menu img {
  width: 40px;
}
.me {
  color: #3992ff;
}
.big-title {
  position: absolute;
  z-index: 30;
  line-height: 4rem;
  top: calc(50% - 2rem);
  width: 100%;
  text-align: center;
  font-size: 5rem;
  font-weight: bolder;
  color: #fff;
}
.text {
  color: #fff;
  font-weight: 500;
}
/* 2 */
section {
  width: 100%;
  background-color: #121212;
  position: relative;
}

section .container {
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

section img {
  width: 100%;
}

.content {
  color: #fff;
  transform: translateY(-50px);
}

.imgContainer {
  transform: translateY(50px);
}
.imgContainer img {
  border-radius: 0px;
}

.title {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  position: relative;
}

.border {
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 0;
}

.shadow {
  position: absolute;
  bottom: 100%;
  height: 300px;
  width: 100%;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top, #121212, transparent);
}

.direct-ul-links {
  list-style: none;
}
.ul-links {
  list-style: none;
}
.direct-ul-links li {
  display: inline-block;
  border-radius: 4px;
}
.direct-social-link {
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  margin: 40px 0px;
  padding: 10px 25px;
  border: 0.5px solid #fff;
  transition: 0.3s ease-in-out;
}
.direct-social-link:hover {
  transition: 0.3s ease-in-out;
  background-color: #3992ff;
}
.freework {
  color: #3c584a;
  font-weight: bolder;
}
.top-rated {
  margin: -10px 0.5px;
  width: 25px;
  height: 25px;
}
.companies {
  color: #fff;
  font-weight: bolder;
}
details {
  border-radius: 4px;
  padding: 0.5em 0.5em 0;
  transition: 0.3s ease-in-out;
  color: #fff;
}

summary {
  font-weight: bold;
  margin: -0.5em -0.5em 0;
  padding: 0.5em;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

details[open] {
  padding: 0.5em;
  transition: 0.3s ease-in-out;
}

details[open] summary {
  margin-bottom: 0.5em;
  transition: 0.3s ease-in-out;
}
.WORK {
  list-style: none;
}
.WORK li {
  margin: 4px 0px;
  border-bottom: 1px solid #fff;
}
.WORK li a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 850px) {
  section .container {
    grid-template-columns: 1fr;
  }
  .direct-social-link {
    color: #fff;
    text-decoration: none;
    margin: 2px;
    padding: 6px 8px;
    border: 1px solid #fff;
    display: inline-block !important;
    font-size: 14px;
  }
  .imgContainer img {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .big-title {
    font-size: 3rem;
  }
  .text {
    font-size: 0.8rem;
  }
  .title {
    font-size: 1.2rem;
  }
  .imgContainer img {
    display: none;
  }
  .hamburger-menu img {
    width: 25px;
  }
  .d-flex-flags {
    width: 32%;
  }
  .d-flex-flags img {
    width: 30px;
    margin: 2px;
    height: 20px;
  }
}
.bg-n {
  background: #3992ff;
}
::selection {
  color: #3992ff;
  background: #fff;
}
.d-flex-flags {
  margin: 10px 0;
  width: 29%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rounded-img {
  border-radius: 50%;
}
