/**************************/
/* HEADER */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;

  /* Because we want header to be sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  height: 5.2rem;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #b3bec0;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #afdfe8;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  /* padding: 1.2rem 2.4rem; */
  /* border-radius: 9px; */
  color: #fff;
  background-color: #99a9ac;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #99a9ac;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name='close-outline'] {
  display: none;
}

/**************************/
/* STICKY NAV */
/**************************/
.sticky-header .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.06);
  background-color: rgba(255, 255, 255, 0.97);
}

.sticky-header .section-hero {
  margin-top: 9.6rem;
}
/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  background-color: #dbf3eb;
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 6.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 0.2rem;
}

.hero-img {
  width: 100%;
}

.logos {
  display: flex;
  justify-content: space-around;
}

.logos img {
  height: 3.2rem;
  filter: brightness(0);
  opacity: 50%;
}

/**************************/
/* HOW IT WORKS SECTION */
/**************************/

.section-how {
  padding: 9.6rem 0;
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.step-img-box {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img-box::before,
.step-img-box::after {
  content: '';
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-img-box::before {
  width: 60%;
  /* height: 60%; */

  /* 60% of parent's width */
  padding-bottom: 60%;

  background-color: #e9f7fa;
  z-index: -2;
}

.step-img-box::after {
  width: 45%;
  padding-bottom: 45%;
  background-color: #ceeff7;
  z-index: -1;
}

.step-img {
  width: 215px;
  height: 195px;
  border-radius: 5%;
  /* z-index: 10; */
}

/**************************/
/* MEALS SECTION */
/**************************/

.section-meals {
  padding: 9.6rem 0;
}

.meal {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
}

.meal:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.meal-content {
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #333;
  border-radius: 100px;
  font-weight: 600;
}

.cards {
  position: relative;
}
.card-slant {
  transform: rotate(+4deg);
}

.girl-icon {
  position: absolute;
  right: -18%;
  bottom: 0%;
}

.card-title {
  font-size: 2rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3.2rem;
}

.meal-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.meal-attribute {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.meal-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #6d8991;
}
.card-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  margin-top: 2.4rem;
  background-color: #ceeff7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img {
  width: 4rem;
  height: 4rem;
}

.all-recipes {
  text-align: center;
  font-size: 1.8rem;
}

/**************************/
/* MEALS SECTION */
/**************************/

.section-pricing {
  padding: 9.6rem 0;
}

.pricing-plan {
  border-radius: 11px;

  width: 75%;
}

.pricing-plan--starter {
  justify-self: end;
  border: 2px solid #fdf2e9;
  padding: 4.6rem;
}

.pricing-plan--complete {
  background-color: #fdf2e9;
  padding: 4.8rem;
  position: relative;
  overflow: hidden;
}

.pricing-plan--complete::after {
  content: 'Best value';
  position: absolute;
  top: 6%;
  right: -18%;

  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  background-color: #ffd43b;
  padding: 0.8rem 8rem;
  transform: rotate(45deg);
}

.plan-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.plan-name {
  color: #cf711f;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}

.plan-price {
  font-size: 6.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.6rem;
}

.plan-price span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
}

.plan-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #6f6f6f;
}

.plan-sing-up {
  text-align: center;
  margin-top: 4.8rem;
}

.plan-details {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

.feature-icon {
  color: #e67e22;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #fdf2e9;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.feature-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.feature-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/**************************/
/* CTA SECTION */
/**************************/

.section-cta {
  /* top / right / bottom / left */
  /* padding: 9.6rem 0 12.8rem 0; */

  /* top / horizontal / left */
  padding: 4.8rem 0 12.8rem;
}

.cta {
  display: grid;
  /* 2/3 = 66.6% + 1/3 = 33.3% */
  grid-template-columns: 2fr 1fr;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;

  background-image: linear-gradient(to right bottom, #e0f5fa, #daebef);
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #45260a;
}

.cta .heading-secondary {
  /* color: #45260a; */
  color: inherit;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(235, 151, 78, 0.35),
      rgba(230, 125, 34, 0.35)
    ),
    url('../images/office3.jpg');
  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

/* .cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
} */

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.1fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  margin-top: auto;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}

/**************************/
/* WEBSITE DESIGN CARDS */
/**************************/
.section-web-des {
  background: #4ac29a;
  background: -webkit-linear-gradient(to right, #bdfff3, #4ac29a);
  background: linear-gradient(to right, #bdfff3, #4ac29a);
}
.heading-hero-webD {
  font-weight: 600;
  font-size: 5.8rem;
  margin-bottom: 2.8rem;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in {
  animation: fade 2s ease-in-out;
  opacity: 1;
}

.fade-in:nth-child(1) {
  animation-delay: 1s;
}

.fade-in:nth-child(2) {
  animation-delay: 2s;
}

.fade-in:nth-child(3) {
  animation-delay: 3s;
}

.description-hero-webD {
  font-weight: 400;
  font-size: 3.6rem;
  margin-bottom: 2.8rem;
}

.para-hero-webD {
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 2.8rem;
}

.website-design-cards {
  padding: 9.6rem 0;
}

.web-service-card {
  border-radius: 5%;
  padding: 0.4rem 2.6rem 2.4rem 2.6rem;
  border: 0.8px solid #555;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s;
}

.web-service-card .card-icon-wrapper .card-icon {
  background-color: #2692da;
}

.web-service-card .card-icon-wrapper .ico2 {
  background-color: #b3ffab;
}

.web-service-card:hover {
  transform: translateY(-1.2rem);
  background: #3b82b2;
  background: -webkit-linear-gradient(to bottom, #ffffff, #6dd5fa, #3b82b2);
  background: linear-gradient(to bottom, #ffffff, #6dd5fa, #3b82b2);
}

.web-service-card:nth-child(even):hover {
  background: #b3ffab;
  background: -webkit-linear-gradient(to bottom, #e6fffe, #b3ffab);
  background: linear-gradient(to bottom, #e6fffe, #b3ffab);
}

.web-service-card:hover .card-icon-wrapper .card-icon {
  background-color: #fff;
}

.web-service-card:hover .web-title-card .web-text-card {
  color: #141313;
}

.web-title-card {
  margin-top: 1.6rem;
}

.web-text-card {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  color: #477d8f;
}

/**************************/
/* WEBSITE CATEGORIES */
/**************************/
.card-icon-sqr {
  width: 7rem;
  height: 7rem;
  margin-top: 2.4rem;
  background-color: #ceeff7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.website-categories {
  padding: 9.6rem 0;
}

.website-categories .container .grid--2-cols {
  margin-left: 2.4rem;
  row-gap: 2.6rem;
}

.web-categories {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.8rem;
}

.web-categories-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #477d8f;
}

.web-categories-text {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}
/**************************/
/* WEBSITE FIELDS */
/**************************/

.website-fields {
  padding: 9.6rem 0;
  background-color: #dbf3eb;
}

.web-cat-card {
  padding: 2.4rem 2.4rem;
  border: 0.8px solid rgba(0, 0, 0, 0.15);
  border-radius: 6%;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.web-cat-img {
  height: 4.5rem;
  width: 4.5rem;
  margin-bottom: 1.6rem;
}

.web-cat-title-desc {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 500;
  font-family: 'rubik', sans-serif;
  color: #111;
}

/**************************/
/* WEBSITE  INDUSTRIES */
/**************************/

.web-industries {
  padding: 9.6rem 0;
}

.web-ind-card {
  padding: 1.6rem 1.8rem;
  border: 0.8px solid rgba(0, 0, 0, 0.06);
  border-radius: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.web-ind-title {
  font-family: 'Nunito', Sans-serif;
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: 600;
  margin-top: 1.6rem;
}

.web-icon {
  display: flex;
  justify-content: center;
}

.web-ind-img {
  height: 6rem;
  width: 6rem;
}

/*********************/
/***APP DEV***********/

.section-app-dev {
  background: #225b48;
  background: -webkit-linear-gradient(to bottom, #e6fffe, #225b48);
  background: linear-gradient(to bottom, #e6fffe, #225b48);
}

.app-dev-p {
  letter-spacing: 0.9rem;
  line-height: 2.4rem;
  font-size: 2.8rem;
  margin-bottom: 2.4rem;
}

.app-dev-img {
  width: 50%;
  height: 55%;
  margin-left: 15.2rem;
}

.app-service-card {
  padding: 2.4rem 2.8rem;
  flex-direction: column;
  row-gap: 1.8rem;
}

.app-card-icon-wrapper {
  display: flex;
  justify-content: center;
}

.app-card-icon {
  height: 8.4rem;
  width: 8.4rem;
  border-radius: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-card-ico1 {
  background-color: #d5006126;
}
.card-img1 {
  fill: #d50061;
  color: #d50061;
}

.app-card-ico2 {
  background-color: #d56c0026;
}

.card-img2 {
  fill: #d56c00;
  color: #d56c00;
}

.app-card-ico3 {
  background-color: #9dd50026;
}

.card-img3 {
  fill: #9dd500;
  color: #9dd500;
}

.app-card-ico4 {
  background-color: #00b1d526;
}

.card-img4 {
  fill: #00b1d5;
  color: #00b1d5;
}

.app-title-card {
  margin-top: 2.1rem;
  display: flex;
  justify-content: center;
}

.app-text-card {
  font-size: 1.9rem;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  color: #111;
  text-align: center;
}

.lrg-card-wrap {
  padding: 4.8rem 3.6rem;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  padding-bottom: 4.8rem;
  margin-bottom: 6.4rem;
}

.large-card-content .lrg-card-desc {
  font-size: 1.8rem;
  font-weight: 300;
  font-family: 'Rubik', sans-serif;
  line-height: 1.22;
}

.heading-large-card {
  font-weight: 500;
  font-size: 3.2rem;
  margin-bottom: 2.4rem;
  color: #111;
}

.app-inner-card-wrapper {
  padding: 3.2rem 0 1.6rem 0;
}

.inner-card-text {
  font-size: 1.5rem;
  text-align: center;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-cloud {
  background-color: #030924;
}

.heading-hero-cloud {
  color: #fdf2e9;
  font-weight: 600;
  font-size: 5.8rem;
  margin-bottom: 2.8rem;
}

.para-hero-cloud {
  color: #fdf2e9;
  font-weight: 400;
  font-size: 2.4rem;
  margin-bottom: 2.8rem;
  line-height: 2.5rem;
  font-family: 'Nunito', sans-serif;
}

.cloud-services {
  padding: 9.6rem 0;
}
.cloud-services .container .grid {
  background-color: #fafbfc;
  padding: 9.2rem 5.4rem;
}

.cloud-services-h1 {
  color: #030100;
  font-weight: 500;
  font-size: 5.4rem;
  margin-bottom: 3.8rem;
  font-family: 'Nunito', sans-serif;
}

.cloud-services-p {
  font-weight: 400;
  font-size: 1.9rem;
  margin-bottom: 2.8rem;
  line-height: 3.2rem;
  font-family: 'Nunito', sans-serif;
}

.heading-cloud-services {
  font-size: 3.8rem;
  color: #030100;
  font-weight: 300;
  margin-bottom: 3.4rem;
  font-family: 'Nunito', sans-serif;
}
.cloud-img-wrap {
  padding: 1.9rem;
}
.cloud-img {
  height: 85%;
  width: 80%;
}

/***************************/
/******Product**************/
/***************************/

.product-h1 {
  margin: 9.6rem 0;
  font-size: 6.4rem;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  color: #030100;
}

.centered-clock {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.4rem 24rem;
}

.h1-about {
  font-size: 4rem;
  font-weight: 300;
  font-family: 'Nunito', sans-serif;
}

.about-desc {
  font-size: 1.9rem;
  font-family: 'Nunito', sans-serif;
  line-height: 2.4rem;
}
/***************************/
/******SW DEV**************/
/***************************/

.section-sw-dev {
  background-color: #0b172d;
}

.h3-sw-dev {
  margin: 6.4rem 3.2rem;
  font-size: 3rem;
  font-weight: 300;
  font-family: 'rubik', sans-serif;
  color: white;
}

.h3-sw-dev-title {
  text-align: center;
}
.sw-des {
  margin: 6.4rem 3.2rem;
  font-size: 1.9rem;
  line-height: 2.1rem;
  font-weight: 300;
  font-family: 'rubik', sans-serif;
  color: white;
}

.sw-dev-types {
  padding: 9.6rem 0;
}

.sw-services .cari-list .list-item {
  font-size: 4rem;
  border-radius: 5%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  padding: 3.2rem;
}

/***************************/
/******UI/UX****************/
/***************************/

.section-ui-ux {
  background-color: white;
}

/***************************/
/******ABOUT****************/
/***************************/

.section-about {
  padding: 9.6rem 0;
}

.about-part2 {
  background-color: #333;
}

.about-visions {
  padding: 6.2rem;
  color: #fff;
  align-items: center;
  justify-content: center;
}

.about-visions:last-child {
  padding-bottom: 9.6rem;
}

.h1-about {
  text-align: center;
}

.h3-about {
  text-align: center;
  margin: 6.4rem 3.2rem;
  font-size: 3rem;
  font-weight: 300;
  font-family: 'rubik', sans-serif;
}

.section-contact {
  padding: 9.6rem 4.8rem;
  background-color: #fff;
}

.contact-p {
  font-size: 2.2rem;
  text-align: center;
}

.section-career {
  background-color: #fff;
  padding: 9.6rem 0;
}

.section-career-options {
  padding: 9.6rem 0;
}

.career-header {
  padding: 0 0 3.8rem 3.2rem;
}
.h1-career {
  font-size: 8rem;
  font-weight: 200;
  font-family: TWK Everett, Helvetica, Arial, sans-serif;
  padding: 0 0 3.8rem 3.2rem;
  color: #111;
}

.career-desc {
  font-size: 2.1rem;
  font-weight: 200;
  padding: 0 0 3.8rem 3.2rem;
  font-family: TWK Everett, Helvetica, Arial, sans-serif;
  color: #111;
}

.section-career-options {
  background: #c6d7e3; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #c6d7e3,
    rgb(92, 94, 94)
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #c6d7e3,
    rgb(92, 94, 94)
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.career-list {
  background-color: #fafbfc;
  padding: 6.4rem 5.6rem;
}

.job-title {
  margin-bottom: 1.5rem;
}

.job-h2 {
  padding: 1.9rem 0;
}
.cari-list {
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
