body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #000;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.site-header {
    padding: 15px 0;
}

.header-logo {
    background: url(../Imgs/ahl-kripto.png) no-repeat center;
    background-size: 150px 33px;
    width: 150px;
    height: 33px;
    display: inline-block;
}

.intro {
    background: #C1D1D0;
    background: linear-gradient(90deg, rgba(193, 209, 208, 1) 0%, rgba(146, 165, 169, 1) 50%);
    margin-bottom: 45px;
}

.intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.intro-text h1 {
    font-size: 2.5rem;
    font-weight: 500;
}

.intro-text p {
    font-size: 2rem;
    font-weight: 300;
    line-height: 120%;
}

.intro-img {
    display: flex;
    justify-content: center;
}

.section {
    padding: 45px 0;
}

.section h2 {
    font-size: 44px;
    font-weight: bold;
}

.section p {
    color: #4D4D4D;
    font-size: 23px;
}

.section-popular {
    overflow-x: hidden;
}

.ticker,
.ticker2 {
    overflow: hidden;
    display: flex;
    width: 100vw;
}

.ticker .ticker__list {
    display: flex;
    margin-bottom: 20px;
    animation: ticker 155s infinite linear;
}

.ticker2 .ticker__list {
    display: flex;
    margin-top: 20px;
    animation: ticker2 155s infinite linear;
}

.ticker .ticker__item,
.ticker2 .ticker__item {
    margin-right: 20px;
    background-color: #F9F9F9;
    width: 240px;
    height: 175px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #4D4D4D;
    font-size: 23px;
    font-weight: 300;
}

@keyframes ticker {
    100% {
        transform: translateX(-100%);
        /*try changing this to -100vw*/
    }
}

@keyframes ticker2 {
    0% {
        transform: translateX(-100%);
        /*try changing this to -100vw*/
    }
}

.section-why .why-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.section-why .why-items .why-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 298px;
    background-color: #F9F9F9;
    border-radius: 10px;
    flex: 1 1 calc(30% - 20px);

}


.section-why .why-items .why-item:nth-child(4),
.section-why .why-items .why-item:nth-child(5) {
    flex: 0 1 calc(30% - 20px);
}

.section-why .why-item img {
    width: auto;
    max-width: 130px;
}

.section-why .why-item .why-item-text {
    text-align: center;
    padding: 20px;
}

.section-why .why-item .why-item-text h3 {
    font-weight: bold;
}

.section-why .why-item .why-item-text p {

    line-height: 110%;
}

.section-easy .easy-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 70px;
}

.section-easy .easy-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-size: 320px 320px;
    width: 320px;
    height: 320px;
    padding-top: 50px;
}


.section-easy .easy-item img {
    width: 150px;
    height: 150px;
}

.section-easy .easy-item h4 {
    color: #000000;
    font-size: 24px;
    font-weight: bold;
}

.section-easy .easy-item.easy-item-1 {
    background: url(../Imgs/bg-easy-1.png) no-repeat center;

}

.section-easy .easy-item.easy-item-2 {
    background: url(../Imgs/bg-easy-2.png) no-repeat center;
}

.section-easy .easy-item.easy-item-3 {
    background: url(../Imgs/bg-easy-3.png) no-repeat center;
}

.site-footer {
    background-color: #000000;
    padding: 60px 50px 15px;
}

.site-footer .footer-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.site-footer .footer-content .social a {
    display: inline-block;
    margin-left: 10px;
}

.site-footer p {
    color: #6C6C6C;
    font-size: 13px;
}

.section-text h1 {
    font-size: 1.6rem;
    font-weight: 500;
}

.section-text h2 {
    font-size: 1.3rem;
    font-weight: 500;
}

.section-text h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.section-text h4 {
    font-size: 1rem;
    font-weight: 500;
}

.section-text p {
    font-size: 1rem;

}

table td {
    border: solid 1px #000;
}

@media screen and (max-width: 1380px) {
    .section-why .why-item .why-item-text h3 {
        font-size: 22px;
    }

    .section-why .why-item .why-item-text p {
        font-size: 17px;
    }

    .section-why .why-item img {
        max-width: 90px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
    .section h2 {
        font-size: 34px;
        font-weight: bold;
    }

    .section-easy .easy-item {
        width: 200px;
        height: 200px;
    }

    .section-easy .easy-item h4 {
        font-size: 16px;
    }

    .section-easy .easy-item img {
        width: 100px;
        height: 100px;
    }

    .section-easy .easy-item.easy-item-1,
    .section-easy .easy-item.easy-item-2,
    .section-easy .easy-item.easy-item-3 {
        background-size: 200px auto;
    }
}

@media screen and (max-width: 767px) {
    .site-header {
        margin-bottom: 50px;
    }

    .intro-text {
        text-align: center;
    }

    .intro-text h1 {
        font-size: 2rem;
    }


    .intro-text p {
        font-size: 1.5rem;
    }

    .section h2 {
        font-size: 36px;
    }

    .section p {
        font-size: 18px;
    }

    .section-easy .easy-item {
        justify-content: space-around;
        padding-bottom: 25px;
    }


    .section-why .why-items {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-y: hidden;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .section-why .why-items .why-item {
        flex: 0 0 300px !important;
        min-width: 300px;
        margin-right: 20px;
    }



    .site-footer {
        padding: 50px 20px 15px;
    }

    .section-easy .easy-item.easy-item-1 {
        background: url(../Imgs/bg-easy-1m.png) no-repeat center;

    }

    .section-easy .easy-item.easy-item-2 {
        background: url(../Imgs/bg-easy-2m.png) no-repeat center;
    }

    .section-easy .easy-item.easy-item-3 {
        background: url(../Imgs/bg-easy-3m.png) no-repeat center;
    }
}