* {
  box-sizing: border-box;
}

html, body {
  font-family: "Plus Jakarta Sans", sans-serif, sans-serif;
  font-weight: 400;
  margin: 0;
  width: 100vw;
  max-width: 100%;
  background-color: #FFFFFF;
  color: #444;
  overflow-x: hidden;
}

a {
  color: #00B4FF;
  text-decoration: none;
}

img {
  max-width: 90vw;
}
img.rounded {
  border-radius: 10px;
}

h1 {
  font-size: 2.2rem;
  margin: 0 0 20px 0;
  text-align: center;
}
@media screen and (min-width: 900px) {
  h1 {
    text-align: left;
  }
}

h2 {
  font-size: 1.7rem;
  text-transform: uppercase;
  margin: 0 0 40px 0;
  text-align: center;
  color: #63b5ff;
}
h2 span {
  position: relative;
}
@media screen and (min-width: 900px) {
  h2 {
    font-size: 2rem;
    text-align: left;
  }
}

section {
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
}

.centered-flex, section {
  display: flex;
  align-items: center;
  justify-content: center;
}

video {
  max-width: 100%;
}

.grid {
  display: grid;
  grid-gap: 16px;
  place-items: start;
}
.grid div {
  margin: 20px 0;
  place-items: start;
}

@media screen and (min-width: 900px) {
  .grid-3 {
    grid-template-columns: auto 32% 32%;
  }
}

@media screen and (min-width: 900px) {
  .grid-2 {
    grid-template-columns: auto 48%;
  }
}

@media screen and (min-width: 900px) {
  .grid-4 {
    grid-template-columns: auto 24% 24% 24%;
  }
}

@media screen and (min-width: 900px) {
  .grid-5 {
    grid-template-columns: auto 20% 20% 20% 20%;
  }
}

.grid-l {
  place-items: center;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .grid-l {
    place-items: start;
    text-align: left;
    grid-template-columns: 356px auto;
    margin-bottom: 50px;
  }
}

.grid-r {
  place-items: center;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .grid-r {
    place-items: start;
    text-align: left;
    grid-template-columns: auto 356px;
    margin-bottom: 50px;
  }
}

.inner {
  max-width: 1200px;
  width: 100vw;
  padding: 0 10px;
}
.inner.grid {
  place-items: center;
}
@media screen and (min-width: 900px) {
  .inner {
    padding: 0;
    grid-template-columns: auto auto;
  }
}

.btn-call, .btn-call:visited {
  z-index: 10;
  position: fixed;
  display: block;
  text-align: center;
  color: #FFFFFF;
  font-size: 32px;
  line-height: 60px;
  height: 60px;
  padding: 0;
  width: 60px;
  bottom: 150px;
  right: 27px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2509803922);
  border-radius: 50%;
  background-color: #50A8B1;
}
.btn-call svg, .btn-call:visited svg {
  fill: #FFFFFF;
}
@media screen and (min-width: 900px) {
  .btn-call, .btn-call:visited {
    display: none;
  }
}

.btn-call-whatsapp, .btn-call-whatsapp:visited {
  color: #DCF8C6;
  background-color: #128C7E;
  bottom: 85px;
}

form input, form textarea {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  background-color: #f5f5f5;
  width: 100%;
  border-width: 0 0 0 5px;
  border-color: transparent;
  color: #666;
  margin: 5px 0 10px 0;
  padding: 10px;
}
form input:valid, form textarea:valid {
  border-color: #9d9;
}
form textarea {
  resize: none;
}
form button {
  width: 100%;
  background-color: #f5f5f5;
  border: solid 1px #999;
  border-color: #999;
  color: #666;
  padding: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
}
form .choice {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 10px;
  place-items: center;
}
form .choice input[type=radio] {
  display: none;
}
form .choice input[type=radio] + label {
  text-transform: uppercase;
  background-color: #f5f5f5;
  color: #999;
  font-size: 0.7rem;
  padding: 10px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  border: solid 1px #999;
}
form .choice input[type=radio]:checked + label {
  background-color: #00B4FF;
  border-color: #00B4FF;
  color: #ffffff;
  box-shadow: none;
}

nav {
  height: 120px;
  transition: 0.5s;
  width: 100vw;
  z-index: 10;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .phone {
  font-size: 1.1rem;
  font-weight: 700;
}
nav.fixed {
  background-color: #FFF;
  height: 60px;
  box-shadow: 0 0 10px rgba(68, 68, 68, 0.2);
}
nav.fixed img {
  height: 52px;
  transition: 0.5s;
}
nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav img {
  height: 104px;
  transition: 0.5s;
}
nav a {
  border-radius: 5px;
  color: #00B4FF;
  font-weight: bold;
  padding: 15px;
}
nav a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  background-color: #f5f5f5;
}
@media screen and (max-width: 900px) {
  nav {
    background-color: #FFF;
    height: 60px;
    box-shadow: 0 0 10px rgba(68, 68, 68, 0.2);
  }
  nav img {
    height: 52px;
    transition: 0.5s;
  }
}

#intro {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1920' height='800' preserveAspectRatio='none' viewBox='0 0 1920 800'%3e%3cg clip-path='url(%26quot%3b%23SvgjsClipPath1033%26quot%3b)' fill='none'%3e%3crect width='1920' height='800' x='0' y='0' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/rect%3e%3ccircle r='133.335' cx='-71.26' cy='50.88' stroke='%2300b4ff' stroke-opacity='0.1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='133.335' cx='471.61' cy='524.36' stroke='%2300b4ff' stroke-opacity='0.1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='133.335' cx='1162.06' cy='1188.52' stroke='%2300b4ff' stroke-opacity='0.1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='245.45' cx='720.91' cy='133.88' stroke='%2300b4ff' stroke-opacity='0.1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='97.25' cx='25.35' cy='450.95' stroke='%2300b4ff' stroke-opacity='0.1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='186.175' cx='273.56' cy='263.51' stroke='%2300b4ff' stroke-opacity='0.1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='189.59' cx='1733.62' cy='539.26' stroke='%2300b4ff' stroke-opacity='0.1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='236.115' cx='1508.54' cy='12.22' stroke='%2300b4ff' stroke-opacity='0.1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='195.415' cx='324.9' cy='18.17' stroke='%2300b4ff' stroke-opacity='0.1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='186.875' cx='1018.6' cy='618.6' stroke='%2300b4ff' stroke-opacity='0.1' stroke-width='2'%3e%3c/circle%3e%3c/g%3e%3cdefs%3e%3cclipPath id='SvgjsClipPath1033'%3e%3crect width='1920' height='800' x='0' y='0'%3e%3c/rect%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  min-height: 100vh;
}
#intro .inner {
  /*grid-template-areas: 
    "text"
    "link"
  "img";*/
}
#intro .inner a {
  grid-area: link;
  display: flex;
  background-color: #00B4FF;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 10px;
  border: none;
  width: 100%;
  align-items: center;
  justify-content: center;
}
#intro .inner img {
  grid-area: img;
}
#intro .inner .text {
  grid-area: text;
}
#intro .inner .videos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 900px) {
  #intro .inner .videos {
    flex-direction: column;
  }
}
#intro #introtext {
  z-index: 2;
  min-height: 8rem;
  width: 100%;
  position: relative;
  color: #515151;
  font-size: 30px;
}
#intro #introtext > div {
  height: 8rem;
}
#intro #introtext b {
  color: #00B4FF;
}
#intro img {
  max-width: 100%;
  width: auto;
  height: auto;
}
@media screen and (max-width: 380px) {
  #intro #introtext {
    font-size: 30px;
  }
}
@media screen and (min-width: 900px) {
  #intro {
    height: 80vh;
    z-index: 0;
  }
  #intro .inner {
    grid-template-columns: auto 540px;
    /*grid-template-areas: 
      "text img"
      "link img";*/
  }
  #intro img {
    border-radius: 10px;
  }
  #intro #introtext {
    display: flex;
    align-items: center;
    z-index: 2;
    min-height: 8rem;
    width: 100%;
    position: inherit;
    color: #515151;
    font-size: 30px;
  }
  #intro #introtext > div {
    height: 8rem;
  }
  #intro #introtext b {
    color: #00B4FF;
  }
}

#steps {
  background-color: #eaeaea;
}
#steps .step {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: row;
  grid-gap: 50px;
}
#steps .step .st {
  color: #555;
  display: flex;
  flex-direction: column;
}
#steps .step .st strong {
  margin-bottom: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 900px) {
  #steps .step {
    grid-auto-flow: column;
  }
  #steps .step .st:not(:first-child) {
    border-left: 1px solid #ccc;
    padding-left: 20px;
  }
}

#contact {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1920' height='1080' preserveAspectRatio='none' viewBox='0 0 1920 1080'%3e%3cg clip-path='url(%26quot%3b%23SvgjsClipPath1090%26quot%3b)' fill='none'%3e%3crect width='1920' height='1080' x='0' y='0' fill='rgba(99%2c 181%2c 255%2c 1)'%3e%3c/rect%3e%3ccircle r='180' cx='159.82' cy='-4.92' stroke='white' stroke-opacity='1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='180' cx='716.27' cy='705.34' stroke='white' stroke-opacity='1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='165.805' cx='80.7' cy='376.87' stroke='white' stroke-opacity='1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='181.85' cx='1255.3' cy='574.83' stroke='white' stroke-opacity='1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='285.455' cx='1640.64' cy='902.83' stroke='white' stroke-opacity='1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='185.455' cx='173.88' cy='738.54' stroke='white' stroke-opacity='1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='98.155' cx='427.73' cy='803.09' stroke='white' stroke-opacity='1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='262.2' cx='10.39' cy='229.81' stroke='white' stroke-opacity='1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='139.385' cx='865.42' cy='588.85' stroke='white' stroke-opacity='1' stroke-width='2'%3e%3c/circle%3e%3ccircle r='237.415' cx='1711' cy='802.31' stroke='white' stroke-opacity='1' stroke-width='2'%3e%3c/circle%3e%3c/g%3e%3cdefs%3e%3cclipPath id='SvgjsClipPath1090'%3e%3crect width='1920' height='1080' x='0' y='0'%3e%3c/rect%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-attachment: fixed;
}
#contact .inner {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 10px 10px 10px 1px rgba(0, 0, 0, 0.2);
  margin: 0 10px;
}
#contact img {
  display: none;
}
@media screen and (min-width: 900px) {
  #contact img {
    display: block;
  }
}

#clients .rate-us {
  margin-top: 20px;
}
#clients .card-google-comment {
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(68, 68, 68, 0.2);
  border-radius: 4px;
  padding: 16px;
  color: #444;
  font-size: 0.8rem;
  width: 100%;
}
#clients .card-google-comment .author {
  grid-template-columns: auto auto;
  margin: 10px 0 0 0;
}
#clients .card-google-comment .author-name {
  color: #00B4FF;
  font-weight: 700;
  margin: 0;
}
#clients .card-google-comment .author-rate {
  place-self: end;
  margin: 0;
}
@media screen and (min-width: 900px) {
  #clients .card-google-comment {
    margin-bottom: 20px;
  }
}

#more {
  background-color: #eee;
}
#more .content {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media screen and (max-width: 900px) {
  #more .content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
#more .card {
  background-color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 5px;
}
#more .card span {
  text-align: center;
}
#more .card span:nth-child(2) {
  display: block;
  font-weight: bold;
  margin: 20px 0;
}
#more .card img {
  width: 60px;
}

footer {
  width: 100vw;
  background-color: #EEEEEE;
  margin: 0 auto;
  padding-top: 50px;
  position: relative;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 8;
  border-top: 1px solid #BBBBBB;
  padding: 40px 0 20px;
  background-color: #f5f5f5;
  color: #555;
}
footer a {
  color: #00B4FF;
}
footer a, footer b {
  display: contents;
}
footer .space {
  padding: 10px 0;
}
footer .button {
  border: solid 1px #00B4FF;
  margin-top: 15px;
  padding: 10px;
  border-radius: 10px;
}
footer .button:hover {
  background-color: #DDF0F0;
}
footer .phone {
  font-size: 2rem;
  font-weight: 700;
  width: 100%;
  border: solid 1px;
}
footer .phone:hover {
  background-color: #DDF0F0;
}
footer .inner > div:last-child {
  font-size: 0.75rem;
}
footer .inner > div:not(:last-child) {
  border-bottom: 1px dashed #BBBBBB;
}
footer .self-end {
  place-self: end;
  place-items: center;
  display: flex;
}
footer .self-end img {
  max-height: 24px;
  margin-left: 15px;
}
footer svg {
  max-height: 20px;
  height: 20px;
}
footer .iconphrase {
  display: grid;
  grid-template-columns: 32px auto;
  margin-bottom: 10px;
}
footer .iconphrase svg {
  fill: #00B4FF;
}
footer .social {
  width: 100%;
  display: flex;
}
footer .social svg {
  padding: 4px;
  border-radius: 4px;
  margin-left: 8px;
}
footer .social .facebook {
  background-color: #3B5999;
}
footer .social .instagram {
  background-color: #c13584;
}

.icon-svg {
  position: absolute;
  right: -40px;
  top: -10px;
}
.icon-svg g {
  animation: blink 2s infinite;
  transform-origin: center center;
}
.icon-svg .star2 {
  animation-delay: 0.5s;
}
.icon-svg .star3 {
  animation-delay: 0.8s;
}

@keyframes blink {
  0%, 100% {
    scale: 0;
    opacity: 0;
  }
  50% {
    scale: 1;
    opacity: 1;
  }
}/*# sourceMappingURL=limpersecolp.css.map */