/*=== google fonts ===*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/*=== Basic css ===*/
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {	
    font-family: "Outfit", serif;
    font-size: 16px;
    font-weight: 400;    
	background: #fff;
	color: #333333;	
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 50%;
    background: #E14135; 
    text-align: center; 
    font-size: 16px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid #E14135;
    z-index: 8888;    
}

.scrolltotop i {
    color: #ffff;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: #E14135; 
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.title-lg {
    color: #333;
    font-size: 64px;
    font-weight: 400;
}

.title-md {
    color: #333;
    font-size: 32px;
    font-weight: 400;
}

.text-20 {
    color: #333;
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
}

/*=== Header area start ===*/

.header-area {
    background-image: url(../images/header-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 44px 0 66px;
}

.fixed-header {
    padding: 12px;
    background: #fff;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 999;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.fixed-header .header-item-inner img {
    max-width: 260px;
}

.fixed-header .header-item-inner2 ul li a {
    color: #E9483A;
}

.header-item {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-item-inner img {
    max-width: 100%;
}

.header-item-inner2 ul {
    display: flex;
    align-items: center;
}

.header-item-inner2 ul li a {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    margin-left: 50px;
}

.header-item-inner2 ul li a:hover {
    opacity: .8;
}

.header-item-inner3 {
    cursor: pointer;
}

.header-item-inner3 span {
    width: 30px;
    height: 3px;
    border-radius: 4px;
    display: block;
    background: #fff;
}

.header-item-inner3 span:nth-of-type(2) {
    margin: 6px 0;
}

.fixed-header .header-item-inner3 span {
    background: #E9483A;
}

/*=== offcanvas start ===*/

.offcanvas-start {
    width: 320px;
    border: none;
    background: #fff; 
}

.offcanvas-body {
    padding: 30px 20px;
}

.side-menu-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.side-menu-inner img {
    max-width: 200px;
}

.side-menu-inner .close {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.side-menu-inner .close span {
    width: 25px;
    height: 3px;
    display: block;
    background: linear-gradient(180deg, #E14135 0%, #A70E13 100%);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.side-menu-inner .close span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-top: 13px;
}

.side-menu-inner .close span:nth-of-type(2) {
    transform: rotate(-45deg);
    margin-top: -3px;
}

.side-menu-inner2 ul {
    flex-direction: column;
    align-items: start;
}

.side-menu-inner2 ul li a {
    color: #000;
    margin: 0 0 15px;
}

.side-menu-inner2 ul li a:hover {
    color: #E14135;
}

.banner-area {
    padding-top: 223px;
}

.banner-item h2 {
    color: #FFF;
    font-size: 70px;
    font-weight: 400;
    line-height: 108.571%;
    margin-bottom: 40px;
}

.banner-item p {
    color: #fff;
    line-height: 112.5%;
}

/*=== strategy area start ===*/

.strategy-area {
    padding: 218px 0 173px;
    position: relative;
    z-index: 9;
    background-image: url(../images/strategy-bg.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 0 200px;
    overflow: hidden;
}

.marquee {
    position: absolute;
    top: 70px;
    left: -0px;
    z-index: -1;
    width: 100%;
    overflow: hidden;
}

.marquee img {
    width: 100%;
}

.strategy-item-inner {
    text-align: right;
    margin-bottom: 180px;
}

.strategy-item-inner2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.strategy-item-inner3 {
    width: 563px;
}

.strategy-item-inner3 h2 {
    margin-bottom: 40px;
}

.strategy-item-inner4 {
    width: calc(100% - 563px);
    padding-right: 50px;
    position: relative;
    z-index: 9;
}

.strategy-item-inner4 img {
    max-width: 100%;
    display: block;
    margin-left: auto;
}

.strategy-item-inner4:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 445px;
    top: -122px;
    right: 0;
    background: linear-gradient(180deg, #E14135 0%, #A70E13 100%);
}

/*=== value area start ===*/

.value-area {
    padding: 156px 0 136px;
    position: relative;
    z-index: 9;
    background: #333;
    overflow: hidden;
}

.value-item {
    margin-bottom: 120px;
}

.value-item h2 {
    color: #FFF;
}

.value-item2 {
    max-width: 1290px;
    margin: 0 auto;
}

.value-item2-inner {
    max-width: 536px;
    margin-left: 116px;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.value-item2-inner2 {
    width: 40px;
}

.value-item2-inner2 img {
    max-width: 100%;
}

.value-item2-inner3 {
    width: calc(100% - 40px);
    padding-left: 49px;
    position: relative;
    z-index: 9;
}

.value-item2-inner3:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 150px;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, #E14135 0%, #A70E13 100%);
    z-index: 7;
}

.value-item2-inner3 h2 {
    color: #FFF;
    margin-bottom: 10px;
}

.value-item2-inner3 p {
    color: #D9D9D9;
}

.value-item2-inner4 {
    max-width: 558px;
    margin-left: auto;
    margin-right: 145px;
}

.value-item2-inner5 {
    margin-left: 0;
}

.value-item2-inner6 {
    margin-left: auto;
}

/*=== chairperson area start ===*/

.chairperson-area {
    padding: 219px 0 139px;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.chairperson-item {
    /*margin-bottom: 154px; */
    margin-bottom: 85px
}

.chairperson-item2-inner {
    /*max-width: 913px;*/
    /*margin-left: auto;*/
    margin-bottom: 89px;
}

.chairperson-item2-inner2 {
    display: flex;
    flex-wrap: wrap;
}

.chairperson-item2-inner3 {
    width: calc(100% - 563px);
    padding-left: 50px;
    padding-right: 20px;
    padding-top: 55px;
    position: relative;
    z-index: 9;
}

.chairperson-item2-inner3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 438px;
    top: -115px;
    left: 0;
    background: linear-gradient(180deg, #E14135 0%, #A70E13 100%);
}

.chairperson-item2-inner3 img {
    max-width: 100%;
}

.chairperson-item2-inner4 {
    /*width: 563px; */
}

.chairperson-item2-inner4 p:nth-of-type(1) {
    margin-bottom: 25px;
}

/*=== portfolio area start ===*/

.portfolio-area {
    padding: 200px 0 0;
    position: relative;
    z-index: 91;
    background: #333;
    overflow: hidden;
}

.portfolio-item {
    margin-bottom: 195px;
    text-align: right;
}

.portfolio-item h2 {
    color: #FFF;
}

.portfolio-item2-inner {
    max-width: 915px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 95px;
}

.portfolio-item2-inner2 {
    width: 410px;
    padding-right: 10px;
    position: relative;
    z-index: 9;
}

.portfolio-item2-inner2:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 300px;
    bottom: -40px;
    right: 0;
    background: linear-gradient(180deg, #E14135 0%, #A70E13 100%);
}

.portfolio-item2-inner2 img {
    width: 100%;
}

.portfolio-item2-inner3 {
    width: calc(100% - 410px);
    padding-left: 57px;
}

.portfolio-item2-inner3 h2 {
    color: #FFF;
    margin-bottom: 20px;
}

.portfolio-item2-inner3 p {
    color: #D9D9D9;
}

.portfolio-item2-inner4 {
    transform: translateX(-35px);
}

.portfolio-item2-inner4 .portfolio-item2-inner3 {
    padding-left: 0;
    padding-right: 55px;
}

/*=== footer area start ===*/

.footer-area {
    font-family: "Urbanist", sans-serif;
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 252px 0 28px;
    position: relative;
    z-index: 9;
    background-color: #333;
    overflow: hidden;
}

.footer-item {
    display: flex;
    align-items: end;
    margin-bottom: 231px;
}

.footer-item-inner {
    width: 446px;
    margin-right: 138px;
}

.footer-item-inner img {
    width: 100%;
}

.footer-item-inner2 {
    padding-bottom: 20px;
}

.footer-item-inner2 h2 {
    color: #F4F4F4;
    font-size: 32px;
    font-weight: 500;
    line-height: 112.5%;
    margin-bottom: 18px;
}

.footer-item-inner2 a {
    color: #E9483A;
    font-size: 20px;
    font-weight: 600;
}

.footer-item-inner2 a:hover {
    color: #fff;
}

.footer-item2 {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-item2 p {
    color: #D9D9D9;
    font-size: 16px;
    font-weight: 600;
}

.footer-item2 p a {
    color: #D9D9D9;
}

.footer-item2 p a:hover {
    color: #E9483A;
}