
.headerContainer {
    background: rgb(235, 234, 234);
    font-family: "Montserrat";
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 500px;
}

.left-image,
.right-image,
.background-image {
    position: absolute;
    height: auto; /* Maintain aspect ratio */
}

.left-image {
    left: -3%;
    bottom: 0;
    max-width: 26%; /* Adjust the percentage based on your design */
}

.right-image {
    right: 13%;
    top: 5%;
    max-width: 15%; /* Adjust the percentage based on your design */
    z-index: 2;
}

.background-image {
    right: 18.5%;
    top: 2%;
    max-width: 14%; /* Adjust the percentage based on your design */
    z-index: 1;
    filter: brightness(85%) contrast(100%) saturate(50%) hue-rotate(30deg);
}

@media (max-width: 768px) {
    .left-image,
    .right-image,
    .background-image {
        display: none;
    }
}

@media (min-width: 769px) {
    .left-image {
        left: -16%;
        bottom: 0;
        max-width: 35%; /* Adjust the percentage based on your design */
    }

    .right-image {
        right: -2%;
        top: 5%;
        max-width: 20%; /* Adjust the percentage based on your design */
        z-index: 2;
    }

    .background-image {
        right: 6%;
        top: 5%;
        max-width: 16%; /* Adjust the percentage based on your design */
        z-index: 1;
        filter: brightness(85%) contrast(100%) saturate(50%) hue-rotate(30deg);
    }
}

@media (min-width: 1024px) {
    .left-image {
        left: -7%;
        bottom: 0;
        max-width: 30%; /* Adjust the percentage based on your design */
    }

    .right-image {
        right: 3%;
        top: 5%;
        max-width: 20%; /* Adjust the percentage based on your design */
        z-index: 2;
    }

    .background-image {
        right: 11%;
        top: 5%;
        max-width: 16%; /* Adjust the percentage based on your design */
        z-index: 1;
        filter: brightness(85%) contrast(100%) saturate(50%) hue-rotate(30deg);
    }
}

@media (min-width: 1200px) {
    .left-image {
        left: 2%;
        bottom: 0;
        max-width: 25%; /* Adjust the percentage based on your design */
    }

    .right-image {
        right: 14%;
        top: 5%;
        max-width: 15%; /* Adjust the percentage based on your design */
        z-index: 2;
    }

    .background-image {
        right: 19.5%;
        top: 5%;
        max-width: 14%; /* Adjust the percentage based on your design */
        z-index: 1;
        filter: brightness(85%) contrast(100%) saturate(50%) hue-rotate(30deg);
    }
}

@media (min-width: 1440px) {
    .left-image {
        left: 8%;
        bottom: 0;
        max-width: 22%; /* Adjust the percentage based on your design */
    }

    .right-image {
        right: 14%;
        top: 5%;
        max-width: 15%; /* Adjust the percentage based on your design */
        z-index: 2;
    }

    .background-image {
        right: 19.5%;
        top: 5%;
        max-width: 14%; /* Adjust the percentage based on your design */
        z-index: 1;
        filter: brightness(85%) contrast(100%) saturate(50%) hue-rotate(30deg);
    }
}

@media (min-width: 2560px) {
    .left-image {
        left: 25%;
        bottom: 0;
        max-width: 13%; /* Adjust the percentage based on your design */
    }

    .right-image {
        right: 30%;
        top: 5%;
        max-width: 8%; /* Adjust the percentage based on your design */
        z-index: 2;
    }

    .background-image {
        right: 32%;
        top: 2%;
        max-width: 9%; /* Adjust the percentage based on your design */
        z-index: 1;
        filter: brightness(85%) contrast(100%) saturate(50%) hue-rotate(30deg);
    }
}

.navbar-toggler {
    border: none;
    outline: none;
    border-radius: 2px;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
}

.navbar-collapse {
    justify-content: center;
}

.nav-item {
    margin: 0 10px;
}

@media (min-width: 990px) {
    .nav-item {
        margin: 10px 0;
    }
}

.stepsIcon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stepsIcon img {
    filter: brightness(65%) contrast(15%) saturate(100%) hue-rotate(30deg);
}

.stepsIcon div {
    text-align: center;
    margin: 35px; /* Adjust the margin value to add space around each div */
}

.stepText {
    color: darkgray;
    font-size: 18px; /* Adjust the font size as needed */
}

@media (max-width: 768px) {
    .stepsIcon div {
        margin: 15px; /* Adjust the margin for smaller screens */
    }

    .stepText {
        font-size: 14px; /* Adjust the font size for smaller screens */
    }
}

#textArea{
    width: 450px;
    height: 140px;
    background: white;
    position: relative;
    -moz-border-radius:12px;
    -webkit-border-radius:12px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: rgb(255, 255, 245);
    justify-content: center;
    text-align: justify;
    display: flex;
    align-items: center;
    padding: 60px;
    font-size: 12px;
}

#textArea:before{
    content: '';
    position: absolute;
    right: 100%;
    top: 60px;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-right: 25px solid rgb(255, 255, 235);
    border-bottom: 13px solid transparent;
} 