.container {
    position: relative;
    font-family: "Public sans", sans-serif;
    color: #fff;
    padding-top: 75px;
    background: url("https://layerdrops.com/kipso/assets/images/inner-bg-1-1.jpg");
    background-position: 0px -80px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85));
}

.color {
    z-index: 10;
    height: 8px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.color div {
    height: 100%;
}
.color1 {
    background: rgb(87, 136, 87);
}
.color2 {
    background: rgb(241, 126, 72);
}
.color3 {
    background: rgb(131, 76, 131);
}

.main {
    margin-top: 150px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header {
    display: flex;
}

.main h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 0px 10px;
}

.main h1 {
    font-size: 72px;
    font-weight: 700;
    text-transform: uppercase;
}

@media screen and (max-width: 550px) {
    .main h3 {
        font-size: 18px;
    }

    .main h1 {
        font-size: 64px;
    }
}
