.flexx {
    display: flex;
}
.al-center {
    align-items: center;
}
.al-start{
    align-items: start;
}
.al-end {
    align-items: end;
}
.jus-end{
    justify-content: end;
}
.jus-center {
    justify-content: center;
}
.jus-between {
    justify-content: space-between;
}
.flex-col {
    flex-direction: column;
}
.center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hover {
    transition: all 0.35s ease-in;
}

.hover-text{
    transition: all 0.2s ease;
}

.back-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gap1{
    display: flex;
    gap: 1rem;
}
.gap2{
    display: flex;
    gap: 2rem;
}
.gap1-25{
    display: flex;
    gap: 1.25rem;
}
.gap-7{
    display: flex;
    gap: .7rem;
}
.gap-65{
    display: flex;
    gap: .65rem;
}
.gap1-62{
    display: flex;
    gap: 1.62rem;
}
.gap1-88{
    display: flex;
    gap: 1.88rem;
}

.mb-1{
    margin-bottom: 1rem;
}
.mb-1-25{
    margin-bottom: 1.25rem;
}
.mb-2{
    margin-bottom: 2rem;
}
.mt-hero{
    margin-top: .4rem;
}
.mb-10{
    margin-bottom: 10px;
}

.content-text ol,
.content-text ul{
    padding-left: .9rem;
}
.content-text li{
    font-size: .9rem;
    margin-bottom: 1rem;
}

.for-opacity{
    opacity: 0;
    pointer-events: none;
}

.for-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-style{
    font-size: .9rem;
    font-weight: 700;
    height: 3.125rem;
    padding: 1rem 2rem;
    border-radius: 6.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease-in;
    background: linear-gradient(180deg, #2b65cc 0%, #4387ff 105.73%);
    color: white;
}
.btn-style:hover {
    background: linear-gradient(0deg, #2b65cc 100%, #4387ff 0%);
}
.full-size{
    width: 100%;
}
.mid-size{
    width: 50%;
}
.for-big-font{
    font-size: 1.25rem;
    font-weight: 600;
}
.text-end{
    text-align: end;
}
.underline{
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 7%;
    text-underline-offset: 16.5%;
}