/** Shopify CDN: Minification failed

Line 84:3 Unexpected "/"

**/
/* @import url('//fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@import url('//fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('//fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500;1,600&display=swap');
/******************************* 
            Global
*******************************/

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    background-color: #F5F5F5;
}

*,*::before,*::after{
	box-sizing:border-box;
}
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,textarea,p,blockquote,th,td,
header,footer,aside,nav,article,figure,figcaption{
/* 	margin:0; */
/* 	padding:0; */
}
fieldset,img{
	border:0;
    max-width: 100%;
}
address,caption,cite,code,dfn,em,strong,th,var{
	font-style:normal;
	font-weight:400;
}
ol,ul{
	list-style:none;
}
caption,th{
	text-align:left;
}
h1,h2,h3,h4,h5,h6{
	font-size:100%;
    text-transform: capitalize;
}
h1::first-letter,
h2::first-letter,
h3::first-letter,
h4::first-letter,
h5::first-letter,
h6::first-letter{
    text-transform: uppercase;
}
q:before,q:after{
	content:'';
}
abbr,acronym{
	border:0;
}
a{
	text-decoration:none;
    transition: 0.3s linear;
}
a:active,a:focus,input:focus,textarea:hover,textarea:focus{
	outline:none;
} 

img {
    /* width: 100%; */
    max-width: 100%;
    display: block;
} */

/******************************* 
            Global
*******************************/

/*********************************
            Variables
*********************************/

    /***Color Variables***/
:root {
    --white: #fff;
    --black: #000;
    --orange : #F58728;
    --tundora : #4D4D4D;
    --green : #85AF0F;
    --propink : #fef8f2;

}

/*********************************
            Variables
*********************************/


/*********************************
            Fonts
*********************************/

/* h1 {
    font-size: 50px;
    
}

h2 {
    font-size: 32px;          
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 24px;
}
 
h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

p {
    font-size: 18px;
}

a {
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
}

p, a, label, span, li, input, ::placeholder {
    font-weight: 400;

}

p, label, span, li, input, ::placeholder {
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

a {
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

 */

/*********************************
            Fonts
*********************************/

/*********************************
            Classes
*********************************/


.text-capitalize {
    text-transform: capitalize;
}

.text-lower {
    text-transform: lowercase;
}

.text-upper {
    text-transform: uppercase;
}

.black {
    color: var(--black);
}

.white {
    color: var(--white); 
}

.orange {
    color: var(--orange);
}

.tundora {
    color: var(--tundora);
}

.green {
    color: var(--green);
}


.black-bg {
    background-color: var(--black);
}

.white-bg {
    background-color: var(--white);
}

.orange-bg {
    background-color: var(--orange);
}

.green-bg {
    background-color: var(--green);
}

.propink-bg {
    background-color: var(--propink);
}

.positionRelative {
    position: relative;
}

.flexClass {
    display: flex;
    flex-wrap: wrap;
}

.alignCenter {
    align-items: center;
}

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

.flexReverse {
    flex-direction: row-reverse;
}

.font-700 {
    font-weight: 700;
}



/*********************************
            Classes
*********************************/

/*********************************
            Page Css
*********************************/

/*********************************
            Header Css
*********************************/

.site-nav__item:nth-child(1) a::after {
    background-color: #E5712E;
}

.site-nav__item a::after {
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 7px;
    content: "";
    background-color: transparent;
    border: 0px;
    right: 0 !important;
    margin: 0;
  transition: .4s ease-in-out;
}

.site-nav__item:nth-child(2) a::after {
    background-color: #9DD4B4;
}

.site-nav__item:nth-child(3) a::after {
    background-color: #00B5E0;
}

.site-nav__item:nth-child(4) a::after {
    background-color: #1F7EA5;
}

li.site-nav__item {
    margin: 0 5px;
}

.megamenu a::after {
    background: transparent;
    opacity: 0;
}

li.site-nav__item {
    margin: 0 20px;
}

.site-nav__item a {
    padding-left: 0px;
    padding-right: 0px;
}


.site-nav__item a:hover::after {
    width: 120%;
    left: -9px;
}

.site-nav--has-dropdown.is-focused>a, .site-nav--has-dropdown:hover>a {
    background-color: transparent !important;
    color: #fff !important;
}
/*********************************
            Header Css
*********************************/

.heroBannerSection {
    position: relative;
    height: auto;
    padding: 100px 0px 0px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.bannerCardSingle {
    width: 24%;
    flex-grow: 0;
    height: 430px;
    transition: 0.1s ease-in-out;
    flex: 1;
}

.bannerCardsFlex {
    gap: 15px;
}

.bannerContent {
    position: relative;
    max-width: 460px;
}

.bannerContent h1 {
    font-weight: bold;
    font-size: 50px;
    line-height: 1.2;
}

.bannerCardsContent {
    margin: 244px 0px 0px;
}

.bannerCardSingleHover {
    position: absolute;
    /*opacity: 0;*/
    visibility: hidden;
    transition: all 2s;
    top: 0;
/*     width: 50%; */
  width: 275px;
    right: 0;
    background-color: #fff;
    padding: 20px 20px;
    height: 100%;
    overflow: hidden;
}

.bannerMobileBg {
    display: none;
}

.heroBannerBg {
    display: block;
}

.heroBannerMain {
    position: relative;
    z-index: 0;
}

.heroBannerBg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0% 100%);
}

.bannerCardSingleInner {
    position: relative;
    height: 100%;
}

.bannerCardSingleNonhover {
    position: relative;
    height: 100%;
}

.bannerCardSingle:nth-child(1) {
    background-color: #fc5e2c;
}

.bannerCardSingle:nth-child(2) {
    background-color: #02b3e5;
}

.bannerCardSingle:nth-child(3) {
    background-color: #9ed0b5;
}

.bannerCardSingle:nth-child(4) {
    background-color: #257aa3;
}

.bannerCardSingleHeading {
    padding: 15px 15px;
    height: 101px;
}

.bannerCardSingleArrow {
    position: absolute;
    width: 60px;
    height: 60px;
    right: 0;
    /*bottom: -15px;*/
    bottom: 0px;
}

.bannerCardSingleImage {
    height: 329px;
    position: relative;
    clip-path: polygon(0 36%, 100% 0, 103% 100%, 0% 100%);
    bottom: 0;
    top: auto;
    position: absolute;
    transition: .01s ease-in-out;
  width: 100%;
}

.bannerCardSingle.nonActive .bannerCardSingleImage {
    height: 60%;
}

.bannerCardSingleImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bannerCardSingleArrow a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 30px;
    pointer-events: none;
    touch-action: none;
}

.bannerCardSingle:nth-child(1) .bannerCardSingleArrow {
    background-color: #fc5e2c;
}

.bannerCardSingle:nth-child(2) .bannerCardSingleArrow {
    background-color: #02b3e5;
}

.bannerCardSingle:nth-child(3) .bannerCardSingleArrow {
    background-color: #9ed0b5;
}

.bannerCardSingle:nth-child(4) .bannerCardSingleArrow {
    background-color: #257aa3;
}

/* .bannerCardSingle:hover {
    flex-grow: 3;
    flex: 3;
} */

/* .bannerCardSingle:hover .bannerCardSingleNonhover {
    max-width: 50%;
} */

.cardClose {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.bannerCardSingle:nth-child(1) .bannerCardSingleHover .cardHoverIntro h3 {
    color: #fc5e2c;
}

.bannerCardSingle:nth-child(2) .bannerCardSingleHover .cardHoverIntro h3 {
    color: #02b3e5;
}

.bannerCardSingle:nth-child(3) .bannerCardSingleHover .cardHoverIntro h3 {
    color: #9ed0b5;
}

.bannerCardSingle:nth-child(4) .bannerCardSingleHover .cardHoverIntro h3 {
    color: #257aa3;
}

.cardHoverIntro p {
    font-size: 16px;
    margin: 10px 0px;
    line-height: 1.4;
}

.cardList {
    position: relative;
    margin: 40px 0px 0px;
}

.cardList ul li a {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.cardList ul li a span {
    width: 40px;
    display: block;
    margin: 0 10px 0 0;
}

.cardList ul li a i {
    margin: 0 0 0 10px;
}

/* .bannerCardSingle:hover .bannerCardSingleHover {
    opacity: 1;
    visibility: visible;
} */

.teragyVideoSection {
    padding: 180px 0px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.sectionIntro {
    text-align: center;
    max-width: 60%;
    margin: 0 auto;
}

.teragyVideoBox {
    margin: 100px 0px 0px;
}

.teragyVideoBoxInner video {
    width: 100%;
      z-index: 2;
    position: relative;
}

.sectionIntro h2 {
    font-weight: 700;
    color: #02b3e5;
    font-size: 32px;
    font-family: 'Open Sans', sans-serif;
}

.sectionIntro p {
    color: #000;
    font-weight: 500;
    margin: 25px 0px 0px;
    line-height: 1.4;
}

.teragyVideoBoxInner {
    position: relative;
}

.videoPlay {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transform: translate(0%, 0%);
    width: 50px;
    height: 50px;
  z-index: 2;
}

.videoPlay {
    font-size: 50px;
    color: #fff;
    cursor: pointer;
}

.teragyVideoBoxInner::before {
    position: absolute;
    left: 10px;
    top: 10px;
    height: 100%;
    width: 100%;
    background-color: #ff602e;
    content: "";
    z-index: 0;
}

.teragyVideoBoxInner::after {
    position: absolute;
    left: -10px;
    top: -10px;
    background-color: #9dd4b4;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 0;
}

.videoPlay.opacity {
    opacity: 0;
}

.teragyVideoBoxInner:hover .videoPlay {
    opacity: 1;
}

.videoPlay .fa-play {
    display: block;
}

.videoPlay.opacity .fa-pause {
    display: block;
}

.videoPlay .fa-pause {
    display: none;
}

.videoPlay.opacity .fa-play {
    display: none;
}

.shopCategoryContainer {
    margin: 150px 0px 0px;
}

.shopCategorySingle {
    width: 49%;
}

.shopCategoryFlex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.shopCategoryHeading {
    position: absolute;
    z-index: 4;
}

.shopCategoryImage {
    max-width: 320px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: .4s ease-in-out;
}

.shopCategoryTop {
    padding: 20px 20px;
    height: 380px;
    position: relative;
}

.shopCategorySingle:nth-child(1) .shopCategoryTop {
    background-color: #c8f0d8;
}

.shopCategorySingle:nth-child(2) .shopCategoryTop {
    background-color: #f8a897;
}

.shopCategorySingle:nth-child(3) .shopCategoryTop {
    background-color: #2fbcde;
}

.shopCategorySingle:nth-child(4) .shopCategoryTop {
    background-color: #64edfc;
}

.shopCategoryImage img {
    margin: auto;
    display: block;
    max-width: 80%;
}

.shopCategpryLink {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.shopCategoryHeading h3 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 3px;
    color: transparent;
    transition: .2s ease-in-out;
}

.shopCategorySingle:nth-child(1) .shopCategoryTop .shopCategoryHeading h3 {
    color: transparent;
    -webkit-text-stroke: 2px #9ed0b5;
}

.shopCategorySingle:nth-child(2) .shopCategoryTop .shopCategoryHeading h3 {
    -webkit-text-stroke: 2px #fc5e2c;
}

.shopCategorySingle:nth-child(3) .shopCategoryTop .shopCategoryHeading h3 {
    -webkit-text-stroke: 2px #78e0fd;
}

.shopCategorySingle:nth-child(4) .shopCategoryTop .shopCategoryHeading h3 {
    -webkit-text-stroke: 2px #257aa3;
}

.shopCategoryBottom {
    padding: 20px 0px;
}

.shopCategoryBottom h5 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
  letter-spacing: 0;
}

.shopCategoryBottom p {
    font-size: 18px;
    margin: 5px 0px;
}

.shopCategpryLink a {
    padding: 0px 0px;
    display: block;
    text-align: right;
}

.shopCategorySingle:nth-child(1) .shopCategoryTop .shopCategpryLink a {
    background-color: #ade0c2;
}

.shopCategorySingle:nth-child(2) .shopCategoryTop .shopCategpryLink a {
    background-color: #ff7756;
}

.shopCategorySingle:nth-child(3) .shopCategoryTop .shopCategpryLink a {
    background-color: #279fc4;
}

.shopCategorySingle:nth-child(4) .shopCategoryTop .shopCategpryLink a {
    background-color: #2bd1ee;
}

.shopCategpryLink a i {
    padding: 25px 30px;
    font-size: 30px;
    color: #fff;
}

.shopCategorySingle:nth-child(1) .shopCategoryTop .shopCategpryLink a i {
    background-color: #9ed2b2;
}

.shopCategorySingle:nth-child(2) .shopCategoryTop .shopCategpryLink a i {
    background-color: #fa6025;
}

.shopCategorySingle:nth-child(3) .shopCategoryTop .shopCategpryLink a i {
    background-color: #1b7ba0;
}

.shopCategorySingle:nth-child(4) .shopCategoryTop .shopCategpryLink a i {
    background-color: #00b5e4;
}

.customerSayingSection {
    padding: 120px 0px 0px;
    background-color: #dddddb;
}

section.customerSayingSection {}

.customerSayingFlex {
    margin: 100px 0px 0px;
    display: flex;
    justify-content: space-between;
}

.customerSayingSingle {
    width: 23%;
}

.customerSayingImage {
    border-radius: 50%;
    overflow: hidden;
    position: relative;
  transition: .5s ease-in-out;
      cursor: pointer;
}

.customerSayingBg {
    position: absolute;
    left: 13px;
    top: 13px;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.customerSayingImageBox {
    position: relative;
    height: 270px;
}

.customerSayingSingle:nth-child(1) .customerSayingImageBox .customerSayingBg {
    background-color: #08b6d9;
}

.customerSayingSingle:nth-child(2) .customerSayingImageBox .customerSayingBg {
    background-color: #a4ceb7;
}

.customerSayingSingle:nth-child(3) .customerSayingImageBox .customerSayingBg {
    background-color: #ee6539;
}

.customerSayingSingle:nth-child(4) .customerSayingImageBox .customerSayingBg {
    background-color: #147da0;
}

.testimonialIcon {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 20px;
    color: #fff;
    background-color: #000;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s ease-in-out;
      cursor: pointer;
}

.customerSayingSingle:hover .testimonialIcon {
    width: 70px;
    height: 70px;
}

.customerSayingSingle:nth-child(1) .customerSayingImageBox .testimonialIcon {
    background-color: #08b6d9;
}

.customerSayingSingle:nth-child(2) .customerSayingImageBox .testimonialIcon {
    background-color: #a4ceb7;
}

.customerSayingSingle:nth-child(3) .customerSayingImageBox .testimonialIcon {
    background-color: #ee6539;
}

.customerSayingSingle:nth-child(4) .customerSayingImageBox .testimonialIcon {
    background-color: #147da0;
}

.customerSayingContent {
    padding: 20px 0px;
}

.customerSayingContent h3 {
    font-size: 24px;
    font-weight: 700;
    color: #08b6d9;
  text-transform: uppercase;
}

.customerSayingContent p {
    font-size: 16px;
    line-height: 1.3;
    margin: 10px 0px;
}

.customerSayingContent ul li p {
    margin: 3px 0px;
    text-transform: uppercase;
}

.customerSayingContent ul li p span {
    text-transform: initial;
}

.customerSayingContent ul li p {
    font-weight: 600;
}

.customerSayingContent ul li p span {
    font-size: 13px;
    margin-left: 5px;
}

.whyChooseSection {
    position: relative;
    padding: 80px 0px 0px;
    height: 216vh;
}

.whyChooseSection::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 48%;
    background-color: #dddddb;
    content: "";
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% 18%, 0 75%);
}

.whyChooseMain {
    background-size: cover;
    background-position: initial;
    background-repeat: no-repeat;
    height: 28%;
  position: relative;
  z-index: 1;
}

.whyChooseInner {
    background-color: #fff;
    box-shadow: -1px 1px 12px 3px #707070;
    padding: 40px 30px;
}

.whyChooseFlex {
    display: flex;
    justify-content: space-between;
    margin: 60px 0px 0px;
}

.whyChooseSingle {
    width: 19%;
}

.whyChooseSingle {}

.whyChooseIcon img {
    max-width: 130px;
    margin: 0 auto;
}

.whyChooseIcon {
    margin: 0px 0px 5px;
}

.whyChooseContent {
    position: relative;
    text-align: center;
}

.whyChooseContent h3 {
    color: #02b3e5;
    font-weight: 700;
    font-size: 20px;
    max-width: 120px;
    margin: 0 auto 15px;
}

.whyChooseContent p {
    font-size: 16px;
    line-height: 1.4;
    color: #000;
}

.whyChooseBackground {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
}

.whyChooseBackground img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.newSolarSection {
    padding: 150px 0px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.newSolarMain {
    position: relative;
}

.newSolarContent {
    max-width: 750px;
}

.newSolarContentBox {
    padding: 50px 70px;
    background-color: #fff;
}

.newSolarContentBox p {
    max-width: 60%;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.4;
}

.newSolarContentBox p:last-child {
    margin-bottom: 0px;
}

.newSolarContentBox h2 {
    font-weight: 700;
    color: #147da0;
    margin-bottom: 20px;
    font-size: 32px;
    font-family: 'Open Sans', sans-serif;
}

.newSolarLink {
    position: relative;
    bottom: 0;
    width: 100%;
    left: 0;
}

.newSolarLink a {
    display: flex;
    justify-content: space-between;
}

.newSolarLink a p {
    padding: 20px 35px;
    background-color: #25a1c5;
    width: 90%;
    color: #fff;
    font-weight: 600;
    font-size: 21px;
}

.newSolarLink a i {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    background-color: #207ca2;
}

.deeperSection {
    padding: 250px 0px 200px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.deeperSectionVideo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.deeperSectionVideo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deeperSectionMain {
    position: relative;
    z-index: 3;
    padding: 0 60px;
}

.deeperSectionContent h2 {
    font-weight: 700;
    color: #a4ceb7;
    font-size: 40px;
}

.deeperSectionContent h3 {
    color: #fff;
    font-size: 30px;
    margin: 25px 0px;
}

.deeperSectionContent {
    max-width: 350px;
}

.deepeLink a {
    display: flex;
    justify-content: space-between;
}

.deepeLink a p {
    width: 90%;
    padding: 20px 30px;
    color: #fff;
    background-color: #fc7851;
}

.deepeLink a i {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    background-color: #f46237;
}

.customerSayingSingle:nth-child(odd) {
    margin-top: 65px;
}

.categoryLink {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 500px;
    z-index: 999;
}

.MuiDialog-container {
    z-index: 9999999999999;
}

.MuiDialog-root {
    z-index: 999999 !important;
}

.customerSayingImage video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.customerSayingImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customerSayingImage {
    height: 263px;
}

.shopCategorySingle:nth-child(1):hover .shopCategoryTop .shopCategoryHeading h3 {
    color: #9ed0b5;
}

.shopCategorySingle:nth-child(2):hover .shopCategoryTop .shopCategoryHeading h3 {
    color: #fa6025;
}

.shopCategorySingle:nth-child(3):hover .shopCategoryTop .shopCategoryHeading h3 {
    -webkit-text-stroke-color: #1b7ba0;
}

.shopCategorySingle:nth-child(3):hover .shopCategoryTop .shopCategoryHeading h3 {
    color: #1b7ba0;
}

.shopCategorySingle:nth-child(3):hover .shopCategoryTop .shopCategoryHeading h3 {
    -webkit-text-stroke-color: #1b7ba0;
}

.shopCategorySingle:nth-child(4):hover .shopCategoryTop .shopCategoryHeading h3 {
    color: #00b5e4;
    -webkit-text-stroke-color: #00b5e4;
}

/* .customerSayingSingle:hover .customerSayingImage {
    height: 285px;
    width: 280px;
}

.customerSayingImage.active {
    width: 280px;
    height: 285px;
} */

.shopCategorySingle:hover .shopCategoryHeading h3 {
    font-size: 44px;
}

.shopCategorySingle:hover .shopCategoryImage {
    max-width: 65%;
}

.sectionIntro h2 {
    text-transform: initial;
}

.shopCategorySection {
    padding: 60px 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bannerCardSingle.active .bannerCardSingleNonhover {
    /*max-width: 50%;*/
}

.bannerCardSingle.active .bannerCardSingleHover {
    opacity: 1;
    visibility: visible;
}

.bannerCardSingle.active {
    flex: 3;
}



.bannerCardSingleHover ul li
{
  padding:5px 0px;
}
.bannertextcontent
{
  position: relative;
}
.bannerContentImage
{
 position: absolute;
  right: 6%;
  top: 26px;
}
.bannerContentImage img
{
 max-width: 415px;
 padding-top: 40px;
}

.chooselinesMobile {
    display: none;
}

.bannerCardSingle.active .bannerCardSingleArrow {
    /*opacity: 0;*/
}

.customerSayingImage video::-webkit-media-controls {
    opacity: 0;
}



/*********************************
            Page Css
*********************************/
/*********************************
            New Css
*********************************/

.template-index .header-sticky-wrapper .header-wrapper--sticky .site-header {
    background-color: #fff;
}

.template-index .site-header__logo img {
    filter: invert(1);
}

.is-light .site-nav__link, .is-light .site-nav__link:hover {
    color: #000 !important;
}

.site-nav--has-dropdown.is-focused>a, .site-nav--has-dropdown:hover>a {
    color: #000 !important;
}

.site-header__logo {
    width: 160px !important;
    max-width: 100%;
}

.site-header__logo img {
    width: 100% !important;
    max-width: 100% !important;
}

.logo--inverted {
    width: 100% !important;
}


.site-header__logo img, .site-header__logo a {
    width: 100% !important;
    max-width: 100% !important;
}
/*********************************
            New Css
*********************************/

/*********************************
            Media Queries
*********************************/

@media only screen and (min-width: 2100px) {
    .newSolarSection {
      padding: 300px 0px;
      background-size: 100% 100%;
  }
  .bannerContent {
      max-width: 650px;
  }
  .heroBannerSection {
      height: 100vh;
    }
    .heroBannerMain {
      /*margin-top: 250px;*/
    }
    .bannerContent h1 {
      font-size: 70px;
    }
}

@media only screen and (min-width: 1700px) {
  .bannerContentImage {
      right: -9%;
      top: -73px;
  }
  .bannerContentImage img {
      max-width: 530px;
  }
}


@media only screen and (max-width: 1028px) {
  .heroBannerBg {
      background-size: 100% 80%;
      background-position: center top -30px;
  }
}
@media only screen and (max-width: 1028px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
    .heroBannerSection {
        height: 80vh;
    }
    .bannerCardSingleHeading h3 {
        font-size: 16px;
    }
    
    .teragyVideoSection {
        padding: 60px 0px;
    }
    .whyChooseSection {
        height: 100vh;
    }
    .whyChooseMain {
        height: auto;
    }
    .whyChooseSection::after {
        clip-path: polygon(0 0, 100% 0, 100% 30%, 0 55%);
    }
    .whyChooseIcon img {
        max-width: 110px;
    }
    .bannerCardSingleHover {
      width: 225px;
  }
  .heroBannerBg {
    background-size: 100% 90%;
    background-position: center top -8px;
  }
}


@media only screen and (max-width: 992px) {
    .bannerCardSingle {
        flex: 2 2 300px;
    }
    .bannerCardSingle:hover {
        flex-grow: 3;
        flex: 5 5 300px;
    }
    .cardHoverIntro p {
        font-size: 12px;
    }
    .cardList ul li a {
        font-size: 16px;
    }
    .bannerCardSingleHeading h3 {
        font-size: 20px;
    }
    .heroBannerSection {
        height: auto;
    }
    
    .heroBannerBg {
        background-size: 1000px 100%;
        background-position: center top -280px;
    }
    .sectionIntro {
        max-width: 100%;
    }
    .shopCategoryContainer {
        margin: 60px 0px 0px;
    }
    
    .shopCategoryHeading h3 {
        font-size: 30px;
    }
    
    .shopCategoryBottom p {
        font-size: 16px;
    }
    
    .shopCategoryImage img {
        max-width: 55%;
    }
    
    .shopCategoryBottom h5 {
        font-size: 20px;
    }
    
    .customerSayingSection {
        padding: 70px 0px 0px;
    }
    
    .customerSayingFlex {
        margin: 70px 0px 0px;
    }
    
    .customerSayingSingle {
        width: 44%;
    }
    
    .customerSayingFlex {flex-wrap: wrap;}
    
    .whyChooseIcon img {
        max-width: 60px;
    }
    
    .whyChooseContent h3 {
        font-size: 14px;
        min-height: 40px;
    }
    
    .whyChooseContent p {
        font-size: 12px;
    }
    
    .newSolarContent {
        max-width: 550px;
    }
    
    .newSolarContentBox p {
        max-width: 100%;
    }
    
    .newSolarSection {
        padding: 80px 0px;
    }
    
    .newSolarContentBox {
        padding: 40px 40px;
    }
    
    .deeperSection {
        padding: 180px 0px 120px;
    }
    
    .deeperSectionContent h2 {
        font-size: 30px;
    }
    
    .deeperSectionContent h3 {
        font-size: 20px;
    }

    .heroBannerBg {
      background-size: 1000px 60%;
      background-position: center top -30px;
    } .bannerCardSingleHover {
      width: 176px;
  }
}
@media only screen and (max-width: 767px) {
  .heroBannerBg {
      background-size: 1000px 55%;
  }
  .bannerContent {
      padding: 100px 0px 0px 0px;
      max-width: 400px;
  }
  
  .bannerContent h1 {
      font-size: 40px;
    }
}

@media only screen and (max-width: 700px) {
  .heroBannerBg {
      background-size: 820px 27%;
      background-position: center top 30px;
  }
}

@media only screen and (max-width: 620px) {
  .bannerContent h1 {
      font-size: 35px;
  }
  .bannerContent {
      padding: 100px 0px 0px 0px;
      max-width: 320px;
  }
}
@media only screen and (max-width: 600px) {
    .bannerContent h1 {
        font-size: 36px;
    }
    
    .bannerContent p {
        font-size: 15px;
        line-height: 1.3;
    }
    
    .heroBannerBg {
        display: none;
    }
    
    .bannerMobileBg {
        display: block;
        background-size: cover;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 850px;
    }
    
    .bannerContent {
        margin: 300px 0px 0px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .bannerCardsContent {
        margin: 20px 0px 0px;
    }
    
    .bannerCardSingle {
        flex: 2 2 100%;
    }
    
    .bannerCardSingleNonhover {
        display: flex;
        height: auto;
    }
    
    .bannerCardSingleImage {
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
        width: 45%;
        height: 130px;
    }
    
    .bannerCardSingleHeading {
        height: auto;
        width: 60%;
    }
    
    .bannerCardSingle {
        height: auto;
    }
    
    .bannerCardSingleHeading h3 {
        font-size: 18px;
    }
    
    .bannerCardSingleArrow {
        bottom: 0;
        background: transparent;
        width: 45px;
        height: 45px;
    }
    
    .bannerCardSingle:nth-child(1) .bannerCardSingleArrow,.bannerCardSingle:nth-child(2) .bannerCardSingleArrow,.bannerCardSingle:nth-child(3) .bannerCardSingleArrow,.bannerCardSingle:nth-child(4) .bannerCardSingleArrow {
        background: transparent;
    }
    
    .teragyVideoSection {
        padding: 50px 0px 20px;
        background-position: top;
    }
    
    .sectionIntro {
        text-align: left;
    }
    
    .sectionIntro h2 {
        font-size: 32px;
    }
    
    .sectionIntro p {
        font-size: 16px;
    }
    
    .teragyVideoBox {
        margin: 30px 0px 0px;
    }
    
    .shopCategoryMain .sectionIntro {
        text-align: center;
    }
    
    .shopCategorySection {
        padding: 50px 0px 0px;
    }
    
    .shopCategorySingle {
        width: 100%;
    }
    
    .shopCategoryTop {
        height: 250px;
    }
    
    .shopCategoryImage img {
        max-width: 40%;
    }
    
    .shopCategpryLink a i {
        padding: 15px 30px;
    }
    
    .customerSayingMain .sectionIntro {
        text-align: center;
    }
    
    .customerSayingSingle {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    .customerSayingImageBox {
        width: 48%;
    }
    
    .customerSayingContent {
        width: 46%;
    }
    
    .customerSayingBg {
        left: 5px;
        top: 5px;
    }
    
    .testimonialIcon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .customerSayingContent p {
        font-size: 16px;
    }
    
    .customerSayingSingle:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .whyChooseInner {
        padding: 30px 15px;
    }
    
    .whyChooseFlex {flex-wrap: wrap;}
    
    .whyChooseSingle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .whyChooseIcon {
        width: 20%;
    }
    
    .whyChooseContent {
        width: 75%;
        text-align: left;
    }
    
    .whyChooseContent h3 {
        max-width: 100%;
        text-align: left;
        min-height: auto;
        margin-bottom: 0px;
    }
    
    .whyChooseContent p {
        font-size: 11px;
    }
    
    .whyChooseMain img {object-fit: cover;}
    
    .newSolarSection {
        padding: 150px 0px 80px;
    }
    
    .newSolarContentBox p {
        font-size: 14px;
    }
    
    .newSolarLink a p {
        font-size: 16px;
        width: 80%;
    }
    
    .newSolarLink a i {
        width: 20%;
    }
    
    .deeperSectionMain {
        padding: 0;
    }
    
    .deeperSectionContent h3 {
        font-size: 18px;
        max-width: 60%;
    }
    .bannerCardSingleHover {
        position: relative;
        visibility: visible;
        opacity: 1;
        width: 100%;
        height: auto;
        display: none;
    }
    
    .bannerCardSingle:hover .bannerCardSingleNonhover {
        width: 100%;
        max-width: 100%;
    }
    
    .cardList ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }
    
    .bannerCardSingle:hover .bannerCardSingleHover {
        display: none;
    }
    .categoryLink {
        height: 545px;
    }
    .shopCategorySingle:hover .shopCategoryHeading h3 {
        font-size: 38px;
    }
    .shopCategorySingle:hover .shopCategoryImage {
        max-width: 100%;
    }
    .customerSayingImage {
        height: 165px;
    }
/*   .customerSayingSingle:hover .customerSayingImage {
        height: 175px;
        width: 175px;
    }
    
    .customerSayingImage.active {
        width: 175px;
        height: 175px;
    } */

  
  .teragyVideoSection {
    background-position: center;
  }
  .customerSayingImageBox {
      position: relative;
      height: 170px;
  }
  .customerSayingSingle {
      align-items: center;
  }
  .whyChooseContent p {
    margin: 3px 0px 0px;
    font-size: 12px;
  }
  .whyChooseSection {
      height: 140vh;
        background-color: #fff;
  }
  .whyChooseBackground {
    height: 300px;
    top: auto;
    bottom: 0;
}
  #shopify-section-header .header-sticky-wrapper .site-header {
    background-color: rgba(0, 0, 0, 0.4);
}
  .whyChooseMain {
    background: transparent !important;
}

.chooselinesMobile {
    height: 180px;
    position: relative;
    z-index: 2;
}

.chooselinesMobile img {
    height: 100%;
    object-fit: contain;
}
  .whyChooseMain .container {
    padding: 0px;
}
  .bannerCardSingleHover.active {
    display: block !important;
}
.chooselinesMobile {
    display: block;
}
  .whyChooseInner {
    box-shadow: none;
    background: transparent;
        padding: 75px 15px;
}
  
.customerSayingSingle:first-child {
    margin: 0px;
}

.customerSayingFlex {
    margin: 25px 0px 0px;
}

  .bannerCardSingleImage {
    position: relative;
    top: auto;
    bottom: auto;
}
  .whyChooseSection {
    display: flex;
    flex-direction: column;
    height: auto;
}

.whyChooseBackground {
    order: 3;
    position: relative;
}

.chooselinesMobile {
    order: 1;
}

.whyChooseMain {
    order: 2;
}
  .sectionIntro h2 {
    text-align: center;
}
  .bannerContent {
    max-width: 100%;
    padding: 0px;
}

.bannerContent h1 {
    font-size: 36px;
}

.bannerMobileBg {
    background-position: center top 40px;
}
  .newSolarSection {
    padding: 100px 0px 80px;
    background-size: cover;
}
  .teragyVideoSection {
    background-position: center;
    background-size: cover;
}
  #shopify-section-header .header-sticky-wrapper .site-header {
    background-color: #fff;
}
  .site-header__logo {
    width: 140px !important;
}
}

/*********************************
            Media Queries
*********************************/

@media only screen and (max-width: 1028px) {
  .bannerContentImage img
{
  max-width:450px;
  padding: 25px 50px;
}
}
@media only screen and (min-width: 769px) {
  .heroBannerSection
{
  top: -77px;
}
  .heroBannerSection .heroBannerMain
  {
    padding-top:75px;
  }
}


/*  Teamseven */
  .site-nav__dropdown:not(.megamenu){
    display: none;
  }
  .site-nav__dropdown li {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
  }
  
  .site-nav__dropdown-link--second-level::after {
    height: 0px !important;
  }

  .site-nav__dropdown-link--second-level:hover::after {
      width: 100% !important;
      left: 0 !important;
  }

  .site-nav__dropdown {
/*     margin-top: 10px; */
  }

  .newSolarLink p,
  .deepeLink p {
    margin: 0;
  }

.readmore {
  color: #30bb9f;
  font-weight: 500;
}

#shopify-section-article-template,
#shopify-section-blog-template {
  background-position: top left;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-image: url(https://teragysolar.com/cdn/shop/t/39/assets/main-content-bg.jpg);
}

#BlogTagFilter {
  background-color: #fff;
  padding: 0.8rem;
}

/* Blog */

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

.title-blog .badge {
  background-color:#E4F5F1;
  color: #30BA9E;
}

.article-featured-img {
  object-fit: cover;
  max-height: 376px;
}

.blog-width {
  max-width: 1200px;
}

.container-blog {
  max-width: 1500px;
  padding-left: 15px;
  padding-right: 15px;
}

.blog-grid .card-img-top {
  height: 30vh;
  object-fit: cover;
}