﻿.row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* Ensure items stretch to the same height */
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;

}

.text-left {
    display: flex;
    align-items: center; /* Center the text vertically */
    justify-content: center; /* Center the text horizontally */
    font-family: 'Avenir Next LT Pro Light', sans-serif; /* Apply the font */
    font-size: 16px; /* Increase the text size */
}

.img-container {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9; /*Maintain consistent image proportions*/
    overflow: hidden;
    display: flex;
    justify-content:center;
    align-items:center;
}

    .img-container img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: scale-down; /*Resize proportionally to fit the container*/
    }

/* Button Styling */
.btn-style {
    display: flex;
    align-items: center; /* Center the text vertically */
    justify-content: center; /* Center the text horizontally */
    font-family: 'Avenir Next LT Pro Light', sans-serif; /* Apply the font */
   
    
}

.btn-custom {
    display: inline-block;
    width: 100%; /* Make the button the width of the div */
    padding: 15px 20px; /* Add padding for a larger clickable area */
    margin-top: 0px; /* Add space above the button */
    font-family: 'Avenir Next LT Pro Light', sans-serif; /* Apply the font */
    font-size: 18px; /* Make the text large enough to be noticed */
    background-color: #C3BBB5; /* Contrast background color */
    color: #ffffff; /* White text color */
    border: none; /* Remove border */
    border-radius: 8px; /* Smooth rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add an elegant shadow */
    transition: transform 0.2s, box-shadow 0.2s; /* Smooth expanding feature */
    text-align: center; /* Center the text */
    text-decoration: none; /* Remove underline from link */
}

    .btn-custom:hover {
        transform: scale(1.05); /* Slightly expand on hover */
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Intensify shadow on hover */
    }

    .btn-custom:focus {
        outline: none; /* Remove outline on focus */
    }

.btn-spacing {
    margin-bottom: 1.5rem;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in;
}

    .fade-in.visible {
        opacity: 1;
    }



