/*-- 
    -- google font
    -- waves effect
    -- preloader 
    -- header
    -- navigation
    -- carousel
    -- footer
--*/

/*-- google font --*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

/*--custom grid--*/

@media (min-width: 992px) {
    .col-md-1-5 { width: 20%; }
    .col-md-2-5 { width: 40%; }
    .col-md-3-5 { width: 60%; }
    .col-md-4-5 { width: 80%; }
    .col-md-5-5 { width: 100%; }
}

@media (min-width: 1200px) {
    .col-lg-1-5 { width: 20%; }
    .col-lg-2-5 { width: 40%; }
    .col-lg-3-5 { width: 60%; }
    .col-lg-4-5 { width: 80%; }
    .col-lg-5-5 { width: 100%; }
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    background: #FFF;
}

p {
    color: #505050;
    font-size: 16px;
    font-weight: 400;
}

.dropdown-toggle::after {
    border-top: 0.4em solid !important;
}

/*--collout--*/

.callout{
    /* padding: 0 0 0 40px;
    border: none;
    border-left: 4px solid #BA0101; */
    text-align: center;
}

.callout h3{
    color: #1B1A1E;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
}

/*-- button --*/

.btn-theme {
    position: relative;
    padding: 13px 60px 13px 30px;
    color: #BA0101;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border: 2px solid #BA0101;
    border-radius: 0;

    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.btn-theme.btn-theme-white{
    color: #FFF;
    border-color: #FFF;
}

.btn-theme.btn-theme-fill{
    color: #FFF;
    background: #BA0101;
}

.btn-theme-sm{
    padding: 8px 60px 8px 30px;
}

.btn-theme i,
.btn-theme img {
    position: absolute;
    top: 16px;
    right: 30px;
}

.btn-theme:focus,
.btn-theme:hover {
    padding: 13px 45px;
    color: #FFF;
    background: #BA0101;
    border: 2px solid #BA0101;

    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.btn-theme-sm:focus,
.btn-theme-sm:hover {
    padding: 8px 45px;
}

.btn-theme-sm i,
.btn-theme-sm img {
    top: 12px;
}

.btn-theme:focus i,
.btn-theme:hover i,
.btn-theme:focus img,
.btn-theme:hover img {
    display: none;
}

.cbtn {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 46px;
    color: #FFF;
    text-align: center;
    background: #BA0101;
    border-radius: 50%;

    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.cbtn:hover {
    background: #000642;

    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.cbtn i,
.cbtn img {
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
    transform: scale(.9);

    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.cbtn:hover i,
.cbtn:hover img {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);

    -webkit-transition: all ease .5s;
       -moz-transition: all ease .5s;
        -ms-transition: all ease .5s;
         -o-transition: all ease .5s;
            transition: all ease .5s;
}

/*-- waves effect --*/

.waves-effect {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    vertical-align: middle;
    z-index: 1;
    will-change: opacity, transform;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out
}

.waves-effect .waves-ripple {
    position: absolute;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
    -webkit-transition-property: -webkit-transform, opacity;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transform: scale(0);
    transform: scale(0);
    pointer-events: none
}

.waves-effect.waves-light .waves-ripple {
    background-color: rgba(255, 255, 255, 0.45)
}

.waves-effect.waves-red .waves-ripple {
    background-color: rgba(244, 67, 54, 0.7)
}

.waves-effect.waves-yellow .waves-ripple {
    background-color: rgba(255, 235, 59, 0.7)
}

.waves-effect.waves-orange .waves-ripple {
    background-color: rgba(255, 152, 0, 0.7)
}

.waves-effect.waves-purple .waves-ripple {
    background-color: rgba(156, 39, 176, 0.7)
}

.waves-effect.waves-green .waves-ripple {
    background-color: rgba(76, 175, 80, 0.7)
}

.waves-effect.waves-teal .waves-ripple {
    background-color: rgba(0, 150, 136, 0.7)
}

/*-- preloader --*/

.preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
    position: absolute;
    top: calc(50% - 3.5px);
    left: calc(50% - 3.5px)
}

.lds-ripple .lds-pos {
    position: absolute;
    border: 2px solid #2962ff;
    opacity: 1;
    border-radius: 50%;
    -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.1, 0.5, 1) infinite;
    animation: lds-ripple 1s cubic-bezier(0, 0.1, 0.5, 1) infinite
}

.lds-ripple .lds-pos:nth-child(2) {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s
}

@-webkit-keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 0
    }

    5% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1
    }

    to {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0
    }
}

@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 0
    }

    5% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1
    }

    to {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0
    }
}

/*-- swiper --*/

.swiper-button-next,
.swiper-button-prev {
    width: 44px;
    height: 44px;
    z-index: 1;

    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: transparent;

    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #000;
    font-size: 20px;

    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);

    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: #FFF;

    -moz-transform: scale(.6);
    -ms-transform: scale(.6);
    -o-transform: scale(.6);
    transform: scale(.6);

    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.swiper-button-next:after {
    /*content: "\f178";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;*/
    content: "";
    background: url(../img/right-arrow.png) no-repeat center center;
    width: 21px;
    height: 18px;
}

.swiper-button-prev:after {
    /*content: "\f177";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;*/
    content: "";
    background: url(../img/left-arrow.png) no-repeat center center;
    width: 21px;
    height: 18px;
}

.sbnw:after {
    background: url(../img/white-right-arrow.png) no-repeat center center;
}

.sbpw:after {
    background: url(../img/white-left-arrow.png) no-repeat center center;
}

.probrandSwiper{
    padding: 0 15px;
}

.spring-slider {
    position: relative;
}

.spring-slider .swiper-button-prev {
    left: -48px;
}

.spring-slider .swiper-button-next {
    right: -48px;
}

.spring-slider.arrowSet .swiper-button-prev {
    left: -110px;
}

.spring-slider.arrowSet .swiper-button-next {
    right: -110px;
}

.spring-px-xl{
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

@media (max-width: 768px){
    .spring-px-md{
        padding-left: 3rem;
        padding-right: 3rem;
    } 
}

/*-- header --*/

.header {
    position: relative;
    padding: 0;
    background: #FFF;
    height: 80px;
    line-height: 80px;
    transition: all ease .5s;
}

.header.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    z-index: 9;
/*    animation: fadeInDown .5s;*/
}

@media (max-width: 1200px) {
    .header {
        height: auto;
        line-height: normal;
    }
}

/*-- navigation --*/

.main-menu {
    position: relative;
    padding: 0;
    line-height: normal;
}

.main-menu .navbar-brand {
    padding: 19px 0;
    width: 100%;
    max-width: 240px;
    line-height: normal;
}

.main-menu .navbar-nav .nav-item .nav-link {
    padding: 0 10px;
    color: #000642;
    font-size: 14px;
    font-weight: 700;
    line-height: 80px;
    text-transform: uppercase;
}

.main-menu .navbar-nav .nav-item .nav-link:hover,
.main-menu .navbar-nav .nav-item .active {
    color: #BA0101;
}

.main-menu .navbar-toggler {
    padding: 0;
    border: none;
}

.main-menu .dropdown-menu{
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 0px 4px 7px -1px rgb(0 0 0 / 40%);
       -moz-box-shadow: 0px 4px 7px -1px rgb(0 0 0 / 40%);
            box-shadow: 0px 4px 7px -1px rgb(0 0 0 / 40%);
}

.main-menu .dropdown-menu .dropdown-item{
    padding: 12px 15px;
    color: #000;
    font-size: 14px;
    border-bottom: 1px solid #f1f1f1;
}

.main-menu .dropdown-menu .dropdown-item:hover,
.main-menu .dropdown-menu .dropdown-item:focus,
.main-menu .dropdown-menu .dropdown-item.active,
.main-menu .dropdown-menu .dropdown-item:active{
    background-color: var(--bs-dropdown-link-hover-bg);
}
.main-menu .dropdown-menu.lastMenu {
    right: 0;
}
@media (min-width: 1200px) {
    .main-menu .dropdown:hover .dropdown-menu,
    .main-menu .dropdown.show:hover .dropdown-menu{
        display: block;
        animation: fadeInUp .5s;
    }
}

@media (max-width: 1200px) {
    #main-navigation {
        position: fixed;
        top: 80px;
        right: -250px;
        bottom: 0;
        margin: 0;
        padding: 0;
        display: block;
        width: 250px;
        height: calc(100% - 80px);
        background: #FFF;
        overflow-y: auto;
        border-top: 1px solid #f1f1f1;

        transition: ease all .5s;
    }

    #main-navigation.show {
        position: fixed;
        top: 80px;
        right: 0;
        bottom: 0;
        margin: 0;
        padding: 0;
        width: 250px;
        height: calc(100% - 80px);
        background: #FFF;
        overflow-y: auto;
        border-top: 1px solid #f1f1f1;
        transition: ease all .5s;
        z-index: 99;
        box-shadow: -1px 5px 10px -2px rgb(0 0 0 / 30%);
    }

    .main-menu .navbar-nav .nav-item .nav-link {
        position: relative;
        padding: 10px 15px;
        font-weight: 400;
        line-height: normal;
        text-transform: none;
        border-bottom: 1px solid #f1f1f1;
    }

    .dropdown-toggle::after{
        position: absolute;
        top: 16px;
        right: 5px;
    }

    .main-menu .dropdown-menu{
        box-shadow: none;
    }

    .main-menu .dropdown-menu .dropdown-item{
        padding-left: 30px;
        white-space: normal;
    }
}

/*-- hamburger icon --*/

.hamburger .line {
    width: 36px;
    height: 2px;
    background-color: #BA0101;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-6.is-active {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger-6.is-active .line:nth-child(2) {
    width: 0px;
}

#hamburger-6.is-active .line:nth-child(1),
#hamburger-6.is-active .line:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

#hamburger-6.is-active .line:nth-child(1) {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}

#hamburger-6.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(90deg);
    -ms-transform: translateY(-10px) rotate(90deg);
    -o-transform: translateY(-10px) rotate(90deg);
    transform: translateY(-10px) rotate(90deg);
}

/*-- search --*/

.search-box .btn {
    position: absolute;
    top: 22px;
    right: 11px;
    color: #b80404;
    border: none;
    border-radius: 0;
}

.search-box .btn:focus,
.search-box .btn:hover {
    color: #FFF;
    background: #b80404;
}

.app-search {
    left: 0px;
    right: 0;
    top: -1px;
    display: none;
    width: 100%;
    border: none;
    box-shadow: none !important;
    z-index: 110;
}

.app-search .form-control {
    padding: 21px 15px;
    height: 80px;
    border: none;
    border-radius: 0;
    box-shadow: none !important;
}

.app-search .form-control:focus {
    border-color: transparent
}

.app-search .srh-btn {
    position: absolute;
    top: 30px;
    cursor: pointer;
    right: 20px;
    color: #b80404;
}

@media (max-width: 1200px) {
    .search-box .btn {
        right: 63px;
    }
}

.form-label{
    color: #000;
    font-weight: 400; 
}

.form-control{
    color: #000;
    font-weight: 400;
    line-height: 37px;
    border-radius: 0;
}

/*-- carousel --*/

#main-slider {
    position: relative;
    margin-top: 0;
}

#main-slider .carousel-item{
    position: relative;
}

#main-slider .carousel-item::before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: rgb(0,6,66);
    background: linear-gradient(23deg, rgba(0,6,66,1) 0%, rgba(255,255,255,0) 75%, rgba(252,252,252,0) 100%);   
}

#main-slider .carousel-caption {
    position: absolute;
    right: 0;
    bottom: 15%;
    left: 0;
    padding-top: 0;
    padding-bottom: 70px;
    color: #fff;
    text-align: left;
    z-index: 1;
}

#main-slider .carousel-caption h5 {
    position: relative;
    margin: 0;
    padding: 0 0 0 70px;
    font-size: 20px;
    font-weight: bold;
    line-height: 24px;
}

#main-slider .carousel-caption h5::before {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    content: "";
    width: 54px;
    height: 2px;
    background: #FFF;
}

#main-slider .carousel-caption p {
    margin: 0;
    padding: 0 0 0;
    font-size: 54px;
    font-weight: 700;
    line-height: 60px;
}

#main-slider .carousel-control-prev,
#main-slider .carousel-control-next {
    position: absolute;
    top: auto;
    left: 12px;
    bottom: 0;
    margin: 0;
    padding: 0;
    width: 54px;
    height: 54px;
    text-align: center;
    opacity: 1;
    border: 2px solid #FFF;
}

#main-slider .carousel-control-next {
    left: 82px;
}

#main-slider .carousel-control-prev:hover,
#main-slider .carousel-control-next:hover {
    color: #b80404;
    background: #FFF;
}

@media (max-width: 767px) {
    #main-slider .carousel-caption h5{
        font-size: 14px;
        line-height: 16px;
    }

    #main-slider .carousel-caption p{
        font-size: 36px;
        line-height: 40px;
    }

    #main-slider .carousel-control-prev,
    #main-slider .carousel-control-next{
        width: 34px;
        height: 34px;
    }

    #main-slider .carousel-caption{
        padding-bottom: 50px;
        bottom: 10%;
    }

    #main-slider .carousel-control-next{
        left: 56px;
    }
}

@media (max-width: 500px) {
    #main-slider .carousel-caption h5{
        font-size: 14px;
        line-height: 16px;
    }

    #main-slider .carousel-caption p{
        font-size: 18px;
        line-height: 20px;
    }

    #main-slider .carousel-control-prev,
    #main-slider .carousel-control-next{
        width: 34px;
        height: 34px;
    }

    #main-slider .carousel-caption{
        padding-bottom: 50px;
        bottom: 10%;
    }
}

/*-- section layout --*/

.section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg1{
    background: #EEF1F1;
}

.section-bg2{
    background: #000642 url(../img/section-bg2.png) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.section-bg3{
    background: #BA0101;
}

.section-bg4{
    background: #000642;
}

.section-bg5{
    background: #EEF1F1;
}

.section-title {
    position: relative;
    margin: 0 0 25px;
    padding: 0 0 25px;
}

.section-title::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 112px;
    height: 4px;
    background: #BA0101;
    animation: fadeInDown 2s;
}

.section-title-sub h3{
    margin: 0 0 20px;
    font-size: 30px;
    line-height: 50px;
    font-weight: 700;
}

.no-divider {
    margin: 0;
    padding: 0;
}

.no-divider::before {
    display: none;
}

.section-title.st-center::before {
    right: 0;
    margin: 0 auto;
}

.section-title h3 {
    margin: 0 0 20px;
    font-size: 40px;
    font-weight: 700;
    line-height: 33px;
}

.section-title p {
    margin: 0;
    padding: 0;
}

/*-- page Top banner --*/
.page-header-banner {
    display: block;
}
/*-- page Top banner --*/
/*-- page banner --*/

.page-banner{
    /* padding: 50px 0;
    background: url(../img/page-banner/bg.png) no-repeat center center;
    background-size: cover; */
    padding: 50px 0 20px 0;
}

.page-banner h3{
    margin: 0;
    color: #BA0101;
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    text-transform: capitalize;
}

@media (max-width: 991px){
    .page-banner h3{
        font-size: 24px;
        line-height: 38px;
        text-transform: none;
    }
}

/* .page-banner .breadcrumb{
    margin: 0;
}

.page-banner .breadcrumb .breadcrumb-item,
.page-banner .breadcrumb .breadcrumb-item a{
    color: #505050;
    font-size: 14px;
    font-weight: 500;
    line-height: 40px;
    text-decoration: none;
}

.page-banner .breadcrumb-item+.breadcrumb-item::before{
    color: #505050;
} */

.breadcrumb-section{
    background: #f7f7f7;
    border-bottom: 1px solid #f1f1f1;
}

.breadcrumb-section .breadcrumb{
    margin: 0;
}

.breadcrumb-section .breadcrumb .breadcrumb-item,
.breadcrumb-section .breadcrumb .breadcrumb-item a{
    color: #505050;
    font-size: 14px;
    font-weight: 500;
    line-height: 40px;
    text-decoration: none;
}

.breadcrumb-section .breadcrumb-item+.breadcrumb-item::before{
    color: #505050;
}

/*-- jsonModal --*/

#jsonModal .modal-content{
    border-radius: 0;
}

#jsonModal .modal-content .modal-header .modal-title{
    color: #1B1A1E;
    font-size: 18px;
    font-weight: 600;
}

#jsonModal .modal-content .modal-header .modal-title span{
    display: block;
    color: #666666;
    font-size: 15px;
    font-weight: 300;
}

#jsonModal .modal-content .modal-body p{
    text-align: justify;
}

/*-- home product slider --*/

.pro-box {
    position: relative;
    max-width: 263px;
}

.pro-img {
    margin-bottom: 65px;
    overflow: hidden;
}

.pro-img img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);

    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.pro-box:hover .pro-img img {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);

    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.pro-content {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: -63px;
    margin: 20px;
    padding: 20px;
    background: #FFF;
    border: 2px solid #f1f1f1;
}

.pro-content h3 {
    font-size: 17px;
    font-weight: 700;
}

.pro-content p {
    color: #505050;
    font-size: 15px;
    font-weight: 400;
    
    /* display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 44px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; */
}

.pro-content a {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 43px;
    color: #FFF;
    text-align: center;
    background: #BA0101;
    border-radius: 50%;

    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.pro-box:hover .pro-content a {
    background: #000642;

    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.pro-box .pro-content a i {
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
    transform: scale(.9);

    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.pro-box:hover .pro-content a i {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);

    -webkit-transition: all ease .5s;
       -moz-transition: all ease .5s;
        -ms-transition: all ease .5s;
         -o-transition: all ease .5s;
            transition: all ease .5s;
}

.sc-box{
    position: relative;
    /*padding: 25px 25px 35px;*/
    padding: 25px;

    -webkit-transition: all ease .5s;
       -moz-transition: all ease .5s;
        -ms-transition: all ease .5s;
         -o-transition: all ease .5s;
            transition: all ease .5s;
}

/*.sc-box:hover{
    background: #BA0101;

    -webkit-transition: all ease .5s;
       -moz-transition: all ease .5s;
        -ms-transition: all ease .5s;
         -o-transition: all ease .5s;
            transition: all ease .5s;
}*/

.sc-box .flex-grow-1{
    font-weight: 400;
    line-height: 20px;
}

.sc-box a {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 22px;
    color: #BA0101;
    font-size: 10px;
    text-align: center;
    background: #FFF;
    border-radius: 50%;

    opacity: 0;

    -webkit-transition: all ease .5s;
       -moz-transition: all ease .5s;
        -ms-transition: all ease .5s;
         -o-transition: all ease .5s;
            transition: all ease .5s;
}

.sc-box:hover a {
    background: #FFF;
    opacity: 1;

    -webkit-transition: all ease .5s;
       -moz-transition: all ease .5s;
        -ms-transition: all ease .5s;
         -o-transition: all ease .5s;
            transition: all ease .5s;
}

@media (max-width: 1200px) {
    .pro-box {
        max-width: 100%;
    }
}

/*--capacities--*/

.capacities-box{
    padding: 0 20px;
    background: #EEF1F1;
}

.capacities-box [class*="col-"] {
    margin-bottom: 20px;
}

.capacities-box .content {
    padding: 20px;
    color: #1B1A1E;
    height: 100%;
    background: #FFF;
    text-align: center;
}

.capacities-box .content .icon{
    margin-bottom: 15px;
}

.capacities-box .content h4{
    color: #BA0101;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
}

.capacities-box .content p{
    margin: 0;
    color: #1B1A1E;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.capacities-box h3{
    color: #1B1A1E;
    font-size: 30px;
    font-weight: 700;
}

/*--strenght and capabilities point--*/

.strenght-dis h3{
    margin: 0 auto 20px auto;
    color: #1B1A1E;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
}
.strenght-dis h5{
    margin: 0 auto 20px auto;
    color: #1B1A1E;
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    width: 72%;
}
@media (max-width: 1200px) {

}
.sc-point{
    position: relative;
    margin-left: 60px;
    margin-bottom: 30px;
    padding: 30px;
    border: 1px solid #C4C4C4;
}

.sc-point::before{
    position: absolute;
    top: 0;
    left: -55px;
    bottom: 0;
    content: "";
    width: 1px;
    height: 130%;
    background: #C4C4C4;
}

.sc-point:last-child:before{
    height: 100%;
}

.sc-point::after{
    position: absolute;
    top: calc(50% - 5px);
    left: -60px;
    bottom: 0;
    content: "";
    width: 10px;
    height: 10px;
    background: #BA0101;
    border-radius: 50%;
}

.arrow-left::before{
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    left: -12px;
    z-index: 1;
    height: 20px;
    width: 31px;
    background: linear-gradient(-45deg, white 20px, rgba(0,0,0,0.2) 20px, rgba(0,0,0,0.2) 22px, transparent 22px), linear-gradient(225deg, white 20px, rgba(0,0,0,0.2) 20px, rgba(0,0,0,0.2) 22px, transparent 22px);
    background-position: left 0px, right bottom;
    background-size: 100% 50%;
    background-repeat: no-repeat;
}

/*.arrow-left::after {
    content: "";
    position: absolute;
    top: 44%;
    left: -30px;
    z-index: 1;
    height: 18px;
    width: 30px;
    border-right: solid 1px white;
    border-top: solid 1px transparent;
    border-bottom: solid 1px transparent;
}*/

.sc-point p{
    margin: 0;
    padding: 0;
    color: #666666;
    font-size: 17px;
    font-weight: 400;
}

/*--product range--*/

.pro-range{
    margin: 0;
    padding: 0;
}

.pro-range .pro-range-content{
    padding: 30px;
    background: #FFF;
}

.pro-range .pro-range-content h3{
    position: relative;
    margin: 0 0 15px;
    padding: 0 0 15px;
    color: #1B1A1E;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

.pro-range .pro-range-content h3::before{
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 112px;
    height: 2px;
    background: #BA0101;
}

.vap{
    padding: 30px;
}

.vap h3{
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 50px;
}

/*--growth box--*/

.grow-box{
    padding: 15px;
    min-height: 294px;
    border: 1px solid #C4C4C4;
    box-shadow: none;

    -webkit-transition: all ease .5s;
       -moz-transition: all ease .5s;
        -ms-transition: all ease .5s;
         -o-transition: all ease .5s;
            transition: all ease .5s;
}

.grow-box:hover{
    border-color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.2) 0 5px 16px;

    -webkit-transition: all ease .5s;
       -moz-transition: all ease .5s;
        -ms-transition: all ease .5s;
         -o-transition: all ease .5s;
            transition: all ease .5s;
}

.grow-box .icon{
    width: 78px;
    height: 78px;
}

.grow-box .content{
    text-align: center;
}

.grow-box .content h2{
    color: #000642;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
}

.grow-box .content p{
    margin: 0;
    padding: 0;
    color: #000642;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
}

.grow-box .content p span{
    display: block;
    font-size: 13px;
    line-height: 20px;
}

.grow-box.gradient {
    background: transparent linear-gradient(181deg, #F9E8D9 0%, #F5ECE4 100%) 0% 0% no-repeat padding-box;
    border: 0;
    width: 100%;
}

.grow-box.gradient .content{
    position: relative;
    padding-top: 30px;
}
.grow-box.gradient .content:after{
    content: '';
    position: absolute;
    width: 112px;
    height: 2px;
    opacity: 0.15;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    background: #000;
}

.grow-box.gradient .icons {
    text-align: center;
    height: 145px;
    display: block;
}

.grow-box.gradient .content h2{
    color: #025744;
}

.grow-box.gradient .content p{
    color: #025744;
    padding-top: 15px;
    padding-bottom: 15px;
}

/*--brand--*/

.brand-img{
    background: #FFF;
    width: 100%;
    height: 100%;
    max-height: 140px;
}
 img.grayscale {
    /* filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: gray;
    -webkit-filter: grayscale(100%); */
    box-shadow: none;    
    -webkit-transform: scale(.7);
       -moz-transform: scale(.7);
        -ms-transform: scale(.7);
         -o-transform: scale(.7);
            transform: scale(.7);
    -webkit-transition: all ease .5s;
       -moz-transition: all ease .5s;
        -ms-transition: all ease .5s;
         -o-transition: all ease .5s;
            transition: all ease .5s;
}

img.grayscale:hover {

    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: gray;

    /* filter: none;
    -webkit-filter: grayscale(0%); */

    -webkit-transform: scale(.8);
       -moz-transform: scale(.8);
        -ms-transform: scale(.8);
         -o-transform: scale(.8);
            transform: scale(.8);

    -webkit-transition: all ease .5s;
       -moz-transition: all ease .5s;
        -ms-transition: all ease .5s;
         -o-transition: all ease .5s;
            transition: all ease .5s;
} 

/*-- manufacturing locations --*/

.mkey-points{
    margin-bottom: 20px;
}

.mkey-points h5{
    color: #1B1A1E;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.mkey-points p{
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.mkey-points ul{
    margin: 0 0 1rem;
    padding: 0 0 0 17px;
}

.mkey-points ul li{
    padding-bottom: 6px;
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.address-box{
    margin-bottom: 40px;
}

.address-box h3{
    margin-bottom: 20px;
    color: #BA0101;
    font-size: 18px;
    font-weight: 600;
    line-height: 21px;
}

.address-box h4{
    margin-bottom: 10px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.address-box p{
    margin-bottom: 10px;
    color: #666666;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

/*-- footer --*/

.footer{
    background: url(../img/footer-bg.png) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.footer p{
    margin: 0;
    padding: 0;
    color: #E1E1E1;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    text-align: justify;
}

.ft-title{
    position: relative;
    margin: 0 0 30px;
    padding: 0 0 4px;
    color: #FFF;
    font-size: 20px;
    line-height: 40px;
    font-weight: 400;
}

.ft-title::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 112px;
    height: 4px;
    background: #BA0101;
}

.quick-link{
    margin: 0;
    padding: 0;
    list-style: none;
}

.quick-link li{
    position: relative;
    margin: 0 0 10px;
    padding: 0;
}

.quick-link li a i{
    position: absolute;
    top: 3px;
    left: 0;
}

.quick-link li a{
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    text-decoration: none;
}

.quick-link li a:focus,
.quick-link li a:hover{
    /*color: #BA0101;*/
    font-weight: 700;
}

.ft-bottom {
    padding: 15px 0;
    border-top: 1px solid #525f5f;
}

.ft-bottom {
    padding: 15px 0;
    border-top: 1px solid #525f5f;
}

.ft-bottom p {
    margin: 0;
    padding: 0;
    color: #E1E1E1;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    text-align: center; 
}

.ft-bottom .privacy-link {
    color: #E1E1E1;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-right: 0 !important;
}

.ft-bottom .separator {
    color: #E1E1E1;
    font-size: 14px;
    line-height: 22px;
    margin: 0 10px;
}



.ft-bottom .privacy-link:hover {
    color: #fff; 
}

@media (max-width: 576px) {
    .ft-bottom {
        text-align: center;
    }

    .ft-bottom .privacy-link {
        margin-bottom: 10px; 
    }
    .ft-bottom .separator{
        display: none;
    }
}


.sectionBoldTxt {
    font-size: 24px;
    font-weight: 500;
    color: #1B1A1E;
}

.sectionPara {
    color: #1B1A1E;
    font-size: 18px;
}

.brandSection {
    background: #EEF1F1;
    text-align: center;
    padding: 50px;
}

.txtClr1B1A1E {
    color: #1B1A1E;
}

.visionImg {
    background: #EEF1F1;
    padding: 40px 0;
    text-align: center;
}

.visionBody {
    padding-left: 75px;
}
@media (max-width: 1200px) {
    .visionBody {
        padding-left: 0px;
    }
}
.visionHead {
    letter-spacing: 0.4px;
    color: #1B1A1E;
    font-size: 40px;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
}

.visionHead:after {
    content: '';
    position: absolute;
    background: #BA0101;
    width: 112px;
    height: 4px;
    bottom: 0;
    left: 0;
}
.visionHeightlight {
    color: #BA0101;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding-bottom: 10px;
}

.section-title h4 {
    position: relative;
    margin: 0 0 20px;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 15px;
}

.section-title h4::before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    width: 112px;
    height: 4px;
    background: #BA0101;
    animation: fadeInDown 2s;
    margin: 0 auto;
}
.valueBox {
    width: 50%;
    padding: 40px 0;
    float: left;
    -webkit-transition: all ease .5s;
       -moz-transition: all ease .5s;
        -ms-transition: all ease .5s;
         -o-transition: all ease .5s;
            transition: all ease .5s;
}
.valueBox:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0 5px 16px;
    -webkit-transition: all ease .5s;
       -moz-transition: all ease .5s;
        -ms-transition: all ease .5s;
         -o-transition: all ease .5s;
            transition: all ease .5s;
}

.valueBox.leftB {    
    position: relative;
}
.valueBox.leftB::before {
    content: '';
    position: absolute;
    bottom: 50px;
    top: 50px;    
    right: 0px;
    border-right: 1px solid #ededed;
}
.valueBox.leftB::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;    
    right: 50px;
    border-bottom: 1px solid #ededed;
}
.valueBox.rightB {
    position: relative;
}
.valueBox.rightB::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;    
    left: 50px;
    border-bottom: 1px solid #ededed;
}
.section .valueBox:nth-child(n+7)::after {
    border-bottom: 0px;   
}

.valueBox .valueIcon {
    margin-bottom: 25px;

}
.valueBox .valueTitle {
    letter-spacing: 0.2px;
    color: #1B1A1E;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 10px;
}

.valueBox .valueTxt {
    letter-spacing: 0.17px;
    color: #666666;
    font-size: 17px;
    line-height: 26px;
    margin: 0 auto;
    width: 65%;
}
.visionMission {
    padding: 40px;
    background: #EEF1F1;
}
@media screen and (min-width : 768px) and (max-width : 1000px) { 
    .visionHead:after {
        right: 0;
        margin: 0 auto;
    }
 }
@media (max-width: 767px) {
    .valueBox {
        width: 100%;
        padding: 15px;
        float: none;
    }
    .valueBox.leftB::before { 
        display: none;
    }
    .section .valueBox:nth-child(n+8)::after {
        border-bottom: 0px !important;   
    }

    .valueBox.rightB::after {
        left: 0;
    }
    .valueBox.leftB::after { 
        right: 0;
    }
    .valueBox .valueTxt {
        width: 100%;
    }
    .visionHead:after {
        right: 0;
        margin: 0 auto;
    }
    .visionMission {
        padding: 20px;
    }
    .lastColBorder::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;    
        right: 50px;
        border-bottom: 1px solid #ededed !important;
    }
}
.setHeight {
    height: 200px;
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: rgb(60 62 87) !important;
}

.img-fluid {
    width: 100%;
}

/*-- Investor Relations --*/

table.responsive {

    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    /* table-layout: fixed; */
}
table.responsive caption {
    text-align: left;
    font-size: 1.3em;
    margin: 0.5em 0 0.75em;
}
table.responsive thead {
    /* display: none; */
}
/* table.responsive thead tr th.link{
    min-width: 115px;
} */
table.responsive tr {
    display: block;
    border: 1px solid #D3D3D3;
    padding: 10px;
}
table.responsive tr + tr {
    margin-top: 0.625em;
}
table.responsive td {
    padding: 10px;
    display: block;
    font-size: 0.8em;
    font-weight: 500;
    line-height: 1.35em;
}
table.responsive td:before {
    padding-bottom: 5px;
    content: attr(data-label);
    font-size: 12px;
    text-align: left;
    font-weight: 900;
    text-transform: none;
    max-width: 100%;
    width: 100%;
    display: block;
    color: #1B1A1E;
}
table.responsive td + td {
    border-top: 1px solid #D3D3D3;
}
table.responsive td:last-child {
    border-bottom: 0;
}
table.responsive td a {
    color: #1B1A1E;
    white-space: normal;
}

.table-borderless{
    border: none;
}

.table-borderless thead tr,
.table-borderless thead tr th,
.table-borderless tbody tr,
.table-borderless tbody tr td{
    border: none !important;
}

.table-borderless thead tr th{
    color: #BA0101;
}

@media screen and (min-width: 600px) {
    table.responsive caption {
        font-size: 1.5em;
   }

    table.responsive thead {
        display: table-header-group;
        white-space: nowrap;
   }
    table.responsive tr {
        display: table-row;
   }
    /* table th, table td {
        text-align: center;
   } */
    table.responsive th {
        font-size: 16px;
        padding: 10px 20px;        
        border: 1px solid #cabbbb;
        background: #f4f4f4;
   }
    table.responsive td {
        display: table-cell;
        padding: 10px 20px;
        font-size: 16px;
        border: 1px solid #D3D3D3;
        /* white-space:nowrap; */
   }
    table.responsive td:before {
        display: none;
   }
    /* table td:last-child {
        border-bottom: 1px solid #D3D3D3;
   } */
}

.career-point h3{
    color: #1B1A1E;
    font-size: 24px;
    font-weight: 600;
}

.career-point .icon{
    margin-bottom: 20px;
}

.career-point h4{
    color: #1B1A1E;
    font-size: 18px;
    font-weight: 600;
}

.outerBorder{
    display: flex;
    border: 1px solid #D3D3D3;
    padding: 40px 0;
}

.colHalf{
    width: 50%;
    padding-left: 30px;
}

.leftBor{
    border-left: 1px solid #D3D3D3;
}

ul.pdfList {
    margin: 0;
    padding: 0;
}

ul.pdfList li{
    list-style: none;
    padding-bottom: 20px;
}

ul.pdfList li a {
    position: relative;
    padding-left: 39px;
    display: block;
    text-decoration: none;
    color: #1B1A1E;
    font-size: 16px;
}
ul.pdfList li a img{
    position: absolute;
    left: 0;
    margin-right: 15px;
    /* transform: (scale(1)); */
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
ul.pdfList li a:hover {
    color: #0A66A9;
}
ul.pdfList li a:hover img{
    transform: scale(1.2);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.accordion-body h5{
    font-size: 16px;
}

.accordionBody {
    display: flex;
    padding: 15px 0;
}

.accordion-button:not(.collapsed) {
    border: 0;
    background: transparent;
    color: #1B1A1E;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 0px;
}

.accordion-button {
    color: #1B1A1E;
    font-size: 18px;
    font-weight: 600;
}

.accordionColHalf {
    width: 50%;
}

.accordionColHalf.leftBp {
    border-left: 1px solid #D3D3D3;
    padding-left: 30px;
}
.accordion-button::after {
    background: url('../img/down-arrow.png') !important;
    background-repeat: no-repeat;
    height: 12px;
}
.accordion-button:focus {
    box-shadow: none;
}

.accordion-body table a {
    text-decoration: none;
}

.accordion-body table a:hover {
    text-decoration: underline;
    font-weight: 500;
}

.shareholders h3{
    margin-bottom: 20px;
    color: #1B1A1E;
    font-size: 18px;
    font-weight: 600;
}


ul.shareholdersList {
    margin: 0;
    padding: 0;
}
ul.shareholdersList li {
    list-style: none;
    border-left: 1px solid #f0c7c8;
    padding-bottom: 30px;
    padding-left: 20px;
    width: 25%;
    float: left;
    margin-bottom: 30px;
}
.holderImage {
    margin-bottom: 10px;
    /* width: 100px;
    height: 100px;
    overflow: hidden; */
}
.holderImage img{
    width: 100px;
    height: 100px;
}
.holderName {
    color: #1B1A1E;
    font-size: 18px;
    font-weight: 600;
}
.holderDest {
    color: #666666;
    font-size: 15px;
}

@media (min-width: 777px) {
    .holderDest {
      min-height: 45px;
    }
}

.committeeCol {
    padding: 20px;
    width: 33.33%;
    float: left;
}

.alterBg {
    background: #F5F5F5;
}

.committePer {
    color: #BA0101;
    font-size: 18px;
    font-weight: 600;
    min-height: 55px;
}

.committeName {
    color: #1B1A1E;
    font-size: 16px;
    font-weight: 600;
    padding-top: 15px;
}

.committeName span {
    color: #666666;
    display: block;
    font-weight: 300;
}
.investorContact {
    width: 50%;
    padding: 20px;
    float: left;
}

.investOff {
    color: #BA0101;
    font-size: 18px;
    font-weight: 600;
}
.investAdd {
    font-size: 16px;
    color: #666666;
    padding-top: 15px;
}
.investAdd b {
    color: #1B1A1E;
    font-weight: 600;
}

.investAdd a {
    color: #666666;
    text-decoration: none;
}

@media screen and (min-width : 768px) and (max-width : 1000px) { 
    ul.shareholdersList li {
        width: 50%;
    }
    .committeeCol {
        width: 50%;
    }
}
@media (min-width: 768px) {
    ul.pdfList li:last-child{
        padding-bottom: 0px;
    }
}
@media (max-width: 767px) {
    .section-title h3 {
        line-height: 50px;
    }
    .outerBorder, .accordionBody {
        display: block;
    }
    .colHalf, .accordionColHalf{
        width: 100%;
    }
    .accordionColHalf.leftBp {
        border-left: 0;
        padding-left: 0px;
    }
    .leftBor {
        border-left: 0;
    }
    ul.shareholdersList li {
        width: 100%;
    }
    .committeeCol, .investorContact {
        width: 100%;
    }
}

/*-- Our History --*/
.ourHistory {
    background: #fff;
}
.ourHistory h4 {
    font-size: 40px;
    color: #1B1A1E;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    margin-top: 0;
    /* margin-top: 30px; */
}
.ourHistory h4::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100px;
    height: 3px;
    bottom: 0;
    background: #ba0101;
}
.calloutTopPadd {
    padding-top: 60px;
}
.weDoMoreDen {
    background: #ba0101 url(../img/ourHistory/we-do-more-bg.png) no-repeat center center;

}
.calloutTopPadd p{
    color: #fff;
    font-size: 17px;
    text-align: center;
    line-height: 26px;
}
.weDoMoreBox {
    background: #fff;
    padding: 60px 110px;
    text-align: center;
    margin-top: 60px;
}
.weDoMoreBox h4{
    color: #1B1A1E;
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
 }
 .weDoMoreBox p{
    color: #666666;
    font-size: 17px;
    line-height: 26px;
 }

 .pioneersBox {
    background: #171971 url(../img/ourHistory/pioneers-bg.jpg) no-repeat center center;
 }

 .poinerTxt {
    padding: 100px 0;
    text-align: center;     
    color: #fff;
 }

 .poinerTxtSmall {
    text-transform: uppercase;
    font-size: 50px;  
    line-height: 50px;   
 }

 .poinerTxtBig {
    font-size: 120px;
    display: block;
    font-weight: bold;
    line-height: 92px;
 }
 .timeLineBody {
    display: flex;
    background: #eef1f1;
    padding: 20px 20px 20px 0;
    margin: 0 auto;
 }
 .timeLineBody .yearText{
    font-size: 40px;
    font-weight: bold;
    color: #ccc;
 }
 .timeLineBody h2{
    color: #ba0101;
    font-size: 17px;
    font-weight: bold;
 }
 .timeLineBody p{
    font-size: 15px;
    line-height: 24px;
 }
 .timeLImgWidth {
    width: 350px;
    margin-left: -20px;
 }
 .contBody {
    padding-left: 30px;
    width: 50%;
 }
 .cd-horizontal-sub h3 {
    padding-bottom: 15px;
    font-size: 30px;
    line-height: 50px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
 }
 .cd-horizontal-sub h3::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100px;
    height: 3px;
    bottom: 0;
    background: #ba0101;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .weDoMoreBox {
        padding-left: 15px;
        padding-right: 15px;
    }
    .poinerTxtSmall {
        font-size: 20px;
        line-height: 20px;
    }
    .poinerTxtBig {
        font-size: 70px;
        line-height: 70px;
    }
    .ourHistory h4 {
        margin-top: 0px;
    }
    .timeLineBody {
        display: block;
        width: 100%;
        padding-left: 20px ;
    }
    .timeLImgWidth {
        width: 100%;
        margin-bottom: 20px;
        margin-left: 0px !important;
     }
     .contBody {
        width: auto;
        padding-left: 0;
     }
}
/*-- We Do More --*/

.notice-content .nt-post{
    display: table-row;
}

.notice-content .np-post{
    display: none;
}

.newspaper-content .np-post{
    display: table-row;
}

.newspaper-content .nt-post{
    display: none;
}

.newspaper-content .nt-accordion {
    display: none;
}