h1, .h1 {
    font-family: 'Inter', sans-serif;
    font-size: 62px;
    line-height: normal;
    letter-spacing: 0;
    font-weight: 400;
    text-transform: none;
}
h2, .h2 {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    line-height: normal;
    letter-spacing: 0;
    font-weight: 400;
    text-transform: none;
}
h3, .h3 {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    line-height: normal;
    letter-spacing: 0;
    font-weight: 400;
    text-transform: none;
}
h4, .h4 {
    font-family: 'Inter', sans-serif;
    font-size: 33px;
    line-height: normal;
    letter-spacing: 0;
    font-weight: 400;
    text-transform: none;
}
h5, .h5 {
    font-family: 'Inter', sans-serif;
    font-size: 27px;
    line-height: normal;
    letter-spacing: 0;
    font-weight: 400;
    text-transform: none;
}
h6, .h6 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    line-height: normal;
    letter-spacing: 0;
    font-weight: 400;
    text-transform: none;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0;
}

@media(max-width: 991px) {
    h1, .h1 {
        font-size: 76px;
    }
    h2, .h2 {
        font-size: 62px;
    }
    h3, .h3 {
        font-size: 50px;
    }
    h4, .h4 {
        font-size: 35px;
    }
    h5, .h5 {
        font-size: 30px;
    }
    h6, .h6 {
        font-size: 26px;
    }
}

@media(max-width: 767.98px) {
    h1, .h1 {
        font-size: 40px;
    }
    h2, .h2 {
        font-size: 36px;
    }
    h3, .h3 {
        font-size: 32px;
    }
    h4, .h4 {
        font-size: 30px;
    }
    h5, .h5 {
        font-size: 26px;
    }
    h6, .h6 {
        font-size: 24px;
    }
    p {
        font-size: 16px;
    }
}

.read-more {
    color: var(--Text, #27272A);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: unset;
    margin-left: auto;
    display: block;
    width: fit-content;
    padding-right: 134px;
    position: relative;
    margin-top: 75px;
}
.read-more:hover {
    /* font-weight: 700; */
    color: var(--Primary-Blue, #002F6C);

}
.read-more:after{
    content:'';
    width: 95px;
    height: 2px;
    background-color: #27272A;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}
.read-more:before{
    content:'';
    width: 45px;
    height: 45px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/arrow-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    transition: all .3s;
}
.read-more:hover:before {
    right: -22px;
    transition: all .3s;
}
@media(max-width: 1024.98px) {
    .read-more {
        display: flex;
        width: 154px;
        height: 45px;
        padding: 16px 24px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        border-radius: 45px;
        background: var(--Primary-Red, #BA0C2F);
        color: #fff;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .read-more:hover {
        color: var(--Primary-Red, #BA0C2F);
        background: inherit;
        border: 1px solid var(--Primary-Red, #BA0C2F);
    }
    .read-more:before,
    .read-more:after {
        display: none;
    }
}