/********** Template CSS **********/
:root {
    --primary: #32C36C;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
body {
    font-family: "Poppins", sans-serif;
}
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    /*color: #9B9B9B;*/
    color: #0061af;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
.bg-white {
    background-color: #fff !important;
}
.bg-light {
    background-color: #f6f7f8 !important;
}
/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand, .navbar a.btn {
    margin-left: 100px;
    height: 96px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #0d9c4a;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
    color: #ff8507;
    font-weight: 800;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family:"Poppins", sans-serif;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-inner {
    height: 50vh;
    min-height: 780px;
}
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 1880px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url("../images/Solar Hillside.jpeg") center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    background-color: #ffd400;
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8507;
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: #0665db;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature. {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: var(--dark);
    transition: .5s;
}

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    /*background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);*/
    z-index: 1;
}
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    /*background: linear-gradient(to right, rgb(255 255 255) 0%, rgb(255 255 255) 100%)!important;*/
    z-index: 1;
    }

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    /*background: linear-gradient(to left, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%)!important;*/
    z-index: 1;
}


@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;

    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);

}

.testimonial-carousel .owl-item .testimonial-text::before,
.testimonial-carousel .owl-item .testimonial-text::after  {
 
    background-color: #000 !important;
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
    /*background-color: #ffd400;*/
    border: 2px #ffd400 solid;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/

.footer .btn.btn-social {
    margin-right: 6px;
    color: #ffb30d;
    border: 3px solid #0d9c4a;
    border-radius: 38px;
    transition: 1.3s;
    text-align: center;
    padding: 7px;
}
.footer .btn.btn-social:hover {
    margin-right: 6px;
    color: #0d9c4a;
    border: 3px solid #ffb30d;
    border-radius: 38px;
    transition: 1.3s;
    text-align: center;
    padding: 7px;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    /*color: #9B9B9B;*/
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}


.blue-bg {
    background-color: #0061af;
}
.blue {
    color: #0061af;
}
.orange{
    color: #ffb30d !important;
}
.white{
    color: #fff;
}
.yellow{
    color: #ffd400;
}
.yellow-bg{
 background-color: #ffd400;
}
.green{
    color: #0d9c4a;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #0665db;
    text-align: inherit;
    white-space: nowrap;
    background-color: #ff830005;
    border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
    color: #e4e8ed;
    background-color: #ff8507;
}

.bg-primary {
    background-color: #0061af  !important;
}
.bg-primary:hover {
    background-color: #0d9c4a!important;
}
.btn-primary {
    color: #000;
    background-color: #0d9c4a;
    /*border-color: #0665d9;*/
}
.btn-primary:hover {
    color: #fff;
    background-color: #0665d9;
    /*border-color: #0d9c4a;*/
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #0061af;
}
a {
    color: #0665db;
    text-decoration: none;
}
a:hover {
    color: #ff8507;
    text-decoration: none;
}
hr:not([size]) {
    height: 3px;
    border-radius: 5px;
    width: 64px;
    background-color: #0d9c4a;
}
hr {
    margin: 1.5rem 0;
    color: inherit;    border: 0;
     opacity: 1.25; 
}
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.mg-10{
    margin: 10px;
}
.bg-dark {
    background-color: #0061af !important;
}
.footer .btn.btn-social {
    margin-right: 5px;
    color: #ff8507;
    border: 3px solid #0d9c4a;
    border-radius: 38px;
    transition: 1.3s;
}
.pd-tp-20{
    padding-top: 20px;
}
.btn {
    display: inline-block;
    font-weight: 400;
    width: max-content;
    line-height: 1.5;
    color: #9B9B9B;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    /* background-color: transparent; */
    /* border: 1px solid transparent; */
    padding: .3125rem .75rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}


.btn-abt {
    color: #0061af;
    background-color: #ffd400;
}
.btn-abt:hover {
    color: #fff;
    background-color: #019d3f;
}
.footer .btn.btn-social {
    margin-right: 6px;
    color: #ffb30d;
    border: 3px solid #0d9c4a;
    border-radius: 38px;
    transition: 1.3s;
    text-align: center;
    padding: 8px;
    line-height: 6px;
}
[class^="bi-"]::before, [class*=" bi-"]::before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 2;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.team{
    display: flex;
    /*border: 50px #0d9c4a groove;*/
    box-shadow: aliceblue;
    /*border-radius: 50%;*/
}
.line-height-p{ 
    line-height: 28px;
}
.card {
    position: relative;
    padding: 13px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgb(59 44 44 / 13%);
    border-radius: 8px;
    box-shadow: 0 0 45px #e3e1da;
}
.float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
    margin-top:16px;
}
.row {
     --bs-gutter-x: 0 rem; 
    --bs-gutter-y: 0;
  /*  display: flex
;*/
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) / -2);
    margin-left: calc(var(--bs-gutter-x) / -2);
}
.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    width: 100%
1905px
;
    /* padding-right: var(--bs-gutter-x, .75rem); */
    /* padding-left: var(--bs-gutter-x, .75rem); */
    /*margin-right: auto;*/
    /*margin-left: auto;*/
}
.form-control
 {
    display: block;
    width: 98%;
    padding: 10px 30px !important;
    font-size: 13px;
    font-weight: 400;
    line-height: 0.5;
    color: #000!important;
    background-color: #fff;
    /* background-clip: padding-box; */
    border: 1px solid #99e1b6 !important;
    appearance: none;
    border-radius: 8px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-select {
    display: block;
    width: 98%;
    padding: 0px 30px !important;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.0;
    color: #817e7e;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #99e1b6 !important;
    border-radius: 8px;
    appearance: none;
}
textarea.form-control {
    min-height: calc(1.5em + .75rem + 2px);
    width: 99%;
}
.pd-2{
    padding: 1px 1px;
}
.pd-5{
    padding: 2%;
}
.btn-ser {
    color: #ffd400;
    background-color: #0061af;
}
.responsive {
  width: 100%;
  height: auto;
}
.img-abt{
    border-radius: 30px;
}
.pd-form{
     padding-top: 5px;
     padding-bottom: 5px;
}
.form-floating>.form-control, .form-floating>.form-select {
     height: 40px; 
    padding: 1rem .75rem;
}
.pd-abt-10{
    padding: 0% 3%;
}
.pd-abt-5{
    padding: 2%  5%;
}
@media screen and (min-width: 250px) and (max-width: 768px){
  .p-10 {
   padding-top: 10px;
  }
}
.footer-link{
    color: #fff !important;
}
.footer-link:hover{
    color: #ffd400 !important;
}
input, button, select, optgroup, textarea {
    display: block;
    margin: 3px;
    width: 98%;
    padding: 10px 30px !important;
    font-size: 13px;
    font-weight: 400;
    line-height: 0.5;
    color: #000!important;
    background-color: #fff;
    /* background-clip: padding-box; */
    border: 1px solid #99e1b6 !important;
    appearance: none;
    border-radius: 8px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (min-width: 992px) {
    .p-lg-5 {
        padding: 2rem !important;
    }
}

@media (max-width: 600px) {
  .row {
    flex-direction: column;
  }

  .column1 {
    order: 2; /* show second */
  }

  .column2 {
    order: 1; /* show first */
  }

  .column {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .row {
    flex-direction: column;
  }

  .columnabout1 {
    order: 3; /* show second */
  }

  .columnabout2 {
    order: 1; /* show first */
  }

  .columnabout3 {
    order: 2; /* show first */
  }


  .column {
    width: 100%;
  }
}
.footer-bottom {
    text-align: center;
    color: white;
    background-color: #0061af; /* Match footer background */
    padding: 15px 10px;
    font-size: 16px;
}

.footer-bottom a {
    color: #ffb30d;
    text-decoration: underline;
    margin-left: 50px;
    font-weight: semi-bold;
}
.footer-bottom a:hover {
    color: #0d9c4a;
    text-decoration: underline;
    margin-left: 50px;
    font-weight: semi-bold;
}
.footer-line {
    height: 1px;
    border: 1px solid #0d9c4a !important;
    width: 100%;
    text-align: center;
}
.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: box-shadow 0.15s ease-in-out;
    width: auto;
}
#popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  #popup-content {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
  }
#popup-content img {
  width: 500px;
  height: auto;
  object-fit: cover; /* keeps it neat if the image has different aspect */
  display: block;
  border-radius: 5px;
}

  #close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #00d478;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
  }

  #close-btn:hover {
    background: darkred;
  }
  .form-check-input[type="radio"] {
     border-radius: 20%; 
}