@charset "UTF-8";
@font-face {
  font-family: Gilroy;
  src: url("/assets/fonts/Gilroy-Medium.ttf");
}
@font-face {
  font-family: Gilory-Bold;
  src: url("/assets/fonts/Gilroy-Bold.ttf");
}
* {
  font-family: "Gilroy";
}

body {
  margin: 0;
}

/* Colors
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: "Gilory-Bold";
}

h1 {
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: -0.1rem;
}

h2 {
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: -0.1rem;
}

h3 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.1rem;
}

h4 {
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0.08rem;
}

h5 {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.05rem;
}

h6 {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0;
}

p {
  /* font-size: inherit; */
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.typewriter h1 {
  overflow: hidden;
  /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid rgba(0, 0, 0, 0.87);
  /* The typwriter cursor */
  white-space: nowrap;
  /* Keeps the content on a single line */
  margin: 0 auto;
  /* Gives that scrolling effect as the typing happens */
  -webkit-animation: typing 3.5s steps(30, end), blink-caret 0.5s step-end infinite;
          animation: typing 3.5s steps(30, end), blink-caret 0.5s step-end infinite;
}

/* The typing effect */
@-webkit-keyframes typing {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes typing {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/* The typewriter cursor effect */
@-webkit-keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: rgba(0, 0, 0, 0.87);
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: rgba(0, 0, 0, 0.87);
  }
}
/* button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
} */
/* button.learn-more {
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  padding: 1.25em 2em;
  background: #FF3015;
  border: 2px solid #000;
  border-radius: 0.75em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1);
}
button.learn-more::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FF3015;
  border-radius: inherit;
  box-shadow: 0 0 0 2px #000, 0 0.625em 0 0 #ff30154d;
  transform: translate3d(0, 0.75em, -1em);
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}
button.learn-more:hover {
  background: #FF3015;
  transform: translate(0, 0.25em);
}
button.learn-more:hover::before {
  box-shadow: 0 0 0 2px #000, 0 0.5em 0 0 #ff30154d;
  transform: translate3d(0, 0.5em, -1em);
}
button.learn-more:active {
  background: #FF3015;
  transform: translate(0em, 0.75em);
}
button.learn-more:active::before {
  box-shadow: 0 0 0 2px #000, 0 0 #ff30154d;
  transform: translate3d(0, 0, -1em);
} */

button.learn-more {
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  padding: 1.25em 2em;
  background: #FF3015;
  border: 2px solid #000;
  border-radius: 0.75em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1);
}

button.learn-more:hover {
  background: #e41f05;
  /* transform: translate(0, 0.25em); */
}

.btn-learn-more {
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  padding: 1.25em 2em;
  background: #FF3015;
  border: 2px solid #000;
  border-radius: 0.75em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1);
}

.btn-learn-more:hover {
  background: #e41f05;
  color: #fff;
  /* transform: translate(0, 0.25em); */
}


/*top-header*/
.top-header {
  background: #000;
}
.top-header ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  color: #fff;
  margin: 0;
  padding: 10px;
  font-size: 12px;
  align-items: center;
}

/*navigation bar*/
#nav {
  font-size: 18px;
  padding: 0 5%;
  color: #fff;
  height: 100px;
  background-color: #0000FF;
}

#nav .logo {
  float: left;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
}

#nav .menu-list {
  float: left;
  padding: 0;
  margin: 0;
  width: 50%;
  /* width: 70%; /* TO DO: Cross check as modified */
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-weight: bold;
}

#nav .menu-list li {
  list-style: none;
}

#nav .menu-list a {
  display: block;
  padding: 1em;
  color: #fff;
  text-decoration: none;
}

#nav-menu-toggle {
  position: absolute;
  top: -100px;
}

#nav .icon-burger {
  display: none;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

#nav .icon-burger .line {
  width: 30px;
  height: 5px;
  background-color: #fff;
  margin: 5px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  .top-header {
    display: none;
  }

  #nav {
    position: relative;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    font-size: 16px;
    padding: 0 5%;
    color: #fff;
    height: 100px;
    background-color: #0000FF;
  }

  /*owl carousal*/
  #nav .logo {
    float: none;
    width: auto;
    justify-content: center;
  }

  #nav .menu-list {
    float: none;
    position: fixed;
    z-index: 9;
    left: 0;
    right: 0;
    top: 100px;
    bottom: 100%;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-evenly;
    width: auto;
    height: auto;
    transition: all 0.5s ease-in-out;
    background-color: #FF3015;
  }

  #nav .icon-burger {
    display: block;
  }

  #nav :checked ~ .menu-list {
    bottom: 0;
  }

  #nav :checked ~ .icon-burger .line:nth-child(1) {
    transform: translateY(10px) rotate(225deg);
  }

  #nav :checked ~ .icon-burger .line:nth-child(3) {
    transform: translateY(-10px) rotate(-225deg);
  }

  #nav :checked ~ .icon-burger .line:nth-child(2) {
    opacity: 0;
  }

  #nav .logo a img {
    width: 80%;
  }
}
.top-excerpt {
  padding: 0 50px;
}

.app-container {
  box-sizing: content-box;
}
.app-container h1 {
  text-align: center;
}
.app-container #h2-sub {
  letter-spacing: 0.1em;
  text-align: center;
  padding-top: 100px;
  text-transform: uppercase;
}
.app-container span {
  color: #FF3015;
}
.app-container section {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  box-sizing: content-box;
  margin: 30px;
  padding: 30px;
  align-items: center;
}
.app-container section article {
  padding: 20px;
}
.app-container #benefits {
  text-align: center;
  justify-content: center;
  align-items: center;
}
.app-container #benefits article {
  padding: 30px;
}
.app-container #benefits p {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 28px;
  font-size: 21px;
  font-weight: 700;
}
.partners {
  background-color: #ffcbc4;
}

#off-grid {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services {
  padding-top: 80px;
}
.services h2 {
  text-align: center;
  text-transform: uppercase;
}
.services section {
  grid-template-columns: repeat(3, 2fr);
  text-align: center;
}

.services article {
  margin-top: 30px;
  padding-top: 40px;
}

.services p {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 28px;
  font-size: 21px;
  font-weight: 700;
}

.hero {
  display: flex;
  padding: 50px;
  align-items: center;
}
.hero h2 {
  font-size: 24px;
  font-family: "Gilroy";
  margin-top: 20px;
}
.hero section {
  padding: 20px;
}

.section {
  background-color: #416297;
  /* height: 100vh; */
  padding: 20px;
}
.section ul {
  list-style: none;
  text-align: center;
}
.section ul li {
  display: inline-block;
  padding: 20px;
}
.section hr {
  width: 80%;
  text-align: center;
  color: #fff;
}

.feat section {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
}
.feat section article {
  margin: 10px;
  width: 20%;
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 5px 5px 5px -1px #848484;
  box-sizing: content-box;
}
.feat section article h2 {
  color: #010F8F;
  opacity: 35%;
  letter-spacing: 0.2rem;
  font-weight: bold;
  margin-bottom: 0;
}
.feat section article img {
  width: 50px;
  height: 50px;
}

.offers {
  margin-top: 60px;
  text-align: center;
}
.offers h2 {
  text-align: center;
  margin-top: 60px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.offers p {
  padding-top: 10px;
  line-height: 28px;
  font-size: 21px;
  font-weight: 600;
}
.offers section {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.offers section article {
  margin: 20px;
  padding: 30px;
}

.how-it-works {
  /* text-align: center; */
  margin-top: 100px;
}

.how-it-works h2 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.how-it-works section {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.how-it-works section article {
  width: 500px;
  margin: auto;
}

/* .how-it-works section article #hw-vid {
  width: 300px;
  margin: auto;
} */

.how-it-works section article p {
  text-align: left;
  border-top: 0px;
  border-color: #FF3015 !important;
  margin: 0;
  padding: 30px;
  /* counter-increment: section; */
  position: relative;
}

.how-it-works section article div#hiw-abc {
  width: 500px;
  font-size: 21px;
  font-weight: 600;
}

.how-it-works section article div#hiw-xyz {
  width: 400px;
  font-size: 21px;
  font-weight: 600;
}
/* .how-it-works section article p:nth-child(even):before {
  content: '';
  right: 100%;
  margin-right: -20px;
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  height: 20px;
  width: 20px;
  background-color: #FF3015;
  text-align: center;
  color: white;
  font-size: 110%;
}
.how-it-works section article p:nth-child(odd):before {
  content: '';
  right: 100%;
  margin-right: -20px;
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  height: 20px;
  width: 20px;
  background-color: #FF3015;
  text-align: center;
  color: white;
  font-size: 110%;
}
.how-it-works section article p:nth-child(even) {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  margin-right: 30px;
  padding-right: 0;
}
.how-it-works section article p:nth-child(odd) {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  margin-right: 30px;
  padding-right: 0;
}
.how-it-works section article p:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.how-it-works section article p:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
} */

ol {
  list-style: none;
  text-align: left;
}
ol li::before {
  content: "•";
  color: red;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.list-style-2 {
  text-align: center;
  margin-top: -50px;
  padding: 0 50px;
  margin: 0 50px;
}
.list-style-2 #h2-sub {
  margin-top: -100px;
}
.list-style-2 p {
  text-align: left;
  border-color: transparent !important;
  margin: 0;
  padding: 30px;
  counter-increment: section;
  position: relative;
  line-height: 1.2;
}
.list-style-2 p:nth-child(even):before {
  /* content: counter(section); */
  content: '';
  right: 100%;
  margin-right: -20px;
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  height: 40px;
  width: 40px;
  background-color: #FF3015;
  text-align: center;
  color: white;
  font-size: inherit;
}
.list-style-2 p:nth-child(odd):before {
  /* content: counter(section); */
  content: '';
  right: 100%;
  margin-right: -20px;
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  height: 40px;
  width: 40px;
  background-color: #FF3015;
  text-align: center;
  color: white;
  font-size: 110%;
}
.list-style-2 p:nth-child(even) {
  border-left: 2px solid;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  margin-right: 30px;
  padding-right: 0;
}
.list-style-2 p:nth-child(odd) {
  border-left: 2px solid;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  margin-right: 30px;
  padding-right: 0;
}
.list-style-2 p:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.list-style-2 p:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.list-style {
  text-align: center;
  margin-top: -50px;
}
.list-style #h2-sub {
  margin-top: -100px;
}
.list-style article {
  padding: 0 30px;
  margin: 50px;
}
.list-style article p {
  text-align: left;
  border-color: transparent !important;
  margin: 0;
  padding: 30px;
  counter-increment: section;
  position: relative;
  line-height: 1.2;
}
.list-style article p:nth-child(even):before {
  /* content: counter(section); */
  content: '';
  right: 100%;
  margin-right: -20px;
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  height: 20px;
  width: 20px;
  background-color: #FF3015;
  text-align: center;
  color: white;
  font-size: inherit;
}
.list-style article p:nth-child(odd):before {
  /* content: counter(section); */
  content: '';
  right: 100%;
  margin-right: -20px;
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  height: 20px;
  width: 20px;
  background-color: #FF3015;
  text-align: center;
  color: white;
  font-size: 110%;
}
.list-style article p:nth-child(even) {
  border-left: 2px solid;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  margin-right: 30px;
  padding-right: 0;
}
.list-style article p:nth-child(odd) {
  border-left: 2px solid;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  margin-right: 30px;
  padding-right: 0;
}
.list-style article p:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.list-style article p:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.lightbox {
  /* Default to hidden */
  display: none;
  /* Overlay entire screen */
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* A bit of padding around image */
  padding: 1em;
  /* Translucent background */
  background: rgba(0, 0, 0, 0.8);
}

/* Unhide the lightbox when it's the target */
.lightbox:target {
  display: block;
}

.lightbox span {
  /* Full width and height */
  display: block;
  width: 100%;
  height: 100%;
  /* Size and position background image */
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.blog section {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
}
.blog section article {
  border: 0 1px solid grey;
  border-radius: 3px;
  margin: 10px 20px;
}
.blog section article div {
  padding: 20px;
  border-top: 0 !important;
  margin-top: -7px;
  border: 1px solid #ececec;
  border-radius: 3px;
}
.blog section article #feature-img {
  width: 100% !important;
  padding: 0px !important;
}
.blog section article h4 {
  font-weight: 200;
  font-size: 14px;
}
.blog section article span {
  color: #000;
  font-size: 12px;
}
.blog section article span img {
  width: 15px !important;
  padding: 0px !important;
}

#search-form {
  padding: 30px 50px;
}
#search-form input[type=text] {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #DADADA;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  font-size: 16px;
  background-color: white;
  background-image: url("/assets/images/searchicon.png");
  background-position: 10px 10px;
  background-repeat: no-repeat;
  padding: 12px 20px 12px 40px;
  outline: none;
}

.search-container {
  display: grid;
  grid-template-columns: 1fr 3fr;
}

.search-container section {
  align-items: flex-start;
}

.search-container form {
  display: grid;
  grid-template-columns: repeat(1, 2fr);
}
.search-container form label {
  font-weight: bold;
  padding: 10px 0 20px 0;
}
.search-container select {
  width: 290px;
  box-sizing: border-box;
  border: 1px solid #DADADA;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  font-size: 16px;
  background-color: white;
  padding: 12px 0px 12px 10px;
  margin-bottom: 30px;
}
.search-container select :focus {
  outline: none;
}
.search-container #search-results {
  display: block;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
}
.search-container #search-results article {
  display: grid;
  grid-template-columns: 1fr 5fr 3fr;
  vertical-align: top;
  border-bottom: 1px solid #e2e2e2;
}
.search-container #search-results article h4 {
  color: #FF3015;
}
.search-container #search-results article #c-name {
  margin-top: 0px;
}
.search-container #search-results article #c-type {
  text-align: right;
  opacity: 60%;
  margin-top: 0px;
  font-size: 14px;
}
.search-container #search-results article #c-loc {
  text-align: right;
  font-size: 14px;
  margin-top: 0px;
}

.testimonials {
  margin: 100px 30px;
}
.testimonials h2 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* .testimonials div {
  block-size: 100%;
  writing-mode: horizontal-tb;
} */

.before-footer {
  /* background: #F6F2FF; */
  background: rgba(65, 98, 151, 0.23);

}
.before-footer section {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  padding: 50px 0;
}
.before-footer section img {
  /* width: 50px; */
  padding: 20px;
}

footer {
  background-color: #416297;
  color: #fff;
  padding: 30px;
}
footer section {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
}
footer section article {
  margin: 30px;
  align-items: center;
  text-align: center;
}
footer section table {
  color: #fff;
  width: 60%;
  line-height: 1.5;
}
footer #sign-up-form-footer input {
  padding: 10px;
  width: 80%;
}
footer #sign-up-form-footer button {
  padding: 3px;
  border: none;
  background: #FF3015;
  border-radius: 3px;
  margin-left: -30px;
}
footer #socials {
  text-align: center;
}
footer #socials img {
  padding: 3px;
}
footer #copyright {
  display: flex;
  justify-content: space-between;
}

/* Media Queries */
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  h5 {
    font-size: 14px;
  }

  h6 {
    font-size: 12px;
  }

  .hero {
    flex-wrap: wrap;
    padding: 20px;
  }

  .section {
    height: auto;
  }
  .section ul li {
    display: inline-block;
    padding: 0px;
  }

  .feat section {
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
  }
  .feat section article {
    margin: 10px;
    width: 20%;
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 5px 5px 5px -1px #848484;
    box-sizing: content-box;
  }
  .feat section article h2 {
    color: #010F8F;
    opacity: 35%;
    letter-spacing: 0.2rem;
    font-weight: bold;
    margin-bottom: 0;
  }

  .offers section {
    flex-wrap: wrap;
  }
  .offers section article {
    padding: 20px;
    margin: 20px;
  }
  .offers section article img {
    width: 90%;
  }

  .how-it-works section {
    flex-wrap: wrap;
  }

  .list-style article {
    padding: 0 20px;
    margin: 10px;
  }

  .list-style-2 {
    text-align: center;
    margin-top: -50px;
    padding: 0 20px;
    margin: 0 0px;
  }

  .top-excerpt {
    padding: 0 20px;
  }

  .app-container h2, .app-container h1 {
    padding: 20px;
  }
  .app-container section {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    margin: 0;
  }
  .app-container section article {
    padding: 10px;
  }
  .app-container section article img {
    width: 300px !important;
    padding: 5px;
  }

  .search-container{
    display: flex!important;
    flex-wrap: wrap!important;
  }

  .search-container select {
    width: 100%;
  }

  .search-container #search-results article{
    display: flex!important;
    flex-wrap: wrap!important;
  }

  .search-container #search-results article img{    
      width: 50%!important;
  }

  .search-container #search-results article #c-loc img{
    width: 15px!important;
    padding: 0;    
  }

  #off-grid {
    text-align: center;
  }
  #off-grid article {
    padding: 10px;
  }
  #off-grid article img {
    width: 300px !important;
    padding: 5px;
  }

  #rev-wrap {
    flex-wrap: wrap-reverse !important;
  }

  .before-footer section {
    grid-template-columns: repeat(1, 2fr);
    padding: 20px;
  }

  footer section {
    grid-template-columns: repeat(1, 2fr);
  }
  footer #socials {
    text-align: center;
  }
  footer #socials img {
    padding: 5px;
  }
  footer table tr td {
    padding: 5px;
  }
  footer #copyright {
    flex-wrap: wrap;
    text-align: left;
  }
}/*# sourceMappingURL=style-sheet.css.map */