@import url('https://fonts.googleapis.com/css2?family=Aldrich&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montaga&display=swap');


/*
font-family: 'Aldrich', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: "Inter", sans-serif;
*/

@keyframes arrow_animation {
  0% 
  {
	transform: translate(-50%,0);
  }
  50% 
  {
	transform: translate(-50%,-20%);
  }
  100% 
  {
	transform: translate(-50%,0);
  }
}

/* start: global styles */
:root {
  --red: #F3736B;
  --darkred: #900900;
  --whiteOnMidBlue: #CADED8; 
  --blue: #40B1B1;
  --midblue: #2A7474;
  --darkblue: #003C3C;
  --redtrans: rgba(243,115,107,0.75);
  --bluetrans : rgba(64,177,177,0.5);
}

.accent-blue 
{
  color: var(--blue);
}

.accent-red
{
  color: var(--red);
}


html {
  scroll-behavior: smooth;
}

body 
{
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--blue);
  line-height: 1.7;
  background-color: var(--red); 
  overflow-x: hidden;
}

* {
  outline: none;
  box-sizing: border-box;
}


*:not(.slick-track):not(.slick-list) {
  transition: 0.4s;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
}

.flex {
  display: flex;
  justify-content: space-between;
}


h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  font-family: 'Aldrich', sans-serif;
}


h1 {
  font-size: 3rem;
  color: white; 
  line-height: 1.1;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.3rem;
  color: #003166;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.1rem;
  font-weight: 300;
}

h4 {
  font-size: 1rem;
  font-weight: 300;
}

h5 {
  font-size: 0.95rem;
  font-family: 'Aldrich', sans-serif;
}

p {
  margin: 0 0 1.5rem;
}

button.rounded {
  background:  white;
  border: 1px solid black;
  color: black;
  font-size: 16px;
  border-radius: 15px;
  padding: 10px 30px;
  line-height: 1.5;
  cursor: pointer;
}

button.rounded:hover {
  background:  black;
  color: white; 
}

p.large-paragraph {
  font-size: 1.25rem;
  font-weight: 300;
}
/* end: global styles */

/* start: header styles */
#header-hero-container {
  min-height: 600px;
  height: calc(100vh);
  position: relative;
}

header {
  padding: 1rem 0; 
  position: fixed;
  width: 100%;
  z-index: 3;
}


#logo > img { transform: translateY(15%); width: 50px}

.hamburger-menu {
  background-color: transparent;
  padding: 3px 5px;
  width: 45px;
  cursor: pointer;
  margin-top: 10px;
  display: none;
  border: none;
}

.hamburger-menu .strip {
  display: block;
  height: 2.5px;
  background-color: #fff;
  margin: 4px 0;
}

header ul {
  list-style-type: none;
}

header ul li {
  display: inline-block;
  margin: 0 15px;
}

#close-flyout {
  display: none;
}

header ul li a {
  text-transform: uppercase;
  color: white;
  font-size: 16px;
  text-decoration: none;
}

.nav-menu ul li a
{
  text-transform: uppercase;
  color: white;
  font-size: 16px;
  text-decoration: none;
}


header ul.is-sticky li a {
  color: white;
}

header ul li a:hover,
header ul li a.active {
  color: white;
}

header ul.is-sticky li a:hover,
header ul.is-sticky li a.active {
  color: white;
}
/* end: header styles */

/* start: hero section styles */
#hero {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  color: white;
  background-color: var(--darkblue);
}

.hero-image 
{
  top: 50%;
  left: 5%;
  height: 55%;
  position: absolute;
  transform: translateY(-50%);
}

.hero-arrow 
{
  bottom: 5%;
  left: 50%;
  position: absolute;
  animation-name: arrow_animation;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

#hero .fade {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.4;
  background: url('../img/landing.png') center center;
  z-index: -1;
}

#hero .hero-text {
  position: absolute;
  top: 50%;
  margin: -75px auto 0;
  left: 0;
  right: 0;
  z-index: 2;
  color: black;
  width: 500px;
  text-align: center;
}

#hero .hero-text p {
  color: white; 
  line-height: 1.5em;
  font-weight: 300;
  font-size: 0.8rem;
  padding: 0 1rem; 
  text-align: justify; 
  text-align-last: center;
}
/* end: hero section styles */

/* start: how it works styles */
#how-it-works {
  
  font-family: "Inter", sans-serif;
  padding: 5rem 0;
  background-color: var(--midblue);
  text-align: center;
  
  color: var(--whiteOnMidBlue); 
  position: relative;
  width: 100%; 
  height: 100vh; 
  
  display: flex; 
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: medium;
}

#how-it-works > div.fade 
{
  width: 100%; 
  height: 100%; 
  
  position: absolute; 
  top: 0;
  left: 0;
  background-size: cover;
  z-index: 1;
  background: url('../img/WhatWeDoBackground.png') top left;
  background-repeat: no-repeat;
  pointer-events: none;
}

#how-it-works > h2 
{
	z-index: 2; 
  font-size: 48px;
  margin-bottom: 3rem;
  letter-spacing: 1rem;
  color: var(--whiteOnMidBlue); 
  font-family: "Inter", sans-serif;
  text-shadow: -8px 8px 0 rgba(0,60,60,0.5);
}

.how-it-works-grid 
{
	z-index: 2; 
  display: grid;
  width: calc(90% - 9rem); 
  grid-column-gap: 3rem; 
  grid-row-gap: 2rem;
  grid-template: auto auto auto auto / auto auto auto;
}

.how-it-works-grid > h3 
{
  font-size: 32px;
  color: var(--midblue);
  font-weight: bolder;
  -webkit-text-stroke-width: 0.5px;
  font-family: "Inter", sans-serif;
  -webkit-text-stroke-color:  var(--whiteOnMidBlue); ;
}

.how-it-works-grid > p 
{
  font-weight: normal;
  text-align: justify;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: "Inter", sans-serif;
  margin: 0;
  
}

.how-it-works-grid > img
{
  margin: 0 auto;
}

.how-it-works-grid > a 
{
  text-decoration: none;
  padding: 0.5rem 1rem; 
  font-family: "Inter", sans-serif;
  color: var(--whiteOnMidBlue); 
}

.how-it-works-grid > a > span 
{	
  padding: 0.5rem 1rem; 
  border-radius: 0.5rem;
  border: 1px solid var(--whiteOnMidBlue); 
}

/* First */ 

.how-it-works-grid > img:nth-of-type(1)
{
	grid-row-start: 1; 
	grid-row-end: 2;
	grid-column-start: 1; 
	grid-column-end: 2; 
}

.how-it-works-grid > h3:nth-of-type(1)
{
	grid-row-start: 2; 
	grid-row-end: 3;
	grid-column-start: 1; 
	grid-column-end: 2; 
}

.how-it-works-grid > p:nth-of-type(1)
{
	grid-row-start: 3; 
	grid-row-end: 4;
	grid-column-start: 1; 
	grid-column-end: 2; 
}

.how-it-works-grid > a:nth-of-type(1)
{
	grid-row-start: 4; 
	grid-row-end: 5;
	grid-column-start: 1; 
	grid-column-end: 2; 
	display: block;
}

/* Second Column */ 

.how-it-works-grid > img:nth-of-type(2)
{
	grid-row-start: 1; 
	grid-row-end: 2;
	grid-column-start: 2; 
	grid-column-end: 3; 
}

.how-it-works-grid > h3:nth-of-type(2)
{
	grid-row-start: 2; 
	grid-row-end: 3;
	grid-column-start: 2; 
	grid-column-end: 3; 
}

.how-it-works-grid > p:nth-of-type(3)
{
	grid-row-start: 3; 
	grid-row-end: 4;
	grid-column-start: 2; 
	grid-column-end: 3; 
}

.how-it-works-grid > a:nth-of-type(4)
{
	grid-row-start: 4; 
	grid-row-end: 5;
	grid-column-start: 2; 
	grid-column-end: 3; 
}

/* Third column */ 

.how-it-works-grid > img:nth-of-type(3)
{
	grid-row-start: 1; 
	grid-row-end: 2;
	grid-column-start: 3; 
	grid-column-end: 4; 
}

.how-it-works-grid > h3:nth-of-type(3)
{
	grid-row-start: 2; 
	grid-row-end: 3;
	grid-column-start: 3; 
	grid-column-end: 4; 
}

.how-it-works-grid > p:nth-of-type(3)
{
	grid-row-start: 3; 
	grid-row-end: 4;
	grid-column-start: 3; 
	grid-column-end: 4; 
}

.how-it-works-grid > a:nth-of-type(3)
{
	grid-row-start: 4; 
	grid-row-end: 5;
	grid-column-start: 3; 
	grid-column-end: 4; 
}

/* end: how it works styles */

#about-us 
{
  color: var(--blue);
  min-height: 500px; 
  width: 100%; 
  position: relative; 
  background-color: white;
  overflow: hidden;
}

#about-us h2 
{
  color: var(--blue);
}

#about-us .container 
{
  width: 100%; 
  height: 100%; 
  position: relative;
  margin-top: 100px;
}

.paper-poster
{
  width: 100%; 
  display: grid; 
  grid-template: 100% / 50% 50%;
}

.paper-poster img
{
  width: 100%;
}

/* start: lga-services styles */
#lga-services {
  margin: 4rem 0 8rem;
  position: relative;
}

#lga-services h2 {
  margin-bottom: 3rem;
}

#lga-services .container {
  position: relative;
}

#lga-services .container:before {
  content: "/";
  position: absolute;
  right: 80px;
  top: 18px;
  color: black;
}

#lga-services-slider a.slick-arrow {
  color: #000;
  position: absolute;
  top: -78px;
  right: 0;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-decoration: none;
}

#lga-services-slider a.slick-prev {
  right: 80px;
}

#lga-services-slider .slick-slide {
  padding: 0 15px;
}

#lga-services-slider img {
  width: 100%;
  display: block;
}

#lga-services-slider .property-details {
  padding: 1rem;
}

#lga-services-slider .price {
  font-size: 1.2rem;
  color: black;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
}

#lga-services-slider .property-details span {
  font-size: 0.8rem;
  padding-right: 15px;
}

#lga-services-slider .property-details span.baths {
  padding-left: 10px;
}

#lga-services-slider .property-details span.sqft {
  padding-right: 0;
  padding-left: 10px;
}

#lga-services-slider .property-details span.pages,
#lga-services-slider .property-details span.menu {
  border-right: 1px solid #888;
}

#lga-services-slider .property-details address {
  font-size: 0.8rem;
  font-style: normal;
  margin-top: 0.5rem;
}

#lga-services button.rounded {
  display: block;
  margin: 2rem auto 0;
  width: 350px;
}
/* end: lga-services styles */


/* Start of Introduction */

.introduction 
{
  width: 100%; 
  min-height: 100vh; 
  position: relative;
  padding: 2rem 4rem;
  background-color: var(--midblue);

  display: flex; 
  align-items: flex-start;
  flex-direction: column;
}

.introduction > h2
{ 
	z-index: 2; 
  font-size: 64px;
  line-height: 110%;
  margin-bottom: 3rem;
  letter-spacing: 1rem;
  color: var(--whiteOnMidBlue); 
  font-family: "Inter", sans-serif;
  text-shadow: -8px 8px 0 rgba(0,60,60,0.5);
}

.introduction > div.fade 
{
  width: 100%; 
  height: 100%; 
  
  position: absolute; 
  top: 0;
  left: 0;
  background-size: contain;
  z-index: 1;
  background: url('../img/introductionbackground.png') center center;
  background-repeat: no-repeat;
  pointer-events: none;
}

#introduction-video 
{
  height: auto; 
  width: 50%;
  border-radius: 20px;
  border: 5px solid var(--whiteOnMidBlue);
  background-color: transparent; 
  transform: translate(2rem,0rem);
  box-shadow: -10px 10px 0px 0px rgba(0,60,60,0.5);
  z-index: 10; 
  opacity: 0.75;
}


/* End of introduction */ 

/* Start of Our process */ 

.our-process 
{
  width: 100vw; 
  min-height: 100vh; 
  background-color: var(--darkblue);
  padding: 3rem 4rem;

  display: flex; 
  align-items: flex-start;
  justify-content: baseline;
  flex-direction: column;
}


.our-process-header 
{
  display : grid; 
  grid-template: auto / auto auto;
  grid-column-gap: 2rem;
}

.our-process-header > h2 
{
  font-size: 68px;
  letter-spacing: 1rem;
  color: var(--whiteOnMidBlue);
  font-weight: bolder;
  font-family: "Inter", sans-serif;
}

.our-process-header > p
{
  margin: auto auto; 
  font-size: 20px; 
  text-align: justify;
  color: var(--whiteOnMidBlue);
  font-weight: lighter;
  font-family: 'Montserrat', sans-serif;
}


.our-process-process-grid
{
  width: calc(100vw - 12rem);
  display: grid; 
  grid-template: auto auto / auto auto auto auto;  
  grid-column-gap: 2rem; 
  grid-row-gap: 2rem;

  margin:  3rem 0rem;
}


.our-process-process-grid > div 
{
  position: relative;
  grid-row-start: 1; 
  grid-row-end: 2; 
}

.our-process-process-grid > div > p
{
  left: 0; 
  bottom: 0;
  margin: 0;
  width: 100%;
  position: absolute; 
  text-align: center;
  font-family: "Montaga", serif;
  color: var(--whiteOnMidBlue);
}

.our-process-process-grid > div > h2 
{

  margin: 0; 
  font-size: 140px;
  line-height: 100%;
  color: var(--darkblue);
  font-weight: bolder;
  -webkit-text-stroke-width: 0.5px;
  font-family: "Inter", sans-serif;
  -webkit-text-stroke-color:  var(--redtrans);
}

.our-process-process-grid > p
{
  margin: 0; 
  text-align: justify;
  padding: 0 2rem;
  font-weight: lighter;
  font-family: 'Montserrat', sans-serif;
  color: var(--whiteOnMidBlue);
}

.our-process-background-text 
{
  display : grid; 
  grid-template: auto auto/ 50% 50%; 
  grid-row-gap: 2rem;
}

.our-process-background-text > p
{
  margin: 0;

  font-size: 16px; 
  text-align: justify;
  color: var(--whiteOnMidBlue);
  font-weight: lighter;
  font-family: 'Montserrat', sans-serif;

  
  grid-row-start: 1; 
  grid-row-end: 2; 
  grid-column-start: 1;
  grid-column-end: 2;
}

.our-process-background-text > a 
{
  width: 40%;
  padding: 1rem 0rem; 
  text-decoration: none;
  font-family: "Inter", sans-serif;
  color: var(--whiteOnMidBlue); 
  
  grid-row-start: 2; 
  grid-row-end: 3; 
  grid-column-start: 1;
  grid-column-end: 2;
}

.our-process-background-text > a > span 
{	
  padding: 1rem 1rem; 
  border-radius: 0.5rem;
  border: 1px solid var(--whiteOnMidBlue); 
}

/* End of our process */ 

/* start: contact us styles */
#contact {
  background: #fff;
  padding: 4rem 0 8rem;
}

#contact h2 {
  color: black;
  text-align: center;
  margin-bottom: 4rem;
}

#form-container {
  width: 58%;
  padding: 3rem;
  box-sizing: border-box;
  height: 0%;
}

#form-container h3 {
  color: #000;
  font-family: 'Aldrich', sans-serif;
  margin-bottom: 2rem;
}

#form-container label {
  display: block;
  color: #000;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

#form-container input,
#form-container textarea {
  display: block;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  height: 43px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: black;
  border: none; 
  border-radius: 0;
  border-bottom: 2px solid black;
}

#form-container textarea {
  height: 170px;
  margin-bottom: 2rem;
  resize: none;
  border: 1px solid black;
}

#address-container {
  width: 38%;
  padding: 1.5rem;
  box-sizing: border-box;
  height: 0%;
}

#address-container label {
  font-weight: 700;
  display: block;
  margin-top: 2rem;
}

#address-container label:first-child {
  margin-top: 0;
}

#address-container address {
  margin-bottom: 1.5rem;
  font-style: normal;
}

#address-container p {
  text-decoration: none;
  color:  #003166;
}

#address-container p:hover {
  text-decoration: underline;
}
/* end: contact us styles */

/* start: footer styles */
footer {
  color: white; 
  background: #1E1E1E;
  padding: 8rem 0;
  position: relative;
}

footer .fade 
{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.075;
  background: url('../img/footerbackground.png');
  z-index: 1;
}

footer .flex {
  padding-bottom: 6rem;
  border-bottom: 1px solid #fff;
}

footer h5 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 300;
}

footer h5.follow-us {
  margin-top: 1rem;
}

footer .footer-about {
  width: 47%;
}

footer .footer-about p {
  width: 65%;
}

footer .footer-quick-links {
  width: 16%;
}

footer .footer-quick-links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

footer .footer-quick-links ul li {
  margin: 10px 0;
}

footer .footer-quick-links ul li a {
  color: #fff;
  text-decoration: none;
}

footer .footer-quick-links ul li a:hover {
  color: #fff;
}

footer .footer-subscribe {
  width: 35%;
  z-index: 3; 
}

#subscribe-container {
  position: relative;
}

footer .footer-subscribe input {
  border-radius: 30px;
  height: 43px;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid #fff;
  background-color: transparent;
  font-size: 1rem;
  padding: 10px;
  color: #fff;
  box-sizing: border-box;
  width: 80%;
  z-index: 1;
}

footer .footer-subscribe ::placeholder {
  color: white;
  opacity: 1; /* Firefox */
}

footer .footer-subscribe ::-ms-input-placeholder { /* Edge 12 -18 */
  color: white;
}

footer button.right-rounded {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background:  #fff;
  font-size: 16px;
  color: #000;
  padding: 10px 30px 9px;
  line-height: 1.5;
  cursor: pointer;
  border: none;
  position: absolute;
  right: 0;
}

footer button.right-rounded:hover {
  background: #fff;
}

footer .footer-subscribe ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

footer .footer-subscribe ul li {
  display: inline-block;
  margin: 0 16px;
}

footer .footer-subscribe ul li:first-child {
  margin-left: 0;
}

footer .footer-subscribe ul li a {
  text-decoration: none;
  color: #fff;
}

footer .footer-subscribe ul li a:hover {
  color: #fff;
}

footer small {
  margin-top: 3rem;
  font-size: 1rem;
  display: block;
  text-align: center;
}

footer small a {
  color: #fff;
  text-decoration: none;
}

footer small a:hover {
  color: #fff;
}
/* end: footer styles */


.call-to-action-transition-light-to-light ,
.call-to-action-transition-dark-to-light ,
.call-to-action-transition-light-to-dark,
.call-to-action-transition-dark-to-black
{
  width: 100vw; 
  height: auto; 
  padding: 4rem 3.3rem; 
  overflow: hidden;
}

.call-to-action-transition-light-to-light > p, 
.call-to-action-transition-dark-to-light > p,
.call-to-action-transition-light-to-dark > p,
.call-to-action-transition-dark-to-black > p
{
  margin: 0; 
  font-size: 48px; 
  letter-spacing: 2.5rem;


  font-weight: bold;
  -webkit-text-stroke-width: 0.5px;
  font-family: "Inter", sans-serif;
  color: transparent; //var(--whiteOnMidBlue); 
  -webkit-text-stroke-color:  var(--whiteOnMidBlue); 
}

.call-to-action-transition-light-to-light
{
  background: linear-gradient(180deg,var(--midblue) 0%, var(--midblue) 100%);
}

.call-to-action-transition-dark-to-light
{
  background: linear-gradient(180deg,var(--darkblue) 0%, var(--midblue) 100%);
}

.call-to-action-transition-light-to-dark
{
  background: linear-gradient(180deg,var(--midblue) 0%, var(--darkblue) 100%);
}

.call-to-action-transition-dark-to-black 
{
  background: linear-gradient(180deg,var(--darkblue) 0%, #1E1E1E 100%);
}

/* start: media queries */
@media (max-width: 991px) 
{ 
  .paper-poster
  {
  	left: 0;
  	transform: translate(0,0);
  	display: block;
  	position: relative;
  }
  .paper-poster-image img
  {
  	max-width: 500px; 
  
  }
  #about-us .container 
  {
  	text-align: center;
  	width: 100%; 
  	height: 100%; 
  	padding: 0 25px ; 
  	margin: 75px  0; 
  }
  
  .paper-poster-text-desktop > span 
  {
  	display: hidden;
  }

  #logo {
  top: 1px;
  }
  
  #nav-toggle {
  display: block;
  }
  
  nav ul {
  position: fixed;
  right: -100%;
  top: 0;
  margin: 0;
  padding: 2rem;
  height: 100%;
  width: 300px;
  box-sizing: border-box;
  box-shadow: 5px 0 10px 3px #999;
  }
  
  #close-flyout {
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  font-size: 30px;
  color: #777;
  cursor: pointer;
  display: block;
  line-height: 1;
  margin: 0;
  }
  
  nav ul li {
  display: block;
  margin: 20px 0;
  }
  
  nav ul li:first-child {
  margin-top: 50px;
  }
  nav ul li a {
  font-size: 20px;
  color: white;
  }
  
  nav ul li a.active,
  nav ul li a:hover {
  color:  white;
  }

  .introduction 
{
  width: 100%; 
  min-height: 0;
  height: auto;
  position: relative;
  padding: 2rem 1rem;
  background-color: var(--midblue);

  display: flex; 
  align-items: center;
  flex-direction: column;
}

.introduction > h2
{ 
	z-index: 2; 
  font-size: 24px;
  line-height: 110%;
  margin-bottom: 3rem;
  letter-spacing: 1rem;
  color: var(--whiteOnMidBlue); 
  font-family: "Inter", sans-serif;
  text-shadow: -8px 8px 0 rgba(0,60,60,0.5);
}

.introduction > div.fade 
{
  width: 100%; 
  height: 100%; 
  
  position: absolute; 
  top: 0;
  left: 0;
  background-size: contain;
  z-index: 1;
  background: url('../img/introductionbackground.png') center center;
  background-repeat: no-repeat;
  pointer-events: none;
}

#introduction-video 
{
  height: auto; 
  width: calc(100% - 2rem);
  border-radius: 20px;
  transform: translate(0,0);
  border: 5px solid var(--whiteOnMidBlue);
  background-color: transparent; 
  box-shadow: -10px 10px 0px 0px rgba(0,60,60,0.5);
}


/* Start of Our process */ 

.our-process 
{
  width: 100vw; 
  min-height: 100vh; 
  background-color: var(--darkblue);
  padding: 2rem 2rem;

  display: flex; 
  align-items: flex-start;
  justify-content: baseline;
  flex-direction: column;
}


.our-process-header 
{
  display : flex; 
  align-items: flex-start;
  flex-direction: column;
}

.our-process-header > h2 
{
  font-size: 24px;
  letter-spacing: 1rem;
  color: var(--whiteOnMidBlue);
  font-weight: bolder;
  font-family: "Inter", sans-serif;
}

.our-process-header > p
{
  margin: auto auto; 
  font-size: 16px; 
  text-align: justify;
  color: var(--whiteOnMidBlue);
  font-weight: lighter;
  font-family: 'Montserrat', sans-serif;
}


.our-process-process-grid
{
  width: 100%; 
  display:  flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


.our-process-process-grid > div > p
{
  left: 0; 
  bottom: 0;
  margin: 0;
  width: 110%;
  position: absolute; 
  text-align: center;
  font-family: "Montaga", serif;
  color: var(--whiteOnMidBlue);
}

.our-process-process-grid > div > h2 
{

  margin: 0; 
  font-size: 140px;
  line-height: 100%;
  color: var(--darkblue);
  font-weight: bolder;
  -webkit-text-stroke-width: 0.5px;
  font-family: "Inter", sans-serif;
  -webkit-text-stroke-color:  var(--redtrans);
}

.our-process-process-grid > p
{
  margin: 0; 
  text-align: justify;
  padding: 0 2rem;
  font-weight: lighter;
  font-family: 'Montserrat', sans-serif;
  color: var(--whiteOnMidBlue);
}

.our-process-background-text 
{
  display : flex; 
  flex-direction: column;
  align-items: flex-start; 
}

.our-process-background-text > p
{
  margin: 0;

  font-size: 12px; 
  text-align: justify;
  color: var(--whiteOnMidBlue);
  font-weight: lighter;
  font-family: 'Montserrat', sans-serif;

}

.our-process-background-text > a 
{
  font-size: 12px; 
  min-width: none;
  width: auto;
  padding: 1rem 0rem; 
  text-decoration: none;
  font-family: "Inter", sans-serif;
  color: var(--whiteOnMidBlue); 
}

.our-process-background-text > a > span 
{	
  padding: 1rem 1rem; 
  border-radius: 0.5rem;
  border: 1px solid var(--whiteOnMidBlue); 
}

/* End of our process */ 

  
  #how-it-works {
  
  font-family: "Inter", sans-serif;
  padding: 5rem 0;
  background-color: var(--midblue);
  text-align: center;
  
  color: var(--whiteOnMidBlue); 
  position: relative;
  width: 100%; 
  height: auto; 
  
  display: flex; 
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: medium;

}

#how-it-works > div.fade 
{
  width: 100%; 
  height: 100%; 
  
  position: absolute; 
  top: 0;
  left: 0;
  background-size: cover;
  z-index: 1;
  background: url('../img/WhatWeDoBackground.png') top left;
  background-repeat: no-repeat;
  pointer-events: none;
}

#how-it-works > h2 
{
	z-index: 2; 
  font-size: 24px;
  margin-bottom: 2rem;
  letter-spacing: 1rem;
  color: var(--whiteOnMidBlue); 
  font-family: "Inter", sans-serif;
  text-shadow: -8px 8px 0 rgba(0,60,60,0.5);
}

.how-it-works-grid 
{
	display: flex; 
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 0 3rem;
}

.how-it-works-grid > h3 
{
  font-size: 24px;
  color: var(--midblue);
  font-weight: bolder;
  -webkit-text-stroke-width: 0.5px;
  font-family: "Inter", sans-serif;
  -webkit-text-stroke-color:  var(--whiteOnMidBlue); ;
}

.how-it-works-grid > p 
{
  font-weight: normal;
  text-align: justify;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: "Inter", sans-serif;
  margin: 0;
  
}

.how-it-works-grid > img
{
  margin: 0 auto;
}

.how-it-works-grid > a 
{
  text-decoration: none;
  padding: 0.5rem 1rem; 
  font-family: "Inter", sans-serif;
  color: var(--whiteOnMidBlue); 
}

.how-it-works-grid > a > span 
{	
  padding: 0.5rem 1rem; 
  border-radius: 0.5rem;
  border: 1px solid var(--whiteOnMidBlue); 
}

}

@media (max-width: 767px) {
  
  .hero-image 
  {
  	opacity: 0.5;
  }
  
  h1 {
  font-size: 1.8rem;
  }
  
  h2 {
  font-size: 1.55rem;
  }
  
  h3 {
  font-size: 1rem;
  }
  
  .large-paragraph {
  font-size: 0.8rem;
  }
  
  p {
  font-size: 0.7rem;
  }
  
  .container {
  max-width: 540px;
  }
  
  .hero-arrow
  {
  	width: 40px;
  	height: auto;
  }
  
  #hero .hero-text {
  width: 450px;
  }
  
  #agents .card {
  width: 49%;
  }
  
  #the-best .flex > img {
  display: none;
  }
  
  #the-best .flex > div {
  width: 100%;
  }
  
  #testimonials-slider p {
  font-size: 1rem;
  }
  
  #lga-services .container:before {
  top: 2px;
  font-size: 0.65rem;
  }
  
  #lga-services-slider a.slick-arrow {
  font-size: 0.65rem;
  }
  
  #lga-services button.rounded {
  width: 300px;
  }
  
  #services .flex > div {
  width: 48%;
  }
  
  #contact .flex {
  flex-wrap: wrap;
  }
  
  #form-container {
  width: 100%;
  padding: 2.2rem;
  }
  
  #address-container {
  width: 100%;
  margin-top: 2.2rem;
  }
  
  footer {
  padding: 6rem 0;
  }
  
  footer .flex {
  flex-wrap: wrap;
  }
  
  footer .flex > div {
  width: 100%;
  margin-top: 1rem;
  }
  
  footer .flex > div:first-child {
  margin-top: 0;
  }
  
  footer .footer-about p {
  font-size: 1rem;
  width: 100%;
  }
  
  footer .footer-subscribe input {
  width: 90%;
  }
  
  footer h5.follow-us {
  margin-top: 2rem;
  }

    .call-to-action-transition-light-to-light ,
    .call-to-action-transition-dark-to-light ,
    .call-to-action-transition-light-to-dark,
    .call-to-action-transition-dark-to-black
    {
      width: 100vw; 
      height: auto; 
      padding: 2rem; 
      overflow: hidden;
    }
    
    .call-to-action-transition-light-to-light > p, 
    .call-to-action-transition-dark-to-light > p,
    .call-to-action-transition-light-to-dark > p,
    .call-to-action-transition-dark-to-black > p
    {
      margin: 0; 
      font-size: 16px; 
      letter-spacing: 1rem;
    
    
      font-weight: bold;
      -webkit-text-stroke-width: 0.5px;
      font-family: "Inter", sans-serif;
      color: transparent; 
      -webkit-text-stroke-color:  var(--whiteOnMidBlue); 
    }
    
    .call-to-action-transition-light-to-light
    {
      background: linear-gradient(180deg,var(--midblue) 0%, var(--midblue) 100%);
    }
    
    .call-to-action-transition-dark-to-light
    {
      background: linear-gradient(180deg,var(--darkblue) 0%, var(--midblue) 100%);
    }
    
    .call-to-action-transition-light-to-dark
    {
      background: linear-gradient(180deg,var(--midblue) 0%, var(--darkblue) 100%);
    }
    
    .call-to-action-transition-dark-to-black 
    {
      background: linear-gradient(180deg,var(--darkblue) 0%, #1E1E1E 100%);
    }

  }
  
  @media (max-width: 500px) 
  {

  #hero .hero-text {
  width: 330px;
  }
  
  #agents {
  margin: 4rem 0 3rem;
  padding: 0 0 3rem;
  }
  
  #agents .card {
  width: 100%;
  }
  
  #agents p.large-paragraph {
  width: 100%;
  }
  
  #how-it-works .flex {
  display: block;
  }
  
  #how-it-works .flex > div {
  width: 80%;
  margin-top: 2rem;
  margin-right: auto; 
  margin-left: auto;
  }
  
  #lga-services button.rounded {
  width: 250px;
  }
  
  #services {
  padding: 4rem 0 3rem;
  margin: 4rem 0;
  }
  
  #services .flex > div {
  width: 100%;
  }
  
  #testimonials {
  margin-bottom: 4rem;
  }
  
  #testimonials-slider p {
  font-size: 1rem;
  }
  
  #testimonials-slider .slick-arrow {
  display: none !important;
  }
  
  #contact {
  padding: 4rem 0;
  }
  
  #contact h2 {
  margin-bottom: 2rem;
  }
  
  #form-container {
  padding: 1.5rem;
  }
  
  footer {
  padding: 4rem 0;
  }

}
  
  @media (max-width: 400px) {
  #hero .hero-text {
  max-width: 350px;
  width: 100%;
  }
  
  #lga-services button.rounded {
  max-width: 250px;
  width: 100%;
  }
  
  nav ul {
  width: 200px;
  }
}
