/*--------------------- Copyright (c) 2020 ----------------------- 
[Master Stylesheet] 
Project: Solar Supplier.com
Version: 1.0.0 
Author: Kamleshyadav
 ------------------------------------------------------------------- 
[Table of contents] 
    1. Global CSS 
    2. Comman CSS
    3. Header CSS 
    4. Banner CSS 
    5. Services CSS
    6. Work CSS
    7.Market CSS
    8. Features CSS
    9. Footer CSS
    10. Responsive CSS
-------------------------------------------------------------------*/


/********************************************************
    1. Global CSS
*******************************************************/

:root {
    --main-black: #000000;
    --main-bg-color: #ffffff;
}

body {
   font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a,
a:hover,
a:focus,
button,
button:hover {
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.relative {
    position: relative;
}

img {
    max-width: 100%;
}

input,
textarea,
select,
button,
button:focus,
button:hover,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus,
.form-control:focus {
    outline: none;
    box-shadow: none;
}

ul,
p {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p {
    color: #9ba9c5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    font-family: 'Nunito Sans', sans-serif;
    color: #2d4379;
}

.overflow_hidden {
    overflow: hidden;
}

button {
    cursor: pointer;
}

.display_flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

iframe {
    width: 100%;
    border: none;
}
.container {
    max-width: 1200px;
}

/********************************************************
    2. Common CSS
*******************************************************/

.ss_btn a:hover, a.header_btn:hover {
    transform: translateY(-5px);
}

.ss_btn a, a.header_btn {
    display: inline-block;
    width: 170px;
    height: 45px;
    background: #fff;
    line-height: 45px;
    text-align: center;
    border-radius: 50px;
    color: #00bbf0;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    border: 0px solid #ffffff;
    transition: all 0.4s;
}
.ss_btn a:hover:after, a.header_btn:hover:after {
    opacity: 1;
    transition: all 0.5s;
    left: 35%;
}
a.header_btn:hover:after {
    left: 30%;
}
.ss_btn a:after, a.header_btn:after {
    content: "\f101";
    font-family: "FontAwesome";
    font-weight: 400;
    font-size: 18px;
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0;
    opacity: 0;
    width: 100%;
}
.ss_btn a, a.header_btn {
    display: inline-block;
    width: 170px;
    height: 45px;
    background: #fff;
    line-height: 45px;
    text-align: center;
    border-radius: 50px;
    color: #00bbf0;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    border: 0px solid #ffffff;
    transition: all 0.4s;
}
/********************************************************
    3. Top Button CSS
*******************************************************/

#scroll {
    position: fixed;
    right: 15px;
    bottom: 15px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    z-index: 9;
    visibility: hidden;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
}

a#scroll {
    color: #fff;
    background: #00bbf0;
}

#scroll.active {
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    animation: bounceInDown 2s;
    -webkit-animation: bounceInDown 2s;
    -moz-animation: bounceInDown 2s;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0px);
    }
}


/********************************************************
    4. Header CSS
*******************************************************/
header.ss_header_wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #455967;
}
.main_menu_parent {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.main_menu_wrapper ul,
.main_menu_wrapper li {
    display: inline-block;
    position: relative;
}

.main_menu_wrapper>ul>li>a {
    padding: 12px 20px;
    display: inline-block;
    font-weight: 600;
    color: #ffffff;
    position: relative;
}

.main_menu_wrapper>ul>li>a:hover {
    transform: scale(1.05);
    color: #00bbf0;

}
@-webkit-keyframes shine {
    from {
        -webkit-mask-position: 150%;
    }
    to {
        -webkit-mask-position: -50%;
    }
}

.main_menu_wrapper>ul>li>a,
.main_menu_wrapper>ul>li>a:before,
.main_menu_wrapper>ul>li:hover>a:before {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.main_menu_wrapper>ul>li {
    position: relative;
}

header.ss_header_wrapper {
    padding: 20px 20px 20px 40px;
}
.fixed_header.fixed {
    background-color: #00bbf0;
    -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;
    box-shadow: 0 14px 28px rgb(0 0 0 / 12%), 0 10px 10px rgb(0 0 0 / 2%);
}
.fixed_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: transparent;
    -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;
}
.fixed_header.fixed:hover .main_menu_wrapper>ul>li>a {
    color: #ffffff;
}

/********************************************************
    5. Banner CSS
*******************************************************/
.ss_banner_wrapper {
    background-image: url(../images/banner.jpg);
    background-repeat: no-repeat;
    z-index: 0;
    background-position: center;
    background-size: cover;
    position: relative;
    min-height: 865px;
    height: 100%;
}
.ss_banner_section {
    text-align: center;
    padding-top: 132px;
}

.ss_banner_section h1 {
    color: #fff;
    font-weight: 700;
    font-size: 44px;
    line-height: 60px;
    max-width: 1100px;
    margin: auto;
    width: 100%;
}
.ss_banner_section h3{
	color: #fff;
	margin: auto;
    width: 100%;
}
.ss_banner_section .ss_btn {
    padding-top: 50px;
}
.ss_banner_img1 {
    position: absolute;
    bottom: -150px;
    left: 0;
    right: 0;
    margin: auto;
    animation: bounceInUp 2s;
}
.ss_banner_left_img {
    position: absolute;
    left: 0;
    bottom: -70px;
    animation: bounceInLeft 2s;
}
.ss_banner_right_img {
    position: absolute;
    right: 0;
    bottom: -70px;
    animation: bounceInRight 2s;
}
/********************************************************
    6. Service CSS
*******************************************************/
.ss_service_wrapper {
    margin-top: 120px;
}
.ss_service_box {
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    max-width: 100%;
    transition: all 0.3s;
    margin-top: 30px;
    position: relative;
	background: #00bbf0;
}
.ss_service_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgb(21 21 21 / 21%);
}
.ss_feature_box:after {
    content: "";
    position: absolute;
    width: 70%;
    height: 5px;
    background: #00bbf0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: scaleX(0);
    transition: all 0.4s;
}
.ss_feature_box:hover:after {
    transform: scaleX(1);
}
.ss_service_body h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    padding-top: 25px;
}


.ss_service_bg_icon ul {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ss_service_bg_icon li:nth-child(1) {
    position: absolute;
    left: 170px;
    top: 100px;
}

section.ss_service_bg {
    position: relative;
}

.ss_service_bg_icon li:nth-child(2) {
    left: 170px;
    top: 450px;
}

.ss_service_bg_icon li {
    position: absolute;
}

.ss_service_bg_icon li:nth-child(3) {
    left: 350px;
    bottom: 550px;
}

.ss_service_bg_icon li:nth-child(4) {
    left: 200px;
    bottom: 100px;
}

.ss_service_bg_icon li:nth-child(5) {
    left: 0;
    right: 0;
    bottom: 30px;
    display: flex;
    justify-content: center;
}

.ss_service_bg_icon li:nth-child(7) {
    right: 380px;
    bottom: 560px;
}

.ss_service_bg_icon li:nth-child(8) {
    right: 200px;
    bottom: 1050px;
}

.ss_service_bg_icon li:nth-child(9) {
    right: 200px;
    top: 430px;
}

.ss_service_bg_icon li:nth-child(10) {
    right: 150px;
    top: 30px;
}

.ss_service_bg_icon li:nth-child(6) {
    left: 100px;
    top: 800px;
}
/********************************************************
    7. Home Pages CSS
*******************************************************/
.ss_home_pages_wrapper .row {
    justify-content: center;
    padding-top: 30px;
}
.ss_home_pages_section {
    padding-top: 40px;
}
.ss_home_pages_section h5 {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    padding-top: 40px;
}
.ss_home_pages_wrapper {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}
.ss_home_pages_img {
    position: relative;
    box-shadow: 0px 2px 28px 0px rgb(0 0 0 / 10%);
}
.ss_home_pages_img:hover .work_overlay {
    opacity: 1;
    height: 100%;
}
.work_overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(17 17 17 / 69%);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.ss_view_demo_btn .ss_btn a {
    background: #00bbf0;
    color: #ffffff;
}
.ss_heading1 h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111111;
    position: relative;
}
.ss_heading1 h2:before {
    content: url(../images/seprater.png);
    position: absolute;
    left: 0;
    right: 0;
    top: 35px;
    width: 100%;
    height: auto;
    z-index: 1;
}
/********************************************************
    8. Fully Responsive Section CSS
*******************************************************/
.ss_fully_responsive_wrapper {
    background-image: url(../images/banner2.png);
    background-repeat: no-repeat;
    z-index: 0;
    background-position: center;
    background-size: cover;
    position: relative;
    min-height: 725px;
    height: 100%;
    text-align: center;
    padding: 100px 0 0;
}
.ss_heading2 h2 {
    color: #fff;
    position: relative;
}
.ss_heading2 h2:before {
    content: url(../images/seprater2.png);
    position: absolute;
    left: 0;
    right: 0;
    top: 35px;
    width: 100%;
    height: auto;
    z-index: 1;
}
.ss_fully_responsive_img {
    position: absolute;
    bottom: -45px;
    left: 0;
    right: 0;
    margin: auto;
}
.ss_fully_responsive_img:before {
    content: url(../images/pot.png);
    position: absolute;
    left: 300px;
    bottom: 10px;
    z-index: 1;
}
.ss_fully_responsive_img:after {
    content: url(../images/pot.png);
    position: absolute;
    right: 290px;
    bottom: 10px;
    z-index: 1;
}

/********************************************************
    8. Feature CSS
*******************************************************/
.ss_feature_wrapper {
    text-align: center;
    padding: 100px 0;
}
.ss_feature_section {
    padding-top: 70px;
}
.ss_feature_box {
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 28px 0px rgb(0 0 0 / 6%);
    padding: 50px;
    margin-top: 30px;
    transition: all 0.3s;
}
.ss_feature_body h5 {
    font-size: 16px;
    font-weight: 600;
    padding-top: 20px;
}
img.Browser_feature {
    padding-bottom: 24px;
    padding-top: 20px;
}
.ss_feature_box:hover {
    transform: translateY(-5px);
}


/* feature start */
.ai-feature{
    background-image: url(../images/feature-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}
.ai-author-box {
    text-align: center;
    padding-top: 100px;
    margin-top: 100px;
    position: relative;
}
.ai-author-box h4{
    font-size: 30px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}
.ai-author-box h2{
    font-size: 60px;
    color: #fff;
    margin-bottom: 0;
}
.ai-author-box:after {
    position: absolute;
    content: '';
    width: 50%;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(45deg, transparent,#ffffff63, transparent);
    margin: auto;
}
.ai-feature-box ul {
    display: grid;
    grid-template-columns: repeat(5, auto);
    text-align: center;
    grid-row-gap: 50px;
}
.ai-feature-box ul h4 {
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
}
.ai-shop {
    background: #fff;
    padding: 30px 0 20px;
}
/* service box start */
.ai-service-box ul li {
    position: absolute;
    top: 0;
}
.ai-service-box ul li:nth-child(2) {
    left: 150px;
}
.ai-service-box ul li:nth-child(3) {
    left: 300px;
}
.ai-service-box ul li:nth-child(4) {
    left: 280px;
    top: -10px;
    animation: 0.3s installation infinite alternate;
}
.ai-service-text h3 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 300;
}
.ai-service-text h3 span {
    display: block;
}
.ai-service-text {
    padding: 130px 0;
    max-width: 430px;
}
.ai-service-box {
    height: 335px;
}
.multi_services1{
    background-image: url(../images/prospettiva_accidentale1.png);
    background-size: contain;
    padding-top: 100px;
}
/********************************************************
    9. Footer Banner CSS
*******************************************************/
.copyright_wrapper  p{
	text-align: center;
    background: #00090d;
    color: #fff;
    padding: 15px 0px;
}
.ss_footer_wrapper {
    
    background-repeat: no-repeat;
    z-index: 0;
    background-position: initial;
    background-size: cover;
    position: relative;
    text-align: center;
    padding: 100px 0 0;
}
.ss_footer_section h2 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    padding-top: 20px;
}

.ss_footer_section p {
    font-size: 34px;
    color: #ffffff;
    padding-top: 30px;
}
.ss_copyright_wrapper p, a {
    color: #fff;
}
.ss_copyright_wrapper {
    background: #00090d;
    padding: 15px;
    margin-top: 90px;
}
.ss_service_wrapper .row {
    justify-content: center;
}
/********************************************************
    10. Responsive CSS
*******************************************************/
@media (min-width: 991.98px) {
    .menu_btn {
        display: none;
    }
    ul.sub_menu {
        position: absolute;
        width: max-content;
        min-width: 200px;
        top: 60px;
        left: 0;
        z-index: 9;
        transform: translate(20px, 0px);
        transition: 0.3s;
        opacity: 0;
        visibility: hidden;
        border: none;
        border-radius: 0 0 10px 10px;
        padding: 0 0 15px;
        background: var(--main-bg-color);
        box-shadow: 0px 6px 6px 0 rgba(0, 0, 0, 0.06);
    }
    ul.sub_menu li {
        display: block;
        text-align: left;
        padding: 0;
    }
    ul.sub_menu li a {
        display: block;
        padding: 12px 20px 0;
        overflow: hidden;
        position: relative;
    }
    .main_menu_wrapper>ul>li:hover ul.sub_menu {
        transform: translate(0px, 0px);
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 991.98px) {
    body {
        font-size: 14px;
        line-height: 20px;
    }
    .main_menu_wrapper>ul>li>a {
    color: #00bbf0;
}
    .menu_btn {
        width: 50px;
        height: 50px;
        display: inline-block;
        text-align: center;
        line-height: 26px;
        border: 1px solid transparent;
        border-radius: 50%;
        padding: 21px 0 16px 0;
    }
    .menu_btn span {
        display: block;
        width: 18px;
        height: 2px;
        transition: 0.3s;
        margin: 0 auto 3px;
        background: #fff;
    }
    .ai-feature-box ul {
        grid-template-columns: repeat(3, auto);
    }
    .menu_btn_wrap.open .menu_btn span:nth-child(2) {
        opacity: 0;
        visibility: hidden;
    }
    .menu_btn_wrap.open .menu_btn span:nth-child(1) {
        transform: translate(0px, 4px) rotate(-48deg);
    }
    .menu_btn_wrap.open .menu_btn span:nth-child(3) {
        transform: translate(0px, -6px) rotate(48deg);
    }
    .main_menu_wrapper {
        position: fixed;
        left: -300px;
        top: 0;
        bottom: 0;
        width: 250px;
        z-index: 999;
        overflow: hidden;
        overflow-y: auto;
        background: #fff;
        box-shadow: 2px 4px 28px 0px rgba( 0, 0, 0, 0.1);
    }
    .main_menu_wrapper.open {
        left: 0;
    }
    .main_menu_wrapper,
    .main_menu_wrapper.open {
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    .main_menu_wrapper li {
        width: 100%;
        text-align: left;
        padding-bottom: 15px;
        border-bottom: 1px solid #edebfa;
    }
    .fixed_header.fixed:hover .main_menu_wrapper>ul>li>a {
    color: #00bbf0;
}
    .main_menu_wrapper li.has_submenu {
        padding-left: 0;
    }
    .main_menu_wrapper li.has_submenu>ul {
        display: none;
    }
    .main_menu_wrapper li:last-child {
        border: none;
        padding-bottom: 0;
    }
    .main_menu_wrapper li>ul>li {
        padding-left: 25px;
    }
    .main_menu_wrapper ul>li>a {
        padding: 15px 20px 0px;
        width: 100%;
    }
    .main_menu_wrapper li.has_submenu:before,
    .main_menu_wrapper li.has_submenu:after {
        position: absolute;
        bottom: 0;
        content: '';
    }
    .main_menu_wrapper li.has_submenu:after {
        right: 21px;
        width: 12px;
        height: 2px;
        top: 25px;
    }
    .main_menu_wrapper li.has_submenu:before {
        right: 26px;
        width: 2px;
        height: 12px;
        top: 20px;
    }
    .main_menu_wrapper li.has_submenu.open::before {
        content: unset;
    }
    .main_menu_wrapper::-webkit-scrollbar {
        width: 3px;
    }
    .main_menu_wrapper::-webkit-scrollbar-track {
        background-color: var(--main-border-color);
    }
    .main_menu_wrapper::-webkit-scrollbar-thumb {
        background-color: var(--main-txt-color);
    }
    header.ss_header_wrapper {
        padding: 20px;
    }
.ss_banner_img1 {
    position: initial;
    padding-top: 50px;
}
.ss_fully_responsive_img:before {
    position: absolute;
    left: 0;
}
.ss_fully_responsive_img:after {
    position: absolute;
    right: 0;
}
}
@media (max-width: 767px){
    .ss_banner_left_img {
    display: none;
}
.ss_banner_right_img {
    display: none;
}
.ss_fully_responsive_img {
    position: initial;
    padding-top: 90px;
}
.ss_fully_responsive_wrapper {
    min-height: 100%;
}
.ss_service_wrapper {
    margin-top: 20px;
}
.ai-feature-box ul {
    grid-template-columns: repeat(2, auto);
}
}

@media (max-width: 567px){
.ss_banner_section h1 {
    font-size: 32px;
}
.ss_heading1 h2:before {
    top: 90px;
}
.ss_fully_responsive_img:before{
    display: none;
}
.ss_fully_responsive_img:after{
    display: none;
}
.ss_service_box {
    max-width: 100%;
    width: 100%;
}
.ss_footer_section h2 {
    font-size: 40px;
}
.ss_footer_section p {
    font-size: 30px;
    line-height: 40px;
}
.ss_banner_section {
    padding-top: 200px;
}
.ss_banner_section h1 {
    font-size: 34px;
}
.ai-feature-box ul {
    grid-template-columns: repeat(1, auto);
}
}
@media (max-width: 500px){
.col-5, .col-7 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 100%;
    max-width: 100%;
}
.main_menu_parent {
    justify-content: center;
    padding-top: 10px;
}
.ss_logo {
    text-align: center;
}
}
@media (max-width: 400px){
    .ss_heading1 h2 {
    font-size: 36px;
}
.ss_footer_section p {
    font-size: 24px;
}
.ss_footer_section h2 {
    font-size: 30px;
}
}