@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
var,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
ul,
ol,
li {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-weight: 400;
    vertical-align: top;
    background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #000;
    padding: 0;
    margin: 0;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    overflow-x: hidden;
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

a {
    color: #000;
    text-decoration: none;
    padding: 0;
    outline: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

a:hover {
    color: #E5032C;
}

/**** TYPOGRAPHY START ****/

h1,
.h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 51px;
    margin-bottom: 22px;
    font-weight: 600;
    line-height: 1.22;
}

h2,
.h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 35px;
    margin-bottom: 4px;
    font-weight: 600;
    line-height: 1.2;
}

h3,
.h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
}

h4,
.h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
}

p {
    font-size: 20px;
    line-height: 1.5;
}

.title:last-child,
h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child,
p:last-child {
    margin-bottom: 0 !important;
}

.font-semibold{
    font-weight: 600;
}

.s-pt {
    padding-top: 60px;
}

.s-pb {
    padding-bottom: 60px;
}

.s-py {
    padding-top: 60px;
    padding-bottom: 60px;
}

.container {
    max-width: 1360px;
    width: 100%;
    margin: auto;
    margin-top: auto;
    padding-left: 50px;
    padding-right: 50px;
}

.container.md-container {
    max-width: 1120px;
}

.mx-510 {
    max-width: 510px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: flex;
    flex-flow: row wrap;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.txt-red {
    color: #E5032C;
}

.txt-blue {
    color: #0755A2;
}

.text-center {
    text-align: center;
}

.bg-sky {
    background: #F2F6FA;
}

.text-field {
    width: 100%;
    border: 0;
    border: 2px solid #E4E4E4;
    padding: 18.5px;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    color: #000;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-text-shadow: none;
    -moz-text-shadow: none;
    text-shadow: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.input-error {
    border-color: transparent;
    outline: none;
    -webkit-box-shadow: 0px 0px 1px 3px #E5032C;
    -moz-box-shadow: 0px 0px 1px 3px #E5032C;
    box-shadow: 0px 0px 1px 3px #E5032C;
}


select.text-field {
    padding: 17px 50px 17px 30px;
    color: #787E84;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: url(../images/down-arrow.svg) right 30px center no-repeat;
    background-size: 18px auto;
}

.text-field.active,
.text-field:focus,
.text-field:not(:placeholder-shown) {
    border-color: #0755A2;
    outline: none;
}

textarea,
textarea.text-field {
    resize: none;
    height: 200px;
    border-radius: 5px;
}

select,
button,
input {
    filter: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}



.btn {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    border: 0;
    background: #E5032C;
    line-height: 1;
    padding: 22px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.btn:hover {
    background-color: #0755A2;
}

/* header start here */

.site-wrapper {
    padding-top: 105px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    padding: 16px 0;
    border-top: 5px solid #0755A2;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0;
    transition: all 0.3s ease-in-out;
    z-index: 11;
}

.header.fixed {
    background-color: #ffffff;
    padding: 8px 0;
    border-bottom: 1px solid #DBE4ED;
}

.logo {
    max-width: 235px;
    position: relative;
    z-index: 12;
}

.hd-link {
    line-height: 24px;
    font-size: 16px;
    font-weight: 500;
}

.hd-link img {
    display: inline-block;
    vertical-align: top;
    margin-right: 8px;
}


nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0;
}

nav ul li {
    display: inline-block;
    padding: 0 20px;
    position: relative;
}

nav ul li:last-child {
    padding-right: 0;
}

nav ul li::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    height: 50%;
    width: 1px;
    background-color: #000;
}

nav ul li:last-child::after {
    display: none;
}

nav ul li a {
    display: block;
    font-size: 15px;
    transition: all 0.5s ease;
}

.menu-btn {
    width: 30px;
    height: 30px;
    position: relative;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    cursor: pointer;
    z-index: 8;
    display: none;
    margin: 0;
}

.menu-line {
    display: block;
    top: 50%;
    margin-top: -2px;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.menu-line,
.menu-line::before,
.menu-line::after {
    width: 30px;
    height: 3px;
    background-color: #000;
    position: absolute;
    left: 0;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.menu-line::before,
.menu-line::after {
    content: "";
    display: block;
}

.menu-line::before {
    top: -8px;
    transition: top 0.1s 0.34s ease-in,
        opacity 0.1s ease-in;
}

.menu-line::after {
    bottom: -8px;
    transition: bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.menu-btn.active .menu-line {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.menu-btn.active .menu-line::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}

.menu-btn.active .menu-line::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* banner css */
.banner-main {
    background: linear-gradient(to right, #ffffff, #EAF5FB);
    border-radius: 5px;
}

.banner-left {
    width: 55%;
    padding: 50px 0;
    padding-right: 50px;
    margin-top: auto;
}
.banner-left p{
    line-height: 1.5;
}
.banner-right {
    width: 45%;
    margin-top: auto;
}

.banner-right img {
    border-radius: 5px;
}


.form-sec {
    margin-top: 18px;
}

.form-content {
    border-radius: 5px;
    border: 1px solid #E4E4E4;
    padding: 34px;
    background-color: #fff;
}

.form-content .content {
    width: 45%;
    padding-left: 14px;
    border-left: 7px solid #0755A2;
    padding-right: 18px;
}

.form-content h2 {
    font-size: 30px;
}

.form-content .form-group {
    width: 55%;
}

.form-group form ul {
    list-style: none;
    margin: 0 -10px;
}

.form-group form ul li {
    width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
}

.form-group form ul li .btn {
    width: 100%;
}

.title p a {
    text-decoration: underline;
}

.hide-show {
    display: none;
}

.customer-requests {
    margin: 0 -22px;
}

.customer-requests {
    margin-top: 34px;
}

.customer-requests img {
    border-radius: 5px;
}

.customer-requests .box {
    width: calc(25% - 44px);
    margin-left: 22px;
    margin-right: 22px;
}

.customer-requests .map-img {
    width: calc(50% - 44px);
}

.customer-requests .map-img {
    height: 100%;
}

.customer-requests .box span {
    font-size: 17px;
    display: block;
    margin-top: 24px;
    text-align: center;
    font-weight: 500;
}

.why-Pros-sec .container {
    position: relative;
}

.why-Pros-blocks {
    position: relative;
    padding: 32px;
    padding-left: 284px;
    border: 1px solid #E4E4E4;
    border-radius: 5px;
}

.why-Pros-blocks .title {
    margin-bottom: 24px;
}

.engineer {
    position: absolute;
    left: 80px;
    top: -18px;
    max-width: 222px;
    z-index: 2;
}

.wp-content {
    display: flex;

}

.wp-content .content {
    width: 50%;
    list-style: none;
}

.wp-content .content:first-child {
    padding-right: 20px;
}

.wp-content .content li {
    position: relative;
    font-size: 20px;
    padding-left: 16px;
    line-height: 1.7;
}

.wp-content .content li::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background-color: #E5032C;
}

.why-content-blocks {
    margin-top: 45px;
    margin-left: -20px;
    margin-right: -20px;
}

.why-content-blocks .wc-block {
    width: calc(25% - 40px);
    padding: 30px 24px 48px 24px;
    align-items: center;
    text-align: center;
    flex-direction: column;
    background-color: #fff;
    margin: 0 20px 40px 20px;
    border-radius: 5px;
    border: 1px solid #E6ECF1;
}

.why-content-blocks .wc-block img {
    margin: 0 auto;
    margin-bottom: 26px;
}

.why-content-blocks .wc-block h3 {
    font-weight: 600;
    margin-bottom: 12px;
}

.why-content-blocks .wc-block p {
    font-size: 17px;
}

.w-50 {
    width: 50%;
}

.about-sec .title {
    margin-bottom: 34px;
}

.about-sec .about-img {
    width: 40%;
}

.about-sec .about-content {
    width: 60%;
    padding-left: 68px;
}

.about-sec .about-content p {
    line-height: 1.5;
}

/* accordian */
.accordian-item {
    border: 1px solid #DBE4ED;
    margin-bottom: 16px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.accordian-item:last-child {
    margin-bottom: 0;
}

.accordian-item .accordian-title {
    margin: 0;
    font-weight: 500;
    padding: 22px 62px 22px 36px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.accordian-item.active .accordian-title {
    padding-bottom: 16px;
}

.accordian-item .accordian-title:hover {
    color: #0755A2;
}

.accordian-item .accordian-title::before,
.accordian-item .accordian-title::after {
    position: absolute;
    right: 27px;
    content: "";
    width: 20px;
    height: 3px;
    background-color: #0755A2;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.accordian-item .accordian-title::before {
    top: 50%;
}

.accordian-item.active .accordian-title::before {
    background-color: #E5032C;
}

.accordian-item .accordian-title::after {
    top: 50%;
    transform: rotate(90deg);
}

.accordian-item.active .accordian-title::after {
    opacity: 0;
}

.accordian-item .content {
    display: none;
    padding: 18px 36px 18px 36px;
    border-top: 1px solid #DBE4ED;
}

.accordian-item .content p {
    font-size: 15px;
    line-height: 1.6;
}

/* footer */
footer {
    padding: 40px 0;
    margin-top: auto;
}

.footer-links {
    list-style: none;
    font-size: 0;
}

.footer-links li {
    display: inline-block;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.7;
}

.footer-links li a {
    font-size: 15px;
}

.footer-links li::after {
    content: "|";
    font-size: 16px;
    margin: 0 8px;
}

.footer-links li:last-child::after {
    display: none;
}

.copy-right {
    font-size: 15px;
}

.terms h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 30px;
}

.terms h3:first-child {
    margin-top: 0;
}

.terms p {
    font-size: 16px;
    margin-bottom: 16px;
}

.terms ul {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    padding-left: 20px;
    margin-bottom: 30px;
}

.terms a {
    color: #E5032C;
}

.terms a:hover {
    color: #000;
}

.terms ul li {
    list-style: disc;
    font-size: 17px;
    margin-bottom: 8px;
}

.contact-section form {
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contact-section form .text-field {
    text-align: left;
}

.contact-section p {
    font-size: 17px;
}

/* ccpa */
section.ccpa h2 {
    margin-bottom: 25px;
}

section.ccpa .form {
    position: relative;
    width: 100%;
}

section.ccpa .form>p {
    font-size: 16px;
    margin-bottom: 16px;
}

section.ccpa .form select {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
}


section.ccpa .form select option {
    font-size: 16px;
    max-width: 100%;
}

section.ccpa .form>label {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 20px 1fr;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: center;
    margin-bottom: 5px;
}

section.ccpa .form>label input[type="checkbox"] {
    display: block;
    -webkit-appearance: revert;
    -moz-appearance: revert;
    appearance: revert;
    position: relative;
}

section.ccpa .form>label input[type="checkbox"]::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #E4E4E4;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.1s ease-in;
    transition: 0.1s ease-in;
}

section.ccpa .form>label p {
    font-size: 16px;
}

section.ccpa .form>label:last-child {
    margin-bottom: 30px;
}

section.ccpa .form p.last {
    margin-top: 30px;
}

section.ccpa .form .inputs {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
    margin-left: -20px;
    margin-right: -20px;
}

section.ccpa .form .inputs input {
    position: relative;
    text-align: left;
    width: calc(50% - 40px);
    margin: 0 20px 20px 20px;
}

section.ccpa .form .inputs input.address {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 800px;
    flex: 1 1 800px;
    max-width: 100%;
}

section.ccpa .form button {
    width: 100%;
    margin-top: 20px;
}

section.ccpa .form button:hover {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
}

/* partner */
.installers h2 {
    margin-bottom: 20px;
}

.installers .content {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: auto;
}

section.installers p {
    font-size: 16px;
    margin-bottom: 16px;
}

section.installers h3 {
    margin-top: 30px;
    font-weight: 600;
    margin-bottom: 12px;
}

section.installers>ul {
    padding: revert;
    margin-bottom: 20px;
}

section.installers>ul li {
    list-style: disc;
    font-size: 16px;
    line-height: 30px;
}

section.installers .locations {
    width: 100%;
    padding: 30px;
    margin-bottom: 20px;
    background: #f2f6fa;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

section.installers .locations:last-child {
    margin-bottom: 0;
}

section.installers .locations h2 {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0;
    border-bottom: 1px solid #DBE4ED;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

section.installers .locations ul {
    display: -ms-grid;
    display: grid;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 50px;
    column-gap: 50px;
    row-gap: 10px;
    -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin: 0;
}

section.installers .locations ul li {
    list-style: none;
    font-size: 14px;
    max-width: 100%;
    padding: 0px;
    margin: 0;
}

section.installers .locations ul li a {
    color: #E5032C;
}

section.installers .locations ul li::before {
    display: none;
}

.installers-list {
    padding-left: 20px;
    margin-bottom: 16px;
}

.installers-list li {
    list-style: disc;
    font-size: 17px;
}


/* step-form */
.steps-wrapper {
    padding-top: 48px;
}

.slide-content .form-list {
    margin: 0 -8px;
    font-size: 0;
    list-style: none;
}

.slide-content .form-list li {
    position: relative;
    width: calc(50% - 16px);
    vertical-align: middle;
    margin: 8px;
    list-style: none;
    display: inline-block;
    font-size: 16px;
    vertical-align: top;
}

.slide-content .form-list li.full {
    width: calc(100% - 16px);
}

.slide-content {
    padding: 32px;
    border: 1px solid #E4E4E4;
    border-radius: 5px;
}

.step-item .title {
    margin-bottom: 16px;
}

.step-item h2 {
    font-size: 28px;
    margin-bottom: 4px;
}

.step-item .title p {
    font-weight: 500;
    font-size: 18px;
}

.step-item:first-child .title p {
    font-size: 20px;
}

.step-item .btn {
    width: 100%;
}

#description {
    text-align: left;
}

.address-info p {
    font-size: 12px;
}

.note label a {
    color: #E5032C;
    text-decoration: none;
}

.error-text {
    font-size: 12px;
    color: red;
}
.page-title h1{
    font-size: 35px;
    margin-bottom: 5px;
}

@media screen and (max-width:1199px) {
    .why-content-blocks .wc-block {
        width: calc(25% - 20px);
        margin: 0 10px 40px 10px;
        padding: 30px 20px 30px 22px;
    }

    .why-content-blocks {
        margin-left: -10px;
        margin-right: -10px;
        margin-top: 24px;
    }

    .why-content-blocks .wc-block h3 br {
        display: none;
    }
}

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

    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    h1 {
        font-size: 40px;
        margin-bottom: 16px;
    }

    p,
    .banner-left p {
        font-size: 18px;
        line-height: 1.5;
    }

    .header {
        padding: 10px 0 0 0;
    }

    .menu-btn {
        display: block;
    }

    .header .header-right {
        display: none;
        position: fixed;
        top: 0px;
        left: 0;
        width: 100%;
        height: 100vh;
        padding: 20px;
        background-color: white;
        padding-top: 90px;
    }

    .banner-right {
        display: none;
    }

    .banner-left {
        width: 100%;
        padding: 30px 0 0 0;
    }

    .banner-left h1 {
        text-align: center;
    }

    h1 br,
    .banner-left p {
        display: none;
    }

    .form-sec {
        background-image: url(../images/banner-form-img.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        margin-top: 0;
        padding: 30px 0;
    }

    .banner-main {
        background: inherit;
    }

    .site-wrapper {
        padding-top: 93px;
    }

    .form-content .content {
        width: 100%;
        margin-bottom: 20px;
        padding: 0;
        border: 0;
        text-align: center;
    }

    .form-content .form-group {
        width: 100%;

    }

    .engineer {
        position: unset;
        margin: auto;
    }

    .hide-show {
        display: block;
        margin-bottom: 24px;
    }

    .why-Pros-blocks {
        padding: 22px 16px;
    }

    .why-Pros-blocks .title {
        display: none;
    }

    .why-content-blocks .wc-block {
        width: calc(50% - 20px);
        margin: 0 10px 20px 10px;
    }

    .about-sec .about-img {
        width: 100%;
        margin-bottom: 20px;
    }

    .about-sec .about-content {
        width: 100%;
        padding-left: 0;
    }

    nav ul li {
        display: block;
    }

    nav ul li a {
        padding: 10px 0;
        border-bottom: 1px solid #DBE4ED;
    }

    nav ul li:first-child a {
        border-top: 1px solid #DBE4ED;
    }

    nav ul li::after {
        display: none;
    }
}

@media screen and (max-width:767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .s-pt {
        padding-top: 40px;
    }

    .s-pb {
        padding-bottom: 40px;
    }

    .s-py {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    h1,
    h2 {
        font-size: 27px;
    }

    p {
        font-size: 16px;
        line-height: 1.2;
    }

    .form-group form ul li {
        width: 100%;
        margin-bottom: 16px;
    }

    .form-group form ul li:last-child {
        margin-bottom: 0;
    }

    .form-content {
        padding: 32px;
    }

    .form-content h2 {
        font-size: 23px;
        margin-bottom: 8px;
        margin-left: -16px;
        margin-right: -16px;
    }

    .customer-requests {
        margin: 0 -5px;
        margin-top: 20px;
    }

    .customer-requests .box {
        width: calc(50% - 10px);
        margin-left: 5px;
        margin-right: 5px;
    }

    .customer-requests .map-img {
        width: 100%;
        margin-bottom: 10px;
    }

    .wp-content .content {
        width: 100%;
    }

    .wp-content .content li {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .wp-content .content:last-child li:last-child {
        margin-bottom: 0;
    }

    .faq-sec {
        background: inherit;
        padding-top: 0;
        padding-bottom: 0;
    }

    .accordian-item .accordian-title {
        padding: 14px 62px 14px 22px;
        font-size: 16px;
    }

    .accordian-item .content {
        padding: 16px;
    }

    footer {
        padding: 30px 0;
    }

    .terms ul {
        margin-bottom: 30px;
    }

    .terms h3 {
        margin-top: 30px;
    }

    section.ccpa h2 {
        margin-bottom: 20px;
    }

    section.ccpa .form .inputs input {
        width: calc(50% - 20px);
        margin: 0 10px 20px 10px;
    }

    section.ccpa .form .inputs {
        margin-left: -10px;
        margin-right: -10px;
    }

    .hd-link {
        font-size: 0;
    }
    .hd-link img{
        margin-right: 0;
    }
    .mx-510{
        max-width: inherit;
    }
    .slide-content{
        padding: 20px;
    }
    .steps-wrapper{
        padding: 28px 0;
    }

}

@media screen and (max-width:540px) {
    .why-content-blocks .wc-block {
        width: 100%;
        margin: 0 10px 20px 10px;
    }

    section.ccpa .form .inputs input {
        width: 100%;
    }

}


/* step animation */
.header .step-loading {
    display: none;
    position: absolute;
    left: 50%;
    top: 16px;
    width: 70px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}

.step-loading .loading {
    position: relative;
    transform: inherit;
}

.loading {
    left: 50%;
    top: 50%;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    text-align: left;
    text-transform: capitalize;
    position: absolute;
    overflow: hidden;
    transform: translate(-50%, -60%);
}

.loading:before {
    color: #aaa;
    content: attr(data-loading-text);
}

.loading:after {
    top: 0;
    left: 0;
    width: 0;
    opacity: 1;
    color: #3F618F;
    overflow: hidden;
    position: absolute;
    content: attr(data-loading-text);
    -webkit-animation: loading 3s infinite;
    animation: loading 3s infinite;
}


@-webkit-keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/**
 * ==============================================
 * Dot Typing
 * ==============================================
 */
.wave {
    font-size: 0;
    line-height: normal;
    position: relative;
    margin-bottom: 5px;
    text-align: center;
}

.wave .dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    margin: 0 3px;
    background: #68BA39;
    animation: wave 1.3s linear infinite;
}

.wave .dot:nth-child(2) {
    animation-delay: -1.1s;
}

.wave .dot:nth-child(3) {
    animation-delay: -0.9s;
}

@keyframes wave {

    0%,
    60%,
    100% {
        transform: initial;
    }

    30% {
        transform: translateY(-10px);
    }
}

/* form smooth slider last dots animation */
#sphere1 {
    -webkit-animation: scale-1 2s 0s infinite;
}

.sphere {
    height: 20px;
    width: 20px;
    border-radius: 50% !important;
    margin: 10px 5px;
    display: inline-block;
    position: relative;
    -webkit-transform: scale(.3);
    z-index: -1;
    background: #002E6B;
}

#sphere1 {
    -webkit-animation: scale-1 2s 0s infinite;
}

#sphere2 {
    -webkit-animation: scale-2 2s .2s infinite;
}

#sphere3 {
    -webkit-animation: scale-3 2s .4s infinite;
}

#sphere4 {
    -webkit-animation: scale-4 2s .6s infinite;
}

@-webkit-keyframes scale-1 {
    0% {
        -webkit-transform: scale(.3);
    }

    35%,
    65% {
        -webkit-transform: scale(1);
    }

    65%,
    100% {
        -webkit-transform: scale(.3);
    }
}

@-webkit-keyframes scale-2 {
    0% {
        -webkit-transform: scale(.3);
    }

    35%,
    65% {
        -webkit-transform: scale(1);
    }

    65%,
    100% {
        -webkit-transform: scale(.3);
    }
}

@-webkit-keyframes scale-3 {
    0% {
        -webkit-transform: scale(.3);
    }

    35%,
    65% {
        -webkit-transform: scale(1);
    }

    65%,
    100% {
        -webkit-transform: scale(.3);
    }
}

@-webkit-keyframes scale-4 {
    0% {
        -webkit-transform: scale(.3);
    }

    35%,
    65% {
        -webkit-transform: scale(1);
    }

    65%,
    100% {
        -webkit-transform: scale(.3);
    }
}

/* form smooth slider last dots animation */