h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 26px;
}

h2 span {
    font-weight: 200;
    position: relative;
    padding-left: 7px;
}

h2 span:before {
    content: "";
    border-left: 3px solid #22beef;
    height: 18px;
    position: absolute;
    left: 0;
    top: 7px;
}

h3 {
    margin-top: 0;
    font-weight: 600;
}

h3 span {
    font-weight: 400;
}

p {
    margin-top: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: none;
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: none;
    transition: background-color 5000s ease-in-out 0s;
}

.blog-page #Subheader {
    display: none;
}

.bg-image,
.bg-image img {
    min-height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    position: absolute;
}

.btn, .blog-wrapper .search-wrapper form .submitbtn {
    width: 100%;
    padding: 15.5px 32px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    line-height: 1;
    border: 2px solid #22beef;
    transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.4);
    max-width: 190px;
    position: relative;
    z-index: 2;
}

.btn:before, .blog-wrapper .search-wrapper form .submitbtn:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 0;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.1s;
    z-index: -1;
}

.btn:after, .blog-wrapper .search-wrapper form .submitbtn:after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ddd;
    transition: all 0.5s;
    float: right;
    margin-top: 2.5px;
}

.btn:hover:after, .blog-wrapper .search-wrapper form .submitbtn:hover:after {
    margin-right: 20px;
}

.btn.primary, .blog-wrapper .search-wrapper form .submitbtn {
    background-color: #22beef;
    color: #fff;
}

.btn.primary:hover, .blog-wrapper .search-wrapper form .submitbtn:hover {
    color: #22beef;
}

.btn.primary:hover:before, .blog-wrapper .search-wrapper form .submitbtn:hover:before {
    background-color: #fff;
    width: 100%;
}

.btn.secondary, .blog-wrapper .search-wrapper form .secondary.submitbtn {
    background-color: #fff;
    color: #22beef;
    overflow: hidden;
}

.btn.secondary:before, .blog-wrapper .search-wrapper form .secondary.submitbtn:before {
    width: 100%;
    transform: translateX(-100%);
}

.btn.secondary:hover, .blog-wrapper .search-wrapper form .secondary.submitbtn:hover {
    color: #fff;
}

.btn.secondary:hover:before, .blog-wrapper .search-wrapper form .secondary.submitbtn:hover:before {
    background-color: #22beef;
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    background-color: #333366;
    z-index: 5;
    transform: scale(0);
    transition: all 0.2s ease-in;
    transition-delay: 0s;
}

.inner-wrap {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.row {
    width: 100%;
}

.two-col,
.three-col,
.four-col {
    width: 100%;
}

.read-more {
    position: relative;
    color: #22beef;
    text-decoration: none;
    font-weight: 600;
}

.read-more:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.2s cubic-bezier(0.31, -0.105, 0.43, 1.4);
    height: 2px;
    width: 0;
    background-color: #22beef;
}

.read-more:after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ddd;
    margin-left: 40px;
    transition: all 0.5s ease;
}

.read-more:hover:before {
    width: calc(100% - 30px);
}

.read-more:hover:after {
    margin-left: 20px;
}

.breadcrumbs {
    color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    margin-bottom: 30px;
}

.breadcrumbs a {
    text-decoration: none;
    color: #fff;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.breadcrumbs ol li {
    font-size: 10px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    border-right: 2px solid #22beef;
    padding-right: 10px;
    margin-right: 10px;
}

.breadcrumbs ol li:last-child {
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    font-size: 0;
    width: 20px;
    height: 20px;
}

.slick-arrow.slick-next {
    right: 0;
}

.slick-arrow.slick-prev {
    left: 0;
}

.social-icons {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.social-icons li {
    padding: 0 5px;
}

.social-icons li img {
    max-height: 40px;
}

@media (min-width: 900px) {
    html {
        font-size: 16px;
    }

    body {
        margin-top: 75px;
    }

    .inner-wrap {
        padding: 0 30px;
    }

    .row {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .two-col {
        max-width: calc(100% / 2);
    }

    .three-col {
        max-width: calc(100% / 3);
    }

    .four-col {
        max-width: calc(100% / 4);
    }

    .btn, .blog-wrapper .search-wrapper form .submitbtn {
        max-width: 240px;
    }

    .bg-lines {
        position: relative;
        opacity: 0.5;
        z-index: -1;
    }

    .bg-lines .lines {
        border-right: 1px solid #ddd;
        background: linear-gradient(90deg, #ddd 1px, transparent 1px) 1px 0, transparent;
        background-size: 25% 1px;
        position: absolute;
        height: 1000vh;
        top: -1000vh;
        left: 30px;
        right: 30px;
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 0.8333333333vw;
    }

    body {
        margin-top: 5.15625vw;
    }

    h2 {
        font-size: 1.875vw;
        margin-bottom: 2.96875vw;
    }

    h2 span {
        font-weight: 400;
        padding-left: 0.78125vw;
    }

    h2 span:before {
        border-width: 0.2083333333vw;
        height: 1.3541666667vw;
        top: 0.5729166667vw;
    }

    h3 {
        font-size: 1.25vw;
        margin-bottom: 1.0416666667vw;
    }

    .inner-wrap {
        padding: 0;
        max-width: 75vw;
        margin: 0 auto;
    }

    .btn, .blog-wrapper .search-wrapper form .submitbtn {
        border-width: 0.15625vw;
        padding: 1.1979166667vw 2.6041666667vw;
        max-width: 18.75vw;
    }

    .btn:hover, .blog-wrapper .search-wrapper form .submitbtn:hover {
        margin-right: 1.0416666667vw;
    }

    .btn:after, .blog-wrapper .search-wrapper form .submitbtn:after {
        margin-top: 0.1302083333vw;
    }

    .read-more:before {
        height: 0.1041666667vw;
    }

    .read-more:after {
        margin-left: 2.0833333333vw;
    }

    .read-more:hover:before {
        width: calc(100% - 1.563vw);
    }

    .read-more:hover:after {
        margin-left: 1.0416666667vw;
    }

    .bg-lines .lines {
        left: 0;
        right: 0;
    }

    .breadcrumbs {
        padding: 1.4583333333vw 0;
        margin-bottom: 4.0104166667vw;
    }

    .breadcrumbs ol li {
        font-size: 0.625vw;
        padding-right: 0.78125vw;
        margin-right: 0.78125vw;
        border-width: 0.1041666667vw;
    }

    .slick-arrow {
        width: 1.0416666667vw;
        height: 1.0416666667vw;
    }

    .social-icons li {
        padding: 0 0.7291666667vw 0 0;
    }

    .social-icons li img {
        max-width: 2.6041666667vw;
    }
}

.single-post main,
.blog main {
    overflow: visible;
}

.blog-wrapper {
    width: 100%;
    background-color: #fff;
}

.blog-posts-wrapper.videos h2 {
    color: #fff;
    margin-bottom: 20px;
}

.blog-wrapper h2 {
    text-align: left;
    margin: 0;
}

.blog-wrapper .text-content {
    padding: 0 15px;
    color: #fff;
}

.blog-wrapper .text-content img {
    max-width: 100%;
}

.blog-wrapper .blog-content-wrapper .inner-wrap {
    padding: 0;
}

.blog-wrapper .search-wrapper form {
    line-height: 1;
}

.blog-wrapper .search-wrapper form .seachinput {
    width: 100%;
    padding: 22px 20px;
    border: 2px solid #ddd;
    background-color: #fff !important;
}

.blog-wrapper .search-wrapper form .submitbtn {
    width: 100%;
}

.blog-wrapper .sidebar-wrapper {
    padding: 0 20px;
}

.blog-wrapper .sidebar-wrapper h3 {
    margin-top: 0;
    margin-bottom: 25px;
    text-align: left;
}

.blog-wrapper .sidebar-wrapper a {
    text-decoration: none;
    color: #000;
}

.blog-wrapper .sidebar-wrapper a:hover {
    text-decoration: underline;
}

.blog-wrapper .sidebar-wrapper ul {
    padding: 0;
}

.blog-wrapper .sidebar-wrapper li {
    list-style: none;
    margin-bottom: 25px;
    position: relative;
}

.blog-wrapper .sidebar-wrapper .search-wrapper,
.blog-wrapper .sidebar-wrapper .recent-posts,
.blog-wrapper .sidebar-wrapper .categoriy-wrap,
.blog-wrapper .sidebar-wrapper .archives-wrap {
    margin-bottom: 60px;
}

.blog-wrapper .pagination-wrap {
    width: 100%;
    margin: 40px 15px;
}

.blog-wrapper .blog-post-wrap {
    padding: 0 20px 40px;
}

.blog-wrapper .single-post-wrap {
    width: 100%;
    margin-bottom: 30px;
}

.blog-wrapper .single-post-wrap.list {
    margin-bottom: 50px;
}

.blog-wrapper .single-post-wrap.list a {
    text-decoration: none;
}

.blog-wrapper .single-post-wrap.list a h3 {
    color: #000;
}

.blog-wrapper .trending .single-post-wrap.list a h3,
.blog-wrapper .trending .single-post-wrap.list p {
    color: #000;
}

.blog-wrapper .single-post-wrap.list h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 800;
}

.blog-wrapper .single-post-wrap.list .meta-info {
    line-height: 1;
    margin-bottom: 30px;
}

.blog-wrapper .single-post-wrap.list .meta-info .publish-date {
    font-size: 14px;
    color: #22beef;
}

.blog-wrapper .image-wrap {
    line-height: 0;
    margin-bottom: 15px;
}

.blog-wrapper .image-wrap img {
    width: 100%;
}

.blog-wrapper .image-wrap a {
    line-height: 0;
}

.blog-wrapper .sidebar-wrapper .recent-posts img {
    width: 100%;
    min-height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    -webkit-transform: none;
    transform: none;
    position: absolute;
    filter: grayscale(1);
    transition: all .5s;
}

.blog-wrapper .sidebar-wrapper .recent-posts img:hover {
    filter: grayscale(0);
}

.blog-wrapper .sidebar-wrapper .recent-posts a {
    position: relative;
    padding-bottom: 73%;
    display: block;
    overflow: hidden;
}

.blog-wrapper .sidebar-wrapper .recent-posts h4 {
    z-index: 2;
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    margin: 0;
}

.blog-section .image-wrapper img {
    width: 100%;
}

.blog-section .breadcrumbs {
    padding: 0 15px;
    margin: 15px 0;
}

.pagination {
    text-align: center;
    width: 100%;
    margin: 30px 0;
}

.pagination a {
    text-decoration: none;
    color: #000;
}

.pagination a:hover {
    text-decoration: underline;
}

.pagination .page-numbers {
    margin: 0 10px;
}

.pagination .page-numbers.current {
    color: #22beef;
    font-weight: 300;
    line-height: 0;
}

.simplesocial-simple-icons button {
    margin: 0 !important;
    border-radius: 0 !important;
}

.blog-posts-wrapper .text-content h3 {
    margin-bottom: 10px;
}

.blog-wrapper .featured-content {
    background-color: #1e1f1e;
    margin: 0 -20px 50px -20px;
    padding: 20px;
}

.blog-wrapper .featured-content .single-post-wrap.list a h3 {
    color: #fff;
}

.blog-posts-wrapper .single-post-wrap.list .image-wrap {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
    width: 100%;
}

.blog-posts-wrapper .single-post-wrap.list .image-wrap img {
    width: 100%;
    min-height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    -webkit-transform: none;
    transform: none;
    position: absolute;
}

.trending {
    margin-top: 30px;
}

.trending h2 {
    width: 100%;
    text-align: center;
    margin: 20px 0;
    font-weight: 800;
}

.blog-posts-wrapper.single h2 {
    margin-bottom: 10px;
}

.blog-posts-wrapper.single .meta-info {
    margin-bottom: 20px;
}

.category-wrap .blog-posts-wrapper h2 {
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}

.category-wrap .view-all-link {
    display: inline-block;
    width: 100%;
    text-align: right;
    color: #000;
    margin-bottom: 20px;
}

.single-post .blog-content-wrapper {
    max-width: none;
    width: 100%;
}

.single-post .blog-posts-wrapper.single {
    margin: 0;
}

.featured-post-item {
    color: #000;
    padding: 30px 0;
}

.featured-post-item h2 {
    color: #fff;
}

.featured-post-item .image-content img {
    width: 100%;
}

.featured-post-item .button {
    background-color: transparent;
    border: 2px solid !important;
    color: #000;
}

@media (min-width: 600px) {
    .blog-page .mcb-section-header {
        padding-top: 140px;
    }
}

@media (min-width: 900px) {
    .blog-wrapper {
        min-height: 88vw;
    }

    .blog-wrapper .title-wrapper {
        margin-top: 38px;
        margin-bottom: 50px;
        padding: 0;
    }

    .blog-wrapper .pagination-wrap {
        margin: 80px 15px;
    }

    .blog-wrapper .sidebar-wrapper {
        width: 25%;
        padding: 5% 0 0;
        position: -webkit-sticky;
        position: sticky;
        top: 5vw;
        display: inline-block;
        vertical-align: top;
        float: right;
    }

    .blog-content-wrapper {
        width: 71%;
        display: inline-block;
        vertical-align: top;
    }

    .blog-content-wrapper .blog-post-wrap {
        width: calc(50% - 10px);
        display: inline-block;
        margin-bottom: 30px;
    }

    .blog-posts-wrapper {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
        justify-content: space-between;
        -ms-flex-pack: space-between;
    }

    .blog-posts-wrapper.videos h2 {
        color: #fff;
        margin-bottom: 20px;
    }

    .blog-posts-wrapper.videos .single-post-wrap.list {
        width: 30%;
        position: relative;
    }

    .blog-posts-wrapper.videos .single-post-wrap.list .text-content {
        display: none;
    }

    .blog-posts-wrapper.videos .single-post-wrap.list:first-of-type {
        width: 100%;
    }

    .blog-posts-wrapper.videos .single-post-wrap.list:first-of-type .text-content {
        display: block;
    }

    .category-wrap .blog-posts-wrapper .single-post-wrap {
        max-width: 33.33%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .featured-post-item {
        padding: 80px 0;
        margin-bottom: 60px;
        position: relative;
    }

    .featured-post-item .inner-wrap {
        position: relative;
        display: flex;
        align-items: center;
    }

    .featured-post-item:before {
        background-color: #22beef;
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 60%;
        height: 100%;
    }

    .featured-post-item .image-content {
        order: 1;
    }

    .featured-post-item .post-content {
        max-width: 45%;
        padding-right: 60px;
    }

    .featured-post-item .image-content {
        width: 55%;
    }


}

@media (min-width: 1200px) {
    .blog-wrapper {
        min-height: 48vw;
    }

    .blog-wrapper .text-content {
        padding: 0;
    }

    .blog-wrapper .image-wrap {
        margin-bottom: 0.781vw;
    }

    .blog-wrapper .single-post-wrap {
        margin-bottom: 3.125vw;
    }

    .blog-wrapper .single-post-wrap.list {
        margin-bottom: 2.6041666667vw;
    }

    .blog-wrapper .single-post-wrap.list .meta-info {
        margin-bottom: 0.781vw;
    }

    .blog-wrapper .single-post-wrap.list .meta-info .publish-date {
        font-size: 0.7291666667vw;
    }

    .blog-wrapper .title-wrap {
        margin-top: 1.9791666667vw;
        padding: 0;
    }

    .blog-wrapper .blog-post-wrap {
        width: calc(50% - 0.521vw);
        padding: 0;
        margin-bottom: 1.5625vw;
    }

    .blog-wrapper .pagination-wrap {
        margin: 4.1666666667vw 0.78125vw;
    }

    .blog-wrapper .sidebar-wrapper {
        padding-top: 0;
        top: 7vw;
    }

    .blog-wrapper .sidebar-wrapper h3 {
        color: #fff;
        font-size: 1.0416666667vw;
        margin-bottom: 1.3020833333vw;
        padding: 0;
    }

    .blog-wrapper .sidebar-wrapper li {
        margin-bottom: 1.95vw;
    }

    .blog-wrapper .sidebar-wrapper .search-wrapper,
    .blog-wrapper .sidebar-wrapper .recent-posts,
    .blog-wrapper .sidebar-wrapper .categoriy-wrap,
    .blog-wrapper .sidebar-wrapper .archives-wrap {
        margin-bottom: 3.125vw;
    }

    .blog-wrapper .search-wrapper form .seachinput {
        padding: 1.1458333333vw 1.0416666667vw;
        border-width: 0.15625vw;
    }

    .blog-content-wrapper {
        max-width: 68vw;
    }

    .blog-section .breadcrumbs {
        padding: 0;
        margin: 1.5625vw 0;
    }

    .pagination .page-numbers {
        margin: 0 0.5208333333vw;
    }

    .pagination .page-numbers.current {
        padding: 0.625vw 1.1458333333vw;
    }

    .blog-posts-wrapper.single {
        min-height: 1600px;
        display: block;
    }

    .blog-wrapper .featured-content,
    .blog-wrapper .categoriy-wrap {
        margin-bottom: 3vw;
    }

    .featured-content .blog-content-wrapper {
        padding-top: 0;
    }

    .single-post .blog-posts-wrapper.single {
        margin-top: -150px;
    }

    .featured-post-item {
        padding: 4.167vw 0;
        margin-bottom: 3vw;
    }

    .featured-post-item .post-content {
        padding-right: 3vw;
    }

    .blog-page .mcb-section-header {
        padding-top: 180px;
    }

    .blog-page .mcb-section-header .no_line {
        margin-bottom: 0;
    }
}

@media (min-width: 1800px) {
    .inner-wrap {
        max-width: 75vw;
    }

    .blog-content-wrapper {
        max-width: 54vw;
    }
}

/*# sourceMappingURL=blog.css.map */
