.anim-fade {
    opacity: 0;
    transform: translateY(50%);
    transition: all 0.5s ease;
}
.anim-opacity {
    opacity: 0;
    transition: opacity 0.5s ease;
}
.anim-opacity.elem_anim {
    opacity: 1;
}
.main-title{
    opacity: 0;
    transform: translateY(30%);
    transition: all 0.5s ease;
}
.main-title.animated {
    opacity: 1;
    transform: translateY(0%);
}
.anim-fade.elem_anim {
    opacity: 1;
    transform: translateY(0%);
}
.anim-btn {
    opacity: 0 !important;
    transition: all 0.5s ease;
    transform: translateY(30%);
}
.anim-btn.elem_anim {
    opacity: 1 !important;
    transform: translateY(0%);
    rotate: 0deg;
}
.anim-delay{
    opacity: 0;
    transition: all 0.5s ease;
}
.anim-delay.elem_anim {
    opacity: 0.6;
}
.anim-delay:nth-child(2){transition: all 0.5s ease 0.2s;}
.anim-delay:nth-child(3){transition: all 0.5s ease 0.4s;}
.anim-delay:nth-child(4){transition: all 0.5s ease 0.6s;}
.anim-delay:nth-child(5){transition: all 0.5s ease 0.8s;}
.anim-delay:nth-child(6){transition: all 0.5s ease 1.0s;}
.anim-delay:nth-child(7){transition: all 0.5s ease 1.2s;}


.none{
    display: none !important;
}
/*Bread*/

.anim-bread {
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateX(-2%);
}
.anim-bread.elem_anim {
    opacity: 1;
    transform: translateX(0%);
}

/*Left/Right*/

.anim-left{
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateX(-10%);
}
.anim-left.elem_anim {
    opacity: 1;
    transform: translateX(0%);
}
.anim-right{
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateX(10%);
}
.anim-right.elem_anim {
    opacity: 1;
    transform: translateX(0%);
}

/*Services*/


.anim-services{
    opacity: 0;
    transition: opacity 0.5s ease;
}
.anim-services.animate {
    opacity: 1;
}
.anim-works{
    opacity: 0;
    transition: opacity 0.5s ease;
}
.anim-works.animate {
    opacity: 1;
}

/*Work*/

.anim-work {
    opacity: 0;
    transform: translateY(10%);
    transition: all 0.5s ease;
}
.anim-work.elem_anim {
    opacity: 1;
    transform: translateY(0%);
}