/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&amp;family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&amp;display=swap');


@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

@keyframes load {
    to {
        --progress: var(--value)
    }
}

@keyframes background_animation {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

@keyframes ripple {
    from {
        opacity: 0.7;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 1px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.5, 1.5, 1.5);
        transform-origin: center;
        border-width: 10px;
    }
}


:root {
    --dark-bg: #111111;
    --secondary-dark: #222222;
    --accent-color: #72b41d;
    --accent-color-1: #872c58;
    --accent-color-2: #cd5a91;
    --gray-color: #aaaaaa;
    --font-1: 'Abhaya Libre', serif;
    --font-2: 'Open Sans', sans-serif;
}

h1 {
    font-size: 58px;
}

h2 {
    font-size: 72px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 18px;
}

ul {
    list-style: none;
}

img {
    object-fit: cover;
}

section {
    background-size: cover;
    background-position: center;
}

button,
a[type="button"] {
    padding-inline: 1rem;
    padding-block: 0.5rem;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
    width: max-content;
}

    button.button {
        padding-inline: 1rem;
        padding-block: 0.5rem;
        border: 2px solid var(--accent-color);
        text-decoration: none;
        transition: all 0.5s;
        color: white;
    }

        button.button:hover {
            background-color: var(--accent-color);
            color: white;
            filter: brightness(0.8);
        }

a:hover {
    color: #009331;
}

button:hover,
a[type="button"]:hover {
    background-color: var(--accent-color);
    color: white;
    filter: brightness(0.8);
}

a {
    text-decoration: none;
    font-size: 15px;
}

.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-2);
}


.form input,
.form textarea {
    background-color: white;
    border-radius: 5px;
    border: none;
    width: 100%;
}

    .form input:focus,
    .form textarea:focus {
        box-shadow: none;
    }

    .form input::placeholder,
    .form textarea::placeholder {
        color: #88888893;
    }

.submit_form {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
    background-color: #166b93;
    border-radius: 5px;
}

.submit_form-subscribe {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
    background-color: var(--accent-color-1);
    border-radius: 5px;
}

    .submit_form-subscribe:hover {
        background-color: var(--dark-bg);
        color: white;
        filter: none;
    }

.maps {
    width: 100%;
    height: 280px;
    /* filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg); */
}

#header {
    transition: all 0.5s ease;
}

.nav-link {
    border-bottom: 2px solid transparent;
    font-size: 1rem;
}

    .nav-link:hover {
        color: #009331;
    }

    .nav-link.active {
        color: #1982b3 !important;
    }

    .nav-link:focus {
        color: #009331 !important;
    }

.navbar-toggler:focus {
    box-shadow: none;
}

.dropdown-menu {
    background-color: white;
    border-radius: 0;
    border: none;
    padding: 0;
    padding-block: 0.5rem;
    box-shadow: 1px 1px 23px 1px rgba(0, 0, 0, 0.17);
    -webkit-box-shadow: 1px 1px 23px 1px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 1px 1px 23px 1px rgba(0, 0, 0, 0.17);
    border-radius: 10px;
}

.dropdown-item {
    padding-block: 0.5rem;
}

    .dropdown-item.active {
        color: var(--accent-color);
        background-color: transparent;
    }

    .dropdown-item:hover {
        color: #009331;
        background-color: transparent;
    }

    .dropdown-item:focus {
        color: var(--accent-color);
    }

.section {
    padding: 3em 2em 3em 2em;
    overflow: hidden;
}

.r-container {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
}

.bg-dark-color {
    background-color: var(--dark-bg);
}

.bg-dark-transparent {
    background-color: #232323b7;
}

.bg-secondary-dark {
    background-color: var(--secondary-dark);
}

.bg-accent-color {
    background-color: #e72b38;
}

.bg-accent-color-1 {
    background-color: #166b93;
}

.bg-accent-color-2 {
    background-color: #90d636;
}

.accent-color {
    color: #000000;
}

.accent-color-1 {
    color: var(--accent-color-1);
}

.accent-color-2 {
    color: var(--accent-color-2);
}

.border-accent-color {
    border-color: var(--accent-color) !important;
}

.border-accent-color-1 {
    border-color: var(--accent-color-1) !important;
}

.border-accent-color-2 {
    border-color: var(--accent-color-2) !important;
}

.text-gray {
    color: #000000 !important;
    margin-bottom: 0rem;
}

.bg-accent-color-hover:hover {
    background-color: var(--accent-color);
    color: white;
}

.btn-dark {
    background-color: var(--dark-bg);
    color: white;
    border: none;
}

    .btn-dark:hover {
        background-color: var(--accent-color-1);
        color: white;
        border: none;
    }

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #000;
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay-2 {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #166b93;
    opacity: 0.8;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay-3 {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #FFFFFF;
    opacity: 0.75;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.overlay {
    background-image: url(../image/bg.png);
    background-size: contain;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: 65% auto;
    opacity: 1;
}

    .overlay.right {
        background-position: center right;
    }

    .overlay.left {
        background-position: center left;
    }

.logo-container {
    max-width: 200px;
}

.divider {
    display: flex;
    align-items: center;
}

    .divider::after {
        display: block;
        content: "";
        border-bottom: 0;
        flex-grow: 1;
        border-top: 3px solid var(--accent-color);
        max-width: 80px;
        min-width: 80px;
    }

.divider-before::before {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid var(--accent-color);
    max-width: 80px;
    min-width: 80px;
}

.divider-element {
    letter-spacing: 2px;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0;
    margin-left: 1rem;
    font-weight: 400;
}

.image-infinite-bg {
    height: 90vh;
}

.animation-bg {
    animation: background_animation 10s forwards;
}

.r-progress {
    --value: 17;
    --progress-color: var(--accent-color);
    --secondary-progress-color: #a8a8a8;
    --animation-duration: 2000;
}

.r-progress-bar {
    position: relative;
    height: 20px;
    background-color: var(--secondary-progress-color);
    display: flex;
    /* border-radius: 3px; */
    overflow: hidden;
}

    .r-progress-bar .progress-value {
        height: 100%;
        width: calc(var(--progress) * 1%);
        background-color: var(--progress-color);
        position: relative;
        /* border-radius: 3px; */
        animation: load;
        animation-fill-mode: forwards;
        animation-duration: calc(var(--animation-duration) * 1ms);
        animation-timing-function: linear;
        animation-delay: 500ms;
        color: black;
    }

    .r-progress-bar.percentage-label::after {
        counter-reset: percentage var(--progress);
        content: counter(percentage) '%';
        display: block;
        position: absolute;
        left: calc((var(--progress) * 1%) - 3rem);
        animation: load;
        animation-fill-mode: forwards;
        animation-duration: calc(var(--animation-duration) * 1ms);
        animation-timing-function: linear;
        animation-delay: 500ms;
        color: white;
        font-size: 15px;
        line-height: 1.2;
        /* font-weight: 700; */
        font-family: var(--font-1);
    }

.bg-attach-fixed {
    background-attachment: fixed;
}

.social-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.social-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 15px;
    width: 1.8rem;
    height: 1.8rem;
    background-color: #449ac2;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

    .social-item.bg-accent-color-1 {
        background-color: var(--accent-color-1);
    }

    .social-item:hover {
        background-color: var(--dark-bg);
        color: white;
    }

.nav-tabs {
    border-bottom: none;
}

    .nav-tabs .nav-link {
        background-color: transparent;
        color: var(--accent-color);
        border: none;
        position: relative;
    }

        .nav-tabs .nav-link:hover {
            border: none;
            color: white;
        }

        .nav-tabs .nav-link.active {
            background-color: transparent;
            border: none;
        }

            .nav-tabs .nav-link.active::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 2px;
                background-color: var(--accent-color);
            }

.breadcrumb .breadcrumb-item > a {
    color: white;
}

.breadcrumb .breadcrumb-item.active {
    color: var(--accent-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: white;
}

.swiper-pagination {
    margin-block: 1rem;
}

    .swiper-pagination .swiper-pagination-bullet-active {
        background-color: black;
    }

.video-container {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.video-iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-btn {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 5rem;
    background-color: transparent;
    border: solid 2px white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.border-custom {
    border-width: 0px 1px 0px 0px;
    border-color: var(--accent-color);
    border-style: solid;
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.5rem;
    aspect-ratio: 1/1;
    width: 4rem;
    height: 4rem;
}

.request-loader {
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50% !important;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

    .request-loader:hover {
        color: #464646;
        background-color: var(--accent-color);
    }


    .request-loader::after,
    .request-loader::before {
        opacity: 0.2;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: absolute;
        content: '';
        height: 100%;
        width: 100%;
        color: rgb(238, 238, 238);
        border: 4px solid currentColor;
        border-radius: 50%;
        animation-name: ripple;
        animation-iteration-count: infinite;
        animation-timing-function: cubic-bezier(.65, 0, .34, 1);
        z-index: 0;
    }

    .request-loader::after {
        animation-delay: 0.5s;
        animation-duration: 3s;
    }

    .request-loader::before {
        animation-delay: 0.2s;
        animation-duration: 3s;
    }

.ifr-video {
    aspect-ratio: 16/9;
    width: 100%;
}

.post-button {
    background-color: transparent;
    color: var(--accent-color) !important;
    border: none !important;
}

    .post-button:hover {
        background-color: transparent !important;
        color: var(--accent-color) !important;
        transform: scale(1.15);
    }

.card.with-border-bottom {
    border-bottom: 3px solid #166b93 !important;
    /* min-height: 425px; */
}

.list-group .list-group-item {
    border: none;
    border-radius: 5px;
}

    .list-group .list-group-item.active {
        background-color: var(--accent-color);
    }

    .list-group .list-group-item.list-group-item-action:hover {
        background-color: var(--accent-color);
        color: white;
    }

.accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
    color: white;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 5px;
}

.accordion-button {
    background-color: #f6f6f6;
    border-radius: 5px;
}

    .accordion-button:hover {
        filter: none;
    }

    .accordion-button:focus {
        z-index: 3;
        border: none;
        outline: 0;
        box-shadow: none;
    }

.accordion-item {
    border: none;
}


@media only screen and (max-width:993px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 56px;
    }

    h3 {
        font-size: 36px;
    }

    h5 {
        font-size: 24px;
    }

    h6 {
        font-size: 14px;
    }

    .section {
        padding: 10px;
    }

    .divider {
        width: 330px;
    }

    .fs-very-large {
        font-size: 3.125rem;
    }

    .image-absolute-1 {
        left: 45%;
        top: 35%;
    }

    .image-infinite-bg {
        background-size: cover !important;
    }

    #header {
        background: rgba(19, 19, 19, 0.88);
        backdrop-filter: blur(11px);
        -webkit-backdrop-filter: blur(11px);
    }

    .border-custom {
        border-width: 0px 0px 1px 0px;
    }
}

.sticky-top {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}


.owl-nav button {
    position: absolute;
    top: 50%;
    background-color: #000;
    color: #fff;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

    .owl-nav button.owl-prev {
        left: 0;
    }

    .owl-nav button.owl-next {
        right: 0;
    }

.owl-dots {
    text-align: center;
    padding-top: 15px;
}

    .owl-dots button.owl-dot {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        display: inline-block;
        background: #ccc;
        margin: 0 3px;
    }

        .owl-dots button.owl-dot.active {
            background-color: #000;
        }

        .owl-dots button.owl-dot:focus {
            outline: none;
        }

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}

    .owl-nav button:focus {
        outline: none;
    }


.item img {
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    border: 3px solid #166b93;
    padding: 10px;
    height: 150px;
    width: 100%;
    object-fit: contain;
}

.mobp {
    padding: 0px 0px;
    margin-bottom: 15px;
}

    .mobp a {
        color: #fff;
    }

.Copyright a {
    color: #ffffff;
}

.mob_footer {
    padding: 80px 10px 18px 10px;
}

.pl60 {
    padding-left: 60px;
}

.mob_f {
    font-family: 'Abhaya Libre', serif;
    font-size: 25px;
    color: #ffffff;
    margin-bottom: 0px;
}

@media(max-width:1399px) {
    h5 {
        font-size: 25px;
    }
}

@media(max-width:991px) {
    .tophead {
        display: none !important;
    }

    .img-fluid {
        width: 100%;
    }

    .form .submit_form {
        padding-inline: 1rem;
    }

    .mob_footer {
        padding: 80px 12px 18px 12px;
    }

    .p-5 {
        padding: 1rem !important;
    }
}

@media(max-width:767px) {
    .fs-4 {
        font-size: calc(1rem + .3vw) !important;
    }

    p {
        text-align: justify;
    }
}

@media(max-width:599px) {
    .item img {
        height: auto;
    }
}

.whatsbtn img, .call img {
    width: 40px;
}

.whatsbtn {
    position: fixed;
    bottom: 74px;
    right: 22px;
    z-index: 99;
}

.call {
    position: fixed;
    bottom: 127px;
    right: 20px;
    z-index: 99;
}

.mobfooter a {
    padding: 6px 0px;
}

.owl-theme img {
    width: 100%;
    min-height: 200px;
}

.owl-carousel .owl-prev, .owl-carousel .owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: #fff !important;
    color: #000 !important;
    font-size: 1.5em !important;
    width: 40px;
    height: 40px;
    border-radius: 100% !important;
    font-weight: bold;
    padding: 15px !important;
    text-align: center;
    box-shadow: 0px 0px 10px 0px #000;
}

    .owl-carousel .owl-prev:hover, .owl-carousel .owl-next:hover {
        box-shadow: 0px 0px 0px 0px #000;
        background-color: #72b41d !important;
        color: #fff !important;
    }

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

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

.owl-theme .owl-dots .owl-dot.active span {
    background: #059338 !important;
    width: 25px;
    transition: 0.2s ease-in-out;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #009438 !important;
    transition: 0.2s ease-in-out;
}


/* Responsive design custom css */
@media only screen and (max-width:480px) {
    .owl-theme .owl-dots .owl-dot {
        display: none;
    }

    .owl-carousel .owl-prev, .owl-carousel .owl-next {
        width: 30px;
        height: 30px;
        font-size: 14px !important;
        top: 45%;
        box-shadow: 0px 0px 0px 0px #000;
    }

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

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

.wraper .item {
    /* border: 4px dotted#72b41d; */
    background: #166b93;
}

    .wraper .item img {
        border: none;
        padding: 0px;
        width: 100%;
        object-fit: cover;
    }

    .wraper .item h5 {
        color: #ffffff;
        font-size: 20px;
        padding: 7px 0px;
    }

.owl-dots button.owl-dot {
    background: #166b93 !important;
}

    .owl-dots button.owl-dot.active {
        background-color: #000 !important;
    }

.breadcrumbitem.active {
    color: #72b41d
}

.min-about {
    position: relative;
}

.pl-40 {
    padding-left: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.min-about:before {
    content: "";
    position: absolute;
    background-image: url(../image/dot.png);
    width: 98%;
    height: 90%;
    right: 13px;
    bottom: -2px;
    z-index: -1;
    -webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation-duration: 3s;
}

@keyframes alltuchtopdown {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }

    50% {
        -webkit-transform: rotateX(0deg) translateY(-10px);
        -moz-transform: rotateX(0deg) translateY(-10px);
        -ms-transform: rotateX(0deg) translateY(-10px);
        -o-transform: rotateX(0deg) translateY(-10px);
        transform: rotateX(0deg) translateY(-10px);
    }

    100% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
}

.mobabout img {
    padding: 3px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
}

@media(max-width:991px) {
    #a {
        order: 1;
    }

    #b {
        order: 2;
    }

    #c {
        order: 4;
    }

    #d {
        order: 3;
    }

    #e {
        order: 5;
    }

    #f {
        order: 6;
    }

    #g {
        order: 8;
    }

    #h {
        order: 7;
    }

    #i {
        order: 9;
    }

    #j {
        order: 10;
    }

    #k {
        order: 12;
    }

    #l {
        order: 11;
    }

    #m {
        order: 13;
    }

    .pe-5 {
        padding-right: 0rem !important;
    }

    .pl60 {
        padding-left: 15px;
    }
}

@media (min-width: 1200px) {
    .fs-1 {
        font-size: 2rem !important;
    }
}


.bgwhite {
    background-color: #fff;
    box-shadow: 0px 21px 46px rgb(0 0 0 / 10%);
}

.min-425 {
    min-height: 457px;
}

.search-box {
    display: inline-block;
    position: relative;
}

    .search-box .search-btn {
        background-color: transparent;
        color: #e72b38;
        line-height: 0px;
    }

    .search-box .form-control {
        background-color: #f5f5f5;
        border-color: #f5f5f5;
        height: 35px;
        width: 250px;
    }

    .search-box .search-btn {
        position: absolute;
        top: -7px;
        right: 0;
        height: 50px;
        width: 50px;
        border-radius: 0 50px 50px 0;
        text-align: center;
        font-size: 20px;
        border: transparent;
    }

.mobteam img {
    border: 6px double #b8c628;
}

.accent-colors {
    color: #dc1220 !important;
}

#vertical-tab {
    padding: 60px 0;
}

    #vertical-tab .vertical-tab-wrapper {
        /* box-shadow: 0px 0px 5.88px 0.12px rgba(0, 0, 0, 0.14); */
        /* background: #dee; */
    }

        #vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab {
            padding: 12px 13px;
            border-bottom: 1px dashed #166b93;
            /* padding-bottom: 6px; */
            /* margin-bottom: 10px; */
        }

            #vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab .title {
                line-height: 1.2;
                color: #1c2a51;
                display: block;
                font-size: 16px;
                position: relative;
                font-family: "Plus Jakarta Sans", sans-serif;
            }

            #vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active {
                background-color: #166b93;
            }

                #vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active .title {
                    color: #ffffff;
                }

        #vertical-tab .vertical-tab-wrapper .vertical-tab-content {
            display: none;
            padding: 35px 45px 15px 25px;
        }

            #vertical-tab .vertical-tab-wrapper .vertical-tab-content h3 {
                font-size: 2.25rem;
                font-family: "Source Sans Pro", sans-serif;
                font-weight: 700;
                line-height: 1;
                color: #1c2a51;
                margin: 0 0 30px;
            }

            #vertical-tab .vertical-tab-wrapper .vertical-tab-content p {
                font-size: 1.125rem;
                font-family: "Source Sans Pro", sans-serif;
                font-weight: 400;
                color: #1c2a51;
                line-height: 1.4;
                font-size: 1rem;
                color: #333333;
                margin: 0 0 30px;
            }

            #vertical-tab .vertical-tab-wrapper .vertical-tab-content.active {
                display: block;
            }

    #vertical-tab .mobile-vertical-tab {
        display: none;
        position: relative;
        box-shadow: 0px 0px 5.88px 0.12px rgba(0, 0, 0, 0.14);
    }

        #vertical-tab .mobile-vertical-tab .vertical-tab-header .each-tab-header .each-tab {
            padding: 16px;
            background-color: #5d9ccc;
            border-bottom: 1px solid #fff;
            position: relative;
            text-align: center;
        }

            #vertical-tab .mobile-vertical-tab .vertical-tab-header .each-tab-header .each-tab .title {
                font-size: 1.375rem;
                font-family: "Source Sans Pro", sans-serif;
                font-weight: 600;
                line-height: 1.1;
                color: #f7dd4b;
            }

.vertical-tab {
    background: #eef6fa;
    padding: 0px 6px;
}

.mobtab {
    padding: 0px 13px;
}

.wraper .item h5 a {
    color: #ffffff;
    font-size: 20px;
    padding: 7px 0px;
}

#category .item {
    background: #166b9300
}

    #category .item img {
        height: auto;
    }

    #category .item h5 {
        text-align: center;
        font-size: 25px;
        color: #166b93;
        padding-top: 14px;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }

#category .card-body {
    padding: 0px;
}
