@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Roboto:wght@400;500;700&display=swap');
* {
    font-family: "Inter", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
main {
    padding: 32px;
    overflow-x: hidden;
}
h1 {
    font-size: 40px;
    color: #1a202c;
}
li {
    list-style-type: none;
}
img {
    width: 100%;
}
a {
    text-decoration: none;
}
i {
    height: 16px;
    width: 16px;
}
.row {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.purple {
    color: #6415ff;
}
.white {
    color: #f7fafc;
}
.button__hover {
    cursor: pointer;
}
/* 
ANIMATION
 */
#landing,
#quality,
#values,
#testimonial,
#starting {
  animation: left 900ms ease;
}
#features,
#steps,
#pricing,
#faqs,
#footer {
  animation: right 900ms ease;
}
@keyframes left {
  0% {
    opacity: 0;
    transform: translate(-100vw);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes right {
  0% {
    opacity: 0;
    transform: translate(100vw);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
/*
MENU
*/
.btn__menu {
    display: none; 
    background-color: transparent;
    font-size: 20px;
    text-align: center;
    border: none;
    color: black;
    display: block;
    cursor: pointer;
    width: 24px;
    height: 24px;
}
.btn__menu:hover {
    color: #6415ff;
}
.menu--open {
    max-height: 100vh;
    overflow-y: hidden;
}
.menu__backdrop {
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
}
  .nav__container .menu--open .menu__backdrop {
    opacity: 1;
    visibility: visible;
}
.menu__list {
    margin: 10px 0;
}
.menu__links {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.menu__link {
   font-size: 18px;
   color: #1a202c;
   font-weight: 500; 
}
.btn__menu--close {
    position: absolute;
    top: 10px;
    right: 20px;
    padding: 8px;
    color: #6415ff;
}
/*
NAV
*/
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fade-in-left 600ms 300ms backwards ease;
}
.nav__links {
    display: flex;
    align-items: center;
}
.nav__link {
    color: #243e62;
    font-weight: 600;
    font-size: 14px;
    padding: 0 0 4px;
    margin: 0 24px;
}
.nav__link--login:hover, .nav__link:hover {
    color: #6415ff;
    border-bottom: 2px solid #6415ff;
}
.nav__link--login {
    color: #243e62;
    font-weight: 600;
    padding: 0 0 4px;
    margin: 0 24px 0 48px;
}
.nav__link--button {
    color: #f7fafc;
    background-color: #6415ff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 32px;
    transition: all 300ms ease;
}
.nav__link--button:hover {
    background-color: #410cac;
}
.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.nav__logo--container {
    display: flex;
    align-items: center;
    margin-right: 24px;
}
.logo__name {
    color: #243e62;
    font-size: 24px;
    font-weight: 900;
    margin: 0 24px 0 0;
    padding: 0 0 4px;
    letter-spacing: 0.4px;
}
.logo__name:hover {
    color: #6415ff;
}
.logo__img {
    height: 40px;
    width: 40px;
    margin-right: 12px;
}
/*
HEADER
*/
header {
    position: relative;
}
.header__container {
    display: flex;
    position: relative;
    padding: 96px 0;
    margin-left: auto;
    margin-right: auto;
}
.header__row {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.header__description {
    width: 100%;
    max-width: 768px;
}
.header__title {
    font-size: 36px;
}
.header__img {
    width: 100%;
    min-width: 768px;
}
.header__para {
    color: #243e62;
    font-size: 16px;
    margin: 32px 0;
    line-height: 1.5;
}
.header__user {
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    max-width: 448px;
}
.user__input {
    color: #6415ff;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    padding: 20px 192px 20px 32px;
    border: 2px solid #e8e8e8;
    border-radius: 50px;
  }
  
  .user__button {
    color: #fff;
    background-color: #6415ff;
    position: absolute;
    font-weight: 700px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    padding: 16px 0;
    width: 160px;
    min-width: 130px;
    right: 0;
    margin: 8px 8px 8px 0;
    }
  
  .user__button:hover {
    background-color: #410cac;
  }
  
  .header__customer {
    margin: 80px 0 0;
    width: 100%;
    height: auto;
  }
  
  .customer__para {
    color: #a0aec0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  
  .customer__img {
    opacity: 0.5;
    max-width: 768px;
    margin-top: 16px;
    padding-right: 64px;
  }
  /*
  FEATURES
  */
  .features__container {
    position: relative;
    padding: 96px 0;
  }
  
  .features__row {
    display: flex;
    flex-flow: column wrap;
    margin-left: auto;
    margin-right: auto;
    max-width: 1024px;
  }
  
  .features__heading {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 16px;
  }
  
  .features__title {
    color: #243e63;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    width: 100%;
    letter-spacing: 0.4px;
    margin-bottom: 16px;
    }
  
  .features__para {
    color: #7c8ba1;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    max-width: 576px;
    margin: 16px 0 0;
    line-height: 1.625;
  }
  
  .features__services--container {
    margin-top: 40px;
    width: 100%;
  }
  
  .services__row--container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .features__services {
    display: flex;
    align-items: center;
    padding: 32px 8px;
    margin-left: 16px;
    margin-right: 16px;
    height: 100%;
    width: 30%;
  }
  
  .services__img--wrapper {
    display: flex;
    border: 1px solid;
    border-color: #e2e8f0;
    border-radius: 500px;
    border-width: 1px;
    padding: 20px;
    flex-shrink: 0;
    }
  
  .services__img {
    width: 24px;
    height: 24px;
  }
  
  .services__description--container {
    margin-top: 8px;
    margin-left: 16px;
  }
  
  .services__title {
    color: #243e63;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.4px;
  }
  
  .services__para {
    color: #7c8ba1;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    text-align: left;
  }
  /* 
  QUALITY
  */
.quality__container {
    position: relative;
  }
  
  .quality__row {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    max-width: 1280px;
    justify-content: space-between;
    align-items: center;
    padding: 96px 0;
  }
  
  .quality__img--container {
    position: relative;
    width: 50%;
  }
  
  .quality__img {
    border-radius: 4px;
    border-width: 1px;
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .quality__description {
    width: 50%;
    display: flex;
    flex-direction: column;
    margin-right: 64px;
  }
  
  .quality__header {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
  }
  
  .quality__heading {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.6;
  }
  
  .quality__title {
    color: #243e63;
    font-size: 48px;
    margin-top: 16px;
    font-weight: 900;
    line-height: 1.25;
  }
  
  .quality__para {
    margin: 16px 0 0;
    font-weight: 500;
    line-height: 1.625;
    color: #7c8ba1;
  }
  
  .quality__button {
    font-size: 14px;
    padding: 12px 32px;
    color: #f7fafc;
    background-color: #6415ff;
    font-weight: 600;
    width: 150px;
    transition: all 300ms ease;
    border-radius: 50px;
    margin: 32px 0 0;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .quality__button:hover {
    background-color: #410cac;
  }
  
  /* 
  STEPS 
  */
  
  .steps__container {
    position: relative;
    padding: 96px 0;
  }
  
  .steps__row {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
  }
  
  .steps__img--wrapper {
    flex-shrink: 0;
    width: 100%;
    max-width: 50%;
    display: flex;
    align-items: center;
  }
  
  .steps__img {
    border-radius: 4px;
    max-width: 100%;
    height: auto;
  }
  
  .steps__description {
    width: 50%;
    max-width: 576px;
    display: flex;
    flex-direction: column;
    margin-left: 64px;
  }
  
  .steps__heading {
    font-size: 16px;
    text-align: left;
    letter-spacing: 1.5px;
    line-height: 24px;
    margin-bottom: 16px;
  }
  
  .steps__title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.25;
    text-align: left;
    letter-spacing: 1px;
    color: #243e63;
  }
  
  .steps__list {
    display: flex;
    flex-direction: column;
  }
  
  .steps__list--item {
    margin-top: 32px;
    display: flex;
    align-items: center;
  }
  
  .steps__list--num {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    color: #a0aec0;
  }
  
  .steps__list--description {
    margin-left: 24px;
  }
  
  .steps__list--title {
    font-size: 20px;
    font-weight: 600;
    color: #243e63;
  }
  
  .steps__list--para {
    font-size: 14px;
    text-align: left;
    color: #718096;
    line-height: 28px;
    margin-top: 12px;
    max-width: 320px;
  }
  
  /* 
  VALUES 
  */
  
  .values__description--container {
    padding: 96px 0;
    display: flex;
    justify-content: space-between;
  }
  
  .values__description {
    width: 40%;
  }
  
  .values__heading {
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.6px;
    margin-bottom: 16px;
  }
  
  .values__title {
    font-size: 48px;
    font-weight: 900;
    line-height: 60px;
    text-align: left;
    color: #243e63;
  }
  
  .values__para {
    font-size: 16px;
    line-height: 30px;
    text-align: left;
    color: #7c8ba1;
    font-weight: 500;
    margin-top: 32px;
  }
  
  .values__feature--container {
    display: flex;
    align-items: center;
  }
  
  .values__feature--affordable,
  .values__feature--professional {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 32px 32px 0 0;
  }
  
  .feature__affordable--header,
  .feature__professional--header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .values__affordable--icon {
    background-color: #9ae6b4;
    border-radius: 50%;
    padding: 6px;
    color: #276749;
    display: flex;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .values__professional--icon {
    background-color: #feb2b2;
    border-radius: 50%;
    padding: 6px;
    color: #9b2c2c;
    display: flex;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .feature__affordable--title,
  .feature__professional--title {
    font-size: 20px;
    font-weight: 700;
    margin-left: 12px;
    color: #243e63;
  }
  
  .feature__affordable--description,
  .feature__professional--description {
    line-height: 1.5;
    color: #718096;
    margin: 16px 0;
  }
  
  .values__button {
    font-size: 14px;
    padding: 12px 32px;
    color: #f7fafc;
    background-color: #6415ff;
    font-weight: 600;
    width: 150px;
    transition: all 300ms ease;
    border-radius: 50px;
    margin: 32px 0 0;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .values__button:hover {
    background-color: #410cac;
  }
  
  /* 
  PRICING 
  */
  
  .pricing__container {
    padding: 96px 0;
  }
  
  .pricing__row {
    display: flex;
    flex-direction: column;
  }
  
  .pricing__description {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 64px;
  }
  
  .pricing__heading {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.6px;
    margin-bottom: 16px;
  }
  
  .pricing__title {
    font-size: 48px;
    font-weight: 900;
    color: #243e63;
    line-height: 60px;
    letter-spacing: 1px;
  }
  
  .pricing__para {
    width: 100%;
    max-width: 576px;
    text-align: center;
    margin-top: 16px;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: #7c8ba1;
  }
  
  .pricing__options--container {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  
  .pricing__plan--personal {
    margin-top: 64px;
    margin-right: 32px;
    width: 100%;
    max-width: 384px;
    box-shadow: 0 0 8px .5px #afafb2;
    border-radius: 8px;
  }
  
  .pricing__plan--business {
    margin-top: 64px;
    margin-right: 32px;
    width: 100%;
    max-width: 384px;
    box-shadow: 0 0 8px .5px #afafb2;
    background-image: linear-gradient(135deg, #4c51bf 0%, #667eea 100%);
    border-radius: 8px;
  }
  
  .pricing__plan--enterprise {
    margin-top: 64px;
    margin-right: 32px;
    width: 100%;
    max-width: 384px;
    box-shadow: 0 0 8px .5px #afafb2;
    border-radius: 8px;
  }
  
  .plan__border--personal {
    height: 8px;
    background: linear-gradient(115deg, #38b2ac 0%, #81e6d9 100%);
  }
  
  .plan__border--business {
    height: 8px;
    background-image: linear-gradient(135deg, #4c51bf 0%, #667eea 100%);
  }
  
  .plan__border--enterprise {
    height: 8px;
    background: linear-gradient(115deg, #f56565 0%, #feb2b2 100%);
  }
  
  .plan__options {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 0;
    border-bottom: 2px solid #e5e7eb;
  }
  
  .plan__options--business {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 0;
    border-bottom: 2px solid #a0aec0;
  }
  
  .plan__name {
    font-size: 20px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 4px;
  }
  
  .plan__price--num {
    font-size: 48px;
    color: #242424;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 78px;
  }
  
  .plan__price--payment {
    color: #a0aec0;
    letter-spacing: 1.6px;
    font-weight: 700;
    font-size: 16px;
  }
  
  .plan__features {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    border-bottom: 2px solid #a0aec0;
  }
  
  .plan__features--business {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    border-bottom: 2px solid #a0aec0;
  }
  
  .feature__name {
    font-size: 20px;
    color: #242424;
    font-weight: 700;
    text-align: center;
  }
  
  .feature {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #718096;
  }
  
  .plan__button--container {
    display: flex;
    justify-content: center;
    padding: 32px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  
  .plan__button--personal {
    background: linear-gradient(115deg, #38b2ac 0%, #81e6d9 100%);
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.8px;
    transition: all 500ms ease;
  }
  
  .plan__button--personal:hover {
    transform: translate(2px, -2px);
  }
  
  .plan__button--business {
    background-color: #f7fafc;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #6415ff;
    letter-spacing: 0.8px;
    transition: all 500ms ease;
  }
  
  .plan__button--business:hover {
    transform: translate(2px, -2px);
    background-color: #e2e8f0;
  }
  
  .plan__button--enterprise {
    background: linear-gradient(115deg, #f56565 0%, #feb2b2 100%);
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.8px;
    transition: all 500ms ease;
  }
  
  .plan__button--enterprise:hover {
    transform: translate(2px, -2px);
  }
  
  /* 
  TESTIMONIAL 
  */
  
  .testimonial__container {
    padding: 96px 0;
  }
  .testimonial__img--wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 24px;
  }
  
  .testimonial__row {
    display: flex;
  }
  
  .testimonial__header {
    width: 100%;
    padding-left: 64px;
  }
  
  .testimonial__img {
    width: 100%;
    display: flex;
    align-items: center;
  }
  
  .slide__shows {
    display: flex;
    flex-direction: column;
  }
  
  .testimonial__heading {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.6px;
  }
  
  .testimonial__title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 60px;
    color: #243e63;
  }
  
  .testimonial__para {
    width: 100%;
    margin: 24px 0 32px;
    max-width: 576px;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: #7c8ba1;
    opacity: 1;
  }
  
  .fa-star {
    color: #fabf2a;
    margin-bottom: 16px;
  }
  
  .slideshow__title {
    font-size: 20px;
    font-weight: 700;
    color: #243e63;
  }
  
  .slideshow__para {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: #4a5568;
    margin: 16px 0 32px;
  }
  
  .slideshow__cust {
    display: flex;
    align-items: center;
  }
  
  .slideshow__img {
    width: 85px;
    height: 85px;
    border-radius: 50px;
  }
  
  .slideshow__name--user {
    font-size: 20px;
    font-weight: 700;
    color: #243e63;
  }
  
  .slideshow__title--user {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #7c8ba1;
  }
  
  .user__info--container {
    display: flex;
    flex-direction: column;
    margin-left: 24px;
  }
  .slideshow__user {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .slideshow__btns {
    display: flex;
    justify-content:space-between;
    align-items: center;
 }

  .slideshow__cust {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    }
  
  .fa-arrow-left,
  .fa-arrow-right {
    color: #6415ff;
    background-color: #edf2f7;
    border-radius: 50%;
    padding: 16px;
    margin: 0 12px;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  /* 
  FAQS 
  */
  
  .FAQ__container {
    margin: 96px 0;
  }
  
  .FAQ__description {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .FAQ__row {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  
  .FAQ__description--heading {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.6px;
    margin-bottom: 16px;
  }
  .FAQ__description--title {
    font-size: 48px;
    font-weight: 900;
    color: #243e63;
    line-height: 60px;
    letter-spacing: 1px;
  }
  
  .FAQ__description--para {
    font-size: 16px;
    max-width: 576px;
    display: flex;
    margin: 0 auto;
    text-align: center;
    color: #7c8ba1;
    font-weight: 500;
    margin: 16px 0 40px;
    line-height: 1.6;
  }
  
  .FAQ__collapse--container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .FAQ__collapse {
    width: 100%;
    max-width: 896px;
    padding: 16px 32px;
    margin-bottom: 24px;
    background-color: #edf2f7;
    border-radius: 8px;
    transition: 500ms ease;
    border: none;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
  }
  
  .FAQ__collapse:hover {
    background-color: #a0aec0;
  }
  
  /* 
  SUBSCRIBE
   */

  .subscribe__btn--container {
      display: flex;
      flex-wrap: wrap;
  }

  .subscribe__container {
    padding: 96px 0;
  }
  
  .subscribe__row {
    width: 100%;
    margin: 0 auto;
    max-width: 1280px;
  }
  
  .subscribe__description {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #6415ff;
    padding: 80px;
  }
  
  .description__title--wrapper {
    width: 50%;
  }
  
.subscribe__title {
    font-size: 24px;
}

  .subscribe__btn--start {
    background: #f56565;
    padding: 20px 40px;
    border: none;
    margin: 0 32px 0 0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: #f7fafc;
    letter-spacing: 0.8px;
  }
  
  .subscribe__btn--start:hover {
    background-color: #e84545;
  }
  
  .subscribe__btn--contact {
    background: #6415ff;
    padding: 20px 40px;
    border: 1px solid white;
    margin: 0 32px 0 0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: #f7fafc;
    letter-spacing: 0.8px;
  }
  
  .subscribe__btn--contact:hover {
    background-color: white;
    color: #6415ff;
  }
  
  /* 
  FOOTER
  */
  
  .footer__container {
    padding: 78px 0;
    background-color: #6415ff;
  }
  
  .footer__row {
    max-width: 1220px;
    margin: 0 auto;
  }
  
  .footer__description {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 300ms ease;
  }
  
  .footer__link--title {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 32px;
    color: white;
    font-weight: 700px;
  }
  
  .footer__link {
    font-size: 14px;
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
    padding: 0 0 4px;
  }
  
  .footer__link:hover {
    border-bottom: 2px solid white;
  }
  
  .footer__break {
    margin: 64px 0;
    width: 100%;
  }
  
  .footer__break {
    margin: 64px 0;
    width: 100%;
    border-bottom: 2px solid #773ded;
  }
  
  .footer__btm {
    display: flex;
    justify-content: space-between;
    align-content: center;
  }
  
  .footer__logo--container {
    display: flex;
    align-items: center;
  }
  
  .footer__logo--img {
    width: 40px;
    height: 40px;
  }
  
  .footer__logo--name {
    color: #f7fafc;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.4px;
    margin: 0 0 0 8px;
    padding: 0 0 4px;
  }
  
  .footer__cpyr {
    display: flex;
    align-items: center;
    color: #cbd5e0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
  }
  
  .footer__socials {
    display: flex;
    align-items: center;
  }
  
  .fa-facebook-f {
    background-color: white;
    border-radius: 50%;
    padding: 8px;
    margin: 0 16px 0 0;
    color: #243e63;
    display: flex;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .fa-twitter {
    background-color: white;
    border-radius: 50%;
    padding: 8px;
    margin: 0 16px 0 0;
    color: #243e63;
    display: flex;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .fa-youtube {
    background-color: white;
    border-radius: 50%;
    padding: 8px;
    margin: 0 16px 0 0;
    color: #243e63;
    display: flex;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  

/* Media Queries for Responsive Design */
/* Show only on mobile  */
@media (max-width: 768px) {
 .nav__links {
        display: none;
    }
    
 .btn__menu {
        display: block;
        position: absolute;
        right: 24px;
        top: 24px;
        z-index: 100;
    }

    .menu__backdrop {
        padding: 32px;
    }

    .menu__list {
        margin: 16px 0;
        text-align: center;
    }

    .menu__list a {
        font-size: 18px;
        color: #242424;
        padding: 8px 16px;
        display: block;
    }

    .btn__menu--close {
        position: absolute;
        right: 24px;
        top: 24px;
    }
    
.header__img, .quality__img, .steps__img, .values__img {
    width: 100%;
    height: auto;
}
.header__description, .quality__description, .steps__description, .values__description {
    width: 100%;
    margin: 0 auto;
}
.nav, .nav__links, .menu__links {
    flex-direction: column;
    align-items: center;
}
.nav__link, .menu__link, .services__title {
    font-size: 16px;
    padding: 8px 0;
    margin: 0 16px;
}
.row, .header__row, .quality__row, .values__description--container, .steps__row {
    flex-direction: column;
    align-items: center;
}

    {
    .header__title, .quality__title, .steps__title, .values__title {
        font-size: 24px;
    }
    .header__para, .quality__para, .steps__para, .values__para,
    .nav__link, .menu__link, .services__para {
        font-size: 14px;
    }
    .features__services {
        width: 48%;
        margin: 8px 0;
    }
    .header__img, .quality__img, .steps__img, .values__img {
        width: 100%;
        height: auto;
    }
    .header__container, .quality__container, .steps__container, .values__description--container, .pricing__options--container {
        flex-direction: column;
        align-items: center;
    }
    .features__services {
        width: 100%;
        margin: 8px 0;
    }

.subscribe__description {
    display: flex;
    flex-direction: column;
    align-items: center;
}

 .subscribe__container, .subscribe__btn--container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .subscribe__start--btn, .subscribe__contact--btn {
        width: 100%;
        margin: 8px 0;
    }
}

@media (max-width: 480px) {
    .header__title, .quality__title, .steps__title, .values__title {
        font-size: 20px;
    }
    .header__para, .quality__para, .steps__para, .values__para,
    .nav__link, .menu__link, .services__para {
        font-size: 12px;
    }
    .features__services {
        width: 100%;
        margin: 16px 0;
    }
    .header__img, .quality__img, .steps__img, .values__img {
        width: 100%;
        height: auto;
    }
    .header__container, .quality__container, .steps__container, .values__description--container, .pricing__options--container {
        flex-direction: column;
        align-items: center;
    }
    .features__services {
        width: 100%;
        margin: 16px 0;
    }
    .subscribe__description {
    display: flex;
    flex-direction: column;
    align-items: center;
}
  .subscribe__container, .subscribe__btn--container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
  .subscribe__start--btn, .subscribe__contact--btn {
        width: 100%;
        margin: 8px 0;
    }
}
