.craft-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 110px;
}

#craft {
    position: relative;
    height: calc(100vh - 60px);
    width: 100%;
    overflow: hidden;
}
#craft::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 400px;
    bottom: -130px;
    background-image: url('../img/promo_bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.craft-row {
    margin-left: 100px;
    width: 75%;
    display: flex;
    justify-content: flex-start;
}

.craft-row:first-child {
    align-items: center;
}

.craft-row:nth-child(2) {
    align-items: flex-start;
    margin-top: -60px;
}

.craft-row:nth-child(3) {
    align-items: flex-end;
}
  
.craft-title {
    position: relative;
    color: #2c57dc;
    z-index: 2;
    font-size: 96px;
    margin: 0;
    font-family: Evolventa;
    text-transform: uppercase;
    display: inline;
    margin-right: 20px;
}



#inclusive-label::before, 
#craft-label::before {
    position: absolute;
    color: #0063DA;
    font-family: Evolventa;
    opacity: 0.1;
    content: attr(data-content);
    transition: opacity 0.5s ease-in-out;
}
#inclusive-label::before {
    left: 40px;
    top: -60px;
}
#craft-label::before {
    left: 37px;
    bottom: -60px;
}

@keyframes fadeInOut {
    0% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 0;
    }
}
#inclusive-label::before, 
#craft-label::before {
    animation: fadeInOut 3s infinite;
}
  

.craft-img {
    border-radius: 12px;
}
  
.craft-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}
  
.craft-description {
    font-size: 14px;
    color: #fff;
    max-width: 33%;
}
  
.craft-btn {
    font-family: 'Evolventa';
    font-size: 24px;
    color: #2c57dc;
    padding: 1rem 2.5rem;
    background-color: white;
    border: 2px dotted #2c57dc;
    box-sizing: border-box;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    animation: shake 2s infinite ease-in-out; 
    margin: 0 14px;
    margin-bottom: 60px;
    box-shadow: 0px 2px 6px rgba(46, 46, 46, 0.5);
}
  
.craft-btn:hover {
    background-color: #2c57dc;
    color: white;
    border: 2px dotted white;
}

#craft-gif_1 {
    width: 242px;
    height: 127px;
    margin-bottom: 60px;
}
#craft-gif_2 {
    width: 360px;
    height: 200px;
    margin-top: 20px;
    margin-right: 40px;
}
#craft-gif_3 {
    width: 300px;
    height: 157px;
    margin: 0 40px;
    position: relative;
}
#craft-gif_3::before {
    position: absolute;
    content: "";
    width: 75px;
    height: 35px;
    bottom: 0;
    right: -90px;
    background-image: url('../img/craft/arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(7deg);
    z-index: 2;
}



@media only screen and (max-width: 600px) {
    .craft-container {
        padding: 5.75rem 0.9375rem;
    }
    .craft-row {
        margin-left: 0;
        margin-top: 10rem;
        width: 100%;
    }
    .craft-row:first-child {
        align-items: flex-end;
    }
    
    .craft-row:nth-child(2) {
        align-items: flex-start;
        justify-content: flex-end;
        margin-top: 0px;
    }
    
    .craft-row:nth-child(3) {
        align-items: flex-end;
    }
    .craft-title {
        font-size: 40px;
    }
    #craft {
        height: 100vh;
    }
    #craft::after {
        width: 100%;
        height: 50vh;
        bottom: 0;
        background-image: url('../img/promo_bg-mob.svg');
        z-index: -1;
    }
    #craft::after {
        background-position: center;
    }




    .craft-btn {
        font-family: 'Evolventa-Regular';
        font-size: 14px;
        padding: 1rem 2rem;
        margin: 0px;
        margin-bottom: 0px;
        position: absolute;
        right: 0.9375rem;
        bottom: 45%;
        z-index: 999;
    }

    .craft-description::before {
        position: absolute;
        content: "";
        width: 75px;
        height: 35px;
        bottom: 39%;
        right: 60px;
        background-image: url('../img/craft/arrow.svg');
        background-size: contain;
        background-repeat: no-repeat;
        transform: rotate(-20deg);
        z-index: 222;
    }
    
    #craft-gif_3::before {
        display: none;
    }
    
    #craft-gif_3 {
        position: absolute;
        left: -25px;
        top: 5rem;
        width: 45%;
        height: 12%;
        margin-bottom: 0px;
    }
    #craft-gif_2 {
        position: absolute;
        right: 15px;
        top: 5rem;
        width: 45%;
        height: 12%;
        margin-top: 0px;
        margin-right: 0px;
    }
    #craft-gif_1 {
        width: 45%;
        height: 12%;
        top: 27rem;
        position: absolute;
    }


    #inclusive-label::before {
        left: 8px;
        top: -26px;
    }
    #craft-label::before {
        left: -95px;
        bottom: -25px;
    }


    .craft-description {
        margin-top: 60px;
        line-height: 20px;
        font-size: 14px;
        max-width: 70%;
    }
}