* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    text-transform: none;
}
html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    outline: none;
    color: inherit;
}

body {
    font-family: "Inter", sans-serif;
}

.container {
    max-width: 1200px;
    font-family: "Inter", serif;
    margin: 0 auto;
    @media (max-width: 1200px) {
        margin: 0 16px;
    }
    @media (max-width: 480px) {
        margin: 0 8px;

    }
}

.red_btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #C96065;
    color: white;
    font-size: 16px;
    font-weight: 500;
    border-radius: 40px;
    border: none;
    cursor: pointer;

    @media (max-width: 992px) {
        padding: 8px 24px;
        font-size: 14px;
        font-weight: 400;
    }
}

.red_btn:hover {
    background-color: #ca454c;
}

.red_btn:disabled {
    background-color: #CDCDCD;
    cursor: auto;
}

.title_bl {
    font-size: 40px;
    font-weight: 500;

    @media (max-width: 1200px) {
        font-size: 30px;
        line-height: 32px;
    }
    @media (max-width: 768px) {
        font-size: 24px;
        line-height: 26px;
    }
    @media (max-width: 480px) {
        font-size: 20px;
        line-height: 22px;
    }
}

.title_bl_wt {
    color: white;
}






