.abs {
    position: absolute;
}

.row {
    display: flex;
}

.col {
    display: flex;
    flex-direction: column;
}

.ai-c {
    align-items: center;
}

.jc-c {
    justify-content: center;
}

.jc-sa {
    justify-content: space-around;
}

.jc-sb {
    justify-content: space-between;
}

.jc-se {
    justify-content: space-evenly;
}

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

.warp{
    flex-wrap: wrap;
}


.gap{
    gap: 4px;
}

.gap-small {
    gap: 10px;
}

.gap-mid {
    gap: 40px;
}

.gap-big {
    gap: 100px;
}

.relative {
    position: relative;
}


.mb-small {
    margin-bottom: 1rem;
}

.mt-1 {
    margin-top: 1rem;

}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

a {
    text-decoration: none;
}

ul{
    list-style: none;
    list-style-type: none;
}

.fs-1 {
    font-size: 1rem;
    color: #303030;
}

.fs-2 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #303030;
}

.fs-4{
    font-size: 1.8rem;
    font-weight: bold;
    color: #303030;
    width: 70%;
    border-bottom: 1px solid black;
    padding-bottom: 1rem;
}

.ml-2 {
    margin-left: 3rem;
}

.fs-title{
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 7.5rem;
    color: #303030;
}

.fs-subtitle{
    font-family: "Ubuntu", sans-serif;
    font-weight: lighter;
    font-size: 6.5rem;
    margin-top: -6rem !important;
}

.little {
    font-size: 1.4rem;
    color: #303030;
    margin-top: -4rem;
}

@media screen and (min-width: 1700px) {
    .fs-title{
        font-size: 8.5rem;
    }
    .fs-subtitle{
        font-size: 7.5rem;
        margin-top: -7rem !important;
    }
    .little {
        font-size: 1.3rem;
        margin-top: -5rem;
    }
}


@media screen and (min-width: 1800px) {
    .fs-title{
        font-size: 9.5rem;
    }
    .fs-subtitle{
        font-size: 8.5rem;
        margin-top: -8rem !important;
    }
    .little {
        font-size: 1.8rem;
        margin-top: -6rem;
    }
    .fs-1{
        font-size: 1.2rem;
    }
    .fs-2{
        font-size: 1.5rem;
    }
    .fs-3{
        font-size: 2rem;
    }

}

.ml-6{
    margin-left: 26rem;
}


.fs-3 {
    font-size: 2.5rem;
    color: #303030;
}

.wrap2 {
    flex-wrap: wrap;
}

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

.green{
    color: green;
}

.red{
    color: red;
}

.w-100{
    width: 100%;
    display: flex;
    margin-top: 1rem;
}

.mt-9{
    margin-top: 15rem;
}

.mt-8{
    margin-top: 10rem;
}

.mb-2{
    margin-bottom: 1rem;
}

.m-auto{
    margin: auto;
}