body {
    font-family: 'Source Sans Pro', sans-serif!important;
}

.navbar-brand {
    width: 170px;
    height: 56px;
}

.navbar-brand img {
    max-width: 100%;
    max-height: 100%;
}

header {
    top: 0;
    z-index: 99;
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
}

.navbar-top a.nav-link {
    color: #2f2c2c;
    padding: .5rem 1.25rem!important;
    font-size: 16px;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.navbar-top .btn {
    border-radius: 50px!important;
    background: #00ccb7!important;
    border-color: #00ccb7!important;
    color: #ffffff!important;
    font-size: 15px;
    padding: 7px 21px;
    margin-top: 0;
    text-transform: uppercase;
    position: relative;
}

.semicircle {
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 14px;
    height: 14px;
    overflow: hidden;
}

.semicircle:after {
    content: '';
    display: block;
    position: absolute;
    width: 27px;
    height: 27px;
    border: 2px solid #fff;
    border-radius: 100%;
}

.top-header {
    box-shadow: 0 0 4px rgba(0, 0, 0, .1);
    background: #fff;
}

.banner-bg {
    position: relative;
    background: url('../images/banner-bg-icons.png') #00ccb7 repeat;
    margin-top: 72px;
    padding: 50px 0;
}

.banner-img {
    position: relative;
    height: 330px;
}

.banner-img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.navbar-top a.nav-link:before {
    content: '';
    display: block;
    width: 80%;
    height: 2px;
    background-color: #00ccb7;
    position: absolute;
    right: 0;
    top: -15px;
    opacity: 0;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.navbar-top a.nav-link:after {
    content: '';
    display: block;
    position: absolute;
    width: 15%;
    height: 2px;
    background-color: #00ccb7;
    left: 0;
    top: -15px;
    opacity: 0;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.navbar-top a.nav-link:hover::before,
.navbar-top a.nav-link:hover::after,
.navbar-top .menu-active a.nav-link::before,
.navbar-top .menu-active a.nav-link::after {
    opacity: 1;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.h-100 {
    height: 100%;
}

.banner-caption h1 p {
    color: #2f2c2c;
    font-size: 40px;
    margin-bottom: 10px;
    text-transform: capitalize;
    /* font-weight: bold; */
}

.banner-caption h1 p span {
    text-transform: none;
    font-size: 28px;
    text-decoration: none!important;
    padding: 0 5px;
}

.banner-caption .sub-text {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.resource-bg {
    background: #fafafa;
    padding: 50px 0;
    padding-bottom: 20px;
}

.heading-text {
    height: 362px;
    margin-bottom: 30px;
    /* background: #f5f5f5; */
    padding: 30px;
}

.heading-text p {
    font-size: 30px;
    margin: 0;
    color: #00ccb7;
    line-height: initial;
    font-weight: bold;
    font-weight: 700;
    font-size: 40px;
}

.heading-text h2 {
    color: #282828;
    /* font-weight: 700; */
    font-size: 40px;
}

.heading-text h2 span {
    color: #00ccb7;
}

.heading-text h4 {
    font-size: 14px;
    margin: 0;
    color: #a7a7a7;
    line-height: 1.8;
    margin-top: 15px;
}

.resource-block {
    padding: 35px 40px;
    margin-bottom: 30px;
    background-color: #fff;
    border: 1px solid #f1f0f0;
    position: relative;
    overflow: hidden;
}

.resource-img {
    width: 135px;
    height: 135px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
    margin-bottom: 20px;
}

.resource-img img {
    max-width: 100%;
    max-height: 100%;
}

.resource-img2 {
    width: 239px;
    height: 100%;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
    margin-bottom: 20px;
}

.resource-img2 img {
    max-width: 100%;
    max-height: 100%;
}

.resource-overlay {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.05;
}

.resource-info {
    /* width: calc(100% - 120px); */
    display: inline-block;
    height: 135px;
}

.resource-info h3 {
    color: #282828;
    font-size: 20px;
    /* font-weight: 700; */
    text-transform: capitalize;
}

.resource-info p {
    font-size: 14px;
    margin: 0;
    color: #696969;
    line-height: 1.8;
    /* height: 150px; */
}

.h-auto {
    height: auto;
}

@-webkit-keyframes titleanimation {
    0% {
        -webkit-transform: translateX(-70px);
        transform: translateX(-70px);
    }
    50% {
        -webkit-transform: translateX(38px);
        transform: translateX(38px);
    }
    100% {
        -webkit-transform: translateX(-70px);
        transform: translateX(-70px);
    }
}

@keyframes titleanimation {
    0% {
        -webkit-transform: translateX(-70px);
        transform: translateX(-70px);
    }
    50% {
        -webkit-transform: translateX(38px);
        transform: translateX(38px);
    }
    100% {
        -webkit-transform: translateX(-70px);
        transform: translateX(-70px);
    }
}

.title-animation {
    position: relative;
    display: block;
    width: 162px;
    height: 2px;
    background: #00ccb7;
    border-radius: 50px;
}

.title-animation:after {
    content: '';
    width: 40px;
    height: 4px;
    position: absolute;
    left: 50%;
    bottom: 0;
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
    -webkit-animation: titleanimation 5s linear infinite;
    animation: titleanimation 5s linear infinite;
    border-radius: 50px;
}

.solution-block {
    position: relative;
    margin-bottom: 30px;
}

.solution-block .inner-box {
    position: relative;
    padding: 45px 40px 45px;
    border: 1px solid #f2f2f2;
    background-size: cover;
    -webkit-box-shadow: 0px 4px 13px 0px rgba(247, 247, 247, 1);
    -moz-box-shadow: 0px 4px 13px 0px rgba(247, 247, 247, 1);
    box-shadow: 0px 4px 13px 0px rgba(247, 247, 247, 1);
    background: url('../images/solution-block-bg.png') no-repeat;
    margin-bottom: 20px;
}

.solution-block .inner-box:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 170px;
    height: 100%;
    display: block;
    background-color: #fafafa;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.solution-block .inner-box .icon-box {
    position: relative;
    margin-bottom: 15px;
}

.solution-block .inner-box .icon-box img {
    width: 100px;
    height: 100px;
}

.solution-block .inner-box h3 {
    position: relative;
    color: #282828;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 25px;
}

.solution-block .inner-box p {
    position: relative;
    color: #696969;
    font-size: 15px;
    line-height: 1.8em;
    margin-bottom: 15px;
}

.solution-block .inner-box .explore:hover {
    text-decoration: none;
}

.solution-block .inner-box .explore {
    cursor: pointer;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    background: transparent;
    border: 2px solid #d9d9d9;
    color: #d9d9d9;
    font-size: 15px;
    padding: 7px 21px;
    margin-top: 0;
    display: inline-block;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.solution-block .inner-box .explore .semicircle:after {
    border: 2px solid #d9d9d9;
}

.solution-block .inner-box:hover::before {
    width: 100%;
}

.solution-block .inner-box:hover .explore {
    color: #00ccb7;
    border: 2px solid #00ccb7;
}

.solution-block .inner-box:hover .explore .semicircle:after {
    border: 2px solid #00ccb7;
}

.solution-bg {
    padding: 50px 0;
    padding-bottom: 30px;
}

.partner-bg {
    position: relative;
    background: url('../images/banner-bg-icons.png') #00ccb7 repeat;
    /* margin-top: 72px; */
    padding: 50px 0;
}

.partner-img {
    position: relative;
    height: 175px;
}

.partner-img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.partner-img-block {
    position: relative;
    height: 70px;
    margin: 22px 0;
    width: 175px;
}

.partner-img-block img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0px;
    margin: auto;
}

.partner-info h3 {
    color: #161616;
    font-size: 2.5rem;
    line-height: 3.25rem;
    text-align: left;
}

.partner-info p {
    color: #282828;
    font-size: 1.25rem;
    line-height: 1.725rem;
    text-align: left;
}

.partner-info .btn {
    border-radius: 50px!important;
    background: #00ccb6!important;
    border-color: #00ccb6!important;
    color: #ffffff!important;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 65px;
    margin-top: 18px;
}

.partner-bg .heading-text h2 span {
    color: #fff;
}

.partner-bg .title-animation {
    background: #fff;
}

.partner-bg .title-animation:after {
    border-left: 10px solid #00ccb7;
    border-right: 10px solid #00cbb6;
}

.partner-btn {
    border-radius: 50px!important;
    background: #00ccb7!important;
    border-color: #ffffff!important;
    color: #ffffff!important;
    font-size: 15px;
    padding: 7px 21px;
    margin-top: 0;
    text-transform: capitalize;
    position: relative;
}

.social-icon-block li {
    list-style: none;
    margin-right: 25px;
    margin-top: 10px;
}

.footer-bg {
    background: #2f2c2c;
}

.textwidget p {
    color: #797676;
}

.partner-section {
    background: #fafafa;
    position: relative;
    bottom: -40px;
    padding: 30px;
}

.heading-text-change {
    position: relative;
    top: 23px;
}

.top-header {
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    border-bottom: 1px solid transparent;
}

.top-header-bg {
    background: #fff!important;
    border-bottom: 1px solid #d1ece6;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
}