/**
***  Title Section
**/
.title-container { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content:end;
	width: 100vw; 
	height: 120px; 
	position: relative;
    background-position-x: center;
    background-size: cover;
    background-repeat: no-repeat;
 }
 @media (min-width:426px) and (max-width:768px) {
    .title-container {
        height: 200px;
    }    
 }
 @media (min-width:769px) {
    .title-container {
        height: 300px;
    }
 }

.title-text-container {
	/* font-size: clamp(1.625rem, 1.068rem + 2.7848vw, 4.375rem); */
    letter-spacing: 0.3rem;
    font-size: clamp(20px, 3.5vw, 50px);
}

.mb-6 {
    margin-bottom: 2rem!important;
 }
 @media (min-width:768px) {
    .mb-6 {
        margin-bottom: 5rem!important;
    }
 }