/*============================== Global ==============================*/
body {
    background: var(--bodyYellow);
}
p {
    color: var(--textBrown);
}

ul li {
    color: var(--textBrown);
}

.btn-custom-app {
    display: flex;
    padding: 16px 32px;
    align-items: center;
    gap: 18px;
    border-radius: 32px;
    border: 1px solid #543899;
    background: #6402FA;
    box-shadow: 0px -2px 0px 0px #543899 inset, 0px 2px 0px 0px #AC8FF8 inset;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}
.btn-custom-app::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: var(--bodyDark);
    transition: width 0.4s ease;
    z-index: -1;
}
.btn-custom-app:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}
.btn-custom-app:hover {
    color: var(--white);
}

/*============================ Header ============================*/
header {
    padding: 5px 0;
    position: relative;
    width: 100%;
    background: var(--bodyYellow);
    border-bottom: 1px solid #E6E6E6;
}
header nav {
    padding: 0!important;
}
header nav .navbar-brand {
    z-index: 1;
    transition: all 0.7s ease 0s;
}
header nav .navbar-brand img {
    width: 118px;
    transition: all 0.7s ease 0s;
}
header nav .navbar-nav li .nav-link {
    font-size: 12px;
    line-height: 1;
    padding: 16px 18px !important;
    border-radius: 6px;
    font-weight: 600;
    color: var(--menuDark) !important;
    position: relative;
    text-transform: uppercase;
}
header nav .navbar-nav li .nav-link:hover {
    color: var(--theme)!important;
}
header nav .navbar-nav li.active .nav-link {
    color: var(--theme)!important;
}
/*============================ //Header ============================*/

/*============================ Building Future ============================*/
.building-future {
    position: relative;
    width: 100%;
    padding: 220px 0 270px;
    background-image: url('./../images/about/building-future.png');
    background-position: 94% 20px;
    background-size: 44%;
    background-repeat: no-repeat;
}
.building-future h1 {
    color: var(--textBrown);
}
.building-future h1 {
    font-size: 56px;
    line-height: 64px;
    font-weight: 600;
    margin-bottom: 30px;
}
.building-future .headline-area {
    position: relative;
}
.building-future .headline-area a {
    max-width: 200px;
    margin: 30px 0 0;
}
.building-future .headline-area span {
    font-weight: 600;
}
.building-future .headline-area .arrow-head {
    width: 38px;
    position: absolute;
    right: 18.5%;
    top: 76%;
}
/*============================ //Building Future ============================*/

/*============================  Mission Vission Block ============================*/
.mission-vission {
    position: relative;
    width: 100%;
    padding: 50px 0 120px;
}
.mission-vission h2, .mission-vission h3 {
    color: var(--textBrown);
}
.mission-vission .headline-area {
    max-width: 600px;
}
.mission-vission .headline-area .sub-heading {
    color: var(--theme);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.84px;
    font-weight: 500;
}
.mission-vission .headline-area h2 {
    font-size: 52px;
    line-height: 64px;
    font-weight: 600;
    margin-bottom: 30px;
}
.mission-vission .img_lvs {
    box-shadow: 0px 8px 16px -4px rgba(78, 77, 89, 0.24), 0px 4px 32px -4px rgba(78, 77, 89, 0.16), 0px 24px 48px -12px rgba(78, 77, 89, 0.08), 0px 48px 96px -24px rgba(78, 77, 89, 0.08);
    border-radius: 8px;
    max-width: 670px;
    margin-top: 10px;
}
.mission-vission .right_ms {
    max-width: 520px;
    margin: 0 auto;
}
.mission-vission .right_ms .headline-area {
    margin-top: 30px;
    margin-bottom: 40px;
}
.mission-vission .vission_mission_block {
    position: relative;
}
.mission-vission .vission_mission_block .item_vs {
    padding-bottom: 20px;
    margin-bottom: 36px;
    border-bottom: 1px solid #EDEDEE;
}
.mission-vission .vission_mission_block .item_vs h3 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 18px;
}
/*============================  //Mission Vission Block ============================*/

/*============================ Backed By Industry ============================*/
.backed-by-industry {
    position: relative;
    width: 100%;
}
.backed-by-industry .backed-tab {
    position: relative;
    bottom: -70px;
    left: 0;
    right: 0;
    z-index: 9;
    border-radius: 15px;
    background: url('./../images/pattern/backed-about.png') no-repeat center/cover;
    display: flex;
    max-width: 1018px;
    margin: 0 auto;
    padding: 32px 248px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.backed-by-industry .backed-tab h2 {
    font-size: 40px;
    line-height: 56px;
    color: var(--black);
    font-weight: 700;
}
/*============================ //Backed By Industry ============================*/


      