.png-banner-container {
    width: 100%;
    height: 650px;
    position: relative;
    background: white;
}

.png-banner-container .png-banner {
    /* height: 80%; */
    height: 530px;
    background-image: linear-gradient(to bottom right, #61B856, #2FC0CC);
    /* clip-path: polygon(from top left 30% to left bottom 40%); */
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 46% 100%, 0 28%);
}

.png-banner-container .hex {
    position: absolute;
    top: 50%;
    left: 28%;
    transform: translate(-50%, -50%);
}

.png-banner-container .hex img {
    width: 600px;
}

.png-banner-right {
    width: 100%;
    /* height: auto; */
    height: 530px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    /* background: #2FC0CC; */
}

.png-banner-right .png-banner-desc {
    color: white;
    /* font-size: 2.5rem; */
}

.png-banner-text {
    font-size: 2.5rem;
}

.about-us {
    justify-content: space-between;
}

.about-us-content-container, .about-us .about-us-img {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
}


.title {
    /* times", "courier", "arial", */
    /* "serif", "sans-serif", "cursive", "fantasy", "monospace" */
    /* 'Arial' 'Verdana' 'Times New Roman' 'Georgia' 'Courier New' 'Comic Sans MS' 'Trebuchet MS' 'Impact' 'Lucida Console' 'Tahoma' */

    font-family: 'Molish', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    background: linear-gradient(to bottom, var(--primary-background-color), var(--secondary-background-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-us .about-us-img img {
    width: 100%;
    height: auto;
    max-height: 100%;
}

.about-us-desc {
    text-align: justify;
}

.our-commitment {
    width: 100%;
    height: auto;
    color: var(--primary-color);
    background-image: url('/images/our-commitment.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.our-commitment .commitment-title {
    line-height: 3rem;
    margin-bottom: 1rem;
}

.commitment-item {
    margin: 2rem 0;
}

.commitment-item-icon {
    padding: 1.5rem 0;
}

.commitment-item .commitment-item-icon img {
    width: 50%;
    height: auto;
}

.location-container {
    width: 100%;
    height: 390px;
    margin: 20px 10px;
    background-image: url('/images/Guwahati.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-right-radius: 25%;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 25%;
    border-top-left-radius: 16px;
    overflow: hidden;
}

.location-container .desc-container {
    width: 100%;
    height: 390px;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
}


.location-container .location-desc {
    color: white;
    /* font-size: 18px; */
    height: auto;
    max-height: 100%;
    width: 100%;
    padding: 32px 24px;
    /* background-color: rgba(0, 0, 0, 0.4); */
    /* background: #2FC0CC; */
}

.location-title {
    padding: 10px;
    font-weight: 600;
}

.location-info {
    display: flex;
    font-size: 18px;
}

.location-icon {
    padding: 10px 10px 10px 10px;
}

.location-content {
    padding: 10px 10px 10px 10px;
}

.location-timing {
    font-size: 16px;
}

/* Carousel */


#heroCarousel {
    height: 615px;
}

.carousel-inner {
    position: relative;
    height: 615px;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    height: 100%;
    width: 100%;
}

.carousel-inner .carousel-fixed-shape {
    position: absolute;
    top: 0;
    right: 40%;
    bottom: 0;
    left: 0;
    z-index: 100;
    height: 100%;
    background-image: linear-gradient(to bottom right, #61B856, #2FC0CC);
    clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
    -ms-clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
    -o-clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
}
/* 
.carousel-fixed-shape .text-container {
    position: relative;
    height: 100%;
} */

.carousel-fixed-shape .text-container .carousel-text {
    position: absolute;
    width: 70%;
    padding-left: 50px;
    top: 100%;
    transform: translateY(0);
    transition: all 0.5s ease-in-out;
    opacity: 0;
    color: white;
    font-size: 1rem;
    z-index: 2;
}

.carousel-fixed-shape .text-container .carousel-text.active {
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    opacity: 1;
}

.carousel-fixed-shape .text-container .carousel-text.disappear {
    top: 0;
    width: 40%;
    transform: translateY(-100%);
    font-size: 1rem;
    opacity: 0;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    background-color: black;
    opacity: 0.2;
    border-radius: 25px;
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    padding: 10px;
    color: #fff;
    text-align: center;
    background: transparent;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
    opacity: 0.8;
}



/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 600px) {
    #heroCarousel, .carousel-inner {
        max-height: 150px;
    }

    .carousel-text {
        padding-left: 20px !important;
        font-size: .7rem !important;
    }

    .carousel-text .active {
        font-size: 1.2rem !important;
    }

    .carousel-text .disappear {
        font-size: .5rem !important;
    }

    .png-banner-container {
        height: 150px;
    }

    .png-banner-container .png-banner, .png-banner-right {
        max-height: 130px;
    }

    .png-banner-container .hex {
        left: 40%;
        top: 60%;
    }

    .png-banner-container .hex img {
        /* max-width: 20px; */
        max-width: 60%;
    } 

    .about-us-content-container, .about-us .about-us-img {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        padding: 20px 10px;
    }

    .location-container, .desc-container {
        height: auto !important;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  
    #heroCarousel, .carousel-inner {
        max-height: 280px;
    }

    .carousel-text {
        padding-left: 30px !important;
        font-size: 1.5rem !important;
    }

    .png-banner-container {
        max-height: 400px;
    }

    .png-banner-container .png-banner, .png-banner-right {
        max-height: 330px;
    }

    .png-banner-right .png-banner-desc {
        font-size: 1.3rem !important;
    }

    .png-banner-container .hex {
        left: 25%;
    }

    .png-banner-container .hex img {
        max-width: 350px !important;
    } 

    .about-us-content-container, .about-us .about-us-img {
        width: 100%;
        height: 550px;
        display: flex;
        align-items: center;
        padding: 20px 10px;
        /* background-color: #2FC0CC; */
    }

    .location-container, .desc-container {
        height: 550px !important;
        align-items: baseline !important;
    }

    .location-info {
        font-size: 1rem;
    }

    .location-container, h4 {
        font-size: 1.2rem !important;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    #heroCarousel, .carousel-inner {
        max-height: 350px;
    }

    .carousel-text {
        padding-left: 30px !important;
        font-size: 1.5rem !important;
    }

    .carousel-text {
        padding-left: 60px;
        font-size: 2rem;
    }

    .png-banner-container {
        max-height: 400px;
        /* background-color: #61B856; */
    }

    .png-banner-container .png-banner, .png-banner-right {
        max-height: 330px;
    }

    .png-banner-text {
        font-size: 2rem;
    }

    .png-banner-container .hex {
        left: 30%;
    }

    .png-banner-container .hex img {
        max-width: 350px !important;
    } 

    .about-us-content-container, .about-us .about-us-img {
        width: 100%;
        height: 430px !important;
        display: flex;
        align-items: center;
        padding: 20px 10px;
        /* background-color: #2FC0CC; */
    }

    .location-container, .desc-container {
        height: 470px !important;
        align-items: baseline !important;
    }

    .location-info {
        font-size: 1.2rem;
    }

    .location-container, h4 {
        font-size: 1.4rem !important;
    }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    #heroCarousel, .carousel-inner {
        min-height: 600px !important;
        /* height: auto; */
        
    }

    .carousel-text {
        padding-left: 50px !important;
        font-size: 2.5rem !important;
    }

    .png-banner-container {
        min-height: 600px;
    }

    .png-banner-container .png-banner {
        min-height: 490px;
    }

    .png-banner-container .hex img {
        min-width: 550px;
    } 

    .png-banner-right {
        min-height: 500px;
    }

    .png-banner-right h4 {
        font-size: 2.5rem;
    }

    .location-container, .desc-container {
        height: 400px !important;
        align-items: center !important;
    }

}