/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: 'IBM Plex Mono';
    background-color: #000000;
    align-items: center;
}

body,
html {
    width: 100%;
    height: 100%;
}

.main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.modal-dialog {
    width: 100%;
}

.modal-body {
    overflow: auto;
    max-height: 80vh;
}

.modal-content {
    border-radius: 20px;
}

.modal-header {
    flex-direction: column;
    background: slategrey;

}

.modal-header h5 {
    color: white;
    font-weight: 500;
}

.modal-header p {
    color: #00D100;
}

.author-div {
    display: flex;
}

.m-author {
    margin-left: 5px;
    font-style: italic;
}


.content-container {
    width: 100%;
    display: flex;
    height: 100%;
}

.text-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    padding-top: 80px;
}


.vertical-numbers {
    width: 25px;
    left: 0;
    text-align: right;
    line-height: 4vh;
    color: #ffffff;
    height: 100%;
    font-size: 20px;
    font-weight: 100;
    text-align: right;
    align-items: center;
    overflow: hidden;
    /*margin-left: 10px;*/

}


.vertical-border-container {

    width: 10px;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    align-items: center;
    margin-left: 30px;
    overflow: hidden;
}

.vertical-content-border {
    width: 10px;
    height: 100%;
    border-left: 2px #00D100 solid;
}

.col-1 {
    height: fit-content;
}

.site-links-container {
    width: auto;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    /*margin-left: 46px;*/
    line-height: 4vh;
    z-index: 1;
}

.site-links-container a {
    color: #FFFFFF;
    font-size: 25px;
    text-decoration: none;
}


.flex-container {
    display: flex;
    flex-direction: column;
}

.hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
}

.text-hero h1 {
    margin: 0 0 25px 0;
    font-size: 65px;
    font-weight: 500;
    line-height: 56px;
    color: #00D100;
    text-align: center;
}

.text-hero h2 {
    color: #ffffff;
    text-align: center;
    font-size: 25px;
    font-weight: 400;
}

.blog-box {
    box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.08), 0px 20px 31px 3px rgba(0, 0, 0, 0.09), 0px 8px 20px 7px rgba(0, 0, 0, 0.02);
    margin: 10px;
    background: white;
    border-radius: 20px;
    flex: 1 0 21%;
}

.panel-container {
    /*margin: 0 40px 20px 25px;*/
    /*padding: 50px 0 0;*/
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin-block: 2rem;
    gap: 2rem;
}

.blog-section-header {
    display: flex;
    color: #00D100;
    width: 100%;
    margin: 50px 0;
    flex-direction: row-reverse;
}

.blog-section-header a {
    color: #00D100;
    text-decoration: none;
    font-size: 26px;
}

.blog-section-header a:hover {
    text-decoration: none;
}


.hiddem {
    display: none;
}

/*cards*/

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.card {
    display: flex;
    flex-direction: column;
    width: clamp(20rem, calc(20rem + 2vw), 22rem);
    overflow: hidden;
    box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 1em;
    background: #ECE9E6;
    background: linear-gradient(to right, #FFFFFF, #ECE9E6);

}


.card__body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.continue-btn {
    color: #2F80ED !important;
    cursor: pointer;
}


.tag {
    align-self: flex-start;
    padding: .25em .75em;
    border-radius: 1em;
    font-size: .75rem;
}

.tag + .tag {
    margin-left: .5em;
}

.tag-blue {
    background: #56CCF2;
    background: linear-gradient(to bottom, #2F80ED, #56CCF2);
    color: #fafafa;
}

.tag-brown {
    background: #D1913C;
    background: linear-gradient(to bottom, #FFD194, #D1913C);
    color: #fafafa;
}

.tag-red {
    background: #cb2d3e;
    background: linear-gradient(to bottom, #ef473a, #cb2d3e);
    color: #fafafa;
}

.card__body h4 {
    font-size: 1.5rem;
    text-transform: capitalize;
}

.card__footer {
    display: flex;
    padding: 1rem;
    margin-top: auto;
}

.user {
    display: flex;
    gap: .5rem;
}

.user__image {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.user__info {
    width: 250px;
}

.user__info > small {
    color: #666;
}


/*Articles / blogs */
.blog_post {
    background: #fff;
    max-width: 1000px;
    border-radius: 10px 60px 10px 10px;
    box-shadow: 1px 1px 2rem rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 0 auto;
}


.container_copy {
    padding: 6rem 1rem 1rem;
}

.container_copy h1 > a {
    color: #333;
}

.container_copy h1 > a:hover {
    color: #333;
    text-decoration: none;
}

.img_pod {
    height: auto;
    width: auto;
    z-index: 10;
    box-shadow: 1px 1px 2rem rgba(0, 0, 0, 0.3);
    border-radius: 100%;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img_pod img {
    height: 8.3rem;
    width: 8.3rem;
    position: relative;
    border-radius: 100%;
    box-shadow: 1px 1px 2rem rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.rectangle {
    width: 200px;
    height: 50px;
    background: rgb(85, 80, 80);
    border-radius: 30px;
    position: absolute;
    left: -160px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding: 10px 50px 10px 40px;
}

.blog_post h3 {
    margin: 0 0 0.5rem 0;
    color: #999;
    font-size: 1.10rem;
}

.blog_post h1 {
    margin: 2rem 0;
    font-size: 2rem;
    letter-spacing: 0.5px;
    color: #333;
    font-weight: 700;
}

.blog_list_btn {
    padding: 10px;
    position: absolute;

}

.blog_list_btn a:hover {
    text-decoration: none;
}

.blog_list_btn span {
    margin-right: 1px;
}

.blog_post h3 {
    color: black;
}


.blog_post .blog_hero_img {
    margin: 0 auto;
    border-radius: 20px;
}

.markdown-code {
    background-color: black;
    padding: 10px;
    border-radius: 10px;
}

.markdown-code code {
    color: white;
}

/*--------------------------------------------------------------
# Screen sizes
--------------------------------------------------------------*/
@media screen and (min-width: 100px) {
    .text-hero h1 {
        font-size: 17px;
        line-height: 15px;
        margin-left: 40px;
    }

    .text-hero h2 {
        line-height: 12px;
        font-size: 10px;
        margin-left: 45px;
        width: 150px;
    }

    .vertical-numbers {
        font-size: 10px;
    }

    .site-links-container {
        /*width: 140px;*/
    }

    .site-links-container a {
        font-size: 10px;
    }

}

@media screen and (min-width: 250px) {
    .text-hero h1 {
        font-size: 35px;
    }

    .text-hero h2 {
        line-height: 25px;
        font-size: 18px;
        width: 200px;
    }

    .vertical-numbers {
        font-size: 15px;
    }

    .site-links-container a {
        font-size: 18px;
    }


}

@media screen and (min-width: 500px) {
    .text-hero h2 {
        width: 250px;
    }

    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

@media screen and (min-width: 768px) {


    .text-hero h1 {
        font-size: 45px;
        line-height: 36px;
    }

    .text-hero h2 {
        line-height: 25px;
        font-size: 25px;
        width: 700px;
    }


}

@media screen and (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }

    .text-hero h1 {
        font-size: 55px;
        line-height: 36px;
        margin-left: 40px;
    }

    .text-hero h2 {
        line-height: 25px;
        font-size: 25px;
        margin-left: 45px;
    }

    .vertical-numbers {
        font-size: 15px;
    }

    .site-links-container a {
        font-size: 20px;
    }

    .panel-container {
        flex-direction: row;

        margin: 0 auto;
    }

    .blog-section-header a {
        font-size: 36px;
    }

    .blog_post h3 {
        font-size: 1.25rem;
    }


}

@media screen and (min-width: 1366px) {
    .text-hero h1 {
        font-size: 65px;
        line-height: 36px;
    }

    .text-hero h2 {
        line-height: 25px;
        font-size: 25px;
    }


    .site-links-container a {
        font-size: 22px;
        /*width: 200px;*/
    }

    .modal-dialog {
        max-width: 1250px;
    }

}

@media screen and (min-width: 1921px) {
    .content-container {
        width: 50%;
    }

}
