* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Figtree", sans-serif;
  font-size: 62.5%;
}
body {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1b68ff;
}

body img {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 100%;
  height: auto;
}
body .container_general {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  left: 14.58333333vw;
  bottom: 15.37037037vh;
}

body .container_general h1 {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 46rem;
  width: 100%;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 12.03703704vh;
}

body .container_general .image {
  max-width: 100%;
  height: auto;
  margin-bottom: 10.92592593vh;
}

body .container_general .image svg {
  max-width: 100%;
  height: auto;
}

body .container_general h6 {
  position: relative;
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
}

body .container_general p {
  position: relative;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 3.5rem;
}

body .container_general .info {
  position: relative;
  display: flex;
  gap: 10rem;
}

body .container_general .info .telephone {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

body .container_general .info .telephone a {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

body .container_general .info .telephone a:hover {
  color: #ffffffc4;
}

body .container_general .info .email a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  line-height: 1.3;
  padding: 1.48148148vh 4.0625vw;
  border: 0.1rem solid #ffffff;
  border-radius: 3rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  height: 5.8rem;
}

body .container_general .info .email a:hover {
  background-color: #ffffff;
  color: #1b68ff;
}

@media (max-width: 840px) {
  body .container_general {
    position: relative;
    left: unset;
    bottom: unset;
    padding-left: 9.58333333vw;
    padding-right: 9.58333333vw;
  }

  body .container_general .info {
    flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  body .container_general h1 {
    font-size: 3rem;
  }
}
