/*Main Body*/
/*TODO:
    - Organize HTML and CSS code for a cleaner look
*/
.gabarito-IzzyIs {
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html {
    overflow-x: hidden;
}

body {
    font-family: "Gabarito", sans-serif;
    margin: 0%;
    color: white;
    background-image: url(images/checkered-pattern-yellow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    height: calc(var(--vh, 1vh) * 100);
}
.content {
    flex: 1;
}

/* Navbar Area */
.overlay {
    position: sticky;
    top: 0;
    z-index: 1001;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #13181ca2;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

    font-size: 32pt;
    font-weight: 500;
    padding: 1.5rem 0;
    width: 100%;
}

.navbar-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.left {
    margin-right: auto;
    margin-left: 10%;
}

.right {
    margin-left: auto;
    margin-right: 10%;
}

.logo-link {
    display: inline-block; 
    align-items: center;
    justify-content: center;
    padding: 0; 
    margin-left: 2%;
    margin-right: 2%;
}

.logo {
    display: block;
    max-height: 150px;
    max-width: 14vw;
    width: auto;
    margin: 0;
}

.navbar a:link {
    color: white;
    text-decoration: none;
}
.navbar a:visited {
    color: white;
    text-decoration: none;
}
.navbar a:hover {
    color: #feef16;
}
.navbar a:active {
    color: #b1a70f;
}

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 1500px) {
    .navbar {
        padding: 1rem 0;
    }
    .logo {
        max-width: 18vw;
    }
}

/* Smaller desktop */
@media (max-width: 1200px) {
    .navbar {
        font-size: 28pt;
    }
    
    .logo {
        max-height: 180px;
    }
    
    .left, .right {
        margin-left: 5%;
        margin-right: 5%;
    }
}

/* Smallest Desktop */
@media (max-width: 1040px) {
    .navbar {
        position: relative;
    }
    .logo {
        max-width: 28vw;
    }
    
    .hamburger {
        display: flex;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
    }
    
    .navbar-links.left,
    .navbar-links.right {
        display: none;
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #13181c;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        font-size: 32pt;
    }
    
    .mobile-menu-overlay.active {
        display: flex;
    }
    
    .mobile-menu-overlay a:link {
        color: white;
        text-decoration: none;
    }
    .mobile-menu-overlay a:visited {
        color: white;
        text-decoration: none;
    }
    .mobile-menu-overlay a:hover {
        color: #feef16;
    }
    .mobile-menu-overlay a:active {
        color: #b1a70f;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .navbar {
        font-size: 18pt;
        padding: 0.75rem 0;
    }
    
    .logo {
        max-height: 100px;
        max-width: 50vw;
    }
    
    .mobile-menu-overlay {
        font-size: 24pt;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .navbar {
        font-size: 14pt;
        padding: 0.5rem 0;
    }
    
    .logo {
        max-height: 60px;
        max-width: 60vw;
    }
    
    .hamburger {
        left: 15px;
        padding: 8px;
    }
    
    .bar {
        width: 22px;
        height: 2.5px;
    }
    
    .mobile-menu-overlay {
        font-size: 20pt;
        gap: 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .navbar {
        padding: 0.4rem 0;
    }
    
    .logo {
        max-height: 50px;
        max-width: 65vw;
    }
    
    .hamburger {
        left: 10px;
    }
    
    .mobile-menu-overlay {
        font-size: 18pt;
    }
}

/* Bio Section */
.bio {
    display: block;
    padding: 30px 250px;
}
.bioGrid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    justify-content: center;
    gap: 120px;
}
.rectangle {
    text-align: center;
    display: block;
    align-items: center;
}
.portrait img {
    border-radius: 10px;
    height: 720px;
    filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.692));
    transition: transform 0.5s ease;
}
.portrait img:hover {
    transform: scale(1.02);
}
.bioHeader {
    font-size: 58px;
    text-align: left;
    padding-bottom: 30px;
    cursor: default;
    flex-direction: column;
    filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.692));
}
.bioHeaderLine1 {
    font-weight: 700;
    font-size: 160px;
    background-size: 300% 100%;
    background-image: linear-gradient(45deg, #f2f227, #ffd800, #af9500);
    -webkit-background-clip: text; 
    background-clip: text;
    color: transparent;
    text-shadow: #1f1f1f;

    display: inline-block;
    transition: transform 0.5s ease;
}
.bioHeaderLine1:hover {
    transform: scale(1.05);
}
.bioHeaderLine1.animate-gradient {
    animation: gradientShift 4s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
#bioHeaderLine2 {
    font-weight: 500;
}

/* Medium desktop */
@media (max-width: 1500px) {
    .bio {
        padding: 30px 150px;
    }
    
    .portrait img {
        height: 600px;
    }
    
    .bioHeaderLine1 {
        font-size: 120px;
    }
    
    .bioHeader {
        font-size: 48px;
    }
}

/* Small desktop */
@media (max-width: 1200px) {
    .bio {
        padding: 30px 100px;
        gap: 40px;
    }
    
    .portrait img {
        height: 480px;
    }
    
    .bioHeaderLine1 {
        font-size: 120px;
    }
    
    .bioHeader {
        font-size: 48px;
    }
}

/* Smaller Desktop */
@media (max-width: 1040px) {
    .bio {
        padding: 20px 50px;
    }
    
    .bioGrid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .portrait img {
        width: 100%;
        height: auto;
        max-width: 400px;
        display: block;
        margin: 0 auto;
    }
    
    .bioHeaderLine1 {
        font-size: 80px;
    }
    
    .bioHeader {
        font-size: 36px;
        text-align: center; 
    }
}

/* Tablet */
@media (max-width: 768px) {
    .bio {
        padding: 20px 30px;
    }
    
    .portrait img {
        max-width: 350px;
    }
    
    .bioHeaderLine1 {
        font-size: 60px;
    }
    
    .bioHeader {
        font-size: 32px;
    }
    
    #bioHeaderLine2 {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .bio {
        padding: 15px 20px;
    }
    
    .portrait img {
       max-width: 220px;
    }
    
    .bioHeaderLine1 {
        font-size: 48px;
    }
    
    .bioHeader {
        font-size: 26px;
        padding-bottom: 20px;
    }
    
    #bioHeaderLine2 {
        font-size: 20px;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .bio {
        padding: 10px 15px;
    }
    
    .portrait img {
        max-width: 140px;
    }
    
    .bioHeaderLine1 {
        font-size: 40px;
    }
    
    .bioHeader {
        font-size: 22px;
        padding-bottom: 15px;
    }
    
    #bioHeaderLine2 {
        font-size: 18px;
    }
}

/* Project Showcase */
.projectShowcase {
    padding: 50px 0px;
    grid-template-columns: repeat(2, 1fr);
}
#projectShowcaseHeader {
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin-bottom: 30px;

    text-align: center;
    font-size: 88px;
    font-weight: 700;
    cursor: default;

    filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.692))
}
#projectShowcaseSpecialNum {
    display: inline-block;
    cursor: default;
    position: relative;
    transition: transform 0.3s ease;
}
#projectShowcaseHeader span:hover #projectShowcaseSpecialNum {
    transform: scale(1.25);
}
#projectShowcaseHeader span:hover #transition2 {
    opacity: 1;
}
#transition1 {
    background-image: linear-gradient(45deg, #fec200, #b207ef);
    -webkit-background-clip: text; 
    background-clip: text;
    color: transparent;
    transition: opacity 0.75s ease;
}
#transition2 {
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(225deg, #fec200, #b207ef);
    -webkit-background-clip: text; 
    background-clip: text;
    color: transparent;
    opacity: 0;
    transition: opacity 0.75s ease;
}
.videos {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    margin: 10px;
    flex-wrap: wrap;
}
.video {
    filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.445));
    transition: filter 0.5s ease;

    margin: 0px 25px;
    border-radius: 10px;
}
.video:hover {
    filter: drop-shadow(0px 0px 25px #dadb25);
}

/* Medium Desktop */
@media (max-width: 1200px) {
    #projectShowcaseHeader {
        font-size: 72px;
        margin-bottom: 25px;
    }
    
    .video {
        margin: 0px 20px;
    }
}

/* Small Desktop */
@media (max-width: 1040px) {
    .projectShowcase {
        padding: 30px 20px;
    }
    
    #projectShowcaseHeader {
        font-size: 48px;
        margin-bottom: 20px;
        padding: 0 20px;
    }
    
    .videos {
        gap: 20px;
    }
    
    .video {
        margin: 10px;
        width: 100%;
        max-width: 300px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    #projectShowcaseHeader {
        font-size: 36px;
    }
    
    .video {
        max-width: 250px;
        height: auto;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .projectShowcase {
        padding: 20px 10px;
    }
    
    #projectShowcaseHeader {
        font-size: 28px;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    
    .videos {
        flex-direction: column;
        gap: 15px;
    }
    
    .video {
        max-width: 200px;
        margin: 5px;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    #projectShowcaseHeader {
        font-size: 24px;
    }
    
    .video {
        max-width: 180px;
    }
}

/* Social Area */
.socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow: hidden;
}
.socials a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
}
.socialsHeader {
    font-size: 6rem;
    font-weight: 700;
    display: block;
    text-align: center;
    margin: 30px 0;
    background-size: 300% 100%;
    background-image: linear-gradient(45deg, #dc1616, #1d89d1, #661dcc);
    filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.692));
    -webkit-background-clip: text; 
    background-clip: text;
    color: transparent;
    text-shadow: #1f1f1f;
    cursor: default;
    transition: transform 0.5s ease;
}
.socialsHeader:hover {
    transform: scale(1.02);
}
.socialsHeader.animate-gradient {
    animation: gradientShift 4s ease-in-out infinite alternate;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: min(1800px, 95vw);
}
.mediaTile {
    width: 100%;
    min-width: 0;
    max-width: 350px;
    box-sizing: border-box;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.459);
    border-radius: 10px;
    margin: 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.4s ease, transform 0.25s ease;
}

.mediaTile:hover {
    transform: scale(1.05);
}

#youtubeTile.mediaTile:hover {
    background-color: #8f0101;
}
#twitterTile.mediaTile:hover {
    background-color: #10598a;
}
#instagramTile.mediaTile:hover {
    background-color: #b10556;
}
#twitchTile.mediaTile:hover {
    background-color: #48227e;
}
#tiktokTile.mediaTile:hover {
    background-color: #00726e;
}
#githubTile.mediaTile:hover {
    background-color: #171717;
}
#spotifyTile.mediaTile:hover {
    background-color: #0b5626;
}
#appleMusicTile.mediaTile:hover {
    background-color: #7b222e;
}
#youtubeMusicTile.mediaTile:hover {
    background-color: #4a0909;
}
#emailTile.mediaTile:hover {
    background-color: #969090;
}

.tileThumb-Text {
    font-size: 32px;
    display: flex;
    text-align: center;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 18px;
}
.tileThumb-Text img {
    max-height: 48px;
    width: auto;
    margin: 0;
    object-fit: contain;
    display: block;
    word-break: break-word;
}
.tileThumb-Text span {
    white-space: normal;
    word-break: break-word;
}

/* Medium desktop */
@media (max-width: 1200px) {
    .socialsHeader {
        font-size: 4.5rem;
    }
    
    .socials-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 18px;
    }
    
    .tileThumb-Text {
        font-size: 28px;
        gap: 15px;
    }
}

/* Small Desktop */
@media (max-width: 1040px) {
    .socials {
        padding: 30px 20px;
    }
    
    .socialsHeader {
        font-size: 3rem;
        margin: 20px 0;
    }
    
    .socials-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 15px;
        max-width: 95vw;
    }
    
    .tileThumb-Text {
        font-size: 24px;
        gap: 12px;
    }
    
    .tileThumb-Text img {
        max-height: 40px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .socialsHeader {
        font-size: 2.5rem;
    }
    
    .socials-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        gap: 12px;
    }
    
    .mediaTile {
        padding: 12px 8px;
        min-height: 80px;
    }
    
    .tileThumb-Text {
        font-size: 18px;
        gap: 8px;
        flex-direction: column;
    }
    
    .tileThumb-Text img {
        max-height: 32px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .socials {
        padding: 20px 10px;
    }
    
    .socialsHeader {
        font-size: 2rem;
        margin: 15px 0;
    }
    
    .socials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .mediaTile {
        padding: 10px 5px;
        min-height: 70px;
    }
    
    .tileThumb-Text {
        font-size: 14px;
        gap: 6px;
    }
    
    .tileThumb-Text img {
        max-height: 28px;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .socialsHeader {
        font-size: 1.75rem;
    }
    
    .socials-grid {
        gap: 8px;
    }
    
    .mediaTile {
        padding: 8px 4px;
        min-height: 60px;
    }
    
    .tileThumb-Text {
        font-size: 12px;
        gap: 4px;
    }
    
    .tileThumb-Text img {
        max-height: 24px;
    }
}

/* Footer Area */
footer{
    margin-top: auto;
    text-align: center;
    padding: 1rem 0;
    background-color: #13181c74;
    color: white;
    width: 100%;
    font-size: 14pt;
}
.footerSocials {
    display: inline-flex;    
    justify-content: center;
    flex-wrap: wrap;
}
.footerSocialIcon {
    cursor: pointer;
    transition: transform 0.25s ease;
}
.footerSocialIcon:hover{
    transform: scale(1.10);
}
.footerSocials a{
    color: black;
}
#license {
    font-weight: bold;
    padding: 10px 0px;
}
#contact{
    padding: 10px 0px;
}

#contact a:link {
    color: white;
    text-decoration: none;
}
#contact a:visited {
    color: white;
    text-decoration: none;
}
#contact a:hover {
    text-decoration: underline;
}
.svg {
    margin: 10px;
    max-height: 32px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(356deg) brightness(105%) contrast(105%);
}

/* Footer Mobile */
@media (max-width: 768px) {
    footer {
        font-size: 12pt;
        padding: 0.75rem 0;
    }
    
    .svg {
        margin: 8px;
        max-height: 28px;
    }
}

@media (max-width: 480px) {
    footer {
        font-size: 11pt;
        padding: 0.5rem 0;
    }
    
    .svg {
        margin: 6px;
        max-height: 24px;
    }
    
    #license,
    #contact {
        padding: 8px 10px;
        font-size: 10pt;
    }
}

@media (max-width: 375px) {
    footer {
        font-size: 10pt;
    }
    
    .svg {
        margin: 5px;
        max-height: 20px;
    }
    
    #license,
    #contact {
        padding: 6px 10px;
        font-size: 9pt;
    }
}

/* ABOUT ME PAGE */
/* Transformation Section */
.headerAboutMe {
    padding: 50px 0px;
    font-size: 120px;
    text-align: center;
    font-weight: 700;
    background-size: 300% 100%;
    background-image: linear-gradient(45deg, 
    #dc1616, #ffd800, #1d89d1, #661dcc, 
    #dc1616, #ffd800, #1d89d1, #661dcc);
    -webkit-background-clip: text; 
    background-clip: text;
    color: transparent;
    text-shadow: #1f1f1f;
    filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.692));
    cursor: default;
}
.headerAboutMe.animate-gradient {
    animation: gradientShift 16s linear alternate infinite;
}
.transformation {
    padding: 30px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.transformationGrid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    text-align: center;
    filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.692));
    gap: 60px;
    max-width: 90vw;
    width: 100%;
    align-items: center;
}

.transformationGrid img {
    border-radius: 10px;
    height: min(360px, 25vw);
    width: auto;
    object-fit: cover;
    display: block;
    max-width: 100%;
    transition: transform 0.5s ease;
}
.transformationGrid img:hover {
    transform: scale(1.05);
}

#leftImg {
    justify-self: end;
}

#rightImg {
    justify-self: start;
}

.transformationGrid span {
    font-size: min(128px, 10vw);
    background-size: 300% 100%;
    background-image: linear-gradient(45deg, 
    #dc1616, #ffd800, #1d89d1, #661dcc, 
    #dc1616, #ffd800, #1d89d1, #661dcc);
    -webkit-background-clip: text; 
    background-clip: text;
    color: transparent;
    text-shadow: #1f1f1f;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transformationGrid.animate-gradient span {
    animation: gradientShift 16s linear alternate infinite;
}

/* About me Section */
.aboutTitle {
    padding-top: 40px;
    padding-bottom: 10px;
    font-size: 78px;
    font-weight: 700;
    text-align: center;
    cursor: default;
}
hr {
    width: 25%;
}
.aboutMeDescription {
    padding-top: 20px;
    font-weight: 400;
    text-align: left;
    font-size: 24px;
    padding-bottom: 40px;
    margin: 0 auto;
    max-width: 800px;
    width: calc(100% - 400px);
    cursor: default;
}

/* Medium Desktop */
@media (max-width: 1200px) {
    .headerAboutMe {
        font-size: 100px;
    }
    
    .transformation {
        padding: 20px 50px;
    }
    
    .transformationGrid img {
        height: 280px;
    }
    
    .transformationGrid span {
        font-size: 96px;
    }
    
    .aboutMeDescription {
        width: calc(100% - 200px);
        max-width: 700px;
    }
}

/* Small desktop */
@media (max-width: 1040px) {
    .headerAboutMe {
        font-size: 80px;
        padding: 30px 0px;
    }
    
    .transformation {
        padding: 15px 20px;
    }
    
    .transformationGrid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 30px;
        justify-items: center;
        align-items: center;
    }
    
    .transformationGrid img {
        height: 280px;
        width: auto;
        justify-self: center;
    }
    
    #leftImg, #rightImg {
        justify-self: center;
    }
    
    .transformationGrid span {
        font-size: 72px;
        transform: rotate(90deg);
    }
    
    .aboutTitle {
        font-size: 60px;
    }
    
    .aboutMeDescription {
        width: calc(100% - 100px);
        font-size: 20px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .headerAboutMe {
        font-size: 60px;
        padding: 25px 0;
    }

    .transformation {
        padding: 10px 15px;
    }

    .transformationGrid {
        gap: 20px;
    }

    .transformationGrid img {
        height: 220px;
    }

    .transformationGrid span {
        font-size: 64px;
    }

    .aboutTitle {
        font-size: 48px;
    }

    .aboutMeDescription {
        width: calc(100% - 60px);
        font-size: 18px;
    }

    hr {
        width: 40%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .headerAboutMe {
        font-size: 42px;
        padding: 20px 15px;
        line-height: 1.2;
    }

    .transformation {
        padding: 10px;
    }

    .transformationGrid {
        gap: 15px;
    }

    .transformationGrid img {
        height: 180px;
    }

    .transformationGrid span {
        font-size: 56px;
    }

    .aboutTitle {
        font-size: 36px;
        padding-top: 20px;
    }

    .aboutMeDescription {
        width: calc(100% - 40px);
        font-size: 16px;
        padding-top: 15px;
        padding-bottom: 20px;
    }

    hr {
        width: 50%;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .headerAboutMe {
        font-size: 36px;
    }

    .transformationGrid img {
        height: 160px;
    }

    .transformationGrid span {
        font-size: 48px;
    }

    .aboutTitle {
        font-size: 32px;
    }

    .aboutMeDescription {
        width: calc(100% - 30px);
        font-size: 15px;
    }

    hr {
        width: 60%;
    }
}

/*Animation Classes*/
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-bottom {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-bottom.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-scale-2 {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.fade-in-scale.animate {
    opacity: 1;
    transform: scale(1);
}
.fade-in-scale-2.animate {
    opacity: 1;
    transform: scale(1);
}

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

.fade-in-delay-5 {
    transition-delay: 0.5s;
}