﻿@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Barlow",sans-serif;
}

.container {
    width: 80%;
    margin: 2rem auto;
}

.main-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*width: 100vw;*/
    padding: 0 10vw;
    color: #fff;
    z-index: 1;
    transition: 0.4s ease-out;
    background: #241661;
    z-index: 10;
}

.main-header a {
    text-decoration: none;
    color: inherit;
    text-transform: uppercase;
}

.main-header .nav-links {
    display: flex;
    list-style: none;
    margin-bottom: 0px;
}

.main-header .nav-links .nav-link a {
    margin: 0.2rem;
    padding: 1rem 0.5rem;
}

.main-header .nav-links .nav-link a:hover {
    color:#3abad5 ;
}
.main-header .nav-links .link-button a:hover {
    color: #241661;
}

.main-header .menu-icon {
    position: relative;
    padding: 26px 10px;
    cursor: pointer;
    z-index: 1;
    display: none;
    text-decoration:none;
}

.main-header .menu-icon__line {
    display: block;
    position: relative;
    background: #2dadc9;
    height: 2px;
    width: 20px;
    border-radius: 4px;
}

.main-header .menu-icon__line::before, .main-header .menu-icon__line::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    background: #2dadc9;
    transition: background 0.8s ease;
}

.main-header .menu-icon__line::before {
    transform: translateY(-5px);
}

.main-header .menu-icon__line::after {
    transform: translateY(5px);
}

.main-header .menu-btn {
    display: none;
}

.main-header.scrolled {
    height: 50px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
}

.main-header.scrolled .menu-icon__line, .main-header.scrolled .menu-icon__line::before, .main-header.scrolled .menu-icon__line::after {
    background: white;
}

@media screen and (max-width: 1200px) {
    .main-header .menu-icon {
        display: block;
    }
    .tracking-abs {
        position: relative !important;
    }

    .main-header .menu-icon__line {
        animation: closedMid 0.8s backwards;
        animation-direction: reverse;
    }

        .main-header .menu-icon__line::before {
            animation: closedTop 0.8s backwards;
            animation-direction: reverse;
        }

        .main-header .menu-icon__line::after {
            animation: closedBtm 0.8s backwards;
            animation-direction: reverse;
        }

    .main-header .nav-links {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        padding: 10rem 0;
        width: 100vw;
        /*height: 100vh;*/
        font-size: 2rem;
        color: #fff;
        background: #241661;
        transition: opacity 0.8s 0.5s, clip-path 1s 0.5s;
        clip-path: circle(200px at top right);
    }

        .main-header .nav-links .nav-link {
            opacity: 0;
            transform: translateX(100%);
            width: 100%;
            text-align: center;
            display: none;
        }

            .main-header .nav-links .nav-link a {
                display: block;
                /*padding: 2rem 0;*/
            }

    .main-header .menu-btn:checked ~ .nav-links {
        opacity: 1;
        clip-path: circle(100% at center);
    }

    .main-header .menu-btn:checked ~ .nav-links .nav-link {
        opacity: 1;
        transform: translateX(0);
        transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.085, 0.32, 1.275);
        display: block;
    }

    .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(1) {
        transition-delay: 0.7s;
    }

    .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(2) {
        transition-delay: 0.8s;
    }

    .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(3) {
        transition-delay: 0.9s;
    }

    .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(4) {
        transition-delay: 1s;
    }

    .main-header .menu-btn:checked ~ .menu-icon {
        border-radius: 50%;
        animation: pulse 1s;
    }

        .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line {
            background: #fff;
            animation: openMid 0.8s forwards;
        }

            .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::before {
                background: white;
                animation: openTop 0.8s forwards;
            }

            .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::after {
                background: white;
                animation: openBtm 0.8s forwards;
            }

    .main-header > .nav-links .link-menu > a:before {
        content: "";
        left: 33%;
    }
}

@keyframes pulse {
    from {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.6);
    }

    to {
        box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0);
        background: rgba(255, 255, 255, 0);
    }
}

@keyframes openTop {
    0% {
        transform: translateY(-5px) rotate(0deg);
    }

    50% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(0px) rotate(90deg);
    }
}

@keyframes closedTop {
    0% {
        transform: translateY(-5px) rotate(0deg);
    }

    50% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(0px) rotate(90deg);
    }
}

@keyframes openMid {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@keyframes closedMid {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@keyframes openBtm {
    0% {
        transform: translateY(5px) rotate(0deg);
    }

    50% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(0px) rotate(90deg);
    }
}

@keyframes closedBtm {
    0% {
        transform: translateY(5px) rotate(0deg);
    }

    50% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(0px) rotate(90deg);
    }
}

header .logo img {
    height: 80px;
}

.link-button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-size: 14px;
    line-height: 2em;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    outline: 0;
    transition: color .2s ease-out,background-color .2s ease-out,border-color .2s ease-out;
    padding: 12px 32px;
    background-color: #3abad5;
    border: none;
    cursor: pointer;
    color: #fff;
}

.link-menu {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-size: 14px;
    line-height: 2em;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    outline: 0;
    transition: color .2s ease-out,background-color .2s ease-out,border-color .2s ease-out;
    padding: 12px 30px 12px 0px;
    border: none;
    cursor: pointer;
    color: #fff;
}

    .link-menu > a:before {
        content: "";
        width: 4px;
        height: 0;
        background-color: #3abad5;
        opacity: 1;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        transition: all .5s ease-in;
        -moz-transition: all .5s ease-in;
        -ms-transition: all .5s ease-in;
        -o-transition: all .5s ease-in;
        -webkit-transition: all .5s ease-in;
    }

.current-menu-ancestor > a:before {
    opacity: 1;
    height: 20px;
}

/*slider css start from here*/

.hero-text {
    overflow: hidden;
}

    .hero-text h2 {
        margin-bottom: 50px;
    }

    .hero-text .hero {
        position: relative;
    }

        .hero-text .hero .hero-slide a:hover span {
            color: #033a71;
        }

.hero .hero-slide img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    object-position: top center;
}

.hero .hero-slide .header-content {
    top: 20%;
    margin-left: 8rem;
    max-width: 650px;
    width: 100%;
    padding: 2rem;
}

.slide-content {
    padding: 10px 20px 10px 0;
}

    .slide-content .h1 {
        font-size: 62px;
    }

.btn-primary {
    background-color: #5302FE;
    border: #111;
    border-radius: 0;
}

/** Text Animation **/

@-webkit-keyframes fadeInUpSD {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpSD {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUpSD {
    -webkit-animation-name: fadeInUpSD;
    animation-name: fadeInUpSD;
}

.slick-active .slide-content {
    animation-name: fadeInUpSD;
    animation-duration: 1s;
    opacity: 1;
    width: 100%;
    padding: 10px 20px 30px 0;
}

/* Text Animation End **/

.slick-dots {
    position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }

.slick-active button {
    background: #3abad5;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    border-radius: 50%;
    border: 0;
    outline: none;
}

    .slick-dots li button::before {
        font-size: 18px;
        color: #fff;
        opacity: 1;
    }


/* Media Queries */

@media (max-width: 768px) {
    .hero-text .hero .hero-slide a {
        padding-top: 0.8rem;
    }

        .hero-text .hero .hero-slide a span {
            font-size: 20px;
            margin-top: 0.5rem;
        }

    .hero .hero-slide .header-content {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        margin: 0 auto;
    }
}

.slide-head-text {
    z-index: 4;
    font-family: Barlow;
    height: auto;
    width: auto;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: normal;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    text-align: left;
    line-height: 120px;
    letter-spacing: 3px;
    font-weight: 400;
    font-size: 100px;
    transform-origin: 50% 50%;
    opacity: 1;
    transform: translate(0px, 0px);
    visibility: visible;
}

.slide-head-text-p {
    z-index: 5;
    font-family: Barlow;
    height: auto;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: normal;
    width: 100%;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    text-align: left;
    line-height: 28px;
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 16px;
    transform-origin: 50% 50%;
    opacity: 1;
    transform: translate(0px, 0px);
    visibility: visible;
}

.track-prod {
    background-color: #fefefe;
    border-radius: 3px;
    /*margin-top: -100px;*/
    padding: 20px 35px;
    box-shadow: 0 5px 53px -7px rgb(0 0 0 / 20%);
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

.title-1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #222222;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-right: 25px;
    vertical-align: middle;
}

.track-prod:before {
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    top: 38px;
    width: 20px;
    background-color: #3abad5;
}

.theme-container {
    padding-left: 0;
    padding-right: 0;
    margin-top: -100px;
}



.clrbg-before {
    position: relative;
    margin: auto;
    padding: 43px !important;
}

    .clrbg-before:before {
        content: "";
    }

.box-shadow {
    box-shadow: 0 3px 20px -6px #00000033;
    height: 54px !important;
}

.font-light {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 1px;
    color: #00000091;
    font-weight: 400;
}

/*footer css start from here */

footer {
    display: inline-block;
    width: 100%;
    float: left;
    background: #241661;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

    footer .copyright-footer {
        padding: 0 15px;
        text-align: center;
        border-top: 1px solid gray;
    }

    footer .footer-top {
        /*padding: 80px 16px;*/
    }

    footer .widget .footer-title {
        color: #00bcd4;
        margin-bottom: 24px;
        position: relative;
        padding-left: 16px;
        font-family: "Barlow",sans-serif;
    }

        footer .widget .footer-title:before {
            content: "";
            width: 4px;
            height: 20px;
            background-color: #3abad5;
            position: absolute;
            top: 6px;
            left: 0;
            transition: all .5s ease-in;
            -moz-transition: all .5s ease-in;
            -ms-transition: all .5s ease-in;
            -o-transition: all .5s ease-in;
            -webkit-transition: all ease-in .5s;
        }

    footer .widget {
        background: transparent;
        border: none;
        padding: 0;
    }

        footer .widget ul li {
            border: none;
            border: none;
            padding: 0.5em 0;
            margin-bottom: 0;
        }

            footer .widget ul li a::before {
                position: absolute;
                content: "\f101";
                color: red;
                top: 2px;
                font-size: 16px;
                left: 0;
                font-family: FontAwesome;
                line-height: normal;
                transition: all 0.5s ease-in-out;
                -moz-transition: all 0.5s ease-in-out;
                -ms-transition: all 0.5s ease-in-out;
                -o-transition: all 0.5s ease-in-out;
                -webkit-transition: all 0.5s ease-in-out;
                display: none;
            }

            footer .widget ul li a {
                padding-left: 0;
            }

        footer .widget ul.wp-tag-cloud li {
            padding: 0;
            margin: 5px 5px 5px 0;
        }

        footer .widget ul li a.rsswidget {
            padding-left: 0;
            font-size: 18px;
            color: #fff;
            font-weight: 500;
        }

        footer .widget .rss-date {
            color: var(--color-theme-primary);
        }

        footer .widget ul.menu li a,
        footer .widget ul li a {
            border: none;
            position: relative;
            color: #ffffff;
            font-family: "Barlow",sans-serif;
        }

            footer .widget ul.menu li a:hover,
            .site.php_prefix footer .iq-link-style .widget ul.menu li a:hover::after {
                color: var(--color-theme-primary);
            }

            footer .widget ul.menu li a::before {
                position: absolute;
                content: "\f101";
                color: red;
                top: 14px;
                font-size: 16px;
                left: 0;
                font-family: FontAwesome;
                line-height: normal;
                transition: all 0.5s ease-in-out;
                -moz-transition: all 0.5s ease-in-out;
                -ms-transition: all 0.5s ease-in-out;
                -o-transition: all 0.5s ease-in-out;
                -webkit-transition: all 0.5s ease-in-out;
            }

            footer .widget ul li a::before {
                position: absolute;
                content: "\f101";
                color: var(--color-theme-primary);
                top: 2px;
                font-size: 16px;
                left: 0;
                font-family: FontAwesome;
                line-height: normal;
                transition: all 0.5s ease-in-out;
                -moz-transition: all 0.5s ease-in-out;
                -ms-transition: all 0.5s ease-in-out;
                -o-transition: all 0.5s ease-in-out;
                -webkit-transition: all 0.5s ease-in-out;
            }

            footer .widget ul.menu li a:hover::before {
                color: white;
            }

        footer .widget .contact li a::before {
            display: none;
        }

        footer .widget.widget_nav_menu ul li a::before,
        footer .widget ul.menu li a::before {
            top: 14px;
        }

        footer .widget.widget_nav_menu ul li a {
            padding: 7px 0 7px 15px;
        }

        footer .widget ul.menu li .sub-menu {
            padding-left: 10px;
        }

    footer .mc4wp-form button {
        font-size: 0;
        position: absolute;
        right: 0;
        top: 0px;
        background: transparent;
        border: 0;
        padding: 0;
        width: 55px;
        height: 60px;
        cursor: pointer;
        margin: 0;
        background: var(--color-theme-primary);
    }

        footer .mc4wp-form button svg {
            color: var(--color-theme-white);
            font-size: var(--global-font-size);
        }

    footer .footer-mail {
        position: relative;
    }

        footer .footer-mail input::placeholder {
            text-transform: uppercase;
            letter-spacing: var(--letter-spacing);
            font-size: var(--font-size-normal);
            font-weight: var(--font-weight-semi-bold);
        }

#sidebar-scrollbar .footer-logo img {
    height: 80px;
}

footer .footer-logo img {
    height: 80px;
}

#sidebar-scrollbar .widget ul li {
    border: none;
}

#sidebar-scrollbar .footer-title.contact-info {
    color: var(--color-theme-white);
    position: relative;
    display: inline-block;
    padding-right: 14px;
}

.site.php_prefix footer .copyright-footer .container {
    padding: 0;
}

.site.php_prefix footer .footer-title {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-right: 14px;
}

.site.php_prefix footer .mc4wp-form-fields {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}


.site.php_prefix .footer-title:after, #sidebar-scrollbar .footer-title:after {
    content: "";
    width: 6px;
    height: 7px;
    position: absolute;
    right: 0;
    bottom: 8px;
    background: var(--color-theme-secondary);
}

footer .footer-standard .design-widget:before {
    content: "";
    background: var(--color-theme-secondary);
    width: 5px;
    height: 25%;
    position: absolute;
    left: 0;
    top: 0;
}

footer .footer-standard .design-widget:after {
    content: "";
    background: var(--color-theme-secondary);
    width: 80%;
    height: 5px;
    position: absolute;
    left: 0;
    top: 0;
}

footer .copyright {
    font-size: var(--font-size-normal);
    font-family: "Barlow",sans-serif;
    color: #fff;
    font-weight: 500;
}

    footer .copyright a {
        color: #fff;
    }

.widget.con-widget {
    margin-bottom: 24px;
}


footer .mighty-contact li span {
    display: block;
    color: #3abad5;
    font-family: "Barlow",sans-serif;
}

footer .mighty-contact li a span {
    display: block;
    color: #fff;
    font-family: "Barlow",sans-serif;
}

footer .widget ul.mighty-contact li {
    padding: 0;
    margin-bottom: 16px;
}

    footer .widget ul.mighty-contact li:last-child {
        margin-bottom: 0;
    }
/* copy footer css */
.copyright-footer #menu-footer-menu {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer .copyright-footer #menu-footer-menu li {
    display: inline-block;
    padding: 0 10px;
}

    .footer .copyright-footer #menu-footer-menu li a {
        font-size: var(--font-size-body);
        font-family: "Barlow",sans-serif;
        color: #fff;
    }

        .footer .copyright-footer #menu-footer-menu li a:hover {
            color: red;
        }

.menu-footer-menu-container ul.menu li:before {
    content: "";
    background: #f8bf02;
    background: #00bcd4;
    width: 6px;
    height: 6px;
    position: absolute;
    left: 12px;
    margin-top: 12px;
    transform: translateY(-50%);
    border-radius: 50%;
}

.menu-footer-menu-container ul.menu li:hover {
    color: #00bcd4;
    list-style:none;
        text-decoration: none;
}

    .f-logo-center {
        display: flex;
        justify-content: center;
        align-items: center;
    }

/*contact us page */


.services-wrapper {
    width: auto;
    min-height: 400px;
    padding: 25px;
}

.service-container {
    text-align: center;
    margin-top: 25px;
}

.singleservice {
    display: inline-block;
    width: 25%;
    height: 100%;
    background-color: #ffffff;
    padding: 25px;
    color: #b2b2b2;
    font-family: avenir;
    /*text-align: left;*/
    margin-bottom: 15px;
    padding: 40px;
    margin-left: 5px;
    margin-right: 5px;
    border-bottom: 5px solid #3abad5;
    border-radius: 10px;
    box-shadow: 0px 0px 9px 0px grey;
    font-family: barlow, sans-serif;
}

.singleserviceb {
    font-family: barlow, sans-serif;
    display: inline-block;
    width: 25%;
    height: 100%;
    background-color: #f3f3f3;
    padding: 25px;
    color: #b2b2b2;
    font-family: avenir;
    /*text-align: left;*/
    margin-bottom: 15px;
    padding: 40px;
    margin-left: 5px;
    margin-right: 5px;
    border-bottom: 5px solid #241661;
    border-radius: 10px;
    box-shadow: 0px 0px 9px 0px grey;
}

@media (max-width:500px) {
    .singleservice, .singleserviceb {
        width: 100%;
    }
}

h2.servicetitle {
    font-family: barlow, sans-serif;
    font-size: 16pt;
    font-weight: normal;
    letter-spacing: 1px;
    padding-bottom: 0px;
    text-align: center;
    text-transform: uppercase;
    color: #8c8c8c;
}

img.serviceicon {
    width: 20%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 15px;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    opacity: .5;
}

.top-head {
    background-color: #3abad5;
}

.curve {
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 3rem 2rem;
    width: 100%;
    z-index: 2;
    font-family: 'Barlow';
}

    .curve::before {
        content: '';
        display: block;
        background: radial-gradient(ellipse at center, #241661 25%, #241661 100%);
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        border-radius: 150vw;
        width: 300vw;
        height: 300vw;
        z-index: -1;
    }

.more {
    background-color: #3abad5;
    padding: 1rem 2rem;
    text-align: center;
}




.textcenter {
    text-align: center;
}

.section1 {
    text-align: center;
    display: table;
    width: 100%;
}





.section2 .col2 {
    width: 48.71%;
}

    .section2 .col2.first {
        float: left;
    }

    .section2 .col2.last {
        float: right;
    }

    .section2 .col2.column2 {
        padding: 0 30px;
    }

.section2 span.collig {
    color: #a2a2a2;
    margin-right: 10px;
    display: inline-block;
}

.section2 .sec2contactform input[type="text"],
.section2 .sec2contactform input[type="email"],
.section2 .sec2contactform textarea {
    padding: 18px;
    border: 0;
    background: #EDEDED;
    margin: 7px 0;
}

.section2 .sec2contactform textarea {
    width: 100%;
    display: block;
    color: #666;
    resize: none;
}

.section2 .sec2contactform input[type="submit"] {
    padding: 15px 40px;
    color: #fff;
    border: 0;
    background: #241661;
    font-size: 16px;
    text-transform: uppercase;
    margin: 7px 0;
    cursor: pointer;
}

.section2 .sec2contactform h3 {
    font-weight: normal;
    margin: 20px 0;
    margin-top: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 19px;
    color: #241661;
}

/* @media querries */

@media only screen and (max-width: 1266px) {
    .section2 {
        width: 100%;
    }
}

@media only screen and (max-width: 960px) {
    .container {
        padding: 0 30px 70px;
    }
    .tracking-abs {
        position: relative !important;
    }

    .section2 .col2 {
        width: 100%;
        display: block;
    }

        .section2 .col2.first {
            margin-bottom: 10px;
        }

        .section2 .col2.column2 {
            padding: 0;
        }

    body .sec2map {
        height: 250px !important;
    }
}

@media only screen and (max-width: 768px) {


    .section2 .sec2contactform h3 {
        font-size: 16px;
    }

    .section2 .sec2contactform input[type="text"], .section2 .sec2contactform input[type="email"], .section2 .sec2contactform textarea {
        padding: 10px;
        margin: 3px 0;
    }

    .section2 .sec2contactform input[type="submit"] {
        padding: 10px 30px;
        font-size: 14px;
    }

    .tracking-abs {
        position: relative !important;
    }
}

@media only screen and (max-width: 420px) {
    .section1 h1 {
        font-size: 28px;
    }
}

.innerwrap {
    padding: 100px 200px;
}

.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.sec-title .title {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #3abad5;
    font-weight: 500;
    margin-bottom: 15px;
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 1.28em;
    color: #222222;
    font-weight: 600;
    padding-bottom: 18px;
}

.sec-title h2:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 50px;
    height: 3px;
    background-color: #d1d2d6;
}

.sec-title .text {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
    margin-top: 35px;
}

.sec-title.light h2 {
    color: #ffffff;
}

.sec-title.text-center h2:before {
    left: 50%;
    margin-left: -25px;
}

.list-style-one {
    position: relative;
}

.list-style-one li {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #222222;
    font-weight: 400;
    padding-left: 35px;
    margin-bottom: 12px;
}

.list-style-one li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 18px;
    padding: 0px;
    color: #ff2222;
    font-weight: 600;
    -moz-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1.6;
    font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover {
    color: #44bce2;
}

.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.02em;
    background-color: #38b4d0;
}

.btn-style-one:hover {
    background-color: #0794c9;
    color: #ffffff;
}

.about-section {
    position: relative;
    padding: 120px 0 70px;
}

.about-section .sec-title {
    margin-bottom: 45px;
}

.about-section .content-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .content-column .inner-column {
    position: relative;
    padding-left: 30px;
}

.about-section .text {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
}

.about-section .list-style-one {
    margin-bottom: 45px;
}

.about-section .btn-box {
    position: relative;
}

    .about-section .btn-box a {
        padding: 15px 50px;
    }

.about-section .image-column {
    position: relative;
}

.about-section .image-column .text-layer {
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

.about-section .image-column .inner-column {
    position: relative;
    padding-left: 80px;
    padding-bottom: 0px;
}

.about-section .image-column .inner-column .author-desc {
    position: absolute;
    bottom: 16px;
    z-index: 1;
    background: #241661;
    padding: 10px 15px;
    left: 96px;
    width: calc(100% - 152px);
    border-radius: 50px;
}

.about-section .image-column .inner-column .author-desc h2 {
    font-size: 21px;
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
    margin: 0;
}

.about-section .image-column .inner-column .author-desc span {
    font-size: 16px;
    letter-spacing: 6px;
    text-align: center;
    color: #fff;
    display: block;
    font-weight: 400;
}

.about-section .image-column .inner-column:before {
    content: '';
    position: absolute;
    width: calc(50% + 80px);
    height: calc(100% + 160px);
    top: -80px;
    left: -3px;
    background: transparent;
    z-index: 0;
    border: 44px solid #3abad5;
}

.about-section .image-column .image-1 {
    position: relative;
}

.about-section .image-column .image-2 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img {
    box-shadow: 0 30px 50px rgba(8,13,62,.15);
    border-radius: 46px;
}

.about-section .image-column .video-link {
    position: absolute;
    left: 70px;
    top: 170px;
}

.about-section .image-column .video-link .link {
    position: relative;
    display: block;
    font-size: 22px;
    color: #191e34;
    font-weight: 400;
    text-align: center;
    height: 100px;
    width: 100px;
    line-height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 30px 50px rgba(8,13,62,.15);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.about-section .image-column .video-link .link:hover {
    background-color: #191e34;
    color: #fff;
}

.counter-inner {
    background: #241661;
    text-align: center;
    padding: 48px 40px;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
}

.counter-info {
    margin: 0;
    display: inline-block;
    line-height: normal;
}

.counter-info span.counter-symbol {
    color: #fff;
}

.bg-purple1 {
    background: #241661 !important;
}
.counter-after-text, .counter-symbol {
    font-size: 3.157rem;
    font-weight: 600;
    font-family: barlow, sans-serif;
    color: white;
}

.counter-info {
    margin: 0;
    display: inline-block;
    line-height: normal;
}

.counter-detail {
    margin-top: 12px;
}

.counter-detail .counter-title-text {
    color: #3abad5;
    font-family: barlow, sans-serif;
    text-transform: capitalize;
    font-weight: 700;
    letter-spacing: 0.125rem;
}

.title-box.left {
    margin-bottom: 16px;
    color: #000;
    font-family: barlow, sans-serif;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 0.125rem;
}

.sub-title-block {
    overflow: hidden;
    margin-bottom: 8px;
}

.sub-title-shape {
    position: relative;
    width: 4px;
    height: 20px;
    background: #3abad5;
    margin: auto;
}


.subtitle {
    text-transform: uppercase;
    color: #000;
    position: relative;
    font-size: 1rem;
    font-family: barlow, sans-serif;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.125rem;
    vertical-align: middle;
    overflow: hidden;
    display: inline-block;
    /*z-index: -1;*/
    margin-left: 15px;
}
.title-box .heading-title {
    font-weight: 600;
}
.heading-title .right_title {
    color: #3abad5;
    font-weight: 800;
}

.widget-container h2 {
    font-family: barlow, sans-serif;
    font-stretch: condensed;
    clear: both;
    margin: 25px 0;
    word-break: break-word;
    text-transform: capitalize;
    font-size: 45px;
}

.widget-heading {
    width: 100%;
    position: relative;
    --widgets-spacing: 0px;
}

.el-widget-container {
    margin: 0px 0px 10px 0px;
}

.el-heading-title {
    color: #171717;
    font-family: "Barlow", Sans-serif;
    font-weight: 600;
    line-height: 35px;
}


.el-widget-container-head p {
    color: #00000091;
    font-family: "Barlow", Sans-serif;
    margin: 0px 0px 40px 0px !important;
}

.contain-ner {
    background: #FAFAFA;
    padding: 80px 16px 80px 16px
}

/*service section start here*/
.service-blog {
    padding: 32px;
    border: 1px solid #dbdbdb;
    margin-bottom: 32px;
    position: relative;
    background-color: #fff;
    box-shadow: none;
}

.service-blog:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #3abad5;
    transition: all .3s ease-in;
}

.service-blog:hover {
    box-shadow: 5px 10px 45px rgb(223 223 223 / 20%);
}

.service-blog a:hover {
    color: #0056b3;
    text-decoration: none;
}
.service-blog:hover:before {
    width: 100%;
}

.service-blog .service-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    padding: 20px 0;
    height: 170px;
}

.mighty-cal-output .total-pay {
    display: inline-flex;
    align-items: center;
}

.mighty-cal-output .total-pay h5 {
    margin-right: 5px;
}

.service-blog .service-img img {
    width: 120px;
}

.service-blog .service-info {
    text-align: center;
    padding-top: 24px;
    position: relative;
}

.digit {
    position: absolute;
    color: #3abad5;
    font-size: 1.777rem;
    font-family: "Barlow",sans-serif;
    top: 20px;
    left: 20px;
    font-weight: 600;
    display: inline-block;
    transition: opacity 0.5s ease-in;
}

.service-blog.hover-digit .digit {
    opacity: 0;
}

.service-blog:hover .digit {
    opacity: 1;
}

.serv-more {
    margin: 22px 15px 10px 0;
}

.serv-more-link {
    position: relative;
    width: 14px;
    height: 1px;
    margin: auto;
    transition: width .2s, transform 2s;
}

.serv-more-link .arrow-one,
.serv-more-link .arrow-three {
    position: absolute;
    height: 100%;
    right: -13px;
    background-color: #241661;
    width: 10px;
    outline: transparent solid 1px;
    transition: width .2s;
}

.serv-more-link .arrow-one {
    top: 0px;
    transform: rotate(45deg);
    transform-origin: 100% 0;
}

.serv-more-link .arrow-two {
    position: absolute;
    display: block;
    width: calc(100% + 12px);
    height: 100%;
    top: 0;
    left: 0;
    background-color: #241661;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform .2s .15s;
}

.serv-more-link .arrow-three {
    bottom: 0;
    transform: rotate(-45deg);
    transform-origin: 100% 100%;
}

.service-blog:hover .serv-more-link {
    width: 20px;
    transform: scale(1);
}

.service-blog:hover .arrow-one,
.service-blog:hover .arrow-three {
    -webkit-animation: fade-in 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 0.3s;
    animation: fade-in 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 0.3s;
}

.service-blog:hover .arrow-two {
    -webkit-animation: scaleArr 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scaleArr 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.service-slider .owl-carousel .service-blog {
    margin-bottom: 0;
}

.service-style-1 .service-blog .heading-title {
    text-transform: uppercase;
}

@-webkit-keyframes fade-in {
    0% {
        width: 0;
    }

    100% {
        width: 10px;
    }
}

@keyframes fade-in {
    0% {
        width: 0;
    }

    100% {
        width: 10px;
    }
}

@-webkit-keyframes scaleArr {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

@keyframes scaleArr {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

.service-heading-title {
    text-transform: uppercase;
    font-family: "Barlow",sans-serif;
    font-weight: 600;
    color: #212529;
    font-size: 18px;
    letter-spacing: 0.04rem;
}

.div-vertical-center {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
}
.about-custom-text ul li{
    list-style:none;
    margin-left: 20px;
}
.about-custom-text ul li::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #241661;
    transform: translateY(-50%);
    border-radius: 50%;
    margin-top: 13px;
    left: -18px;
}

.text-purple {
    color: #241661 !important;
}

.about-custom-text ul li {
    font-family: "barlow",sans-serif;
    font-weight: 500;
    letter-spacing: 0.08rem;
    text-transform: capitalize;
    color: #171717;
    margin-bottom: 16px;
    list-style: none;
    position: relative;
}

.box-form-group {
    position: relative;
    background: #fafafa;
    background: var(--global-body-lightcolor);
    display: block;
    width: 100%;
}
.tracking-head {
    box-shadow: 0px 0px 20px 6px rgb(0 0 0 / 12%);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 40px 40px 40px 40px;
    font-family: 'Barlow';
    width: 70%;
    margin: auto;
    text-align: center;
}

.padding-top-hundered {
    padding-top: 100px;
}


@media screen and (max-width: 600px) {
    .slide-head-text {
        z-index: 4;
        line-height: 64px;
        font-size: 48px;
    }
    .theme-container {
      margin-top: 50px; 
    }
    .font-light {
       
        display: block;
        margin-bottom: 10px;
    }
    .contain-ner {
        padding: 20px;
    }
    .counter-inner {
        margin-bottom: 40px;
    }

    .widget-buton {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        align-items: baseline;
    }
    .div-vertical-center{
        margin-bottom: 40px;
    }
    .tracking-head {
        width: 100%;
    }
    .innerwrap {
        padding: 20px;
    }

    .service-container {
        margin:30px;
    }

    .section2 {
        margin-right: 0px !important;
        margin-left: 0px !important;
    }
    .tracking-abs{
        position: relative !important;
    }
}

.table-bordered td, .table-bordered th {
    border: 1px solid #3abad5 !important;
}


/* Standard syntax */
@keyframes line-show {
    from {
        margin: 0px 100px;
    }

    to {
        margin: 0px;
    }
}

/* Standard syntax */
@keyframes p-show {
    from {
        color: white;
    }

    to {
        color: #282828;
    }
}

/* Standard syntax */
@keyframes shadow-show {
    from {
        -webkit-box-shadow: 0px 0px 0px 0px #e0e0e0;
        box-shadow: 0px 0px 0px 0px #e0e0e0;
    }

    to {
        -webkit-box-shadow: -20px -20px 0px 0px #0090d1;
        box-shadow: -20px -20px 0px 0px #0090d1;
    }
}




.fadeInRight {
    -webkit-animation: fadeInRight .5s ease .4s both;
    -moz-animation: fadeInRight .5s ease .4s both;
    -ms-animation: fadeInRight .5s ease .4s both;
    -o-animation: fadeInRight .5s ease .4s both;
    animation: fadeInRight .5s ease .4s both;
}

@media (prefers-reduced-motion) {
    .fadeInRight .animated {
        -webkit-animation: unset !important;
        animation: unset !important;
        -webkit-transition: none !important;
        transition: none !important;
    }
}

.fadeInLeft {
    -webkit-animation: fadeInLeft .5s ease .4s both;
    -moz-animation: fadeInLeft .5s ease .4s both;
    -ms-animation: fadeInLeft .5s ease .4s both;
    -o-animation: fadeInLeft .5s ease .4s both;
    animation: fadeInLeft .5s ease .4s both;
}

@media (prefers-reduced-motion) {
    .fadeInLeft .animated {
        -webkit-animation: unset !important;
        animation: unset !important;
        -webkit-transition: none !important;
        transition: none !important;
    }
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-moz-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-ms-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-o-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -moz-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        -o-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-moz-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -moz-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        -o-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-ms-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -moz-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        -o-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-o-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -moz-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        -o-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -moz-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        -o-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@media only screen and (max-width: 600px) {
    .card-container {
        width: 100%;
    }
}

#customers-testimonials .item {
    text-align: center;
    margin-bottom: 80px;
}

.owl-carousel .owl-nav [class*='owl-'] {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .owl-carousel .owl-nav [class*='owl-'].disabled:hover {
        background-color: #d6d6d6;
    }

.owl-carousel {
    position: relative;
}

    .owl-carousel  .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
        width: 50px !important;
        height: 50px !important;
        line-height: 50px !important;
        border-radius: 50% !important;
        position: absolute;
        top: 30%;
        font-size: 20px;
        color: #fff;
        border: 1px solid #ddd;
        text-align: center;
    }

    .owl-carousel .owl-prev {
        left: -70px;
    }

    .owl-carousel .owl-next {
        right: -70px;
    }

.tracking-abs {
    position: absolute;
    top: 40%;
    right: 0;
}

.align-space{
    display: flex;
    justify-content: center;
    margin: 10px;
}


.showcase {
    width: 100%;
    height: 430px;
    position: relative;
    color: white;
    text-align: center;
}

    .showcase .img-bg {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 99
    }

    .showcase .overlay {
        width: 100%;
        height: 430px;
        background-color: rgba(0, 35, 82, 0.7);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 999
    }

    .showcase h2 {
        margin-top: 170px;
        font-size: 3em;
    }

    .showcase p {
        margin-top: 8px;
        font-size: 1.2em;
    }

.serve-main {
    padding: 28px 25px 25px;
    background: #ffffff63;
    border-radius: 5px;
    margin-bottom: 0;
    margin-top: 25px;
}

.imng-height {
    width: 50px !important;
}
.innerimg {
    height: 100px;
    width: 100px;
    background: #3abad5;
    padding: 10px;
    border-radius: 50%;
    /* text-align: center; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.img-card {
    /*width: 300px;*/
    position: relative;
    border-radius: 5px;
    text-align: left;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
    -o-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
}

    .img-card .card-image {
        position: relative;
        margin: auto;
        overflow: hidden;
        border-radius: 5px 5px 0px 0px;
        height: 200px;
    }

        .img-card .card-image img {
            width: 100%;
            border-radius: 5px 5px 0px 0px;
            -webkit-transition: all 0.8s;
            -moz-transition: all 0.8s;
            -o-transition: all 0.8s;
            transition: all 0.8s;
            height: 100%;
            object-fit: cover;
        }

        .img-card .card-image:hover img {
            -webkit-transform: scale(1.1);
            -moz-transform: scale(1.1);
            -o-transform: scale(1.1);
            transform: scale(1.1);
        }

    .img-card .card-text {
        padding: 0 15px 0px;
        line-height: 1.5;
        font-family: "Barlow", Sans-serif;
    }

    .img-card .card-link {
        padding: 20px 15px 30px;
        width: -webkit-fill-available;
    }

        .img-card .card-link a {
            text-decoration: none;
            position: relative;
            padding: 10px 0;
        }

            .img-card .card-link a:after {
                top: 30px;
                content: "";
                display: block;
                height: 2px;
                left: 50%;
                position: absolute;
                width: 0;
                -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
                -moz-transition: width 0.3s ease 0s, left 0.3s ease 0s;
                -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
                transition: width 0.3s ease 0s, left 0.3s ease 0s;
            }

            .img-card .card-link a:hover:after {
                width: 100%;
                left: 0;
            }



    .img-card.iCard-style2 .card-title {
        padding: 15px;
        font-size: 18px;
        font-family: barlow, sans-serif;
        color: #3abad5;
        font-weight: 800;
    
    }

    .img-card.iCard-style2 .card-image {
        margin-bottom: 15px;
    }

    .img-card.iCard-style2 .card-caption {
        text-align: center;
        top: 80%;
        font-size: 17px;
        color: #fff;
        position: absolute;
        width: 100%;
        font-family: 'Roboto', sans-serif;
        z-index: 1;
    }

    .img-card.iCard-style2 .card-link a {
        border: 1px solid;
        padding: 8px;
        border-radius: 3px;
        color: black;
        font-size: 13px;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
    }

        .img-card.iCard-style2 .card-link a:hover {
            background: black;
        }

            .img-card.iCard-style2 .card-link a:hover span {
                color: #fff;
            }

.card-content {
    height: 430px;
}
