/*!
* SPAL . v1.0
* Created by Astral team UX
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
@import url('animation.css');
:root {
    --primary-color: #2C62BC;
}

*,
 ::after,
 ::before {
    box-sizing: border-box;
}

html {}

body {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 400;
    color: #212529;
    overflow-x: hidden;
}

::selection {
    background: var(--primary-color);
    color: #ffffff;
}

a {
    color: inherit;
}

a:hover {
    color: inherit;
    text-decoration: none;
}


/*------------------------------------------
  1.0 Header
------------------------------------------*/

.navbar {
    padding: .5rem 1rem;
    height: 56px;
    border-bottom: 1px solid transparent;
    background-color: transparent;
    z-index: 1030;
}

.header_fixed {
    position: fixed;
    width: 100%;
    background: #ffffff;
    box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.3);
}

.header_fixed .brand-shape {
    display: none;
}

.nav_menu_icon {
    width: 21px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 21px;
}

.nav_menu_icon .lines {
    height: 2px;
    margin: 0.225rem 0;
    border-radius: 5px;
    background: var(--primary-color);
    transition: .3s;
}

.nav_menu_icon .one {
    width: 30px;
}

.nav_menu_icon .two {
    width: 15px;
}

.nav_menu_icon .three {
    width: 21px;
}

.nav_menu_icon:hover .lines {
    width: 30px;
}

.navbar .nav-brand-shape {
    position: relative;
    height: 100%;
}

.navbar .nav-brand-shape .brand-shape {
    position: absolute;
    top: 47px;
    left: -15px;
}

.navbar .nav-brand-shape .navbar-brand {
    position: absolute;
    top: 0;
    left: 142px
}

.navbar .nav-brand-shape .navbar-brand img {
    width: 85px;
}


/* .header_fixed .nav-brand-shape .navbar-brand img {
    width: 45px;
    margin-top: -7px;
} */

.header_fixed .nav-brand-shape .fLogo img {
    width: 215px;
}

.navbar .nav-brand-shape .fLogo {
    display: none;
}

.header_fixed .nav-brand-shape .fLogo {
    display: block !important;
}

.header_fixed .nav-brand-shape .sLogo {
    display: none;
}

.nav-menu-page {
    width: 0;
    /* height: calc(100vh - 90px); */
    position: fixed;
    right: -1px;
    top: -1px;
    display: none;
    -moz-animation: menupage 1s 1 forwards;
    -webkit-animation: menupage 1s 1 forwards;
    animation: menupage 1s 1 forwards;
    z-index: 1050;
}

.nav-menu-page-open {
    display: block;
}

@-moz-keyframes menupage {
    0% {
        width: 0vw;
    }
    100% {
        width: 80%;
    }
}

@-webkit-keyframes menupage {
    0% {
        width: 0vw;
    }
    100% {
        width: 80%;
    }
}

@keyframes menupage {
    0% {
        width: 0vw;
    }
    100% {
        width: 80%;
    }
}

.menu-page-bg {
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.nav-menu-page .menu-list-lt {
    width: 90%;
    height: 100%;
    margin-left: 15%;
    margin-top: 65px;
    z-index: 1;
    position: relative;
    color: #ffffff;
}

.nav-menu-page .close-btn {
    position: absolute;
    top: 10px;
    right: 21px;
    padding: 15px;
    cursor: pointer;
    transition: .3s transform;
    width: 35px;
    height: 35px;
    border-radius: 30px;
}

.nav-menu-page .close-btn:hover {
    transform: rotate(-15deg);
}

.nav-menu-page .close-btn::before {
    content: "";
    width: 21px;
    height: 2px;
    background: #ffffff;
    position: absolute;
    display: block;
    transform: rotate(45deg);
    left: 8px;
}

.nav-menu-page .close-btn::after {
    content: "";
    width: 21px;
    height: 2px;
    background: #ffffff;
    position: absolute;
    display: block;
    transform: rotate(-45deg);
    left: 8px;
}

.nav-menu-page .menu-list-lt .headline {
    font-size: 48px;
    font-weight: 200;
}

.nav-menu-page .menu-list-lt .menu-items-lt {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
}

.nav-menu-page .menu-list-lt .menu-items {
    padding: 0;
    margin-right: 15px;
    flex: 0 0 auto;
}

.nav-menu-page .menu-list-lt .menu-items .menu-link {
    padding: .55rem .75rem;
    list-style: none;
    font-size: 18px;
}

.nav-menu-page .menu-list-lt .menu-items .menu-link.menu-link-sub {
    padding-left: .75rem;
}

.nav-menu-page .menu-list-lt .menu-items .menu-headline {
    padding: .55rem .75rem;
    font-size: 11px;
    width: 100%;
    text-transform: uppercase;
}

.nav-menu-page .menu-list-lt .menu-items .menu-link a {
    color: #ffffff;
}

.nav-menu-page .menu-list-lt .menu-items .menu-link a:hover {
    text-decoration: none;
    opacity: 0.7;
}

.header-st-lt {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    padding: 45px calc(5% + 30px);
    height: 100%;
    justify-content: space-between;
}

.header-st-lt .item-left {
    display: flex;
    align-items: flex-end;
}

.header-st-lt .item-right {
    display: flex;
    align-items: flex-start;
}

.f {
    text-shadow: none;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
}


/*------------------------------------------
  2.0 Page Headers
------------------------------------------*/

.home-main-header-section {
    width: 100%;
    height: 70vh;
    background: #2C62BC;
    position: relative;
    overflow: hidden;
}

.home-main-header-section .video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.page-header-content {
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #2c61bcb9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-video-headline {
    width: 100%;
    text-align: center;
}

.page-header-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.page-header-section img {
    width: 100%;
}

.page-header-section .page-header-content {
    width: 100%;
    height: 100%;
    max-height: 510px;
    z-index: 1;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.page-header-section .page-header-content .headline {
    font-size: 75px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0px 0px 15px rgba(44, 98, 188, 0.68);
}

.page-header-section .page-header-content .f .headline {
    text-shadow: 0px 0px 15px rgba(44, 98, 188, 0.0);
}


/*------------------------------------------
  1.0 Layout
------------------------------------------*/

.main-black-lt {
    padding-top: 90px;
}

.main-black-lt.pb-90px {
    padding-bottom: 90px;
}


/*------------------------------------------
  1.0 Pages
------------------------------------------*/

.t-layout {
    display: flex;
    flex-direction: row;
}

.t-layout .items {
    flex: 0 0 auto;
}

.t-layout .items-inner {
    display: flex;
    flex-direction: row;
}

.t-layout .items-inner .items {
    width: 50%;
}

.t-layout .items.t-home {
    width: 50%;
    min-height: 235px;
    position: relative;
}

.t-content {
    padding: 30px 30px 0px 30px;
}

.t-content-lg {
    padding: 60px 60px 0;
}

.t-content .icons {
    max-width: 90%;
    margin: 10px 24px 21px;
}

.t-content .headlines {
    font-size: 38px;
}

.thread-wht {
    position: absolute;
    bottom: 0;
    width: 100%;
    right: 0;
}

.thread-blue-right {
    height: 0;
    width: 100%;
    position: relative;
}

.thread-blue-right .thread-icon {
    position: absolute;
    right: 0;
    top: -115px;
    max-width: 100%;
}

.service-typo-ani-lt {
    width: 100%;
    min-height: 275px;
    position: relative;
    overflow: hidden;
}

.service-typo-ani-lt img {
    width: 100%;
    position: absolute;
    z-index: -1;
}

.service-typo-ani-lt .sub-line {
    width: 100%;
    font-size: 21px;
    font-weight: 700;
}

.service-typo-ani-lt .lg-line {
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
}

.service-typo-ani-lt .content-section {
    width: 100%;
    padding: 45px 15px;
    text-align: center;
}

.service-typo-ani-lt .content-section .ani-text {
    color: var(--primary-color);
}

.awards-lt {
    max-width: 600px;
    margin: 30px auto 90px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.awards-lt .awards-item {
    width: calc(33.333% - 30px);
    text-align: center;
    margin: 15px;
}

.awards-lt .awards-item img {
    width: 45px;
}

.awards-lt .awards-item .headline {
    font-size: 18px;
    margin: 15px auto;
    font-weight: 500;
    width: 100%;
}

.awards-lt .awards-item .desc {
    width: 100%;
    text-transform: uppercase;
    color: #686868;
}

.awards-subline {
    max-width: 600px;
    margin: 0 auto 30px;
}

.awards-photo-lt {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.awards-photo-lt .awards-item {
    width: calc(50% - 30px);
    margin: 15px;
    overflow: hidden;
}

.awards-photo-lt .awards-item img {
    width: 100%;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.awards-photo-lt .awards-item:hover img {
    -ms-transform: scale(1.35) rotate(15deg);
    -moz-transform: scale(1.35) rotate(15deg);
    -webkit-transform: scale(1.35) rotate(15deg);
    -o-transform: scale(1.35) rotate(15deg);
    transform: scale(1.35) rotate(15deg);
}

.our-team-lt {
    margin-top: -245px;
}

.our-team-lt .our-team {
    position: relative;
    padding: 30px;
}

.team-area-info .team-area-info-title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 15px;
}

.team-area-info .ldateupt {
    color: #686868;
    font-size: 12px;
}

.team-area-info .sub-line {
    color: #686868;
}

.team-member-list__info img {
    width: 100%;
}

.team-member-list__info .n-title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 12px 6px 0px;
}

.team-member-list__info .pos-title {
    margin-left: 6px;
}

.team-mi-grid {
    margin-bottom: 90px;
}

.team-mi-pic {
    width: calc(100% + 30px);
    margin-top: -56px;
    margin-left: -15px;
}

.team-mi-grid .mi-content {
    margin-top: 90px;
    margin-left: calc(15% + 15px);
}

.team-mi-grid .mi-content .mi-title {
    font-size: 38px;
    font-weight: 700;
}

.team-mi-grid .mi-content .pos-mi-title {
    font-size: 16px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.directors-committee {
    width: 100%;
}

.directors-committee table {
    padding: 0px;
    border: 1px solid #E2E2E2;
    width: 100%;
    background: #fff;
}

.directors-committee table tr td {
    width: 50%;
    padding: 10px;
    border-bottom: 1px solid #E2E2E2;
    border-right: 1px solid #E2E2E2;
}

.directors-committee table tr td {
    border-bottom: 1px solid #E2E2E2;
    border-right: 1px solid #E2E2E2;
    color: #444444;
}

.directors-committee table tr td:last-child {
    border-right: none;
}

.directors-committee table tr:nth-child(2n) {
    background: #EAEAEA;
}

.career-form-ctrl {
    width: 85% !important;
}

.investor-info-nav-list {
    border-right: 1px solid #C9C9C9;
}

.investor-info .nav-pills .nav-link {
    text-transform: uppercase;
}

.investor-info .nav-pills .nav-link.active,
.investor-info .nav-pills .show>.nav-link {
    color: #000000;
    background-color: #ffffff;
    font-weight: 700;
    position: relative;
}

.investor-info .nav-pills .nav-link.active::after {
    content: "";
    position: absolute;
    right: -7px;
    height: 14px;
    width: 14px;
    top: 10px;
    border-right: 1px solid #C9C9C9;
    border-top: 1px solid #C9C9C9;
    transform: rotate(45deg);
    background-color: #ffffff;
}

.investor-docs {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.investor-info .headline {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}

.inv-docs-section {
    margin-top: 30px;
}

.inv-docs-section,
.inv-docs-section .inv-docs-list {
    width: 100%;
    padding: 0;
}

.inv-docs-section .inv-docs-list-item {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: .75rem;
}

.inv-docs-section .inv-docs-list-item .icon {
    padding: 0 .5rem;
    height: 24px;
}

.inv-docs-section .inv-docs-list-item .download {
    cursor: pointer;
}

.inv-docs-section .inv-docs-list-item:nth-child(2n+1) {
    background-color: #EAEAEA;
}

.contact-page-form {
    background: var(--primary-color);
    height: 400px;
    color: #fff;
}

.contact-page-form .headline-sub {
    padding: 30px 15px;
}

.contact-page-fm-section {
    margin-top: -310px;
    background: #ffffff;
}

.contact-page-fm-section .form {
    padding: 45px;
}

.subsidiary-section {
    width: 100%;
    padding: 15px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.subsidiary-section:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.subsidiary-lt {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.subsidiary-lt img {
    width: 100%;
}

.subsidiary-lt .headline-sub {
    margin-bottom: 15px;
}

.subsidiary-lt ._content {
    color: #ffffff;
    position: absolute;
    bottom: 30px;
    left: 45px;
    right: 30px;
    transform: translateY(70%);
    transition: 0.5s;
}

.subsidiary-lt ._content .btn {
    opacity: 0;
}

.subsidiary-lt:hover ._content .btn {
    opacity: 1;
}

.subsidiary-lt ._content .txt,
.subsidiary-lt ._content .btn {
    opacity: 0;
}

.subsidiary-lt:hover ._content .txt,
.subsidiary-lt:hover ._content .btn {
    opacity: 1;
}

.subsidiary-lt:hover ._content {
    transform: translateY(0);
}

.subsidiary-lt ._content-gradient {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    background: rgb(2, 0, 36);
    background: linear-gradient(0deg, rgba(2, 0, 36, 0.8015406846332283) 0%, rgba(2, 0, 36, 0) 50%);
}

.history-pg .since {
    font-size: 100px;
    font-weight: 900;
}

.history-pg .headlines {
    margin-bottom: -15px;
    font-size: 44px;
}

.histor-tml-lt {
    margin-top: 90px;
    margin-bottom: 90px;
    position: relative;
    width: 100%;
}

.tl-nav {
    position: fixed;
    right: -100%;
    top: calc(5vh);
    z-index: 1;
    transition: .5s right ease;
}

.tl-nav.hidden {
    right: 0;
}

.tl-nav li {
    list-style: none;
}

.tl-nav li .tl-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    color: var(--primary-color);
    font-weight: 700;
    margin: .2rem 0;
    cursor: pointer;
    height: 7px;
}

.tl-nav a {
    display: block;
    padding: 5px 25px 7px 25px;
    text-align: center;
    -webkit-transition: .5s all ease-out;
    -moz-transition: .5s all ease-out;
    transition: .5s all ease-out;
}

.tl-nav .tl-box {
    width: 18px;
    height: 2px;
    background-color: var(--primary-color);
    display: block;
    margin-left: 10px;
    margin-right: 3px;
}

.tl-nav .tl-item .year {
    display: none;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    opacity: 1;
}

.tl-nav li.active .tl-item .year {
    display: block;
}

.tl-nav .tl-item:hover .year {
    display: block;
    opacity: .7;
}

.tl-nav li.active .tl-item .tl-box {
    height: 15px;
}

.history-timeline {
    margin-top: 60px;
    margin-bottom: 60px;
    position: relative;
}

.history-timeline img {
    width: 100%;
}

.tm-line-nav-scrl-lt {
    overflow: hidden;
}

.tm-line-nav-scrl {
    width: 3px;
    height: 0;
    background-color: var(--primary-color);
    position: relative;
    margin-left: 45px;
}

.tm-line-nav-scrl::before {
    content: "";
    width: 90px;
    height: 3px;
    position: absolute;
    top: 0;
    left: -45px;
    background-color: var(--primary-color);
}

.aos-animate.tm-line-nav-scrl {
    height: 100%;
    -webkit-transition: all 3s ease-out 0s;
    -o-transition: all 3s ease-out 0s;
    transition: all 3s ease-out 0s;
}

.highlited-counts {
    width: calc(100% + 3rem);
    display: flex;
    flex-direction: row;
    background: var(--primary-color);
    color: #ffffff;
    padding: .75rem;
    margin-left: -160px;
}

.highlited-counts .counts-item {
    flex: 1;
    padding: .75rem;
}

.highlited-counts .counts-item .headlines,
.highlited-counts .counts-item p {
    margin: 0;
}

.insights-lt {
    /* width: 100%;
    display:flex;
    flex-direction: row;*/
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
}

.insights-lt .insight-item {
    /* flex: 1; */
    position: relative;
    /* max-width: calc(50% + 3%); */
    width: calc(100% - 49px) !important;
}

.insights-lt .insight-item.insight-img img {
    width: 100%;
    margin-bottom: 10%;
}

.insights-lt .insight-item.insight-content {
    background: #FFFFFF;
    box-shadow: 0px 0px 80px 16px rgba(0, 0, 0, 0.13);
    z-index: 1;
    margin-top: 10%;
    margin-left: -10%;
    padding: calc(3% + 15px);
    position: relative;
}

.insights-lt .insight-item.insight-content .ins-tag {
    background: var(--primary-color);
    padding: .5rem .75rem;
    font-size: 16px;
    position: absolute;
    top: -21px;
    left: -21px;
    z-index: 1;
    color: #ffffff;
}

.insights-lt .insight-item.insight-content .ins-link .btn {
    margin-top: .75rem;
}

.ins-dtl {
    color: #686868;
}

.ins-dtl .ins-dot {
    width: 8px;
    height: 8px;
    background: #C4C4C4;
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
    border-radius: 8px;
}

.people-pg .subsidiary-lt .headline-sub {
    margin-bottom: 40px;
    transition: .3s ease;
}

.people-pg .subsidiary-lt:hover .headline-sub {
    margin-bottom: 15px;
}

.product-range img {
    width: 100%;
}

.product-range .product-title {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
}

.products-lt {}

.products-lt img {
    width: 100%
}

.products-lt-bg {
    background-color: var(--primary-color);
    color: #ffffff;
}

.plant-process .nav-tabs {
    border-bottom: 0;
    justify-content: center;
}

.plant-process .nav-link {
    display: block;
    padding: .1rem 0;
    margin: .5rem 1rem;
    font-size: 21px;
}

.plant-process .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.plant-process .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: transparent;
    border-bottom: 1px solid #fff;
}

.plant-process .tab-content {
    margin-top: 15px;
}

.plant-process .tab-content .tab-content-items {
    margin-top: 30px;
    margin-bottom: 155px;
    position: relative;
}

.plant-process .tab-content .tab-content-items img {
    width: calc(90% - 30px);
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 90px;
}

.plant-process .tab-content .tab-content-items .plant-details {
    min-width: 340px;
    max-width: 350px;
    min-height: calc(100% - 90px);
    background-color: #FFFFFF;
    right: -95px;
    top: 90px;
    position: absolute;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    color: #000000;
    padding: 15px 21px;
}

.plant-process .tab-content .tab-content-items .plant-details.garmenting {
    min-width: 599px;
    max-width: 600px;
}

.plant-process .tab-content .tab-content-items .plant-details .plt-icon {
    margin: 0 0 21px 0;
    padding: 15px 15px 0px 15px;
    width: 100%;
    max-width: 195px;
}

.cd-words-wrapper {
    position: relative;
}

.cd-headline {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
    color: var(--primary-color);
}

.cd-words-wrapper b.is-visible {
    position: relative;
}

.cd-headline.slide span {
    display: inline-block;
}

.cd-headline.slide .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
    width: auto!important
}

.cd-headline.slide b {
    opacity: 0;
    top: .2em
}

.cd-headline.slide b.is-visible {
    top: 0;
    opacity: 1;
    -webkit-animation: slide-in .6s;
    animation: slide-in .6s
}

.cd-headline.slide b.is-hidden {
    -webkit-animation: slide-out .6s;
    animation: slide-out .6s
}

.infra-lt img {
    width: 100%;
}

@-webkit-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
        transform: translateY(20%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
        transform: translateY(20%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
        transform: translateY(120%)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
}

@keyframes slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
        transform: translateY(120%)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
}


/*------------------------------------------
  1.0 Buttons
------------------------------------------*/

.btn {
    font-weight: 300;
    border: 1px solid transparent;
    padding: .5rem 1.5rem;
    font-size: 1.25rem;
    border-radius: 0;
    text-transform: uppercase;
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-box-hover {
    position: relative;
    z-index: 1;
    -webkit-transition: all cubic-bezier(.37, .68, .27, .71) .4s;
    -o-transition: all cubic-bezier(.37, .68, .27, .71) .4s;
    transition: all cubic-bezier(.37, .68, .27, .71) .4s;
}

.btn-box-hover:hover {
    color: var(--primary-color);
}

.btn-box-hover:hover::after {
    width: 100%;
}

.btn-box-hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: #fff;
    -webkit-transition: all cubic-bezier(.37, .68, .27, .71) .4s;
    -o-transition: all cubic-bezier(.37, .68, .27, .71) .4s;
    transition: all cubic-bezier(.37, .68, .27, .71) .4s;
    z-index: -1;
}

.btn-wht {
    background-color: rgba(255, 255, 255, 0);
    ;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-box-hover-wht {
    position: relative;
    z-index: 1;
    -webkit-transition: all cubic-bezier(.37, .68, .27, .71) .4s;
    -o-transition: all cubic-bezier(.37, .68, .27, .71) .4s;
    transition: all cubic-bezier(.37, .68, .27, .71) .4s;
}

.btn-box-hover-wht:hover {
    color: var(--primary-color);
}

.btn-box-hover-wht:hover::after {
    width: 100%;
}

.btn-box-hover-wht::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: #ffffff;
    -webkit-transition: all cubic-bezier(.37, .68, .27, .71) .4s;
    -o-transition: all cubic-bezier(.37, .68, .27, .71) .4s;
    transition: all cubic-bezier(.37, .68, .27, .71) .4s;
    z-index: -1;
}


/*------------------------------------------
  1.0 Typograpy
------------------------------------------*/

.headlines {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    padding-bottom: .325rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    line-height: 1.1;
}

.headline-sub {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.main-black-lt p {
    margin-bottom: 30px;
    line-height: 1.75;
}

p .highlighted-text {
    color: var(--primary-color);
    font-weight: 700;
}

.primary-text {
    color: var(--primary-color);
}

.learn-more {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
}

.next-link,
.prev-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.next-link::after {
    content: "";
    background: url(../img/right-arrow-icon.svg) no-repeat;
    width: 30px;
    display: inline-block;
    height: 12px;
    margin-left: 7px;
}

.prev-link::before {
    content: "";
    background: url(../img/left-arrow-icon.svg) no-repeat;
    width: 30px;
    display: inline-block;
    height: 12px;
    margin-right: 7px;
}

.future {
    font-family: 'Parisienne', cursive !important;
    text-transform: capitalize !important;
    font-weight: 500 !important;
}


/*------------------------------------------
  1.0 General
------------------------------------------*/

.bg-primary-color {
    background-color: var(--primary-color);
    color: #ffffff;
}

.hr-rt {
    position: relative;
    margin-bottom: 1.5rem;
}

.hr-rt::after {
    content: "";
    border-bottom: 2px solid #ffffff;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
}

.carousel-img {
    width: 100%;
    margin-top: 30px;
    padding-bottom: 60px;
}

.carousel-img .carousel-indicators li {
    background-color: var(--primary-color);
    width: 12px;
    height: 12px;
    border-radius: 12px;
}

.img-slide-animation {
    position: relative;
    overflow: hidden;
}

.img-slide-animation::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    background: #ffffff;
    -webkit-transition: all 1s ease-out 0s;
    -o-transition: all 1s ease-out 0s;
    transition: all 1s ease-out 0s;
}

.carousel-control-prev-icon:hover::after,
.carousel-control-next-icon:hover::after {
    content: "";
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    display: block;
    z-index: -1;
    position: relative;
    top: -20px;
    left: -20px;
    border-radius: 30px;
}

.aos-animate .img-slide-animation::after {
    left: 100%;
}


/*------------------------------------------
  1.0 Form
------------------------------------------*/

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 15px);
    padding-left: 1.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #EDEDED;
    background-clip: padding-box;
    border: 1px solid #999999;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-bottom: 15px;
    margin-top: 15px;
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 15px);
    margin-bottom: 0;
    margin-bottom: 15px;
    margin-top: 0;
}

input[type="file"]:focus,
.custom-file-input:focus,
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(0, 123, 255, .25);
}

.custom-file-label::after {
    height: calc(1.5em + .75rem + 13px);
    border-radius: 0;
    line-height: 2.5;
}

.custom-file-label {
    height: calc(1.5em + .75rem + 15px);
    padding: .375rem 1.75rem;
    font-weight: 400;
    line-height: 2.5;
}

.custom-file-input {
    height: calc(1.5em + .75rem + 15px);
}

label {
    margin-bottom: 0;
    margin-top: .5rem;
}


/*------------------------------------------
  1.0 List
------------------------------------------*/

.files-list {
    width: 100%;
    padding: 0;
}

.files-list .item-list {
    list-style: none;
    margin: 18px 0 18px 10px;
    padding-left: 21px;
    position: relative;
}

.files-list .item-list::before {
    position: absolute;
    content: "";
    background-image: url(../img/policy-check-mark.svg);
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    left: 0;
    top: 4px;
}

.files-list .item-list:hover {
    color: var(--primary-color);
}

.stock-price-lt {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
}

.stock-price-lt:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.05);
    box-shadow: 0px 0px 21px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 0px 21px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 21px 1px rgba(0, 0, 0, 0.25);
}

.stock-price-lt img {
    width: 100%;
}

.list-item-normal li {
    list-style: none;
    position: relative;
    margin: 9px 0;
    line-height: 1.75;
}

.list-item-normal li::before {
    position: absolute;
    content: "";
    width: 9px;
    height: 2px;
    background-color: var(--primary-color);
    left: -15px;
    top: 9px;
}


/*------------------------------------------
  1.0 Footer
------------------------------------------*/

.footer-next-step {
    background: #ffffff;
    margin-bottom: -90px;
    margin-top: 30px;
}

.footer-next-step-lt {
    overflow: hidden;
    /* box-shadow: 0 30px 70px -30px rgba(0,0,0,.3); */
    box-shadow: 0 0px 70px -30px rgba(0, 0, 0, .3);
    border-radius: 3px;
    display: flex;
}

.footer-next-step img {
    width: 100%;
}

.fns-img img img {
    width: 100%;
}

.footer-next-step .content-lt {
    width: 100%;
    min-height: 90px;
    background: #ffffff;
    /* display: flex;
    flex-direction: row; */
    padding: 15px 30px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 99;
}

.footer-next-step .content-lt .content {
    flex: 1 1 auto;
    /* max-width: 50%; */
}

.footer-next-step .content-lt .content .headline {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: .325rem;
    font-family: 'Kaushan Script', cursive;
    text-transform: capitalize !important;
}

.footer-next-step .content-lt .content-btn {
    flex: 0 0 auto;
}

.footer {
    background: var(--primary-color);
    width: 100%;
    min-height: 300px;
}

.footer .footer-menu {
    min-height: 350px;
    width: 100%;
    margin: 0;
    padding: 90px 0 0 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.footer .footer-menu .footer-menu-section {
    flex: 0 0 auto;
    padding: 30px 0;
    color: #ffffff;
}

.footer .footer-menu .footer-menu-section .footer-menu-item {
    padding: 0;
    margin: 0;
}

.footer .footer-menu .footer-menu-section .menu-link {
    list-style: none;
    padding: .355rem .75rem;
    font-size: 14px
}

.footer .footer-menu .footer-menu-section a,
.footer .footer-menu .footer-menu-section .menu-link a {
    color: #ffffff;
}

.footer .footer-menu .footer-menu-section .menu-link a:hover {
    text-decoration: none;
    opacity: .7;
}

.footer .footer-menu .footer-menu-section .headline {
    font-size: 21px;
    font-weight: 900;
    color: #ffffff;
    padding: .55rem .75rem;
}

.footer .footer-menu .footer-menu-section .text {
    padding: .355rem .75rem;
    max-width: 255px;
}

.footer .footer-bottom {
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: flex-end;
    position: relative;
    align-items: center;
    background-color: #ffffff;
    padding: 0 15px;
    margin-top: 35px;
}

.footer .footer-bottom .footer-copy-right {
    font-size: 12px;
    flex: 0 0 auto;
    margin-right: 60px;
}

.footer .footer-bottom .footer-brand {
    position: absolute;
    left: 0;
    bottom: 39px;
    max-width: 515px;
}

.footer .footer-bottom .footer-brand img {
    width: 100%;
}

.to-top {
    position: fixed;
    bottom: 70px;
    right: -70px;
    cursor: pointer;
    background: var(--primary-color);
    color: #ffffff;
    padding: 10px;
    -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.3);
    transition: all .5s ease-in-out;
}

.to-top-o {
    right: 10px;
}

.to-top img {
    width: 21px;
}

.fspecl-Icon {
    max-width: 197px;
}

.weare_blue {
    width: calc(100% + 155px);
    margin-top: -65px;
}

.qp-list {
    padding: 15px 30px 0;
    margin: 0;
}

.spal-qp-mn {
    position: relative;
}

.spal-qp-mn .bgi {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.spal-qp-lt {
    background-color: #ffffff;
    color: #212529;
    border-radius: 6px;
    padding: 30px 45px;
}

.list-item-normal li::before {
    top: 12px;
}

@media (max-width: 575.98px) {
    .qp-bottom {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
}


/* ----- responsive ---------------------------------------- */

@media (max-width: 1390px) {
    .nav-menu-page .menu-list-lt .menu-items{
        max-width: 250px;
    }

}
@media (max-width: 1200px) {
    .menu-page-bg{
        width: 100vw;
    }
    .nav-menu-page .menu-list-lt{
        margin-left: 0%;
    }
    .nav-menu-page .menu-list-lt .menu-items{
        max-width: 250px;
    }

}

@media (max-width: 575.98px) {
    .navbar .nav-brand-shape {
        position: relative;
        height: 100%;
        width: 50%;
    }
    .navbar .nav-brand-shape .brand-shape {
        width: 100%;
    }
    .navbar .nav-brand-shape .navbar-brand {
        left: 27px;
    }
    .navbar .nav-brand-shape .navbar-brand img {
        width: 60px;
    }
    .menu-page-bg {
        display: none;
    }
    .nav-menu-page {
        background-color: var(--primary-color);
    }
    .nav-menu-page {
        right: 0;
        top: 0;
        height: 100%;
        overflow-y: scroll;
    }
    .nav-menu-page .menu-list-lt .menu-items-lt {
        flex-direction: column;
    }
    .nav-menu-page .close-btn {
        position: fixed;
        z-index: 999;
    }
    @-moz-keyframes menupage {
        0% {
            width: 0vw;
        }
        100% {
            width: 100%;
        }
    }
    @-webkit-keyframes menupage {
        0% {
            width: 0vw;
        }
        100% {
            width: 100%;
        }
    }
    @keyframes menupage {
        0% {
            width: 0vw;
        }
        100% {
            width: 100%;
        }
    }
    .nav-menu-page .menu-list-lt .headline {
        font-size: 30px;
    }
    .header-st-lt {
        flex-direction: row;
        padding: 35px calc(5% + 10px);
    }
    .home-main-header-section {
        height: 195px;
    }
    .home-main-header-section .video {
        top: 45%;
    }
    .t-layout {
        flex-direction: column;
    }
    .t-layout .items-inner {
        flex-direction: column;
    }
    .t-layout .items-inner .items {
        width: 100%;
    }
    .t-layout .items.t-home {
        width: 100%;
        min-height: auto;
    }
    .t-content {
        padding: 30px;
    }
    .t-content-lg {
        padding: 30px;
    }
    .t-content .icons {
        max-width: 85px;
        margin: 0px 45px 35px;
    }
    .service-typo-ani-lt {
        min-height: auto;
    }
    .service-typo-ani-lt img {
        width: auto;
        height: 100%;
    }
    .service-typo-ani-lt .sub-line {
        font-size: 18px;
    }
    .service-typo-ani-lt .lg-line {
        font-size: 30px;
    }
    .main-black-lt {
        padding-top: 21px;
        padding-bottom: 21px;
    }
    .main-black-lt .btn {
        margin-bottom: 21px;
    }
    .headlines {
        font-size: 28px;
    }
    .page-header-section .page-header-content .headline {
        font-size: 21px;
    }
    .main-black-lt .headlines {
        margin-top: 1rem;
    }
    .carousel-img {
        margin-top: 0px;
    }
    .awards-lt {
        margin: 30px auto 30px;
    }
    .awards-subline {
        max-width: 600px;
        margin: 0 auto !important;
    }
    .awards-lt .awards-item {
        width: calc(50% - 16px);
        text-align: center;
        margin: 15px 8px;
    }
    .awards-photo-lt {
        flex-direction: column;
    }
    .awards-photo-lt .awards-item {
        width: calc(100% - 30px);
    }
    .our-team-lt {
        margin-top: 0;
    }
    .team-member-list__info .n-title {
        font-size: 14px;
    }
    .team-member-list__info .pos-title {
        font-size: 12px;
    }
    .team-mi-grid {
        margin-bottom: 60px;
    }
    .team-mi-pic {
        margin-top: 0;
    }
    .team-mi-grid .mi-content {
        margin-top: 30px;
        margin-left: calc(0% + 15px);
        padding-right: 15px;
    }
    .investor-info .headline {
        font-size: 18px;
    }
    .inv-docs-section .inv-docs-list-item .icon {
        padding: 0 .5rem;
        height: 18px;
    }
    .inv-docs-list-item {
        max-height: 110px;
        overflow: hidden;
        word-wrap: break-word;
    }
    .contact-page-fm-section .form {
        padding: 21px;
    }
    .contact-page-fm-sml {
        padding-right: 21px;
        padding-left: 21px;
    }
    .subsidiary-lt {
        margin-bottom: 0px;
    }
    .subsidiary-lt ._content {
        left: 30px;
        right: 30px;
    }
    .subsidiary-lt ._content .btn {
        opacity: 1;
    }
    .subsidiary-lt ._content {
        transform: translateY(0%);
    }
    .subsidiary-lt ._content-gradient {
        background: linear-gradient(0deg, rgba(2, 0, 36, 0.8015406846332283) 0%, rgba(2, 0, 36, 0) 150%);
    }
    .subsidiary-lt ._content .txt {
        opacity: 1;
    }
    .thread-blue-right .thread-icon {
        top: -50px;
    }
    .history-pg .since {
        font-size: 65px;
        font-weight: 900;
    }
    .history-pg .headlines {
        font-size: 21px;
    }
    .history-timeline .headlines {
        margin-bottom: .15rem;
    }
    .tm-line-nav-scrl {
        width: 3px;
        height: 0%;
    }
    .tm-line-nav-scrl::before {
        top: -4px;
    }
    .tl-nav-list {
        display: none;
    }
    .highlited-counts {
        width: calc(100% + 30px);
        margin-left: -15px;
    }
    .insights-lt .insight-item.insight-content {
        width: calc(50% + 15px);
    }
    .insights-lt .insight-item.insight-content .ins-tag,
    .insights-lt .insight-item .btn {
        font-size: .95rem;
    }
    .insights-lt .insight-item {
        width: calc(100% - 49px) !important;
    }
    .insights-lt .insight-item.insight-content {
        margin-top: -21%;
        margin-left: 35px;
    }
    .people-pg .subsidiary-lt .headline-sub {
        margin-bottom: 15px;
    }
    .plant-process .nav-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: scroll;
        white-space: nowrap;
    }
    .plant-process .nav-link {
        margin: .5rem .65rem;
        font-size: 14px;
    }
    .plant-process .tab-content .tab-content-items {
        margin-top: 30px;
        margin-bottom: 0;
    }
    .plant-process .tab-content .tab-content-items img {
        width: 100%;
        margin-bottom: -15px;
    }
    .plant-process .tab-content .tab-content-items .plant-details.garmenting,
    .plant-process .tab-content .tab-content-items .plant-details {
        position: relative;
        top: -5px;
        right: 0;
        width: 100%;
        max-width: 100%;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.0);
        border-radius: 0;
    }
    .plant-process .tab-content .tab-content-items .plant-details.garmenting {
        min-width: 100%;
    }
    .plant-process .tab-content .tab-content-items .plant-details {
        min-width: 275px;
    }
    .footer-next-step {
        background: #ffffff;
        margin-bottom: -216px;
        margin-top: 30px;
    }
    .footer .footer-bottom .footer-brand {
        bottom: 49px;
        width: 185px;
    }
    .footer-next-step-lt {
        flex-direction: column;
    }
    .footer-next-step .content-lt {
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }
    .footer-next-step .content-lt .content {
        flex: 1 1 auto;
        max-width: 100%;
    }
    .footer-next-step .content-lt .content .headline {
        font-size: 35px;
    }
    .footer .footer-bottom .footer-copy-right {
        margin-right: 0px;
        margin-left: 15px;
    }
    .footer .footer-bottom {
        justify-content: flex-start;
    }
    .footer .footer-menu {
        padding: 235px 0 0 0;
        flex-direction: column;
    }
    .footer .footer-menu .footer-menu-section {
        padding: 15px 0 0;
    }
    .weare_blue {
        width: calc(100% - 25px);
        margin-top: 0px;
    }
}

@media (max-width: 375px) {
    .navbar .nav-brand-shape .navbar-brand {
        left: 40px;
    }
}