/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.owl-carousel {
    display: none;
    width: 100%;
}

.owl-carousel .owl-stage {
    position: relative;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: block;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    border: none;
    display: none;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.owl-carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.owl-height {
    transition: height .5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform .1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

@media (max-width: 568px) {

    .owl-carousel .owl-dots.disabled,
    .owl-carousel .owl-nav.disabled {
        display: none;
    }
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-dots {
    margin-top: 0px;
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: none;
    z-index: 1;
}

.mtspl-testimonials .owl-dots {
    margin-top: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    background: none;
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot {
    display: block;
    zoom: 1;
    background: transparent;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 2px;
    background: #fff;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    position: relative;
}

.testimonials .owl-theme .owl-dots .owl-dot span {
    background-color: var(--primary-color);
    opacity: .2;
}

.testimonials .owl-theme .owl-dots .owl-dot.active span,
.testimonials .owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--primary-color);
    opacity: .5;
}

/* button.owl-next,
 button.owl-prev {
   position: absolute;
   bottom: 50%;
 }
 
 button.owl-prev {
   left: 10px;
 }
 
 button.owl-next {
   right: 10px;
 } */

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color);
}

@media all and (max-width: 640px) {
    .owl-dots {
        margin-top: 30px;
    }

    button.owl-next,
    button.owl-prev {
        position: absolute;
        bottom: 38%;
    }
}

/* //banner */

/* 3grids section */
.about-content h5 a {
    font-weight: 800;
    color: var(--heading-color);
    font-size: 24px;
}

.about-content h5 a:hover {
    color: var(--primary-color);
}

.about-icon i {
    font-size: 50px;
    color: var(--primary-color);
}

/* //3grids section */

/* about section */
.about-info-m h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 6px;
    font-weight: 700;
}

.icon-style-ab i {
    color: var(--primary-color);
    font-size: 45px;
}

/* //about section */

/* circle section */
.circliful {
    position: relative;
}

.circle-text,
.circle-info,
.circle-text-half,
.circle-info-half {
    width: 100%;
    position: absolute;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 210px !important;
    font-size: 38px !important;
}

.circle-info,
.circle-info-half {
    color: #999;
}

.circliful .fa {
    margin: -10px 3px 0 3px;
    position: relative;
    bottom: 4px;
}

.progress-circles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    justify-items: center;
}

.progress-circles h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
}

@media (max-width:600px) {
    canvas {
        width: 120px;
        height: 120px;
    }

    .circle-text,
    .circle-info,
    .circle-text-half,
    .circle-info-half {
        font-size: 22px !important;
        line-height: 125px !important;
    }

    .circliful {
        width: 120px !important;
        margin: auto;
    }
}

@media (max-width:480px) {

    .circle-text,
    .circle-info,
    .circle-text-half,
    .circle-info-half {
        font-size: 20px !important;
    }

    .progress-circles h4 {
        font-size: 16px;
        line-height: 26px;
    }
}

/* //circle section */

/* form & play icon section */
.mtspl-content-sec {
    background: url(../images/bg1.jpg) no-repeat center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    position: relative;
    z-index: 1;
}

.mtspl-content-sec:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 43%);
    z-index: -1;
    top: 0;
}

.banner-play-w3 span.video-play-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    font-size: 30px;
    padding-left: 2px;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    -webkit-animation: ripple 1s linear infinite;
    animation: ripple 1s linear infinite;
    color: var(--primary-color);
    border: transparent;
    background: #fff;
}

.banner-play-w3 span.video-play-icon:hover {
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
    background: var(--primary-color);
    border: transparent;
    color: #fff;
}

/* play icon animation */
@-webkit-keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 25%), 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%);
    }

    100% {
        box-shadow: 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%), 0 0 0 40px rgba(50, 100, 245, 0);
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 25%), 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%);
    }

    100% {
        box-shadow: 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%), 0 0 0 40px rgba(50, 100, 245, 0);
    }
}

/* //play icon animation */

.form-content input,
.form-content textarea {
    width: 100%;
    color: var(--heading-color);
    font-size: 15px;
    padding: 14px;
    border: none;
    border-bottom: 1px solid var(--border-color-light);
    outline: none;
    margin-bottom: 16px;
    border-radius: 4px;
    background: transparent;
}

.form-content {
    max-width: 500px;
    background: var(--bg-color);
    padding: 40px;
}

.form-content textarea {
    min-height: 120px;
}

@media (max-width: 768px) {
    .form-content {
        padding: 25px;
    }
}

/* //form & play icon section */

/* services section */
.mtspl-feature-8 .feature-icon i {
    color: var(--primary-color);
    font-size: 40px;
    margin-top: 1em;
}

.feature-body {
    border: 1px solid var(--border-color-light);
    padding: 2em;
}

.mtspl-feature-8 h3.feature-titel a {
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
    color: var(--heading-color);
}

.mtspl-feature-8 h3.feature-titel a:hover {
    color: var(--primary-color);
    transition: 0.3s ease-out;
}

.mtspl-feature-8 a.feature-link:hover {
    color: var(--primary-color);
    transition: 0.3s ease-out;
}

.mtspl-feature-8 a.feature-link {
    display: inline-block;
    font-size: 16px;
    margin-top: 20px;
    color: var(--heading-color);
    font-weight: bold;
    display: flex;
    align-items: center;
}

.mtspl-feature-8 a.feature-link:hover {
    color: var(--primary-color);
}

.mtspl-feature-8 a.feature-link i {
    transition: 0.3s ease;
    margin-left: 4px;
}

.mtspl-feature-8 a.feature-link:hover i {
    padding-left: 3px;
    transition: 0.3s ease-out;
}

@media (max-width: 1200px) {
    .mtspl-feature-8 h3.feature-titel a {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .feature-body.border-right-res {
        border-right: 1px solid var(--border-color-light) !important;
    }

    .feature-body.border-top-res {
        border-top: none;
    }
}

@media (max-width: 568px) {
    .feature-body {
        margin: 0 1em;
    }

    .feature-body.border-rgt-res {
        border-right: 1px solid var(--border-color-light) !important;
    }

    .feature-body.border-top-r {
        border-top: none;
    }
}

/* //services section */

/* blog section */
.mtspl-blog-content {
    background: var(--bg-light);
}

.mtspl-blog-content .course-details {
    position: relative;
    padding: 40px;
    box-shadow: 0 25px 98px 0 rgba(0, 0, 0, 0.03);
    background: var(--bg-color);
}

.mtspl-blog-content .course-details:hover a.course-desc {
    color: var(--primary-color);
}

.mtspl-blog-content .card-header {
    border-bottom: none;
}

.mtspl-blog-content a.course-desc {
    display: block;
    font-size: 24px;
    line-height: 34px;
    font-weight: bold;
    color: var(--heading-color);
}

.course-price-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 15px 10px;
}

.course-price-badge:before {
    top: 0;
    border-top: 19px solid var(--primary-color);
    content: '';
    position: absolute;
    left: 0;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
}

.course-price-badge:after {
    bottom: 0;
    border-bottom: 19px solid var(--primary-color);
    content: '';
    position: absolute;
    left: 0;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
}

@media (max-width: 1080px) {
    .mtspl-blog-content .course-details {
        padding: 30px;
    }
}

/* //blog section */

/* call section */
h3.title-big {
    font-weight: 800;
    font-size: 30px;
}

.mtspl-call-to-action-6 p {
    font-size: 18px;
    line-height: 30px;
    margin-top: 10px;
}

.mtspl-call-to-action-6 .float-rt {
    align-self: center;
}

.mtspl-call-to-action-6 .buttons li {
    list-style: none;
    display: inline-block;
}

.mtspl-call-to-action-6 .buttons li.green {
    margin: 0 20px;
}

.mtspl-call-to-action-6 .buttons li.phone-sec a.call-style-w3 {
    font-size: 20px;
    color: var(--heading-color);
    font-weight: 600;
}

.mtspl-call-to-action-6 .buttons li.phone-sec a.call-style-w3:hover {
    color: var(--primary-color);
}

.buttons li.phone-sec span {
    font-size: 38px;
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .mtspl-call-to-action-6 .buttons li.green {
        margin: 10px 0;
    }

    .mtspl-call-to-action-6 .buttons li {
        display: block;
    }
}

@media (max-width: 567px) {
    .mtspl-call-to-action-6 .buttons li.phone-sec a.call-style-w3 {
        font-size: 18px;
    }

    li.phone-sec span {
        font-size: 28px;
    }
}

/* //call section */

/* footer */
.mtspl-footer-22 {
    background: #0a0a0a;
}

.right-side {
    padding: 50px;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    background: var(--bg-color);
    position: absolute;
    left: 0;
    right: 0;
    top: -60px;
    box-shadow: 0px -1px 41px 0px rgb(21 22 23 / 8%);
}

.mtspl-footer-22 .sub-one-left h6,
.mtspl-footer-22 .sub-two-right h6 {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-weight: bold;
}

.mtspl-footer-22 .sub-two-right ul li {
    list-style: none;
}

.mtspl-footer-22 .sub-two-right ul li span {
    margin-right: 10px;
    color: #fff;
}

.mtspl-footer-22 .sub-one-left p,
.mtspl-footer-22 .sub-two-right p {
    font-size: 14px;
    line-height: 24px;
    color: #cecece;
}

.mtspl-footer-22 ul.social li,
.mtspl-footer-22 ul.jst-link li {
    display: inline-block;
    margin-right: 5px;
}

.mtspl-footer-22 ul.social li a {
    color: #fff;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.06);
    display: inline-block;
    border-radius: 50%;
    text-align: center;
}

.mtspl-footer-22 ul.social li a:hover {
    opacity: 0.8;
    transition: 0.3s ease;
}

.mtspl-footer-22 ul.social li a span {
    font-size: 15px;
    line-height: 35px;
}

.mtspl-footer-22 .columns-2 {
    margin-top: 1.2em;
}

.mtspl-footer-22 .columns p,
.mtspl-footer-22 .columns p a {
    font-size: 15px;
    line-height: 25px;
    color: #a0a0a0;
}

.mtspl-footer-22 .sub-two-right ul li a {
    font-size: 14px;
    line-height: 24px;
    color: #cecece;
    margin: 0 0 10px 0;
    display: block;
}

.mtspl-footer-22 .sub-two-right ul li a:hover {
    color: #fff;
}

.mtspl-footer-22 .columns p a {
    color: #fff;
}

.mtspl-footer-22 .columns p a:hover {
    color: #fff;
    text-decoration: underline;
}

.mtspl-footer-22 .column2 span {
    font-size: 18px;
    color: #fff;
    vertical-align: middle;
    margin-right: 10px;
    width: 25px;
    text-align: center;
}

.mtspl-footer-22 .column2 a {
    text-decoration: none;
    color: #cecece;
    line-height: 25px;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
}

.mtspl-footer-22 .ab-right-cont {
    border-left: 1px solid rgb(64 73 82 / 51%);
}

.mtspl-footer-22 .column2 a:hover {
    color: #fff;
}

.mtspl-footer-22 .href2 {
    margin-top: 10px;
    padding: 10px 0;
}

.mtspl-footer-22 .contact-para {
    color: #cecece;
    line-height: 25px;
    font-size: 17px;
    margin-top: 10px;
}

.footer-contact a,
.footer-contact h5 {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.sub-contact {
    border-bottom: 1px solid #2d2c2c;
}

.footer-contact p {
    color: #eee;
    font-size: 13px;
}

.footer-contact span {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    margin-right: 20px;
    font-size: 24px;
}

@media (max-width: 1080px) {
    .mtspl-footer-22 .text-txt {
        grid-gap: 50px;
    }
}

@media (max-width: 991px) {
    .footer-contact {
        padding: 0 !important;
    }

    .footer-contact span {
        width: 55px;
        height: 55px;
        line-height: 55px;
        font-size: 20px;
    }

    .mtspl-footer-22 .text-txt {
        grid-template-columns: 1fr;
    }

    .mtspl-footer-22 .footer {
        padding: 60px 0;
    }

    .mtspl-footer-22 .href2 {
        padding: 6px 0;
    }

    .right-side {
        margin: 0 2em;
    }

    .mtspl-footer-22 .ab-right-cont {
        border-left: none;
    }
}

@media (max-width: 800px) {
    .mtspl-footer-22 .subscride-link h4 {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .mtspl-footer-22 .columns.text-right {
        text-align: center !important;
    }
}

@media (max-width: 736px) {

    .mtspl-footer-22 .sub-one-left h6,
    .mtspl-footer-22 .sub-two-right h6 {
        margin-bottom: 10px;
        padding-bottom: 7px;
    }
}

@media (max-width: 736px) {
    .right-side {
        margin: 0 1em;
    }

    .footer-sub {
        margin-top: 2em;
    }
}

@media (max-width: 568px) {
    .footer-contact {
        padding: 0 15px !important;
    }

    .mtspl-footer-22 .subscride-link h4 {
        margin-top: 50px;
    }

    .mtspl-footer-22 .text-txt {
        grid-gap: 40px;
    }

    .footer-sub {
        margin-top: 1em;
    }
}

@media (max-width: 520px) {
    .mtspl-footer-22 .href2 {
        padding: 4px 0;
    }
}

@media (max-width: 375px) {
    .right-side {
        padding: 35px 20px;
    }

    .footer-sub {
        margin-top: 0em;
    }
}

/* //footer */






/* inner-banner */
.inner-banner {
    background: #a82b53;
    /*url(../images/inner-banner.jpg) no-repeat center;*/
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    position: relative;
    z-index: 0;
}

.inner-banner::before {
    content: "";
    position: absolute;
    top: 0;
    min-height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    background: rgb(12 12 12 / 19%);
}

.mtspl-breadcrumb {
    display: block;
    margin: 0 auto;
    z-index: 100;
    padding-top: 150px;
    z-index: 99;
}

.breadcrumbs-custom-path {
    text-align: center;
    display: inline-block;
}

h4.inner-text-title {
    color: #fff;
}

.breadcrumbs-custom-path li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    text-transform: capitalize;
    color: #eee;
}

.breadcrumbs-custom-path li span.fa {
    font-size: 12px;
}

.breadcrumbs-custom-path a,
.breadcrumbs-custom-path a:active {
    color: #fff;
    font-weight: bold;
}

.breadcrumbs-custom-path a:hover {
    color: var(--primary-color);
}

@media (max-width: 800px) {
    .mtspl-breadcrumb {
        padding-top: 130px;
    }

    .breadcrumbs-custom-path li {
        font-size: 16px;
    }
}

@media (max-width: 568px) {
    .breadcrumbs-custom-path li {
        font-size: 15px;
    }
}

/* //inner-banner */

/* contact section */
.contact-info h4 {
    font-size: 20px;
    color: var(--heading-color);
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.contact-info i {
    font-size: 40px;
    color: var(--primary-color);
}

.form-inner-cont input,
.form-inner-cont textarea {
    outline: none;
    width: 100%;
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--heading-color);
    height: 50px;
    padding: 12px;
    -webkit-appearance: none;
    background: var(--bg-color);
    border: 1px solid var(--border-color-light);
    border-radius: 0px;
}

.form-inner-cont input:focus,
.form-inner-cont textarea:focus {
    border: 1px solid var(--primary-color);
}

.form-inner-cont textarea {
    min-height: 130px;
    resize: none;
}

.map iframe {
    width: 100%;
    min-height: 400px;
    -webkit-filter: var(--iframe-filter);
    -moz-filter: var(--iframe-filter);
    -ms-filter: var(--iframe-filter);
    -o-filter: var(--iframe-filter);
    filter: var(--iframe-filter);
}

@media (max-width: 768px) {
    .map iframe {
        width: 100%;
        min-height: 300px;
    }
}

/* //contact section */

/* about2 section */
.mtspl-about2 .about-2-secs ul li {
    margin: 15px 0;
}

.mtspl-about2 .about-2-secs li span {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

.content-top-ab {
    border-top: 1px solid var(--border-color-light);
}

.content-top-ab h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

a.call-style-ab {
    font-size: 25px;
    color: var(--primary-color);
    font-weight: 600;
}

@media all and (max-width: 991px) {
    .mtspl-about2 .about-2-secs-right {
        order: 2;
    }

    .mtspl-about2 .about-2-secs {
        order: 1;
    }
}

@media all and (max-width: 500px) {
    .mtspl-about2 .about-2-secs ul li {
        margin: 10px 0;
    }
}

/* //about2 section */

/* middle content section */
.mtspl-counter-top-6 {
    background-color: var(--bg-light);
}

.mtspl-counter-top-6 .specification h6 a {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 20px 0 12px;
    display: block;
}

.mtspl-counter-top-6 .specification h6 a:hover {
    color: var(--primary-color);
}

.mtspl-counter-top-6 .specification i {
    font-size: 30px;
    color: var(--primary-color);
}

/* //middle content section */

/* stats section */
.w3_stats {
    background: url(../images/bg2.jpg) no-repeat center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    position: relative;
    z-index: 0;
}

.w3_stats::before {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: -1;
    background: rgb(0 0 0 / 58%);
}

.counter i {
    font-size: 40px;
    color: #fff;
    text-align: center;
}

.timer {
    font-size: 3em;
    font-weight: 600;
    color: #fff;
}

p.count-text {
    text-transform: capitalize;
    color: #eee;
}

.team-grids img {
    width: 100%;
}

@media (max-width: 991px) {
    .timer {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .counter span {
        font-size: 2.5em;
    }
}

@media (max-width: 640px) {
    .timer {
        font-size: 2.5em;
    }

    .counter {
        text-align: center;
    }

    .w3-stats p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .timer {
        font-size: 2em;
    }

    .counter span {
        font-size: 2em;
    }
}

/* //stats section */

/* team */
.box13 {
    position: relative;
    transition: all .2s ease-out 0s;
    text-align: center;
}

.box13 .img-thumbnail {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color-light);
}

.box13 .box-content,
.box13:after {
    position: absolute;
    left: 20px;
    right: 20px
}

.box13:after {
    content: "";
    display: block;
    background: #000;
    top: 20px;
    bottom: 20px;
    opacity: 0;
    transform: rotate3d(-1, 1, 0, 100deg);
    transition: all .4s ease-in-out 0s
}

.box13:hover:after {
    opacity: .9;
    transform: rotate3d(0, 0, 0, 0deg)
}

.box13 img {
    width: 100%;
    height: auto
}

.box13 .box-content {
    top: 45%;
    opacity: 0;
    z-index: 1;
    -webkit-transform: translate(10%, -30%);
    transform: translate(10%, -30%);
    transition: all .2s ease-out 0s
}

.box13:hover .box-content {
    opacity: 1;
    transform: translate(0, -50%);
    transition-delay: .2s
}

.box13 .title {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    text-transform: capitalize;
}

.box13 .post {
    display: block;
    font-size: 14px;
    color: #eee;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.box13 .social {
    padding: 0;
    margin: 0;
    list-style: none
}

.box13 .social li {
    display: inline-block
}

.box13 .social li a {
    display: block;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    font-size: 16px;
    color: var(--primary-color);
    line-height: 35px;
    margin-right: 5px;
    transition: all .4s ease-in-out 0s;
}

.box14 .icon li,
.box14 .post {
    display: inline-block
}

.box13 .social li a:hover {
    color: #fff;
    background: #000;
}

/* team  */

/* customer section */
.customer-single blockquote {
    line-height: 28px;
    font-size: 16px;
}

.customer-img img {
    border-radius: 50%;
}

.customer-info h6 {
    font-weight: bold;
    line-height: 20px;
}

/* //customer section */

/* bg with video icon */
.mtspl-covers-14 {
    background: url("../images/bg3.jpg") no-repeat center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    position: relative;
    z-index: 1;
}

.mtspl-covers-14::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    z-index: -1;
}

.mtspl-covers-14 .covers14-text h4 {
    font-size: 50px;
    line-height: 60px;
    color: #fff;
    font-weight: bold;
}

@media all and (max-width: 568px) {
    .mtspl-covers-14 .covers14-text h4 {
        font-size: 45px;
        line-height: 55px;
    }
}

@media all and (max-width: 440px) {
    .mtspl-covers-14 .covers14-text h4 {
        font-size: 40px;
        line-height: 50px;
    }
}

/* //bg with video icon */

/* services section */
.mtspl-features-7 h4 a {
    font-size: 26px;
    line-height: 36px;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 700;
    display: block;
    color: var(--heading-color);
}

.mtspl-features-7 .features-top-left {
    background: var(--bg-color);
    padding: 35px 25px;
    position: relative;
    border: 2px solid var(--border-color-light);
}

.mtspl-features-7 .features-top-left:hover h4 a {
    color: var(--primary-color);
}

.mtspl-features-7 .features-top-left i {
    font-size: 40px;
    text-align: center;
    color: var(--primary-color);
}

.mtspl-features-7 .features-top-left::after {
    position: absolute;
    top: -3px;
    right: -3px;
    margin: 0 auto;
    content: "";
    display: block;
    background: var(--bg-color);
    border-radius: 3px 0 0 0;
    transform: rotate(0deg);
    border-top: 40px solid var(--bg-color);
    border-left: 40px solid var(--border-color-light);
}

@media screen and (max-width: 415px) {
    .mtspl-features-7 h4 {
        margin-top: 20px;
    }
}

@media screen and (max-width: 320px) {
    .mtspl-features-7 h4 {
        font-size: 18px;
        line-height: 23px;
    }
}

/* //services section */

/* pricing */
.mtspl-pricing .price-main-info .card-body {
    padding: 3.5em 3em;
    position: relative;
    overflow: hidden;
}

.mtspl-pricing ul.list-unstyled li span.fa {
    font-size: 14px;
    margin-right: 5px;
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgb(251 176 52 / 5%);
    line-height: 24px;
    text-align: center;
}

.mtspl-pricing ul.list-unstyled li.disable span.fa {
    color: var(--disable-color);
    background: rgb(216 214 214 / 9%);
}

label.price-label {
    font-size: 14px;
    color: #fff;
    background: var(--primary-color);
    padding: 5px 38px;
    position: absolute;
    right: -50px;
    top: 28px;
    transform: rotate(45deg);
}

.mtspl-pricing .price-inner.card.box-shadow {
    background: var(--bg-color);
    border: 1px solid var(--border-color-light);
    border-radius: 0px;
}

.mtspl-pricing .pricing-card-title span {
    font-size: .5em;
    display: inline-block;
    color: #5E6271;
}

.mtspl-pricing .price-main-info small.text-muted {
    font-size: 0.5em;
}

.mtspl-pricing ul.list-unstyled li {
    font-size: 1em;
    color: var(--font-color);
    line-height: 30px;
    margin-bottom: 5px;
}

.mtspl-pricing ul.list-unstyled li.disable {
    color: var(--disable-color);
}

.mtspl-pricing .price-main-info h5.card-title {
    font-size: 3em;
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: .8em;
    text-align: center;
    margin-top: .6em;
}

.mtspl-pricing .card-deck .card {
    padding: 0px;
}

.mtspl-pricing .price-inner.card h4 {
    color: var(--heading-color);
    font-size: 18px;
}

.mtspl-pricing .price-main-info.card {
    border-radius: 0;
    border: none;
    background: none;
}

.mtspl-pricing .price-inner.card.box-shadow:hover,
.mtspl-pricing .price-inner.card.box-shadow.active {
    background: var(--bg-light);
    transition: all .3s;
}

@media (max-width: 1080px) {
    .mtspl-pricing .price-main-info .card-body {
        padding: 3.5em 2em;
    }
}

@media (max-width: 480px) {
    .mtspl-pricing .price-main-info h5.card-title {
        font-size: 2.5em;
    }

    .mtspl-pricing .price-main-info .card-body {
        padding: 2.5em 3em;
    }

    .mtspl-pricing ul.list-unstyled li {
        font-size: 0.9em;
    }
}

/* //pricing */

/* error page */
.mtspl-error-grid {
    background: url(../images/error.jpg) no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 0;
}

.mtspl-error-grid:before {
    content: "";
    background: linear-gradient(75deg, rgb(4 4 4 / 59%) 8%, transparent);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.mtspl-error-grid h1 {
    font-size: 180px;
    font-weight: 600;
    line-height: 160px;
}

.mtspl-error-grid h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.error-block p {
    color: #fff;
}

.error-block i {
    color: var(--primary-color);
}

.mtspl-error-grid .form-control {
    width: 100%;
    background: var(--bg-color);
    padding: 12px 140px 12px 25px;
    font-size: 18px;
    line-height: 28px;
    height: 55px;
    border: 1px solid var(--border-color-light);
    border-radius: 30px;
    display: block;
}

.mtspl-error-grid .form-control:focus {
    box-shadow: none;
}

.mtspl-error-grid button.btn.search {
    position: absolute;
    top: 0;
    right: 0;
    height: 55px;
    box-shadow: none;
}

.mtspl-error-grid .form-inline.search-form {
    position: relative;
    max-width: 500px;
}

.mtspl-error-grid .back-button {
    font-weight: 600;
    display: inline-block;
    font-size: 18px;
    color: #fff;
    letter-spacing: 0;
}

.mtspl-error-grid .back-button span.fa {
    font-size: 14px;
    vertical-align: 1px;
}

.mtspl-error-grid .back-button:hover {
    color: var(--primary-color);
}

.aimation-effect {
    background: linear-gradient(110deg, #fff 33%, rgba(0, 0, 0, 0) 33%), linear-gradient(110deg, #fb9992 34%, #a82b53 34%);
    background-size: 60%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.aimation-effect {
    animation: Gradient 5s ease infinite;
    -webkit-animation: Gradient 15s ease infinite;
    -moz-animation: Gradient 5s ease infinite;
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 10% 100%
    }

    50% {
        background-position: 25% 100%
    }

    100% {
        background-position: 130% 100%
    }
}

@media all and (max-width: 991px) {
    .mtspl-error-grid h1 {
        font-size: 160px;
        line-height: 140px;
    }
}

@media all and (max-width: 768px) {
    .mtspl-error-grid h1 {
        font-size: 140px;
        line-height: 120px;
    }
}

@media all and (max-width: 384px) {
    .mtspl-error-grid h1 {
        font-size: 120px;
        line-height: 100px;
    }

    .mtspl-error-grid h2 {
        font-size: 25px;
    }

    .mtspl-error-grid button.btn.search {
        position: static;
        width: 100%;
        margin-top: 10px;
        height: auto;
    }
}

@media all and (max-width: 300px) {
    .mtspl-error-grid h1 {
        font-size: 100px;
        line-height: 80px;
    }
}

/* //error page */

/* blog page */
.mtspl-text-11 .text11-content h4 {
    font-size: 28px;
    line-height: 38px;
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 40px;
}

.mtspl-text-11 .text11-content h5 {
    font-size: 26px;
    line-height: 31px;
    color: #232527;
    font-weight: 700;
}

.mtspl-text-11 .text11-content a.next {
    display: inline-block;
    font-weight: 600;
    font-size: 40px;
    line-height: 45px;
    margin-top: 30px;
    color: #232527;
}

.mtspl-text-11 .text11-content a.prev {
    display: inline-block;
    font-weight: 600;
    font-size: 40px;
    line-height: 45px;
    margin-top: 30px;
    color: #232527;
}

.prev-next {
    display: flex;
    justify-content: space-between;
}

nav.post-navigation {
    border-top: 1px solid var(--border-color-light);
    border-bottom: 1px solid var(--border-color-light);
    margin-top: 40px;
}

.mtspl-text-11 .text11-content ul.blog-list {
    padding-left: 15px;
}

.mtspl-text-11 .text11-content h6 {
    display: inline-block;
    font-size: 16px;
    line-height: 25px;
    color: var(--para-color);
    text-transform: capitalize;
    font-weight: normal;
}

.mtspl-text-11 .text11-content a.admin {
    font-size: 17px;
    color: var(--primary-color);
}

.mtspl-text-11 .text11-content a.category {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--para-color);
    padding-left: 10px;
}

.mtspl-text-11 .text11-content .media-grid p {
    margin: 0px;
}

.mtspl-text-11 .media a,
.mtspl-text-11 .media .media-body {
    float: left;
}

.media-grid.even-grid {
    margin-left: 135px;
}

.mtspl-text-11 .comments .media-grid {
    margin-bottom: 20px;
}

.mtspl-text-11 .media-body.comments-grid-right {
    padding-left: 15px;
}

.new-posts {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-top: 40px;
}

.new-posts a {
    display: grid;
    margin: 20px 0;
    grid-template-columns: auto auto;
    grid-gap: 10px;
    color: var(--heading-color);
    font-weight: 600;
    align-items: center;
}

.new-posts a span.fa {
    font-size: 13px;
}

.new-posts a:hover {
    color: var(--primary-color);
}

.mtspl-text-11 h3.aside-title {
    font-size: 24px;
    line-height: 32px;
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.mtspl-text-11 .card {
    border: none;
    box-shadow: 0 0.5rem 1rem var(--box-shadow-blog) !important;
    height: auto;
    border-radius: 0px;
    margin-bottom: 1.5rem;
    padding: 1.5em;
}

.mtspl-text-11 a.blog-desc {
    display: block;
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 10px;
    margin-bottom: 8px;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

.mtspl-text-11 a.blog-desc:hover {
    color: var(--primary-color);
}

.mtspl-text-11 a.read {
    font-size: 17px;
    padding: 0;
    border-bottom: 2px solid var(--primary-color);
    color: var(--heading-color);
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border-radius: 0;
    margin-top: 20px;
    display: inline-block;
    text-transform: capitalize;
}

.mtspl-text-11 a.read:hover {
    color: var(--primary-color);
}

.mtspl-text-11 .history-info {
    max-width: 100%;
    margin: 0 auto;
}

.mtspl-text-11 .comments h5,
a.title-team-28 {
    font-size: 18px;
    line-height: 23px;
    color: var(--heading-color);
    font-weight: 700;
    margin: 0;
    margin-bottom: 5px;
}

.mtspl-text-11 .author-cardview {
    border: 1px solid var(--bg-border);
    padding: 30px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.mtspl-text-11 .author-right .social li a {
    font-size: 16px;
    color: var(--heading-color);
    margin-right: 20px;
}

.mtspl-text-11 .author-right .social li a:hover {
    color: var(--primary-color);
}

.mtspl-text-11 .comments-grid-right ul li {
    display: inline-block;
    color: #888;
    font-size: 16px;
    vertical-align: middle;
}

.mtspl-text-11 .comments-grid-right ul li a {
    font-weight: 600;
    color: var(--primary-color);
}

.mtspl-text-11 .comments-grid-right ul li a:hover {
    font-weight: 600;
    color: var(--secondary-color);
}

.mtspl-text-11 .text11-content h4.heading-no-margin {
    margin: 0;
}

.mtspl-text-11 .text11-content .social {
    align-self: center;
}

.mtspl-text-11 img.margin-top {
    margin-top: 30px;
}

.mtspl-text-11 .text11-content .social li p {
    font-size: 22px;
    color: var(--heading-color);
    font-weight: 600;
}

.mtspl-text-11 .social-share-blog {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 30px;
}

.text-list ol li {
    font-size: 1.2em;
    line-height: 28px;
    margin: 10px 0;
    color: var(--font-color);
    list-style-type: disc;
    font-weight: 400;
}

ul.comment {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    margin-bottom: 10px;
}

.mtspl-text-11 .leave-comment-form input[type="text"],
.mtspl-text-11 .leave-comment-form input[type="email"],
.mtspl-text-11 .leave-comment-form textarea {
    outline: none;
    border: none;
    padding: 12px 15px;
    font-size: 16px;
    line-height: 28px;
    color: var(--heading-color);
    width: 100%;
    height: inherit;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color-light);
    box-shadow: none;
    border-radius: 0px;
}

.mtspl-text-11 .leave-comment-form input:focus,
.mtspl-text-11 .leave-comment-form textarea:focus {
    border: 1px solid var(--primary-color);
}

.mtspl-text-11 .comments {
    margin: 60px 0;
}

.mtspl-text-11 textarea.form-control {
    height: 150px;
    font-family: inherit;
    resize: none;
}

.mtspl-text-11 .features-2 .feature-main {
    padding-top: 40px;
    padding-bottom: 0px;
}

.mtspl-text-11 .media {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 15px;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid var(--border-color-light);
    padding: 30px 20px;
}

.mtspl-text-11 .media-2 {
    border-top: 1px solid var(--border-color-light) !important;
}

.mtspl-text-11 .media a.comment-img {
    left: 0px;
    top: 0px;
    width: 85px;
    height: 85px;
    overflow: hidden;
    border-radius: 50%;
}

.mtspl-text-11 .feature-main .img1 {
    padding: 20px 10px;
    border: 1px solid rgba(130, 152, 171, 0.2);
}

.mtspl-text-11 .feature-main .img1:hover {
    background: #fff;
}

.mtspl-text-11 .feature-main .img1 img {
    width: 35px;
}

.mtspl-text-11 .features-2 .img1 h4 {
    margin-top: 10px;
}

.mtspl-text-11 .social li {
    display: inline-block;
}

.mtspl-text-11 ul.social li a {
    display: inline-block;
    margin: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--bg-light);
    text-align: center;
    margin-right: 6px;
    color: var(--heading-color);
    border-radius: 6px;
    font-size: 15px;
}

.mtspl-text-11 ul.social li span.fa {
    text-align: center;
    line-height: 40px;
}

.mtspl-text-11 ul.social li a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

a.blog-desc1 {
    font-size: 18px;
    color: var(--heading-color);
    line-height: 28px;
    margin-top: 20px;
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
}

a.blog-desc1:hover,
.author a:hover {
    color: var(--primary-color);
}

.author a {
    color: var(--para-color);
    font-size: 14px;
}

.mtspl-text-11 .card.empty-post {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 0px;
}

.mtspl-text-11 .card-body span.fa {
    font-size: 30px;
    color: var(--primary-color);
}

.mtspl-text-11 .page-numbers {
    font-size: 20px;
    margin: 0 5px;
    font-weight: 500;
}

.mtspl-text-11 a.posts-view-left {
    display: grid;
    grid-template-columns: 23% 72%;
    grid-gap: 4%;
    align-items: center;
    margin-top: 10px;
}

.mtspl-text-11 span.nav-title {
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    color: var(--heading-color);
}

.mtspl-text-11 a.posts-view-right {
    display: grid;
    grid-template-columns: 72% 23%;
    grid-gap: 4%;
    align-items: center;
    margin-top: 10px;
}

.mtspl-text-11 a.posts-view label {
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: var(--heading-color);
}

.mtspl-text-11 a.posts-view label:hover {
    color: var(--primary-color);
}

.mtspl-text-11 .single-left .admin-post a span {
    width: 20px;
    color: var(--heading-color);
}

.mtspl-text-11 .single-left .admin-post a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .mtspl-text-11 .text11-content h5.quote {
        margin: 40px 0;
    }

    .mtspl-text-11 a.posts-view-left,
    .mtspl-text-11 a.posts-view-right {
        grid-template-columns: 100%;
        grid-gap: 0%;
    }

    .sidebar-side {
        order: 2;
    }

    .mtspl-text-11 a.blog-desc {
        font-size: 22px;
        line-height: 32px;
        margin-top: 14px;
        margin-bottom: 10px;
    }
}

@media (max-width:667px) {
    .mtspl-text-11 .text11-content .social li p {
        font-size: 17px;
    }

    .mtspl-text-11 .text11-content h4 {
        font-size: 26px;
        line-height: 34px;
    }
}

@media (max-width: 568px) {

    .mtspl-text-11 a.blog-desc {
        font-size: 20px;
        line-height: 30px;
    }

    .mtspl-text-11 .text11-content a.next,
    .mtspl-text-11 .text11-content a.prev {
        font-size: 35px;
        line-height: 40px;
        margin-top: 10px;
    }

    .mtspl-text-11 a.posts-view label {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .mtspl-text-11 .text11-content p {
        margin-top: 15px;
    }

    .mtspl-text-11 .text11-content h5.quote {
        font-size: 24px;
        line-height: 32px;
    }

    .mtspl-text-11 .text11-content h6 {
        font-size: 15px;
    }

    .mtspl-text-11 .text11-content a.category {
        font-size: 15px;
        padding-left: 15px;
    }

    .mtspl-text-11 .text11-content h5 {
        font-size: 20px;
        line-height: 25px;
    }

    .mtspl-text-11 .comments {
        margin: 30px 0;
    }

    .mtspl-text-11 .text11-content a.next,
    .mtspl-text-11 .text11-content a.prev {
        font-size: 30px;
        line-height: 35px;
    }

    .media-grid.even-grid {
        margin-left: 0px;
    }

    .mtspl-text-11 .media-body.comments-grid-right {
        padding-left: 5px;
    }

    .mtspl-text-11 .pagination li {
        margin: 0 2px;
    }

    .mtspl-text-11 .comments-grid-right ul li {
        font-size: 13px;
        vertical-align: middle;
    }
}

@media (max-width:440px) {
    .mtspl-text-11 .social-share-blog {
        grid-auto-flow: row;
        grid-gap: 15px;
    }

    .mtspl-text-11 .text11-content .social {
        text-align: left;
    }

    .mtspl-text-11 .text11-content h4 {
        font-size: 22px;
        margin-bottom: 10px;
        line-height: 30px;
    }

    .mtspl-text-11 h3.aside-title {
        font-size: 22px;
        line-height: 32px;
    }

    ul.comment,
    .mtspl-text-11 .media {
        grid-auto-flow: row;
        grid-gap: 10px;
    }

    .mtspl-text-11 ul.social li {
        margin-right: 0px;
    }

    .column3 a {
        font-size: 16px;
    }
}

@media (max-width: 420px) {}

@media (max-width:400px) {
    .mtspl-text-11 .text11-content h5.quote {
        font-size: 16px;
        line-height: 26px;
    }
}

/* end of owlcarousel */
