* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
:root {
    --primary-blue: #2f90c9;
    --soft-blue: #ddf3ff;
    --cloud-blue: #eaf0f3;
    --black-color: #000;
    --separator-color: #cfcfcf66;
}

.min-h-500{
    height: auto;
    min-height: 500px   ;
}

p {
    margin-bottom: 0 !important;
}
.bg-blue {
    background-color: var(--primary-blue) !important;
}
.bg-soft-blue {
    background-color: var(--soft-blue) !important;
}
.bg-cloud-blue {
    background-color: var(--cloud-blue) !important;
}
.text-blue {
    color: var(--primary-blue) !important;
}
.carousel-item > div {
    display: flex;
    align-items: center;
    height: 40px;
}
.logo-img {
    width: 160px;
}
.separator {
    border-bottom: 1px solid var(--separator-color);
}
.system-box {
    border: 1px solid transparent;
    border-radius: 5px;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
    height: 100%;
}

.system-image {
    display: block;
    width: 200px;
    margin: 0 auto;
    animation: shake 2.5s linear infinite;
}

.system-title {
    color: var(--black-color);
    font-weight: 500;
    line-height: 30px;
    transition: all 0.4s ease-in-out;
}

.system-box:hover {
    box-shadow: 0 0 3px var(--primary-blue);
}

.system-box:hover .system-title {
    transform: translateY(-5px);
    color: var(--primary-blue);
}
.footer {
    background-color: var(--primary-blue);
}
.copy-right .border-top {
    box-shadow: 0 0 3px lightgray;
}
.address-link {
    text-decoration: none;
    color: white;
}
.svg-box{
  animation: shakeSvg 2.5s linear infinite;
  transition: all 0.4s ease-in-out;
}

.solar-tab{
    background-color: var(--cloud-blue);
}
.accordion-button::after{
    background-image: url("../assets/icons/down.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.accordion-button:not(.collapsed)::after{
    background-image: url("../assets/icons/down.svg");
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-180deg);
}

/* Over writing bootstrap accordion speed  */
.collapsing {
  transition: height 0.7s ease !important; 
}

.fade_effect {
  animation-name: fade;
  animation-duration: 1s;
  animation-fill-mode: backwards;
}

@media screen and (max-width : 767px){
    
  .ionicon {
    width: 35px;
  }

  .system-header{
    font-size: 18px !important;
}

  .system-box {
    text-align: center;
    border: 1px solid lightgray;
    padding: 3px;
  }

  .system-image {
    width: 200px !important;
    text-align: center;
    padding: 0;
  }

  .system-title {
    font-size: 15px;
  }
  .solar-title{
    font-size: 16px !important;
  }
}

@media screen and (min-width: 768px) {
    .carousel-item > div {
        height: 100px;
    }
    .logo-img {
        width: 200px;
    }
    .w-md-75 {
        width: 80% !important;
    }
    .system-box{
        border: 1px solid lightgray;
    }
}
@media screen and (min-width: 1024px) {
    .system-box{
        border: none;
    }
    .carousel-item > div {
        height: 160px;
    }
    .logo-img {
        width: auto !important;
    }
}
@keyframes shake {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(7px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes shakeSvg {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0px);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

