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

@font-face {
  font-family: "Nunito ExtraBold";
  src: url("./assets/fonts/Nunito-ExtraBold.ttf");
}

@font-face {
  font-family: "Nunito Bold";
  src: url("./assets/fonts/Nunito-Bold.ttf");
}

.bg-overlay {
  width: 100%;
  min-height: 100vh;
  background-image: url("./assets/img/bg-image.jpg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 600px;
  max-width: 100%;
  z-index: 2;
}

.container .logo {
  width: 536px;
  margin-bottom: 26px;
  max-width: 100%;
}

.content-wrapper .heading h1 {
  font-family: "Nunito ExtraBold", sans-serif;
  font-size: 32px;
  line-height: 44px;
  color: #3caa5b;
}

.content-wrapper .heading h1::after {
  content: "";
  width: 100%;
  display: block;
  height: 4px;
  border-radius: 4px;
  background: #3caa5b;
  margin-top: 16px;
  margin-bottom: 27px;
}

.col-wrapper {
  display: flex;
}

.col-wrapper .col {
  width: 50%;
}

.col-wrapper .col p {
  font-family: "Nunito Bold", sans-serif;
  font-size: 18px;
  line-height: 25px;
  color: #45545c;
}

.col-wrapper .col p.strong {
  font-family: "Nunito ExtraBold", sans-serif;
  color: #3caa5b;
}

.col-wrapper .col a {
  font-family: "Nunito Bold", sans-serif;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 25px;
  color: #3caa5b;
  text-decoration: none;
  margin-top: 16px;
  transition: color 0.3s;
}

.col-wrapper .col a:hover {
  color: #45545c;
}

.col-wrapper .col a svg {
  margin-right: 8px;
}

@media screen and (max-width: 1300px) {
  .bg-overlay::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background: #ffffffbf;
    bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .container {
    padding: 80px 15px;
  }

  .col-wrapper {
    flex-direction: column;
  }

  .col-wrapper .col {
    width: 100%;
    margin-bottom: 24px;
  }
}
