@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Poppins:wght@600&display=swap");

:root {
  --pink: hsl(322, 100%, 66%);
  --vpcyan: hsl(193, 100%, 96%);
  --vdcyan: hsl(131, 52%, 76%);
  --gblue: hsl(208, 11%, 55%);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 1.125rem;
}

img {
  max-width: 100%;
}
h1, h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

ul {
  list-style-type: none;
  display: inline;
}
a {
  text-decoration: none;
  color: var(--pink);
  cursor: pointer;
}
header img {
  width: 150px;
}
footer img {
  height: 75px;
  padding-right: 60px;
}
.btn {
  display: inline-block;
  padding: 0.75em 2em;
  border-radius: 100px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  color: black;
  font-weight: 700;
}
.btn:hover, .btn:focus {
  opacity: 0.7;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: url("./images/bgindex.jpeg") center no-repeat;
  background-size: cover;
  background-color: var(--vpcyan);
  color: #fff;
  padding-top: 3rem;
  opacity: 0.8;
}

.nav__top {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

#try-it-free {
  background-color: #fff;
}

header .container > * + * {
  margin-top: 7rem;
}

.intro__content {
  width: 65%;
  margin: 0 auto;
  text-align: center;
}

.intro__content > * + * {
  margin-top: 1rem;
}

.btn-get-started {
  background-color: var(--pink);
  color: white;
}

.mockup-img-container {
  margin-top: 4rem;
  transform: scale(0.8);

}

main {
  padding-top: 4rem;
}

.card {
  width: 80%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 2rem 4rem;
  text-align: center;
}
.card + .card {
  margin-top: 3rem;
}
.article__image {
  width: 75%;
  margin: 0 auto;
}
.article__content {
  margin-top: 4rem;
  padding: 0 2rem;
}
.article__content > * + * {
  margin-top: 1rem;
}
.article__text {
  color: var(--gblue);
  text-align: justify;
}
.final-call {
  width: 90%;
  max-width: 800px;
  background-color: #fff;
  position: relative;
  top: 5rem;
  z-index: 2;
}
footer {
  padding-top: 100px;
  background-color: var(--vdcyan);
  color: rgb(0, 0, 0);
  font-size: small;
}

footer .container > * + * {
  margin-top: 2.5rem;
}

.contact__list > * {
  display: inline-block;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.contact__text {
  width: 85%;
  padding-top: 25px;
}
.contact__text2{
  padding-bottom: 25px;
}
.footer__cols > * {
  margin-top: 2rem;
}
@media (min-width: 1000px) {
  header {
    min-height: 600px;
  }
  .row {
    display: flex;
    justify-content: space-between;
  }
  .col {
    width: 100%;
  }
  header .container > * + * {
    margin-top: 3rem;
  }
  .intro__content {
    width: 45%;
    align-self: center;
    text-align: left;
  }
  .mockup-img-container {
    width: 45%;
    margin-top: 0rem;
    transform: scale(1);
  }
  .article__content {
    text-align: left;
  }
  .article__image {
    width: 45%;
    margin: 0 auto;
  }
  .article__content {
    width: 45%;
    align-self: center;
    margin-top: 0rem;
    padding: 0 2rem;
  }
  .row-rev {
    flex-direction: row-reverse;
  }
  .contact__list > * {
    margin-top: 0rem;
  }
  .contact__list > * + * {
    margin-top: 2rem;
  }
  .footer__cols > * + * {
    margin-left: 2rem;
  }
  .footer__col:nth-child(1) {
    width: 100%;
  }
  .footer__col:nth-child(2), .footer__col:nth-child(3), .footer__col:nth-child(4) {
    width: 100%;
  }

}
.thumbnail-wrapper {
  display:inline-block;
  position:relative;
}
.thumbnail-wrapper button {
  position:absolute;
  top:100%;
  background-color: transparent;
  color: #fff;
  left:100%;
  -webkit-transform:translate3d(-50%, -50%, 0);
  -moz-transform:translate3d(-50%, -50%, 0);
  transform:translate3d(-50%, -50%, 0);
}
