@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;700;900;1000&family=Poppins:wght@100;200;300;400;500;600;700&display=swap");

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   outline: none;
   font-family: "Poppins", sans-serif;
   font-weight: 300;
   user-select: none;
}

body,
html {
   -webkit-text-size-adjust: none;
   width: 100%;
   height: 100%;
}

body {
   overflow-x: hidden !important;
}

a,
button {
   border: 0;
   text-decoration: none !important;
   outline: none !important;
   cursor: pointer;
}

b {
   font-weight: 600;
}

h1,
h2,
h3,
h6,
p,
ul,
li,
figure {
   margin: 0;
   padding: 0;
   line-height: normal;
   font-weight: normal;
}

h1 {
   font-family: "Mulish", sans-serif;
}

select {
   appearance: none;
   -webkit-appearance: none;
   -moz-appearance: none;
}

figure {
   display: inline-block;
   text-align: center;
}

ul,
ol {
   margin: 0;
   padding: 0;
}

ul {
   list-style-type: none;
}
ol {
   list-style-type: auto;
}

::-webkit-scrollbar-track {
   background-color: #f1f1f1;
}
::-webkit-scrollbar {
   width: 6px;
   height: 6px;
}
::-webkit-scrollbar-thumb {
   background-color: #caccd1;
   border-radius: 25px;
   -webkit-border-radius: 25px;
}

:root {
   --darkGreen: #016736;
   --lightGreen: #8bc63e;
   --darkBlue: #002c5b;
}

form {
   display: block;
}

form ul {
   display: block;
   padding: 25px 0 25px;
}

form ul li {
   display: block;
   position: relative;
   padding-bottom: 15px;
}

form ul li label {
   display: block;
   font-size: 18px;
   padding-bottom: 5px;
   text-align: left;
   font-weight: 400;
}

form ul li label span {
   color: #ff0000;
}

form ul li input,
form ul li textarea {
   display: block;
   width: 100%;
   padding: 8px 10px;
   border: 1px solid #ccc;
   border-radius: 5px;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   -ms-border-radius: 5px;
   -o-border-radius: 5px;
   z-index: 1;
   font-size: 16px;
}

form ul li textarea {
   height: 150px;
   resize: none;
}

form ul li input.error {
   border: 1px solid #ff0000;
}

form button {
   display: block;
   width: 140px;
   height: 50px;
   line-height: 45px;
   margin: 0 auto 25px;
   background-color: var(--lightGreen);
   border: none;
   color: #FFFFFF;
   text-align: center;
   font-size: 20px;
   font-weight: 500;
   cursor: pointer;
   border: 1px solid #75b325;
   border-radius: 5px;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   -ms-border-radius: 5px;
   -o-border-radius: 5px;
   transition: all 0.5s;
   -webkit-transition: all 0.5s;
   -moz-transition: all 0.5s;
   -ms-transition: all 0.5s;
   -o-transition: all 0.5s;
}
 
 form button span {
   cursor: pointer;
   display: inline-block;
   position: relative;
   font-size: 20px;
   font-weight: 400;
   letter-spacing: 1px;
   transition: 0.5s;
   -webkit-transition: 0.5s;
   -moz-transition: 0.5s;
   -ms-transition: 0.5s;
   -o-transition: 0.5s;
}
 
 form button span:after {
   content: '\00bb';
   position: absolute;
   opacity: 0;
   top: -1px;
   right: -20px;
   font-size: 26px;
   transition: 0.5s;
   -webkit-transition: 0.5s;
   -moz-transition: 0.5s;
   -ms-transition: 0.5s;
   -o-transition: 0.5s;
}
 
 form button:hover span {
   padding-right: 20px;
 }
 
 form button:hover span:after {
   opacity: 1;
   right: 0;
 }

/* { background-color: var(--lightGreen); } */

/*=== Common Classes ==============================*/
.container {
   display: block;
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
   overflow-x: hidden;
}

.row {
   display: block;
   padding: 15px 0;
}

.full-width {
   width: 100%;
   vertical-align: middle;
}

.anim {
   -webkit-transition: all 0.5s ease-in-out;
   -moz-transition: all 0.5s ease-in-out;
   -ms-transition: all 0.5s ease-in-out;
   -o-transition: all 0.5s ease-in-out;
   transition: all 0.5s ease-in-out;
}

hr {
   display: block;
   width: 100%;
   margin: 15px 0;
   border: 0;
   border-top: 1px dashed rgb(155, 155, 155);
}

p {
   display: block;
   font-size: 14px;
   color: #333333;
   line-height: 25px;
   text-align: justify;
}

header {
   position: fixed;
   top: 0;
   left: 0;
   z-index: 999;
   width: 100%;
   background: #fff;
   -webkit-box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, 0.2);
   box-shadow: 1px 1px 10px 2px rgb(0, 0, 0, 0.2);
   -webkit-transition: all 0.8s ease-in-out;
   -moz-transition: all 0.8s ease-in-out;
   -ms-transition: all 0.8s ease-in-out;
   -o-transition: all 0.8s ease-in-out;
   transition: all 0.8s ease-in-out;
}

header.sticky {
   background: none;
   -webkit-box-shadow: none;
   box-shadow: none;
}

header .container {
   display: flex;
   display: -webkit-flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
   width: 100%;
   max-width: 100%;
   margin: 0 auto;
   padding: 5px 20px;
}

header .container .logo {
   display: block;
   width: 200px;
}

header .container .logo img {
   display: block;
   width: 100%;
   height: auto;
}

header.sticky .container .logo img {
   filter: brightness(100) grayscale(100);
   -webkit-filter: brightness(100) grayscale(100);
}  

header .container a#hamburger-icon {
   display: none;
   width: 40px;
   height: 35px;
   cursor: pointer;
   padding: 8px 7px;
   background: var(--darkGreen);
   border: 1px solid var(--lightGreen);
   border-radius: 5px;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   -ms-border-radius: 5px;
   -o-border-radius: 5px;
}

header .container a#hamburger-icon span {
   display: block;
   height: 2px;
   background: #fff;
   content: "";
   position: relative;
   transition: 0.25s ease-in-out;
   -webkit-transition: 0.25s ease-in-out;
   -moz-transition: 0.25s ease-in-out;
   -ms-transition: 0.25s ease-in-out;
   -o-transition: 0.25s ease-in-out;
}

header .container a#hamburger-icon span:nth-child(1) {
   top: 0;
}
header .container a#hamburger-icon span:nth-child(2) {
   top: 5px;
}
header .container a#hamburger-icon span:nth-child(3) {
   top: 10px;
}

header .container a#hamburger-icon .hidden {
   opacity: 0;
}

header .container a#hamburger-icon .rot45deg {
   top: 8px !important;
   height: 3px !important;
   transform: rotate(45deg);
   -webkit-transform: rotate(45deg);
   -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   -o-transform: rotate(45deg);
}

header .container a#hamburger-icon .rot-45deg {
   height: 3px !important;
   transform: rotate(-45deg);
   -webkit-transform: rotate(-45deg);
   -moz-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
   -o-transform: rotate(-45deg);
}

header .container nav ul {
   padding-top: 15px;
}

header .container nav ul li {
   display: inline-block;
   margin-left: 15px;
}

header .container nav ul li a {
   color: var(--darkBlue);
   padding: 5px 15px;
   position: relative;
   font-size: 18px;
   font-weight: 300;
}

header.sticky .container nav ul li a {
   color: #fff;
}

header .container nav ul li a:before,
header .container nav ul li a:after {
   height: 12px;
   width: 12px;
   position: absolute;
   content: "";
   -webkit-transition: all 0.35s ease;
   transition: all 0.35s ease;
   opacity: 0;
}
header .container nav ul li a:before {
   left: 0;
   top: 0;
   border-left: 2px solid var(--lightGreen);
   border-top: 2px solid var(--lightGreen);
   -webkit-transform: translate(100%, 50%);
   transform: translate(100%, 50%);
}
header .container nav ul li a:after {
   right: 0;
   bottom: 0;
   border-right: 2px solid var(--lightGreen);
   border-bottom: 2px solid var(--lightGreen);
   -webkit-transform: translate(-100%, -50%);
   transform: translate(-100%, -50%);
}

/* header .container nav ul li a:hover,
header .container nav ul li.current a {
   color: #fff;
} */

header .container nav ul li a:hover:before,
header .container nav ul li.current a:before,
header .container nav ul li a:hover:after,
header .container nav ul li.current a:after {
   -webkit-transform: translate(0%, 0%);
   transform: translate(0%, 0%);
   opacity: 1;
}

.home-banner {
   display: block;
   width: 100%;
   position: relative;
   padding: 180px 0 150px;
   background: url(../images/fixed-banner-bg.jpg) no-repeat;
   background-size: cover;
   background-position: top center;
   background-attachment: fixed;
}

.home-banner .container {
   display: flex;
   display: -webkit-flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: flex-end;
   padding: 0 10px;
   gap: 50px;
}

.home-banner .container > div {
   display: block;
   width: 100%;
   overflow: hidden;
}

.home-banner .home-banner-titles h1 {
   color: #FFF;
   font-size: 45px;
   font-weight: 300;
   line-height: 55px;
   padding-bottom: 10px;
}

.home-banner .home-banner-titles h1 span {
   font-weight: 900;
}

.home-banner .home-banner-titles h2 {
   display: inline-block;
   color: #FFF;
   padding: 5px 20px;
   font-weight: 300;
   background: rgba(0, 39, 91, 0.7);
}

.home-banner .cdpap-form-container {
   display: block;
   width: 80%;
   padding: 30px 30px 50px;
   border: 1px solid #fff;
   background: rgba(255, 255, 255, 0.4);
   backdrop-filter: blur(3px);
   text-align: center;   
   min-height: 567px;
   -webkit-transition: all 0.5s ease-in-out;
   -moz-transition: all 0.5s ease-in-out;
   -ms-transition: all 0.5s ease-in-out;
   -o-transition: all 0.5s ease-in-out;
   transition: all 0.5s ease-in-out;
}

.home-banner .cdpap-form-container h1 {
   display: block;
   color: var(--darkBlue);
   font-size: 36px;
   font-weight: 700;
}

.home-banner .cdpap-form-container h1 span {
   color: var(--darkGreen);
   font-weight: 900;
}

.home-banner .cdpap-form-container form ul {
   padding: 5px 0;
}

.home-banner .cdpap-form-container form button {
   margin: 10px auto 0;
}

.home-banner .cdpapForm-thank-you {
   display: none;
   padding: 25px 0;
}

.home-banner .cdpapForm-thank-you span {
   display: block;
   text-align: center;
   font-size: 40px;
   font-weight: 400;
   color: #FFF;
   letter-spacing: 0;
   line-height: 30px;
   padding: 20px 0 30px;
}

.home-banner .cdpapForm-thank-you p {
   display: block;
   text-align: center;
   font-size: 18px;
   color: var(--darkBlue);
}


.available {
   display: block;
   width: 100%;
   text-align: center;
   font-size: 22px;
   color: #fff;
   background: var(--darkBlue);
   padding: 20px;
}

.available svg {
   display: inline-block;
   width: 30px;
   height: 30px;
   margin-right: 10px;
   vertical-align: middle;
}

.middle-content {
   display: block;
   width: 100%;
   text-align: center;
   padding: 50px 0;
}

.middle-content h1 {
   display: block;
   text-align: center;
   padding: 0 0 20px;
   font-size: 40px;
   color: var(--darkBlue);
}

.middle-content h2 {
   display: block;
   text-align: left;
   padding: 0;
   font-size: 24px;
   color: var(--darkGreen);
   font-weight: 600;
}

.middle-content p {
   display: block;
   text-align: left;
   padding: 0 0 15px;
   font-size: 14px;
   font-weight: 400;
   text-align: justify;
   line-height: 25px;
}

.middle-content .container > p {
   padding: 10px 0 30px;
}

.middle-content .flex-2col {
   display: flex;
   display: -webkit-flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
   gap: 100px;
   padding: 50px 0;
}

.middle-content .flex-2col > div {
   width: 100%;
   text-align: left;
}

.middle-content .flex-2col > div figure.left,
.middle-content .flex-2col > div figure.right {
   display: block;
   position: relative;
   padding: 25px;
}

.middle-content .flex-2col > div figure.left::before,
.middle-content .flex-2col > div figure.left::after,
.middle-content .flex-2col > div figure.right::before,
.middle-content .flex-2col > div figure.right::after {
   content: "";
   position: absolute;
   width: 50px;
   height: 50px;
}

.middle-content .flex-2col > div figure.left::before {
   top: 0;
   left: 0;
   border-top: 5px solid var(--lightGreen);
   border-left: 5px solid var(--lightGreen);
}

.middle-content .flex-2col > div figure.left::after {
   bottom: 0;
   right: 0;
   border-bottom: 5px solid var(--lightGreen);
   border-right: 5px solid var(--lightGreen);
}

.middle-content .flex-2col > div figure.right::before {
   top: 0;
   right: 0;
   border-top: 5px solid var(--lightGreen);
   border-right: 5px solid var(--lightGreen);
}

.middle-content .flex-2col > div figure.right::after {
   bottom: 0;
   left: 0;
   border-bottom: 5px solid var(--lightGreen);
   border-left: 5px solid var(--lightGreen);
}

.middle-content .flex-2col > div figure img {
   display: block;
   width: 100%;
}

.middle-content .flex-row-reverse {
   flex-direction: row-reverse;
}

.service-areas {
   display: block;
   width: 100%;
   background: var(--darkBlue);
   padding: 50px 0;
}

.service-areas h1 {
   display: block;
   text-align: center;
   padding: 10px 0 30px;
   font-size: 40px;
   color: #fff;
}

.service-areas .city-list {
   display: flex;
   display: -webkit-flex;
   flex-direction: row;
   flex-wrap: wrap;
   justify-content: center;
   align-items: flex-start;
   gap: 25px;
   padding: 15px 0 0;
}

.service-areas .city-list > div {
   width: 200px;
}

.service-areas .city-list > div figure {
   display: block;
   border: 2px solid #8cc63e;
   overflow: hidden;
   -webkit-box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.4);
   box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.4);
}

.service-areas .city-list > div figure img {
   display: block;
   width: 100%;
}

.service-areas .city-list > div span {
   display: block;
   text-align: center;
   color: #fff;
   text-transform: uppercase;
   padding: 15px 0;
   font-size: 18px;
}

footer {
   display: block;
   width: 100%;
   padding: 50px 0;
   text-align: center;
}

footer .footer-logo {
   display: block;
   width: 200px;
   height: auto;
   margin: 0 auto 10px;
}

footer p {
   display: block;
   text-align: center;
   padding-bottom: 30px;
}

footer .copyright {
   display: block;
   text-align: center;
   padding-top: 30px;
   border-top: 1px solid var(--lightGreen);
   font-size: 14px;
}

.pageTitle {
   display: block;
   height: 190px;
   overflow: hidden;
}

.innerPageTitle {
   display: block;
   text-align: center;
   position: relative;
   height: 100px;
   margin-top: 90px;
   overflow: hidden;
   background: linear-gradient(-45deg, #016736, #00326c, #77b227, #44c4ff);
   background-size: 400% 400%;
   animation: gradient 20s ease infinite;
   -webkit-animation: gradient 20s ease infinite;
}

@keyframes gradient {
   0% {
      background-position: 0% 50%;
   }
   50% {
      background-position: 100% 50%;
   }
   100% {
      background-position: 0% 50%;
   }
}

.innerPageTitle h1 {
   padding: 0;
   color: #fff;
   font-size: 40px;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 1;
}

.innerPageTitle .circles {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
}

.innerPageTitle .circles li {
   position: absolute;
   display: block;
   list-style: none;
   width: 20px;
   height: 20px;
   background: rgba(255, 255, 255, 0.2);
   animation: animate 25s linear infinite;
   bottom: -150px;
}

.innerPageTitle .circles li:nth-child(1) {
   left: 25%;
   width: 80px;
   height: 80px;
   animation-delay: 0s;
}

.innerPageTitle .circles li:nth-child(2) {
   left: 10%;
   width: 20px;
   height: 20px;
   animation-delay: 2s;
   animation-duration: 12s;
}

.innerPageTitle .circles li:nth-child(3) {
   left: 70%;
   width: 20px;
   height: 20px;
   animation-delay: 4s;
}

.innerPageTitle .circles li:nth-child(4) {
   left: 40%;
   width: 60px;
   height: 60px;
   animation-delay: 0s;
   animation-duration: 18s;
}

.innerPageTitle .circles li:nth-child(5) {
   left: 65%;
   width: 20px;
   height: 20px;
   animation-delay: 0s;
}

.innerPageTitle .circles li:nth-child(6) {
   left: 75%;
   width: 110px;
   height: 110px;
   animation-delay: 3s;
}

.innerPageTitle .circles li:nth-child(7) {
   left: 35%;
   width: 150px;
   height: 150px;
   animation-delay: 7s;
}

.innerPageTitle .circles li:nth-child(8) {
   left: 50%;
   width: 25px;
   height: 25px;
   animation-delay: 15s;
   animation-duration: 45s;
}

.innerPageTitle .circles li:nth-child(9) {
   left: 20%;
   width: 15px;
   height: 15px;
   animation-delay: 2s;
   animation-duration: 35s;
}

.innerPageTitle .circles li:nth-child(10) {
   left: 85%;
   width: 150px;
   height: 150px;
   animation-delay: 0s;
   animation-duration: 11s;
}

@keyframes animate {
   0% {
      transform: translateY(0) rotate(0deg);
      opacity: 1;
      border-radius: 0;
   }
   100% {
      opacity: 0;
      border-radius: 50%;
      transform: translateY(-500px) rotate(800deg);
      -webkit-transform: translateY(-500px) rotate(800deg);
      -moz-transform: translateY(-500px) rotate(800deg);
      -ms-transform: translateY(-500px) rotate(800deg);
      -o-transform: translateY(-500px) rotate(800deg);
   }
}

.innerPage-services {
   display: grid;
   grid-gap: 50px 100px;
   grid-template-columns: 1fr 1fr;
}

.innerPage-services > div {
   text-align: left;
}

.innerPage-services h3 {
   display: block;
   font-size: 20px;
   color: var(--darkGreen);
   font-weight: 500;
   padding: 0 10px;
   border-left: 4px solid var(--lightGreen);
   margin-bottom: 15px;
}

.innerPage-our-car-gives {
   display: block;
   text-align: left;
}

.innerPage-our-car-givers .premium-care {
   display: grid;
   grid-gap: 50px 80px;
   grid-template-columns: 450px 1fr;
   text-align: left;
   padding: 25px 0 50px;
}

.innerPage-our-car-givers .premium-care > div figure {
   display: block;
   position: relative;
   padding: 20px;
}

.innerPage-our-car-givers .premium-care > div figure img {
   display: block;
   width: 100%;
   height: auto;
}

.innerPage-our-car-givers .premium-care > div figure::before,
.innerPage-our-car-givers .premium-care > div figure::after {
   content: "";
   position: absolute;
   width: 50px;
   height: 50px;
}

.innerPage-our-car-givers .premium-care > div figure::before {
   top: 0;
   left: 0;
   border-top: 5px solid var(--lightGreen);
   border-left: 5px solid var(--lightGreen);
}

.innerPage-our-car-givers .premium-care > div figure::after {
   bottom: 0;
   right: 0;
   border-bottom: 5px solid var(--lightGreen);
   border-right: 5px solid var(--lightGreen);
}

.innerPage-our-car-givers .premium-care ul li {
   list-style: none;
   position: relative;
   padding: 0 0 10px 20px;
}

.innerPage-our-car-givers .premium-care ul li::before {
   content: "\2022";
   position: absolute;
   top: -3px;
   left: 0;
   color: var(--darkGreen);
   font-weight: bold;
   display: inline-block;
   font-size: 20px;
}

.innerPage-faqs {
   display: block;
   text-align: left;
   padding-right: 30px;
}

.innerPage-faqs h3 {
   display: block;
   font-size: 20px;
   color: var(--darkBlue);
   font-weight: 500;
   padding-left: 30px;
   margin-bottom: 10px;
   position: relative;
}

.innerPage-faqs h3::before {
   content: "\2058";
   position: absolute;
   top: -11px;
   left: 0;
   color: var(--lightGreen);
   font-weight: bold;
   display: inline-block;
   font-size: 30px;
}

.innerPage-faqs .content {
   display: block;
   padding: 0 0 50px 30px;
   text-align: justify;
}

.innerPage-faqs .content ul li {
   list-style: none;
   position: relative;
   padding: 0 0 5px 20px;
}

.innerPage-faqs .content ul li::before {
   content: "\2022";
   position: absolute;
   top: -3px;
   left: 0;
   color: var(--darkGreen);
   font-weight: bold;
   display: inline-block;
   font-size: 20px;
}

.innerPage-contact {
   display: grid;
   grid-gap: 50px 80px;
   grid-template-columns: 1fr 1fr;
   text-align: left;
   padding: 0 0 50px;
}

.innerPage-contact figure {
   display: block;
   position: relative;
   padding: 20px;
}

.innerPage-contact figure img {
   display: block;
   width: 100%;
   height: auto;
}

.innerPage-contact figure::before,
.innerPage-contact figure::after {
   content: "";
   position: absolute;
   width: 50px;
   height: 50px;
}

.innerPage-contact figure::before {
   top: 0;
   left: 0;
   border-top: 5px solid var(--lightGreen);
   border-left: 5px solid var(--lightGreen);
}

.innerPage-contact figure::after {
   bottom: 0;
   right: 0;
   border-bottom: 5px solid var(--lightGreen);
   border-right: 5px solid var(--lightGreen);
}

.innerPage-contact form {
   padding-right: 60px;
}

.innerPage-contact .contact-us-thank-you {
   display: none;
   padding: 25px 0;
}

.innerPage-contact .contact-us-thank-you span {
   display: block;
   text-align: center;
   font-size: 40px;
   font-weight: 400;
   color: var(--lightGreen);
   letter-spacing: 0;
   line-height: 30px;
   padding: 20px 0 30px;
}

.innerPage-contact .contact-us-thank-you p {
   display: block;
   text-align: center;
   font-size: 16px;
   color: var(--darkBlue);
}

@media screen and (max-width: 1200px) {

   header .container {
      max-width: calc(100% - 40px);
      padding: 5px 0;
   }
   header .container nav ul li a {
      padding: 5px 10px;
      font-size: 16px;
   }
   .container {
      max-width: 90%;
   }
   .home-banner {
      padding: 140px 0 100px;
   }
   .home-banner .container {
      gap: 20px;
      padding: 0;
   }
   .home-banner .cdpap-form-container {
      width: 100%;
      min-height: auto;
      padding: 20px 20px 30px;
   }
}

@media screen and (max-width: 1025px) {
   .middle-content .container > p {
      padding: 0 0 30px;
   }
   .middle-content {
      padding: 50px 0;
   }
   .middle-content .flex-2col {
      gap: 60px;
   }
   .service-areas .city-list {
      gap: 20px 35px;
      padding: 15px 100px 0;
   }
   .innerPage-contact {
      grid-gap: 50px;
   }
}

@media screen and (max-width: 770px) {
   header .container {
      padding: 5px 0 !important;
   }
   header .container .logo {
      width: 180px;
   }
   header .container nav ul li {
      margin: 0;
   }
   header .container nav ul li a {
      padding: 4px 10px;
      font-size: 13px;
   }
   .home-banner {
      background-size: 170%;
      background-position: 30% 0;
   }
   .home-banner .home-banner-titles {
      flex-basis: 500px;
   }
   .home-banner .home-banner-titles h1 {
      font-size: 36px;
      line-height: 45px;
   }
   .home-banner .home-banner-titles h2 {
      font-size: 17px;
   }
   .home-banner .cdpap-form-container h1 {
      font-size: 32px;
   }
   .middle-content {
      padding: 4vh 0;
   }
   .middle-content .flex-2col {
      padding: 2vh 0;
      align-items: flex-start;
   }
   .middle-content .flex-2col > div figure.left,
   .middle-content .flex-2col > div figure.right {
      padding: 15px;
   }
   .middle-content .flex-2col > div figure.left::before,
   .middle-content .flex-2col > div figure.left::after,
   .middle-content .flex-2col > div figure.right::before,
   .middle-content .flex-2col > div figure.right::after {   
      width: 30px;
   	height: 30px;
   }
   .middle-content .flex-2col > div figure.left::before {
      border-top: 3px solid var(--lightGreen);
	   border-left: 3px solid var(--lightGreen);
   } 
   .middle-content .flex-2col > div figure.left::after {
      border-bottom: 3px solid var(--lightGreen);
	   border-right: 3px solid var(--lightGreen);
   }
   .middle-content .flex-2col > div figure.right::before {
      border-top: 3px solid var(--lightGreen);
	   border-right: 3px solid var(--lightGreen);
   }
   .middle-content .flex-2col > div figure.right::after {
      border-bottom: 3px solid var(--lightGreen);
	   border-left: 3px solid var(--lightGreen);
   }
   .service-areas .city-list {
      gap: 20px 30px;
      padding: 15px 10px 0;
   }
   footer {
      padding: 30px 0;
   }
   .pageTitle {
      height: 180px;
   }
   .innerPageTitle {
      margin-top: 81px;
   }
   .innerPage-services {
      grid-gap: 30px 50px;
   }
   .innerPage-our-car-givers .premium-care {
      grid-template-columns: 1fr;
      grid-gap: 30px;
      padding: 25px 0;
   }
   .innerPage-our-car-givers .premium-care > div figure::before,
   .innerPage-our-car-givers .premium-care > div figure::after {
      width: 30px;
   	height: 30px;
   }
   .innerPage-our-car-givers .premium-care > div figure::before {
      border-top: 3px solid var(--lightGreen);
      border-left: 3px solid var(--lightGreen);
   }
   .innerPage-our-car-givers .premium-care > div figure::after {
      border-bottom: 3px solid var(--lightGreen);
      border-right: 3px solid var(--lightGreen);
   }
   .innerPage-our-car-givers .premium-care ul {
      padding-top: 20px;
   }
   .innerPage-our-car-givers .premium-care ul li {
      font-size: 14px;
   }
   .innerPage-contact {
      grid-template-columns: 1fr;
      padding: 0 60px;
   }
   .innerPage-contact > div:first-child {
      display: none;
   }
   .innerPage-contact form {
      padding: 0;
   }
}

@media screen and (max-width: 640px) {

   form ul li {
      padding-bottom: 5px;
   }
   form ul li label {
      font-size: 4.2vw;
   }
   form ul li input, 
   form ul li textarea {
      padding: 5px 10px;
   }

   header .container .logo {
      width: 200px;
   }
   header .container a#hamburger-icon {
      display: block;
   }
   header .container #navigation {
      display: none;
      position: absolute;
      width: 100%;
      top: 88px;
      left: 0;
      z-index: 1;
      background: #fff;
   }
   header .container nav ul {
      padding: 15px 0;
      -webkit-box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.4);
      box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.4);
   }
   header .container nav ul li {
      display: block;
      text-align: center;
      padding: 15px 0;
   }
   header .container nav ul li a {
      padding: 4px 50px;
      font-size: 18px;
      color: var(--darkBlue) !important;
   }
   .home-banner {
      padding: 170px 0 100px;
      background-size: cover;
      background-position: 4% 0;
   }
   .home-banner .container {
      flex-direction: column;
      gap: 30px;
   }
   .home-banner .home-banner-titles {
      flex-basis: auto;
   }
   .home-banner .home-banner-titles h1 {
      font-size: 8vw;
	   line-height: 115%;
   }
   .home-banner .home-banner-titles h2 {
      font-size: 4.5vw;
   }
   .home-banner .cdpap-form-container h1 {
      font-size: 7.5vw;
   }

   footer,
   .middle-content {
      overflow-x: hidden !important;
   }
   .middle-content h2 {
      font-size: 5vw;
   }
   .pageTitle {
      height: auto;
      margin-top: 88px;
   }
   .innerPageTitle {
      height: 80px;
      margin-top: 0;
   }
   .innerPageTitle h1 {
      font-size: 30px;
      width: 90%;
   }
   .innerPage-services {
      grid-gap: 35px;
      grid-template-columns: 1fr;
      padding: 0 20px 30px;
   }
   
   footer {
      padding: 30px 0 10px;
   }
   footer p {
      padding: 0 20px 30px;
   }
   .innerPage-contact {
      padding: 0 15px 10px;
   }
   .innerPage-contact form ul {
      padding: 10px 0;
   }
   .innerPage-contact form ul li label {
      font-size: 16px;
   }
}

@media screen and (max-width: 440px) {
   .available {
      font-size: 4vw;
   }
   .available svg {
      width: 6vw;
      height: 6vw;
   }
   .middle-content {
      padding: 4vh 0 0;
   }
   .middle-content h1 {
      font-size: 9vw;
      padding: 0 0 50px;
   }
   .middle-content .container > p {
      padding: 0 20px 60px;
   }
   .middle-content .flex-2col {
      gap: 30px;
      flex-direction: column !important;
      padding: 0 20px 50px;
   }
   .middle-content .flex-2col > div figure.left,
   .middle-content .flex-2col > div figure.right {
      padding: 15px;
   }
   .middle-content .flex-2col > div figure.left::before {
      border-top: 3px solid var(--lightGreen);
      border-left: 3px solid var(--lightGreen);
   }
   .middle-content .flex-2col > div figure.left::after {
      border-bottom: 3px solid var(--lightGreen);
      border-right: 3px solid var(--lightGreen);
   }
   .middle-content .flex-2col > div figure.right::before {
      border-top: 3px solid var(--lightGreen);
      border-right: 3px solid var(--lightGreen);
   }
   .middle-content .flex-2col > div figure.right::after {
      border-bottom: 3px solid var(--lightGreen);
      border-left: 3px solid var(--lightGreen);
   }
   .middle-content .home {
      padding: 0 20px 15px;
   }
   .service-areas {
      padding: 40px 0;
   }
   .service-areas h1 {
      font-size: 9vw;
   }
   .service-areas .city-list {
      gap: 30px 0;
      padding: 15px 16vw 0;
   }
   .service-areas .city-list > div {
      width: 100%;
   }
   footer .copyright {
      padding: 30px;
   }
}
