/***--------------------------------------
        Font // Montserrat // Open Sans // Roboto
--------------------------------------***/

@import url("https://fonts.googleapis.com/css2?family=Montserrat: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=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* font-family: 'Montserrat', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Roboto', sans-serif; */

/***--------------------------------------
        General 
--------------------------------------***/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::selection {
  color: #fff;
  background-color: #32c36c;
}
body {
  font-family: "Roboto", sans-serif;
}
.ft-head {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.txt-jty {
  text-align: justify;
}
a {
  text-decoration: none;
}
a:hover {
  color: #fff;
  text-decoration: none;
}
img.img-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.d2g-btn {
  background-color: #2b3e4b;
  color: white;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.12),
    0 4px 4px rgba(0, 0, 0, 0.12);
}
.d2g-btn:hover {
  background-color: #32c36c;
}
.g2w-btn {
  color: #fff;
  background-color: #32c36c;
  border-radius: 10px;
  transition: all 1s ease-in-out;
}
.g2w-btn:hover {
  color: #2b3e4b;
  background-color: #fff;
}
.txt-grey {
  color: #bebebe;
}
.text-grey-50 {
  color: #F9FAFB;
}
.text-grey-100 {
  color: #F3F4F6;
}
.text-grey-200 {
  color: #E5E7EB;
}
.text-grey-300 {
  color: #D1D5DB;
}
.text-grey-400 {
  color: #9CA3AF;
}
.text-grey-500 {
  color: #6B7280;
}
.text-grey-600 {
  color: #4B5563;
}
.text-grey-700 {
  color: #374151;
}
.text-grey-800 {
  color: #1F2937;
}
.text-grey-900 {
  color: #111827;
}
.navbar .navbar-nav .nav-link {
  position: relative;
  padding: 1em 0.7em;
  margin: 0 15px;
}
.navbar-light .navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  background-color: #32c36c;
  width: 100%;
  height: 4px;
  border-radius: 10px;
}
.navbar .navbar-nav .nav-link:not(.active)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  background-color: #2b3e4b;
  width: 0;
  height: 4px;
  transition: 0.5s;
  border-radius: 10px;
}
.navbar .navbar-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
  background-color: #32c36c;
}
.navbar-nav .dropdown-menu {
  padding: 15px;
  width: 200px;
  top: 70px;
  line-height: 2;
}
/* .navbar-nav .dropdown-menu .show {
} */
.navbar-nav .dropdown-menu .dropdown-item {
  position: relative;
}
.navbar-nav .dropdown-menu .dropdown-item:not(.active):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  background-color: #32c36c;
  width: 0;
  height: 4px;
  transition: 0.5s;
  border-radius: 10px;
}
.navbar-nav .dropdown-menu .dropdown-item:not(.active):hover::after {
  margin-left: 15px;
  width: 75%;
  left: 0;
  background-color: #32c36c;
}

.navbar-nav .dropdown-menu .dropdown-item.active,
.navbar-nav .dropdown-menu .dropdown-item:active {
  background-color: transparent;
  color: #000;
}
.navbar-nav .dropdown-menu .dropdown-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  background-color: #32c36c;
  width: 75%;
  height: 4px;
  border-radius: 10px;
}

.navbar-nav .dropdown-menu .dropdown-item:focus,
.navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
}

/***--------------------------------------
        HOME PAGE
--------------------------------------***/
.heading-subtitle {
  padding: 12px 20px;
  border-radius: 6px;
  background-color: #c7fdde;
}
.card {
  border-radius: 12px;
}
.features-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  width: 75%;
  height: 4px;
  background-color: rgb(11, 206, 60);
}
.carousel-indicators {
  margin-bottom: 0 !important;
}
.carousel-indicators [data-bs-target] {
  width: 60px;
  height: 6px;
  transition: all 0.5s ease-in-out;
}

.carousel-indicators .active {
  background-color: #198754;
}
.about-list li::before {
  content: "\f058";
  font-family: "font awesome 5 free";
  margin-right: 15px;
  width: 15px;
  height: 15px;
  color: #198754;
}
#services .about-list li {
  margin-bottom: 1rem;
}
.slider-1,
.slider-2 {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 70vh;
  min-height: 480px;
}
@media screen and (max-width: 991px) {
  .slider-1,
  .slider-2 {
    background-position: center;
  }
}
.slider-1 {
  background-image: url("/assets/images/hero-carousel-1.jpg");
}
.slider-2 {
  background-image: url("/assets/images/hero-carousel-2.jpg");
}
#carouselHero .carousel-card-container {
  max-width: 360px;
}
.vision-mission-icon {
  width: 128px;
  height: 128px;
}
@media (max-width: 991px) {
  .vision-mission-icon {
    width: 64px;
    height: 64px;
  }
}
.features {
  background-color: #2b3e4b;
}
.exp-more-btn {
  background-color: #32c36c;
  padding: 10px 12px;
  font-size: 15px;
  border-radius: 50%;
  color: #fff;
  /* transition: 0.5s; */
}
.exp-more-btn:hover {
  background-color: #2b3e4b;
  padding: 10px 12px;
  font-size: 15px;
  border-radius: 10px;
  color: #fff;
}
.exp-more-btn:hover::after {
  content: "Explore More";
  background-color: #2b3e4b;
  padding: 10px 15px;
  font-size: 15px;
  border-radius: 10px;
  color: #fff;
}
.owl-three .item {
  width: 100px;
  height: 70px;
}
.owl-three .owl-carousel .owl-theme .item:hover {
  border-top: 2px solid #32c36c;
}
.footer {
  background-color: #2b3e4b;
}
.footer-widget {
  color: #ffffff;
}
.footer-widget-links li a {
  color: #929ba2;
  font-weight: 700;
}
.footer-widget-links li a:hover {
  color: #32c36c;
}
.footer-contact {
  color: #ffffff;
}
.footer-contact :hover {
  color: #32c36c;
}
.footer-address {
  color: #929ba2;
}
/***--------------------------------------
        ABOUT PAGE
--------------------------------------***/

.about-hero {
  background-image: url("/assets/images/about-hero-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 70vh;
}
.exp {
  background-color: #198754;
  padding: 10px;
  width: fit-content;
  border-radius: 5px 0 0 0;
  transform: rotate(-90deg);
  position: absolute;
  left: -78px;
  bottom: 74px;
}

ol.client-list li+li {
  margin-top: 0.4rem;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .exp {
    background-color: #198754;
    padding: 10px;
    width: fit-content;
    border-radius: 5px 0 0 0;
    transform: rotate(-90deg);
    position: absolute;
    left: -78px;
    bottom: 196px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .exp {
    background-color: #198754;
    padding: 10px;
    width: fit-content;
    border-radius: 5px 0 0 0;
    transform: rotate(-90deg);
    position: absolute;
    left: -95px;
    bottom: 118px;
  }
}
.about-features {
  background-color: #2b3e4b;
}

/***--------------------------------------
        SERVICES PAGE
--------------------------------------***/
.windmill-hero {
  background-image: url("/assets/images/windmill-hero-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 70vh;
}
.windmill-amc .sidebar-widget {
  background-color: #c7fdde;
  border-radius: 13px;
}
.windmill-amc .sidebar-links-group ul li a {
  display: block;
  color: #198754;
  background-color: #fff;
  margin: 10px;
  padding: 15px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 5px 15px 0px rgba(40, 40, 40, 0.11);
  border-radius: 8px;
  transition: 0.7s;
}
.windmill-amc .sidebar-links-group ul li a:hover {
  background-color: #198754;
  color: #fff;
}
.windmill-amc .reception-contact .card {
  background-color: #32c36c;
  color: #fff;
  border: none;
}
.windmill-amc .reception-contact .card a {
  color: #fff;
}
.windmill-amc .download-brochure .card {
  background-color: #32c36c;
  color: #fff;
  border: none;
}
.windmill-amc .download-brochure .card a {
  background-color: #2b3e4b;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
}
.windmill-company-logo {
  background-color: #2b3e4b;
}
.solar-hero {
  background-image: url("/assets/images/solar-hero-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 70vh;
}

.panelboard-hero {
  background-image: url("/assets/images/panelboard-hero-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 70vh;
}

.electrical-hero {
  background-image: url("/assets/images/electrical-hero-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 70vh;
}

.winch-hero {
  background-image: url("/assets/images/winch-hero-img.jpg");
  background-position: center 85%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 70vh;
}
/***--------------------------------------
        GALLERY PAGE
--------------------------------------***/
.gall-link {
  color: #fff;
  padding: 10px;
  width: 200px;
  border-radius: 10px;
}
.gallery-photos {
  text-align: center;
}
.gallery-photos h2 {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;

  margin-bottom: 0.5rem;
  position: relative;
}
.gallery-photos h2::after {
  position: absolute;
  content: '';
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #32c36c;
  border-radius: 4px;
}

.gallery-photos h3 {
  display: block;
  text-align: left;
  margin-right: auto;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  text-decoration: underline;
  text-decoration-color: #32c36c;
}
/***--------------------------------------
        CONTACT PAGE
--------------------------------------***/
.contact-main {
  background-color: #f5f4f4;
}
/*@media (min-width: 768px) {*/
/*  .contact-main .container {*/
/*    position: relative;*/
/*    top: -20vh;*/
/*  }*/
/*}*/
.contact-main .contact-details {
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 5px 83px 0 rgba(9, 29, 62, 0.15);
}
.contact-main .card-left {
  background-color: #32c36c;
  border-radius: 25px;
}
#map {
  width: 100%;
  min-height: 75vh;
  border-style: inset solid;
  border-color: #32c36c;
  border-width: .125rem;
}
#map > iframe {
  width: 100%;
  object-fit: cover;
  min-height: 75vh;
}
@media (min-width: 768px) {
  .contact-main .container {
    position: relative;
    top: -20vh;
  }
}
