*,
::after,
::before {
  box-sizing: border-box;
}

html {
  font-size: inherit;
}

/* Reset */

p,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
li {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.3;
}

/* Design Body */

body {
  margin: 0;
  padding: 0;
}

.container {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 780px;
  hyphens: auto;
  hyphenate-limit-chars: 7 4 5;
  font-family: "Atkinson Hyperlegible", Arial, sans-serif;
  font-weight: 400;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.content {
  padding: clamp(25px, 5vw, 35px);
}

.intro p:first-of-type {
  padding-top: 0;
}

/* Text */

h1 {
  font-size: 2.1em;
  font-weight: 700;
  padding-top: 30px;
  position: relative;
  display: inline-block;
}

h1:before {
  position: absolute;
  top: 25px;
  left: -2.5%;
  height: 26px;
  width: 55%;
  opacity: .1;
  border-radius: 5px;
  content: "";
}

h2 {
  font-size: 1.25em;
  font-weight: 400;
  padding-top: 10px;
}

h3 {
  font-size: 1.15em;
  font-weight: 400;
  padding-top: 30px;
  padding-bottom: 5px;
}

h3 b,
h3 strong {
  display: inline-block;
  position: relative;
  font-weight: 700;
}

h3 b:before,
h3 strong:before {
  position: absolute;
  top: -5px;
  left: -11px;
  height: 15px;
  width: 100%;
  opacity: .1;
  border-radius: 4px;
  content: "";
}

.footer-box h3 {
  padding-top: 0;
}

.footer-box h3+p {
  padding-top: 10px;
}

p {
  padding-top: 20px;
}

a,
a:active,
a:focus {
  outline: none;
}

a {
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding-top: 15px;
}

li {
  padding-left: 15px;
  position: relative;
  padding-top: 3px;
}

li:before {
  position: absolute;
  top: 7px;
  left: -3px;
  content: "";
  height: 9px;
  width: 9px;
  transform: rotate(45deg);
}

b,
strong {
  font-weight: 700;
}



/* Design */

.header {
  margin: 0;
  padding: 0;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.main-pic {
  width: 390px;
  height: 300px;
  position: absolute;
  top: -2px;
  right: 0;
}

.main-pic img {
  height: 102%;
  border-radius: 95px 0 0 60px;
}

.bow {
  height: 300px;
  position: absolute;
  top: 0;
  right: 312px;
  z-index: 10;
}

.logo {
  height: 60px;
  width: auto;
  display: inline-block;
  margin-left: clamp(25px, 5vw, 35px);
  margin-top: 120px;
}

.logo img {
  width: 100%;
}

.wrapp {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 40px;
}

.col {
  width: 50%;
}

.spacer-var p:first-child,
.spacer-var ul:first-child {
  padding-top: 0;
}

.footer img {
  width: 100%;
  display: block;
}

.footer img:last-child {
  transform: rotate(180deg);
}

.footer-box {
  margin: clamp(25px, 5vw, 35px);
  padding: 25px;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 16px;
  gap: 20px;
}

.box-1 {
  width: 62%;
}

.box-2 {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  align-self: center;
}

.box-3,
.box-4 {
  width: 47%;
  border-radius: 10px;
  padding: 15px;
  hyphens: none;
  display: flex;
  flex-wrap: nowrap;
  column-gap: 15px;
  align-items: center;
}

.box-3 p,
.box-4 p {
  padding-top: 0;
}

.box-3 img,
.box-4 img {
  width: 30px;
  display: inline-block;
}

/* Buttons */

.buttons {
  font-weight: 700;
  line-height: 1.2em;
  width: 100%;
  max-width: 140px;
}

.application,
.whatsapp {
  text-align: center;
  padding: 8px 10px;
  transition: all .3s ease;
  border-radius: 8px;
}

.application a,
.whatsapp a {
  color: #fff;
}

/* LDAD */

.ldad {
  display: none;
}

@media only screen and (max-width: 779.98px) {

  .container {
    border: none !important;
  }

}

@media only screen and (max-width: 750px) {

  .header {
    margin: 0;
    padding: 0;
    height: auto;
  }

  .main-pic {
    width: 100%;
    height: 280px;
    position: relative;
    top: auto;
    right: auto;
  }

  .main-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }

  .bow {
    display: none;
  }

  .header .logo {
    height: 60px;
    width: auto;
    display: inline-block;
    margin-top: 0;
    margin: clamp(25px, 5vw, 35px);
  }

  .wrapp {
    flex-direction: column;
  }

  .col {
    width: 100%;
  }

}

@media only screen and (max-width: 640px) {

  h1 {
    font-size: 2em;
    line-height: 1.15em;
  }

  h2 {
    padding-top: 5px;
  }

  .footer-box {
    margin: clamp(25px, 5vw, 35px);
    padding: 25px;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 16px;
    gap: 20px;
  }

  .box-1,
  .box-3,
  .box-4 {
    width: 100%;
  }

  .buttons {
    max-width: 100%;
  }




}