.no-margin {
    margin: 0;
}

.no-t-margin {
    margin-top: 0;
}

.m-t-10 {
    margin-top: 10px;
}

.m-t-20 {
    margin-top: 20px;
}

.m-b-20 {
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .m-t-100 {
        margin-top: 100px;
    } 
}

@media (max-width: 1023px) {
    .m-t-100 {
        margin-top: 10px;
    } 
}


.p-10 {
    padding: 10px;
}

.h-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.v-align {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
}

.center-items {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}


.center-h-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.white {
    color: white !important;
}

.red {
    color: #ff2529;
}


.title-1 {
    font-size: min(10vw, 5rem);
}

.title-2 {
    font-size: min(8.8vw,14rem);
}

.title-3 {
    font-size: min(5.7vw, 9rem);
}


.title-4 {
    font-size: min(12vw, 19rem);
}

.bold {
    font-weight: bold;
}

.button {
    border: 1px solid darkred;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-align: center;
    font-weight: bold;
    color: black;

}
.button p {
    margin:0;
}

.clear {
    clear:both;
}

.button2 {
    border: 1px solid darkred;
    border-radius: 50px;
    text-align: center;
    font-weight: bold;
    color: black;

}