.blog-pagination {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    list-style: none;
    margin: 0;
    padding: 50px 10px 80px 10px;
}

.blog-pagination li {
    position: relative;
    display: inline-block;
    margin: 0px 3px;
    padding: 0;
}

.blog-pagination li a {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 7px;
    background-color: rgb(255 255 255);
    border: 1px solid rgb(235 235 235);
    color: rgb(119 119 119);
    font-size: 16px;
    line-height: 38px;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    transition: all 500ms ease;
    z-index: 1;
    text-decoration: none;
}

.blog-pagination li .active,
.blog-pagination li .disabled,
.blog-pagination li a:hover {
    color: rgb(255 255 255) !important;
    line-height: 38px;
    border-color: rgb(52, 192, 185);
    background: rgb(52, 192, 185);
}



.blog-list-view-area {
    position: relative;
    display: block;
    background: rgb(255 255 255);
    padding: 10px 0 50px;
}

.single-blog-box {
    visibility: visible;
    animation-duration: 1500ms;
    animation-delay: 100ms;
    animation-name: fadeInLeft;
    position: relative;
    display: block;
    margin-bottom: 50px;
}

.single-blog-box .img-holder {
    position: relative;
    display: block;
}

.single-blog-box .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 15px;
}

.single-blog-box .img-holder .inner:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 0px;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    z-index: 1;
}

.single-blog-box .img-holder .inner img {
    width: 100%;
    height: auto;
    transition: all 2500ms ease;
}

.single-blog-box .img-holder .date-box {
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 80px;
    height: 80px;
    border-top-left-radius: 10px;
    text-align: center;
    background-color: rgb(255 255 255 / 90%);
    padding: 12px 0;
    z-index: 1;
}

.single-blog-box .img-holder .date-box h3 {
    font-size: 24px;
    line-height: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.single-blog-box .img-holder .date-box h3 span {
    color: rgb(161 217 214);
    font-size: 14px;
}

.single-blog-box .text-holder {
    position: relative;
    display: block;
    padding: 25px 0 30px;
    height: 200px;
    border-bottom: 2px solid rgb(221 221 221);
}

.single-blog-box:hover .text-holder {
    border-bottom: 2px solid rgb(161 217 214);
}

.single-blog-box:hover .img-holder .inner img {
    transform: scale(1.2) rotate(3deg);
}

.single-blog-box:hover .text-holder h3 {
    color: rgb(161 217 214);
}

.single-blog-box .text-holder:before {
    position: absolute;
    left: 0;
    bottom: -2px;
    right: 0;
    height: 2px;
    background-color: rgb(161 217 214);
    content: "";
    transform: scaleX(0);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.single-blog-box .text-holder .meta-info {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-blog-box .text-holder .meta-info li {
    position: relative;
    display: inline-block;
    /* float: left; */
    line-height: 24px;
    padding: 0px 5px;
}

.single-blog-box .text-holder .meta-info li a {
    color: rgb(119 119 119);
    font-size: 16px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-box .text-holder h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    margin: 24px 0 0px;
}

.single-blog-box .text-holder h3 a {
    color: rgb(52, 192, 185);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-detail {
    position: relative;
    display: block;
    padding: 20px;
    margin: 80px 0;
    border-radius: 10px;
    background: rgb(245 245 245)
}

.single-blog-detail .img-holder {
    position: relative;
    display: block;
}

.single-blog-detail .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 15px;
}

.single-blog-detail .img-holder .inner img {
    width: 100%;
    height: auto;
    transition: all 2500ms ease;
}

.single-blog-detail:hover .img-holder .inner img {
    transform: scale(1.2) rotate(3deg);
}

.single-blog-detail .img-holder .date-box {
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 80px;
    height: 80px;
    border-top-left-radius: 10px;
    text-align: center;
    background-color: rgb(255 255 255 / 90%);
    padding: 12px 0;
    z-index: 1;
}

.single-blog-detail .img-holder .date-box h3 {
    font-size: 24px;
    line-height: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.single-blog-detail .img-holder .date-box h3 span {
    color: rgb(0 152 255);
    font-size: 14px;
}

.single-blog-detail .text-holder {
    padding: 35px 0 24px;
    border-bottom: none;
}

.single-blog-detail .text-holder .meta-info {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-blog-detail .text-holder .meta-info li {
    position: relative;
    display: inline-block;
    float: left;
    line-height: 24px;
    padding-right: 15px;
    margin-right: 15px;
}

.single-blog-detail .text-holder h3 {
    font-size: 30px;
    line-height: 40px;
    margin: 18px 0 0px;
    color: rgb(3 31 75);
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    padding: 20px 0;
}

.single-blog-detail .text-holder p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.single-blog-detail .text-holder .text {
    position: relative;
    display: block;
    padding-top: 12px;
}

.single-blog-detail .text-holder .text-content h1,
.single-blog-detail .text-holder .text-content h2,
.single-blog-detail .text-holder .text-content h3,
.single-blog-detail .text-holder .text-content h4,
.single-blog-detail .text-holder .text-content h5,
.single-blog-detail .text-holder .text-content h6 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin: 0 0 14px;
}


@media screen and (max-width: 1184px) {
    .single-blog-box .text-holder h3 {
        font-size: 20px;
        line-height: 30px;
        font-weight: 600;
        margin: 24px 0 0px;
    }
}

@media screen and (min-width: 992px) {
    .single-blog-box .text-holder {
        height: 200px !important;
    }

    .single-blog-detail .text-holder h3 {
        font-size: 28px;
        line-height: 36px;
    }
}

@media screen and (min-width: 768px) {
    .single-blog-box .text-holder {
        height: 180px;
    }
}

@media screen and (max-width: 767px) {
    .single-blog-box .text-holder {
        height: auto;
    }

    .single-blog-detail .text-holder h3 {
        font-size: 25px;
        line-height: 30px;
        font-weight: 600;
        padding: 10px 0;
    }
}

@media screen and (max-width: 576px) {
    .single-blog-box .text-holder h3 {
        font-size: 18px;
        line-height: 25px;
        font-weight: 500;
        margin: 24px 0 0px;
    }

    .single-blog-box {
        padding: 0 35px;
    }

    .single-blog-detail .text-holder p {
        font-size: 15px;
    }

    .single-blog-detail .text-holder .text-content h1,
    .single-blog-detail .text-holder .text-content h2,
    .single-blog-detail .text-holder .text-content h3,
    .single-blog-detail .text-holder .text-content h4,
    .single-blog-detail .text-holder .text-content h5,
    .single-blog-detail .text-holder .text-content h6 {
        font-size: 20px;
        line-height: 25px;
        font-weight: 700;
        margin: 0 0 14px;
    }
}

@media screen and (max-width: 388px) {
    .single-blog-box .text-holder h3 {
        font-size: 18px;
        line-height: 25px;
        font-weight: 500;
        margin: 24px 0 0px;
    }

    .single-blog-box {
        padding: 0 20px;
    }
}

.slogan-content {
    position: relative;
    /* padding: 35px 50px 35px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 170px;
    z-index: 5;
}

.slogan-content .left {
    position: relative;
    display: block;
}

.slogan-content .left .icon,
.slogan-content .left .title {
    display: table-cell;
    vertical-align: middle;
}

.slogan-content .left .title h3 {
    color: rgb(55, 54, 54) !important;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
}

.slogan-content .right {
    position: relative;
    display: block;
}

.slogan-content .right .btns-box {
    position: relative;
}

.btn-one {
    position: relative;
    display: inline-block;
    border-radius: 4px;
    padding: 0 40px;
    background-color: rgb(55, 54, 54) !important;
    color: rgb(214, 214, 214) !important;
    font-size: 16px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Archivo', sans-serif;
}

.btn-one:hover{
    background-color: rgb(55, 54, 54);
    color: rgb(214, 214, 214);
}

a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    border: none;
}


@media only screen and (max-width: 800px) {
    .slogan-content .left .title h3 {
        font-size: 18px;
        line-height: 22px;
        font-weight: 600;
    }

    .btn-one {
        padding: 0 30px;
        line-height: 40px;
        font-weight: 500;
    }

    .slogan-content {
        padding: 15px 20px;
        min-height: 140px;
    }
}

@media only screen and (max-width: 450px) {
    .slogan-content .left .title h3 {
        font-size: 15px;
        line-height: 12px;
        font-weight: 500;
    }

    .btn-one {
        padding: 0 20px;
        line-height: 30px;
        font-weight: 500;
    }

    .slogan-content {
        padding: 10px 15px;
        min-height: 100px;
    }
}