/********** Template CSS **********/
:root {
    --primary: #70c0e1;
    --light: #F6F7F8;
    --dark: #2a4d69;
}

.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;
}


svg {
    width: 2.25em;
    transform-origin: center;
    animation: rotate4 2s linear infinite;
   }
   
   circle {
    fill: none;
    stroke: hsl(0, 0%, 100%);
    stroke-width: 2;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash4 1.5s ease-in-out infinite;
   }
   
   @keyframes rotate4 {
    100% {
     transform: rotate(360deg);
    }
   }
   
   @keyframes dash4 {
    0% {
     stroke-dasharray: 1, 200;
     stroke-dashoffset: 0;
    }
   
    50% {
     stroke-dasharray: 90, 200;
     stroke-dashoffset: -35px;
    }
   
    100% {
     stroke-dashoffset: -125px;
    }
   }



/*** 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;
}

.footer-icon-color{
    color:#27506d !important
}
/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.button1 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 400;
    height: 50px;
    width: 190px;
    border: 0px solid;
    background-image: linear-gradient(45deg,#59b7d9,#d3cc34,#59b7d9);
    background-size: 500% 400%;
    color: white;
    border-radius: 50px;
    transition: 0.6s all;
   }
   
   .button1:hover {
    background-position: 75% 50%;
    transform: perspective(100px)
   }
   
   .button1:active {
    transform: scale(0.95);
    transition: 0.1s;
   } 
    

.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;
}

/*** Navbar ***/
/*header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 12px 0;
}*/

.with-conic-gradient {
    border-bottom: solid;
    border-width: 4px;
    border-image: linear-gradient(45deg, #dcd637, #70c0e1,#1d62a3) 1;
}
.navbar-toggler{
    border: none;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    background: #F6F7F8;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px;
}

.navbar .navbar-nav .nav-link{
    font-family: Arial, Helvetica, sans-serif;
    margin-right: 30px;
    padding: 25px 0;
    color: #70c0e1;
    font-size: 19px;
    font-weight: 500;
    text-transform:capitalize;
    outline:none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active{
    color: var(--dark);
}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    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 ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;    
    background: linear-gradient(to top , #0303036e,#071b2700);
}

.img-fluidd{
    width: 100vh;
    height: 100vh;
}
.owl-carousel-item p{
    font-weight: 600;
}

@media (max-width: 768px) {
    .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;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #ffffff8e;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.726);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}


.page-header {
    background: linear-gradient(rgba(250, 249, 249, 0.103), rgba(8, 8, 8, 0.37)), url(../img/solar1.jpg) center center no-repeat;
    background-size: cover;
    
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

#about .img-about-us{
    background: linear-gradient(rgba(0, 0, 0, 0.438), rgba(247, 243, 243, 0.438)), url('../img/unnamed.jpg') center no-repeat; 
    background-size: cover;
    width: 100%;
    height: 800px;
   
}

.container-fluid{
    margin-left: 0px !important;
}

@media (max-width: 700px) {
    .img-about-us  {
        height: 500px !important;
    }
}

@media (max-width: 450px) {
    .img-about-us  {
        height: 380px !important;
    }
}


/*** 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);
}
.service-item:hover{
    color: var(--dark);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    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-image: linear-gradient(45deg,#d3cc34,#59b7d9,#154068);
}
.overflow-hiddenn:hover{
    background: var(--dark);
}
.text-h4-service{
    color: var(--dark);
}
.service-item:hover .text-h4-service {
    color: #fff;
}
.text-p-service{
    color: var(--dark);
}
.service-item:hover .text-p-service {
    color: #fff;
}


.background-clients{
    background: linear-gradient(#ffffffe0,#ffffffe3), url('../img/background.jpg') center no-repeat;
}











/*** 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-carousel{
    position: relative;
    background: var(--dark);
}

.project-item {
    position: relative;
    display: block;
}

.project-item img {
    transition: .5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark) ;
    transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
    bottom: -60px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 27px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .5s;
    z-index: -10;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: #0078bc;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}


/*** 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 ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.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-py-5{
    background:linear-gradient(to bottom,rgba(255, 255, 255, 0.726), rgba(255, 255, 255, 0.658), rgba(255, 255, 255, 0.856), rgba(253, 253, 253, 0.932), rgba(255, 255, 255, 0.966),rgba(250, 250, 250, 0.973)), url("/img/solar9.jpg") center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    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, 0) 0%, rgba(255, 255, 255, 0) 100%);
    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 {
    margin-bottom: 30px;
    background: #fcfafa;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.233);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


.img-gray {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
/*.img-gray:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    transition: .9s;
}*/

.zoom {
	overflow: hidden;
}

.zoom img {
	max-width: 100%;
	-moz-transition: all 0.9s;
	-webkit-transition: all 0.9s;
	transition: all 0.9s;
}

.zoom .img-gray:hover {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}


/*faq*/
#faq .icon-help a{
    color: #d0a941;
}
#faq{
    padding: 50px;
}
#faq h2{
    color: #fff;
}

.section-bg{
    background: rgb(7,129,196);
    background: linear-gradient(-30deg, rgba(7, 130, 196, 0.521) 33%, rgba(35, 78, 109, 0.822) 67%);
}

.faq .faq-list {
    padding: 0 100px;
  }
  
  .faq .faq-list ul {
    padding: 0;
    list-style: none;
  }
  
  .faq .faq-list li+li {
    margin-top: 15px;
  }
  
  .faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    position: relative;
  }
  
  .faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
  }
  
  .faq .faq-list .icon-help {
    font-size: 17px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #d0a941;
  }
  
  .faq .faq-list .icon-show,
  .faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
  }
  
  .faq .faq-list .icon-show {
    display: none;
  }
  
  .faq .faq-list a.collapsed {
    color: var(--dark);
    transition: 0.3s;
  }
  
  .faq .faq-list a.collapsed:hover {
    color: #d0a941;
  }
  
  .faq .faq-list a.collapsed .icon-show {
    display: inline-block;
  }
  
  .faq .faq-list a.collapsed .icon-close {
    display: none;
  }
  
  @media (max-width: 1200px) {
    .faq .faq-list {
      padding: 0;
    }
  }

/*faq*/


/*** 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);
    }
}
.card-box-d:hover .card-footer-d {
    opacity: 1;
    transform: translateY(0);
  }
  
  /*------/ Agent Single /------*/
  .agent-info-box .socials-footer {
    margin-top: 2rem;
  }
  
  .agent-info-box .socials-footer li {
    margin-right: 1.5rem;
  }

  .itens-footer {
    color: #27506d
  }
  
  .itens-footer2 {
    color: #27506d
  }
  
  .itens-footer:hover {
    color: #3299d0
  }


/*** Footer ***/

.section-footer {
    padding-top: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.774), rgba(25, 82, 21, 0.589));
}
  
  
  .section-footer ul {
    line-height: 2;
  }
  
  .section-footer .item-list-a i {
    font-size: 18px;
    padding-right: 4px;
    color: #071b27;
  }
  
  .section-footer .widget-a .w-title-a {
    margin-bottom: 1rem;
  }
  
  footer {
    /* background: linear-gradient(to right bottom ,#4bb7ff, #fff); */
    text-align: center;
    padding: 10px 0;
  }
  
  footer .copyright-footer {
    border-top: 1px solid #42778c;
    padding-top: 20px;
  }
  
  footer .credits {
    font-size: 14px;
  }

/* .footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.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: "Font Awesome 5 Free";
    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);
} */



/* ---------------------------------------------
# Cookies
-----------------------------------------------*/
.box-cookies.hide {
    display: none !important;
  }
  
  .box-cookies {
    position: fixed;
    background-image: linear-gradient(45deg,#d3cc34,#59b7d9,#154068);
    width: 98%;
    z-index: 999998;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .box-cookies .msg-cookies,
  .box-cookies .btn-cookies {
    text-align: center;
    padding: 5px;
    color: #000;
    ;
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .msg-cookies {
    margin-left: 20px;
    margin-top: 20px;
  }
  
  .box-cookies .btn-cookies {
    background: #154068;
    ;
    border: 0;
    padding: 5px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
    margin-right: 20px;
  
  
  }
  
  .box-cookies .btn-cookies:hover {
    background: #fff;
    ;
    border: 0;
    padding: 5px;
    color: var(--dark) !important;
    transition: 0.4s;
    border-radius: 4px;
    margin-right: 20px;
    /* padding: 20px; */
  
  }
  
  .box-cookies-size {
    justify-content: center;
    display: flex;
  }
  
  .color-cookies {
    color: #fff;
    ;
  }
  
  .color-cookies:hover {
    color: var(--dark);
  }
  
  @media screen and (max-width: 600px) {
    .box-cookies {
      flex-direction: column;
    }
  }