/*megamenu css starts here*/

.navbar {
    padding: 0;
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    z-index: 99;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

@media only screen and (max-width: 991px) {
    .navbar {
        background-color: var(--thirdcolor);
    }
}

.navbar.fixed {
    background-color: var(--firstcolor);
    border-bottom: 1px solid rgba(56, 56, 56, 0.2);
    transition: all 0.2s;
}

@media only screen and (max-width: 991px) {
    .navbar.fixed {
        background-color: var(--thirdcolor);
        border-bottom: none;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .container {
        max-width: none;
    }
}

.navbar .menu-logo .logo img {
    width: 59px;
    aspect-ratio: auto 59/39;
    height: auto;
    max-width: 100%;
}

@media only screen and (max-width: 991px) {
    .navbar .menu-logo .logo img {
        filter: blur(0) invert(1);
    }
}

@media only screen and (min-width: 992px) {
    .navbar .wrap-outer {
        position: inherit;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .wrap-outer {
        padding: 15px;
        background-color: var(--thirdcolor);
    }
}

@media only screen and (min-width: 992px) {
    .navbar .navbar-nav .nav-item {
        position: inherit;
    }
}

.navbar .navbar-nav .nav-link {
    padding: 30px 20px;
    transition: 0.3s;
    font-size: 16px;
    line-height: 21px;
    font-weight: 600;
    text-transform: uppercase;
    color: #131c39;
    position: relative;
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-nav .nav-link {
        padding: 25px 70px 25px 15px;
        color: var(--firstcolor);
        letter-spacing: 0.7px;
    }
}

@media only screen and (max-width: 767px) {
    .navbar .navbar-nav .nav-link {
        padding: 18px 70px 18px 15px;
    }
}

.navbar .navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 2px;
    background: #131c39;
    width: 0;
    bottom: 26px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s linear;
}

.navbar .navbar-nav .nav-link:hover:before {
    opacity: 1;
    visibility: visible;
    width: calc(100% - 40px);
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-nav .nav-link:hover:before {
        opacity: 0;
    }
}

.navbar-nav .dropdown-menu {
    position: absolute;
    width: 100%;
    background: var(--firstcolor);
    left: 0;
    top: 80px;
    padding: 0;
    border: 0;
    border-radius: 0;
}

@media only screen and (min-width: 992px) {
    .navbar .navbar-nav .nav-item {
        position: inherit;
    }
}

@media only screen and (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        position: relative;
        top: 0;
        border: none;
        margin: 0;
    }
}

.navbar .dropdown-toggle::after {
    display: none;
}

.navbar .wrap-outer .contact-btns {
    margin-left: 20px;
}

@media only screen and (max-width: 991px) {
    .navbar .wrap-outer .contact-btns {
        margin-left: 0;
        margin-right: 15px;
    }
}

.navbar .wrap-outer .contact-btns .commonbtn-outer .btn-green {
    font-size: 16px;
    line-height: 21px;
    font-weight: 600;
    padding: 15px 22px;
    letter-spacing: 0.3px;
}

@media only screen and (max-width: 991px) {
    .navbar .wrap-outer .contact-btns .commonbtn-outer .header__button {
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .navbar .wrap-outer .contact-btns .commonbtn-outer .header__button {
        padding: 8px 16px;
    }
}

/* .navbar .wrap-outer .contact-btns .commonbtn-outer .resp-btn img{
    width: 31px;
    aspect-ratio: auto 31/23;
    height: auto;
} */

@media only screen and (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        width: 100%;
        top: 81px;
        left: 0;
        height: 100vh;
        z-index: -1;
        padding-right: 0;
        overflow: hidden;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .common-menu-outer {
        height: 100vh;
        width: 100%;
        position: fixed;
        z-index: 1;
        top: 0;
        right: 0;
        background-color: var(--thirdcolor);
        overflow-x: hidden;
        transition: 0.3s;
        padding-top: 81px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        transform: translateX(100%);
    }
}

@media only screen and (max-width: 991px) {
    .navbar .common-menu-outer .bottomview {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-top: 10px;
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .common-menu-outer .bottomview .content-wrap {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .common-menu-outer .bottomview .content-wrap .block {
        display: flex;
        flex-direction: column;
        gap: 10px;
        opacity: 0.6;
    }
}

@media only screen and (max-width: 767px) {
    .navbar .common-menu-outer .bottomview .content-wrap .block {
        gap: 5px;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .common-menu-outer .bottomview .block .social-media {
        gap: 10px;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .common-menu-outer .bottomview .block .social-media li img {
        width: 40px;
        aspect-ratio: auto 40/40;
        height: auto;
    }
}

@media only screen and (max-width: 575px) {
    .navbar .common-menu-outer .bottomview .block .social-media li img {
        width: 30px;
        aspect-ratio: auto 30/30;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-collapse.show .common-menu-outer {
        transform: translate(0);
    }
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-collapse.show .navbar-nav li {
        /* position: relative; */
    }
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-collapse.show .navbar-nav li:after {
        content: "";
        position: absolute;
        width: calc(100% - 30px);
        left: 0;
        right: 0;
        margin: 0 auto;
        background-color: rgba(253, 253, 253, 0.16);
        height: 1px;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-collapse.show .navbar-nav li:last-child:after {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-nav .nav-link.dropdown-toggle {
        position: relative;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-nav .nav-link.dropdown-toggle:hover {
        background-color: var(--secondcolor);
    }
}

.navbar .wrap-outer .navbar-toggler {
    border-radius: 0;
    padding: 20px 0 22px;
    border: none;
    outline: 0;
}

.navbar .wrap-outer .navbar-toggler .navbar-toggler-icon {
    align-items: center;
    justify-content: center;
    position: relative;
    display: block;
    background-color: transparent;
    height: auto;
}

.navbar .wrap-outer .navbar-toggler .navbar-toggler-icon .lines {
    width: 30px;
    height: 2px;
    background-color: var(--firstcolor);
    display: block;
    transition: 0.3s ease-in;
}

.navbar .wrap-outer .navbar-toggler .navbar-toggler-icon .lines:nth-child(2) {
    transform: none;
    position: absolute;
}

.navbar .wrap-outer .navbar-toggler .navbar-toggler-icon .lines:first-child {
    transform: rotate(-45deg);
}

.navbar .wrap-outer .navbar-toggler .navbar-toggler-icon .lines:nth-child(2) {
    transform: rotate(45deg);
    top: 0;
}

.navbar .wrap-outer .navbar-toggler.collapsed .navbar-toggler-icon .lines {
    transform: none;
    transition: 0.3s ease-out;
}

.navbar .wrap-outer .navbar-toggler.collapsed .navbar-toggler-icon .lines:nth-child(2) {
    top: 8px;
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-nav .dropdown .nav-link.dropdown-toggle:before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 29px;
        left: auto;
        width: 2px;
        height: 20px;
        opacity: 1;
        visibility: visible;
        background-color: var(--firstcolor);
        transition: 0.3s ease-in;
        border-radius: 99em;
    }
}

@media only screen and (max-width: 575px) {
    .navbar .navbar-nav .dropdown .nav-link.dropdown-toggle:before {
        height: 15px;
        right: 22px;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-nav .dropdown.show .nav-link.dropdown-toggle:before {
        transform: translateY(-50%) rotate(90deg);
    }
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-nav .dropdown .nav-link.dropdown-toggle:hover:before {
        background-color: var(--firstcolor);
    }
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-nav .dropdown .nav-link.dropdown-toggle:after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
        width: 20px;
        height: 2px;
        background-color: var(--firstcolor);
        border: none;
        margin: 0;
        display: block;
        transition: 0.3s ease-in;
        border-radius: 99em;
    }
}

@media only screen and (max-width: 575px) {
    .navbar .navbar-nav .dropdown .nav-link.dropdown-toggle:after {
        width: 15px;
        right: 15px;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-nav .dropdown .nav-link.dropdown-toggle:hover:after {
        background-color: var(--firstcolor);
    }
}

.megamenu-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    clear: both;
}

.megamenu-inner:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 240px;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='243' fill='none'%3E%3Cpath opacity='.54' d='M.176 241v1.5h3V241h-3Zm0-241v241h3V0h-3Z' fill='url(%23a)'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='-.324' y1='-91.4' x2='.78' y2='206.983' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='.405' stop-color='%23fff'/%3E%3Cstop offset='.6' stop-color='%23CBAB6A'/%3E%3Cstop offset='.725' stop-color='%23BDB996' stop-opacity='.6'/%3E%3Cstop offset='1' stop-color='%23EDECE2' stop-opacity='.6'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    left: 0;
    right: 70px;
    margin: 0 auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .megamenu-inner:before {
        right: 0;
    }
}

@media only screen and (max-width: 991px) {
    .megamenu-inner:before {
        display: none;
    }
}

.megamenu-inner .container {
    display: block;
}

@media only screen and (max-width: 991px) {
    .megamenu-inner .col-md-6:nth-child(1) {
        display: none;
    }
}

.megamenu-inner .div-blue {
    position: absolute;
    width: 26.146vw;
    height: 31.719vw;
    bottom: -20.313vw;
    left: -8.594vw;
    border-radius: 609px;
    background-color: var(--bluesky);
    filter: blur(96.5px);
}

@media only screen and (max-width: 991px) {
    .megamenu-inner .div-blue {
        display: none;
    }
}

.header-tabs .div-middle,
.megamenu-inner .div-middle {
    position: absolute;
    width: 39.749vw;
    height: 14.672vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%) rotate(120.681deg);
    border-radius: 763.175px;
    opacity: 0.5;
    background: rgba(249, 200, 104, 0.33);
    filter: blur(136.5px);
}

.megamenu-inner-grid {
    width: 100%;
    height: 100%;
    padding: 60px 0;
    position: relative;
}

@media only screen and (max-width: 1599px) {
    .megamenu-inner-grid {
        padding: 30px 0;
    }
}

@media only screen and (max-width: 767px) {
    .megamenu-inner-grid {
        padding: 20px 0;
    }
}

.megamenu-item .featured-text {
    margin: 0 0 20px;
    color: rgba(10, 10, 10, 0.5);
}

.megamenu-inner-grid .megamenu-item.leftside {
    max-width: 440px;
}

.megamenu-inner-grid .megamenu-item.rightside {
    padding-left: 50px;
}

@media only screen and (max-width: 1199px) {
    .megamenu-inner-grid .megamenu-item.rightside {
        padding-left: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .megamenu-inner-grid .megamenu-item.rightside {
        padding-left: 0;
    }
}

@media only screen and (max-width: 991px) {
    .megamenu-inner-grid .megamenu-item.rightside .menu-heading {
        display: none !important;
    }
}

@media only screen and (max-width: 991px) {
    .megamenu-inner-grid .megamenu-item.rightside .para-text {
        display: none;
    }
}

.megamenu-inner-grid .featured-with-title-main {
    display: flex;
    flex-wrap: wrap;
}

.megamenu-inner-grid .featured-with-media {
    width: 390px;
    height: 245px;
    overflow: hidden;
}

@media only screen and (max-width: 1599px) {
    .megamenu-inner-grid .featured-with-media {
        width: 300px;
        height: 200px;
    }
}

.megamenu-inner-grid .featured-with-media.career-wrap {
    width: 323px;
    height: 170px;
    overflow: hidden;
}

@media only screen and (max-width: 1599px) {
    .megamenu-inner-grid .featured-with-media.career-wrap {
        width: 300px;
        height: 150px;
    }
}

.megamenu-inner-grid .featured-with-media img {
    width: 390px;
    aspect-ratio: auto 390/245;
    height: auto;
    object-fit: contain;
}

@media only screen and (max-width: 1599px) {
    .megamenu-inner-grid .featured-with-media img {
        height: 100%;
        object-fit: cover;
    }
}

.megamenu-inner-grid .featured-with-media img.career-pic {
    width: 323px;
    aspect-ratio: auto 323/170;
    object-fit: contain;
}

.megamenu-inner-grid .featured-with-title-main .featured-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media only screen and (max-width: 1599px) {
    .megamenu-inner-grid .featured-with-title-main .featured-content {
        gap: 15px;
    }
}

.megamenu-inner-grid .sub-mega-menu {
    margin-top: 50px;
}

@media only screen and (max-width: 1599px) {
    .megamenu-inner-grid .sub-mega-menu {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .megamenu-inner-grid .sub-mega-menu {
        margin-top: 0;
    }
}

.megamenu-inner-grid .sub-mega-menu li {
    float: none !important;
    margin: 0 0 14px;
}

@media only screen and (max-width: 1599px) {
    .megamenu-inner-grid .sub-mega-menu li {
        float: none !important;
        margin: 0 0 10px;
    }
}

@media only screen and (max-width: 991px) {
    .megamenu-inner-grid .sub-mega-menu li {
        float: none !important;
        margin: 0 0 5px;
    }
}

.megamenu-inner-grid .sub-mega-menu li:last-child {
    margin: 0;
}

.megamenu-inner-grid .sub-mega-menu.menu-lists li {
    width: 50%;
}

.megamenu-inner-grid .sub-mega-menu li a {
    color: #131c39;
    position: relative;
    width: max-content;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.megamenu-inner-grid .sub-mega-menu li a:hover {
    color: var(--secondcolor);
    text-decoration: underline;
    transition: var(--transition);
}

.megamenu-inner-grid .menu-list-links {
    margin-top: 50px;
}

@media only screen and (max-width: 1599px) {
    .megamenu-inner-grid .menu-list-links {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 1199px) {
    .megamenu-inner-grid .menu-list-links {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .megamenu-inner-grid .menu-list-links {
        margin-top: 0;
    }
}

@media only screen and (max-width: 991px) {
    .megamenu-inner-grid .menu-list-links .item:nth-child(2) {
        margin-top: 5px;
    }
}

.megamenu-inner-grid .menu-list-links .sub-mega-menu {
    margin-top: 0;
}

.megamenu-inner-grid .portfolio-main {
    display: flex;
    gap: 50px;
}

@media only screen and (max-width: 1199px) {
    .megamenu-inner-grid .portfolio-main {
        gap: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .megamenu-inner-grid .portfolio-main {
        display: none;
    }
}

.megamenu-inner-grid .portfolio-main .portfolio-grid {
    position: relative;
    width: 250px;
    z-index: 1;
}

.megamenu-inner-grid .portfolio-main .portfolio-media {
    position: relative;
    overflow: hidden;
    max-width: 250px;
    border-radius: 10px;
}

.megamenu-inner-grid .portfolio-main .portfolio-media a {
    overflow: hidden;
    width: 100%;
    display: block;
    height: 100%;
}

.megamenu-inner-grid .portfolio-main .portfolio-media img {
    width: 250px;
    aspect-ratio: auto 250/290;
    height: auto;
}

/* START : Tabs */

.navbar .tab-pane {
    display: none;
    overflow: hidden;
}

.navbar .tab-pane-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 80px;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    top: 60px;
    left: 400px;
    transition: all 0.3s ease;
}

@media only screen and (max-width: 1199px) {
    .navbar .tab-pane-grid {
        grid-gap: 30px;
        top: 30px;
        left: 300px;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .tab-pane-grid {
        grid-gap: 10px;
        position: relative;
        top: initial;
        left: initial;
        grid-template-columns: 1fr;
        /* display: none; */
        opacity: 1;
        pointer-events: all;
        padding: 10px 0 10px 10px;
    }
}

.navbar .tab-pane-grid.active {
    opacity: 1;
    pointer-events: all;
}

@media only screen and (max-width: 991px) {
    .navbar .tab-pane-grid.active {
        display: grid;
    }
}

.navbar .tab-pane-grid ul {
    display: grid;
    grid-gap: 10px;
}

.navbar .header-tabs ul {
    display: grid;
    gap: 18px;
}

@media only screen and (max-width: 991px) {
    .navbar .header-tabs ul {
        gap: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .navbar .header-tabs ul {
        gap: 12px;
    }
}

.navbar .header-tabs > ul {
    gap: 32px;
}

.navbar .header-tabs > ul::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 240px;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='243' fill='none'%3E%3Cpath opacity='.54' d='M.176 241v1.5h3V241h-3Zm0-241v241h3V0h-3Z' fill='url(%23a)'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='-.324' y1='-91.4' x2='.78' y2='206.983' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='.405' stop-color='%23fff'/%3E%3Cstop offset='.6' stop-color='%23CBAB6A'/%3E%3Cstop offset='.725' stop-color='%23BDB996' stop-opacity='.6'/%3E%3Cstop offset='1' stop-color='%23EDECE2' stop-opacity='.6'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    left: 300px;
}

@media screen and (max-width: 1199px) {
    .navbar .header-tabs > ul::before {
        top: 20px;
        transform: translateY(0%);
        left: 250px;
    }
}

@media screen and (max-width: 991px) {
    .navbar .header-tabs > ul::before {
        display: none;
    }
}

.navbar .header-tabs ul li a {
    color: #131c39;
    transition: all 0.3s ease;
}

.navbar .header-tabs ul li a:hover {
    color: #30b72a;
    text-decoration: underline;
}

.navbar .tab-pane.show.active {
    display: block;
    /* Shows the active tab */
}

.navbar .header-tabs > nav {
    gap: 32px;
    align-items: flex-start;
}

@media only screen and (max-width: 991px) {
    .navbar .header-tabs > nav {
        gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .navbar .header-tabs > nav {
        gap: 14px;
    }
}

.navbar .header-tabs .nav-link {
    padding: 0;
    font-weight: 700;
    font-size: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media only screen and (max-width: 1199px) {
    .navbar .header-tabs .nav-link {
        font-size: 18px;
    }
}

.navbar .header-tabs .nav-link .arrow {
    display: none;
}

@media only screen and (max-width: 991px) {
    .navbar .header-tabs .nav-link {
        color: #131c39;
        /* padding: 8px; */
        font-weight: 600;
        /* background-color: rgba(19, 28, 57, 0.05); */
        display: block;
        border-radius: 6px;
        position: relative;
    }

    .navbar .header-tabs .nav-link svg {
        display: none;
    }

    .navbar .header-tabs .nav-link .arrow {
        content: "";
        display: block;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        height: 20px;
        width: 20px;
        position: absolute;
        right: -2px;
        top: 3px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 11;
    }

    .navbar .header-tabs .nav-link.active .arrow {
        transform: rotate(180deg);
        top: 1px;
    }
}

@media only screen and (max-width: 767px) {
    .navbar .header-tabs .nav-link {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 600;
    }
}

.navbar .header-tabs .nav-link.active,
.navbar .header-tabs .nav-link:hover {
    color: #30b72a;
    padding: 0;
    background-color: transparent;
}

@media only screen and (max-width: 991px) {
    .navbar .header-tabs .nav-link.active,
    .navbar .header-tabs .nav-link:hover {
        /* padding: 8px; */
        /* background-color: rgba(19, 28, 57, 0.06); */
    }
}

.navbar .header-tabs {
    position: relative;
    min-height: 350px;
    padding: 60px 0;
}

@media only screen and (max-width: 1199px) {
    .navbar .header-tabs {
        grid-template-columns: 250px 1fr;
        padding: 30px 0;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .header-tabs {
        min-height: 1px;
    }
}

@media only screen and (max-width: 767px) {
    .navbar .header-tabs {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px 0;
    }
}

.no-before::before {
    display: none;
}

.header-tabs.new-div-jul li .tab-pane-grid ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media only screen and (min-width: 768px) {
    .header-tabs.new-div-jul li .tab-pane-grid ul li {
        margin: 0 0 18px;
    }
}
.header-tabs.new-div-jul li .tab-pane-grid ul li:last-child {
    margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-tabs.new-div-jul li .tab-pane-grid ul li:last-child {
        margin: 0 0 18px;
    }
}

/* END : Tabs */
