* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  /*    10px / 16px */
  scroll-behavior: smooth;
  font-size: 62.5%;
}
body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  overflow-x: hidden;
}

/*Start of hero Css*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0b3c47;
  height: 9.6rem;
  padding: 0 4.8rem;
}
.company-logo {
  height: 9.6rem;
}
.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.main-nav-link:link,
.main-nav-link:visited {
  text-decoration: none;
  color: #00e6c3;
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.3s;
}
.main-nav-link:hover,
.main-nav-link:active {
  color: #ffffff;
}
.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #000;
  background-color: #00e6c3;
}
.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  color: #ffffff;
  background-color: #117a7a;
}
.btn-mobile {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}
.icon-mobile {
  height: 3.2rem;
  width: 3.2rem;
  color: #00ecc9;
}
.icon-mobile[name="close-outline"] {
  display: none;
}
/* Unnecessary sticky navigation bar */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 9.6rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgb(8, 147, 147);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}
.sticky .section-hero {
  margin-top: 9.6rem;
}
.section-hero {
  background-color: #e0f8f0;
  padding: 4.8rem 0 9.6rem 0;
  background-image: radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.2)
    ),
    url(../images/hero.jpg);
  background-size: cover;
  color: #fff;
}
.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  align-items: center;
}
.hero-text {
  width: 50%;
}
.heading-primary,
.heading-secondary {
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.heading-primary {
  font-size: 4.8rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}
.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 2.4rem;
}
.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #00d7a4;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}
.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}
.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-full:link,
.btn-full:visited {
  background-color: #00e6c3;
  color: #000;
}
.btn-full:hover,
.btn-full:active {
  color: #fff;
  background-color: #117a7a;
}
.btn-outline:link,
.btn-outline:visited {
  background-color: #fff;
  color: #555;
}
.btn-outline:hover,
.btn-outline:active {
  background-color: #fdf2e9;
  box-shadow: inset 0 0 0 3px #fff;
}
.margin-right {
  margin-right: 1.6rem !important;
}
/*End of hero Css*/

/*Start of More info*/
.section-more-info {
  margin-top: -6.4rem;
}
.service {
  box-shadow: 0 2.4rem 4.8rem rgb(0, 243, 185);
  border-radius: 11px;
  background-color: #e0f8f0;
  padding: 0 2.2rem 1.2rem 2.2rem;
  transition: all 0.4s;
}
.service:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(14, 236, 192, 0.5);
}
.service-icon {
  margin-top: 1rem;
  padding: 0 1rem;
  height: 2.4rem;
  width: 2.4rem;
  color: #00aaff;
}
.service .service-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 1rem;
}
.service .service-description {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.btn-info:link,
.btn-info:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 9px;
  background-color: #00e6c3;
  color: #000000;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-info:hover,
.btn-info:active {
  color: #ffffff;
  background-color: #117a7a;
}
/*End of More info Css*/

.container {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}
.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}
.grid-2 {
  grid-template-columns: 1fr 1fr;
}
.service-grid {
  grid-template-columns: repeat(4, auto);
  justify-content: center;
}

/*Start of About Css*/
.section-about {
  padding: 9.6rem 0;
  background: #002e2f;
}
.about-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img {
  margin-top: 1.6rem;
  width: 100%;
  border-radius: 2rem;
}
.about-description {
  color: #00ffe0;
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
/*End of About Css*/

/*Start of Services Css*/
.services {
  padding: 4.8rem 0 9.6rem 0;
  color: #000000;
  background: radial-gradient(
    circle at center,
    #0fa695 0%,
    #093f4d 40%,
    #0a1f24 100%
  );
}
.services-box {
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 1rem 2.4rem 4.8rem rgb(0, 235, 243);
}
.service-heading {
  display: block;
  font-size: 2.4rem;
  font-weight: 500;
  color: #04f3c7;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}
.service-img img {
  width: 100%;
  display: block;
  transition: all 0.3s;
}
.services-img-box {
  align-items: center;
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  padding: 1.6rem;
}
.service-img {
  overflow: hidden !important;
}
.service-img img:hover {
  transform: scale(1.1);
}
.services-text-box {
  padding: 6.4rem 6.4rem 6.4rem 6.4rem;
  color: #ffffff;
}
.service-tag {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  letter-spacing: -0.5px;
  color: #000000;
}
.services-text {
  font-size: 1.8rem;
  line-height: 1.8;
}
/*End of Services Css*/

/*Start of Portfolio Css*/
.section-portfolio {
  background: linear-gradient(135deg, #17ae90, #068e89);
  padding: 9.6rem 0;
}
.portfolio-heading {
  color: #ffffff;
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 1.8rem;
}
.button-group {
  text-align: center;
  margin-bottom: 4rem;
}
.button-group .btn {
  display: inline-block;
  padding: 1rem 2rem;
  margin-right: 1rem;
  background-color: #1fe5d1;
  color: #000000;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
  border-radius: 1rem;
  outline: none;
  cursor: pointer;
}
.button-group .btn:hover {
  background-color: #2d8176;
  color: #ffffff;
}
.button-group .btn.active {
  background-color: #1fe5d1;
  color: #000000;
}
.portfolio {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.portfolio .item {
  position: relative;
  width: calc(33.33% - 8rem);
  margin: 4rem;
  overflow: hidden;
  cursor: pointer;
}
.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s;
}
.item:hover img {
  transform: scale(1.15);
}
.item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(5, 85, 92, 0.7);
  color: #ffffff;
  font-size: 1.8rem;
  padding: 1.5rem;
  overflow: hidden;
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
}
.item:hover .overlay {
  opacity: 1;
}
.item .overlay a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border: 2px solid #9acd32;
  border-radius: 9px;
  color: #c8d1d8;
  text-decoration: none;
  font-size: 1.4rem;
  transition: 0.3s;
}
.item .overlay a:hover {
  background-color: #c8d1d8;
  color: #9acd32;
}
/*End of Portfolio Css*/

/*Start of Invoicing Css*/
.section-invoice {
  padding: 9.6rem 0;
  background: linear-gradient(135deg, #20b2aa, #006d77);
}
.invoice-title {
  text-align: center;
}
.invoice-description {
  text-align: center;
  font-size: 1.8rem;
  color: #333333;
  margin-top: -2rem;
  margin-bottom: 3.2rem;
}
.invoicing-plan {
  border-radius: 11px;
  width: 75%;
}
.invoicing-plan-starter {
  justify-self: end;
  border: 2px solid #76d3c6;
  padding: 4.6rem;
}
.invoicing-plan-complete {
  background-color: rgba(8, 198, 167, 0.73);
  padding: 4.8rem;
  position: relative;
  overflow: hidden;
}
.invoicing-plan-complete::after {
  content: "Best value";
  position: absolute;
  top: 6%;
  right: -18%;
  padding: 0.8rem 8rem;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  background-color: #ffd43b;
  transform: rotate(45deg);
}
.plan-header {
  text-align: center;
  margin-bottom: 4.8rem;
}
.plan-name {
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.75px;
  margin-bottom: 2rem;
}
.plan-price {
  color: #fff;
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.plan-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fff;
}
.plan-sign-up {
  text-align: center;
  margin-top: 4.8rem;
}
.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.list-item {
  font-size: 1.8rem;
  display: flex;
  color: #fff;
  align-items: center;
  gap: 1.6rem;
  line-height: 1.2;
}
.list-icon {
  height: 3rem;
  width: 3rem;
  color: #00f6c5;
}
/*End of Invoicing Css*/

/*Start of Testimonial Css*/
.section-testimonials {
  padding: 9.6rem 0;
  background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
}
.section-testimonials .subheading,
.section-testimonials .heading-secondary {
  text-align: center;
}
.testimonial-swiper {
  margin-top: 1.8rem;
  padding: 2rem;
}
.testimonial-card:hover {
  box-shadow: 0 2.4rem 4.8rem rgb(3, 136, 114);
  overflow: hidden;
  transform: scale(1.06);
}
.swiper-slide {
  display: flex !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
.swiper-wrapper {
  margin-bottom: 4rem;
}
.testimonial-card {
  width: 75%;
  background-color: #049093;
  padding: 1.5rem;
  border-radius: 11px;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  /* text-align: left; */
  transition: all 0.4s;
  border: 2px solid #fdf2e9;
}
.testimonial-profile {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
  margin-top: 1rem;
}
.testimonial-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* .testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  object-fit: cover;
} */
.testimonial-img.initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #339c9e;
  color: white;
  font-weight: bold;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.testimonial-text {
  color: #bfd9e8;
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.testimonial-name {
  display: block;
  font-size: 1.6rem;
  color: #e0f7fa;
  font-weight: 700;
}
.testimonial-title {
  font-size: 1.4rem;
  color: #e0f7fa;
}
.testimonial-company {
  font-size: 1.4rem;
  color: #fdf2e9;
}
/* Swiper pagination */
.swiper-pagination {
  bottom: 0 !important;
}
:root {
  --swiper-navigation-color: #00ffff;
  --swiper-pagination-color: #0de1e1;
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: #09af93;
  transform: scale(1.1);
  transition: all 0.3s;
}
.swiper-pagination-bullet:hover {
  background-color: #09af93;
  transform: scale(1.2);
  transition: all 0.3s;
}
/*End of Testimonial Css*/

/*Start of Call to Action Css*/
.section-call-to-action {
  padding: 4.8rem 0 9.6rem 0;
  background: linear-gradient(to bottom, #0b3975, #044b70);
}
.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 2.4rem 4.8rem rgb(16, 193, 193);
  background: radial-gradient(
    ellipse at bottom,
    #020024 0%,
    #090979 35%,
    #000000 100%
  );
}
.cta-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.6rem 5.2rem 5.2rem 5.2rem;
  color: #ffffff;
}
.cta .heading-secondary {
  color: #0eeaea;
  line-height: 1;
  margin-bottom: 3.2rem;
}
.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}
.cta-img-box {
  background-image: url("../images/contact-us.jpg");
  background-size: cover;
  background-position: center;
}
/* linear-gradient(
      to right bottom,
      rgba(235, 151, 78, 0.35),
      rgba(230, 125, 34, 0.35)
    ), */
.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,
.cta-form textarea {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  border: none;
  color: #000000;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.cta-form input::placeholder {
  color: #aaa;
}
.btn-contact {
  background-color: #00e6c3;
  color: #fdf2e9;
  margin-top: 2rem;
  padding: 1.2rem;
}
.btn-contact:hover {
  background-color: #fff;
  color: #555;
}
*:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(34, 230, 191, 0.5);
}
.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}
footer {
  padding: 9.6rem 0;
  border-top: 1px solid #ffffff;
  background: #0b3c47;
}
.footer-card {
  padding: 3.2rem 2.4rem 4.8rem 2.4rem;
  border-radius: 11px;
  background: radial-gradient(
    circle at left center,
    #217a7b,
    #0b3b3b 50%,
    #0a0e0f 100%
  );
  box-shadow: 0 2.4rem 4.8rem rgb(3, 166, 255);
}
.grid-footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}
.footer-logo-col {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  display: block;
  margin-bottom: 1rem;
}
.footer-description {
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.6;
}
.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  color: #1fe5d1;
  margin-bottom: 4rem;
}
.address-cont {
  font-style: normal;
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 1.6;
}
.address {
  margin-bottom: 1rem;
}
.social-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.facebook {
  color: #1877f2;
}
.linkedin {
  color: #0a66c2;
}
.instagram {
  color: #dd2a7b;
}
.tiktok {
  color: #69c9d0;
}
.social-icon {
  height: 2.4rem;
  width: 2.4rem;
  margin-right: 1rem;
}
.footer-day {
  font-style: normal;
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 1;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-contact:link,
.footer-contact:visited,
.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  text-align: center;
  font-size: 1.6rem;
  color: #ffffff;
  transition: all 0.3s;
}
.footer-link:link,
.footer-link:visited {
  display: flex;
  align-items: center;
}
.footer-contact:hover,
.footer-contact:active,
.footer-link:hover,
.footer-link:active {
  color: #4ff2e3;
}
.sign-off {
  text-align: center;
  margin-top: 8rem;
}
.copyright {
  font-size: 1.4rem;
  color: #d9d9d9;
  line-height: 1.6;
  margin-top: auto;
}
/*End of Call to Action Css*/
