@import url(common.css);
@import url(comon_media_query.css);


.home_banner_slider {
    background: url("../images/home_banner_slider/slider_background.png");
}
.home_banner .green_background{
    background-color: var(--green);
}
.home_banner .position-absolute {
    padding: 15px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.home_banner .position-absolute p {
    color: var(--white);
    font-weight: 900;
    font-size: 50px;
}

.home_banner .position-absolute span {
    color: var(--yellow);
    font-weight: 600;
    font-size: 18px;
}

.card {
    border: none;
    background: #FFFFFF;
    box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.25);
    padding: 15px;
    border-radius: 0;
    min-height: 15rem;
    margin-bottom: 15px;
    max-width: 16rem;
}

.north_east_arrow {
    color: var(--gray);
    font-size: 40px;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

.north_east_arrow img {
    position: absolute;
    top: 30%;
    left: 30%;
    width: 40%;
}

.north_east_arrow_wrapper {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.card h5 {
    font-weight: 600;
    font-size: 18px;
    color: #303030;
}

.card p {
    color: #303030;
    font-size: 9px;
}

.north_east_arrow .img2 {
    display: none;
}

.card:hover,
.card:hover .north_east_arrow {
    background: var(--green);
}

.card:hover p,
.card:hover h5 {
    color: var(--white);
}

.card:hover .north_east_arrow .img1 {
    display: none;
}

.card:hover .north_east_arrow .img2 {
    display: block;
}


.map {
    background: #EEEEEE;
}

.page_title {
    color: var(--green);
}

.title {
    font-weight: 700;
    font-size: 26px;
}

.slick-prev.slick-arrow {
    position: absolute;
    margin-left: 125px;
    z-index: 999;
}

.slick-next.slick-arrow {
    position: absolute;
    margin-right: 125px;
    z-index: 999;
}

.slick-prev:before {
    color: #FDCA40;
    font-size: 30px;
  }
  
  .slick-next:before {
    color: #FDCA40;
    font-size: 30px;
  }

  video {
    width: 600px;
  }


@media (max-width: 768px) {
    .card {
        min-height: 20rem;
    }
}

@media (max-width: 576px) {
    video {
        width: 275px;
      }
    .gal img {
        width: 100%;
    }

    .card {
        min-height: 17rem;
    }

    .card p {
        font-size: 14px;
    }
    .home_banner .position-absolute p {
        font-size: 18px;
    }
    
    .home_banner .position-absolute span {
        font-size: 14px;
    }

    .slick-prev.slick-arrow {
        margin-left: 125px;
    }
    
    .slick-next.slick-arrow {
        margin-right: 125px;
    }
    .slick-dots li.slick-active button:before {
        color: #FDCA40;
        font-size: 20px;
    }
}