@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  height: 100% !important;
}

/* HOME */
.home {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url(./assets/pexels.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 5s;

  /* Animating Background */
  /* animation: 20s ease-in-out infinite alternate-reverse forwards running animate; */
}

.home img {
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; */
}

.home .content {
  position: relative;
  max-width: 750px;
  text-align: center;
  z-index: 1000;
}

.home .content h2 {
  color: #fff;
  font-size: 80px;
}

.home .content p {
  color: #fff;
  font-size: 26px;
}

.home .about-btn {
  margin-top: 25px;
  position: relative;
  display: inline-block;
  align-items: center;
  text-decoration: none;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 25px;
  border-radius: 5px;
}

.home .about-btn .down-arrow {
  position: relative;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.home .about-btn:hover {
  color: #fff;
  background: #00b3db;
  /* 0d6efd */
  border: 2px solid #00b3db;
  transform: scale(1.1);
  transition: all ease-in 0.3s;
}

.home header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 60px;
  padding: 20px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.6s;
  z-index: 10000;
}

.home header .logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}

.home header .logo .freshnearly {
  position: relative;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  opacity: 1;
}

.home header ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: inherit; */
}

.home header ul li {
  position: relative;
  list-style: none;
}

.home header ul li.active a,
.sidebar ul li.active a {
  color: #ffffff;
  /* #18B11D FNE Color */
  border-bottom: 3px solid #18B11D;
  transition: all ease-in-out 0.6s;
}

.home header ul li a {
  position: relative;
  margin: 0 15px;
  min-height: inherit;
  text-decoration: none;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 500;
  transition: 0.6s;
}

.home header ul li a:hover {
  /* font-weight: 1000; */
  transform: scale(1);
  transition: all ease-out 0.6s;
  border-bottom: 3px solid #18B11D;
}

.home header .logo:hover {
  transform: scale(1.1);
  transition: all ease-out 0.6s;
}

.home header.sticky {
  padding: 10px 100px;
  background: #162c3b;
}

.home header.sticky .logo,
.home header.sticky ul li a {
  color: #fff;
}

.home header.sticky ul li.active a,
.sidebar ul li.active a {
  color: #e53e6c;
  font-weight: 900;
  border-bottom: 3px solid #18B11D;
  transition: all ease-in-out 0.6s;
}

.home header.sticky ul li a:hover {
  /* color: #000; */
  border-bottom: 3px solid #18B11D;
  transition: all ease-in-out 0.6s;
}

.home header ul .marker {
  position: relative;
  height: 4px;
  width: 0;
  background: crimson;
  bottom: -8px;
  transition: 0.5s;
  border-radius: 4px;
}

.home header.sticky ul .marker {
  position: absolute;
  height: 4px;
  width: 0;
  background: crimson;
  bottom: -8px;
  transition: 0.5s;
  border-radius: 4px;
}


.flexq {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app {
  &-btn {
    width: 45%;
    max-width: 160px;
    color: #fff;
    margin: 20px 10px;
    text-align: left;
    border-radius: 5px;
    text-decoration: none;
    font-family: "Lucida Grande", sans-serif;
    font-size: 10px;
    text-transform: uppercase;

    &.blu {
      background-color: #101010;
      transition: background-color 0.25s linear;

      &:hover {
        background-color: #454545;
      }
    }

    i {
      width: 20%;
      text-align: center;
      font-size: 28px;
      margin-right: 7px;
    }

    .big-txt {
      font-size: 17px;
      text-transform: capitalize;
    }
  }
}




/* SIDEBAR */
.sidebar {
  display: none;
}

/* ABOUT SECTION */
.about {
  position: relative;
  display: flex;
  width: 100%;
  height: 100vh;
  background: #162c3b;
}

.about .contentBox {
  width: 50%;
  background-color: #162c3b;
  padding: 100px;
}

.heading {
  color: #fff;
  font-size: 30px;
  font-weight: 600px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about .contentBox .heading {
  font-size: 36px;
}

.text {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
}

.textleft {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  align-self: flex-start;
}

.about .imageBox {
  position: relative;
  background: url(./assets/about.jpg);
  width: 50%;
  background-size: cover;
  background-position: center;
}

/* NEW ABOUT US */
.aboutus {
  width: 100%;
  height: 120vh;
  background-color: #162c3b;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.aboutus div {
  width: 50%;
}

.aboutcontent1,
.aboutcontent2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.aboutimage1 {
  background-image: url(./assets/about1.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.aboutimage2 {
  background-image: url(./assets/about2.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* SERVICES */
/* .services {
  background: #12222d;
  padding: 100px;
  text-align: center;
}
.services .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 60px;
}
.services .container .serviceBox {
  position: relative;
  background: #fff;
  width: 350px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.services .container .serviceBox img {
  max-width: 100px;
}
.services .container .serviceBox h2 {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
} */

/* NEW SERVICES */
.services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #222;
  min-height: 100vh;
  padding: 60px;
}

.service-container {
  position: relative;
  width: 1000px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.services .service-card {
  position: relative;
  height: 250px;
  background: #fff;
  display: flex;
  width: 45%;
  margin: 30px 0;
}

.services .service-card .imageBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}

.services .service-card:hover .imageBox {
  width: 150px;
  height: 150px;
  left: -75px;
  top: calc(50% - 75px);
  transition: 0.5s ease-in-out;
  background: #ff0057;
}

.services .service-card .imageBox img {
  max-width: 100px;
  max-height: 100px;
  transition: 0.5s ease-in-out;
  filter: invert(1);
}

.services .service-card:hover .imageBox img {
  max-width: 75px;
}

.service-container .service-card .imageBox::before {
  content: attr(data-text);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 6em;
  color: rgba(255, 255, 255, 0.05);
  font-weight: 700;
}

.service-container .service-card .content {
  position: absolute;
  right: 0;
  width: calc(100% - 75px);
  height: 100%;
  padding: 20px;
  text-align: justify;
  display: flex;
  align-items: center;
}

.service-container .service-card .content h3 {
  margin-bottom: 5px;
  font-size: 24px;
}

.services p.text {
  text-align: center;
}

.service-container .service-card .content a {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  background: #333;
  text-decoration: none;
  color: #fff;
}

/* TECHNOLOGY */
.technology {
  background: #3f8ffc;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.technology .contentBox {
  padding: 50px;
  max-width: 50%;
}

.technology .contentBox p {
  text-align: justify;
}

.technology .imageBox {
  display: flex;
  background: #000;
  height: 100%;
  justify-content: center;
  align-items: center;
  min-width: 50%;
}

.technology .imageBox img {
  max-width: 100%;
}

/* CLIENT */
.client {
  position: relative;
  background: #162c3b;
  padding: 100px;
  text-align: center;
}

.client .imageBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.client .imageBox img {
  max-width: 200px;
  margin: 20px;
  opacity: 0.25;
  cursor: pointer;
}

.client .imageBox img:hover {
  opacity: 1;
}

.client .counters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-top: 40px;
}

.client .counters .counting {
  margin: 20px;
}

.client .counters h1 {
  font-size: 40px;
  color: #fff;
}

.client .counters p {
  font-size: 20px;
  color: #fff;
}

/* TESTIMONIALS */
.testimonials {
  position: relative;
  padding: 100px;
  background: #12222d;
  text-align: center;
}

.testimonials .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.testimonials .container .contentBox {
  background: #fff;
  padding: 60px 50px;
  width: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.testimonials .container .contentBox p {
  font-style: italic;
}

.testimonials .container .contentBox h3 {
  width: 100%;
  text-align: end;
  font-weight: 500;
  color: #3f8ffc;
}

/* NEW TESTIMONIALS */
.testimonial {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background: linear-gradient(to bottom, #ffe000, #86fde8);
  overflow: hidden;
}

.testimonial .heading {
  margin: 0;
  color: #000;
}

.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  max-width: 320px;
  width: 320px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  filter: blur(4px);
  background: #d1ebff;
  border-radius: 10px;
}

.testimonialBox {
  position: relative;
  width: 100%;
  padding: 40px;
  padding-top: 90px;
}

.testimonialBox .quote {
  position: absolute;
  top: 20px;
  right: 30px;
  opacity: 0.2;
}

.testimonialBox .details {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonialBox .details .imageBox {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}

.testimonialBox .details .imageBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonialBox .details h3 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #2196f3;
  line-height: 1.1em;
}

.testimonialBox .details h3 span {
  font-size: 12px;
  color: #666;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  background-image: none !important;
}

.swiper-slide-active {
  filter: blur(0px);
  background: #fff;
}

.quote {
  position: relative;
  object-fit: contain;
  width: 40px;
  height: 40px;
}

/* CONTACT */
.contact {
  padding: 60px;
  background: #162c3b;
  text-align: center;
}

.imageBox2 {
  background: url(./assets/bg2.jpg);
  background-size: cover;
  background-position: center;
  width: 50%;
}

.redBox {
  background: url(./assets/red.jpg);
  background-size: cover;
  background-position: center;
}

.form .inputBox {
  margin-bottom: 40px;
}

.form .inputBox input {
  width: 100%;
  background: transparent;
  box-shadow: none;
  border: none;
  outline: none;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  border-bottom: 2px solid #fff;
}

.form .inputBox input::placeholder {
  color: #fff;
}

.form .inputBox textarea {
  width: 100%;
  background: transparent;
  box-shadow: none;
  border: none;
  outline: none;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 300;
  min-height: 150px;
  color: #fff;
  border-bottom: 2px solid #fff;
}

.form .inputBox textarea::placeholder {
  color: #fff;
}

.form .inputBox input[type="submit"] {
  width: 150px;
  background-color: #fff;
  color: #111;
  cursor: pointer;
  font-weight: 400px;
}

/* CONTACT US */
.contactus {
  position: relative;
  width: 100%;
  padding: 40px 100px;
  background: linear-gradient(to bottom, #86fde8, #acb6e5 60%),
    url(./assets/contact.jpg);
}

.contactus .title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
}

.contactus .title h2 {
  color: #fff;
  font-weight: 500;
}

.form {
  position: relative;
  grid-area: form;
}

.info {
  position: relative;
  grid-area: info;
}

.map {
  position: relative;
  grid-area: map;
}

.contact1 {
  position: relative;
  padding: 40px;
  background: rgba(0, 0, 0, 0.205);
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.3);
}

.contact1 h3 {
  color: #fff;
  font-weight: 500;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.box {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 5fr 4fr;
  grid-template-areas: "form info" "form map";
  gap: 20px;
}

.form {
  border-radius: 15px;
}

.formBox {
  position: relative;
  width: 100%;
}

.formBox .row50 {
  display: flex;
  gap: 20px;
}

.formInputBox {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  width: 50%;
}

.formBox .row100 .formInputBox {
  width: 100%;
}

.formInputBox span {
  /* color: #18b7ff; */
  color: #fff;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
}

.formInputBox input {
  padding: 10px;
  font-size: 1.1em;
  outline: none;
  border: 1px solid #333;
  border-radius: 5px;
}

.formInputBox textarea {
  padding: 10px;
  font-size: 1.1em;
  outline: none;
  border: 1px solid #333;
  resize: none;
  border-radius: 5px;
  min-height: 220px;
  margin-bottom: 10px;
}

.formInputBox input[type="submit"] {
  background: #ff578b;
  color: #fff;
  outline: none;
  font-size: 1.1em;
  max-width: 180px;
  font-weight: 500;
  cursor: pointer;
  padding: 14px 15px;
}

.formInputBox ::placeholder {
  color: #999;
}

/* INFO */
.info {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 10px;
}

.info h3 {
  color: #fff;
}

.info .infoBox div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.info .infoBox div span {
  min-width: 40px;
  height: 40px;
  color: #fff;
  background-color: #18b7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  border-radius: 50%;
  margin-right: 15px;
}

.info .infoBox div p {
  color: #fff;
}

.info .infoBox .phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
}

.info .infoBox div a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
}

.sci {
  margin-top: 40px;
  display: flex;
}

.sci li {
  list-style: none;
  margin-right: 15px;
}

.sci li a {
  font-size: 2em;
  color: #ccc;
  transition: all ease-in-out 0.3s;
}

.sci li a:hover {
  color: #fff;
}

.sci li:hover {
  transform: scale(1.2);
}

/* MAP */
.map {
  padding: 0;
  border-radius: 10px;
}

.map iframe {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

/* FOOTER */
.footer {
  background: #162c3b;
  padding: 20px 80px;
  min-height: 20vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* FOOTER LEFT */
.footer-div {
  display: flex;
  flex-direction: column;
}

.footer-head {
  font-size: 36px;
  color: #fff;
}

.footer-subhead {
  font-size: 14px;
  font-style: italic;
  color: #fff;
  margin-top: 10px;
  padding: 0;
}

/* FOOTER MIDDLE */
.footer .footer-social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 102px;
}
/* FOOTER MIDDLE */
.footer .download-app {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 102px;
}
.footer .footer-social p {
  font-size: 18px;
  font-weight: 500;
}

.footer .footer-social ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.footer .footer-social ul li {
  list-style: none;
}

.footer .footer-social ul li a {
  width: 40px;
  height: 40px;
  background-color: #fff;
  text-align: center;
  line-height: 35px;
  font-size: 22px;
  margin: 0 10px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid #fff;
  /* padding-top: 3px; */
  z-index: 1;
}

.footer .footer-social ul li a .icon {
  position: relative;
  color: #262626;
  transition: 0.5s;
  z-index: 3;
}

.footer .footer-social ul li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

.footer .footer-social ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00f;
  transition: 0.5s;
  z-index: 2;
}

.footer .footer-social ul li a:hover:before {
  top: 0;
  border-radius: 50%;
}

.footer .footer-social ul li:nth-child(1) a:before {
  background: #3b5999;
}

.footer .footer-social ul li:nth-child(2) a:before {
  background: #fff;
  /* border: 3px solid #000 !important; */
}


.footer .footer-social ul li:nth-child(3) a:before {
  background: #0077b5;
}

.footer .footer-social ul li:nth-child(4) a:before {
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
}

.footer .footer-social ul li:nth-child(5) a:before {
  background: #25d366;
}

/* FOOTER RIGHT */
.footer .footer-copyright {
  text-align: center;
}

.footer .footer-copyright .text {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-logo {
  text-decoration: none;
  font-size: 14px;
  color: #fff000;
  font-weight: 800;
}

.footer-logo:hover {
  transition: 0.5s all ease-in-out;
  font-size: 18px;
}

.showBtn {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {

  /* ABOUT */
  .about {
    flex-direction: column;
  }

  .about .contentBox,
  .about .imageBox {
    width: 100%;
    padding: 50px;
    min-height: 400px;
    text-align: center;
  }

  /* SERVICES */
  /* .services {
    padding: 50px;
  }
  .services .container {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    margin-top: 20px;
  }
  .services .container .serviceBox {
    margin-top: 20px;
    width: 300px;
    height: 350px;
  } */

  /* NEW SERVICES */
  .services {
    padding: 30px;
  }

  .service-container {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .service-container .service-card {
    width: 400px;
  }

  /* TECHNOLOGY */
  .technology {
    height: min-content;
    justify-content: center;
    flex-direction: column;
  }

  .technology .imageBox {
    padding: 0;
    margin-top: 40px;
    width: 100%;
    background: #000000;
  }

  .technology .imageBox .myCanvasContainer {
    min-width: 400px;
  }

  .technology .contentBox {
    padding: 50px 50px 0px;
    max-width: 100%;
  }

  .technology .contentBox h2 {
    font-size: 25px;
  }

  /* CLIENTS */
  .client {
    padding: 50px;
  }

  .client .imageBox {
    position: relative;
    justify-content: center;
  }

  .client .counters {
    flex-direction: column;
    justify-content: center;
  }

  /* TESTIMONIALS */
  .testimonial {
    justify-content: space-evenly;
    align-items: center;
  }

  .testimonial .heading {
    font-size: 26px;
    margin: 0;
  }

  /* OLD */
  .testimonials .contentBox {
    padding: 60px 40px;
    max-width: 550px;
    margin-bottom: 40px;
  }

  .testimonials .contentBox:last-child {
    margin-bottom: 0;
  }

  /* CONTACT */
  .contact {
    padding: 50px;
  }

  /* FOOTER */
  .footer {
    padding: 20px 50px;
    flex-direction: column;
    text-align: center;
  }

  .footer .footer-subhead {
    margin-bottom: 10px;
  }

  .footer ul {
    margin-bottom: 10px;
  }

  .footer .footer-copyright .text {
    margin-top: 10px;
  }
}

/* RESPONSIVE CONTACT DESIGN */
@media (max-width: 991px) {
  .contactus {
    /* background: #03a9f5; */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .box {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "form" "info" "map";
  }

  .formBox .row50 {
    display: flex;
    gap: 0;
    flex-direction: column;
  }

  .formInputBox {
    width: 100%;
  }

  .contact1 {
    padding: 30px;
  }

  .phone {
    display: flex;
    flex-direction: column;
  }

  .map {
    min-height: 300px;
    padding: 0;
  }

  .contactus .box .contact1 h3 {
    text-align: center;
  }

  .sci {
    justify-content: space-evenly;
  }
}

@media (max-width: 1290px) {

  .home header,
  .home header.sticky {
    padding: 10px 30px;
  }

  /* .services .container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 60px;
  }
  .services .container .serviceBox {
    margin: 10px;
  } */

  .technology .imageBox {
    min-height: 100%;
    background: #000;
  }

  .contactus {
    padding: 40px;
  }
}

@media (max-width: 768px) {

  /* NEW ABOUT US */
  .aboutus {
    flex-direction: column;
    width: 100%;
    height: 200vh;
  }

  .aboutus div {
    width: 100%;
    flex: 1;
  }

  .aboutcontent1 {
    order: 1;
  }

  .aboutcontent2 {
    /* flex: 1; */
    order: 3;
  }

  .aboutimage1 {
    order: 2;
  }

  .aboutimage2 {
    order: 4;
  }

  /* NEW SERVICES */
  .service-container .service-card {
    max-width: 300px;
    height: auto;
    flex-direction: column;
  }

  .service-container .service-card .imageBox {
    position: relative;
  }

  .service-container .service-card .imageBox,
  .service-container .service-card:hover .imageBox {
    width: 100%;
    height: 200px;
    left: 0;
  }

  .service-container .service-card .imageBox img,
  .service-container .service-card:hover .imageBox img {
    max-width: 100px;
  }

  .service-container .service-card .content {
    position: relative;
    width: 100%;
  }
}

/* RESPONSIVE SIDEBAR MENU */
@media (max-width: 1140px) {

  /* HEADER */
  .home {
    padding: 50px;
  }

  .home header .logo,
  .home header.sticky .logo {
    display: inline-flex;
    font-size: 20px;
  }

  .home header .logo .freshnearly,
  .home header.sticky .logo .freshnearly {
    height: 40px;
    width: 40px;
  }

  .home header ul,
  .home header.sticky ul {
    display: none;
  }

  .home header,
  .home header.sticky {
    padding: 10px 20px;
  }

  .home .content h2 {
    font-size: 36px;
  }

  .home .content p {
    font-size: 16px;
  }

  /* TOGGLE */
  .home header .toggle,
  .home header.sticky .toggle {
    display: flex;
    width: 30px;
    height: 22px;
    background: url(assets/menu.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    transition: all ease 0.5s;
  }

  .home header .toggle.active,
  .home header.sticky .toggle.active {
    background: url(assets/close.png);
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* .home header.sticky .toggle {
    filter: invert(1);
  } */

  .home header .toggle:hover,
  .home header.sticky .toggle:hover {
    transform: scale(1.1);
    color: #fff !important;
  }

  /* SIDEBAR */
  .sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    padding: 40px;

    z-index: 1001;
    background: #000;
    transition: 0.5s;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sidebar.active {
    right: 0;
  }

  .sidebar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .sidebar ul li {
    list-style: none;
  }

  .sidebar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
    margin: 10px 0;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 2em;
    text-transform: uppercase;
  }

  .sidebar ul li a:hover {
    color: #00bcd4;
  }
}

/* RESPONSIVE MAIN PAGE */
@media (max-width: 500px) {

  .footer .footer-social {
    margin-right: 0px;
  }

  .footer-social .textleft {
    align-self: center;
  }

  .mobile-app-download-button {
    font-size: 13px !important;
  }
  .mobile-footer {
    font-size: 11px !important;
  }
  .textleft{
    font-size: 11px !important;
  }

    html, body {
      max-width: 100%;
      overflow-x: hidden;
  }
  .content{
    padding:0px;
  }

  .contact-us-middle {
    height: 1px;
    background-color: #fff; 
    margin-top: 1%; 
    margin-bottom: 20px;
  }
  .spacespace {
    padding-left: 30px;
  }
}

.privacy-policy-text-left-align {
  text-align: left;
}

@media (min-width: 501px) {
/* 
.content {
  padding: 72px 140px 80px;
  padding-top: 72px;
  padding-right: 140px;
  padding-bottom: 80px;
  padding-left: 140px;
} */

.contact-us-middle {
  height: 1px;
  background-color: #fff; 
  margin-top: 15px; 
  margin-bottom: 20px;
}
.spacespace {
  padding-left: 72px;
}
} 

.contact-us-upper-middle {
  display: inline-block;
  height:113px; width: 390px;
  max-width: none; 
  color: #fff; 
  text-align: left; 
  flex: 1; 
  margin-left: 0;  
  padding-top: 10px;
  padding-left: 20px; 
  padding-right: 20px; 
  text-decoration: none;
}

.text {
  font-size: 16px;
  line-height: 150%;
}

.space {
  padding-left: 40px;
}

.footer .download-app {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 102px;
}

.icon-hover:hover {
  filter: invert(1);
}