.flex-div{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.a-logo{
    position: absolute;
    top: 4%;
    left: 5%;
    width: 14%;
}

.logo{
    width: 100%;
}

.title{
    font-size: 8vw;
    color: var(--lighter-color);
    line-height: 8vw;
}

.title2{
    font-size: 8.5vw;
    color: var(--lighter-color);
    line-height: 8vw;
}

.subtitle{
    font-size: 1.8vw;
}

.mt-1{
    margin-top: 4vw;
}

p{
    font-size: 1.4vw;
    line-height: 1.8vw;
    color: var(--input-border-color);
}

.p-subtitle{
    text-align: justify;
    width: 75%;
}

.bold{
    font-family: var(--bold-font);
}

.relative{
    position: relative;
}

.lh-0{
    line-height: 0;
}

.banner-title{
    position: absolute;
    top: 32.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.banner-subtitle{
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
}

.catalogue-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4vw;
}

.catalogue-title{
    font-size: 2.2vw;
    color: var(--lighter-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.catalogue-button-container{
    display: flex;
    align-items: center;
    gap: 1vw;
}

.catalogue-button-container > img{
    height: 3vw;
}

.catalogue-button{
    font-size: 3.2vw;
    font-family: var(--bold-font);
    background-color: var(--lighter-color);
    color: var(--primary-color);
    padding: 0 2vw;
    border: none;
    cursor: pointer;
}

.catalogue-bottom{
    display: flex;
    align-items: baseline;
}

.catalogue-bottom-span{
    font-size: 1.6vw;
    color: var(--lighter-color);
}

.underline-img{
    position: absolute;
    left: 52%;
    transform: translate(-50%);
    bottom: -0.8vw;
    height: 0.65vw;
}

.primary{
    color: var(--primary-color);
}

.secondary{
    color: var(--secondary-color);
}

.services{
    display: flex;
    justify-content: space-around;
    gap: 2vw;
    margin-top: 4%;
    margin-bottom: 5%;
    padding: 0 5%;
    width: 100%;
}

.service{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.service > img{
    object-fit: cover;
    height: 10vw;
}

.service > span{
    font-size: 1.5vw;
    margin-top: 10px;
}

.beige-bg{
   background-color: #e6edce;
   width: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   padding: 7vw 0;
}

.beige-subtitle{
    font-size: 1.4vw;
}

.newsletter-form{
    margin-top: 2vw;
    width: 15%;
}

.newsletter-form > input{
    border: none;
    width: 100%;
    padding: 1vw 2vw;
    font-size: 0.9vw;
    text-align: center;
    margin-top: 0.4vw;
}

.newsletter-form > button{
    font-size: 1.2vw;
    border: none;
    background-color: unset;
    font-family: var(--bold-font);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.6vw; 
    align-self: center;
    width: 100%;
    margin-top: 2vw;
}

.social{
    display: flex;
    justify-content: center;
    margin: 1.5vw 0;
    gap: 1.5vw;
}

.social-logo{
    height: 2.6vw;
}

.text-center{
    text-align: center;
}

.p-margin{
    margin-top: 6%;
}

.img{
    width: 100%;
}

.gray-text{
    color: var(--input-border-color);
}

.a{
    text-decoration: none;
}