* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-color: #f5f5f5;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  font-weight: 400;
  color: rgb(56, 56, 56);
}

/* REUSABLE */

.container {
  max-width: 120rem;
  margin: 0 auto;
}

.text {
  font-size: 1.5rem;
  color: black;
}

h1 {
  color: black;
  font-size: 6rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  line-height: 1.2;

  margin-bottom: 2.4rem;
}

h3 {
  text-transform: uppercase;
  font-size: 2rem;
  padding-bottom: 1.2rem;
}

h4 {
  font-family: "Josefin Sans";
  font-size: 4.8rem;
  font-weight: 500;
}

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 85px;
}

.section-title h2 {
  font-size: 48px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
}

.section-title p {
  width: 70%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 30px;
}

@media (max-width: 480px) {
  .section-title p {
    width: 100%;
  }
}

.section-img {
  height: 55rem;
  text-align: center;
}

.subtitleWrapper{
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.qrcode-img {
  height: 9rem;
  width: 10rem;
  margin-left: 5px;
}

/* MOBILE NAV */

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.wrapper {
  height: 10vh;
  width: 100%;
  text-align: center;
}

.open {
  color: white;
  font-size: 3rem;
  float: left;
  padding-left: 2.5rem;
  padding-top: 1.5rem;
  cursor: pointer;
  display: block;
}

.open:hover {
  opacity: 0.8;
}

.nav {
  height: 65vh;
  width: 0;
  position: fixed;
  z-index: 1;
  background-color: #2c5d40;
  transition: 0.5s;
  display: block;
  overflow-x: hidden;
}
.nav a {
  clear: left;
  color: white;
  display: block;
  text-decoration: none;
  font-family: inherit;
  font-size: 2rem;
  transition: 0.3s;
  padding: 0.5em;
}
.nav a:not(:first-child):hover {
  background-color: #c85103;
}

.close {
  float: left;
  font-size: 3rem;
  margin: 1em 0 0 1em;
}

/* HEADER */

.header-grid {
  display: grid;
  grid-template-columns: 1fr 4fr 4fr 1fr;

  background-color: #2c5d40;
}

.open,
.close,
.nav {
  visibility: hidden;
}

header {
  filter: drop-shadow(0.5rem 0.05rem 0.2rem rgba(0, 0, 0, 0.3));
}

.header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.logo {
  height: 3.6rem;
  margin-top: 2rem;
}

.main-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  font-size: 1.6rem;
}

.main-nav-link {
  padding: 0 2rem;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.nav-last-child {
  border-right: none;
}

.main-nav-link:link,
.main-nav-link:visited {
  color: white;
  text-decoration: none;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #c85103;
  font-weight: 700;
}

/* HERO SECTION */

.hero-section {
  background-color: #2c5d40;
  padding: 4.8rem 0;
  height: auto;
}

.hero-section h1 {
  color: white;
  font-size: 6rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  line-height: 1.2;

  margin-bottom: 2.4rem;
}

.hero-section p {
  color: white;
  /* font-size: 2rem; */
  margin-bottom: 3rem;
}

.hero-grid {
  margin-bottom: 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
}

.icon {
  font-size: 5rem;
  color: white;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 1.2rem;
  padding: 1rem 1rem;
  width: 24rem;

  border: 1px solid rgb(36, 36, 36);
  border-radius: 5px;
  background-color: rgb(36, 36, 36);
}

.btn strong {
  font-size: 1.35rem;
  font-weight: 400;
}

.btn p {
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 0;
}

.cta {
  display: flex;
  gap: 2.4rem;
}

/* FEATURE SECTION */

.features-section {
  padding: 4.8rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: center;
}

.feature-textbox {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 18fr;
  align-items: flex-start;
  gap: 2.4rem;

  background-color: white;
  padding: 2.4rem;
  margin-bottom: 2.4rem;
  border-radius: 5px;
}

.feature-textbox2 {
  align-items: center;
  grid-template-columns: 1fr 18fr;
  align-items: flex-start;
  gap: 2.4rem;

  background-color: #2c5d40;
  padding: 2.4rem;
  margin-bottom: 2.4rem;
  border-radius: 5px;
}

.feature-textbox2 .text {
  color: white;
}

.feature-textbox .icon {
  padding-top: 1rem;
  font-size: 5rem;
  color: #2c5d40;
}

.feature-textbox:nth-child(2) {
  background-color: #2c5d40;
  color: white;
}

.feature-textbox:nth-child(2) .icon {
  color: white;
}

.feature-textbox:nth-child(2) .text {
  color: white;
}

.features-image-container {
  text-align: center;
  margin-bottom: 40px;
}

.features-img {
  height: 55rem;
  text-align: center;
}
.section-img2 {
  height: 76rem;
  width: 100%;
  
}

.features-left {
  text-align: center;
}

.app-features-section {
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
}

.app-features-section h4 {
  text-align: center;
}

.app-features-section .contained-text {
  text-align: center;
  max-width: 60vw;
  margin: 0 auto;
  margin-bottom: 4.8rem;
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 2.4rem;
}

.features-img {
  height: 35rem;
}

.order-0 {
  grid-column: 2 / 3;
  grid-row: 2 / 4;

  text-align: center;
}

.order-1 {
  grid-column: 1 / -1;
  grid-row: 1 / 2;

  text-align: center;
}

.order-2 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;

  text-align: right;
}

.order-3 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.order-4 {
  grid-column: 1 / 2;
  grid-row: 3 / 4;

  text-align: right;
}

.order-5 {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
}

.order-6 {
  grid-column: 1 / -1;

  text-align: center;
}

.app-features-grid .icon {
  color: #2c5d40;
}

/* CTA SECTION */

.cta-section {
  background-image: url(../img/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  margin-top: 4.8rem;
  margin-bottom: 4.8rem;
}

.cta-section h4 {
  color: white;
}

.cta-section p {
  color: white;
  /* font-size: 2rem; */
  margin-bottom: 2.4rem;
}

.cta-grid {
  margin-bottom: 2.4rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  justify-items: center;
  align-items: center;
}

.btn p {
  color: white;
  margin-bottom: 0;
}

/* CONTACT US SECTION */

.contact-us-section {
  background-color: #2c5d40;
  padding: 4.8rem 0;
}

.contact-us-section .logo {
  margin-bottom: 1.2rem;
}

.contact-us-section p {
  color: white;
}

.contact-us-section .icon {
  font-size: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-left {
  align-self: center;
}

.awards {
  display: flex;
  justify-content: center;
  gap: 1.2rem;;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;

  margin-bottom: 2.4rem;
}

.contact-links {
  display: flex;
  text-align: end;
  justify-content: flex-end;
  list-style: none;
  font-size: 1.6rem;
}

.contact-links a {
  padding-left: 2.4rem;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.contact-links a:link,
.contact-links a:visited {
  color: white;
  text-decoration: none;
}

.md-text {
  font-size: 2rem;
}

.footer-text:link,
.footer-text:visited {
  color: white;
  text-decoration: none;
}

.footer-text:link,
.footer-text:visited {
  color: white;
  text-decoration: none;
}

.counter {
  padding-top: 180px;
}

.counter .counter-item {
  text-align: center;
  background: #2c5d40;
  padding: 40px 0;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .counter .counter-item {
    margin-bottom: 30px;
  }
}

.counter .counter-item h3,
.counter .counter-item p {
  color: #fff;
}

.counter .counter-item h3 {
  margin-bottom: 20px;
  font-weight: 600;
}

.pricing-table {
  background: #fff;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 0;
  margin-bottom: 80px;
}

.pricing-table.featured .price p {
  color: #ff698d;
}

.pricing-table.featured .action-button .btn-main-rounded {
  background: #ff698d;
}

.pricing-table .title {
  margin-bottom: 30px;
}

.pricing-table .title h5 {
  text-transform: uppercase;
  font-weight: 600;
}

.pricing-table .price {
  margin-bottom: 30px;
}

.pricing-table .price p {
  font-size: 36px;
  font-weight: bold;
  color: #004481;
}

.pricing-table .price p span {
  font-size: 16px;
  font-weight: 400;
}

.pricing-table .action-button {
  margin-top: 30px;
}

ul.feature-list {
  margin: 0;
  padding: 0;
}

ul.feature-list li {
  list-style: none;
  margin: 15px 0;
  font-size: 16px;
}

.promo-video {
  position: relative;
}

.promo-video .section-title h2,
.promo-video .section-title p {
  color: #fff;
}

.bg-3 {
  background-image: url(../img/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  margin-top: 4.8rem;
  margin-bottom: 4.8rem;
}

.video {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video:before {
  border-radius: 3px;
}

.video img {
  width: 100%;
  border-radius: 8px;
}

.video .video-button {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.video .video-box a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video .video-box a .icon {
  height: 130px;
  width: 130px;
  position: relative;
}

.video .video-box a .icon:before {
  position: absolute;
  content: '';
  height: 100px;
  width: 100px;
  border-radius: 100%;
  background: rgba(125, 113, 211, 0.7);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.video .video-box a .icon:after {
  position: absolute;
  top: 0;
  content: '';
  height: 130px;
  width: 130px;
  border-radius: 100%;
  background: rgba(125, 113, 211, 0.5);
}

.video .video-box a .icon i {
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 500;
  display: block;
  height: 70px;
  width: 70px;
  font-size: 35px;
  background: #7d71d3;
  border-radius: 100%;
  color: #fff;
  line-height: 70px;
  text-align: center;
}

.video .video-box a iframe {
  width: 100%;
  height: 100%;
}