@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --color-grey: #E4ECF3;
    --color-blue: #0B5196;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #FFF;
}

/* CONTAINER */
.container-main {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
}

.bg-blue-linear {
    background: linear-gradient(180deg, #0A5095 29.51%, #03192F 152.67%) no-repeat fixed center;
}

.bg-blue {
    background-color: var(--color-blue);
}

.b-blue {
    border-color: var(--color-blue) !important;
}

.bg-grey {
    background-color: var(--color-grey);
}

.bg-grey-2 {
    background-color: #F0F2F1;
}

.bg-red-light {
    background-color: rgba(255, 0, 0, 0.15);
}

.w-8 {
    width: 8%;
}

.w-max-90 {
    max-width: 90%;
}

.column-overlay {
    width: 100%;
    height: 100%;
    border: 3px solid #EB0029;
    border-radius: 20px;
}

.column-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
}

.column-image {
    flex: 3;
    text-align: center;
}

.fingertrain-gallery {
    height: 250px;
    width: auto;
    object-fit: cover; 
}

img.btrack, img.addons, img.sanitka, img.hasici {
    width: 50%;
    object-fit: cover;
}

img.czech {
    width: 25%;
    object-fit: cover;
}

img.track {
    width: 100%;
    object-fit: cover;
} 

img.track-2 {
    width: 50%;
    object-fit: cover;
} 

img.kd-addons {
    width: 85%;
    object-fit: cover;
} 

img.kd-akce {
    width: 85%;
    object-fit: cover;
} 

img.aktivity-pro-rozvoj {
    width: 80%;
    object-fit: cover;
} 

img.education {
    position: absolute;
    width: 45%;
    right: 0;
    object-fit: cover;
}

@media (min-width: 1750px) { 
    img.education {
        width: 40%;
    }
}

@media (min-width: 1900px) { 
    img.education {
        width: 36%;
    }
}

@media (max-width: 767.98px) {

    img.btrack, img.track, img.addons {
        width: 100%;
    }

    img.track-2 {
        width: 90%;
        object-fit: cover;
    } 

    img.czech {
        margin-left: 30px;
        margin-top: 20px;
        width: 55%;
    }

    img.aktivity-pro-rozvoj {
        width: 100%;
        object-fit: cover;
    } 

    img.education {
        position: relative;
        text-align: center;
        width: 100%;
        right: -20px;
    }

    img.kd-akce {
        width: 50%;
        object-fit: cover;
    } 
    
}

.column-overlay-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Zarovnání obsahu v kolonce */
    width: 100%;
    height: 100%;
    border: 3px solid #EB0029;
    border-radius: 20px;
    overflow: hidden; /* Zajišťuje, že nic nevyčnívá mimo rámeček */
}

.column-content-2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrování textu vertikálně */
}

.column-image-2 {
    flex: 1; /* Umožní obrázku zabrat zbývající prostor */
    display: flex;
    align-items: center; /* Centrování obrázku vertikálně */
    justify-content: center; /* Centrování obrázku horizontálně */
    padding: 20px; /* Přidává padding pro estetiku */
}

.btn {
    min-width: 180px;
    min-height: 50px;
    font-size: 1.2rem;
}

/* gallery */

.image-row {
    display: flex;
    flex-wrap: wrap; /* Povolí zalomení prvků */
    align-items: center;
    justify-content: space-around; /* Změna pro rovnoměrné rozložení s menšími mezerami */
}

.square, .rectangle {
    width: 20%;
    height: 280px;
    object-fit: cover;
    margin: 5px;
    border-radius: 20px;
}

.rectangle {
    width: 35%;
    height: 280px;
    object-fit: cover;
}

@media (max-width: 767.98px) {

    .square, .rectangle {
        width: 47%;
        height: 200px;
    }

    .rectangle {
        width: 100%;
        height: 200px;
    }
}

/* gallery kd */

.image-row-2 {
    display: flex;
    flex-wrap: wrap; /* Povolí zalomení prvků */
    align-items: center;
    justify-content: center; /* Změna pro rovnoměrné rozložení s menšími mezerami */
}

.square-2 {
    width: 18%;
    height: 350px;
    object-fit: cover;
    margin: 14px;
    border-radius: 20px;
}

@media (max-width: 767.98px) {

    .square-2 {
        width: 41%;
        height: 240px;
    }

}

.btn-lock {
    min-width: 200px;
}
.lock {
    width: 24px;
}

@media (max-width: 767.98px) {
    .btn {
        font-size: 1.1rem;
    }


}

.special-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

img.fingercar {
    width: 20%;
}

img.fingercar-cz {
    width: 60%;
}

img.fingertrain {
    width: 55%;
}

@media (max-width: 767.98px) {

    img.fingercar {
        width: 60%;
    }
    
    img.fingertrain {
        width: 100%;
    }
}

.parallax-content {
    position: relative; /* Relativní pozice pro animaci */
    opacity: 0; /* Začíná neviditelný */
    transform: translateY(100%); /* Začíná ve spodní části sekce */
    transition: opacity 0.8s, transform 0.8s; /* Plynulý přechod při animaci */
}

.parallax-visible { /* Třída pro spuštění animace */
    opacity: 1; /* Nastavení viditelnosti */
    transform: translateY(0); /* Posunutí do viditelné pozice */
}

.bg-white {
    background: #FFF !important;

}

.bg-red {
    background: linear-gradient(179.44deg, #EA062B 24.37%, #840318 158.89%);
}


.full-screen-image {
    min-height: 100vh;
    background-image: url('./assets/img/background.jpg');
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-attachment: fixed;
    background-size: cover;
    position: relative; 
}

@media (max-width: 767.98px) {

    .full-screen-image {
        display: flex;
        justify-content: center;
        align-items: center;
        background-repeat: no-repeat;
        background-position: 45% 100%;
        background-attachment: scroll; /* fixed is not well supported on mobile Safari */
        background-size: cover;
        position: relative; 
        width: 100%;
        height: 100vh; /* Ensure it takes full viewport height */
    }

}


.full-screen-image .container-main {
    position: relative; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    z-index: 2;
}


.container-main {
    position: relative; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    z-index: 2;
}

.full-screen-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

/* Fingercar */

.header-content-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

/* Fingercar */

.overlay-content {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: start;
}

@media (max-width: 767.98px) {

    .header-content-2 {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        text-align: center;
        height: 100%;
    }

    .header-content-2 img {
        margin-top: 7rem;
        width: 90% !important;
    }
    
    .overlay-content {
        top: 65%;
        left: 50%;
        width: 90% !important;
    }

    .overlay-content h2 {
        font-size: 2rem;
    }

}


/* Fingertrain */

.header-content-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.header-content-3 img {
    width: 80% !important;
}

.overlay-content-3 {
    position: absolute;
    top: 46%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: end;
}

@media (max-width: 767.98px) {

    .header-content-3 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        height: 100%;
    }

    .header-content-3 img {
        margin-top: 7rem;
        width: 90% !important;
    }
    
    .overlay-content-3 {
        top: 55%;
        left: 50%;
        width: 90% !important;
    }

    .overlay-content-3 h2 {
        font-size: 2rem;
    }
    

}

.header-content-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: start;
    height: 100%;
}

.header-content-4 a {
    align-items: start;
}

.header-content-4 img {
    width: 80% !important;
}

.overlay-content-4 {
    position: absolute;
    top: 75%;
    left: 48%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: start;
}

@media (max-width: 767.98px) {

    .header-content-4 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        height: 100%;
    }

    .header-content-4 img {
        margin-top: 7rem;
        width: 90% !important;
    }
    
    .overlay-content-4 {
        top: 70%;
        left: 50%;
        width: 90% !important;
    }

    .overlay-content-4 h2 {
        font-size: 2rem;
    }
    

}

.header-content-5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.navbar-custom {
    position: fixed;
    top: 15px;
    width: 90%;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border-radius: 10px;
    z-index: 5;
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}


.logo {
    width: 65%;
    padding-left: 12px;
    border-radius: 8px;
}

@media (max-width: 767.98px) {

    .container-main {
        width: 93%;
        max-width: 93%;
        margin: 0 auto;
    }

    .navbar-custom {
        width: 93%;
        padding-top: 7px;
        padding-bottom: 7px;
    }

/*     .navbar-brand img {
        height: 48px;
        width: 100% !important;
    } */

    .navbar-toggler {
        padding: 4px;
        margin-top: 4px;
        margin-bottom: 4px;
    }

/*     .nav-link {
        font-size: 0.8rem;
        padding-top: 8px;
        padding-bottom: 8px;
    } */

    .navbar-collapse {
        animation: dynamicIsland 1s ease forwards;
        transition: all .5s;
    }

    .nav-cust {
        border: 0.185rem solid #EA062B;
        border-radius: 20px;
        padding: 0 10px;
        min-width: 180px;
        line-height: 1.4;
        margin: 5px;
    }

    .nav-cust:focus, .nav-cust:hover {
        background-color: #EA062B;
        color: #FFF;
    }

}

@media (max-width: 424.98px) {

    .nav-cust {

        min-width: 150px;

    }
}


.banner img {
    width: 80%;
}

.special-heading {
    font-weight: bold;
    color: var(--color-blue);
    opacity: 15%;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box; 
}

h1.main-heading {
    text-align: center;
    font-size: 5rem;
    font-weight: bold;
}

h2.main-heading {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 500;
}

/* RESPONSIVE STYLES */
@media (max-width: 767.98px) {

    h1.main-heading {
        text-align: center;
        font-size: 3rem;
        font-weight: bold;
    }
    
    h2.main-heading {
        text-align: center;
        font-size: 2.2rem;
        font-weight: 500;
    }
}

h1.central-heading {
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
}

h2.central-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
}

h3.central-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}

@media (max-width: 767.98px) {

    h1.central-heading {
        text-align: center;
        font-size: 3rem;
        font-weight: bold;
    }
    
    h2.central-heading {
        text-align: center;
        font-size: 1.4rem;
        font-weight: 500;
    }
    
    h3.central-heading {
        text-align: center;
        font-size: 2rem;
        font-weight: bold;
    }

}

h1.product-heading {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
}

h2.product-heading {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
}

h3.product-heading {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
}

p.product-heading {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
}

li.product-heading {
    font-size: 1.2rem;
    font-weight: 500;
}

@media (max-width: 767.98px) {

    h1.product-heading {
        text-align: center;
        font-size: 2.4rem;
        font-weight: bold;
    }
    
    h2.product-heading {
        text-align: center;
        font-size: 1.2rem;
        font-weight: 500;
    }
    
    h3.product-heading {
        text-align: center;
        font-size: 2rem;
        font-weight: bold;
    }

}

.social-icons {
    text-align: right;
    margin-top: 50px;
}

.social-icons img {
    width: 40px;
    margin-left: 20px;
}

.star {
    top: 10px;
    left: 10px;
    width: 30px; 
    height: 30px;
}

.recenze {
    width: 30%;
}

.btn-outline-light {
    border-color: #FFF;
    border-width: 2px;
    color: #FFF;
    font-weight: 550;
}

@media (max-width: 767.98px) {

    footer .btn-outline-light {
        min-width: 150px;
        height: 50px;
        font-size: 12px;
    }

}

.btn-outline-danger {
    border-color: #EA062B !important;
    border-width: 2px;
    color: #EA062B !important; 
    font-weight: 550;
}

.btn-outline-danger:hover {
    background-color: #EA062B !important;
    color: white !important;
}


.btn-outline-danger.shop .button-img {
    width: 30px;
    height: 27px;
    display: inline-block;
    background-size: cover;
    vertical-align: middle;
    margin-right: 13px;
}

.btn-outline-danger.shop:hover .button-img {
    background-image: url('./assets/img/shop.png') !important;
}


.btn-danger {
    background-color: #EA062B;
}

.menu-icon {
    width: 50px;
}

@media (max-width: 767.98px) {
    .forbes {
        width: 100% !important;
    }
}

.buy-icon {
    width: 170px;
}

.text-red {
    color: #EA062B;
}

.text-blue {
    color: var(--color-blue);
}

.red {
    background-color: #EA062B;
}

a {
    text-decoration: none !important;
}

.social-icons-f a {
    text-decoration: none;
}

small {
    font-size: 12px;
}

i {
    font-size: 1.8rem;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

#main-nav {
    padding-left: 9.35rem !important;
}

@media (max-width: 767.98px) {
    #main-nav {
        padding-left: 0 !important;
    }
}

#main-nav2 {
    padding-right: 22px !important;
}

@media (max-width: 767.98px) {
    #main-nav2 {
        padding-right: 0 !important;
    }
}

.input-group {
    border: 2px solid #FFF;
    border-radius: 10px;
    padding: 0;
}

.input-group-text {
    border: none;
    padding: 0 1rem;
    border-radius: 10px;
}

.input-group .form-control {
    background-color: white;
    color: #EA062B;
    border-radius: 10px;
    padding: 0 1rem;
    font-size: 12px;
}

.input-group .btn {
    border-radius: 10px;
    background-color: #FFF;
    min-width: 50px;
    padding: 0 1rem;
}

/* Hamburger menu */

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active {
    box-shadow: none;
    border: none;
}

img.footer-logo {
    width: 60%;
}

@media (max-width: 767.98px) {
    img.footer-logo {
        width: 50%;
    }
}

/* Main dropdown */

.main-dropdown {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border-radius: 10px;
    z-index: 5;
    animation: dynamicIsland 1s ease forwards;
    transition: all .5s;

}

.main-dropdown>li>a.dropdown-item:hover,
.main-dropdown>li>a.dropdown-item:active,
.main-dropdown>li>a.dropdown-item:focus {
    background-color: var(--bs-btn-primary-hover) !important;

}

.custom-drop-left .dropdown-menu {
    left: auto;
    right: -20px;
    top: 70px;
    border: none;
}

@media (max-width: 767.98px) {
    .custom-drop-left .dropdown-menu {
    top: 70px;
    }
}

/* Videoplayer */
.video-responsive {
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    /* padding-top: 62.5%; */ /* 16:10 Aspect Ratio */
    position: relative;
}

.video-responsive iframe {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/* Timeline marker */

.timeline-item {
    position: relative;
    padding-left: 60px;
}

/* Extra small devices (mobilní telefony, max-width 575.98px) */
@media (max-width: 767.98px) {

    .timeline-item {
        position: relative;
        padding-left: 50px;
    }
   
}


.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    /* vycentrovat vůči markeru */
    top: 22px;
    /* začátek u horního okraje kruhu */
    bottom: -21px;
    /* končí ve spodní části položky, upravte podle potřeby */
    width: 2px;
    /* šířka čáry */
    background: var(--color-blue);
    /* barva čáry */
}



.timeline-marker {
    position: absolute;
    left: 12px;
    /* Upravte tak, aby byl střed kruhu vycentrován s čarou */
    top: 15px;
    /* Upravte tak, aby byl kruh u vrcholu nadpisu */
    height: 22px;
    /* Velikost kruhu */
    width: 22px;
    /* Velikost kruhu */
    border-radius: 50%;
    /* Kulatý kruh */
    background: var(--color-blue);
    /* Barva kruhu */
    border: 3px solid var(--color-blue);
    /* Okraj kruhu */
}

/*  red timeline */

.timeline-item-red {
    position: relative;
    padding-left: 60px;
}

.timeline-item-red:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    /* vycentrovat vůči markeru */
    top: 22px;
    /* začátek u horního okraje kruhu */
    bottom: -21px;
    /* končí ve spodní části položky, upravte podle potřeby */
    width: 2px;
    /* šířka čáry */
    background: #EA062B;
    /* barva čáry */
}

.timeline-marker-red {
    position: absolute;
    left: 12px;
    /* Upravte tak, aby byl střed kruhu vycentrován s čarou */
    top: 15px;
    /* Upravte tak, aby byl kruh u vrcholu nadpisu */
    height: 22px;
    /* Velikost kruhu */
    width: 22px;
    /* Velikost kruhu */
    border-radius: 50%;
    /* Kulatý kruh */
    background: #EA062B;;
    /* Barva kruhu */
    border: 3px solid #EA062B;
    /* Okraj kruhu */
}

/* Icon 1 */

.animated-icon1, .animated-icon2, .animated-icon3 {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
  }
  
  .animated-icon1 span, .animated-icon2 span, .animated-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  
  .animated-icon1 span {
    background: #894FF2;
  }
  
  .animated-icon2 span {
    background: #e3f2fd;
  }
  
  .animated-icon3 span {
    background: #EA062B ;
  }
  
  .animated-icon1 span:nth-child(1) {
   top: 0px;
  }
  
  .animated-icon1 span:nth-child(2) {
    top: 10px;
  }
  
  .animated-icon1 span:nth-child(3) {
    top: 20px;
  }
  
  .animated-icon1.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  
  .animated-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  
  .animated-icon1.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  
  /* Icon 3*/
  
  .animated-icon2 span:nth-child(1) {
    top: 0px;
  }
  
  .animated-icon2 span:nth-child(2), .animated-icon2 span:nth-child(3) {
    top: 10px;
  }
  
  .animated-icon2 span:nth-child(4) {
    top: 20px;
  }
  
  .animated-icon2.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%;
  }
  
  .animated-icon2.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .animated-icon2.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  .animated-icon2.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    left: 50%;
  }
  
  /* Icon 4 */
  
  .animated-icon3 span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  .animated-icon3 span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  .animated-icon3 span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  .animated-icon3.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    left: 8px;
  }
  
  .animated-icon3.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }
  
  .animated-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 21px;
    left: 8px;
  }

/* ===================================
   Animations
====================================== */

/*Fade*/
@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

@keyframes dynamicIsland {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}