@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');

body {
    background-color: rgb(46, 59, 80);
    font-family: 'Open Sans', sans-serif;
}

header, footer {
    padding: 15px 50px 16px;
    background-color: #213853;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.navbarLink {
    margin: 0 39px;
    color: white;
    text-decoration: none;
}

.loginBtn {
    border-radius: 20px;
    text-transform: uppercase;
    background-color: #4CAE4E;
    width: auto;
    padding: 10px 20px;
    color: #fff;
    display: block;
    border: none;
    height: 100%;
    margin-left: 39px;
}

.landingHead {
    margin: 70px 0 30px;
}

.landingHead-title {
    text-align: center;
}

.landingHead-title p {
    display: inline;
    font-size: 70px;
    font-weight: 700;
    color: #50CA52;
}

.landingHead-title h1 {
    display: inline;
    font-size: 70px;
    font-weight: 700;
    color: white;
}

.landingHead-info {
    color: white;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin-top: 20px;
}

.landingHead a {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto 0;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    background-color: #4CAE4E;
    color: #fff;
    height: 60px;
    padding: 0 3rem;
    font-weight: 700;
    font-size: 20px;
}

.landingHead-technology {
    text-align: center;
    color: white;
    margin-top: 25px;
    font-size: 18px;
}

.landingHead-technology p {
    display: inline;
    font-weight: 700;
    font-size: 25px;
}

.landingDescription {
    color: white;
    text-align: center;
    margin: 135px 0 0;
}

.landingDescription h2 {
    font-size: 60px;
    font-weight: 600;
    display: block;
    max-width: 500px;
    margin: 0 auto;
}

.landingDescription-cards {
    margin-top: 70px;
    margin-bottom: 100px;

}
.card-border {
    height: 100%;
    padding: 3px;
    border: 1px solid #324B67;
    border-radius: 14px;
}

.landingDescription-card {
    background-color: #172C42;
    border-radius: 12px;
    padding: 46px 20px 30px;
    height: 100%;
}

.landingDescription-card-img {
    height: 100px;
    margin: 0 auto;
}

.landingDescription-card-title {
    margin: 20px 0;
    color: #50CA52;
    font-size: 21px;
    line-height: 29px;
    font-weight: 600;
}

.landingDescription-card-text {
    color: #CCCCCC;
    font-size: 16px;
    line-height: 30px;

}
.landingDownload {
    background-color: #2B435E;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.landingDownload h2 {
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: 700;
    display: block;
}

.landingDownload-icon {
    height: 60px;
    width: 200px;
}

.chart-border {
    border-radius: 14px;
    border: 1px solid #324B67;
    padding: 3px;
}

#chart {
    box-shadow: 0 0 30px 2px rgba(128, 0, 255, 0.7);
    transition: all 0.5s;
    border-radius: 12px;
}

#chart:hover {
    box-shadow: 0 0 30px 2px rgba(114, 236, 115, 0.6);
}

.chart-link.stretched-link::after {
    z-index: 100;
}

.loader {
    display: flex;
    justify-content: space-around;
    align-items: end;
    height: 100px;
    width: 150px;
    z-index: 9999;
}

.candle {
    width: 10px;
    height: 20px;
    z-index: 9999;
    animation: pulse 1s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        height: 20px;
    }
    50% {
        height: 60px;
    }
}

.loader .candle:nth-child(1) {
    animation-delay: -0.4s;
    background: #DF1F26;
}
.loader .candle:nth-child(2) {
    animation-delay: -0.2s;
    background: #4CAE4E;
}
.loader .candle:nth-child(3) {
    animation-delay: 0s;
    background: #DF1F26;
}
.loader .candle:nth-child(4) {
    animation-delay: 0.2s;
    background: #4CAE4E;
}
.loader .candle:nth-child(5) {
    animation-delay: 0.4s;
    background: #DF1F26;
}
.loader .candle:nth-child(6) {
    animation-delay: 0.3s;
    background: #4CAE4E;
}

.overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
}

@media (max-width: 991.98px) {
    .logo svg {
        max-width: 100px;
    }
    .logo-uran svg {
        max-width: 130px;
    }
    .navbarLink {
        margin: 0 15px;
        }

    .loginBtn {
        padding: 5px 10px;
        margin-left: 15px;
        }
    .landingHead-title h1 {
        font-size: 48px;
    }
    .landingDescription h2 {
        font-size: 42px;
    }
    .landingDescription {
        margin: 80px 0 0;
    }
}