*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

body {
  box-sizing: border-box;
}

@keyframes love-love {
  0% {
    color: red;
    transform: scale(1.3);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}

.heading-primary {
  font-size: 6rem;
  font-weight: 400;
  text-transform: uppercase;
  padding-top: 4rem;
}

.heading-primary--first {
  color: white;
  line-height: 1;
}

.heading-primary--second {
  color: #101d2c;
  line-height: 1;
}

.heading-secondary {
  font-size: 4rem;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 6rem;
  padding: 2.5rem 4rem;
  border-bottom: 2px solid #28b485;
  width: 40%;
  color: #28b485;
}

.heading-tertiary {
  font-size: 2.5rem;
  text-align: center;
  padding: 3rem 1rem;
}

.btn {
  text-decoration: none;
  text-transform: uppercase;
}

.btn--white:link, .btn--white:visited {
  display: inline-block;
  color: #21aa7c;
  font-size: 2rem;
  padding: 1rem 3rem;
  background-color: white;
  margin: 3rem;
  margin-top: 8rem;
  border: 2px solid white;
  border-radius: 10rem;
  transition: all .5s;
}

.btn--white:link:hover, .btn--white:visited:hover {
  color: white;
  border: 2px solid white;
  background-color: transparent;
  transform: scale(1.05);
  box-shadow: 1rem 1.5rem 3rem rgba(0, 0, 0, 0.2);
}

.btn--white:link:active, .btn--white:visited:active {
  box-shadow: none;
  transform: scale(1.02);
}

.btn-card {
  background-color: #fff;
  margin-top: 4rem;
  padding: 1.5rem 3rem;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 3rem;
  text-align: center;
  color: #333;
  box-sizing: border-box;
  border: 2px solid white;
  transition: all .5s;
}

.btn-card:hover {
  color: #fff;
  background-color: transparent;
  border: 2px solid white;
  transform: scale(1.05);
  box-shadow: 0.5rem 1.5rem 4rem rgba(0, 0, 0, 0.2);
}

.btn-card:active {
  box-shadow: none;
  transform: scale(1);
}

.contact__form {
  width: 35vw;
  height: 50rem;
  background: linear-gradient(to top, rgba(40, 180, 133, 0.8), rgba(126, 213, 111, 0.8));
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5vw;
  border-radius: .5rem;
  transition: box-shadow .5s;
}

.contact__form:hover {
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.25);
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 85%;
  padding: 2rem 1rem;
  transition: all .5s ease;
}

.form > *:not(:last-child) {
  margin-bottom: 2rem;
  border-radius: 10rem;
  border: none;
  outline: none;
  transition: all .2s;
  padding-left: 1.5rem;
  color: #28b485;
  font-size: 1.6rem;
}

.form > *:not(:last-child)::placeholder {
  font-size: 1.6rem;
}

.form > *:not(:last-child):hover {
  border-bottom: 1px solid #ff7730;
}

.form > *:not(:last-child):focus {
  width: 100%;
  border-radius: 1rem;
}

.form__name {
  width: 80%;
  height: 4rem;
  outline: none;
}

.form__email {
  width: 80%;
  height: 4rem;
}

.form__subject {
  width: 80%;
  height: 4rem;
}

.form__textarea {
  width: 80%;
  height: 15rem;
  border-radius: 1.5rem !important;
  padding-top: 1rem;
  font-family: inherit;
}

.btn-green {
  display: inline-block;
  color: #21aa7c;
  font-size: 2rem;
  padding: 1rem 3rem;
  background-color: white;
  margin-bottom: -1rem;
  margin-top: 2rem;
  border: 2px solid white;
  border-radius: 10rem;
  transition: all .5s;
  outline: none;
}

.btn-green:hover {
  color: white;
  border: 2px solid white;
  background-color: transparent;
  transform: scale(1.05);
  box-shadow: 1rem 1.5rem 3rem rgba(0, 0, 0, 0.2);
}

.btn-green:focus {
  box-shadow: none;
  transform: scale(1.02);
}

.contact__details {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 25vw;
  height: 50rem;
  color: #28b485;
}

.contact__details div h4 {
  font-size: 2.5rem;
  text-transform: uppercase;
  padding-bottom: 1rem;
}

.contact__details div p {
  font-size: 1.6rem;
}

.social-acounts {
  width: 20vw;
}

.social-acounts__container {
  display: flex;
  width: 100%;
}

.social-acounts__container div {
  border: 2px solid #28b485;
  width: 5rem;
  height: 5rem;
  background-color: transparent;
  position: relative;
  margin: 1rem 1.5rem 1rem 0;
  border-radius: 1rem;
  overflow: hidden;
  transition: all .3s;
}

.social-acounts__container div:hover {
  background-color: #28b485;
}

.social-acounts__container div:hover i {
  color: white;
}

.social-acounts__container div i {
  color: #28b485;
  font-size: 3rem;
  padding: 1rem;
}

.social-acounts__container div a {
  text-decoration: none;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header {
  height: 100vh;
  background: linear-gradient(to top, #20a87b, #7bdd6adc);
  position: relative;
}

.header__navigation {
  width: 100%;
  background-color: transparent;
  background-color: #28b485;
  position: fixed;
  top: 0;
  right: 0;
  padding: 1rem;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.header__logo {
  width: 6rem;
  height: 6rem;
  margin-left: 8rem;
}

.header__icon {
  width: 100%;
  height: 100%;
}

.header__menu {
  margin-right: 6rem;
}

.header__list {
  display: flex;
  list-style: none;
}

.header__item {
  transition: transform .5s;
}

.header__item:hover {
  transform: scale(1.2);
}

.header__link {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  font-size: 1.8rem;
  background-color: transparent;
  padding: 1rem 0;
  margin: 1rem 2rem;
  transition: all .5s;
  outline: none;
}

.header__link:hover {
  color: black;
  background-color: transparent;
  border-bottom: 3px solid white;
}

.header__content {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__details {
  margin-left: 12rem;
}

.header__photo {
  max-width: 40vw;
  transform: translateY(4rem);
}

.header__img {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.footer {
  height: 70vh;
  background-color: #101d2c;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, max-content));
  grid-auto-flow: row;
  grid-column-gap: 2rem;
  justify-content: space-evenly;
  padding-top: 5rem;
  padding-bottom: 2rem;
  position: relative;
}

.footer-nav__list {
  height: 100%;
  display: grid;
  grid-template-rows: repeat(auto-fit, 1fr);
  align-content: center;
  justify-content: center;
}

.footer-nav__item {
  list-style: none;
  padding: 1rem;
  text-transform: uppercase;
  width: 100%;
}

.footer-nav__link {
  text-decoration: none;
  font-size: 1.8rem;
  color: white;
  transition: all .3s;
  border-bottom: 2px solid #101d2c;
}

.footer-nav__link:hover {
  display: inline-block;
  border-bottom: 2px solid white;
  transform: translateX(1rem);
}

.footer-social {
  margin-left: -6rem;
  width: 100%;
  display: grid;
  grid-template-rows: repeat(auto-fit, 1fr);
  align-content: center;
  grid-row-gap: 2rem;
}

.footer-social div {
  display: flex;
  align-items: center;
}

.footer-social div a {
  font-size: 2.2rem;
  color: #28b485;
}

.footer-social div a i {
  transition: all .3s;
  font-size: 2rem;
  align-self: center;
  visibility: hidden;
  opacity: 0;
}

.footer-social div a:hover i {
  visibility: visible;
  opacity: 1;
}

.footer-social div p {
  display: inline-block;
  font-size: 2rem;
  color: white;
  padding-left: 1rem;
  transition: all .3s;
}

.footer-social div p:hover {
  color: #28b485;
}

.footer-social__facebook i {
  padding-right: 1rem;
}

.subscribe__container {
  width: 40rem;
  margin-left: 5rem;
}

.subscribe__details {
  font-size: 1.7rem;
  color: white;
  padding: 1rem;
  padding-top: 7rem;
}

.subscribe__email-box {
  padding: 1rem;
}

.subscribe__email {
  display: inline-block;
  height: 3.5rem;
  width: 65%;
  margin-right: 1rem;
  padding-left: 1rem;
  outline: none;
  border: none;
  border-radius: 10rem;
  border-bottom: 1px solid transparent;
  color: #101d2c;
  transition: all .2s;
}

.subscribe__email:hover {
  border-bottom: 1px solid #ff7730;
}

.subscribe__submit {
  text-transform: uppercase;
  display: inline-block;
  color: #101d2c;
  font-size: 1.5rem;
  font-weight: bold;
  padding: .7rem 1.7rem;
  padding-top: .8rem;
  background-color: white;
  border: 2px solid white;
  border-radius: 10rem;
  transition: all .4s;
  outline: none;
}

.subscribe__submit:hover {
  color: white;
  background-color: transparent;
  border: 2px solid white;
  transform: scale(1.05);
  box-shadow: 1rem 1.5rem 3rem rgba(0, 0, 0, 0.2);
}

.subscribe__submit:active {
  box-shadow: none;
  transform: scale(1);
}

.subscribe__copyright {
  color: white;
  font-size: 1.7rem;
  padding: 1rem;
  margin-top: 7rem;
}

.subscribe__love-box {
  width: 4rem;
  height: 4rem;
  display: inline-block;
}

.subscribe__love {
  color: red;
  padding: 1rem;
  font-size: 2rem;
  animation-name: love-love;
  animation-duration: 1.3s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.admin {
  color: white;
  text-decoration: none;
  transition: all .3s;
}

.admin:hover {
  color: red;
}

.section-features {
  width: 100%;
}

.section-features__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, max-content));
  grid-column-gap: 2rem;
  justify-content: space-evenly;
}

.section-features__box {
  width: 28rem;
  margin-bottom: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 1s;
  border-radius: .7rem;
}

.section-features__box--1 {
  transition: all .5s;
}

.section-features__box--1:hover {
  background: linear-gradient(to top, #20a87b, #7bdd6adc);
  color: white;
}

.section-features__box--2 {
  transition: all 1s;
}

.section-features__box--2:hover {
  background: linear-gradient(to top, #c80a0a, rgba(246, 56, 56, 0.7));
  color: white;
}

.section-features__box--3 {
  transition: all 1s;
}

.section-features__box--3:hover {
  background: linear-gradient(to top, #029b9b, rgba(36, 251, 240, 0.7));
  color: white;
}

.section-features__img-box {
  width: 100%;
}

.section-features__img {
  width: 100%;
}

.section-features__text {
  font-size: 1.5rem;
  width: 70%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 3rem;
}

.section-prices__container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, max-content));
  grid-auto-flow: row;
  grid-column-gap: 2rem;
  justify-content: space-evenly;
  margin-bottom: 7rem;
}

.card {
  position: relative;
  height: 48rem;
  width: 28rem;
  perspective: 150rem;
}

.card__side {
  height: 48rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backface-visibility: hidden;
  overflow: hidden;
  border-radius: .7rem;
  box-shadow: 0.3rem 1.5rem 4rem rgba(0, 0, 0, 0.3);
  transition: all .8s ease;
}

.card__side--front {
  background-color: #fff;
}

.card__side--back {
  transform: rotateY(180deg);
}

.card__side--back-1 {
  background: linear-gradient(to top, rgba(40, 180, 133, 0.8), rgba(126, 213, 111, 0.8));
}

.card__side--back-2 {
  background: linear-gradient(to top, rgba(255, 119, 48, 0.8), rgba(255, 185, 0, 0.8));
}

.card__side--back-3 {
  background: linear-gradient(to top, rgba(86, 67, 250, 0.8), rgba(41, 152, 255, 0.8));
}

.card:hover .card__side--front {
  transform: rotateY(-180deg);
}

.card:hover .card__side--back {
  transform: rotateY(0);
}

.card__picture {
  width: 100%;
  height: 25rem;
}

.card__picture--1 {
  background: url(../../img/watch-1.png), linear-gradient(to top, #20a87b, #7bdd6adc);
  background-size: cover;
}

.card__picture--2 {
  background: url(../../img/watch-4.png), linear-gradient(to top, rgba(255, 119, 48, 0.8), rgba(255, 185, 0, 0.8));
  background-size: cover;
}

.card__picture--3 {
  background: url(../../img/watch-8.png), linear-gradient(to top, rgba(86, 67, 250, 0.8), rgba(41, 152, 255, 0.8));
  background-size: cover;
}

.card__details {
  font-size: 1.7rem;
  font-weight: 500;
  background-color: #f7f7f7;
  padding-bottom: 3.5rem;
}

.card__details ul {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  list-style: none;
  font-size: 1.9rem;
  margin-left: 2rem;
}

.card__details ul i {
  font-size: 2rem;
}

.card #icon--1 {
  color: #28b485;
}

.card #icon--2 {
  color: #ff7730;
}

.card #icon--3 {
  color: #5643fa;
}

.card__heading {
  text-align: center;
  padding: 1.5rem;
  font-size: 1.7rem;
  margin-bottom: 1.3rem;
}

.card__heading span {
  font-size: 3rem;
}

.card__heading--1 {
  color: #28b485;
}

.card__heading--2 {
  color: #ff7730;
}

.card__heading--3 {
  color: #5643fa;
}

.card__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.card__price-box {
  margin: 7rem 2rem;
  text-align: center;
  padding: 1rem;
  color: #fff;
}

.card__price-only {
  font-size: 3rem;
}

.card__price-value {
  font-size: 5rem;
  margin-top: 2rem;
}

.section-contact {
  background-color: #f7f7f7;
}

.contact__container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 5rem;
}
/*# sourceMappingURL=main.css.map */