/* HEADER  */
.header{
    background: var(--bg-1);
    padding: 19px 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header .inner-header{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header .inner-header .inner-logo{
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .inner-header .inner-logo img{
    width: 48px;
    height: 48px;
    margin-right: 30px;
}

.header .inner-header .inner-logo a{
    font-size: 24px;
    font-weight: 700;
    color: #232323;
}

.header .inner-header .inner-nav ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    padding-left: 20px;
}

.header .inner-header .inner-nav ul li{
    margin-right: 32px;
}

.header .inner-header .inner-nav ul li a{
    color: #232323;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 4px solid transparent;
}

.header .inner-header .inner-button{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header .inner-header .inner-button .button-one{
    margin: 0 9.6px;
    padding: 16px 25px;
    border: 1px solid #E2E3E9;
    border-radius: 45px;
    font-size: 18px;
    color: #14142b;
}

.header .inner-header .inner-button .button-two{
    margin: 0 9.6px;
    padding: 16px 25px;
    border: 2px solid #FEDB01;
    border-radius: 45px;  
    font-size: 18px;
    color: #14142b;
    background: #FEDB01;
}

.header .inner-header .inner-logo a:hover{
    color: #3F69FF;
}

.header .inner-header .inner-nav ul li a:hover{
    border-color: #14142B;
    color: #14142B;
    transition: all 0.5s;
}

.header .inner-header .inner-button .button-one:hover{
    background: #E2E3E9;
    transition: all 0.5s;
    transform: scale(1.1);
}

.header .inner-header .inner-button .button-two:hover{
    background: #14142b;
    transition: all 0.5s;
    color: #ffffff;
    border-color: #14142b;
    transform: scale(1.1);
}

/* END HEADER  */

/* SECTION ONE  */
.section-one{
    padding-top: 181px;
    padding-bottom: 75px;
}

.section-one .inner-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-one .inner-wrap .inner-content{
    width: 50%;
}

.section-one .inner-wrap .inner-content .inner-title{
    font-size: 70px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 24px;
}

.section-one .inner-wrap .inner-content .inner-desc{
    font-size: 18px;
    color: #8c8c95;
    margin-top: 0;
    margin-bottom: 36px;
}

.section-one .inner-wrap .inner-content .inner-button{
    display: inline-block;
    align-items: center;
}

.section-one .inner-wrap .inner-content .inner-button .button-one{
    margin: 20px 9.6px 0 0;
    padding: 24px 40px;
    background: #FEDB01;
    border: 1px solid #FEDB01;
    border-radius: 45px;
    display: inline-block;
    font-size: 18px;
    color: #000;
}

.section-one .inner-wrap .inner-content .inner-button .button-two{
    margin: 20px 9.6px 0 9.6px;
    padding: 24px 40px;
    border: 1px solid #e2e3e9;
    border-radius: 45px;
    display: inline-block;
    font-size: 18px;
    color: #000;
}

.section-one .inner-wrap .inner-content .inner-button .button-one:hover{
    background: #121227;
    color: #ffffff;
    border-color: #121227;
    transition: all 0.5s;
    transform: scale(1.1);
}

.section-one .inner-wrap .inner-content .inner-button .button-two:hover{
    background: #e2e3e9;
    border-color: #e2e3e9;
    transform: scale(1.1);
    transition: all 0.5s;
}
.section-one .inner-wrap .inner-image{
    width: 45%;
}

.section-one .inner-wrap .inner-image .gray{
    padding: 20px 0;
    background: #70707a;
    position: relative;
    margin-top: -30px;
    height: 290px;
}

.section-one .inner-wrap .inner-image .gray img{
    width: 100%;
    position: relative;
    height: auto;
    right: 40px;
    border: 1px solid #000000;
    margin-top: -100px;
}
/* END SECTION ONE  */

/* SECTION-TWO  */
.section-two{
    padding: 80px 0;
}

.section-two .inner-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-two .inner-wrap .inner-intro{
    font-size: 18px;
    color: #5f5d68;
    font-weight: 700;
    width: 18%;
}

.section-two .inner-wrap .inner-list{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 16px;
    padding-right: 16px;
}

.section-two .inner-wrap .inner-list img{
    width: 100%;
    max-width: 200px;
    height: auto;
    padding: 0 16px;
}

.section-two .inner-wrap .inner-list img:hover{
    transition: all 0.6s;
    transform: scale(1.1);
}
/* END SECTION-TWO  */

/* SECTION-THREE  */
.section-three{
    padding-top: 75px;
    padding-bottom: 75px;
}

.section-three .container .inner-wrap{
    display: flex;
    justify-content: space-between;
}

.section-three .container .inner-wrap .inner-image{
    width: 50%;
}

.section-three .container .inner-wrap .inner-image .gray{
    background: #eff0f6;
    width: 80%;
    height: 430px;
    margin: auto;
    position: relative;
}   

.section-three .container .inner-wrap .inner-image .gray .img-1{
    position: absolute;
    top: -10%;
    right: 30%;
}

.section-three .container .inner-wrap .inner-image .gray .img-2{
    position: absolute;
    bottom: -10%;
    left: 25%;
}

.section-three .container .inner-wrap .inner-content{
    width: 45%;
    padding: 0 16px;
}

.section-three .container .inner-wrap .inner-content .inner-title{
    margin-top: 0;
    font-size: 38px;
    font-weight: 700;
    text-align: left;
    color: #14142b;
}

.section-three .container .inner-wrap .inner-content .inner-desc{
    margin-top: 0;
    margin-bottom: 32px;
    font-size: 18px;
    color: #8c8c95;
}

.section-three .container .inner-wrap .inner-content ul{
    margin: 0 0 28px 0;
    padding: 0;
    margin-left: 20px;
}

.section-three .container .inner-wrap .inner-content ul li{
    margin-bottom: 7px;
    color: #14142b;
    font-size: 18px;
    font-weight: 700;
    position: relative;
}

.section-three .container .inner-wrap .inner-content ul li::marker{
    color: #fedb01;
    width: 10px;
}

.section-three .container .inner-wrap .inner-content .inner-button{
    display: inline-block;
    padding: 24px 40px;
    margin-top: 20px;
    border: 2px solid #e2e3e9;
    color: #14142b;
    border-radius: 45px;
    font-size: 18px;
    font-weight: 700;
}

.section-three .container .inner-wrap .inner-content .inner-button:hover{
    background: #e2e3e9;
    transition: all 0.5s;
    transform: scale(1.1);
}

/* SECTION-THREE  */

/* SECTION FOUR  */
.section-four{
    padding-top: 75px;
    padding-bottom: 75px;
    background: #F7F7F7;
}

.section-four .container .inner-title{
    text-align: center;
    color: #14142b;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 56px;
}

.section-four .container .inner-list{
    display: flex;
    justify-content: space-between;
}

.section-four .container .inner-list .inner-item{
    width: calc(100% / 3 - 16px);
    margin-top: 0;
    /* border-radius: 30px; */
    overflow: hidden;
    box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
    border: 1px solid;
}

.section-four .container .inner-list .inner-item .inner-image{
    height: 214px;
    position: relative;
    overflow: hidden;
}

.section-four .container .inner-list .inner-item .inner-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-four .container .inner-list .inner-item .inner-content{
    padding: 37px 32px 43px 32px;
    background: #ffffff;
}

.section-four .container .inner-list .inner-item .inner-content .inner-title{
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 36px;
}

.section-four .container .inner-list .inner-item .inner-content .inner-desc{
    font-size: 18px;
    line-height: 27px;
    margin-top: 18px;
    margin-bottom: 18px;
}

.section-four .container .inner-list .inner-item .inner-content .inner-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-four .container .inner-list .inner-item .inner-content .inner-link .link-title{
    margin: 0;
    font-size: 18px;

}

.section-four .container .inner-list .inner-item .inner-content .inner-link .link-title a{
    text-decoration: underline;
    color: #000000;
}

.section-four .container .inner-list .inner-item .inner-content .inner-link .video-name{
    font-size: 18px;    
    font-weight: 700;
    line-height: 27px;
    margin: 0;
}

.section-four .container .outer-button{
    margin-top: 56px;
    text-align: center;
}

.section-four .container .outer-button .video-button{
    margin: 0 9.6px;
    padding: 24px 40px;
    font-size: 18px;
    line-height: 20px;
    border-radius: 45px;
    border: 1px solid #DBDCE2;
    color: #121227;
    display: inline-block;
}

.section-four .container .outer-button .sub-button{
    margin: 0 9.6px;
    padding: 24px 40px;
    font-size: 18px;
    line-height: 20px;
    border-radius: 45px;
    border: 1px solid #fedb01;
    color: #14142B;
    background: #fedb01;
    display: inline-block;
}

.section-four .container .inner-list .inner-item:hover 
 .inner-content .inner-title{
    color: #3F69FF;
    transition: all 0.6s;
}

.section-four .container .inner-list .inner-item:hover 
 .inner-link .link-title {
    color: #3F69FF;
    transition: all 0.6s;
}

.section-four .container .inner-list .inner-item:hover 
 .inner-link .link-title a {
    color: #3F69FF;
    transition: all 0.6s;
}

.section-four .container .inner-list .inner-item:hover 
 .inner-link .video-name{
    color: #3F69FF;
    transition: all 0.6s;
}

.section-four .container .inner-list .inner-item:hover 
 .inner-image img{
    transform: scale(1.1);
    transition: all 0.6s;
}

.section-four .container .outer-button .sub-button:hover{
    background: #14142B;
    border-color: #14142B;
    color: #ffffff;
    transform: scale(1.1);
    transition: all 0.6s;
}

.section-four .container .outer-button .video-button:hover{
    background: #E2E3E9;
    border-color: #E2E3E9;
    color: #000000;
    transform: scale(1.1);
    transition: all 0.6s;
}
/* SECTION FOUR  */

/* SECTION FIVE  */
.section-five{
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-five .container .inner-wrap{
    background: #14142B;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 120px 76px;
    border-radius: 45px;
}

.section-five .container .inner-wrap .inner-title{
    color: #ffffff;
    margin: 0;
    font-size: 24px;
    width: 50%;
    text-align: left;
}

.section-five .container .inner-wrap .inner-form{
    flex: 1;
    padding: 16px 9.6px 16px 26px;
    border-radius: 45px;
    background: #fff;
    display: flex;
}

.section-five .container .inner-wrap .inner-form input{
    border: 0;
    width: 70%;
    padding: 16px 0;
    outline: none;
    font-size: 18px;
}

.section-five .container .inner-wrap .inner-form .inner-button{
    flex: 1;
    padding: 24px 40px;
    border-radius: 45px;
    background: #FEDB01;
    color: #14142B;
    font-size: 18px;
}

.section-five .container .inner-wrap .inner-form .inner-button:hover{
    background: #14142B;
    color: #ffffff;
    transform: scale(1.1);
    transition: all 0.6s;
}
/* SECTION FIVE  */

/* SECTION SIX  */
.section-six{
    padding: 96px 0;
}

.section-six .container .inner-wrap .inner-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-six .container .inner-wrap .inner-title h1 {
    width: 55%;
    font-size: 38px;
    font-weight: 700;
    line-height: 42px;
}

.section-six .container .inner-wrap .inner-title p {
    flex: 1;
    font-size: 18px;
    line-height: 27px;
}

.section-six .container .inner-wrap .inner-list{
    display: flex;
    justify-content: space-between;
}

.section-six .container .inner-wrap .inner-list .item{
    width: calc(100%/3 - 15px);
    border: 1px solid #eff0f6;
    border-radius: 45px;
    box-shadow: 0 5px 12px 0 rgba(20, 20, 43, 0.05);
    padding: 44px 32px 40px 32px;
}

.section-six .container .inner-wrap .inner-list .item .inner-icon{
    text-align: right;
    font-size: 20px;
    color: #fedb01;
    margin-bottom: 16px;
}

.section-six .container .inner-wrap .inner-list .item .inner-content{
    display: flex;
    justify-content: space-between;
}

.section-six .inner-list .item .inner-content .inner-image{
    width: 50%;
}

.section-six .inner-content .inner-image .inner-avatar{
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
}

.section-six .inner-content .inner-image .inner-avatar img {
    width: 100%;
    
}

.section-six .inner-list .item .inner-content .inner-comment{
    width: 50%;
}

.section-six .inner-list .item .inner-content .inner-comment p{
    font-size: 18px;
    
    margin-top: 0;
}

/* SECTION SIX  */


/* Phần cuối của Trần Thịnh  */
.section-seven{
    padding-top: 75px;
    padding-bottom: 75px;
    background: #F7F7F7;
}

.section-seven .container .inner-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-seven .inner-wrap .inner-content{
    width: 45%;
}

.section-seven .inner-wrap .inner-content .inner-title{
    font-size: 38px;
    font-weight: 700;
    text-align: left;
    line-height: 45px;
    margin-top: 0;
    margin-bottom: 24px;
}

.section-seven .inner-wrap .inner-content .inner-desc{
    font-size: 18px;
    line-height: 27px;
    color:#5f5d68;
    margin-bottom: 28px;
}

.section-seven .inner-wrap .inner-content .inner-button .sub-button{
    padding: 24px 40px;
    display: inline-block;
    margin-top: 20px;
    border-radius: 45px;
    background: #FEDB01;
    color: #121227;
    font-size: 18px;
    margin-right: 20px;
}

.section-seven .inner-wrap .inner-content .inner-button .about-button{
    padding: 24px 40px;
    display: inline-block;
    margin-top: 20px;
    border-radius: 45px;
    border: 1px solid #E2E3E9;
    color: #121227;
    font-size: 18px;
}

.section-seven .inner-wrap .inner-profile{
    width: 45%;
    border-radius: 45px;
    border: 1px solid #eff0f6;
    box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
    padding: 62px 56px 64px;
    background: #fff;
}

.section-seven .inner-wrap .inner-profile .inner-vatatar{
    width: 186px;
    height: 186px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 17px;
}

.section-seven .inner-wrap .inner-profile .inner-vatatar img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.section-seven .inner-wrap .inner-profile .inner-name{
    font-size: 38px;
    font-weight: 700;
    color: #14142B;
    margin-bottom: 4px;
    margin-top: 0;
    line-height: 42px;
}

.section-seven .inner-wrap .inner-profile .inner-position{
    font-size: 18px;
    color: #14142B;
    margin-top: 0;
    line-height: 27px;
}

.section-seven .inner-wrap .inner-profile .inner-desc{
    font-size: 18px;
    color: #14142B;
    margin-bottom: 40px;
    line-height: 27px;
}

.section-seven .inner-wrap .inner-profile .inner-social i{
    display: inline-block;
    font-size: 28px;
    line-height: 44px;
    margin-right: 12px;
}

.section-seven .inner-wrap .inner-content .inner-button .sub-button:hover{
    background: #14142B;
    border-color: #14142B;
    color: #FDFDFD;
    transform: scale(1.1);
    transition: all 0.6s;
}

.section-seven .inner-wrap .inner-content .inner-button .about-button:hover{
    background: #E2E3E9;
    color: #14142B;
    transform: scale(1.1);
    transition: all 0.6s;
}

.section-seven .inner-wrap .inner-profile .inner-social i:hover {
    transform: scale(1.1);
    transition: all 0.2s;
}
/* Phần cuối của Trần Thịnh  */

/* Phần của Phan Tiến  */
.section-eight{
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-eight .container .inner-wrap .title{
    font-size: 38px;
    font-weight: 700;
    line-height: 42px;
    margin-top: 0;
    margin-bottom: 32px;
}

.section-eight .container .inner-wrap .inner-list{
    display: flex;
    justify-content: space-between;
}

.section-eight .container .inner-wrap .inner-list .inner-item{
    width: 47%;
    /* border-radius: 12px; */
    box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
    overflow: hidden;
    border: 1px solid #000000;
}

.section-eight .container .inner-wrap .inner-list .inner-item .inner-image{
    height: 315px;
    object-fit: cover;

}

.section-eight .inner-wrap .inner-list .inner-item .inner-image img {
    width: 100%;
    border-bottom: 1px solid #000;
}

.section-eight .inner-wrap .inner-list .inner-item .inner-content{
    padding: 34px 25px 30px 31px;
}

.section-eight .inner-wrap .inner-item .inner-content .time {
    margin-top: 0;
    margin-bottom: 24px;
}

.section-eight .inner-wrap .inner-item .inner-content .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}

.section-eight .inner-wrap .inner-item .inner-content .inner-desc {
    font-size: 18px;
    line-height: 27px;
}

.section-eight .inner-wrap .inner-item .inner-content .read-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-eight .inner-wrap .inner-item .inner-content .read-more a {
    display: inline;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    color: #14142B;
}

.section-eight .inner-wrap .inner-item .inner-content .read-more .inner-tag{
    padding: 16px 25px;
    color: #14142B;
    font-size: 18px;
    line-height: 20px;
    background: #eff0f6;
    border-radius: 45px;
}

.section-eight .inner-wrap .inner-item:hover 
.inner-content .title{
    color: #3F69FF;
}

.section-eight .inner-wrap .inner-item:hover 
.inner-content .read-more a {
    color: #3F69FF;
}
/* Phần của Phan Tiến  */


/* BEFORE BEFORE FOOTER  */
.bbefore-footer{
    padding-top: 80px;
    padding-bottom: 80px;
    background: #14142B;
}

.bbefore-footer .inner-wrap .partners h3{
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
    line-height: 33px;
}

.bbefore-footer .inner-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bbefore-footer .inner-wrap .partners {
    width: 20%;
}

.bbefore-footer .inner-wrap .inner-list{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bbefore-footer .inner-wrap .inner-list .item{
    margin-right: 20px;
    padding: 10px 35px;
    border-radius: 45px;
    border: 1px solid #ffffff;
}

.bbefore-footer .inner-wrap .inner-list .item img{
    width: 100px;
    height: 48px;
    margin-right: 26px;
    margin-left: 26px;
}

.bbefore-footer .inner-wrap .inner-list .item:hover{
    border-color: #FEDB01;
    transform: scale(1.1);
    transition: all 0.6s;
}

/* BEFORE BEFORE FOOTER  */


/* BEFORE FOOTER  */
.before-footer{
    background: #F7F7F7;
    padding-top: 80px;
    padding-bottom: 80px;
}

.before-footer .container .inner-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.before-footer .container .inner-wrap .inner-logo{
    display: inline-flex;
    align-items: center;
    width: 58%;
}

.before-footer .container .inner-wrap .inner-logo img{
    width: 48px;
    height: 48px;
    margin-right: 34px;
}
.before-footer .container .inner-wrap .inner-logo span{
    font-size: 38px;
    line-height: 38px;
    color: #232323;
}

.before-footer .container .inner-wrap .inner-desc{
    width : 45%;
    padding-left: 16px;
    padding-right: 16px;
}

.before-footer .container .inner-wrap .inner-desc p{
    font-size: 18px;

}
/* BEFORE FOOTER  */

/* FOOTER  */
.footer{
    padding-top: 80px;
    padding-bottom: 80px;
    background: #F7F7F7;
}

.footer .container .inner-wrap .inner-list{
    padding-top: 80px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 80px;
}

.footer .container .inner-wrap .inner-list .inner-title{
    font-size: 18px;
    color: #14142b;
    font-weight: 700;
    line-height: 27px;
    margin-bottom: 40px;
}

.footer .container .inner-wrap .inner-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .container .inner-wrap .inner-list ul li {
    margin-bottom: 24px;
}

.footer .container .inner-wrap .inner-list ul li a{
    font-size: 18px;
    line-height: 18px;
    color: #14142B;
}

.footer .inner-wrap .inner-list .about .two-col{
    display: flex;
    justify-content: space-between;
}

.footer .inner-wrap .inner-list .about .two-col .ul1{
    margin-right: 30px;
}

.footer .container .inner-wrap .inner-list ul li a:hover{
    color: #3F69FF;
}
/* FOOTER  */

