/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Racing+Sans+One&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Syne:wght@400..800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Syne&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Poppins", serif; */
    font-family: "Public Sans", serif;
}
:root{
    /* Original Green */
    /* --midnight: rgb(153, 0, 0);
    --forest-green: rgb(226, 147, 0); */

    /* --midnight: #CA1409;
    --forest-green: #FF7808; */

    /* --midnight: #FF4500 ;
    --forest-green: #FFA500; */

    /* --midnight: #B22222;
    --forest-green: #FF8C00; */

    /* --midnight: #C21807  ;
    --forest-green: #ff9100  ; */


    /* --------------------------------------------------  ; */

    /* --midnight: #C21807;
    --forest-green: #F85606; */

    /* --midnight: #C0392B;
    --forest-green: #FF6B35; */

    /* --midnight: #990000;
    --forest-green: #E4572E; */

    /* --midnight: #E60012;
    --forest-green: #FF4500; */

    --midnight: #800000;
    --forest-green: #FF5733;



    /* --midnight: #972436;
    --forest-green: #EE441A; */

    /* --midnight: #C12716;
    --forest-green: #FA471A; */

    /* Sky Blue */
    /* --midnight: #03A9F4;
    --forest-green: #80d7ff; */

    /* Yellow */
    /* --midnight: #03A9F4;
    --forest-green: #fff0c2; */

    /* Google 01 */
    /* --midnight: #2C6777;
    --forest-green: #52AB99; */
    
    /* Google 02 */
    /* --midnight: #44576D;
    --forest-green: #AAC7D8; */
        
    /* Google 03 */
    /* --midnight: #092D47;
    --forest-green: #08A99F; */
            
    /* Google 04 */
    /* --midnight: #2a776a;
    --forest-green: #4E8E20; */
                
    /* Google 05 */
    /* --midnight: #336206;
    --forest-green: #7A9E06; */
    
    /* Google 06 */
    /* --midnight: #1C6000;
    --forest-green: #27A102; */

    /* Google 07 */
    /* --midnight: #FFAF50;
    --forest-green: #ffdaa3; */
    
    /* Google 08 */
    /* --midnight: #0A61CB;
    --forest-green: #759FC9; */

    /* Google 09 */
    /* --midnight: #010E54;
    --forest-green: #0855B1; */
    
    /* Google 10 */
    /* --midnight: #124E65;
    --forest-green: #748C92; */
    
    /* Google 11 */
    /* --midnight: #336997;
    --forest-green: #90BBDE; */

    /* Google 12 */
    /* --midnight: #012756;
    --forest-green: #01437D; */

    /* Google 13 */
    /* --midnight: #00526d;
    --forest-green: #0B7C9E; */

    --fresh-cream: #fff5dd;
    --cloud-white: #FDFCF7;
    --sky-blue: #a2d8e2d2;
    --storm-cloud: #686866;
    --clr-tag1: #ff9100;
    --clr-tag2: #C21807;
}
html{
    scroll-behavior: smooth;
}
body{
    width: 100%;
    background-color: #fff;
    /* background: var(--cloud-white); */
    animation: fade 0.7s ease-in-out;
}
textarea{
    resize: none;
}
.public-sans {
    font-family: "Public Sans", serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.exo-custom {
    font-family: "Exo", serif;
    font-optical-sizing: auto;
    font-style: normal;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Exo", serif;
    font-weight: 800;
}
p{
    line-height: 1.6;
}
@keyframes fade {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
.reveal{
    opacity: 0;
    transform: translateY(150px);
    animation: 8s appear ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}
@keyframes appear {
    from{
        opacity: 0;
        transform: translateY(150px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}
body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}
.deal-ticker{
    font-size: 15px;
    padding-block: 8px;
    border-block: 1px solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    user-select: none;
    position: sticky;
    --gap: 20px;
    gap: var(--gap);
    top: 90px;
    z-index: 800;
    background: var(--midnight);
}
.deal-ticker p{
    flex-shrink: 0;
    padding-left: 10px;
    padding-right: 10px;
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap);
    color: white;
    animation: scroll 10s linear infinite;
}
.deal-ticker:hover p{
    animation-play-state: paused;
}
@keyframes scroll {
    to{
        transform: translateX(calc(-100% - var(--gap)));
    }
}
/* .deal-ticker p:first-child{
    background: var(--midnight);
    color: white;
}
.deal-ticker p:last-child{
    background: var(--forest-green);
    color: white;
} */
.panel-buttons{
    width: 100%;
    height: 60vh;
    display: flex;
}
.panel-button{
    width: 100%;
    height: 100%;
    padding: 2%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.panel-button:hover a{
    border-bottom: solid 2.7px #FF5733;
}
.panel-button a{
    text-decoration: none;
    color: white;
    text-align: left;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 29px;
    width: 100%;
    height: 100%;
    font-family: "Exo", serif;
    line-height: 1.5;
    padding-bottom: 2px;
}
.panel-button:nth-child(1){
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url(../images/panel-marketplace.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.panel-button:nth-child(2){
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url(../images/panel-sell.jpg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
}
.panel-button:nth-child(3){
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url(../images/panel-deals.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.panel-button:nth-child(4){
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url(../images/panel-service.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.panel-button:nth-child(5){
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url(../images/panel-diy.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.panel-button:nth-child(6){
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url(../images/panel-accessories.jpg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
}
.first{
    width: 100%;
    height: 90vh;
    gap: 4%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3%;
}
.first-sides{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.first-side{
    width: 100%;
    height: 50%;
    background: #ebebeb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 8%;
    text-align: left;
    /* border-image: linear-gradient(right, var(--forest-green) 50%, var(--midnight) 50%) 2; */
    /* border: solid 3px var(--forest-green);
    outline: solid 3px var(--midnight); */
    /* border: solid 2px #c7c7c7; */
}
.first-side img{
    height: 57px;
    width: 57px;
}
.first-side a{
    margin-top: 11px;
    width: 100%;
    background: var(--forest-green);
    text-align: center;
    color: black;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    padding-top: 11px;
    padding-bottom: 11px;
}
.first-side:nth-child(1){
    margin-bottom: 17px;
}
.mySlides {
    display: none;
    width: 100%;
    height: 100%;
}
.carousel{
    width: 65%;
    height: 100%;
}
.slideshow-container {
    max-width: 100%;
    height: 100%;
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 5px;
}
.slideshow-container .prev, .slideshow-container .next{
    position: absolute;
    cursor: pointer;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.slideshow-container .next{
    right: 0;
    border-radius: 3px 0 0 3px;
}
.slideshow-container .prev:hover, .slideshow-container .next:hover{
    background-color: rgba(0, 0, 0, 0.8);
}
.mySlides .text{
    color: black;
    background: rgba(216, 216, 216, 1);
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 37px;
}
.mySlides .numbertext{
    color: black;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    font-weight: bold;
    top: 0;
}
.dot{
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.mySlides img{
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    display: block;
}
.dot.active, .dot:hover{
    background-color: #717171;
}
.slideshow-container .fade{
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}
@-webkit-keyframes fade {
    from{
        opacity: 0.4;
    }
    to{
        opacity: 1;
    }
}
@keyframes fade {
    from{
        opacity: 0.4;
    }
    to{
        opacity: 1;
    }
}
.bannerBottom{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
}
.bbCard{
    width: 275px;
    height: 300px;
    padding: 2%;
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    padding-top: 1%;
    background: transparent;
    color: var(--midnight);
    border-bottom: 4px solid transparent;
    transition: all 0.2s ease;
    border-right: solid 1.3px var(--forest-green);
}
.bbCard:last-child{
    border: none;
}
.bbCard:hover{
    border-bottom: 4px solid var(--midnight);
}
.bbCard h4{
    font-weight: 600;
}
.bbCard p{
    color: var(--midnight);
}
.bbCard img{
    width: 75px;
    height: 75px;
}
.bbCard button{
    width: 127px;
    height: 47px;
    margin-top: 8%;
    outline: none;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    background: var(--midnight);
}
.bbCard button a{
    color: white;
    text-decoration: none;
}
.bbCard button:hover{
    background: var(--forest-green);
    color: var(--midnight);
}
.buttons-main{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 3%;
    padding-left: 11%;
    padding-right: 11%;
}
.buttons{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3%;
}
.buttons button{
    height: 215px;
    width: 245px;
    outline: none;
    border: none;
    font-size: 22px;
    padding: 13%;
    background: transparent;
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    text-align: left;
    cursor: pointer;
}
.buttons a{
    text-decoration: none;
}
/* .buttons button{
    text-decoration: none;
    background: var(--fresh-cream);
    height: 215px;
    width: 215px;
    outline: none;
    border: none;
    border-bottom: solid 2.5px var(--midnight);
    font-size: 19px;
    font-weight: 400;
    padding: 2%;
    margin: 2%;
    font-family: "Racing Sans One", serif;
    cursor: pointer;
    transition: all 0.8s ease-in-out;
}
.buttons a{
    text-decoration: none;
    color: var(--midnight);
    font-weight: 600;
}
.buttons button:hover{
    border: solid 2.5px var(--midnight);
} */
 /* .buttons button{
    text-decoration: none;
    background: transparent;
    border: none;
 }
.buttons a {
    position: relative;
    display: inline-block;
    padding: 25px 35px;
    border: 2px solid var(--midnight);
    text-transform: uppercase;
    text-align: center;
    color: var(--midnight);
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: 0.3s;
    vertical-align: center;
    width: 275px;
    margin: 11%;
  }
  
.buttons a::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% - -2px);
    background-color: #ebebeb;
    transition: 0.3s ease-out;
    transform: scaleY(1);
  }
  
.buttons a::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% - 50px);
    background-color: #ebebeb;
    transition: 0.3s ease-out;
    transform: scaleY(1);
  }
  
.buttons a:hover::before {
    transform: translateY(-25px);
    height: 0;
  }
  
.buttons a:hover::after {
    transform: scaleX(0);
    transition-delay: 0.15s;
  }
  
.buttons a:hover {
    border: 2px solid var(--midnight);
  }
  
.buttons a span {
    position: relative;
    z-index: 3;
  } */
.fourth{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3%;
    padding-left: 8%;
    padding-right: 8%;
}
.fourth h4, .fifth h4, .home-services h4{
    font-size: 26px;
    font-weight: 600;
}
.fourth-cards{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3%;
    margin-top: 2%;
    flex-wrap: wrap;
}
.fourth-cards .fourth-card{
    width: 275px;
    font-size: 17px;
    font-weight: 600;
    padding: 1%;
    padding-left: 0;
    padding-right: 2%;
    margin-bottom: 3%;
    background: transparent;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border-bottom: solid 2.4px transparent;
    /* border-radius: 11px; */
}
.fourth-cards .fourth-card a{
    text-decoration: none;
    font-weight: 700;
    color: black;
}
.fourth-cards .fourth-card img{
    width: 100%;
    height: 275px;
    object-fit: cover;
    object-position: center;
    /* border-top-left-radius: 11px;
    border-top-right-radius: 11px; */
}
.fourth-cards .fourth-card p{
    margin-top: 3%;
    margin-bottom: 2%;
}
.fourth-cards .fourth-card:hover{
    border-bottom: solid 2.4px var(--forest-green);
}

/* .fourth-cards .fourth-card:hover{
    scale: 1.01;
    transform: translateY(11px);
    box-shadow: 2px -13px 11px rgba(0, 0, 0, 0.17);
} */
/* .fourth-content{
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
} */
.fifth{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
}
.fifth-cards{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3%;
    margin-top: 2%;
    flex-wrap: wrap;
}
.fifth-card{
    position: relative;
    border: none;
}
.fifth-card .cardImg{
    width: 24rem;
    height: 24rem;
    border-radius: 1.25rem;
    border: 0.5rem solid #c7c7c7;
    overflow: hidden;
    position: relative;
}
.fifth-card .cardImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fifth-card .tag{
    width: 12.5rem;
    height: 3.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--cloud-white);
    border-top: 0.5rem solid #c7c7c7;
    border-left: 0.5rem solid #c7c7c7;
    border-radius: 1.25rem 0 0 0;
    padding: 0.3125rem;
}
.fifth-card .tag::after{
    width: 1.125rem;
    height: 1.125rem;
    content: "";
    position: absolute;
    background: transparent;
    top: -1.125rem;
    right: 0;
    border-bottom-right-radius: 0.625rem;
    box-shadow: 0.375rem 0.375rem var(--cloud-white);
}
.fifth-card .tag::before{
    width: 1.125rem;
    height: 1.25rem;
    content: "";
    position: absolute;
    background: transparent;
    right: 0.5rem;
    top: -1.75rem;
    border-bottom-right-radius: 0.625rem;
    box-shadow: 0.375rem 0.375rem #c7c7c7;
}
.fifth-card .curve_one, .fifth-card .curve_two{
    width: 1.25rem;
    height: 1.25rem;
    content: "";
    position: absolute;
    display: none;
}
.fifth-card .curve_one{
    background-color: transparent;
    left: 45%;
    bottom: 0.5rem;
    border-bottom-right-radius: 0.625rem;
    box-shadow: 0.375rem 0.375rem #c7c7c7;
    display: none;
}
.fifth-card .curve_two{
    background-color: transparent;
    left: 47%;
    bottom: 0;
    border-bottom-right-radius: 0.625rem;
    box-shadow: 0.375rem 0.375rem var(--cloud-white);
}
.fifth-card .tag > p{
    background: var(--forest-green);
    color: white;
    font-size: 0.875rem;
    padding-top: 0.5rem 0.625rem;
    width: 95%;
    height: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3125rem;
    border-radius: 0.3125rem;
}
.fifth-card .tag > p > span{
    font-weight: 600;
}
.home-services{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3%;
    padding-left: 8%;
    padding-right: 8%;
}
.home-services-cards{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3%;
    margin-top: 2%;
    flex-wrap: wrap;
}
.home-services-cards .home-services-card{
    width: 275px;
    font-size: 17px;
    font-weight: 600;
    padding: 1%;
    padding-right: 2%;
    padding-left: 0;
    margin-bottom: 3%;
    background: transparent;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border-bottom: 2.4px solid transparent;
    /* border-radius: 11px; */
}
.home-services-cards .home-services-card a{
    text-decoration: none;
    color: black;
    font-weight: 700;
}
.home-services-cards .home-services-card img{
    width: 100%;
    height: 275px;
    object-fit: cover;
    object-position: center;
    /* border-top-left-radius: 11px;
    border-top-right-radius: 11px; */
}
.home-services-cards .home-services-card p{
    margin-top: 3%;
    margin-bottom: 2%;
}
.home-services-cards .home-services-card:hover{
    border-bottom: solid 2.4px var(--forest-green);
}

/* .home-services-cards .home-services-card:hover{
    scale: 1.01;
    transform: translateY(11px);
    box-shadow: 2px -13px 11px rgba(0, 0, 0, 0.17);
} */
/* .sixth{
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
    padding-top: 2%;
}
.sixth-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4%;
    margin-top: 2%;
    flex-wrap: wrap;
} */
  
/* .sixth-article{
    position: relative;
    overflow: hidden;
    margin-bottom: 4%;
    cursor: pointer;
}
.sixth-image{
    width: 275px;
    height: 275px;
    object-fit: cover;
    object-position: center;
    border-radius: 1.1rem;

}
.sixth-data{
    width: 237px;
    background: var(--forest-green);
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 24px hsla(0%, 0%, 0%, 0.15);
    border-radius: 0.8rem;
    position: absolute;
    bottom: -9rem;
    left: 0;
    right: 0;
    margin-inline: auto;
    opacity: 0;
    transition: opacity 1s 1s;
}
.sixth-title{
    font-size: 1.1rem;
    font-weight: 500;
    color: black;
    margin-bottom: 0.57rem;
}
.sixth-button{
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}
.sixth-button:hover{
    text-decoration: underline;
}
.sixth-article:hover .sixth-data{
    animation: show-data 1s forwards;
    opacity: 1;
    transition: opacity 0.3s;
}
.sixth-article:hover{
    animation: remove-overflow 2s forwards;
}
.sixth-article:not(:hover){
    animation: show-overflow 2s forwards;
}
.sixth-article:not(:hover) .sixth-data{
    animation: remove-data 1s forwards;
}
@keyframes show-data {
    50%{
        transform: translateY(-10rem);
    }
    100%{
        transform: translateY(-7rem);
    }
}
@keyframes remove-overflow {
    to{
        overflow: initial;
    }
}
@keyframes remove-data {
    0%{
        transform: translateY(-7rem);
    }
    50%{
        transform: translateY(-10rem);
    }
    100%{
        transform: translateY(0.5rem);
    }
}
@keyframes show-overflow {
    0%{
        overflow: initial;
        pointer-events: none;
    }
    50%{
        overflow: hidden;
    }
} */
.seventh{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url(../images/news.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 50vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 10%;
}
.seventh h1{
    color: white;
    width: 100%;
    text-align: center;
    margin-bottom: 1.3%;
    font-size: 1.8rem;
}
.seventh button{
    width: 127px;
    height: 47px;
    font-weight: 500;
    outline: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.seventh button:hover{
    background: var(--forest-green);
    color: white;
    /* scale: 0.97; */
    /* transform: translateY(-8px); */
}
.eighth{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6%;
    gap: 4%;
}
.eighth img{
    height: 35%;
    width: 475px;
    object-fit: cover;
    object-position: center;
    border-radius: 11px;
}
.eighth-content{
    width: 50%;
    padding-right: 3%;
}
.ninth{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url(../images/contact.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 50vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 10%;
}
.ninth h1{
    color: white;
    width: 47%;
    text-align: center;
    margin-bottom: 1.3%;
    font-size: 1.8rem;
}
.ninth button{
    width: 127px;
    height: 47px;
    outline: none;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.ninth button:hover{
    background: var(--forest-green);
    color: white;
}
.contact-bg{
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(../images/contact.jpeg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-bg p{
    width: 75%;
    padding-left: 4%;
    padding-right: 4%;
}
.contact-line div{
    margin: 0 0.2rem;
}
.contact-line div:nth-child(1),
.contact-line div:nth-child(3){
    height: 3px;
    width: 70px;
    background: var(--midnight);
    border-radius: 5px;
}
.contact-line{
    display: flex;
    align-items: center;
}
.contact-line div:nth-child(2){
    width: 10px;
    height: 10px;
    background: var(--midnight);
    border-radius: 50%;
}
.contact-text{
    font-weight: 300;
    opacity: 0.9;
}
.contact-bg .contact-text{
    margin: 1.6rem 0;
    width: 75%;
}
.contact-body{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}
.contact-info{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    text-align: center;
    padding: 2rem 0;
}
.contact-info span{
    display: block;
}
.contact-info div{
    margin: 0.8rem 0;
    padding: 2rem;
    width: 50%;
    /* padding-left: 6rem;
    padding-right: 6rem; */
    background: #ebebeb;
}
.contact-info div:nth-child(1){
    border-right: solid 1.7px #c7c7c7;
}
.contact-info span .fas{
    font-size: 2rem;
    padding-bottom: 0.9rem;
    color: var(--midnight);
}
.contact-info div span:nth-child(2){
    font-weight: 500;
    font-size: 1.1rem;
}
.contact-info .contact-text{
    padding-top: 0.4rem;
}
.contact-form{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4%;
    padding: 2rem 0;
    border-top: 1px solid #c7c7c7;
}
.contact-form form{
    width: 75%;
    padding-bottom: 1rem;
}
.form-control{
    width: 100%;
    border: 1.5px solid #c7c7c7;
    border-radius: 5px;
    padding: 0.7rem;
    margin: 0.6rem 0;
    outline: 0;
}
.form-control:focus{
    box-shadow:  0 0 6px -3px rgba(48, 48, 48, 1);
}
.contact-form form div{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.6rem;
}
.send-btn{
    margin-top: 1%;
    text-transform: uppercase;
    color: white;
    background: var(--midnight);
    border: none;
    border-radius: 5px;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
}
.send-btn:hover{
    opacity: 0.8;
}
.contact-form > div img{
    width: 100%;
    height: 100%;
}
.contact-form > div{
    width: 35%;
    height: 35%;
    text-align: center;
}
.sell-bg{
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(../images/sell.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sell-container{
    width: 100%;
    padding: 6%;
    padding-top: 4%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sell-container form{
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sell-form h1{
    width: 100%;
    text-align: center;
    font-size: 2.7rem;
    padding-bottom: 1%;
    margin-bottom: 4%;
    border-bottom: solid 1.1px #c7c7c7;
}
.sell-form .image-text{
    text-align: left;
    width: 100%;
    margin-top: 1%;
    margin-bottom: 1%;
}
.sell-form{
    padding-top: 3%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sell-form input, .sell-form select{
    width: 100%;
    margin: 0.8%;
    height: 57px;
    padding: 1.7%;
    border: 1.5px solid #c7c7c7;
    border-radius: 5px;
    outline: none;
    background: white;
}
.sell-form div.name-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1.1%;
}
.sell-form div.radio-container{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.sell-form div.radio-container input{
    width: 2%;
    margin-right: 8px;
}
.sell-form div.radio-container input:last-child{
    margin-left: 37px;
}
.sell-form div input{
    width: 50%;
    margin-left: 0;
    margin-right: 0;
}
h1.sep-heading{
    margin-top: 5%;
}

.sell-form textarea{
    width: 100%;
    margin: 0.8%;
    padding: 1.7%;
    border: 1.5px solid #c7c7c7;
    border-radius: 5px;
    outline: none;
    background: white;
}
.sell-form input[type="submit"]{
    background: var(--midnight);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}
.sell-form input[type="submit"]:hover{
    background: var(--forest-green);
    color: black;
}
.pur-bg{
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(../images/purchase.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.purchase{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.purchase-top{
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4%;
    line-height: 1.7;
    text-align: center;
}
.purchase-bottom{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    justify-content: center;
    align-items: center;
}
/* .purchase-card{
    margin: 1%; */
    /* border: solid 2px var(--forest-green); */
    /* border-top-right-radius: 85px;
    border-bottom-left-radius: 85px; */
    /* background: #FF7808; */
    /* background: #ebebeb;
    border-radius: 13px;
    padding: 3%;
    padding-left: 5%;
    width: 85%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap; */
    /* cursor: pointer; */
    /* transition: all 0.3s ease-in-out; */
/* } */
/* .purchase-card:hover{
    transform: translateY(-11px);
} */
/* .purchase-content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    width: 50%;
    line-height: 2.1;
    text-align: left;
}
.purchase-images{
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}
.purchase-images img{
    margin: 1%;
    width: 235px;
    height: 235px;
    object-fit: cover;
    object-position: center; */
/* } */
.nb-main{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2%;
    padding: 4%;
}
.nb-bg{
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url(../images/nb.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main-blog{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.blog-bg{
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url(../images/blog.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 8%;
    padding-right: 8%;
}
.blog-container {
    width: 100%;
    margin: 4%;
    /* padding-left: 13%; */
    /* padding-right: 13%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.blog-container a{
    text-decoration: none;
    color: white;
    background: var(--forest-green);
    margin-top: 11px;
    padding: 13px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}
.blog-container a:hover{
    background: var(--midnight);
}
.side-blogs{
    width: 35%;
    padding: 4%;
    padding-left: 0;
}
.side-blog-card{
    background: rgb(228, 228, 228);
    padding: 8%;
    margin-bottom: 11px;
}
.blog-container h1 {
    color: #333; 
}
.blog-container h3 { 
    color: #555; 
}
.blog-container p { 
    font-size: 18px; 
}
.blog-container i{
    color: #6b6b6b;
    font-size: 15px;
}
.nb-bg p, .blog-bg p{
    width: 85%;
    padding-left: 4%;
    padding-right: 4%;
}
.news{
    width: 70%;
}
.news h1,.blogs h1{
    padding-bottom: 1%;
}
.blogs{
    width: 30%;
}
.news-card{
    margin-bottom: 2%;
    line-height: 1.3;
    padding: 4%;
    width: 100%;
    background: #ebebeb;
}
.blogs-card{
    padding: 8%;
    line-height: 1.3;
    margin-bottom: 4%;
    width: 100%;
    background: #ebebeb;
}
.news-card h3, .blogs-card h3{
    font-size: 21px;
}
.news-card a:hover, .blogs-card a:hover{
    color: var(--midnight);
}
.news-card a, .blogs-card a{
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.cs-bg{
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url(../images/cleaning-service.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cs-bg p{
    width: 65%;
    padding-left: 4%;
    padding-right: 4%;
}
.cs-container{
    margin-top: 2%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cs-cards{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 1%;
    padding-left: 5%;
    padding-right: 5%;
}
.cs-card{
    margin: 8px;
    width: 455px;
    padding: 2.5%;
    background: #ebebeb;
    text-align: center;
}
.cs-top{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 9%;
    text-align: left;
    margin-bottom: 8%;
}
.cs-top img{
    width: 127px;
    height: 127px;
    object-fit: cover;
    object-position: center;
}
.cs-card button{
    width: 100%;
    outline: none;
    border: none;
    border-radius: 4px;
    background: var(--forest-green);
    padding: 4%;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1.03px;
    color: white;
    cursor: pointer;
    text-decoration: none;
}
.ia-bg{
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url(../images/ia.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ia-bg p{
    width: 85%;
    padding-left: 4%;
    padding-right: 4%;
}
.ia-container{
    margin-top: 2%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ia-cards{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2%;
    margin-top: 1.3%;
    margin-bottom: 3%;
    padding-left: 5%;
    padding-right: 5%;
}
.ia-card{
    width: 495px;
    padding: 2.5%;
    background: #ebebeb;
    text-align: center;
    border-top-right-radius: 75px;
    border-bottom-left-radius: 75px;
    margin-bottom: 3%;
}
.ia-card img{
    width: 25%;
    height: 100%;
    margin-bottom: 6%;
}
.ir-bg{
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url(../images/ir.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ir-bg p{
    width: 65%;
    padding-left: 4%;
    padding-right: 4%;
}
.ir-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4%;
}
.ir-container h1{
    width: 75%;
    text-align: center;
    padding-bottom: 1.7%;
    margin-bottom: 4%;
    border-bottom: solid 1.1px #c7c7c7;
}
.ir-container .ir-form{
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ir-container .ir-form form input, .ir-container .ir-form form textarea{
    width: 100%;
    margin-bottom: 2.5%;
    height: 57px;
    padding: 1.7%;
    border: 1.5px solid #c7c7c7;
    border-radius: 5px;
    outline: none;
    background: white;
}
.ir-container .ir-form form textarea{
    height: 127px;
}
.ir-container .ir-form form input[type="submit"]{
    background: var(--midnight);
    color: white;
    cursor: pointer;
    margin-top: 1.9%;
    transition: all 0.3s ease;
}
.ir-container .ir-form form input[type="submit"]:hover{
    background: var(--forest-green);
    color: black;
}
.deals-bg{
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url(../images/deals.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.deals-bg p{
    padding-left: 4%;
    padding-right: 4%;
    width: 75%;
}
.fifth-cards a{
    color: white;
    text-decoration: none;
}
.inverter-bg{
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url(../images/inverters.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.inverter-bg p{
    width: 75%;
    padding-left: 4%;
    padding-right: 4%;
}
.inverter-top-filter{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ebebeb;
}
.inverter-top-filter form{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2%;
}
.inverter-top-filter form div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6%;
    width: 20%;
    font-weight: 500;
}
.inverter-top-filter form div select{
    width: 150px;
    height: 45px;
    outline: none;
    padding: 3%;
    border: 1.5px solid #c7c7c7;
    border-radius: 4px;
    background: white;
}
.inverter-top-filter form button{
    height: 45px;
    padding-left: 25px;
    padding-right: 25px;
    background: var(--forest-green);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    outline: none;
    border: none;
    cursor: pointer;
}
.inverter-top-filter form a{
    height: 45px;
    padding-left: 25px;
    padding-right: 25px;
    background: var(--midnight);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    line-height: 45px;
    font-size: 0.95rem;
    outline: none;
    border: none;
}
/* .inverter-top-filter ul{
    display: flex;
    gap: 6%;
    list-style: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-bottom: solid #c7c7c7 1px;
    padding: 2%;
    margin-left: 17%;
    margin-right: 17%;
}
.inverter-top-filter ul li{
    position: relative;
    padding: 11px 13px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.inverter-top-filter ul li a{
    color: var(--midnight);
    text-decoration: none;
}
.inverter-top-filter ul li:hover {
    background: var(--midnight);
}
.inverter-top-filter ul li:hover a{
    color: white;
}
.inverter-top-filter ul li:hover .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.inverter-top-filter .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    margin-top: 2%;
    width: 200px;
    background-color: var(--forest-green) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
}
.inverter-top-filter .dropdown ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.1% !important;
}
.inverter-top-filter .dropdown ul li{
    border-radius: 0 !important;
    width: 100%;
}
.inverter-top-filter .dropdown-link {
    padding: 10px 15px;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}
.inverter-top-filter .dropdown-link:hover {
    background-color: var(--clr-dropdown) !important;
    color: var(--clr-light) !important;
}
.inverter-top-filter ul li:hover .dropdown,
.inverter-top-filter ul li:hover .dropdown,
.inverter-top-filter ul li .dropdown:hover {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
} */
.inverter-container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: 3%;
}
.inverter-card{
    width: 375px;
    margin: 1%;
    background: #ebebeb;
    padding: 1.3%;
}
.inverter-card .box .icon .iconBox{
    background: var(--forest-green);
}
.inverter-card ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
    list-style-type: none;
}
.inverter-card ul li{
    text-transform: uppercase;
    color: white;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.375rem 0.625rem;
    border-radius: 0.188rem;
}
.inverter-card ul li:nth-child(1){
    background: var(--clr-tag1);
}
.inverter-card ul li:nth-child(2){
    background: var(--clr-tag2);
}
.inverter-card ul li:nth-child(3){
    background: var(--clr-tag1);
}
.inverter-card .content{
    padding: 0.938rem 0.625rem;
}
.inverter-card .content h3{
    text-transform: uppercase;
    font-size: 1.4rem;
    /* font-size: clamp(1.5rem, 1.6909rem + 0.4364vw, 1.8rem); */
}
.inverter-card .content h4{
    margin-top: 8px;
}
.inverter-card .content h4 span{
    font-weight: 500;
}
.inverter-card .content p{
    margin: 0.625rem 0 1.25rem;
    color: #565656;
}
.inverter-card .card-inner{
    position: relative;
    width: 100%;
    height: 18.75rem;
    background: var(--cloud-white);
    /* border-radius: 1.25rem; */
    overflow: hidden;
}
.inverter-card .card-inner .box{
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
}
.inverter-card .card-inner .imgBox{
    position: absolute;
    inset: 0;
}
.inverter-card .card-inner .imgBox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inverter-card .card-inner .icon{
    position: absolute;
    bottom: -0.375rem;
    right: -0.375rem;
    width: 6rem;
    height: 6rem;
    background: #ebebeb;
    border-top-left-radius: 50%;
}
.inverter-card .card-inner .icon:hover .iconBox{
    transform: scale(1.1);
}
.inverter-card .card-inner .icon::before,
.inverter-card .card-inner .icon::after{
    content: '';
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
} 
.inverter-card .card-inner .icon::before{
    bottom: 0.375rem;
    left: -1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #ebebeb;
}
.inverter-card .card-inner .icon::after{
    top: -1.25rem;
    right: 0.375rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #ebebeb;
}
.inverter-card .card-inner .icon .iconBox{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    inset: 0.625rem;
    background: linear-gradient(135deg, var(--clr-tag1) 35%, var(--clr-tag2));
    border-radius: 50%;
    transition: 0.3s all ease-in-out;
}
.inverter-card .card-inner .icon .iconBox span{
    color: white;
    font-weight: 600;
    font-size: 1.3rem;
}
.search-results-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2%;
}
.search-results-container h1{
    width: 75%;
    text-align: center;
    padding-bottom: 1.7%;
    border-bottom: solid 1.1px #c7c7c7;
}
.search-bg{
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url(../images/search.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.search-bg p{
    width: 75%;
    padding-left: 4%;
    padding-right: 4%;
}
.sq-bg{
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url(../images/sq.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sq-bg p{
    width: 85%;
    padding-left: 4%;
    padding-right: 4%;
}
.sq-docs{
    padding: 3%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.sq-doc{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 3%;
}
.sq-doc a{
    min-width: 275px;
    width: 47%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: black;
    height: 35px;
    padding: 2%;
    margin-top: 2%;
    margin-bottom: 3%;
    border-bottom: 1.5px solid #c7c7c7;
    transition: all 0.3s ease;
}
.sq-doc a:hover{
    background: #c7c7c7;
}
.sq-docs h2{
    font-family: 'Poppins', sans-serif;
    margin-bottom: 4%;
}
.sq-form-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sq-form-div{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sq-form-div h2{
    margin-bottom: 17px;
}
.sq-form-div form{
    width: 90%;
}
.sq-form-div input[type="text"]{
    width: 100%;
    height: 57px;
    margin-top: 11px;
    margin-bottom: 27px;
    padding: 1.7%;
    border: 1.5px solid #c7c7c7;
    border-radius: 5px;
    outline: none;
    background: white;
}
.sq-form-div select{
    width: 100%;
    height: 57px;
    margin-top: 11px;
    margin-bottom: 27px;
    padding: 1.3%;
    border: 1.5px solid #c7c7c7;
    border-radius: 5px;
    outline: none;
    background: white;
}
.sq-form-div h4{
    width: 100%;
    margin-top: 2%;
    padding-top: 2%;
    padding-bottom: 2%;
    border-top: 1.5px solid #c7c7c7;
}
.sq-form-container input[type="submit"], .sq-form-container button{
    width: 100%;
    height: 57px;
    border: 1.5px solid #c7c7c7;
    border-radius: 5px;
    font-size: 0.9rem;
    outline: none;
    background: var(--midnight);
    color: white;
    cursor: pointer;
    margin-top: 1.3%;
    margin-bottom: 2%;
    transition: all 0.3s ease;
}
.sq-form-container input[type="submit"]:hover, .sq-form-container button:hover{
    background: var(--forest-green);
    color: black;
}
.sq-form-container p{
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}

.product-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2%;
}
.product-main{
    margin-top: 2%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.product-main .pro-slider {
    width: 55%;
    height: 475px;
    overflow: hidden;
    position: relative;
}
.product-main .pro-slider-images {
    height: 100%;
    width: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.product-main .pro-slider-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-main .prev, .product-main .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    cursor: pointer;
}
.product-main .prev {
    left: 10px;
}
.product-main .next {
    right: 10px;
}
.pro-content{
    width: 35%;
    height: 100%;
}
.pro-content .pro-box{
    width: 100%;
    padding: 6%;
    border: solid 1.3px #ddd;
    /* background: #ebebeb; */
    margin: 3%;
    margin-top: 0;
    line-height: 37px;
}
.pro-content .pro-box span{
    font-weight: 600;
}
.pro-content .pro-box button{
    text-decoration: none;
    color: white;
    background: var(--forest-green);
    text-align: center;
    height: 47px;
    width: 100%;
    font-weight: 500;
    outline: none;
    border: none;
    margin-top: 11px;
    cursor: pointer;
}
.pro-main{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: flex-start;
    gap: 3%;
    padding-left: 5%;
    margin-top: 2%;
}
.pro-main01{
    width: 68%;
    padding: 3%;
    border: solid 1.3px #ddd;
    /* background: #ebebeb; */
    margin-top: 0;
    line-height: 37px;
}
.pro-main01 span{
    font-weight: 600;
}
.pro-main01:last-child{
    width: 25%;
    min-width: 275px;
}



/* @media (max-width: 898px) {
    .sixth-container {
        justify-content: center;
    }

    .sixth-container .fourth-card {
        width: 45%;
    }
} */
/* @media (max-width: 700px) {
    .sixth {
        align-items: center;
        text-align: center;
    }
    .sixth-container {
        width: 100%;
        flex-direction: row;
        align-items: center;
    }
    .sixth-container .fourth-card {
        width: 40%;
        margin-bottom: 5%;
    }
} */
/* @media (max-width: 645px) {
    .sixth-container {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .sixth-container .fourth-card {
        width: 40%;
        margin-bottom: 5%;
    }
} */
/* @media (max-width: 630px) {
    .sixth{
        width: 100%;
        height: auto;
    }
    .sixth-container {
        width: 100%;
        flex-direction: row;
    }
    .sixth-container .fourth-card {
        width: 35%;
        margin-bottom: 5%;
    }
} */
 .marketplace{
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4%;
    text-align: center;
 }
 .marketplace-cards{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1%;
    padding: 4%;
    padding-left: 7%;
    padding-right: 7%;
 }
  
.marketplace-cards .card {
    height: 300px;
    flex: 1;
    border-radius: 11px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.marketplace-cards .card a{
    text-decoration: none;
    color: white;
    font-size: 21px;
    font-weight: 600;
    height: 100%;
    width: 100%;
    padding: 8%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.marketplace-cards .card:nth-child(1){
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url(../images/marketplace-inverter.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.marketplace-cards .card:nth-child(2){
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url(../images/marketplace-batteries.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.marketplace-cards .card:nth-child(3){
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url(../images/marketplace-sp.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.marketplace-cards .card:nth-child(4){
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url(../images/marketplace-breaker.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
} 
.services-cards .card:nth-child(1){
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url(../images/services-ir.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.services-cards .card:nth-child(2){
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url(../images/services-cs.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.services-cards .card:nth-child(3){
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url(../images/services-ia.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.services-cards .card:nth-child(4){
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url(../images/services-sq.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.services-cards .card:nth-child(5){
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url(../images/services-news.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.marketplace-cards .card:hover {
    flex: 2;
  }
  
  #buyer-form input{
    width: 45%;
    height: 47px;
    padding: 11px;
    border-radius: 4px;
    border: 1.5px solid #c7c7c7;
    outline: none;
  }
  
.main_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90vh;
  }
  
  .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5em;
  }
  
  .antenna {
    width: 5em;
    height: 5em;
    border-radius: 50%;
    border: 2px solid black;
    background-color: #f27405;
    margin-bottom: -6em;
    margin-left: 0em;
    z-index: -1;
  }
  .antenna_shadow {
    position: absolute;
    background-color: transparent;
    width: 50px;
    height: 56px;
    margin-left: 1.68em;
    border-radius: 45%;
    transform: rotate(140deg);
    border: 4px solid transparent;
    box-shadow:
      inset 0px 16px #a85103,
      inset 0px 16px 1px 1px #a85103;
    -moz-box-shadow:
      inset 0px 16px #a85103,
      inset 0px 16px 1px 1px #a85103;
  }
  .antenna::after {
    content: "";
    position: absolute;
    margin-top: -9.4em;
    margin-left: 0.4em;
    transform: rotate(-25deg);
    width: 1em;
    height: 0.5em;
    border-radius: 50%;
    background-color: #f69e50;
  }
  .antenna::before {
    content: "";
    position: absolute;
    margin-top: 0.2em;
    margin-left: 1.25em;
    transform: rotate(-20deg);
    width: 1.5em;
    height: 0.8em;
    border-radius: 50%;
    background-color: #f69e50;
  }
  .a1 {
    position: relative;
    top: -102%;
    left: -130%;
    width: 12em;
    height: 5.5em;
    border-radius: 50px;
    background-image: linear-gradient(
      #171717,
      #171717,
      #353535,
      #353535,
      #171717
    );
    transform: rotate(-29deg);
    clip-path: polygon(50% 0%, 49% 100%, 52% 100%);
  }
  .a1d {
    position: relative;
    top: -211%;
    left: -35%;
    transform: rotate(45deg);
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    border: 2px solid black;
    background-color: #979797;
    z-index: 99;
  }
  .a2 {
    position: relative;
    top: -210%;
    left: -10%;
    width: 12em;
    height: 4em;
    border-radius: 50px;
    background-color: #171717;
    background-image: linear-gradient(
      #171717,
      #171717,
      #353535,
      #353535,
      #171717
    );
    margin-right: 5em;
    clip-path: polygon(
      47% 0,
      47% 0,
      34% 34%,
      54% 25%,
      32% 100%,
      29% 96%,
      49% 32%,
      30% 38%
    );
    transform: rotate(-8deg);
  }
  .a2d {
    position: relative;
    top: -294%;
    left: 94%;
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    border: 2px solid black;
    background-color: #979797;
    z-index: 99;
  }
  
  .notfound_text {
    background-color: black;
    padding-left: 0.3em;
    padding-right: 0.3em;
    font-size: 0.75em;
    color: white;
    letter-spacing: 0;
    border-radius: 5px;
    z-index: 10;
  }
  .tv {
    width: 17em;
    height: 9em;
    margin-top: 3em;
    border-radius: 15px;
    background-color: #d36604;
    display: flex;
    justify-content: center;
    border: 2px solid #1d0e01;
    box-shadow: inset 0.2em 0.2em #e69635;
  }
  .tv::after {
    content: "";
    position: absolute;
    width: 17em;
    height: 9em;
    border-radius: 15px;
    background:
      repeating-radial-gradient(#d36604 0 0.0001%, #00000070 0 0.0002%) 50% 0/2500px
        2500px,
      repeating-conic-gradient(#d36604 0 0.0001%, #00000070 0 0.0002%) 60% 60%/2500px
        2500px;
    background-blend-mode: difference;
    opacity: 0.09;
  }
  .curve_svg {
    position: absolute;
    margin-top: 0.25em;
    margin-left: -0.25em;
    height: 12px;
    width: 12px;
  }
  .display_div {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 3.5px 3.5px 0px #e69635;
  }
  .screen_out {
    width: auto;
    height: auto;
  
    border-radius: 10px;
  }
  .screen_out1 {
    width: 11em;
    height: 7.75em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }
  .screen {
    width: 13em;
    height: 7.85em;
    font-family: Montserrat;
    border: 2px solid #1d0e01;
    background:
      repeating-radial-gradient(#000 0 0.0001%, #ffffff 0 0.0002%) 50% 0/2500px
        2500px,
      repeating-conic-gradient(#000 0 0.0001%, #ffffff 0 0.0002%) 60% 60%/2500px
        2500px;
    background-blend-mode: difference;
    animation: b 0.2s infinite alternate;
    border-radius: 10px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #252525;
    letter-spacing: 0.15em;
    text-align: center;
  }
  .notfound_text{
    padding: 8px;
  }
  .screenM {
    width: 13em;
    height: 7.85em;
    position: relative;
    font-family: Montserrat;
    background: linear-gradient(
      to right,
      #002fc6 0%,
      #002bb2 14.2857142857%,
      #3a3a3a 14.2857142857%,
      #303030 28.5714285714%,
      #ff0afe 28.5714285714%,
      #f500f4 42.8571428571%,
      #6c6c6c 42.8571428571%,
      #626262 57.1428571429%,
      #0affd9 57.1428571429%,
      #00f5ce 71.4285714286%,
      #3a3a3a 71.4285714286%,
      #303030 85.7142857143%,
      white 85.7142857143%,
      #fafafa 100%
    );
    border-radius: 10px;
    border: 2px solid black;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #252525;
    letter-spacing: 0.15em;
    text-align: center;
    overflow: hidden;
  }
  .screenM:before,
  .screenM:after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
  }
  .screenM:before {
    top: 0;
    height: 68.4782608696%;
    background: linear-gradient(
      to right,
      white 0%,
      #fafafa 14.2857142857%,
      #ffe60a 14.2857142857%,
      #f5dc00 28.5714285714%,
      #0affd9 28.5714285714%,
      #00f5ce 42.8571428571%,
      #10ea00 42.8571428571%,
      #0ed600 57.1428571429%,
      #ff0afe 57.1428571429%,
      #f500f4 71.4285714286%,
      #ed0014 71.4285714286%,
      #d90012 85.7142857143%,
      #002fc6 85.7142857143%,
      #002bb2 100%
    );
  }
  .screenM:after {
    bottom: 0;
    height: 21.7391304348%;
    background: linear-gradient(
      to right,
      #006c6b 0%,
      #005857 16.6666666667%,
      white 16.6666666667%,
      #fafafa 33.3333333333%,
      #001b75 33.3333333333%,
      #001761 50%,
      #6c6c6c 50%,
      #626262 66.6666666667%,
      #929292 66.6666666667%,
      #888888 83.3333333333%,
      #3a3a3a 83.3333333333%,
      #303030 100%
    );
  }
  
  @keyframes b {
    100% {
      background-position:
        50% 0,
        60% 50%;
    }
  }
  
  /* Another Error Screen to Use 
  
  .screen {
    width: 13em;
    height: 7.85em;
    position: relative;
    background: linear-gradient(to right, #002fc6 0%, #002bb2 14.2857142857%, #3a3a3a 14.2857142857%, #303030 28.5714285714%, #ff0afe 28.5714285714%, #f500f4 42.8571428571%, #6c6c6c 42.8571428571%, #626262 57.1428571429%, #0affd9 57.1428571429%, #00f5ce 71.4285714286%, #3a3a3a 71.4285714286%, #303030 85.7142857143%, white 85.7142857143%, #fafafa 100%);
    border-radius: 10px;
    border: 2px solid black;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #252525;
    letter-spacing: 0.15em;
    text-align: center;
    overflow: hidden;
  }
  .screen:before, .screen:after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
  }
  .screen:before {
    top: 0;
    height: 68.4782608696%;
    background: linear-gradient(to right, white 0%, #fafafa 14.2857142857%, #ffe60a 14.2857142857%, #f5dc00 28.5714285714%, #0affd9 28.5714285714%, #00f5ce 42.8571428571%, #10ea00 42.8571428571%, #0ed600 57.1428571429%, #ff0afe 57.1428571429%, #f500f4 71.4285714286%, #ed0014 71.4285714286%, #d90012 85.7142857143%, #002fc6 85.7142857143%, #002bb2 100%);
  }
  .screen:after {
    bottom: 0;
    height: 21.7391304348%;
    background: linear-gradient(to right, #006c6b 0%, #005857 16.6666666667%, white 16.6666666667%, #fafafa 33.3333333333%, #001b75 33.3333333333%, #001761 50%, #6c6c6c 50%, #626262 66.6666666667%, #929292 66.6666666667%, #888888 83.3333333333%, #3a3a3a 83.3333333333%, #303030 100%);
  }
  
    */
  
  .lines {
    display: flex;
    column-gap: 0.1em;
    align-self: flex-end;
  }
  .line1,
  .line3 {
    width: 2px;
    height: 0.5em;
    background-color: black;
    border-radius: 25px 25px 0px 0px;
    margin-top: 0.5em;
  }
  .line2 {
    flex-grow: 1;
    width: 2px;
    height: 1em;
    background-color: black;
    border-radius: 25px 25px 0px 0px;
  }
  
  .buttons_div {
    width: 4.25em;
    align-self: center;
    height: 8em;
    background-color: #e69635;
    border: 2px solid #1d0e01;
    padding: 0.6em;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 0.75em;
    box-shadow: 3px 3px 0px #e69635;
  }
  .b1 {
    width: 1.65em;
    height: 1.65em;
    border-radius: 50%;
    background-color: #7f5934;
    border: 2px solid black;
    box-shadow:
      inset 2px 2px 1px #b49577,
      -2px 0px #513721,
      -2px 0px 0px 1px black;
  }
  .b1::before {
    content: "";
    position: absolute;
    margin-top: 1em;
    margin-left: 0.5em;
    transform: rotate(47deg);
    border-radius: 5px;
    width: 0.1em;
    height: 0.4em;
    background-color: #000000;
  }
  .b1::after {
    content: "";
    position: absolute;
    margin-top: 0.9em;
    margin-left: 0.8em;
    transform: rotate(47deg);
    border-radius: 5px;
    width: 0.1em;
    height: 0.55em;
    background-color: #000000;
  }
  .b1 div {
    content: "";
    position: absolute;
    margin-top: -0.1em;
    margin-left: 0.65em;
    transform: rotate(45deg);
    width: 0.15em;
    height: 1.5em;
    background-color: #000000;
  }
  .b2 {
    width: 1.65em;
    height: 1.65em;
    border-radius: 50%;
    background-color: #7f5934;
    border: 2px solid black;
    box-shadow:
      inset 2px 2px 1px #b49577,
      -2px 0px #513721,
      -2px 0px 0px 1px black;
  }
  .b2::before {
    content: "";
    position: absolute;
    margin-top: 1.05em;
    margin-left: 0.8em;
    transform: rotate(-45deg);
    border-radius: 5px;
    width: 0.15em;
    height: 0.4em;
    background-color: #000000;
  }
  .b2::after {
    content: "";
    position: absolute;
    margin-top: -0.1em;
    margin-left: 0.65em;
    transform: rotate(-45deg);
    width: 0.15em;
    height: 1.5em;
    background-color: #000000;
  }
  .speakers {
    display: flex;
    flex-direction: column;
    row-gap: 0.5em;
  }
  .speakers .g1 {
    display: flex;
    column-gap: 0.25em;
  }
  .speakers .g1 .g11,
  .g12,
  .g13 {
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    background-color: #7f5934;
    border: 2px solid black;
    box-shadow: inset 1.25px 1.25px 1px #b49577;
  }
  .speakers .g {
    width: auto;
    height: 2px;
    background-color: #171717;
  }
  
  .bottom {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8.7em;
  }
  .base1 {
    height: 1em;
    width: 2em;
    border: 2px solid #171717;
    background-color: #4d4d4d;
    margin-top: -0.15em;
    z-index: -1;
  }
  .base2 {
    height: 1em;
    width: 2em;
    border: 2px solid #171717;
    background-color: #4d4d4d;
    margin-top: -0.15em;
    z-index: -1;
  }
  .base3 {
    position: absolute;
    height: 0.15em;
    width: 17.5em;
    background-color: #171717;
    margin-top: 0.8em;
  }
  
  .text_404 {
    position: absolute;
    display: flex;
    flex-direction: row;
    column-gap: 6em;
    z-index: -5;
    margin-bottom: 2em;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    font-family: Montserrat;
  }
  .text_4041 {
    transform: scaleY(24.5) scaleX(9);
  }
  .text_4042 {
    transform: scaleY(24.5) scaleX(9);
  }
  .text_4043 {
    transform: scaleY(24.5) scaleX(9);
  }
  
  @media only screen and (max-width: 495px) {
    .text_404 {
      column-gap: 6em;
    }
  }
  @media only screen and (max-width: 395px) {
    .text_404 {
      column-gap: 4em;
    }
    .text_4041 {
      transform: scaleY(25) scaleX(8);
    }
    .text_4042 {
      transform: scaleY(25) scaleX(8);
    }
    .text_4043 {
      transform: scaleY(25) scaleX(8);
    }
  }
  
  @media (max-width: 275px), (max-height: 520px) {
    .main {
      position: relative;
    }
  }
  
  @media only screen and (max-width: 1024px) {
    .screenM {
      display: flex;
    }
    .screen {
      display: none;
    }
  }
  @media only screen and (min-width: 1025px) {
    .screen {
      display: flex;
    }
    .screenM {
      display: none;
    }
  }
@media (max-width: 480px) {
    .first-side {
        width: 100%;
        padding: 5%;
    }
    .first-side a {
        font-size: 14px;
    }
    .slideshow-container .prev, .slideshow-container .next {
        font-size: 14px;
        padding: 10px;
    }
    .first, .bannerBottom {
        padding: 5%;
    }
    .bbCard {
        width: 100%;
        padding: 5%;
    }
    .bbCard button {
        width: 100%;
    }
    .bbCard h4{
        font-size: 1.1rem;
    }
    .bbCard p{
        font-size: 0.9rem;
    }
    .buttons button {
        width: 120px;
        height: 120px;
        font-size: 16px;
        padding: 8%;
    }
    .first, .bannerBottom, .fourth, .fifth, .home-services {
        padding: 5%;
    }
    .bbCard, .fourth-cards .fourth-card, .home-services-cards .home-services-card{
        width: 100%;
        padding: 5%;
    }
    .bbCard button {
        width: 100%;
    }
    .seventh h1, .ninth h1 {
        font-size: 1.2rem;
    }
    .eighth img {
        height: 250px;
    }
    .eighth-content {
        width: 100%;
        font-size: 0.9rem;
    }
    .seventh, .ninth {
        padding: 0 3%;
    }
}
@media screen and (max-width: 2560px) {
    /* .first-side h2{
        font-size: 42px;
    }
    .first-side p, .first-side a{
        font-size: 22px;
    }
    .first-side img{
        height: 75px;
        width: 75px;
    } */
    .fourth-card{
        width: 485px !important;
        font-size: 25px !important;
    }
    .fourth-card img{
        height: 375px !important;
    }
    .home-services-card{
        width: 485px !important;
        font-size: 25px !important;
    }
    .home-services-card img{
        height: 375px !important;
    }
    /* .fifth-card{
        max-width: 35rem;
        max-height: 35rem;
        flex-grow: 1;
    } */
    .fifth-card .cardImg{
        width: 100%;
    }
    .fifth-card .tag > p{
        font-size: 16px;
    }
}
@media screen and (max-width: 2370px) {
    .carousel-caption{
        top: 55%;
    }
}
@media screen and (max-width: 2220px) {
    .carousel-caption{
        top: 60%;
    }
}
@media screen and (max-width: 2110px) {
    /* .carousel-caption{
        top: 70%;
    }
    .first-side h2{
        font-size: 35px;
    }
    .first-side p, .first-side a{
        font-size: 20px;
    }
    .first-side img{
        height: 75px;
        width: 75px;
    } */
}
@media screen and (max-width: 1840px) {
    /* .first-side h2{
        font-size: 30px;
    }
    .first-side p, .first-side a{
        font-size: 20px;
    }
    .first-side img{
        height: 55px;
        width: 55px;
    } */
    .fourth-card{
        width: 345px !important;
        font-size: 25px !important;
    }
    .fourth-card img{
        height: 275px !important;
    }
    .home-services-card{
        width: 345px !important;
        font-size: 25px !important;
    }
    .home-services-card img{
        height: 275px !important;
    }
    /* .fifth-card{
        max-width: 27rem;
        max-height: 27rem;
        flex-grow: 1;
    } */
    .fifth-card .cardImg{
        width: 100%;
    }
    .fifth-card .tag > p{
        font-size: 14px;
    }
}
@media screen and (max-width: 1770px) {
    /* .first-side{
        height: 45%;
    }
    .first-side h2{
        font-size: 27px;
    }
    .first-side p, .first-side a{
        font-size: 20px;
    }
    .first-side img{
        height: 55px;
        width: 55px;
    } */
    .fourth-card{
        width: 525px !important;
        font-size: 25px !important;
    }
    .fourth-card img{
        height: 375px !important;
    }
    .home-services-card{
        width: 525px !important;
        font-size: 25px !important;
    }
    .home-services-card img{
        height: 375px !important;
    }
}
@media screen and (max-width: 1630px) {
    /* .first-side{
        height: 42%;
    }
    .first-side h2{
        font-size: 27px;
    }
    .first-side p, .first-side a{
        font-size: 20px;
    }
    .first-side img{
        height: 55px;
        width: 55px;
    } */
    .fourth-card{
        width: 275px !important;
        font-size: 17px !important;
    }
    .fourth-card img{
        height: 275px !important;
    }
    .home-services-card{
        width: 275px !important;
        font-size: 17px !important;
    }
    .home-services-card img{
        height: 275px !important;
    }
}
@media screen and (max-width: 1200px) {
    .contact-info{
        grid-template-columns: repeat(4, 1fr);
    }
    .buttons-main {
        padding-left: 5%;
        padding-right: 5%;
    }
    .buttons {
        gap: 4%;
    }
    .buttons button {
        height: 190px;
        width: 220px;
        font-size: 20px;
        padding: 10%;
    }
}
@media screen and (max-width: 1120px) {
    .sixth{
        height: 100vh;
    }
    .sixth-image{
        width: 348px;
    }
    .sixth-data{
        width: 316px;
        padding-inline: 2.5rem;
    }
}
@media screen and (max-width: 1050px) {
    .cs-card{
        width: 47%;
    }
}
@media screen and (max-width: 1024px) {
    .panel-button a{
        font-size: 24px;
    }
    .main-blog {
        flex-direction: column;
        align-items: center;
    }

    .blog-container {
        width: 80%;
    }

    .side-blogs {
        width: 80%;
        padding-left: 4%;
    }
    .nb-bg h1{
        font-size: 30px;
        padding-left: 6%;
        padding-right: 6%;
    }
    .sell-container h1{
        font-size: 2em;
    }
    .cs-bg p{
        width: 85%;
    }
    .ir-bg p{
        width: 85%;
    }
    .deals-bg h1, .inverter-bg h1{
        font-size: 30px;
    }
    .deals-bg p, .inverter-bg p{
        width: 85%;
        font-size: 15px;
    }
    .product-main .pro-slider {
        width: 55%;
        height: 395px;
    }
    .pro-content .pro-box{
        padding: 6%;
        line-height: 27px;
    }
    .pro-content .pro-box h2{
        font-size: 19px;
    }
    .pro-content .pro-box p{
        font-size: 15px;
    }
    .first-sides {
        width: 90%;
        flex-direction: row;
        justify-content: space-around;
    }
    .first-side {
        width: 48%;
        height: auto;
    }
    .carousel {
        width: 100%;
        height: auto;
    }
    .first, .bannerBottom {
        flex-direction: column;
        height: auto;
    }
    .bbCard {
        width: 90%;
        margin-bottom: 2%;
        border-right: none;
        border-bottom: solid 1.3px var(--midnight);
    }
    .bbCard:last-child{
        border-bottom: solid 1.3px var(--midnight);
    }
    .bbCard button {
        width: 100%;
        margin-top: 2%;
    }
    .bbCard h4{
        font-size: 1.5rem;
        margin-top: 2%;
    }
    .bbCard p{
        font-size: 1.1rem;
    }
    .buttons a {
        width: 220px;
        font-size: 16px;
        padding: 12px 20px;
    }
    .first, .bannerBottom, .fourth, .fifth, .home-services {
        flex-direction: column;
        height: auto;
        align-items: center;
        padding: 5%;
    }
    .first-sides, .bbCard, .fourth-cards .fourth-card, .fifth-card, .home-services-cards .home-services-card{
        width: 90%;
    }
    .eighth{
        flex-wrap: wrap;
        gap: 17px;
    }
    .eighth-content{
        width: 100%;
    }
    .eighth img{
        width: 100%;
        height: 275px;
    }
}
@media screen and (max-width: 992px) {
    .contact-form{
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 6%;
        padding-right: 6%;
    }
    .buttons-main {
        padding-left: 3%;
        padding-right: 3%;
    }
    .buttons {
        gap: 3%;
    }
    .buttons button {
        height: 180px;
        width: 200px;
        font-size: 18px;
        padding: 9%;
    }
}
@media screen and (max-width: 950px) {
    .inverter-top-filter{
        height: 100%;
        padding: 2%;
    }
    .inverter-top-filter form .filter{
        width: 225px;
    }
    .inverter-top-filter a{
        margin-top: 11px;
    }
}
@media screen and (max-width: 900px) {
    .deals-bg h1, .deals-container h1{
        font-size: 26px !important;
        padding-left: 6%;
        padding-right: 6%;
    }
    /* .fifth-card{
        flex-grow: 1;
    } */
    .fifth-card .cardImg{
        width: 100%;
    }
    .curve_one, .curve_two{
        display: none;
    }
}
@media screen and (max-width: 850px) {
    .ir-bg h1, .ir-container h1{
        font-size: 30px;
        width: 85%;
    }
    .ir-bg p{
        font-size: 16px;
    }
}
@media screen and (max-width: 820px) {
    .product-main{
        flex-direction: column;
    }
    .product-main .pro-slider {
        width: 100% !important;
        height: 375px !important;
    }
    .pro-content{
        display: flex;
        width: 100%;
        gap: 3%;
    }
    .pro-content .pro-box{
        width: 50% !important;
        padding: 4% !important;
        line-height: 27px;
        margin-top: 17px !important;
        margin: 0;
    }
    .pro-content .pro-box h2{
        font-size: 21px !important;
    }
    .pro-content .pro-box p{
        font-size: 16px;
    }
    .pro-main{
        padding: 0;
        flex-direction: column;
    }
    .pro-main01{
        margin: 0;
        width: 100% !important;
        padding: 3%;
        margin-top: 0;
        line-height: 37px;
        margin-bottom: 11px;
    }
}
@media screen and (max-width: 800px) {
    .nb-bg h1{
        font-size: 28px;
    }
    .nb-bg p{
        font-size: 15px;
    }
    .news{
        width: 50%;
    }
    .blogs{
        width: 50%;
    }
    .news-card, .blogs-card{
        padding: 8%;
    }
    .news p, .blogs p, .news a, .blogs a{
        font-size: 14px;
    }
}
@media screen and (max-width: 790px) {
    .inverter-top-filter button{
        margin-top: 11px;
    }
}
@media screen and (max-width: 768px) {
    .marketplace-cards {
        flex-direction: column;
    }

    .marketplace-cards .card {
        width: 90%;
        max-width: 400px;
        height: 250px;
        transition: all 0.3s ease;
    }

    .marketplace-cards .card:hover {
        height: 320px;
    }
    .panel-buttons {
        flex-direction: column;
        height: auto;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
    }
    .panel-button {
        width: 100%;
        height: 15vw;
        margin-bottom: 8px;
    }
    .panel-button a {
        font-size: 4vw;
    }
    .buttons-main{
        padding-left: 5%;
        padding-right: 5%;
    }
    .buttons {
        gap: 2%;
    }
    .buttons button {
        height: 150px;
        width: 150px;
        padding: 8%;
        font-size: 18px;
    }
    
    .blog-container {
        width: 90%;
    }

    .side-blogs {
        width: 90%;
        padding: 2%;
    }
    .sell-bg h1{
        font-size: 30px;
    }
    .sell-bg p{
        font-size: 15px;
    }
    .pur-bg p{
        padding-left: 8%;
        padding-right: 8%;
    }
    .contact-bg p{
        font-size: 15px;
    }
    .contact-info{
        margin: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sq-docs h1, .sq-bg h1, .sq-form-container h1, .ia-bg h1, .ia-container h1{
        font-size: 28px;
    }
    .ia-bg p{
        font-size: 15px;
    }
    .sq-form-div h2{
        font-size: 24px;
    }
    .cs-bg h1, .cs-container h1, .inverter-bg h1{
        font-size: 28px !important;
    }
    .cs-bg p, .inverter-bg p{
        font-size: 15px !important;
    }
    .cs-card h2{
        font-size: 20px;
    }
    .cs-top img{
        width: 117px;
        height: 117px;
    }
    .cs-card button{
        font-size: 15px;
    }
    .first-sides {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .first-side {
        width: 90%;
        margin-bottom: 15px;
    }
    .carousel {
        width: 100%;
    }
    .bbCard {
        width: 90%;
        align-items: center;
    }
    .bbCard {
        height: auto;
        text-align: center;
    }
    .bbCard h4{
        font-size: 1.3rem;
    }
    .bbCard p{
        font-size: 1rem;
    }
    .seventh h1, .ninth h1 {
        font-size: 1.5rem;
    }
    .eighth{
        flex-direction: column;
        padding: 4%;
    }
    .eighth img {
        width: 100%;
    }
    .eighth-content {
        width: 100%;
        font-size: 1rem;
    }
    .seventh, .ninth {
        padding: 0 5%;
    }
    .fourth-cards{
        justify-content: center;
    }
    .home-services-cards{
        justify-content: center;
    }
}
@media screen and (max-width: 675px) {
    .purchase-top{
        width: 85%;
    }
    .purchase-top h1, .pur-bg h1{
        font-size: 29px;
    }
    .purchase-top p, .pur-bg p, .inverter-bg p{
        font-size: 14px !important;
    }
    .ir-bg p{
        font-size: 15px;
    }
    .ir-container h1{
        width: 95%;
    }
    .inverter-bg h1{
        font-size: 26px !important;
    }
}
@media screen and (max-width: 660px) {
    .contact-bg h1{
        padding-left: 5%;
        padding-right: 5%;
        font-size: 23px;
    }
    .contact-bg p{
        font-size: 14px;
    }
    .sell-bg h1, .sell-container .sell-form h1{
        font-size: 28px;
    }
    .sell-bg p{
        font-size: 14px;
        padding-left: 8%;
        padding-right: 8%;
    }
    .sq-forms{
        align-items: center;
        flex-direction: column;
    }
    .sq-form-div{
        width: 95%;
        align-items: center;
    }
    .sq-form-div:nth-child(2){
        padding-left: 3%;
        padding-right: 3%;
    }
    .sq-form-div h2{
        text-align: center;
    }
    .sq-form-div div{
        width: 100%;
    }
    .cs-bg h1, .cs-container h1{
        font-size: 26px;
    }
    .cs-bg p{
        font-size: 14px;
    }
    .cs-card h2{
        font-size: 18px;
    }
    .cs-top img{
        width: 97px;
        height: 97px;
    }
    .cs-card button{
        font-size: 13px;
    }
}
@media screen and (max-width: 650px) {
    .inverter-top-filter form .filter:nth-child(3){
        margin-top: 11px;
    }
    .product-main{
        padding-left: 3%;
        padding-right: 3%;
    }
    .pro-main{
        padding-left: 3%  !important;
        padding-right: 3%  !important; 
    }
}
@media screen and (max-width: 600px) {
    .contact-form{
        flex-direction: column;
    }
    .contact-form form{
        width: 95%;
    }
    .contact-form > div{
        width: 50%;
        height: 50%;
    }
    .sq-docs{
        flex-direction: column;
    }
    .sq-doc{
        padding-left: 3%;
        padding-right: 3%;
    }
    .sq-doc a{
        width: 100%;
    }
    .sq-docs h1, .sq-bg h1, .sq-form-container h1, .ia-bg h1, .ia-container h1{
        font-size: 26px;
    }
    .sq-bg p, .ia-bg p, .blog-bg p{
        font-size: 14px;
    }
    .sq-form-div h2{
        font-size: 22px;
    }
    .cs-bg p{
        font-size: 14px;
    }
    .cs-card{
        width: 95% !important;
        padding: 5%;
    }
    .cs-top{
        justify-content: flex-start;
    }
    .cs-card h2{
        font-size: 20px;
    }
    .cs-top img{
        width: 127px;
        height: 127px;
    }
    .cs-card a{
        font-size: 15px;
    }
}
@media screen and (max-width: 550px) {
    .purchase-top h1, .pur-bg h1, .blog-bg h1{
        font-size: 27px;
    }
    .purchase-top p, .pur-bg p{
        font-size: 13px;
    }
    .ia-container h1, .ia-bg h1{
        padding-left: 6%;
        padding-right: 6%;
    }
    .ia-card{
        margin-top: 3%;
    }
    .ia-card{
        width: 95%;
        padding: 6%;
    }
    .ia-card img{
        width: 20%;
        height: 100%;
        margin-bottom: 0%;
    }
    .ia-card h2{
        font-size: 20px;
    }
    .ia-card p, .deals-bg p, .blog-bg p{
        font-size: 14px;
    }
    .deals-bg h1{
        font-size: 24px;
    }
    .product-main .pro-slider {
        height: 315px !important;
    }
    .pro-content{
        display: flex;
        flex-direction: column;
    }
    .pro-content .pro-box{
        width: 100% !important;
        padding: 4% !important;
        line-height: 27px;
        margin-top: 17px !important;
        margin: 0;
    }
    .pro-content .pro-box h2{
        font-size: 21px !important;
    }
    .pro-content .pro-box p{
        font-size: 16px;
    }
}
@media screen and (max-width: 520px) {
    .sell-container .sell-form input, .sell-container .sell-form textarea{
        padding-left: 5%;
        padding-right: 5%;
    }
    .sell-container .sell-form input[type="file"]{
        padding-top: 5%;
    }
    .sell-container .sell-form div.name-container{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .sell-container .sell-form div input{
        width: 100%;
    }
    .contact-info{
        margin: 0.1rem;
    }
    .contact-info div span:nth-child(2){
        font-size: 1em;
    }
    .contact-info div span:nth-child(3){
        font-size: 1em;
    }
    .news h1, .blogs h1{
        font-size: 25px;
    }
    .sq-docs h1, .sq-bg h1, .sq-form-container h1, .blog-bg h1{
        padding-left: 6%;
        padding-right: 6%;
        font-size: 24px;
        text-align: center;
    }
    .sq-form-div h2{
        font-size: 20px;
    }
}
@media screen and (max-width: 515px) {
    .purchase-top h1, .pur-bg h1{
        font-size: 26px;
    }
}
@media screen and (max-width: 510px) {
    .nb-bg h1{
        font-size: 21px !important;
    }
    .nb-bg p, .blog-bg p{
        width: 95%;
        font-size: 14px;
    }
}
@media screen and (max-width: 500px) {
    .slideshow-container .prev, .slideshow-container .next{
        font-size: 14px;
    }
    .buttons-main{
        padding-left: 5%;
        padding-right: 5%;
    }
    .buttons {
        gap: 11%;
    }
    .buttons button{
        margin: 0;
        padding: 0;
    }
    .buttons a {
        height: 150px;
        width: 150px;
        font-size: 18px;
        padding: 0;
    }
}
@media screen and (max-width: 480px) {
    .blog-container {
        width: 100%;
        margin: 2%;
        padding: 8%;
    }
    .side-blogs {
        width: 100%;
        padding: 8%;
    }

    .blog-container h1 {
        font-size: 1.5rem;
    }

    .blog-container h3 {
        font-size: 1.2rem;
    }

    .blog-container p {
        font-size: 0.9rem;
    }
    .inverter-top-filter{
        padding: 4% !important;
    }
    .buttons {
        gap: 2%;
    }
    .buttons a {
        height: 150px;
        width: 150px;
        font-size: 18px;
        padding: 0;
    }
    .buttons button {
        height: 120px;
        width: 120px;
        font-size: 14px;
        gap: 8px;
    }
    
}
@media screen and (max-width: 450px) {
    .sell-container .sell-form{
        width: 85%;
    }
    .contact-form form{
        width: 100%;
    }
    .contact-form form div{
        display: flex;
        flex-direction: column;
    }
    .contact-form form div input{
        margin: 0;
        margin-bottom: 11px;
    }
    .contact-info div{
        padding: 1.5em;
    }
    .contact-info span .fas{
        font-size: 1.5em;
    }
    .contact-info div span:nth-child(2){
        font-size: 0.8em;
    }
    .contact-info div span:nth-child(3){
        font-size: 0.8em;
    }
    .inverter-top-filter form .filter:nth-child(2){
        margin-top: 11px;
    }
    .product-container h1{
        font-size: 28px;
    }
    .product-main .pro-slider {
        height: 275px !important;
    }
    .pro-content .pro-box{
        padding: 6% !important;
    }
    .pro-main01{
        padding: 6%;
        line-height: 32px;
    }
}
@media screen and (max-width: 425px) {
    .inverter-card{
        width: 355px;
        margin-bottom: 1.7%;
        padding: 17px;
    }
    .sell-bg h1, .sell-container .sell-form h1{
        font-size: 25px;
    }
    .news h1, .blogs h1{
        font-size: 22px;
    }
    .news h3, .blogs h3{
        font-size: 17px;
    }
    .news p, .blogs p, .news a, .blogs a, .ia-bg p, .blog-bg p{
        font-size: 13px;
    }
    .sq-form-div{
        padding-left: 3%;
        padding-right: 3%;
    }
    .ia-container h1, .ia-bg h1{
        font-size: 22px;
    }
    .ia-card{
        margin-top: 3%;
    }
    .ia-card{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 95%;
        padding: 6%;
    }
    .ia-card h2{
        font-size: 19px;
    }
    .ia-card p{
        text-align: center;
        font-size: 14px;
        width: 75%;
    }
    .cs-bg h1, .cs-container h1{
        font-size: 22px;
        padding-left: 4%;
        padding-right: 4%;
        text-align: center;
    }
    .cs-bg p{
        font-size: 13px;
    }
    .ir-bg h1, .ir-container h1{
        font-size: 25px;
    }
    .ir-bg p{
        font-size: 13px;
    }
}
@media screen and (max-width: 390px) {
    .contact-info{
        display: flex;
        flex-direction: column;
        padding: 1rem;
    }
    .contact-info div{
        width: 100%;
        padding: 1.3em;
    }
    .contact-info div:nth-child(1){
        margin-bottom: 0;
        border-right: none;
    }
    .contact-bg h1{
        font-size: 20px;
    }
    .contact-bg p{
        font-size: 11px;
    }
}
@media screen and (max-width: 375px) {
    .inverter-card{
        width: 325px;
        margin-bottom: 2.2%;
    }
    .deals-bg h1, .deals-container h1{
        font-size: 22px !important;
    }
    .sq-bg p, .deals-bg p{
        font-size: 13px !important;
    }
    .product-container h1{
        font-size: 25px;
    }
}
@media screen and (max-width: 340px) {
    .pur-bg h1{
        padding-left: 2%;
        padding-right: 2%;
        font-size: 15px;
    }
    .inverter-card{
        width: 315px;
    }
    .inverter-card .card-inner{
        height: 16rem;
    }
    .inverter-card .content h4{
        margin-top: 5px;
    }
    .inverter-card .content p{
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .sixth{
        margin-inline: 1rem;
    }
    .sixth-data{
        width: 250px;
        padding: 1rem;
    }
    .buttons a {
        height: 140px;
        width: 140px;
        font-size: 18px;
        padding: 0;
    }
}
@media screen and (max-width: 325px) {
    .inverter-card{
        width: 290px;
    }
    .inverter-card .card-inner{
        height: 15rem;
    }
    .inverter-card .contenth3{
        font-size: 17px;
    }
    .inverter-card .content h4{
        font-size: 15px;
        margin-top: 0px;
    }
    .inverter-card .content p{
        margin-top: 1px;
        margin-bottom: 5px;
    }
    .sell-bg h1{
        font-size: 21px;
    }
    .sell-bg p{
        font-size: 13px;
    }
    .sell-container .sell-form h1{
        font-size: 23px;
    }
    .ia-container h1, .ia-bg h1, .deals-bg h1, .deals-container h1{
        font-size: 20px !important;
    }
    .ia-bg p, .deals-bg p{
        font-size: 12px !important;
    }
    .buttons{
        justify-content: space-between;
        padding: 5%;
    }
    .buttons a {
        height: 110px;
        width: 110px;
        font-size: 18px;
        padding: 0;
    }
    .buttons button{
        width: 110px;
        height: 110px;
    }
}
@media screen and (max-width: 300px) {
    .slideshow-container .prev, .slideshow-container .next{
        font-size: 11px;
    }
    .dot{
        height: 10px;
        width: 10px;
    }
}