@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
* {
  font-family: 'Lato', sans-serif !important;
}

body {
  font-size: 16px;
  background-color: #FBFBFB;
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  font-weight: unset;
  font-size: unset;
}

.img-fluid {
  max-width: 100%;
}

.cta {
  font-size: 18px;
  font-weight: 400;
  padding: 14px 30px;
  border-radius: 90px;
  -webkit-transition: all .2s;
  transition: all .2s;
  margin: 0 8px;
}

.cta-primary {
  color: #FFF;
  background-color: #000;
  border: 1px solid #000;
}

.cta-primary:hover {
  color: #000;
  background-color: transparent;
}

.cta-secondary {
  color: #000;
  background-color: transparent;
  border: 1px solid #000;
}

.cta-secondary:hover {
  color: #FFF;
  background-color: #000;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

section {
  margin-bottom: 4rem;
}

.top .top-wrapper {
  border-radius: 30px;
  -webkit-box-shadow: 0px 3px 32px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 32px 0px rgba(0, 0, 0, 0.15);
  background: url("../img/hero_bgrnd_1.png") center no-repeat;
  background-size: cover;
}

.top .top-wrapper .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-bottom: 24rem;
}

.top .top-wrapper .logo img {
  margin: 2rem 4rem;
}

@media screen and (max-width: 768px) {
  .top .top-wrapper {
    background: url("../img/hero_bg_mobile_small_1.png") bottom center no-repeat;
  }
  .top .top-wrapper .logo {
    padding-bottom: 38rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 380px) {
  .top .top-wrapper {
    background: url("../img/hero_bg_mobile_small.png") top no-repeat;
    background-size: cover;
  }
  .top .top-wrapper .logo {
    padding-bottom: 24rem;
  }
  .top .top-wrapper .logo img {
    margin: 2rem;
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 380px) and (max-width: 340px) {
  .top .top-wrapper .logo {
    padding-bottom: 20rem;
  }
}

.buttons .button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.buttons .button-wrapper .cta {
  margin: .5rem;
}

.products .container .product-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.products .container .product {
  position: relative;
  background-color: #FFF;
  border-radius: 30px;
  text-align: center;
  -webkit-box-shadow: 0px 3px 32px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 32px 0px rgba(0, 0, 0, 0.15);
  padding: 3rem 2rem;
  margin: 1rem;
  -webkit-transition: all .2s;
  transition: all .2s;
  border-bottom: 6px solid transparent;
}

.products .container .product:hover {
  border-bottom: 6px solid #000;
}

.products .container .product:hover img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.products .container .product:hover .arrow-container .arrow {
  background-color: #FFF;
}

.products .container .product:hover .arrow-container .arrow .arrow-svg {
  stroke: #000;
}

.products .container .product img {
  margin-bottom: 4rem;
  -webkit-transition: all .2s;
  transition: all .2s;
}

@media screen and (max-width: 468px) {
  .products .container .product img {
    margin-bottom: 2rem;
  }
}

.products .container .product .product-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media screen and (max-width: 468px) {
  .products .container .product .product-name {
    font-size: 21px;
  }
}

.products .container .product .arrow-container {
  position: absolute;
  top: 100%;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.products .container .product .arrow-container .arrow {
  background-color: #000;
  border-radius: 90px;
  padding: 8px 13px;
  bottom: -50%;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.products .container .product .arrow-container .arrow .arrow-svg {
  position: relative;
  stroke: #FFF;
  left: 1px;
  top: 1px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

footer .footer {
  text-align: center;
  border-radius: 30px 30px 0 0;
  -webkit-box-shadow: 0px 3px 32px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 32px 0px rgba(0, 0, 0, 0.15);
  background-color: #FFF;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

footer .disclamer {
  font-size: 14px;
  color: #707070;
  margin: 0 4rem .5rem;
}

footer .disclamer a {
  text-decoration: underline;
  -webkit-transition: all .2s;
  transition: all .2s;
  color: #000;
}

footer .disclamer a:hover {
  text-decoration: none;
}
