/* 

1. Add your custom Css styles below
2. Place the this code in your template: 

 <link href="css/custom.css" rel="stylesheet">

*/
:root {
  --main-dark-color: #1e568a;
  --main-darker-color: #14395c;
}

.banner-image {
    margin: -200px 0 0 0;
    text-align: right;
}

.banner-section {
    overflow: visible;
    border-bottom: 1px solid transparent;
}

.alt-features-icon, .alt-features-icon > a, 
.alt-features-icon:hover, .alt-features-icon:active {
    color: white;
    font-size: 40px;
}

.alt-features-title, .alt-features-title > a, 
.alt-features-title:hover, .alt-features-title:active {
    color: white;
    font-size: 1rem;
}

.banner-image > img{
    height: 350px;
}
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #d5d5d5;
    box-shadow: inset 0 0 5px grey;
    /* margin-top: 100px;
    margin-bottom: 100px; */
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--main-dark-color);
    border-radius: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--main-darker-color);
}

.post-image-index {
    width: 16% !important;
    margin-top: 1px !important;
}

.post-item-description-index {
    width: 80% !important;
}
.post-image {
    text-align: center;
}
.post-image img{
    width: 70%;
}
.tags-square a{
    border: 1px solid #e6e8eb !important;
    border-radius: 5px !important;
}

@media (max-width: 768px) {
    .banner-image {
        margin: 0 0 0 0;
        text-align: center;
    }

    .banner-image > img{
        height: 200px;
    }

    .post-image-index {
        width: 100% !important;
        margin-top: 0px !important;
    }

    .post-item-description-index {
        width: 100% !important;
    }

}