.container {
    font-family: "Public sans", sans-serif;
    color: #fff;
    padding-top: 75px;
    width: 100%;
    background: linear-gradient(rgba(2, 44, 70, 0.9), rgba(2, 44, 70, 0.9)),
        url("/static/images/mecat/background.jpg") repeat;
}

.colors {
    height: 0.5vh;
    min-height: 9px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.color {
    height: 100%;
    opacity: 0.9;
}

.main {
    position: relative;
    width: 90%;
    max-width: 1100px;
    margin: 0px auto;
    display: grid;
    grid-template-columns: 3fr 1fr;
    padding: 60px 0px 60px 0px;
}

.heading {
    font-size: 100px;
    line-height: 1em;
    font-weight: 700;
    width: 100%;
    max-width: 750px;
}

.sub_heading {
    font-size: 28px;
    margin: 20px 0px;
    width: 100%;
    max-width: 750px;
}

.btn {
    background: #f16101;
    border: none;
    outline: none;
    font-family: inherit;
    color: #fff;
    padding: 20px 60px;
    font-weight: 600;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
}

.graphic {
    position: relative;
}

.scratch {
    width: 350px;
}
.person_img {
    position: absolute;
    bottom: -60px;
    height: 130%;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 1000px) {
    .main {
        grid-template-columns: 1fr;
    }
    .graphic {
        display: none;
    }
}

@media screen and (max-width: 550px) {
    .heading {
        font-size: 64px;
    }
    .sub_heading {
        font-size: 24px;
    }
}
