

:root {
    --navbg: #262626;
    --font-base: "Oswald";
    --navColor: #525452;
    --fontcolor:#ad6c60;
    --fontlight: #bbb;
    --backcol: #999;
    --letterfont: #9c685f;
}
.carousel {
    max-height: 60vh;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    height: 60vh;
}

.carousel-caption{
    margin-bottom: 100px;
}
.carousel-caption h5{
    font-size: 3rem;
}
.carousel-caption p{
    font-size: 2rem;
    /* font-weight: bold; */
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease-in-out;
}

.carousel-item:hover img {
    transform: scale(1.2);
    
    /* Adjust the scale factor for the zoom effect */
}


.carousel-item {
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the last value (0.5) for overlay opacity */
    z-index: 1;
}

.carousel-caption {
    z-index: 2; /* Ensure that the caption appears above the overlay */
}
@media (max-width: 1100px) {
    .carousel {
        max-height: 30vh;
        overflow: hidden;
    }
    
    .carousel-item {
        position: relative;
        height: 30vh;
    }
    
}
.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-item:hover .overlay {
    opacity: 1;
} */

.overlay h5,
.overlay p {
    margin: 0;
}

/*ABOUT*/
.aboutsection{
    margin-top: 1rem;
}
.card-main{
    padding: 3rem;
}



.rounded-start{
    height: 100%;
}

.aboutsection h2,
.aboutsection h5{
    color: var(--fontcolor);
}
.aboutsection p{
    color: var(--letterfont);
}
.btnall{
    background-color: #ad6c60;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 40px;
}
.btnall:hover{
    background-color: white;
    color: #9c685f;
    border: 2px solid #9c685f;
}

.containliner{
    padding: 1rem;
    background-color: #9c685f;
    color: white;
}
.icon-contain{
    /* padding: 2rem; */
    border-right: 2px dashed #fff;
}
@media (max-width: 767px) {
    .icon-contain {
        border-right: none; /* Remove the right border */
        border-bottom: 2px dashed #fff; /* Add a bottom border */
    }
}
.icon-contain p{
    color: #cec8c8;
    padding: 1rem;
    
}
.containbox{
    border: none;
}


/*contact*/
.contact{
    margin-bottom: 2rem;
}
.contact .card{
    padding: 2rem 5rem;
    border: none;
    border-radius: 30px;
    box-shadow: 10px 10px 10px #9c685f;
}
.contact .card h3{
    color: #9c685f;
    font-size: 33px;
    margin-bottom: 3rem;
}
.contact .card label{
    color: #9c685f;
}
.contact .card input{
    border: none;
    border-bottom: 2px solid #9c685f;
    color: var(--navColor);
}
.contact .card input:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: none; /* Remove any box shadow */
    
}
.contact .card textarea{
    border: 2px solid #9c685f;
    color: var(--navColor);
}
.contact .card textarea:focus{
    outline: none;
    
}

.contact h2{
    font-size: 45px;
}
.contact p{
    font-size: 22px;
}
.mission{
    background-color: #9c685f;
    padding: 5rem 3rem;
}