/* ############# Hero #############*/
#hero {
    width: 100%;
    background-color: rgb(255, 240, 133);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-bottom: 4px solid black;
}

#hero .container {
    margin: 150px auto 60px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

}

.bg-sq {
    position: absolute;

}

.bg-sq-1 {
    width: 128px;
    height: 128px;
    background-color: rgba(0, 0, 0, 0.1);
    top: 30px;
    left: 30px;
    z-index: -1;
    transform: rotate(10deg);
}

.bg-sq-2 {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 0, 0, 0.1);
    top: 120px;
    right: 50px;
    z-index: -1;
    transform: rotate(45deg);
}

.bg-sq-3 {
    width: 100px;
    height: 100px;
    background-color: rgba(0, 0, 255, 0.1);
    bottom: 155px;
    left: 450px;
    z-index: -1;
    transform: rotate(45deg);
}

#hero .hero-content {
    padding-right: 20px;
}

#hero .hero-img {
    padding-left: 20px;
}

#hero .hero-content .hero-content-span {
    transform: rotate(-2deg);
    margin-bottom: 20px;
}

#hero .hero-content h2,
#hero .hero-content h2 span {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: rgba(0, 0, 0, 0.7) 3px 3px;
}

#hero .hero-content p {
    font-size: 24px;
    width: 100%;
    background-color: white;
    padding: 16px;
    font-weight: 500;
    border: 2px solid black;
    box-shadow: 3px 3px black;
    margin: 30px 0;
    line-height: 32px;
}

#hero .hero-content .hero-content-btns {
    display: flex;
    justify-content: flex-start;

}

.hero-content-btns-btn {
    margin-right: 20px;
    margin-bottom: 20px;
    position: relative;
}

#hero .hero-img {
    position: relative;
}

#hero .hero-img .hero-img-container {
    height: 384px;
    border: 4px solid black;
    box-shadow: 8px 8px black;
    transform: rotate(2deg);
    transition: transform 0.2s;
}

#hero .hero-img .hero-img-container:hover {
    transform: translate(-5px, -5px) rotate(2deg);
}

#hero .hero-img .hero-img-container img {
    height: 100%;
    object-fit: cover;
}

#hero .hero-img span {
    font-weight: 700;
    background-color: #FB2C36;
    color: white;
    border: 2px solid black;
    box-shadow: 3px 3px black;
    transform: rotate(12deg);
    padding: 5px 10px;
    position: absolute;
    top: -16px;
    right: -20px;
}

@media screen and (min-width: 200px) {
    #hero .hero-content p {
        font-size: 18px;
        line-height: 24px;
    }
    #hero .hero-img .hero-img-container {
        height: 300px; 
    }
    #hero .hero-img span{
        font-size: 8px;
    }
    #hero .hero-content h2,
    #hero .hero-content h2 span {
        font-size: 54px;
    }
}

@media screen and (min-width: 1024px) {
    #hero .hero-content p {
        font-size: 24px;
        line-height: 32px;
    }
    #hero .hero-img .hero-img-container {
        height: 384px;
    }
    #hero .hero-img span{
        font-size: 16px;
    }
    #hero .hero-content h2,
    #hero .hero-content h2 span {
        font-size: 72px;
    }
}

@media screen and (max-width: 1024px) {

    #hero .hero-img .hero-img-container {
        /* height: 384px; */
        border: 4px solid black;
        box-shadow: 8px 8px black;
        transform: rotate(0deg);
        transition: transform 0.2s;
    }

    #hero .hero-img .hero-img-container:hover {
        transform: translate(-5px, -5px) rotate(0deg);
    }
}

@media screen and (max-width: 576px) {
    #hero .hero-content .hero-content-btns button {
        width: 100%;
        padding: 8px 16px;
        font-size: 12px;
        font-weight: 700;
        border: #000 4px solid;
        margin-right: 10px;
        transition: transform 0.2s;
    }
}

/* ############# End Hero #############*/