@font-face {
  font-family: "HaasUnicaRegular";
  src: url("assets/fonts/NeueHaasUnica-Regular.eot"); /* IE9 Compat Modes */
  src: url("assets/fonts/NeueHaasUnica-Regular.woff") format("woff2"),
    /* Super Modern Browsers */ url("assets/fonts/NeueHaasUnica-Regular.woff")
      format("woff"),
    /* Pretty Modern Browsers */ url("assets/fonts/NeueHaasUnica-Regular.ttf")
      format("truetype"); /* Safari, Android, iOS */
  font-weight: regular;
}

@font-face {
  font-family: "HaasUnicaLight";
  src: url("assets/fonts/NeueHaasUnica-Light.eot"); /* IE9 Compat Modes */
  src: url("assets/fonts/NeueHaasUnica-Light.woff") format("woff2"),
    /* Super Modern Browsers */ url("assets/fonts/NeueHaasUnica-Light.woff")
      format("woff"),
    /* Pretty Modern Browsers */ url("assets/fonts/NeueHaasUnica-Light.ttf")
      format("truetype"); /* Safari, Android, iOS */
  font-weight: light;
}

h1,
h2,
h3 {
  font-family: "HaasUnicaRegular";
  font-weight: bold;
}

.main-text {
  font-size: 18px;
  line-height: 28px;
}

p {
  font-family: "HaasUnicaLight";
}

.bg-img {
  /* The image used */
  background-image: url("Images/raimond-klavins-xAqrT-279UA-unsplash.jpeg");
  max-width: 100%;
  min-height: 1100px;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /* Needed to position the navbar */
  position: relative;
}

.bg-img2 {
  /* The image used */
  background-image: url("Images/benjamin-davies-mqN-EV9rNlY-unsplash.jpeg");
  max-width: 100%;
  min-height: 1100px;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /* Needed to position the navbar */
  position: relative;
}

/* Burger Menu */
body {
  margin: 0;
  padding: 0;

  /* make it look decent enough */
  font-family: "HaasUnicaRegular, sans-serif";

  overflow-x: hidden; /* needed because hiding the menu on the right side is not perfect,  */
}

a {
  text-decoration: none;
  color: #232323;

  transition: color 0.3s ease;
}

a:hover {
  color: #009ad9;
}

#menuToggle {
  display: block;
  position: absolute;
  top: 50px;
  right: 50px;

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;

  color: #f2f2f2;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  background: #232323;
  color: #f2f2f2;

  cursor: pointer;

  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #f2f2f2;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
  position: absolute;
  width: 300px;
  margin: -100px 0 0 0;
  padding: 50px;
  padding-top: 125px;
  right: -100px;

  background: #f2f2f2;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(100%, 0);

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's fade it in from the left
 */
#menuToggle input:checked ~ ul {
  transform: none;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #menu {
    transform: none;
    opacity: 0;

    transition: opacity 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
}

/* Burger Menu 2 */

body {
  margin: 0;
  padding: 0;

  /* make it look decent enough */
  font-family: "Avenir Next", "Avenir", sans-serif;

  overflow-x: hidden; /* needed because hiding the menu on the right side is not perfect,  */
}

a {
  text-decoration: none;
  color: #232323;

  transition: color 0.3s ease;
}

a:hover {
  color: #009ad9;
}

#menuToggle2 {
  display: block;
  position: absolute;
  top: 50px;
  right: 50px;

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;

  color: #f2f2f2;
}

#menuToggle2 input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  background: #232323;
  color: #f2f2f2;

  cursor: pointer;

  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle2 span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: black;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle2 span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle2 span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle2 input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle2 input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle2 input:checked ~ span:nth-last-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
  position: absolute;
  width: 300px;
  margin: -100px 0 0 0;
  padding: 50px;
  padding-top: 125px;
  right: -100px;

  background: #f2f2f2;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(100%, 0);

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's fade it in from the left
 */
#menuToggle2 input:checked ~ ul {
  transform: none;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #menu {
    transform: none;
    opacity: 0;

    transition: opacity 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
}

.header {
  display: flex;
}

/* Heronshaw Branding */
.logo {
  position: absolute;
  padding-top: 20px;
  padding-right: 100px;
  width: 500px;
  max-height: auto;
  display: block;
  left: 20px;
}

.logo2 {
  position: relative;
  padding-top: 20px;
  padding-right: 100px;
  margin-bottom: 100px;
  width: 500px;
  max-height: auto;
  display: block;
  left: 20px;
}

.btn-primary {
  color: #f2f2f2;
  background-color: #009ad9;
  border-color: #009ad9;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
}

.btn-primary:hover {
  color: black;
  background-color: #575761;
  border-color: #575761;
}
/* Position the navbar container inside the image */

/* .container {
  position: absolute;
  top: 20px;
  right: 20px;
  margin: 20px;
  width: auto;
} */

/* The navbar */
.topnav {
  overflow: hidden;
  display: flex;
}

/* Navbar links */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  color: #575761;
}

.tagline {
  position: absolute;
  color: white;
  top: calc(50% - 25px);
  padding-left: 40px;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
}

/* our approach */
.our-approach {
  display: flex;
  flex-direction: row;
  min-height: 500px;
  margin: 100px 0;
}

.our-approach2 {
  display: flex;
  flex-direction: row;
  min-height: 750px;
  background-color: #c1c1c1;
}

.our-approach .app-left-side {
  flex: 40%;
  border-right: 3px solid #575761;
  /* centering children inside */
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-approach2 .app-left-side2 {
  flex: 40%;
  border-right: 3px solid black;
  /* centering children inside */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px 0;
}

.our-approach .app-left-side h1 {
  color: black;
}

.our-approach2 .app-left-side2 h1 {
  color: black;
}

.our-approach .app-right-side {
  flex: 60%;
  display: flex;
  align-items: left;
  justify-content: center;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 125px;
  padding-left: 50px;
  padding-right: 50px;
}

.our-approach2 .app-right-side2 {
  flex: 60%;
  display: flex;
  align-items: left;
  justify-content: center;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 125px;
  padding-left: 50px;
  padding-right: 50px;
}

.black {
  background-color: #181818;
  color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 300px;
  padding-bottom: 300px;
  padding-left: 100px;
  padding-right: 100px;
  text-align: center;
}

.White {
  background-color: #f2f2f2;
  color: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 200px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 200px;
  text-align: center;
}

/* Pillars */

.Pillars {
  background-color: #eaeaea;
  padding: 100px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.column1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 25%;
  height: auto;
  background-color: #f2f2f2;
  text-align: center;
  margin: 75px;
}

.Poly {
  width: 100px;
  height: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translate(-50%, 0);
}

.Poly4 {
  width: 125px;
  height: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translate(-50%, 0);
}

.Poly2 {
  width: 90px;
  height: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translate(-50%, 0);
}

.Poly3 {
  width: 90px;
  height: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translate(-50%, 0);
}
.column2 {
  float: centre;
  width: 25%;
  background-color: #f2f2f2;
  text-align: center;
  margin: 75px;
}
.column3 {
  float: left;
  width: 25%;
  background-color: #f2f2f2;
  text-align: center;
  margin: 75px;
}
.column4 {
  float: left;
  width: 25%;
  background-color: #f2f2f2;
  text-align: center;
  margin: 75px;
}
.column5 {
  float: centre;
  width: 25%;
  background-color: #f2f2f2;
  text-align: center;
  margin: 75px;
}
.column6 {
  float: left;
  width: 25%;
  background-color: #f2f2f2;
  text-align: center;
  margin: 75px;
}

.card-wrapper {
  padding: 25px;
}

.card-wrapper .card-inner {
  background-color: #f2f2f2;
  text-align: center;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  position: relative;
}

.card-wrapper .card-inner .card-text-wrapper {
  margin-top: 130px;
  text-align: center;
  min-height: 150px;
}

.Pillars {
  background-color: #c1c1c1;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* Carousel */

h1 {
  font-size: 40px;
  text-align: center;
}

.content-slider {
  display: flex;
  padding-top: 100px;
  width: 100%;
  height: 360px;
  margin-bottom: 200px;
}

.Value-Header {
  margin-top: 150px;
}

.value-HR {
  left: 45%;
  width: 100%;
  border-top: 5px solid #575761;
  position: absolute;
  align-items: center;
  color: #575761;
  margin-bottom: 20px;
}
.slider {
  height: 320px;
  width: 680px;
  margin: 40px auto 0;
  overflow: visible;
  position: relative;
  max-width: 100%;
}

.mask {
  overflow: hidden;
  height: 320px;
}

.slider ul {
  margin: 0;
  padding: 0;
  position: relative;
}

.slider li {
  width: 680px;
  height: 320px;
  position: absolute;
  top: -325px;
  list-style: none;
  max-width: 100%;
  max-width: calc(100% - 30px);
}

.slider .quote {
  font-size: 28px;
  text-align: center;
  color: #26272b;
  padding-bottom: 10px;
}

.slider .source {
  font-size: 20px;
  text-align: left;
  color: #575761;
}

.slider li.anim1 {
  animation: cycle 15s linear infinite;
}

.slider li.anim2 {
  animation: cycle2 15s linear infinite;
}

.slider li.anim3 {
  animation: cycle3 15s linear infinite;
}

.slider li.anim4 {
  animation: cycle4 15s linear infinite;
}

.slider li.anim5 {
  animation: cycle5 15s linear infinite;
}
.slider li.anim6 {
  animation: cycle6 15s linear infinite;
}

.slider:hover li {
  animation-play-state: paused;
}

@keyframes cycle {
  0% {
    top: 0px;
  }
  4% {
    top: 0px;
  }
  16% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  20% {
    top: 325px;
    opacity: 0;
    z-index: 0;
  }
  21% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
  50% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
  92% {
    top: -325px;
    opacity: 0;
    z-index: 0;
  }
  96% {
    top: -325px;
    opacity: 0;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}

@keyframes cycle2 {
  0% {
    top: -325px;
    opacity: 0;
  }
  16% {
    top: -325px;
    opacity: 0;
  }
  20% {
    top: 0px;
    opacity: 1;
  }
  24% {
    top: 0px;
    opacity: 1;
  }
  36% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  40% {
    top: 325px;
    opacity: 0;
    z-index: 0;
  }
  41% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
  100% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes cycle3 {
  0% {
    top: -325px;
    opacity: 0;
  }
  36% {
    top: -325px;
    opacity: 0;
  }
  40% {
    top: 0px;
    opacity: 1;
  }
  44% {
    top: 0px;
    opacity: 1;
  }
  56% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  60% {
    top: 325px;
    opacity: 0;
    z-index: 0;
  }
  61% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
  100% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes cycle4 {
  0% {
    top: -325px;
    opacity: 0;
  }
  56% {
    top: -325px;
    opacity: 0;
  }
  60% {
    top: 0px;
    opacity: 1;
  }
  64% {
    top: 0px;
    opacity: 1;
  }
  76% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  80% {
    top: 325px;
    opacity: 0;
    z-index: 0;
  }
  81% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
  100% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes cycle5 {
  0% {
    top: -325px;
    opacity: 0;
  }
  76% {
    top: -325px;
    opacity: 0;
  }
  80% {
    top: 0px;
    opacity: 1;
  }
  84% {
    top: 0px;
    opacity: 1;
  }
  96% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  100% {
    top: 325px;
    opacity: 0;
    z-index: 0;
  }
}
/* Team */

.edd {
  flex: 40%;
  border-right: 3px solid #575761;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 500px;
  margin-right: 40px;
  margin-bottom: 50px;
}

.founder {
  font-family: "HaasUnicaRegular";
  font-weight: lighter;
}

/* FAQ'S */

body {
  font-family: Sans-serif;
  font-size: 18px;
  background: #eaeaea;
}

.content {
  width: 80%;
  padding-bottom: 100px;
  margin: 0 auto;
}

.centerplease {
  margin: 0 auto;
  max-width: 270px;
  font-size: 40px;
  font-style: bold;
}

/*Question*/
.question {
  position: relative;
  background: #f9f9f9;
  margin: 0;
  padding: 10px 10px 10px 50px;
  display: block;
  width: 100%;
  cursor: pointer;
}
/*Answer*/
.answers {
  padding: 0px 15px;
  margin: 5px 0;
  width: 100% !important;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.questions:checked ~ .answers {
  height: auto;
  opacity: 1;
  padding: 15px;
}

/*FAQ Toggle*/

.plus {
  position: absolute;
  margin-left: 10px;
  z-index: 5;
  font-size: 2em;
  line-height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.questions:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.questions {
  display: none;
}

/* footer */

.legal {
  line-height: 5px;
}

.site-footer {
  background-color: #26272b;
  padding: 45px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: #737373;
}
.site-footer hr {
  border-top-color: #bbb;
  opacity: 0.5;
}
.site-footer hr.small {
  margin: 20px 0;
}
.site-footer h6 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
}
.site-footer a {
  color: #737373;
}
.site-footer a:hover {
  color: #009ad9;
  text-decoration: none;
}
.footer-links {
  padding-left: 0;
  list-style: none;
}
.footer-links li {
  display: block;
}
.footer-links a {
  color: #737373;
}
.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #009ad9;
  text-decoration: none;
}
.footer-links.inline li {
  display: inline-block;
}
.site-footer .social-icons {
  text-align: right;
}
.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: #33353d;
}
.copyright-text {
  margin-left: 0px;
  text-align: left;
}

.social-icons {
  padding-left: 0;
  padding-right: 50px;
  margin-bottom: 0;
  list-style: none;
}
.social-icons li {
  display: inline-block;
  margin-bottom: 4px;
}
.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px;
}
.social-icons a {
  background-color: #eceeef;
  color: #818a91;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #009ad9;
}
.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px;
}

.social-icons a.twitter:hover {
  background-color: #00aced;
}
.social-icons a.linkedin:hover {
  background-color: #007bb6;
}

.footer-image {
  max-width: 50%;
  max-height: 50%;
}

.H {
  padding-left: 200px;
}

.boring {
  padding: 100px;
  font-family: "HaasUnicaRegular";
}
/* Media Queries */

@media (max-width: 767px) {
  .centerplease {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .slider {
    height: 650px;
  }
  .mask {
    height: 650px;
  }
  .slider li {
    height: 650px;
    padding: 0px 15px;
  }
  .content-slider {
    height: 690px;
  }
}

@media screen and (max-width: 800px) {
  .edd {
    flex: 40%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 300px;
    margin: 0px;
  }
}
@media (max-width: 767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600;
  }
}

@media screen and (max-width: 768px) {
  .logo {
    width: 300px;
  }
}
@media screen and (max-width: 375px) {
  .logo {
    width: 30%;
  }
}

@media screen and (max-width: 768px) {
  .logo2 {
    width: 300px;
  }
}
@media screen and (max-width: 375px) {
  .logo2 {
    width: 30%;
  }
}
@media (max-width: 991px) {
  .site-footer [class^="col-"] {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 0;
  }
  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .our-approach {
    flex-direction: column;
    align-items: center;
  }
  .our-approach .app-left-side {
    border-bottom: 3px solid #575761;
    border-right: none;
    max-width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .our-approach2 {
    flex-direction: column;
    align-items: center;
  }
  .our-approach2 .app-left-side2 {
    border-bottom: 3px solid black;
    border-right: none;
    max-width: 80%;
    margin-top: 100;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 800px) {
  .our-approach .app-right-side {
    padding-bottom: 125px;
    padding-top: 100px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
  }
}

@media screen and (max-width: 800px) {
  .our-approach2 .app-right-side2 {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
  }
}

@media screen and (max-width: 800px) {
  .card-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 838px) {
  .content-slider {
    max-width: 100%;
    overflow: auto;
  }
}

@media screen and (max-width: 800px) {
  .topnav {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 800px) {
  .tagline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
    max-width: 90%;
  }
}

@media screen and (max-width: 800px) {
  .button {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 800px) {
  .black {
    display: flex;
    flex-direction: row;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 800px) {
  .info {
    padding: 0px;
    max-width: 90%;
    text-align: left;
  }
}

@media screen and (max-width: 800px) {
  .social-icons {
    padding-left: 45px;
  }
}

/* Criteria */

/* Icon 3 */

/* .CT2:hover {
    -webkit-filter: brightness(50%) sepia(1) hue-rotate(229.4deg)
      saturate(101.6%) brightness(101.6%);
    filter: brightness(50%) sepia(1) hue-rotate(229.4deg) saturate(101.6%)
      brightness(101.6%);
  } */
