.defaulthero2-container {
    display: flex;
    align-items: center;
    padding: 100px 0 110px;
    min-height: 650px;
    position: relative;
}

.defaulthero2 {
    position: relative;
}

.defaulthero2 h1 {
    color: white;
    margin: 0 0 15px;
    text-shadow: 2px 2px 10px black;
    font-weight: 800;
}

.defaulthero2 p {
    color: white;
    margin: 0 0 15px;
    text-shadow: 2px 2px 10px black;
    font-weight: 600;
    width: 800px;
    max-width: 100%;
}

.defaulthero2-container .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

/* default hero 2 */
.attributes {
    position: absolute;
    z-index: 2;
    right: 0;
    width: 50%;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    padding: 30px;
    background: var(--primary);
    align-items: center;
}

.flex3or2 {
    display: grid;
    /* grid-gap: 20px; */
    grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
    width: calc(70% - 50px);
}

.attri1 h4 {
    color: white;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 12px;
    margin: 0;
}

.attri1 p {
    color: white;
    font-weight: 600;
    margin: 5px 0 0;
    font-size: 14px;
}

.attributes .btn {
    border-radius: 0;
    width: 25%;
}

.attributes .btn:hover {
    background: white;
    color: var(--primary);
}


@media (max-width:1500px) {
    .attributes {
        width: 100%;
    }
}

@media (max-width:1199px) {
    .defaulthero2-container {
        min-height: initial;
        flex-direction: column;
        padding-bottom: 200px;
    }


}

@media (max-width:767px) {
    .flex3or2 {
        grid-gap: 15px;
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }

    .defaulthero2-container {
        padding: 100px 0 0;
    }

    .attributes {
        flex-direction: column;
        position: relative;
        margin-top: 30px;
    }

    .attributes .btn {
        width: 100%;
        margin-top: 30px;
    }

}