@import url("https://fonts.googleapis.com/css2?family=Alumni+Sans&family=Teko:wght@500&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: sans-serif;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 900px) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 600px) {
  html {
    font-size: 50%;
  }
}

body {
  width: 100%;
}

h2, h3, h4, button, a {
  font-family: "Alumni Sans", sans-serif;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #222;
}

button, input[type=submit] {
  font-weight: bold;
  letter-spacing: 0.2rem;
  padding: 0.7em;
  border-radius: 5px;
  background: #575A89;
  border: none;
  color: white;
  text-transform: capitalize;
  transition: transform 0.2s ease;
}
button:hover, input[type=submit]:hover {
  cursor: pointer;
  transform: scale(0.98);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2em 4em;
  background: linear-gradient(-45deg, #575A89, #CC74AB);
}
@media only screen and (max-width: 600px) {
  .header {
    flex-direction: column;
  }
}
.header * {
  color: white;
}
.header__logo {
  font-family: "Teko", sans-serif;
  font-weight: 600;
  font-size: 4rem;
  letter-spacing: 0.2rem;
}
.header__nav {
  width: 30rem;
}
.header__nav__list {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.header__nav__list__item {
  font-size: 3rem;
  transition: transform 0.3s ease;
}
.header__nav__list__item:hover {
  transform: scale(1.1);
}

.roger {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 1rem;
  width: 100%;
}
.roger__svg {
  width: 20rem;
  height: 20rem;
  display: block;
  margin-left: 2rem;
}
.roger__svg #background {
  fill: #575A89;
}
.roger__svg #head {
  -webkit-animation: head-movement 9s linear infinite;
          animation: head-movement 9s linear infinite;
  transform-origin: bottom;
  transform-box: fill-box;
}
.roger__svg #hair {
  -webkit-animation: hair-tilt 9s linear infinite;
          animation: hair-tilt 9s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.roger__svg #left-eye {
  -webkit-animation: left-eye-movement 9s linear infinite;
          animation: left-eye-movement 9s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.roger__svg #left-pupil {
  -webkit-animation: left-pupil-movement 9s linear infinite;
          animation: left-pupil-movement 9s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.roger__svg #right-eye {
  -webkit-animation: right-eye-movement 9s linear infinite;
          animation: right-eye-movement 9s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.roger__svg #right-pupil {
  -webkit-animation: right-pupil-movement 9s linear infinite;
          animation: right-pupil-movement 9s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.roger__svg #left-ear {
  -webkit-animation: left-ear-movement 9s linear infinite;
          animation: left-ear-movement 9s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.roger__svg #right-ear {
  -webkit-animation: right-ear-movement 9s linear infinite;
          animation: right-ear-movement 9s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.roger__svg #muzzle {
  -webkit-animation: muzzle-movement 9s linear infinite;
          animation: muzzle-movement 9s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.roger__svg #nose {
  -webkit-animation: nose-movement 9s linear infinite;
          animation: nose-movement 9s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.roger__svg #tongue {
  -webkit-animation: tongue-movement 9s linear infinite;
          animation: tongue-movement 9s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.roger__svg #right-paw {
  -webkit-animation: right-paw-movement 9s linear infinite;
          animation: right-paw-movement 9s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.roger__svg #right-paw-shadow {
  -webkit-animation: right-paw-shadow-movement 9s linear infinite;
          animation: right-paw-shadow-movement 9s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.roger__svg #right-nail-1, .roger__svg #right-nail-2 {
  -webkit-animation: right-nails-movement 9s linear infinite;
          animation: right-nails-movement 9s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.roger__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2em;
}
.roger__text__header {
  font-size: 3rem;
  color: #575A89;
}
.roger__text__paragraph {
  font-size: 2rem;
  margin-top: 0.5em;
}

.hero {
  width: 100%;
  max-width: 120rem;
  margin: auto;
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media only screen and (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: center;
  }
}
.hero__article {
  padding: 0 2em 3em 2em;
  width: 40%;
}
@media only screen and (max-width: 900px) {
  .hero__article {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 600px) {
  .hero__article {
    width: 80%;
  }
}
.hero__article__header {
  font-size: 6rem;
  text-transform: capitalize;
}
@media only screen and (max-width: 900px) {
  .hero__article__header {
    text-align: center;
  }
}
.hero__article__text {
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 3rem;
}
@media only screen and (max-width: 900px) {
  .hero__article__text {
    text-align: justify;
    margin: 2rem;
  }
}
.hero__article__btn {
  margin-top: 1.7rem;
  font-size: 2.3rem;
}
.hero__image {
  width: 40%;
  position: relative;
  top: 9rem;
}
@media only screen and (max-width: 900px) {
  .hero__image {
    margin-top: 2rem;
    position: initial;
    width: 80%;
  }
}

.read-more {
  margin-top: 8rem;
  padding: 6em 0;
  background: linear-gradient(-135deg, #575A89, #CC74AB);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.read-more__header {
  text-transform: uppercase;
  font-size: 7rem;
  text-align: center;
  color: white;
}
.read-more__articles-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 4rem;
  max-width: 150rem;
}
@media only screen and (max-width: 900px) {
  .read-more__articles-container {
    flex-direction: column;
    align-items: center;
  }
}
.read-more__articles-container__article {
  background: white;
  width: 31%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3em 2em;
  min-height: 50rem;
  border-radius: 20px;
  box-shadow: 0 0 1rem 0.5rem #575A89;
  margin: 1.5rem;
}
@media only screen and (max-width: 900px) {
  .read-more__articles-container__article {
    width: 80%;
    flex-direction: row;
    min-height: auto;
  }
}
@media only screen and (max-width: 600px) {
  .read-more__articles-container__article {
    flex-direction: column;
  }
}
.read-more__articles-container__article__image {
  width: 85%;
  border-radius: 5px;
}
@media only screen and (max-width: 900px) {
  .read-more__articles-container__article__image {
    width: 50%;
    flex-shrink: 2;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media only screen and (max-width: 600px) {
  .read-more__articles-container__article__image {
    width: 85%;
  }
}
.read-more__articles-container__article .article-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.read-more__articles-container__article .article-preview__header {
  margin-top: 2rem;
  font-size: 3rem;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.2rem;
  min-height: 12rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 900px) {
  .read-more__articles-container__article .article-preview__header {
    min-height: auto;
  }
}
.read-more__articles-container__article .article-preview__text {
  margin-top: 20px;
  overflow: hidden;
  text-align: justify;
  font-size: 1.6rem;
  padding-left: 1em;
  padding-right: 1em;
  line-height: 2rem;
}
.read-more__articles-container__article .article-preview__btn {
  margin-top: 3rem;
  font-size: 2rem;
}

.our-team {
  width: 100%;
  padding: 6em 4em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.our-team__header {
  text-transform: uppercase;
  font-size: 7rem;
  text-align: center;
}
.our-team .employees-container {
  display: flex;
  margin-top: 8rem;
  max-width: 120rem;
  justify-content: space-between;
}
@media only screen and (max-width: 900px) {
  .our-team .employees-container {
    flex-direction: column;
    align-items: center;
  }
}
.our-team .employees-container__employee {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 32%;
  border: 3px solid #575A89;
  padding: 0 2em 3em 2em;
  border-radius: 20px;
}
@media only screen and (max-width: 900px) {
  .our-team .employees-container__employee {
    flex-direction: row;
    width: 80%;
    margin: 1.5rem;
    padding: 2em;
  }
}
@media only screen and (max-width: 600px) {
  .our-team .employees-container__employee {
    flex-direction: column;
    width: 100%;
    margin-top: 6rem;
  }
  .our-team .employees-container__employee:first-child {
    margin-top: 0;
  }
}
.our-team .employees-container__employee__image {
  width: 20rem;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 100%;
  position: relative;
  bottom: 5rem;
  border: 5px solid #afafaf;
}
@media only screen and (max-width: 900px) {
  .our-team .employees-container__employee__image {
    bottom: 0;
    right: 10rem;
    width: 30rem;
    height: 30rem;
  }
}
@media only screen and (max-width: 600px) {
  .our-team .employees-container__employee__image {
    bottom: 5rem;
    right: 0;
  }
}
.our-team .employees-container__employee__text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 900px) {
  .our-team .employees-container__employee__text-container {
    max-height: 90%;
    margin: 2rem 0;
    position: relative;
    right: 5rem;
  }
}
@media only screen and (max-width: 600px) {
  .our-team .employees-container__employee__text-container {
    position: initial;
    margin: 0;
  }
}
.our-team .employees-container__employee__text-container__name {
  font-size: 3rem;
  margin-top: -3rem;
  text-align: center;
  letter-spacing: 0.2rem;
}
@media only screen and (max-width: 900px) {
  .our-team .employees-container__employee__text-container__name {
    margin-top: 0;
  }
}
@media only screen and (max-width: 600px) {
  .our-team .employees-container__employee__text-container__name {
    margin-top: -3rem;
  }
}
.our-team .employees-container__employee__text-container__position {
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 0.15rem;
}
.our-team .employees-container__employee__text-container__description {
  margin-top: 2rem;
  width: 70%;
  text-align: center;
  line-height: 2.5rem;
  font-size: 1.6rem;
}
@media only screen and (max-width: 900px) {
  .our-team .employees-container__employee__text-container__description {
    width: 100%;
  }
}
.our-team .employees-container__employee__text-container__btn {
  margin-top: 3rem;
  font-size: 2rem;
}

.newsletter {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(-135deg, #575A89, #CC74AB);
}
.newsletter__container {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4em;
  border-radius: 20px;
}
@media only screen and (max-width: 600px) {
  .newsletter__container {
    margin: 2rem;
  }
}
.newsletter__container__header {
  font-size: 5rem;
  text-transform: uppercase;
  text-align: center;
}
.newsletter__container__cta {
  font-size: 3rem;
  text-transform: capitalize;
  margin-top: 1rem;
  text-align: center;
}
.newsletter__container__form {
  width: 90%;
  display: flex;
  flex-direction: column;
}
.newsletter__container__form label {
  text-transform: capitalize;
  margin-top: 2rem;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  line-height: 2.3rem;
}
.newsletter__container__form input {
  font-size: 1.6rem;
  padding-left: 1em;
}
.newsletter__container__form input[type=text], .newsletter__container__form input[type=email] {
  height: 3rem;
}
.newsletter__container__form input[type=checkbox] {
  transform: scale(1.2);
  margin-right: 0.8rem;
}
.newsletter__container__form input[type=submit] {
  margin-top: 3rem;
  font-size: 1.8rem;
  width: 80%;
  align-self: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.newsletter__container__form select {
  height: 3rem;
  font-size: 1.6rem;
  padding-left: 0.5em;
}
.newsletter__container__form .checkbox {
  margin-top: 3rem;
}

.live-chat {
  width: 9rem;
  height: 9rem;
  position: fixed;
  bottom: 7rem;
  right: 3rem;
  background: white;
  border-radius: 50%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #575A89;
  -webkit-animation: pulse 4s infinite;
          animation: pulse 4s infinite;
  transition: transform 0.2s linear;
}
.live-chat #front-bubble, .live-chat #back-bubble {
  transition: fill 0.2s linear;
}
.live-chat:hover {
  cursor: pointer;
  transform: translateY(-0.4rem);
}
.live-chat:hover #front-bubble {
  fill: #CC74AB;
}
.live-chat:hover #back-bubble {
  fill: #575A89;
}
.live-chat__icon {
  width: 6.5rem;
  height: 6.5rem;
}

@-webkit-keyframes pulse {
  10% {
    box-shadow: 0 0 1rem 0.1rem #575A89;
  }
  12% {
    box-shadow: 0 0 0.7rem 0.3rem #575A89;
  }
  15% {
    box-shadow: 0 0 1rem 0.1rem #575A89;
  }
  17% {
    box-shadow: 0 0 0.7rem 0.3rem #575A89;
  }
}

@keyframes pulse {
  10% {
    box-shadow: 0 0 1rem 0.1rem #575A89;
  }
  12% {
    box-shadow: 0 0 0.7rem 0.3rem #575A89;
  }
  15% {
    box-shadow: 0 0 1rem 0.1rem #575A89;
  }
  17% {
    box-shadow: 0 0 0.7rem 0.3rem #575A89;
  }
}
@-webkit-keyframes head-movement {
  6% {
    transform: rotate(-15deg) translate(0, 0);
  }
  14% {
    transform: rotate(-15deg) translate(0, 0);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
}
@keyframes head-movement {
  6% {
    transform: rotate(-15deg) translate(0, 0);
  }
  14% {
    transform: rotate(-15deg) translate(0, 0);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
}
@-webkit-keyframes hair-tilt {
  6% {
    transform: rotate(-30deg) translate(-12rem, -3rem);
  }
  14% {
    transform: rotate(-30deg) translate(-12rem, -3rem);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
}
@keyframes hair-tilt {
  6% {
    transform: rotate(-30deg) translate(-12rem, -3rem);
  }
  14% {
    transform: rotate(-30deg) translate(-12rem, -3rem);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
}
@-webkit-keyframes left-ear-movement {
  6% {
    transform: rotate(-20deg) translate(-6rem, 10rem);
  }
  14% {
    transform: rotate(-20deg) translate(-6rem, 10rem);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
}
@keyframes left-ear-movement {
  6% {
    transform: rotate(-20deg) translate(-6rem, 10rem);
  }
  14% {
    transform: rotate(-20deg) translate(-6rem, 10rem);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
}
@-webkit-keyframes right-ear-movement {
  6% {
    transform: rotate(-22deg) translate(-4rem, -6rem);
  }
  14% {
    transform: rotate(-22deg) translate(-4rem, -6rem);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
}
@keyframes right-ear-movement {
  6% {
    transform: rotate(-22deg) translate(-4rem, -6rem);
  }
  14% {
    transform: rotate(-22deg) translate(-4rem, -6rem);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
}
@-webkit-keyframes left-eye-movement {
  6% {
    transform: rotate(0) translate(-2rem, 2.3rem);
  }
  14% {
    transform: rotate(0) translate(-2rem, 2.3rem);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
}
@keyframes left-eye-movement {
  6% {
    transform: rotate(0) translate(-2rem, 2.3rem);
  }
  14% {
    transform: rotate(0) translate(-2rem, 2.3rem);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
}
@-webkit-keyframes left-pupil-movement {
  6% {
    transform: rotate(0) translate(-2rem, 2.3rem);
  }
  14% {
    transform: rotate(0) translate(-2rem, 2.3rem);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
  21% {
    transform: rotate(0) translate(-0.7rem, 0);
  }
  30% {
    transform: rotate(0) translate(-0.7rem, 0);
  }
  31% {
    transform: rotate(0) translate(0, 0);
  }
  70% {
    transform: rotate(0) translate(0, 0);
  }
  71% {
    transform: rotate(0) translate(-0.6rem, 0.5rem);
  }
  80% {
    transform: rotate(0) translate(-0.6rem, 0.5rem);
  }
  81% {
    transform: rotate(0) translate(0, 0);
  }
}
@keyframes left-pupil-movement {
  6% {
    transform: rotate(0) translate(-2rem, 2.3rem);
  }
  14% {
    transform: rotate(0) translate(-2rem, 2.3rem);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
  21% {
    transform: rotate(0) translate(-0.7rem, 0);
  }
  30% {
    transform: rotate(0) translate(-0.7rem, 0);
  }
  31% {
    transform: rotate(0) translate(0, 0);
  }
  70% {
    transform: rotate(0) translate(0, 0);
  }
  71% {
    transform: rotate(0) translate(-0.6rem, 0.5rem);
  }
  80% {
    transform: rotate(0) translate(-0.6rem, 0.5rem);
  }
  81% {
    transform: rotate(0) translate(0, 0);
  }
}
@-webkit-keyframes right-eye-movement {
  6% {
    transform: rotate(0) translate(-2rem, -1.5rem);
  }
  14% {
    transform: rotate(0) translate(-2rem, -1.5rem);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
  50% {
    transform: rotate(0) translate(0, 0);
  }
  52% {
    transform: rotate(0) translate(0rem, 1rem);
  }
  54% {
    transform: rotate(0) translate(0, 0);
  }
}
@keyframes right-eye-movement {
  6% {
    transform: rotate(0) translate(-2rem, -1.5rem);
  }
  14% {
    transform: rotate(0) translate(-2rem, -1.5rem);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
  50% {
    transform: rotate(0) translate(0, 0);
  }
  52% {
    transform: rotate(0) translate(0rem, 1rem);
  }
  54% {
    transform: rotate(0) translate(0, 0);
  }
}
@-webkit-keyframes right-pupil-movement {
  6% {
    transform: rotate(0) translate(-2rem, -1.5rem);
  }
  14% {
    transform: rotate(0) translate(-2rem, -1.5rem);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
  21% {
    transform: rotate(0) translate(-0.7rem, 0);
  }
  30% {
    transform: rotate(0) translate(-0.7rem, 0);
  }
  31% {
    transform: rotate(0) translate(0, 0);
  }
  50% {
    opacity: 1;
    transform: rotate(0) translate(0, 0);
  }
  51% {
    opacity: 0;
  }
  52% {
    transform: rotate(0) translate(0rem, 1rem);
  }
  54% {
    opacity: 1;
    transform: rotate(0) translate(0, 0);
  }
  70% {
    transform: rotate(0) translate(0, 0);
  }
  71% {
    transform: rotate(0) translate(-0.6rem, 0.5rem);
  }
  80% {
    transform: rotate(0) translate(-0.6rem, 0.5rem);
  }
  81% {
    transform: rotate(0) translate(0, 0);
  }
}
@keyframes right-pupil-movement {
  6% {
    transform: rotate(0) translate(-2rem, -1.5rem);
  }
  14% {
    transform: rotate(0) translate(-2rem, -1.5rem);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
  21% {
    transform: rotate(0) translate(-0.7rem, 0);
  }
  30% {
    transform: rotate(0) translate(-0.7rem, 0);
  }
  31% {
    transform: rotate(0) translate(0, 0);
  }
  50% {
    opacity: 1;
    transform: rotate(0) translate(0, 0);
  }
  51% {
    opacity: 0;
  }
  52% {
    transform: rotate(0) translate(0rem, 1rem);
  }
  54% {
    opacity: 1;
    transform: rotate(0) translate(0, 0);
  }
  70% {
    transform: rotate(0) translate(0, 0);
  }
  71% {
    transform: rotate(0) translate(-0.6rem, 0.5rem);
  }
  80% {
    transform: rotate(0) translate(-0.6rem, 0.5rem);
  }
  81% {
    transform: rotate(0) translate(0, 0);
  }
}
@-webkit-keyframes muzzle-movement {
  6% {
    transform: rotate(-15deg) translate(0, 0);
  }
  14% {
    transform: rotate(-15deg) translate(0, 0);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
}
@keyframes muzzle-movement {
  6% {
    transform: rotate(-15deg) translate(0, 0);
  }
  14% {
    transform: rotate(-15deg) translate(0, 0);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
}
@-webkit-keyframes nose-movement {
  6% {
    transform: rotate(-15deg) translate(0, 0);
  }
  14% {
    transform: rotate(-15deg) translate(0, 0);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
}
@keyframes nose-movement {
  6% {
    transform: rotate(-15deg) translate(0, 0);
  }
  14% {
    transform: rotate(-15deg) translate(0, 0);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
}
@-webkit-keyframes tongue-movement {
  6% {
    transform: rotate(-15deg) translate(1rem, 0);
  }
  14% {
    transform: rotate(-15deg) translate(1rem, 0);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
}
@keyframes tongue-movement {
  6% {
    transform: rotate(-15deg) translate(1rem, 0);
  }
  14% {
    transform: rotate(-15deg) translate(1rem, 0);
  }
  20% {
    transform: rotate(0) translate(0, 0);
  }
}
@-webkit-keyframes right-paw-movement {
  15% {
    transform: rotate(0) translate(0, 0);
  }
  18% {
    transform: rotateX(50deg);
  }
  21% {
    transform: rotate(0) translate(0, 0);
  }
}
@keyframes right-paw-movement {
  15% {
    transform: rotate(0) translate(0, 0);
  }
  18% {
    transform: rotateX(50deg);
  }
  21% {
    transform: rotate(0) translate(0, 0);
  }
}
@-webkit-keyframes right-paw-shadow-movement {
  15% {
    transform: rotate(0) translate(0, 0);
  }
  18% {
    transform: rotateX(60deg);
  }
  21% {
    transform: rotate(0) translate(0, 0);
  }
}
@keyframes right-paw-shadow-movement {
  15% {
    transform: rotate(0) translate(0, 0);
  }
  18% {
    transform: rotateX(60deg);
  }
  21% {
    transform: rotate(0) translate(0, 0);
  }
}
@-webkit-keyframes right-nails-movement {
  15% {
    transform: rotate(0) translate(0, 0);
  }
  18% {
    transform: translateY(-3.6rem);
  }
  21% {
    transform: rotate(0) translate(0, 0);
  }
}
@keyframes right-nails-movement {
  15% {
    transform: rotate(0) translate(0, 0);
  }
  18% {
    transform: translateY(-3.6rem);
  }
  21% {
    transform: rotate(0) translate(0, 0);
  }
}
.content-container {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 600px) {
  .content-container {
    flex-direction: column-reverse;
  }
}
.content-container .blog-main {
  width: 85%;
  display: flex;
  margin-top: 3rem;
  margin-bottom: 3rem;
  flex-direction: column;
  align-items: center;
  min-height: 84vH;
}
@media only screen and (max-width: 600px) {
  .content-container .blog-main {
    width: 100%;
  }
}
.content-container .blog-main__header {
  font-size: 6rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  background: #575A89;
  padding: 0.2em 0.4em;
  color: white;
  border-radius: 10px;
  text-align: center;
}
.content-container .blog-main .our-blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}
.content-container .blog-main .our-blog__header {
  font-size: 3rem;
  text-transform: capitalize;
  text-align: center;
}
.content-container .blog-main .our-blog__article {
  padding: 2em 2em;
  width: 80%;
  margin-top: 3rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 900px) {
  .content-container .blog-main .our-blog__article {
    flex-direction: column;
    width: 80%;
  }
}
@media only screen and (max-width: 600px) {
  .content-container .blog-main .our-blog__article {
    width: 100%;
  }
}
.content-container .blog-main .our-blog__article__image {
  width: 40%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 5px;
  margin-top: 0.8rem;
}
@media only screen and (max-width: 900px) {
  .content-container .blog-main .our-blog__article__image {
    width: 60%;
    height: 20rem;
  }
}
.content-container .blog-main .our-blog__article__preview-content {
  margin-left: 2rem;
  width: 60%;
}
.content-container .blog-main .our-blog__article__preview-content__header {
  font-size: 3.5rem;
  letter-spacing: 0.15rem;
  text-transform: capitalize;
}
@media only screen and (max-width: 900px) {
  .content-container .blog-main .our-blog__article__preview-content__header {
    text-align: center;
    margin-top: 2rem;
  }
}
.content-container .blog-main .our-blog__article__preview-content__header a {
  color: #575A89;
}
.content-container .blog-main .our-blog__article__preview-content__text {
  margin-top: 0.5rem;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
@media only screen and (max-width: 900px) {
  .content-container .blog-main .our-blog__article__preview-content__text {
    text-align: justify;
    margin-top: 20px;
    line-height: 25px;
  }
}

.categories {
  width: 200px;
  min-width: 150px;
  background: #EEEDFF;
  padding-top: 40px;
  padding-left: 20px;
}
@media only screen and (max-width: 600px) {
  .categories {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px;
    justify-content: space-between;
  }
}
.categories__header {
  text-transform: uppercase;
  font-size: 1.8rem;
  background: white;
  padding-top: 0.5em;
  padding-left: 0.5em;
  background: #8B8CBF;
  color: white;
}
@media only screen and (max-width: 600px) {
  .categories__header {
    color: black;
    background: none;
    font-size: 1.5rem;
    padding: 0;
  }
}
.categories__list {
  border-left: 3px solid #8B8CBF;
  padding-left: 10px;
  margin-top: 20px;
}
@media only screen and (max-width: 600px) {
  .categories__list {
    display: flex;
    align-items: center;
    border: none;
    margin: 0;
    justify-content: space-between;
    width: 60%;
    min-width: 25rem;
  }
}
.categories__list__item {
  font-size: 2.4rem;
}
.categories__list__item:hover {
  background: #8B8CBF;
  color: white;
  padding-left: 1rem;
}
@media only screen and (max-width: 600px) {
  .categories__list__item:hover {
    background: none;
    padding-left: 0;
    transform: scale(1.1);
  }
}
.categories__list__item:hover a {
  color: white;
}
@media only screen and (max-width: 600px) {
  .categories__list__item:hover a {
    color: #222;
  }
}

.article-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4em;
}
.article-main__header {
  font-size: 5rem;
  text-transform: capitalize;
  width: 50%;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .article-main__header {
    width: 80%;
  }
}
.article-main__header::before {
  content: "";
  width: 20rem;
  height: 20rem;
  display: block;
  position: absolute;
  right: 20rem;
  bottom: -40rem;
  background: linear-gradient(90deg, #575a8977, #cc74aa7a);
  border-radius: 100%;
  z-index: -1;
}
@media only screen and (max-width: 900px) {
  .article-main__header::before {
    display: none;
  }
}
.article-main__header::after {
  content: "";
  width: 10rem;
  height: 10rem;
  display: block;
  position: absolute;
  left: 10%;
  top: 22rem;
  background: linear-gradient(-90deg, #575a8975, #cc74aa77);
  border-radius: 100%;
  z-index: -1;
}
@media only screen and (max-width: 900px) {
  .article-main__header::after {
    display: none;
  }
}
.article-main__image {
  margin-top: 4rem;
  margin-bottom: 3rem;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .article-main__image {
    width: 100%;
    height: auto;
  }
}
.article-main p {
  width: 60%;
  margin-top: 1rem;
  text-align: justify;
  line-height: 2.5rem;
  text-indent: 5rem;
  font-size: 1.6rem;
}
@media only screen and (max-width: 600px) {
  .article-main p {
    width: 90%;
  }
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2em 4em;
  background: #222;
}
.footer * {
  color: white;
}
.footer__copyright {
  font-size: 1.5rem;
}
.footer__nav__list {
  display: flex;
  width: 10rem;
  align-items: center;
  justify-content: space-between;
}
.footer__nav__list .nav-item__link__icon {
  font-size: 1.7rem;
  transition: color 0.3s ease;
}
.footer__nav__list .nav-item__link__icon:hover {
  color: #CC74AB;
}/*# sourceMappingURL=style2.css.map */