.col-title,
.section-header {
    text-align: center
}

body::-webkit-scrollbar {
    width: 6px
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px
}

body::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark)
}

.section-header h2,
.section-header h3,
.section-header h4,
.section-header h6 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #008000; /*  var(--color-secondary) */
}

.section-header-title {
    color: var(--color-default);
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.section-header-title:hover {
    color: var(--color-links);
}

.section-header h3 {
    color: var(--color-yellow);
    font-size: 22px;
}



.footer .footer-content .footer-newsletter form input[type=submit]:hover,
.scroll-top:hover {
    background: rgba(var(--color-primary-rgb), .85)
}

a,
a:hover {
    text-decoration: none
}

:root {
    scroll-behavior: smooth
}

a {
    color: var(--color-links)
}

a:hover {
    color: var(--color-links-hover)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary)
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--color-white);
    transition: .6s ease-out;
    width: 100%;
    height: 100vh
}

#preloader:after,
#preloader:before {
    content: "";
    position: absolute;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    animation: 2s cubic-bezier(0, .2, .8, 1) infinite animate-preloader
}

#preloader:after {
    animation-delay: -.5s
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0
    }
}

section {
    padding: 60px 0;
    overflow: hidden
}

.section-header {
    padding-bottom: 40px
}

.section-header h2 {
    font-size: 48px
}

.section-header p {
    margin: 0 auto;
    color: var(--color-secondary-light)
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a,
.btn-search,
.features .nav-link.active h4,
.footer .footer-content .footer-links ul a:hover,
.header .btn-getstarted:focus:hover,
.header .btn-getstarted:hover,
.scroll-top i,
.scroll-top:hover {
    color: var(--color-white)
}

.breadcrumbs {
    padding: 15px 0;
    background: rgba(var(--color-secondary-rgb), .05);
    min-height: 40px;
    margin-top: 76px
}

.breadcrumbs h2 {
    font-size: 30px;
    font-weight: 300;
    margin: 0
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px
}

.breadcrumbs ol li+li {
    padding-left: 10px
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: var(--color-secondary-light);
    content: "/"
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 995;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: .4s
}

.scroll-top i {
    font-size: 24px;
    line-height: 0
}

.scroll-top.active {
    visibility: visible;
    opacity: 1
}

.header {
    padding: 0;
    transition: .5s;
    z-index: 997;
    background: var(--color-white);
    box-shadow: 0 2px 20px rgba(var(--color-secondary-rgb), .1)
}

.header .logo img {
    max-height: 120px;
    margin-right: 0;
    margin-top: -10%;
}

.header .logo h1 {
    font-size: 32px;
    font-weight: 300;
    color: var(--color-secondary);
    font-family: var(--font-secondary)
}

.header .logo h1 span {
    color: var(--color-primary);
    font-weight: 500
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    font-size: 16px;
    color: var(--color-white);
    padding: 8px 23px;
    border-radius: 4px;
    transition: .3s;
    font-family: var(--font-secondary)
}

.btn-search:active,
.btn-search:hover {
    color: var(--color-primary);
    background-color: var(--color-white)
}

.btn-search,
.btn-search:active,
.btn-search:hover {
    border: 1px solid var(--color-primary);
    height: 30px;
    font-size: 12px;
}

.btn-search {
    background-color: var(--color-primary);
    transition: .2s ease-in-out;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out
}

.btn-search:active {
    transform: translateY(2px);
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    -ms-transform: translateY(2px);
    -o-transform: translateY(2px)
}

.form-control {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    margin: auto;
    width: 180px;
    border: 1px solid var(--color-secondary-light);
    transition: .2s ease-in-out;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out
}

.form-control:focus {
    border-color: var(--color-primary-light);
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, .075), #50c878
}

@media (min-width:1280px) {

    body::-webkit-scrollbar {
        width: 6px
    }

    body::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px grey;
        border-radius: 10px
    }

    body::-webkit-scrollbar-thumb {
        background: var(--color-primary);
        border-radius: 10px
    }

    body::-webkit-scrollbar-thumb:hover {
        background: var(--color-primary-dark)
    }

    .section-header p {
        max-width: 80%
    }

    .navbar,
    .navbar li {
        position: relative
    }

    .navbar {
        padding: 0
    }

    .navbar ul {
        margin-left: calc(22% - 200px);
        padding: 0;
        display: flex;
        list-style: none;
        align-items: right;
    }

    .navbar>ul>li {
        white-space: nowrap
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        font-family: var(--font-secondary);
        font-size: 16px;
        font-weight: 400;
        white-space: nowrap;
        transition: .3s;
        position: relative
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px
    }

    .navbar>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--color-links);
        visibility: hidden;
        transition: .3s ease-in-out;
        transform: scaleX(0);
        -webkit-transition: .3s ease-in-out;
        -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out
    }

    .navbar .active:before,
    .navbar a:hover:before,
    .navbar li:hover>a:before {
        visibility: visible;
        transform: scaleX(.7)
    }

    .navbar .active,
    .navbar .active:focus,
    .navbar .dropdown .active,
    .navbar .dropdown .active:focus,
    .navbar .dropdown a:hover,
    .navbar .dropdown:hover>a,
    .navbar a:hover,
    .navbar li:hover>a {
        color: var(--color-links)
    }

    .dropdown a {
        color: var(--color-black);
        transition: .3s ease-in-out;
        -webkit-transition: .3s ease-in-out;
        -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out
    }

    .navbar .dropdown .active:before,
    .navbar .dropdown a:hover:before,
    .navbar .dropdown:hover>a:before {
        visibility: hidden
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 0;
        top: 100%;
        margin: 0;
        padding: 10px;
        box-shadow: 0 0 5px 0 #000;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        border-radius: 20px;
        background: var(--color-white);
        transition: .3s ease-in-out;
        -webkit-transition: .3s ease-in-out;
        -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px
    }

    .navbar .dropdown ul li a {
        max-width: 300px;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
    }


    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        font-weight: 400;
        color: rgba(var(--color-links), .5);
        border-radius: 20px
    }

    .navbar .dropdown ul a i {
        font-size: 12px
    }

    .navbar .dropdown ul .active,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul li:hover>a {
        transition: .3s ease-in-out;
        color: var(--color-links);
        background: var(--color-white);
        -webkit-transition: .3s ease-in-out;
        -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
    }

    /* Dropdown Active Hover */
    .navbar .dropdown>ul>li>a:before {
        content: "";
        position: absolute;
        width: 90%;
        height: 2px;
        bottom: 0;
        left: 5%;
        background-color: var(--color-links);
        visibility: hidden;
        transition: .3s ease-in-out;
        transform: scaleX(0);
        -webkit-transition: .3s ease-in-out;
        -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out
    }

    .navbar .dropdown .active:before,
    .navbar .dropdown a:hover:before,
    .navbar .dropdown li:hover>a:before {
        visibility: visible;
        transform: scale(.9);
        -webkit-transform: scale(.9);
        -moz-transform: scale(.9);
        -ms-transform: scale(.9);
        -o-transform: scale(.9);
    }

    .navbar .active,
    .navbar .active:focus,
    .navbar .dropdown .active,
    .navbar .dropdown .active:focus,
    .navbar .dropdown a:hover,
    .navbar .dropdown:hover>a,
    .navbar a:hover,
    .navbar li:hover>a {
        color: var(--color-links)
    }

    /*  */

    .navbar .dropdown:hover>ul {
        opacity: 1;
        visibility: visible
    }

    .navbar .megamenu {
        position: static
    }

    .navbar .megamenu ul {
        right: 0;
        padding: 10px;
        display: flex
    }

    .navbar .megamenu ul li {
        flex: 1
    }

    .navbar .megamenu ul li a,
    .navbar .megamenu ul li:hover>a {
        color: rgba(var(--color-white-rgb), .5);
        background: 0 0
    }

    .navbar .megamenu ul li .active,
    .navbar .megamenu ul li .active:hover,
    .navbar .megamenu ul li a:hover {
        color: var(--color-white);
        background: var(--color-primary)
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden
    }

    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible
    }
}

@media (min-width:1280px) and (max-width:1366px) {

    body::-webkit-scrollbar {
        width: 6px
    }

    body::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px grey;
        border-radius: 10px
    }

    body::-webkit-scrollbar-thumb {
        background: var(--color-primary);
        border-radius: 10px
    }

    body::-webkit-scrollbar-thumb:hover {
        background: var(--color-primary-dark)
    }

    .navbar .dropdown .dropdown ul {
        left: -90%
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%
    }
}

@media (max-width:1279px) {

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        margin-right: 50px
    }

    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: calc(100% - 70px);
        bottom: 0;
        transition: .3s;
        z-index: 9997
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 10px 0;
        margin: 0;
        background: rgba(var(--color-white-rgb), .9);
        overflow-y: auto;
        transition: .3s ease-in-out;
        z-index: 9998
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        font-size: 16px;
        font-weight: 500;
        color: rgba(var(--color-primary-rgb), .7);
        white-space: nowrap;
        transition: .3s;
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px
    }

    .navbar .active,
    .navbar .active:focus,
    .navbar a:hover,
    .navbar li:hover>a {
        color: var(--color-primary)
    }

    .navbar .dropdown .dropdown ul,
    .navbar .dropdown ul {
        position: static;
        height: 200px;
        width: 320px;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: .3s ease-in-out;
        border-radius: 20px;
        border: 1px solid rgba(var(--color-black-rgb), .3);
        -webkit-transition: .3s ease-in-out;
        -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px
    }

    .navbar .dropdown .dropdown ul li a,
    .navbar .dropdown ul li a {
        font-size: 12px
    }

    .navbar .dropdown .dropdown>.dropdown-active,
    .navbar .dropdown>.dropdown-active {
        display: block
    }

    .mobile-nav-toggle {
        display: block !important;
        color: var(--color-secondary);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: .5s;
        position: fixed;
        margin-top: 3%;
        top: 20px;
        z-index: 9999;
        right: 20px
    }

    .mobile-nav-toggle.bi-x {
        color: var(--color-white)
    }

    .mobile-nav-active {
        overflow: hidden;
        z-index: 9995;
        position: relative
    }

    .mobile-nav-active .navbar {
        left: 0
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(var(--color-black-rgb), .8);
        z-index: 9996
    }
}

.hero-animated,
.hero-static {
    width: 100%;
    min-height: 50vh;
    background: url("../img/hero-bg.png") center center/cover;
    position: relative;
    padding: 120px 0 60px
}

.hero-animated h2,
.hero-fullscreen h2,
.hero-static h2 {
    margin: 0 0 10px;
    font-size: 48px;
    font-weight: 300;
    color: var(--color-secondary);
    font-family: var(--font-secondary)
}

.articles .article-item:hover .details .icon i,
.articles .article-item:hover .details h3,
.blog .blog-details .meta-bottom a:hover,
.blog .comments .comment h5 a:hover,
.blog .posts-list .title a:hover,
.blog .sidebar .recent-posts h4 a:hover,
.featured-articles .article-item:hover h4 a,
.featured-services .service-item:hover h4 a,
.features .nav-link:hover,
.hero-animated .btn-watch-video:hover,
.hero-animated h2 span,
.hero-fullscreen .btn-watch-video:hover,
.hero-fullscreen h2 span,
.hero-static .btn-watch-video:hover,
.hero-static h2 span,
.services .service-item:hover .details .icon i,
.services .service-item:hover .details h3,
.services-2 .service-item-2:hover .details-2 .icon i,
.services-2 .service-item-2:hover .details-2 h3 {
    cursor: pointer;
    color: var(--color-primary)
}

.hero-animated p,
.hero-fullscreen p,
.hero-static p {
    color: rgba(var(--color-secondary-rgb), .8);
    margin: 0 0 30px;
    font-size: 20px;
    font-weight: 400
}

.hero-animated .animated {
    margin-bottom: 60px;
    animation: 2s ease-in-out infinite alternate-reverse both up-down
}

@media (min-width:992px) {

    body::-webkit-scrollbar {
        width: 6px
    }

    body::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px grey;
        border-radius: 10px
    }

    body::-webkit-scrollbar-thumb {
        background: var(--color-primary);
        border-radius: 10px
    }

    body::-webkit-scrollbar-thumb:hover {
        background: var(--color-primary-dark)
    }

    .hero-animated .animated {
        max-width: 45%
    }

    .testimonials .testimonial-item p {
        width: 80%
    }
}

@media (max-width:991px) {
    .hero-animated .animated {
        max-width: 60%
    }
}

.hero-animated .btn-get-started,
.hero-fullscreen .btn-get-started,
.hero-static .btn-get-started {
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: .5s;
    color: var(--color-white);
    background: var(--color-primary);
    font-family: var(--font-secondary)
}

.blog .posts-list .read-more a:hover,
.blog .sidebar .search-form form button:hover,
.hero-animated .btn-get-started:hover,
.hero-fullscreen .btn-get-started:hover,
.hero-static .btn-get-started:hover {
    background: rgba(var(--color-primary-rgb), .8)
}

.hero-animated .btn-watch-video,
.hero-fullscreen .btn-watch-video,
.hero-static .btn-watch-video {
    font-size: 16px;
    transition: .5s;
    margin-left: 25px;
    font-family: var(--font-secondary);
    color: var(--color-secondary);
    font-weight: 600
}

.about .nav-link,
.hero .btn-get-started {
    font-weight: 400;
    font-family: var(--font-secondary)
}

.hero-animated .btn-watch-video i,
.hero-fullscreen .btn-watch-video i,
.hero-static .btn-watch-video i {
    color: var(--color-primary);
    font-size: 32px;
    transition: .3s;
    line-height: 0;
    margin-right: 8px
}

.hero-animated .btn-watch-video:hover i,
.hero-fullscreen .btn-watch-video:hover i,
.hero-static .btn-watch-video:hover i {
    color: rgba(var(--color-primary-rgb), .8)
}

@keyframes up-down {
    0% {
        transform: translateY(10px)
    }

    100% {
        transform: translateY(-10px)
    }
}

.hero {
    width: 100%;
    padding: 0 0 60px;
    background: var(--color-black);
    background: url("../img/hero-bg.png") center center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.banner img {
    margin-top: 0;
    max-width: 100%;
    min-width: 100%;
    height: 100vh;
    border: 0 solid;
    box-shadow: 0 0 10px 0 #000
}

.hero .carousel-item,
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden
}

.hero h2 {
    color: var(--color-secondary);
    margin-bottom: 25px;
    font-size: 48px;
    font-weight: 300;
    animation: 1s .2s both fadeInDown;
    -webkit-animation: 1s .2s both fadeInDown
}

.hero p {
    color: var(--color-secondary-light);
    animation: 1s .4s both fadeInDown;
    font-weight: 500;
    margin-bottom: 30px
}

.hero .img {
    margin-bottom: 40px;
    animation: 1s both fadeInDownLite
}

.hero .btn-get-started {
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 5px;
    transition: .5s;
    animation: 1s .6s both fadeInUp;
    color: var(--color-primary);
    border: 2px solid var(--color-primary)
}

.hero .btn-get-started:hover {
    background: var(--color-primary);
    color: var(--color-white)
}

.hero .carousel-control-prev {
    justify-content: start
}

.hero .carousel-control-next {
    justify-content: end
}

@media (min-width:640px) {
    .hero .carousel-control-prev {
        padding-left: 15px
    }

    .hero .carousel-control-next {
        padding-right: 15px
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: 0 0;
    font-size: 26px;
    line-height: 0;
    background: rgba(var(--color-secondary-rgb), .4);
    color: rgba(var(--color-white-rgb), .98);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero .carousel-control-next-icon {
    padding-left: 3px
}

.hero .carousel-control-prev-icon {
    padding-right: 3px
}

.hero .carousel-control-next,
.hero .carousel-control-prev {
    transition: .3s
}

.hero .carousel-control-next:focus,
.hero .carousel-control-prev:focus {
    opacity: .5
}

.hero .carousel-control-next:hover,
.hero .carousel-control-prev:hover {
    opacity: .9
}

.hero .carousel-indicators li {
    cursor: pointer;
    background: rgba(var(--color-secondary-rgb), .5);
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: .6;
    transition: .3s
}

.hero .carousel-indicators li.active {
    opacity: 1;
    background: var(--color-primary)
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDownLite {
    from {
        opacity: 0;
        transform: translate3d(0, -10%, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.hero-fullscreen {
    width: 100%;
    min-height: 100vh;
    background: url("../img/hero-fullscreen-bg.jpg") center center/cover;
    position: relative;
    padding: 120px 0 60px
}

.hero-fullscreen:before {
    content: "";
    background: rgba(var(--color-white-rgb), .85);
    position: absolute;
    inset: 0
}

.about .about-img,
.cta .img,
.cta .img img {
    position: relative
}

@media (min-width:1365px) {
    .hero-fullscreen {
        background-attachment: fixed
    }
}

@media (max-width:640px) {

    .hero-animated h2,
    .hero-fullscreen h2,
    .hero-static h2 {
        font-size: 32px
    }

    .hero-animated p,
    .hero-fullscreen p,
    .hero-static p {
        font-size: 18px;
        margin-bottom: 30px
    }

    .hero-animated .btn-get-started,
    .hero-animated .btn-watch-video,
    .hero-fullscreen .btn-get-started,
    .hero-fullscreen .btn-watch-video,
    .hero-static .btn-get-started,
    .hero-static .btn-watch-video {
        font-size: 14px
    }

    .hero .container {
        padding: 0 60px
    }
}

.articles .img img {
    transition: .6s;
    width: 200px
}

.articles .details {
    display: flex;
    flex-direction: row;
    padding: 38px 30px;
    transition: .3s ease-in-out;
    background: var(--color-white);
    background: rgba(var(--color-white-rgb), .9);
    text-align: left;
    border-radius: 0 8px 8px 0;
    -webkit-border-radius: 0 8px 8px 0;
    -moz-border-radius: 0 8px 8px 0;
    -ms-border-radius: 0 8px 8px 0;
    -o-border-radius: 0 8px 8px 0
}

@media screen and (max-width:767px) {
    .articles .details {
        padding: 1px 30px;
        width: 100%;
        transition: .3s ease-in-out;
        background: var(--color-white);
        position: relative;
        background: rgba(var(--color-white-rgb), .9);
        text-align: left;
        border-radius: 0 8px 8px 0;
        -webkit-border-radius: 0 8px 8px 0;
        -moz-border-radius: 0 8px 8px 0;
        -ms-border-radius: 0 8px 8px 0;
        -o-border-radius: 0 8px 8px 0
    }

    .articles .img img {
        transition: .6s;
        width: 200px
    }
}

@media screen and (max-width:768px) {
    .banner img {
        margin-top: 0;
        max-width: 100%;
        min-width: 100%;
        height: auto;
        border: 0 solid;
        box-shadow: 0 0 10px 0 #000
    }

    [data-aos-delay] {
        transition-delay: 0 !important
    }

    .form-control {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        border: 2px solid var(--color-secondary-light);
        transition: .2s ease-in-out;
        -webkit-transition: .2s ease-in-out;
        -moz-transition: .2s ease-in-out;
        -ms-transition: .2s ease-in-out;
        -o-transition: .2s ease-in-out
    }

    .articles .details {
        padding: 1px 30px;
        transition: .3s ease-in-out;
        background: var(--color-white);
        position: relative;
        background: rgba(var(--color-white-rgb), .9);
        text-align: left;
        border-radius: 0 8px 8px 0;
        -webkit-border-radius: 0 8px 8px 0;
        -moz-border-radius: 0 8px 8px 0;
        -ms-border-radius: 0 8px 8px 0;
        -o-border-radius: 0 8px 8px 0
    }
}

@media screen and (max-width:991px) {
    .articles .details {
        padding: 26px 30px;
        transition: .3s ease-in-out;
        background: var(--color-white);
        position: relative;
        background: rgba(var(--color-white-rgb), .9);
        text-align: left;
        border-radius: 0 8px 8px 0;
        -webkit-border-radius: 0 8px 8px 0;
        -moz-border-radius: 0 8px 8px 0;
        -ms-border-radius: 0 8px 8px 0;
        -o-border-radius: 0 8px 8px 0
    }
}

.articles .details .icon,
.services .details .icon {
    margin: 0 0 20px;
    width: 120px;
    height: 72px;
    background: var(--color-primary);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 28px;
    transition: .3s ease-in-out;
    position: absolute;
    top: -36px;
    left: calc(50% - 60px);
    border: 6px solid var(--color-white)
}

.articles .details h3 {
    color: var(--color-default);
    text-align: left;
    justify-content: left;
    font-weight: 700;
    margin: 10px 10px 15px 30px;
    font-size: 22px;
    transition: .3s ease-in-out
}

.articles .details p {
    justify-content: left;
    line-height: 24px;
    margin: 10px 10px 0 30px;
    font-size: 14px
}

.articles .article-item:hover .details .icon,
.services .service-item:hover .details .icon,
.services-2 .service-item-2:hover .details-2 .icon {
    background: var(--color-white);
    border: 2px solid var(--color-primary)
}

.articles-title h3,
.services-title h3 {
    justify-content: left;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-primary)
}

.articles-title h2,
.services-title h2 {
    justify-content: left;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-secondary)
}

.featured-articles .article-item,
.featured-services .service-item {
    justify-content: center;
    align-items: center;
    padding: 30px;
    transition: .4s ease-in-out;
    background: var(--color-white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
    border: 0 solid;
    border-radius: 20px;
    height: 100%;
    width: 100%;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px
}

.about-services .about-item .icon,
.about-services-2 .about-item .icon,
.featured-articles .article-item .icon,
.featured-services .service-item .icon {
    margin-bottom: 10px;
    justify-content: center;
    align-items: center
}

.col-set,
.col-title,
.vis-section {
    justify-content: center;
    display: flex
}

.col-title,
.col-title-left {
    align-items: center;
    color: var(--color-links);
}

.about-services .about-item .icon i,
.about-services-2 .about-item .icon i,
.featured-articles .article-item .icon i,
.featured-services .service-item .icon i {
    color: var(--color-primary);
    font-size: 36px;
    transition: .3s
}



.about-services .about-item h4,
.about-services-2 .about-item h4,
.featured-articles .article-item h4,
.featured-services .service-item h4 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 24px
}

.about-services .about-item h4 a,
.about-services-2 .about-item h4 a,
.featured-articles .article-item h4 a,
.featured-services .service-item h4 a {
    color: var(--color-default);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}

.about-services .about-item p,
.about-services-2 .about-item p,
.featured-articles .article-item p,
.featured-services .service-item p,
.services-2 .details-2 p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0
}

.featured-articles .article-item:hover,
.featured-services .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 60px 0 rgba(var(--color-secondary-rgb), .1)
}

.articles .article-item:hover .img img {
    border-radius: 20px;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px
}

.col-title-left {
    display: flex;
    justify-content: center;
    margin: auto
}

.about-item-second,
.about-services .about-item,
.about-services-2 .about-item {
    padding: 30px;
    margin-bottom: 15%;
    transition: .4s ease-in-out;
    color: var(--color-white);
    height: 100%;
    width: 100%;
    -webkit-transition: .4s ease-in-out;
    -moz-transition: .4s ease-in-out;
    -ms-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out
}

.col-set,
.vis-section {
    align-items: center
}

.about-services .about-item,
.about-services-2 .about-item {
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    border-right: 1px solid
}

.about-services {
    box-shadow: 10px -10px 30px 0 rgba(var(--color-black-rgb), .1), 10px 10px 30px 0 rgba(var(--color-black-rgb), .1);
    background-color: var(--color-white)
}

.about-title h1,
h2,
h3,
h4,
h5 {
    display: flex;
    font-size: 40px;
    text-align: center;
    justify-content: center;
    font-weight: 700;
    align-items: center;
    color: var(--color-white)
}

.about .nav-link,
.about .tab-content h4,
.about h3 {
    color: var(--color-secondary)
}

.about-item-second {
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 26px;
    margin-top: 10%
}

@media screen and (min-width:1200px) and (max-width:1424px) {
    .about-item-second {
        justify-content: center;
        align-items: center;
        font-size: 13px;
        line-height: 26px;
        margin-top: 18%
    }
}

@media screen and (min-width:768px) and (max-width:976px) {
    .about-item-second {
        justify-content: center;
        align-items: center;
        font-size: 13px;
        line-height: 26px;
        margin-top: 13%
    }
}

.cta,
.onfocus,
.portfolio-details .portfolio-description p {
    padding: 0
}

.about .about-img {
    margin: 60px 0 0 60px
}

/* .about .about-img:before {
    position: absolute;
    inset: -60px 0 0 -60px;
    z-index: -1;
    content: "";
    background: url("../img/about-bg.png") top left no-repeat
} */

.about h3 {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 32px;
    margin-bottom: 20px
}

.about .nav-pills {
    border-bottom: 1px solid rgba(var(--color-secondary-rgb), .2)
}

.about .nav-pills li+li {
    margin-left: 40px
}

.about .nav-link {
    background: 0 0;
    font-size: 18px;
    padding: 12px 0;
    margin-bottom: -2px;
    border-radius: 0
}

.about .nav-link.active {
    color: var(--color-primary);
    background: 0 0;
    border-bottom: 3px solid var(--color-primary)
}

.about .tab-content h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 700
}

.about .tab-content p,
.blog .blog-details .meta-bottom .share {
    font-size: 16px
}

.about .tab-content i {
    font-size: 22px;
    line-height: 0;
    margin-right: 8px;
    color: var(--color-primary)
}

.vis-section img {
    position: absolute;
    left: 85%;
    top: 50%;
    right: 0;
    bottom: 0;
    max-width: 200px;
    max-height: 200px;
}

@media screen and (max-width: 1199px) {
    .vis-section img {
        position: absolute;
        left: 80%;
        top: 55%;
        right: 0;
        bottom: 0;
        max-width: 200px;
        max-height: 200px;
    }
}

@media screen and (max-width: 955px) {
    .vis-section img {
        position: absolute;
        left: 78%;
        top: 55%;
        right: 0;
        bottom: 0;
        max-width: 200px;
        max-height: 200px;
    }
}

@media screen and (max-width: 880px) {
    .vis-section img {
        position: absolute;
        left: 75%;
        top: 55%;
        right: 0;
        bottom: 0;
        max-width: 200px;
        max-height: 200px;
    }
}

@media screen and (max-width: 767px) {
    .vis-section img {
        position: absolute;
        left: 70%;
        top: 85%;
        right: 0;
        bottom: 0;
        max-width: 200px;
        max-height: 200px;
    }
}


@media screen and (max-width: 625px) {
    .vis-section img {
        position: absolute;
        left: 65%;
        top: 85%;
        right: 0;
        bottom: 0;
        max-width: 200px;
        max-height: 200px;
    }
}

@media screen and (max-width: 525px) {
    .vis-section img {
        position: absolute;
        left: 60%;
        top: 85%;
        right: 0;
        bottom: 0;
        max-width: 200px;
        max-height: 200px;
    }
}


.vis-section-2 img {
    position: absolute;
    left: 85%;
    top: 50%;
    right: 0;
    bottom: 0;
    max-width: 200px;
    max-height: 200px;
}

@media screen and (max-width: 1199px) {
    .vis-section-2 img {
        position: absolute;
        left: 80%;
        top: 55%;
        right: 0;
        bottom: 0;
        max-width: 200px;
        max-height: 200px;
    }
}

@media screen and (max-width: 955px) {
    .vis-section-2 img {
        position: absolute;
        left: 78%;
        top: 55%;
        right: 0;
        bottom: 0;
        max-width: 200px;
        max-height: 200px;
    }
}

@media screen and (max-width: 880px) {
    .vis-section-2 img {
        position: absolute;
        left: 75%;
        top: 55%;
        right: 0;
        bottom: 0;
        max-width: 200px;
        max-height: 200px;
    }
}

@media screen and (max-width: 767px) {
    .vis-section-2 img {
        position: absolute;
        left: 70%;
        top: 85%;
        right: 0;
        bottom: 0;
        max-width: 200px;
        max-height: 200px;
    }
}


@media screen and (max-width: 625px) {
    .vis-section-2 img {
        position: absolute;
        left: 65%;
        top: 85%;
        right: 0;
        bottom: 0;
        max-width: 200px;
        max-height: 200px;
    }
}

@media screen and (max-width: 525px) {
    .vis-section-2 img {
        position: absolute;
        left: 60%;
        top: 85%;
        right: 0;
        bottom: 0;
        max-width: 200px;
        max-height: 200px;
    }
}




.vis-section,
.vis-section-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to left bottom, #011b10, #041f14, #062417, #06291a, #062e1d);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 1));
    -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 1))
}

@media (max-width:575px) {
    .hero-animated .animated {
        max-width: 80%
    }

    .vis-section {
        border-radius: 0;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0;
        -ms-border-radius: 0px;
        -o-border-radius: 0
    }

    .about .nav-link {
        font-size: 16px
    }

    .about .about-img {
        margin: 30px 0 0 30px
    }

    .about .about-img:before {
        inset: -30px 0 0 -30px
    }
}

.cta .img:after,
.cta .img:before {
    inset: 0;
    position: absolute;
    content: ""
}

.cta {
    margin-bottom: 60px
}

.cta .container {
    padding: 80px;
    background: rgba(var(--color-secondary-rgb), .1);
    border-radius: 15px
}

@media (max-width:992px) {
    .breadcrumbs .d-flex {
        display: block !important
    }

    .breadcrumbs h2 {
        margin-bottom: 10px;
        font-size: 24px
    }

    .breadcrumbs ol {
        display: block
    }

    .breadcrumbs ol li {
        display: inline-block
    }

    .cta .container {
        padding: 60px
    }
}

.cta .content h3 {
    color: var(--color-gray);
    font-size: 48px;
    font-weight: 700
}

.cta .content h3 em {
    font-style: normal;
    position: relative
}

.cta .content h3 em:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    height: 10px;
    background: rgba(var(--color-primary-rgb), .5);
    z-index: -1
}

.cta .content p {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 18px
}

.cta .content .cta-btn {
    color: var(--color-white);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: .5s;
    margin-top: 10px;
    background: rgba(var(--color-primary-dark-rgb), .9)
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover,
.cta .content .cta-btn:hover {
    background: var(--color-primary)
}

.cta .img:before {
    background: rgba(var(--color-white-rgb), .5);
    border-radius: 15px;
    transform: rotate(12deg)
}

.cta .img:after {
    background: rgba(var(--color-white-rgb), .9);
    border-radius: 15px;
    transform: rotate(6deg)
}

.cta .img img {
    z-index: 3;
    border-radius: 15px
}

.onfocus .video-play {
    min-height: 400px;
    background: linear-gradient(rgba(var(--color-black-rgb), .4), rgba(var(--color-black-rgb), .7)), url("../img/home/thumbnail_youtube.png") center center;
    background-size: cover
}

.onfocus .content {
    background-color: var(--color-white);
    border: 1px solid var(--color-white);
    box-shadow: 10px 80px 30px 0 rgba(var(--color-black-rgb), .1);
    border-radius: 0 25px 0 0;
    background-size: cover;
    color: var(--color-gray);
    padding: 40px;
    -webkit-border-radius: 0 25px 0 0;
    -moz-border-radius: 0 25px 0 0;
    -ms-border-radius: 0 25px 0 0;
    -o-border-radius: 0 25px 0 0
}

@media (min-width:768px) {
    .onfocus .content {
        padding: 80px
    }
}

.onfocus .content h3 {
    font-weight: 600;
    font-size: 32px;
    color: var(--color-gray)
}

.blog .sidebar .categories ul,
.blog .sidebar .tags ul,
.features .tab-pane ul,
.onfocus .content ul {
    list-style: none;
    padding: 0
}

.features .tab-pane ul li,
.onfocus .content ul li {
    padding-bottom: 10px
}

.onfocus .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--color-primary)
}

.features .tab-pane p:last-child,
.onfocus .content p:last-child {
    margin-bottom: 0
}

.onfocus .content .read-more {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: .3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: var(--color-primary)
}

.onfocus .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.onfocus .content .read-more:hover {
    background: rgba(var(--color-primary-rgb), .9);
    padding-right: 19px
}

.onfocus .content .read-more:hover i {
    margin-left: 10px
}

.onfocus .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--color-primary) 50%, rgba(var(--color-primary-rgb), .4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden
}

.onfocus .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation: 2s infinite pulsate-btn;
    animation-direction: forwards;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(var(--color-primary-rgb), .7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0)
}

.onfocus .play-btn:after,
.onfocus .play-btn:hover:before {
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    position: absolute;
    content: ""
}

.onfocus .play-btn:after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--color-white);
    z-index: 100;
    transition: .4s cubic-bezier(.55, .055, .675, .19)
}

.onfocus .play-btn:hover:before {
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--color-white);
    z-index: 200;
    animation: none;
    border-radius: 0
}

.onfocus .play-btn:hover:after {
    border-left: 15px solid var(--color-primary);
    transform: scale(20)
}

@keyframes pulsate-btn {
    0% {
        transform: scale(.6, .6);
        opacity: 1
    }

    100% {
        transform: scale(1, 1);
        opacity: 0
    }
}

.features .nav-tabs {
    border: 0
}

.features .nav-link {
    border: 0;
    padding: 25px 20px;
    color: var(--color-secondary);
    box-shadow: 5px 5px 25px rgba(var(--color-secondary-rgb), .15);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: none;
    cursor: pointer;
    height: 100%
}

.services .details,
.services-2 .details-2 {
    position: relative;
    box-shadow: 0 0 25px rgba(var(--color-black-rgb), .1);
}

.features .nav-link i {
    font-size: 32px;
    line-height: 0
}

.features .nav-link h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0 0;
    color: var(--color-secondary);
}

.features .nav-link.active {
    transition: .3s;
    background: var(--color-secondary) linear-gradient(rgba(var(--color-primary-rgb), .95), rgba(var(--color-primary-rgb), .6));
    border-color: var(--color-primary);
}

.features .nav-link.active i {
    color: var(--color-white) !important;
}

.blog .comments,
.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane.active {
    animation: .5s ease-out fadeIn;
}

.features .tab-pane h3 {
    font-weight: 600;
    font-size: 36px;
    color: var(--color-secondary);
}

.features .tab-pane ul i {
    font-size: 24px;
    margin-right: 4px;
    color: var(--color-primary);
}

.jutify-text{
    text-align: justify; 
    text-justify: inter-word;
}

@keyframes fadeIn {

    0%,
    from {
        opacity: 0
    }

    100%,
    to {
        opacity: 1
    }
}

.services .img,
.services-2 .img,
.sub-services .img {
    border-radius: 8px;
    overflow: hidden
}

.services .img img {
    transition: .6s;
    margin-top: 50px
}

.services .details {
    padding: 50px 30px;
    margin: -100px 30px 0;
    transition: .3s ease-in-out;
    background: var(--color-white);
    background: rgba(var(--color-white-rgb), .9);
    text-align: left;
    border-radius: 8px
}

.services .details h3 {
    color: var(--color-default);
    text-align: left;
    justify-content: left;
    font-weight: 700;
    margin: 10px 0 15px;
    font-size: 22px;
    transition: .3s ease-in-out
}

.services .details p {
    justify-content: left;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0
}

.services-col {
    margin-top: 10%;
}

@media screen and (max-width: 768px) {
    .services-col {
    margin-top: 20%;
    }
}

.services .service-item:hover .img img,
.services-2 .service-item-2:hover .img img,
.sub-services .sub-service-item:hover .img img {
    transform: scale(1.2)
}

.services-2 .img img,
.sub-services .img img {
    transition: .6s
}

.services-2 .details-2 {
    padding: 60px 30px;
    margin: 0 30px 40px 0;
    width: 100%;
    transition: .3s ease-in-out;
    background: var(--color-white);
    background: rgba(var(--color-white-rgb), .9);
    text-align: center;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out
}

.services-2 .details-2 .icon {
    margin: 0 0 20px;
    width: 120px;
    height: 72px;
    background: var(--color-primary);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 28px;
    transition: .3s ease-in-out;
    position: absolute;
    top: -20px;
    left: calc(50% - 60px);
    border: 6px solid var(--color-white)
}

.services-2 .details-2 .icon-2 {
    width: 90px;
    height: 90px;
    background: var(--color-white);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 28px;
    transition: .3s ease-in-out;
    position: absolute;
    top: -50px;
    left: 41%;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, .8));
    border: 1px solid var(--color-primary);
    -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, .8));
}

.services-2 .details-2 h3 {
    color: var(--color-primary-light);
    font-weight: 700;
    margin: 10px 0 15px;
    font-size: 22px;
    transition: .3s ease-in-out
}

.services-2 .details-2 h5 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    margin: auto;
    color: var(--color-white);
    width: 30%;
    border-radius: 5px;
    background-color: var(--color-primary);
    font-weight: 700;
    font-size: 18px;
    position: relative;
    border: 1px solid var(--color-primary);
    top: 20px;
    transition: .3s ease-in-out;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px
}

.services-2 .service-item-2:hover .details-2 h5,
.sub-services .sub-service-item:hover .details-sub h5 {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out
}

.contact .map,
.testimonials .section-header {
    margin-bottom: 40px
}

.testimonial-item {
    border: 0 solid;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 1));
    background: #fff;
    background: linear-gradient(315deg, #fff 0, #c8c8c5 100%);
    background: -moz-linear-gradient(315deg, #fff 0, #c8c8c5 100%);
    background: -webkit-linear-gradient(315deg, #fff 0, #c8c8c5 100%);
    height: 250px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin-left: 10%;
    -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 1));
    -webkit-filter:
    progid: DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#C9C9C7", GradientType=1);
}

.testimonials .testimonial-item {
    text-align: left;
    margin: 10px 20px 5px 50px;
    color: var(--color-primary)
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    margin-top: 8%;
    margin-left: 5%
}

.testimonials .testimonial-item h3 {
    text-align: left;
    font-size: 140%;
    padding: 20px;
    justify-content: left;
    font-weight: 700;
    margin: 10px 0 5px;
    color: var(--color-links)
}

@media screen and (min-width:526px) and (max-width:655) {
    .testimonials .testimonial-item h3 {
        font-size: 120%
    }
}

@media screen and (max-width:768px) {

    .about-services .about-item,
    .about-services-2 .about-item {
        align-items: center;
        padding: 30px;
        margin-top: 6%;
        margin-bottom: 15%;
        margin-left: 5%;
        transition: .4s ease-in-out;
        color: var(--color-white);
        border-right: none;
        height: 100%;
        width: 90%;
    }

    .testimonials .testimonial-item h3 {
        font-size: 130%
    }
}

@media screen and (max-width:639px) {

    .about-services .about-item,
    .about-services-2 .about-item {
        align-items: center;
        padding: 30px;
        margin-top: 6%;
        margin-bottom: 15%;
        margin-left: 5%;
        transition: .4s ease-in-out;
        color: var(--color-white);
        border-right: none;
        height: 100%;
        width: 90%;
    }

}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: rgba(var(--color-gray-rgb), .6);
    margin: 0 0 15px
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px
}

.testimonials .testimonial-item .stars i {
    color: var(--color-yellow);
    margin: 0 1px
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px
}

.portfolio-details .portfolio-details-slider .swiper-pagination,
.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(var(--color-black-rgb), .4);
    opacity: .5
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    opacity: 1
}

.clients {
    padding: 0 0 60px
}

.clients .swiper-slide {
    transition-timing-function: linear
}

.clients .swiper-slide img {
    transition: .3s;
}

.contact .map iframe {
    border: 0;
    width: 100%;
    height: 400px
}

.contact .info {
    display: flex;
    flex-direction: column;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(var(--color-black-rgb), .1);
    background-color: #fff;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    -ms-border-radius: 20px 20px 0 0;
    -o-border-radius: 20px 20px 0 0
}

.contact .info h3 {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 31px
}

.contact .info a,
.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--color-secondary-light)
}

.contact .info p {
    color: var(--color-secondary-light);
    margin-bottom: 30px;
    font-size: 15px
}

.contact .info-item {
    padding-top: 20px;
    margin-top: 20px
}

.contact .info-item i {
    font-size: 24px;
    color: var(--color-primary);
    transition: .3s ease-in-out;
    margin-right: 20px
}

.contact .info-item h4 {
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-secondary)
}

.contact .php-email-form {
    padding: 30px;
    width: 100%;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .1);
    -webkit-border-radius: 0 0 20px 20px;
    -moz-border-radius: 0 0 20px 20px;
    -ms-border-radius: 0 0 20px 20px;
    -o-border-radius: 0 0 20px 20px
}

.contact .php-email-form .form-group {
    padding-bottom: 8px
}

.contact .php-email-form .error-message {
    display: none;
    color: var(--color-white);
    background: var(--color-red);
    text-align: left;
    padding: 15px;
    font-weight: 600
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px
}

.contact .php-email-form .sent-message {
    display: none;
    border-radius: 20px;
    color: var(--color-white);
    background: var(--color-green);
    text-align: center;
    padding: 15px;
    font-weight: 600;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px
}

.contact .php-email-form .loading {
    display: none;
    background: var(--color-white);
    text-align: center;
    padding: 15px
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--color-green);
    border-top-color: var(--color-white);
    animation: 1s linear infinite animate-loading
}

.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel],
.contact .php-email-form input[type=text],
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px
}

.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=tel]:focus,
.contact .php-email-form input[type=text]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--color-primary)
}

.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel],
.contact .php-email-form input[type=text] {
    height: 50px;
    padding: 10px 15px;
    border-top: none;
    border-right: none;
    border-left: none
}

.contact .php-email-form textarea {
    padding: 10px 12px;
    height: 100px;
    border-top: none;
    border-right: none;
    border-left: none
}

.blog .posts-list article,
.quotes {
    height: 100%
}

.contact .php-email-form button[type=submit] {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 0;
    padding: 10px 20px;
    color: var(--color-white);
    transition: .4s;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px
}

.contact .php-email-form button[type=submit]:hover {
    background: rgba(var(--color-white-rgb), .85);
    color: var(--color-primary);
    border-color: var(--color-primary)
}

@keyframes animate-loading {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.portfolio-details {
    padding-top: 40px
}

.portfolio-details .portfolio-details-slider img {
    width: 100%
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--color-white);
    opacity: 1;
    border: 1px solid var(--color-primary)
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary)
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0 0 30px rgba(var(--color-secondary-rgb), .15)
}

.blog .comments .reply-form,
.blog .post-author {
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), .1)
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-secondary-light)
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px
}

.blog .blog-details,
.blog .posts-list article,
.blog .sidebar {
    padding: 30px;
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), .1)
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px
}

.portfolio-details .portfolio-description {
    padding-top: 30px
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px
}

.blog .posts-list article+article {
    margin-top: 60px
}

.blog .posts-list .post-img {
    max-height: 240px;
    margin: -30px -30px 0;
    overflow: hidden
}

.blog .posts-list .title {
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0
}

.blog .posts-list .title a,
.blog .sidebar .categories ul a,
.blog .sidebar .recent-posts h4 a {
    color: var(--color-secondary);
    transition: .3s
}

.blog .blog-details .meta-top,
.blog .posts-list .meta-top {
    margin-top: 20px;
    color: var(--color-gray)
}

.blog .blog-details .meta-top ul,
.blog .posts-list .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0
}

.blog .blog-details .meta-top ul li+li,
.blog .posts-list .meta-top ul li+li {
    padding-left: 20px
}

.blog .blog-details .meta-top i,
.blog .posts-list .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: rgba(var(--color-primary-rgb), .8)
}

.blog .blog-details .meta-top a,
.blog .posts-list .meta-top a {
    color: var(--color-gray);
    font-size: 14px;
    display: inline-block;
    line-height: 1
}

.blog .blog-details .content,
.blog .posts-list .content {
    margin-top: 20px
}

.blog .posts-list .read-more a {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 30px;
    transition: .3s;
    font-size: 14px;
    border-radius: 4px
}

.blog .blog-details .post-img {
    margin: -30px -30px 20px;
    overflow: hidden
}

.blog .blog-details .title {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0;
    color: var(--color-secondary)
}

.blog .blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: 700
}

.blog .blog-details .content blockquote {
    overflow: hidden;
    background-color: rgba(var(--color-secondary-rgb), .06);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0
}

.blog .blog-details .content blockquote p {
    color: var(--color-default);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px
}

.blog .blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--color-secondary);
    margin-top: 20px;
    margin-bottom: 20px
}

.blog .blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid rgba(var(--color-secondary-rgb), .15)
}

.blog .blog-details .meta-bottom i {
    color: var(--color-secondary-light);
    display: inline
}

.blog .blog-details .meta-bottom a {
    color: rgba(var(--color-secondary-rgb), .8);
    transition: .3s
}

.blog .blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px
}

.blog .blog-details .meta-bottom .cats li,
.blog .blog-details .meta-bottom .tags li,
.blog .sidebar .tags ul li {
    display: inline-block
}

.blog .blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px
}

.blog .blog-details .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: var(--color-default);
    content: ","
}

.blog .blog-details .meta-bottom .share i {
    padding-left: 5px
}

.blog .post-author {
    padding: 20px;
    margin-top: 30px
}

.blog .post-author img {
    max-width: 120px;
    margin-right: 20px
}

.blog .post-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0;
    padding: 0;
    color: var(--color-secondary)
}

.blog .post-author .social-links {
    margin: 0 10px 10px 0
}

.blog .post-author .social-links a {
    color: rgba(var(--color-secondary-rgb), .5);
    margin-right: 5px
}

.blog .post-author p {
    font-style: italic;
    color: rgba(var(--color-gray-rgb), .8);
    margin-bottom: 0
}

.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0;
    color: var(--color-secondary)
}

.blog .sidebar .sidebar-item+.sidebar-item {
    margin-top: 40px
}

.blog .sidebar .search-form form {
    background: var(--color-white);
    border: 1px solid rgba(var(--color-secondary-rgb), .3);
    padding: 3px 10px;
    position: relative
}

.blog .sidebar .search-form form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px)
}

.blog .sidebar .search-form form input[type=text]:focus {
    outline: 0
}

.blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: 0 0;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: var(--color-primary);
    color: var(--color-white);
    transition: .3s;
    border-radius: 0 4px 4px 0;
    line-height: 0
}

.blog .sidebar .search-form form button i {
    line-height: 0
}

.blog .sidebar .categories ul li+li {
    padding-top: 10px
}

.blog .sidebar .categories ul a:hover {
    color: var(--color-default)
}

.blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: rgba(var(--color-default-rgb), .4);
    font-size: 14px
}

.blog .sidebar .recent-posts .post-item {
    display: flex
}

.blog .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px
}

.blog .sidebar .recent-posts img {
    width: 80px;
    margin-right: 15px
}

.blog .sidebar .recent-posts h4 {
    font-size: 18px;
    font-weight: 400
}

.blog .sidebar .recent-posts time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: rgba(var(--color-default-rgb), .4)
}

.blog .sidebar .tags {
    margin-bottom: -10px
}

.blog .sidebar .tags ul a {
    color: var(--color-secondary-light);
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid rgba(var(--color-secondary-light-rgb), .8);
    display: inline-block;
    transition: .3s
}

.blog .sidebar .tags ul a:hover {
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    background: var(--color-primary)
}

.blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: rgba(var(--color-secondary-light-rgb), .8);
    font-size: 14px
}

.blog .comments .comments-count {
    font-weight: 700
}

.blog .comments .comment {
    margin-top: 30px;
    position: relative
}

.blog .comments .comment .comment-img {
    margin-right: 14px
}

.blog .comments .comment .comment-img img {
    width: 60px
}

.blog .comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px
}

.blog .comments .comment h5 a {
    font-weight: 700;
    color: var(--color-default);
    transition: .3s
}

.blog .comments .comment h5 .reply {
    padding-left: 10px;
    color: var(--color-secondary)
}

.blog .comments .comment h5 .reply i {
    font-size: 20px
}

.blog .comments .comment time {
    display: block;
    font-size: 14px;
    color: rgba(var(--color-secondary-rgb), .8);
    margin-bottom: 5px
}

.blog .comments .comment.comment-reply {
    padding-left: 40px
}

.blog .comments .reply-form {
    margin-top: 30px;
    padding: 30px
}

.blog .comments .reply-form h4 {
    font-weight: 700;
    font-size: 22px
}

.blog .comments .reply-form p {
    font-size: 14px
}

.blog .comments .reply-form input,
.blog .comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px;
    font-size: 14px
}

.blog .comments .reply-form input:focus,
.blog .comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: rgba(var(--color-primary-rgb), .8)
}

.blog .comments .reply-form .form-group {
    margin-bottom: 25px
}

.blog .comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: var(--color-secondary)
}

.blog .comments .reply-form .btn-primary:hover {
    background-color: rgba(var(--color-secondary-rgb), .8)
}

.blog .blog-pagination {
    margin-top: 30px;
    color: var(--color-secondary-light)
}

.blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none
}

.blog .blog-pagination li {
    margin: 0 5px;
    transition: .3s
}

.blog .blog-pagination li a {
    color: var(--color-secondary);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer {
    color: var(--color-white);
    font-size: 14px
}

.footer .footer-content {
    background: var(--color-primary);
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 1));
    border-radius: 20px 20px 0 0;
    padding: 10px 0 30px;
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    -ms-border-radius: 20px 20px 0 0;
    -o-border-radius: 20px 20px 0 0;
    -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 1))
}

.footer-content h5 {
    font-size: 20px;
    text-align: left
}

.footer .footer-content .footer-info,
.footer .footer-content .footer-links {
    margin-bottom: 30px
}

.footer .footer-content .footer-info img {
    width: 50%;
    margin: 0 0 5px;
    padding: 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase
}

.footer .footer-content .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: var(--font-primary);
    color: var(--color-white)
}

.footer .footer-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px
}

.footer .footer-content h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-primary);
    bottom: 0;
    left: 0
}

.footer .footer-content .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer .footer-content .footer-links ul i {
    padding-right: 2px;
    color: var(--color-white);
    font-size: 12px;
    line-height: 1
}

.footer .footer-content .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center
}

.footer .footer-content .footer-links ul li:first-child {
    padding-top: 0
}

.footer .footer-content .footer-links ul a {
    color: rgba(var(--color-white-rgb), .7);
    transition: .3s;
    display: inline-block;
    line-height: 1
}

.footer .footer-content .footer-newsletter form {
    margin-top: 30px;
    background: var(--color-white);
    padding: 6px 10px;
    position: relative;
    border-radius: 4px
}

.footer .footer-content .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px)
}

.footer .footer-content .footer-newsletter form input[type=email]:focus-visible {
    outline: 0
}

.footer .footer-content .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: 0 0;
    font-size: 16px;
    padding: 0 20px;
    background: var(--color-primary);
    color: var(--color-white);
    transition: .3s;
    border-radius: 0 4px 4px 0
}

.footer .footer-legal {
    padding: 30px 0;
    background: var(--color-secondary-dark)
}

.footer .footer-legal .credits {
    padding-top: 4px;
    font-size: 13px;
    color: var(--color-white)
}

.footer .footer-legal .credits a,
.quotes-name i {
    color: var(--color-primary-light)
}

.footer .footer-legal .social-links a {
    font-size: 18px;
    display: inline-block;
    background: rgba(var(--color-white-rgb), .1);
    color: var(--color-white);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: .3s
}

.footer .footer-legal .social-links a:hover {
    background: var(--color-primary);
    text-decoration: none
}

.social-icons3 a {
    color: var(--font-secondary);
    font-size: 24px;
    padding: 2px;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out
}

.social-icons3 a:hover {
    color: var(--color-gray)
}

.quotes {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    margin-top: 5%;
    margin-bottom: 15%;
    transition: .4s ease-in-out;
    width: 100%;
    -webkit-transition: .4s ease-in-out;
    -moz-transition: .4s ease-in-out;
    -ms-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out
}

.quotes-name h3 {
    font-size: 22px;
    color: var(--color-primary)
}

.quotes-name h4 {
    font-size: 18px;
    color: var(--color-primary-light)
}

.quotes p {
    text-align: center;
    color: var(--color-gray);
    font-size: 30px
}

.sub-services h3 {
    font-size: 180%;
    text-align: left;
    justify-content: left;
    color: var(--color-primary)
}

.sub-services h5 {
    font-weight: 300;
    font-size: 100%;
    text-align: left;
    justify-content: left;
    color: var(--color-gray)
}

.sub-services .details-sub h3,
.sub-title,
.sub-title h2 {
    text-align: center;
    color: var(--color-primary);
    font-weight: 700
}

.sub-div {
    border-radius: 21px;
    -webkit-border-radius: 21px;
    -moz-border-radius: 21px;
    -ms-border-radius: 21px;
    -o-border-radius: 21px
}

.sub-title {
    font-size: 120%;
    padding-bottom: 40px
}

.sub-title h2 {
    font-size: 140%;
    padding-bottom: 40px
}

.sub-title h3 {
    color: var(--color-white);
    text-align: left;
    font-size: 80%;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 1));
    -webkit-filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 1))
}

.sub-services .details-sub {
    padding: 60px 30px;
    margin: 0 30px 40px 0;
    width: 100%;
    transition: .3s ease-in-out;
    position: relative;
    background: var(--color-white);
    text-align: center;
    border-radius: 20px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 1));
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out
}

.sub-services .details-sub h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transition: .3s ease-in-out
}

.sub-services .details-sub p {
    line-height: 24px;
    font-size: 12px;
    margin-bottom: 0
}

.sub-services .sub-service-item:hover .details-sub h3 {
    color: var(--color-white);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 1))
}

.map-embed {
    width: 100%;
    height: 600px
}

@media (max-width:768px) {
    .hero h2 {
        font-size: 30px
    }

    .header {
        padding: 20px 0;
        transition: .5s;
        z-index: 997;
        background: var(--color-white);
        box-shadow: 0 2px 20px rgba(var(--color-secondary-rgb), .1)
    }

    .header .logo img {
        max-height: 100px;
        margin-right: 0;
        margin-top: -20%;
        margin-left: 40%
    }

    .about h3 {
        font-size: 28px
    }

    .map-embed {
        width: 100%;
        height: 400px
    }
}

@media screen and (max-width: 768px) {
    body::-webkit-scrollbar {
        width: 6px
    }

    body::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px grey;
        border-radius: 10px
    }

    body::-webkit-scrollbar-thumb {
        background: var(--color-primary);
        border-radius: 10px
    }

    body::-webkit-scrollbar-thumb:hover {
        background: var(--color-primary-dark)
    }
}