/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #777777;
    font-weight: 500;
    background: #ffffff;
    font-family: 'Quicksand', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #4a4c70;
}

a {
    color: #4a4c70;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #FDBE33;
    outline: none;
    text-decoration: none;
}

.btn.btn-custom {
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #4a4c70;
    border-radius: 0;
    border: 2px solid crimson;
    box-shadow: inset 0 0 0 0 crimson;
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.btn.btn-custom:hover {
    color: white;
    box-shadow: inset 0 0 0 30px #d1252a;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
    font-size: inherit;
    margin-left: 0;
    color: crimson;
}


/* ---------------- */

/* Blog content */

.blogs{
    max-width: 100%;
    min-height: 100vh;
    background-color: whitesmoke;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.blog1{
    width: 90%;
    height: 90%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 50px;
}

.back-btn{
    margin-bottom: 30px;
    &.back-btn button{
        border: none;
        outline: none;
        background-color: crimson;
        border-radius: 50%;
        padding: 10px 15px;
        color: whitesmoke;
        transition: background-color .5s;
        &:hover{
            background-color: red;
        }
    }
}
.blog-content{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.blog-title{
    width: 80%;
    margin-bottom: 30px;
    & i{
        margin-right: 10px;
    }
}

.blog-img{
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    & img{
        width: 500px;
    }
}

.blog-body{
    width: 100%;
    & p{
        text-align: justify;
        margin-bottom: 20px;
    }
    & ul{
        margin: 20px 0;
        line-height: 2;
    }
}

@media screen and (max-width:560px) {
    .blogs{
        padding: 0;
    }
    .blog1{
        width: 98%;
        height: 98%;
        padding: 15px;
    }
    .blog-title{
        width: 100%;
        margin-bottom: 15px;
        & h2{
            font-size: 25px;
        }
    }
    .blog-img img{
        width: 300px;
    }
}

/* ----------- */

/* Footer */

.blog-footer{
    margin-top: 0;
}

/* ------- */