

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');
:root {
    --dark_css_color: #000;
    --dark_css_color_bg: #000;
    --light_css_color: #fff;
    --light_css_color_bg: #fff;
    --primary_css_color: #FF6A45;
    --error_color: #F52B2B;
    --primary_css_hover: #EB5935;
    --primary_css_active: #E04B26;
    --footer_bg: #394075;
}

/* reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
*, *:after, *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}
a::-moz-focus-inner, button::-moz-focus-inner {
    border: 0;
}
select:-moz-focusring, select::-moz-focus-inner {
    color: transparent !important;
    text-shadow: 0 0 0 var(--dark_css_color) !important;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 9px;
}
input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select::-ms-expand {
    display: none;
}
select::-ms-value {
    background: none;
    color: var(--dark_css_color);
}
textarea {
    overflow: auto;
}
input::-ms-clear {
    display: none;
}
/* end reset */

html, body {
    width: 100%;
}

body {
    border: none;
    font: 16px 'Quicksand';
    font-weight: 400;
    overflow-x: hidden;
}

input, textarea, button, select {
    font-family: "Quicksand", sans-serif;
}

button {
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    display: block;
    color: var(--dark_css_color);
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    text-transform: none;
}

.h1 {
    font-size: 54px;
    line-height: 68px;
}

.h2 {
    font-size: 36px;
    line-height: 42px;
}

.h3 {
    font-size: 32px;
    line-height: 38px;
}

.h4 {
    font-size: 28px;
    line-height: 36px;
}

.h5 {
    font-weight: 400;
    font-size: 22px;
    line-height: 24px;
}

.h6 {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
}

strong {
    font-weight: 600;
}

a, button {
    text-decoration: none;
    display: inline-block;
    transition: 0.4s;
}

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

li {
    font-family: "Quicksand", sans-serif;
}

img {
    max-width: 100%;
    border: none;
}

.wrapper {
    max-width: 1050px;
    height: 100%;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
}

.wrapper.max {
    max-width: 1310px;
}

.wrapper.mid {
    max-width: 1210px;
}

.link {
    color: var(--primary_css_color);
}

.link:hover {
    text-decoration: underline;
}

/* Navigate */
.nav-form {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 98px;
    background: var(--light_css_color_bg);
    z-index: 2;
    -webkit-box-shadow: 0 10px 30px 0 rgba(77,85,89,0.1);
    -moz-box-shadow: 0 10px 30px 0 rgba(77,85,89,0.1);
    box-shadow: 0 10px 30px 0 rgba(77,85,89,0.1);
}
.navigate {
    position: absolute;
    left: 0;
    width: 100%;
    height: 98px;
    background: var(--light_css_color_bg);
    z-index: 2;
}
.navigate.nav-terms {
    top: 0;
}
.navigate>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigate .nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navigate .nav ul li {
    margin: 0 0 0 44px;
}

.navigate .nav ul li a {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark_css_color);
}

.navigate .nav ul li a.item:hover {
    color: var(--primary_css_color);
}
.navigate .nav ul li a.active {
    text-decoration: underline;
}
.navigate .nav ul li a.get-btn {
    width: 186px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    color: #313546;
    border: 1px solid #313546;
    border-radius: 8px;
    background: var(--light_css_color_bg);
}
.navigate .nav ul li a.get-btn:hover {
    color: var(--light_css_color);
    background: var(--primary_css_color);
    border-color: var(--primary_css_color);
}

/* hum */

.hum {
    display: none;
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid var(--dark_css_color);
    border-radius: 50%;
    background: var(--light_css_color_bg);
    cursor: pointer;
}
.hum span {
    display: block;
    position: absolute;
    top: 50%;
    left: calc(50% - 8px);
    width: 16px;
    height: 1px;
    background: var(--dark_css_color_bg);
    transition: 0.3s;
}
.hum span:nth-child(1) {
    top: calc(50% - 5px);
}
.hum span:nth-child(3) {
    top: calc(50% + 5px);
}
.hum.get-close span:nth-child(2) {
    display: none;
}
.hum.get-close span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}
.hum.get-close span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
}

/* Home page */

.header-home {
    position: relative;
    text-align: center;
    padding: 130px 0 0;
    background: url(../img/bg-head-home.svg) no-repeat center top;
    background-size: 110%;
    overflow: hidden;
}
.header-home .box-cloud {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.header-home .box-cloud .icon-cloud-left,
.header-home .box-cloud .icon-cloud-right {
    position: absolute;
    top: 55px;
}
.header-home .box-cloud .icon-cloud-left {
    left: -90px;
}
.header-home .box-cloud .icon-cloud-right {
    right: -95px;
}
.header-home .left-hand, .header-home .right-hand {
    position: absolute;
}

.header-home .left-hand {
    top: 200px;
    left: 0;
}

.header-home .right-hand {
    top: 85px;
    right: 0;
}

.header-home h1 {
    margin: 70px 0 20px;
}

.preform {
    width: 330px;
    height: auto;
    margin: 50px auto 0;
}

.preform .field-box {
    position: relative;
    width: 100%;
    height: 82px;
    margin: 0 0 25px;
}

.preform .field-box .field-text {
    width: 100%;
    height: 100%;
    background: var(--light_css_color_bg);
    border: 1px solid #737373;
    border-radius: 59px;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: var(--dark_css_color);
    padding: 0 30px;
}

.preform .field-box .field-text.input-error {
    border-color: var(--error_color);
}

.preform .field-box .zip-error,
.preform .field-box .zip-empty {
    width: 80%;
    height: 30px;
    position: absolute;
    bottom: -6px;
    left: calc(10%);
    font-size: 10px;
    line-height: 10px;
    padding: 0 10px;
    color: var(--error_color);
}

.preform .field-box .zip-empty {
    display: none;
}

.preform button {
    width: 100%;
    height: 82px;
    background: var(--primary_css_color);
    color: #FFF8EE;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    border-radius: 59px;
    border: none;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.preform button:disabled {
    background: #737373;
    cursor: auto;
    pointer-events: none;
}

.preform button:hover {
    background: var(--primary_css_hover);
}
.preform button:active,
.preform button:focus {
    background: var(--primary_css_active);
}

/* Works Section */

.works-section {
    padding: 265px 0 115px;
}

.works-section .list-works {
    margin: 50px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    text-align: left;
}

.works-section .list-works li {
    width: 32%;
    background: var(--light_css_color_bg);
    box-shadow: 0 16px 25px #EEF6FE;
    border-radius: 35px;
    padding: 55px 25px 70px 45px;
}

.works-section .list-works li .title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 20px;
}

.works-section .list-works li .title .icon {
    min-width: 50px;
    margin: 0 10px 0 0;
}

.works-section .list-works li h5 {
    font-weight: 600;
    color: var(--dark_css_color);
}

.works-section .list-works li p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--dark_css_color);
}

/* Compare Section */

.compare-section {
    position: relative;
    padding: 0 0 50px;
    text-align: center;
}

.compare-section .bg-compare-left,
.compare-section .bg-compare-right {
    position: absolute;
}

.compare-section .bg-compare-left {
    top: 40%;
    left: 0;
}

.compare-section .bg-compare-right {
    bottom: 50%;
    right: 0;
}

.compare-section .list-compare {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: wrap;
    margin: 80px 0 0;
}

.compare-section .list-compare li {
    margin: 0 0 60px;
    width: 33%;
    max-width: 246px;
}

.compare-section .list-compare li .icon {
    width: 171px;
    height: 171px;
    margin: 0 auto;
}

.compare-section .list-compare li h5 {
    font-weight: 600;
    margin: 24px 0 10px;
    color: var(--dark_css_color);
}

/* Time Section */

.time-section {
    padding: 200px 0 270px;
    background: url(../img/bg-time.svg) no-repeat center;
    background-size: contain;
}

.time-section h2 {
    margin: 0 0 20px;
}

.time-section .flex-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.time-section .flex-box .col-left {
    position: relative;
    width: 40%;
}

.time-section .flex-box .col-left img {
    min-width: 630px;
    position: absolute;
    right: 40px;
}

.time-section .flex-box .col-right {
    width: 40%;
    padding: 20px 0 0 0;
}

.time-section .preform {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
    margin: 40px 0 0;
}

.time-section .preform .field-box {
    height: 100%;
    margin: 0 20px 0 0;
}

.time-section .preform button {
    width: 100%;
    height: 100%;
    font-size: 15px;
    font-weight: 700;
    color: var(--light_css_color);
    line-height: 19px;
    border-radius: 59px;
}

/* Faq Section */

.faq-section {
    padding: 100px 0;
}
.faq-section h2, .faq-section h3 {
    text-align: center;
}
.faq-section h3 {
    margin: 0 0 20px;
}

/* accordeon */

.accordeon {
    margin: 75px 0 0;
}

.accordeon .box-acc {
    background: var(--light_css_color_bg);
    box-shadow: 0 10px 30px rgba(77, 85, 89, 0.1);
    border-radius: 15px;
    margin: 0 0 28px;
}

.accordeon .box-acc .ac-head {
    position: relative;
    padding: 33px 80px 33px 25px;
    cursor: pointer;
}

.accordeon .box-acc .ac-head:after {
    content: '';
    display: block;
    width: 24px;
    height: 20px;
    background: url(../img/icon-arrow-faq.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: calc(50% - 10px);
    right: 40px;
    transition: 0.4s;
}

.accordeon .box-acc .ac-head.in:after {
    transform: rotate(180deg);
}

.accordeon .box-acc .ac-body {
    display: none;
    padding: 25px 35px 10px 25px;
}

.accordeon h4 {
    font-weight: 500;
    font-size: 22px;
    line-height: 36px;
    color: var(--dark_css_color);
}

.accordeon p,
.accordeon ul {
    margin: 0 0 15px;
}

.accordeon ul li {
    position: relative;
    padding: 0 0 0 15px;
    margin: 0 0 5px;
}

.accordeon ul li:before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--dark_css_color_bg);
    position: absolute;
    top: 8px;
    left: 0;
}

/* Pre Footer */

.prefooter-section {
    padding: 85px 0;
    text-align: center;
    background: url(../img/bg-prefooter.svg) no-repeat center bottom;
    background-size: cover;
}

.prefooter-section .preform {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 550px;
    height: 80px;
    margin: 35px auto 0;
}

.prefooter-section .preform .field-box {
    height: 100%;
    margin: 0 20px 0 0;
}

.prefooter-section .preform button {
    height: 100%;
}

.prefooter-section h2 {
    margin: 30px 0 20px;
}

/* Footer */

footer {
    background: var(--footer_bg);
    padding: 26px 0;
}

footer .flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .copyright,
footer a {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    color: var(--light_css_color);
    margin: 0 30px 0 0;
}

footer a:hover, footer a.active {
    color: var(--primary_css_color);
}

/* =================================
=========== PAGE CONTACT ===========
==================================== */

.page-contact {
    padding: 120px 0 300px;
    background: url(../img/bg-contact.svg) no-repeat top center;
    background-size: 1920px 1137px;
}

.form-section .header {
    text-align: center;
}

.form-section .list-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 80px 0 50px;
}

.form-section .list-contact h1 {
    margin: 0 0 10px;
}

.form-section .list-contact li.head-list {
    width: 30%;
    display: block;
}
.form-section .list-contact li.head-list .h6 {
    font-weight: 500;
}
.form-section .list-contact li {
    width: 35%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.form-section .list-contact li:nth-child(2) {
    width: 30%;
    margin: 0 45px;
}

.form-section .list-contact li .icon {
    width: 115px;
    min-width: 115px;
    height: 115px;
    margin: 0 10px 0 0;
}

.form-section .list-contact li .text a,
.form-section .list-contact li .text strong {
    display: inline-block;
    font-size: 18px;
    line-height: 23px;
    font-weight: 600;
    color: var(--dark_css_color);
}

.form-section .list-contact li .text a:hover {
    color: var(--primary_css_color);
}

.form-section .feed_contact .box-flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.form-section .feed_contact .box-flex .col-left,
.form-section .feed_contact .box-flex .col-right {
    width: 48%;
}

.form-section .feed_contact .box-flex .box-field {
    position: relative;
    width: 100%;
    height: 70px;
    margin: 0 0 15px;
}

.form-section .feed_contact .box-flex .field-text {
    position: relative;
    width: 100%;
    height: 155px;
    margin: 0 0 15px;
}

.form-section .feed_contact .box-flex .box-field input,
.form-section .feed_contact .box-flex .field-text textarea {
    width: 100%;
    height: 100%;
    border: 1px solid #C9C9C9;
    border-radius: 59px;
    font-size: 20px;
    padding: 0 40px;
}

.form-section .feed_contact .box-flex .box-field input.error,
.form-section .feed_contact .box-flex .field-text textarea.error {
    border-color: var(--error_color);
}

.form-section .feed_contact .box-flex .box-field input.valid,
.form-section .feed_contact .box-flex .field-text textarea.valid {
    border-color: #009C82;
}

.form-section .feed_contact .box-flex .field-text textarea {
    border-radius: 37px;
    resize: none;
    padding: 20px 40px;
}

.form-section .feed_contact .box-flex .box-field input+label,
.form-section .feed_contact .box-flex .field-text textarea+label {
    display: none;
    position: absolute;
    bottom: 8px;
    left: 40px;
    font-weight: 400;
    font-size: 12px;
    line-height: 10px;
    color: var(--error_color);
}

.form-section .feed_contact .box-flex .box-field input.error+label,
.form-section .feed_contact .box-flex .field-text textarea.error+label {
    display: block;
}

.form-section .feed_contact .placeholder {
    position: absolute;
    top: 22px;
    left: 40px;
    font-size: 20px;
    color: #38342E;
    pointer-events: none;
    transition: 0.2s;
}

.form-section .feed_contact .placeholder.prints {
    top: 8px;
    font-size: 12px;
}

.form-section .feed_contact .box-btn {
    text-align: center;
    margin: 35px 0 0;
}

.form-section .feed_contact .box-btn button {
    width: 207px;
    height: 70px;
    background: var(--primary_css_color);
    border-radius: 69px;
    border: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--light_css_color);
}

.form-section .feed_contact .box-btn button:hover {
    background: var(--primary_css_hover);
}

.form-section .feed_contact .box-btn button:active,
.form-section .feed_contact .box-btn button:focus {
    background: var(--primary_css_active);
}

/* Contact Thankyou */

.form-section .contact_thankyou {
    text-align: center;
    padding: 130px 0;
}

.form-section .contact_thankyou .h4 {
    margin: 20px 0 10px;
}

.form-section .contact_thankyou .h5 {
    font-size: 22px;
    line-height: 36px;
    font-weight: 500;
}

/* Terms Pages */

.header-terms {
    padding: 100px 0 200px;
    text-align: center;
    background: url(../img/bg-terms.svg) no-repeat center top;
    background-size: 1400px 370px;
}

.header-terms h1 {
    margin: 70px 0 0;
}

.terms-section {
    position: relative;
}

.terms-section .img-left,
.terms-section .img-right {
    position: absolute;
}

.terms-section .img-left {
    bottom: 5%;
    left: 0;
}
.terms-section .img-right {
    top: 5%;
    right: 0;
}

.terms-section h1 {
    display: none;
}

.terms-section p {
    margin: 0 0 20px;
}

.terms-section a {
    color: var(--primary_css_color);
}

.terms-section a:hover {
    text-decoration: underline;
}

/* Header Form */

.header-form {
    text-align: center;
    padding: 20px 0;
    background: var(--light_css_color_bg);
    box-shadow: 0 10px 30px rgba(77, 85, 89, 0.1);
}

.header-form a {
    width: 107px;
}
/* Exit offer page */

.om-waiting-page {
    position: relative;
    padding: 24px;
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    box-sizing: border-box;
}

.om-waiting-page__notice {
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 24px;
}

.om-waiting-page__cta-text {
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 30px;
}

.om-waiting-page__content-image {
    display: block;
    margin: 0 auto;
}

.om-waiting-page__show-animation {
    animation: showUpOpacity 2s ease-in;
}

#omRejectAnimation {
    padding-top: 160px;
}

#omRejectAnimation .om-waiting-page__link {
    margin-top: 52px;
}

@keyframes showUpOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.reject-insurance{
    padding-top: 158px;
}
.reject-insurance__wrapper, .success-insurance__wrapper{
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
    font-family: "Quicksand", sans-serif;
}

.reject-insurance__title{
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
    color: var(--footer_bg);
    max-width: 850px;
    width: 100%;
    display: inline-block;
    margin: 0 auto 46px;
}


.success-insurance{
    padding-top: 126px;
}

.success-insurance__sun-img{
    margin-bottom: 33px;
}

.success-insurance__title{
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
    margin-bottom: 35px;
}


.success-insurance__description{
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
}

/* Why Mysunsaver page */

.header-why {
    position: relative;
    text-align: center;
    padding: 130px 0 330px;
    background: url(../img/bg-head-why.svg) no-repeat center top;
    background-size: 110%;
    overflow: hidden;
}
.header-why .h1 {
    margin: 50px 0;
}
.header-why .list-why {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.header-why .list-why li p {
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    margin: 20px 0 0;
}

.header-why .get-btn {
    width: 100%;
    max-width: 400px;
    height: 82px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary_css_color);
    color: #FFF8EE;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    border-radius: 59px;
    border: none;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    margin: 60px auto 0;
}

.header-why .get-btn:hover {
    background: var(--primary_css_hover);
}

.energy-section {
    position: relative;
}
.energy-section .bg-energy-left {
    position: absolute;
    bottom: -70%;
    left: -5%;
}
.energy-section .bg-energy-right {
    position: absolute;
    top: -40%;
    right: 0;
}
.energy-section .list-energy {
    margin: 50px 0 0;
}
.energy-section .list-energy li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 20px;
}
.energy-section .list-energy li .icon {
    min-width: 51px;
    margin: 0 20px 0 0;
}
.energy-section .list-energy li p {
    font-size: 24px;
    line-height: 36px;
}

.renewable-rise-section {
    margin: 70px 0 0;
    text-align: center;
    background: url(../img/bg-renewable-rise.svg) no-repeat bottom center;
    background-size: 1340px 685px;
    padding: 50px 0 160px;
}
.renewable-rise-section h2.h1 {
    margin: 50px 0 55px;
}
.renewable-rise-section .list-rise {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.renewable-rise-section .list-rise li {
    width: 30%;
}
.renewable-rise-section .list-rise li .h1 {
    color: #009C82;
    margin: 0 0 10px;
}
.renewable-rise-section .list-rise li p {
    font-size: 18px;
    line-height: 26px;
}

.renewable-home-section {
    background:
            url(../img/bg-renewable-home-left.svg) no-repeat bottom left,
            url(../img/bg-renewable-home-right.svg) no-repeat bottom right;
    background-color: #FFF8EE;
    margin: 40px 0 0;
    padding: 137px 0;
}
.renewable-home-section .flex-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.renewable-home-section .flex-box .col-left {
    width: 100%;
}
.renewable-home-section .flex-box .col-right {
    min-width: 360px;
    margin: 0 0 0 45px;
}
.renewable-home-section .list-renewable-home {
    margin: 30px 0;
}
.renewable-home-section .list-renewable-home li {
    position: relative;
    font-size: 22px;
    line-height: 36px;
    padding: 0 0 0 25px;
}
.renewable-home-section .list-renewable-home li:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: var(--dark_css_color_bg);
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 2px);
    left: 0;
}
.renewable-home-section .preform {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 850px;
    height: auto;
    margin: 50px auto 0;
}
.renewable-home-section .preform .field-box {
    margin: 0 40px 0 0;
}
.renewable-home-section .preform .field-box .field-text {
    border-color: #C9C9C9;
    text-align: left;
}

.ready-sun-section {
    text-align: center;
    margin: 100px 0 80px;
}
.ready-sun-section .h1 {
    margin: 40px auto 30px;
}
.ready-sun-section .h3 {
    margin: 0 auto;
    max-width: 900px;
}
.ready-sun-section .h3 span {
    color: var(--primary_css_color);
}

/* Why Solar Battery */

.header-solar-battery {
    position: relative;
    padding: 130px 0 330px;
    background: url(../img/bg-head-why.svg) no-repeat center top;
    background-size: 110%;
    overflow: hidden;
    text-align: center;
}
.header-solar-battery .h1 {
    margin: 50px 0 0;
}
.header-solar-battery .h2 {
    margin: 20px 0;
}
.header-solar-battery img {
    margin: 35px 0 40px;
}

.power-battery-section {
    margin: 30px 0 0;
    text-align: center;
}
.power-battery-section h5 {
    margin: 40px 0 60px;
    font-weight: 600;
}
.power-battery-section .list-power-battery li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 30px;
    text-align: left;
}
.power-battery-section .list-power-battery li:last-child {
    margin: 0;
}
.power-battery-section .list-power-battery li .icon {
    min-width: 131px;
    margin: 0 55px 0 0;
}
.power-battery-section .list-power-battery li p {
    font-size: 22px;
    line-height: 36px;
    font-weight: 500;
}

.list-power-section {
    margin: 90px 0 135px;
}
.list-power-section ul {
    padding: 90px 0 0;
    border-top: 1px solid #aaa;
}
.list-power-section ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 90px;
}
.list-power-section ul li:last-child {
    margin: 0;
}
.list-power-section ul li .img {
    margin: 0 55px 0 0;
    min-width: 300px;
}
.list-power-section ul li:nth-child(2n) .img {
    margin: 0 0 0 55px;
}
.list-power-section ul li .text p {
    margin: 20px 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
}

.dependable-section {
    background: #FFF8EE;
    padding: 75px 0 0;
}
.dependable-section .flex-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.dependable-section .flex-box .col-left {
    width: 55%;
    font-weight: 500;
    font-size: 22px;
    line-height: 36px;
    padding: 0 0 90px;
}
.dependable-section .flex-box .col-right {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.dependable-section ul {
    margin: 45px 0 40px;
}
.dependable-section ul li {
    position: relative;
    font-size: 22px;
    line-height: 36px;
    padding: 0 0 0 25px;
}
.dependable-section ul li:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: var(--dark_css_color_bg);
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 2px);
    left: 0;
}
.dependable-section .preform {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 550px;
    margin: 50px 0 0;
}
.dependable-section .preform .field-box {
    margin: 0 18px 0 0;
}

/* FORM */

.page-form-section {
    padding: 100px 0 0;
}

.left-hand,
.right-hand {
    width: 631px;
    height: 1025px;
    display: block;
    transform: translate3d(0, 0, 0);
    text-align: center;
    opacity: 1;
}


@media screen and (min-width: 1900px) {
    .header-why {
        background-size: 2000px 930px;
    }
    .prefooter-section {
        background-size: 1920px;
    }
    .header-solar-battery {
        background-size: 1920px;
    }
}
@media screen and (min-width: 1500px) {
    .header-home h1 {
        margin: 150px 0 20px;
    }
}
@media screen and (min-width: 971px) {
    nav.nav {
        display: block!important;
    }
}
@media screen and (max-width: 1900px) {
    .header-why, .header-solar-battery {
        background-size: 1950px 910px;
    }
}
@media screen and (max-width: 1850px) {
    .energy-section .bg-energy-left {
        width: 200px;
        bottom: -30%;
        left: -5%;
    }
    .energy-section .bg-energy-right {
        width: 199px;
    }
}
@media screen and (max-width: 1700px) {
    .compare-section .bg-compare-left,
    .compare-section .bg-compare-right {
        width: 220px;
    }
}

@media screen and (max-width: 1600px) {
    .header-home {
        background-size: 2000px 900px;
    }

    .header-home .left-hand {
        width: 400px;
        top: 300px;
    }

    .header-home .right-hand {
        width: 400px;
        top: 200px;
    }
}

@media screen and (max-width: 1500px) {
    .energy-section .bg-energy-left,
    .energy-section .bg-energy-right {
        display: none;
    }
}

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

    .compare-section .bg-compare-left,
    .compare-section .bg-compare-right {
        display: none;
    }

    .works-section .list-works {
        margin: 50px 0 0;
    }

    .time-section {
        background-size: 1300px 100%;
    }

    .time-section .flex-box .col-left {
        width: 45%;
    }
}

@media screen and (max-width: 1200px) {
    .header-home .left-hand {
        height: 450px;
        width: 250px;
        top: 400px;
    }

    .header-home .right-hand {
        height: 450px;
        width: 250px;
        top: 300px;
    }

    .works-section {
        padding: 250px 0 80px;
    }

    .works-section .list-works {
        margin: 30px 0 0;
    }

    .works-section .list-works li {
        padding: 50px 40px;
    }

    .time-section .preform {
        display: block;
    }

    .time-section .preform .field-box {
        margin: 0 0 20px;
    }

    .time-section .flex-box .col-left {
        width: 38%;
    }

    .time-section .flex-box .col-right {
        width: 60%;
    }

    .time-section h2 {
        margin: 0 0 50px;
    }

    .accordeon {
        margin: 50px 0 0;
    }

    .form-section .list-contact {
        margin: 30px 0;
    }
    .terms-section .img-left,
    .terms-section .img-right {
        max-width: 50%;
    }
    .renewable-home-section {
        margin: 40px 0 0;
        padding: 90px 0;
    }
    .works-section .list-works li h5 {
        font-size: 18px;
        line-height: 23px;
    }
}

@media screen and (min-width: 851px) and (max-width: 1200px) {
    .form-section .list-contact .h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .form-section .list-contact .h6 {
        font-size: 14px;
        line-height: 18px;
    }

    .form-section .list-contact li .icon {
        width: 80px;
        min-width: 80px;
        height: 80px;
    }

    .form-section .list-contact li .text {
        font-size: 12px;
        line-height: 14px;
    }

    .form-section .list-contact li .text a,
    .form-section .list-contact li .text strong {
        font-size: 14px;
        line-height: 17px;
        margin: 10px 0 0;
    }

    .page-contact {
        padding: 120px 0 260px;
        background-size: 1500px 1000px;
    }
    .form-section .contact_thankyou {
        padding: 75px 0;
    }
}

@media screen and (max-width: 1100px) {
    .navigate a.logo {
        width: 210px;
    }
    .navigate .nav ul li {
        margin: 0 0 0 24px;
    }
    .dependable-section .flex-box {
        display: block;
    }
    .dependable-section .flex-box .col-left,
    .dependable-section .flex-box .col-right {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .works-section .list-works {
        display: block;
    }

    .works-section .list-works li {
        width: 100%;
        max-width: 380px;
        margin: 0 auto 30px;
    }
}

@media screen and (max-width: 970px) {
    nav.nav {
        display: none;
        width: 330px;
        height: auto;
        position: absolute;
        top: 98px;
        right: 0;
        background: var(--light_css_color_bg);
        padding: 20px;
        -webkit-box-shadow: -2px 2px 5px 0 rgba(0,0,0,0.2);
        -moz-box-shadow: -2px 2px 5px 0 rgba(0,0,0,0.2);
        box-shadow: -2px 2px 5px 0 rgba(0,0,0,0.2);
    }
    .navigate .nav ul {
        display: block;
    }
    .navigate .nav ul li {
        margin: 20px 0;
    }
    .hum {
        display: block;
    }
    .navigate {
        top: 0;
    }
    .page-contact {
        padding: 90px 0 260px;
        background-size: 1500px 1000px;
    }
}

@media screen and (max-width: 950px) {
    .works-section {
        padding: 0 0 80px;
    }
    .header-home {
        background-image: url(../img/bg-head-home-mob.svg);
        background-position: 50% -10%;
        background-size: 1700px 800px;
    }
    .header-home h1 {
        margin: 20px 0;
    }
    .header-home .group-hand {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header-home .left-hand,
    .header-home .right-hand {
        position: relative;
    }
    .header-home .left-hand {
        top: 30px;
        left: -45px;
    }
    .header-home .right-hand {
        top: -90px;
        right: -55px;
    }
    .header-home .box-cloud {
        display: block;
    }
    .time-section {
        background-size: 1800px 1200px;
        padding: 100px 0;
    }

    .time-section .flex-box {
        flex-direction: column-reverse;
        align-items: center;
    }
    .time-section h2 {
        text-align: center;
    }
    .time-section .flex-box .col-left,
    .time-section .flex-box .col-right {
        width: 100%;
        max-width: 450px;
        padding: 0;
    }

    .time-section .flex-box .col-left {
        margin: 100px 0 0;
    }

    .time-section .flex-box .col-left img {
        position: static;
        min-width: 100%;
    }

    .time-section .preform {
        height: auto;
    }

    .time-section .preform .field-box,
    .time-section .preform button {
        height: 82px;
    }

    .faq-section {
        padding: 0 0 50px;
    }
    .renewable-home-section .flex-box {
        display: block;
    }
    .renewable-home-section .preform {
        display: block;
        width: 100%;
    }
    .renewable-home-section .flex-box .col-right {
        min-width: 100%;
        text-align: center;
        margin: 0;
    }
    .renewable-home-section .preform .field-box {
        margin: 0 0 30px;
    }
    .list-power-section {
        margin: 90px 0 50px;
    }
    .list-power-section ul li {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin: 0 0 30px;
    }
    .list-power-section ul li:nth-child(2n) {
        flex-direction: column-reverse;
    }
    .list-power-section ul li:nth-child(2n) .img {
        margin: 0;
    }
    .list-power-section ul li h2 {
        margin: 15px 0;
    }
    .dependable-section {
        margin: 0 0 50px;
    }
}

@media screen and (max-width: 900px) {
    .h1 {
        font-size: 42px;
        line-height: 36px;
    }
    .header-solar-battery .h2, .header-solar-battery .h4 {
        font-size: 22px;
        line-height: 24px;
    }
    .header-why, .header-solar-battery {
        background-size: 900px 420px;
        background-position: bottom center;
        background-color: #FFF8EE;
        padding: 130px 0 170px;
    }
    .header-why .list-why {
        display: block;
    }
    .header-why .list-why li {
        margin: 0 0 20px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    .header-why .list-why li .icon {
        margin: 0 20px 0 0;
    }
    .header-why .list-why li p {
        margin: 0;
    }
    .energy-section .list-energy li {
        align-items: flex-start;
    }
}
@media screen and (max-width: 850px) {
    .compare-section .list-compare li {
        width: 48%;
        max-width: 350px;
    }

    footer .flex-box {
        display: block;
    }

    footer ul {
        display: block;
    }

    footer ul li {
        margin: 0 auto 15px;
        text-align: center;
    }

    footer .copyright {
        text-align: center;
        margin: 40px auto 0;
    }

    footer a {
        margin: 0;
    }

    .form-section .list-contact {
        display: block;
    }

    .form-section .list-contact li {
        justify-content: flex-start;
    }

    .form-section .list-contact li.head-list,
    .form-section .list-contact li:nth-child(2),
    .form-section .list-contact li {
        width: 100%;
        margin: 0 0 40px;
    }

    .form-section .list-contact li:nth-child(2),
    .form-section .list-contact li:last-child {
        max-width: 400px;
    }

    .form-section .list-contact li .icon {
        margin: 0 20px 0 0;
    }

    .form-section .feed_contact .box-flex {
        display: block;
    }

    .form-section .feed_contact .box-flex .col-left,
    .form-section .feed_contact .box-flex .col-right {
        width: 100%;
    }
    .page-contact {
        padding: 100px 0 200px;
        background-size: 1660px 1800px;
    }
    .header-terms {
        padding: 90px 0;
        background-size: 1000px 280px;
        background-position-x: 60%;
    }
    .form-section .contact_thankyou {
        text-align: center;
        padding: 130px 0 190px;
    }
}

@media screen and (max-width: 800px) {
    .power-battery-section .list-power-battery li {
        display: block;
        margin: 0 0 40px;
    }
    .power-battery-section .list-power-battery li .icon {
        margin: 0 0 20px;
    }
    .power-battery-section h2, .power-battery-section h5 {
        text-align: left;
    }
}
@media screen and (max-width: 750px) {
    .wrapper {
        padding: 0 20px;
    }

    .prefooter-section .preform {
        display: block;
        height: auto;
    }

    .prefooter-section .preform .field-box,
    .prefooter-section .preform button {
        height: 82px;
    }

    .prefooter-section .preform .field-box {
        margin: 0 0 20px;
    }

    .accordeon h4 {
        font-weight: 600;
        font-size: 18px;
        line-height: 23px;
    }

    .accordeon .box-acc .ac-head {
        padding: 23px 60px 23px 25px;
    }
    .dependable-section .preform {
        display: block;
        margin: 30px auto 0;
    }
    .dependable-section .preform .field-box {
        width: 100%;
    }
    .dependable-section .preform .field-box {
        margin: 0 0 20px;
    }
}

@media screen and (max-width: 600px) {
    .h1 {
        font-size: 28px;
    }
    .compare-section .list-compare li .icon {
        width: 114px;
        height: 114px;
    }

    .accordeon {
        margin: 30px 0 0;
    }

    .time-section h2 {
        margin: 0 0 30px;
    }

    .time-section .preform {
        margin: 40px auto 0;
    }

    .h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .header-home {
        background-size: 1800px 830px;
    }

    .works-section {
        padding: 0 0 80px;
    }

    .preform {
        width: 100%;
        max-width: 330px;
    }

    .compare-section {
        padding: 0;
    }

    .compare-section .list-compare {
        margin: 50px 0 0;
    }

    .form-section .list-contact li .text a,
    .form-section .list-contact li .text strong {
        font-size: 16px;
        line-height: 20px;
        margin: 5px 0 0;
    }

    .form-section .feed_contact .box-flex .box-field {
        height: 52px;
    }

    .form-section .feed_contact .box-flex .box-field input,
    .form-section .feed_contact .box-flex .field-text textarea {
        font-size: 15px;
        padding: 0 20px;
    }

    .form-section .feed_contact .placeholder {
        top: 16px;
        left: 20px;
        font-size: 15px;
    }

    .form-section .feed_contact .placeholder.prints {
        top: 5px;
        font-size: 10px;
    }

    .form-section .feed_contact .box-flex .box-field input+label,
    .form-section .feed_contact .box-flex .field-text textarea+label {
        bottom: 5px;
        left: 20px;
        font-size: 10px;
    }

    .form-section .feed_contact .box-flex .field-text textarea {
        padding: 20px;
    }

    .form-section .contact_thankyou {
        text-align: center;
        padding: 20px 0;
    }

    .form-section .contact_thankyou h4 {
        margin: 10px 0 5px;
    }

    .form-section .contact_thankyou .h4 {
        font-weight: 500;
        font-size: 18px;
        line-height: 26px;
    }

    .form-section .contact_thankyou .h5 {
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
    }
    .reject-insurance__title{
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 36px;
    }
    .success-insurance__title, .success-insurance__description{
        font-size: 28px;
        line-height: 36px;
    }
    .header-why {
        padding: 90px 0 160px;
    }
    .header-why .list-why li .icon {
        min-width: 90px;
        width: 90px;
    }
    .renewable-rise-section {
        position: relative;
        background: #F1F9FF;
        margin: 280px 0 0;
        padding: 100px 0 50px;
        background-size: cover;
    }
    .renewable-rise-section .img-renewable-rise {
        position: absolute;
        bottom: 665px;
        left: 0;
    }
    .renewable-rise-section .list-rise {
        display: block;
    }
    .renewable-rise-section .list-rise li {
        width: 300px;
        margin: 0 auto 30px;
    }
    .renewable-rise-section .list-rise li .h1 {
        font-size: 54px;
        line-height: 68px;
    }
    .ready-sun-section .h1 {
        font-size: 32px;
        line-height: 38px;
    }
    .ready-sun-section .h3 {
        font-size: 22px;
        line-height: 36px;
    }
    .accordeon .box-acc .ac-head:after {
        right: 20px;
    }
    .header-home {
        background-position: 35% 0;
    }
    .time-section {
        background-position: 50% 30%;
    }
    .renewable-home-section {
        margin: 0;
    }
    .header-why .list-why li p {
        font-size: 22px;
        line-height: 26px;
    }
}

@media screen and (max-width: 450px) {
    .works-section .list-works li {
        padding: 30px;
    }

    .form-section .list-contact li .icon {
        width: 96px;
        min-width: 96px;
        height: 96px;
    }
    .header-home .left-hand {
        left: -20px;
    }
    .header-home .right-hand {
        top: -65px;
        right: -35px;
    }
    .renewable-rise-section {
        margin: 240px 0 0;
    }
    .renewable-rise-section .img-renewable-rise {
        bottom: 720px;
    }
}
@media screen and (max-width: 400px) {
    .renewable-rise-section {
        margin: 200px 0 0;
    }
}
