* {
    padding: 0;
    margin: 0;
    font-family: Quicksand, Arial, sans-serif;
}

body {
    font-size: 16px;
    color: #172b4d;
}

::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-thumb {
    background-color: #c6c6c6;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

#dropBack {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1;
}

.header {
    padding: 20px 0;
    -webkit-box-shadow: 0 4px 8px rgb(0 0 0 / 16%);
    box-shadow: 0 4px 8px rgb(0 0 0 / 16%);
    border-bottom: 1px solid #dfe1e6;
}

.headerPC {
    display: flex;
    align-items: center;
}

.headerPC .logoPC img,
.headerMB .logoMB img {
    max-height: 40px;
    width: 100%;
    max-width: 100%;
}

.headerPC .logoPC {
    margin-right: 20px;
}

.headerPC .menu,
.headerMB .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.menuPC ul,
.menuRight ul {
    padding: 0;
    display: flex;
    align-items: center;
    margin: 0;
}

.headerPC .menuPC ul li i {
    margin-left: 5px;
    vertical-align: middle;
}

.menuRight {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.headerPC .menuPC ul li,
.menuRight ul li {
    list-style: none;
    margin: 0 10px;
    position: relative;
}

.headerPC .menuPC ul li a,
.menuRight ul li a {
    color: #172b4d;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5;
}

.headerPC .menuPC .subMenuPC {
    z-index: 10;
    position: absolute;
    min-width: 200px;
    border: 1px solid #dfe1e6;
    background-color: #fff;
    padding: 8px 0;
    display: none;
    margin-top: 10px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.headerPC .menuPC .subMenuPC.active {
    display: block;
}

.headerPC .menuPC .subMenuPC ul {
    display: block;
}

.headerPC .menuPC .subMenuPC ul li {
    padding: 5px 16px;
    margin: 0;
}

.headerPC .menuPC .subMenuPC ul li:hover {
    background-color: #dfe1e63d;
}

.headerMB {
    display: none;
}

@media (max-width: 1023px) {
    .headerMB {
        display: flex;
        align-items: center;
    }
    .headerPC {
        display: none;
    }
}

img {
    max-width: 100%;
}

.headerMB .iconMenu span i {
    font-size: 30px;
    margin-right: 20px;
}

.headerMB .iconMenu #iconClose {
    display: none;
}

.menuMB {
    display: none;
}

.menuMB ul {
    padding: 0;
    margin: 0;
}

.menuMB ul li {
    list-style: none;
    padding: 8px 4px;
    border-top: 1px solid #dfe1e6;
}

.menuMB ul li a {
    text-decoration: none;
    color: #172b4d;
}


/* Banner */

.topBanner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #22a861;
    min-height: 48px;
}


/* .topBannerBg {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
} */

.topBannerBg {
    width: 100%;
}

.bannertext {
    position: absolute;
    color: #fff;
}

.bannertext a {
    color: #00ffd1;
    text-decoration: none;
}

.topBannerBg img {
    width: 100%;
}



/* main */

.mainBanner {
    min-height: 640px;
    background-color: #202e66;
    position: relative;
}

.mainBannerBg {
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
}

.mainBannerBg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mainBannerText {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 64px 0px;
}

.mainBannerText .grid {
    display: flex;
    flex-wrap: wrap;
    /* margin-left: -16px;
    margin-right: -16px; */
}

.mainBannerText .gridLayout {
    width: 100%;
}

.mainBannerText .gridLayout h1 {
    margin-bottom: 24px;
    color: #ffab00;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 600;
}

.mainBannerText .gridLayout p {
    color: #e8b0fd;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.5;
}

.mainBannerText .gridLayout .btnDK a {
    padding: 11px 16px;
    line-height: 1.5rem;
    font-weight: 600;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #ffab00;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    display: inline-flex;
    text-decoration: none;
    color: #172b4d;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.mainBannerText .gridLayout .btnDK a:focus {
    -webkit-box-shadow: 0 0 0 4px #ffab0033;
    box-shadow: 0 0 0 4px #ffab0033;
}

.mainBanner .imgBottom {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.mainBannerMB img {
    display: block;
}

.homeGT {
    padding: 80px 0;
}

.homeGTtitle {
    margin-bottom: 64px;
    text-align: center;
}

.homeGTtitle h1 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 600;
}

.homeGTtitle p {
    color: #6b778c;
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
}

.homeGTcontent {
    text-align: center;
    margin-bottom: 32px;
}

.homeGTcontent svg {
    margin-bottom: 24px;
}

.homeGTcontent h3 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 16px;
}

.homeGTcontent p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.56;
    color: #6b778c;
}

.homePPGD {
    margin-top: 32px;
    padding-bottom: 32px;
}

.homePPGD .row {
    align-items: center;
    justify-content: center;
}

.homePPGD img {
    top: 0;
    right: 0;
}

.homePPGDleft {
    margin-bottom: 64px;
}

.homeDT .container {
    margin: 64px auto;
}

.homePPGDleft h1,
.homeKQcontent h1,
.homeDTtitle h1 {
    font-size: 36px;
    line-height: 1.22;
    margin-bottom: 24px;
    font-weight: 600;
}

.homeDTtitle h1 {
    text-align: center;
}

.homePPGDleft p,
.homeKQcontent p,
.homeDTtitle p {
    color: #6b778c;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
}

.homePPGDright {
    -webkit-box-shadow: 0 8px 16px rgb(0 0 0 / 16%);
    box-shadow: 0 8px 16px rgb(0 0 0 / 16%);
    padding: 32px;
    background-color: #fff;
    text-align: center;
    margin-bottom: 32px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.homePPGDright h3 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 16px;
}

.homePPGDright p {
    font-size: 14px;
    line-height: 1.43;
    font-weight: 500;
}

.imgDT {
    margin-bottom: 16px;
}

.imgDT img {
    -webkit-box-shadow: 0 8px 16px rgb(0 0 0 / 16%);
    box-shadow: 0 8px 16px rgb(0 0 0 / 16%);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.btnDT {
    text-align: center;
    padding: 32px 0;
}

.btnDT a {
    margin: 10px;
    padding: 11px 16px;
    color: #172b4d;
    font-weight: 500;
    text-decoration: none;
    background-color: #ffab00;
    border: 1px solid #ffab00;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.btnDT a:hover {
    color: #172b4d;
    background-color: #ffab0017;
}

.btnDT a.btnDTthamgia {
    background-color: transparent;
}

.homeTeaserRelative {
    background-color: #e4f8ff;
    position: relative;
    padding-top: 96px;
}

.homeTeaser {
    background-size: cover;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
}

.homeTeaserRelative .TeaserTop {
    position: absolute;
    top: 0;
    width: 100%;
}

.homeTeaserRelative .TeaserBottom {
    /* position: absolute; */
    width: 100%;
    bottom: 0;
}

.TeaserBottomRelative {
    position: relative;
}

.homeTeaserCt {
    text-align: center;
}

.homeTeaserCt p {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 64px;
    font-weight: 600;
}

.homeTeaserCt .cs a {
    color: #ffab00;
    text-decoration: none;
    font-size: 18px;
}

.homeTeaserVideo {
    margin: 32px 0;
}

.TeaserBottomRelative {
    margin-top: 32px;
}

.homeShare {
    text-align: center;
    position: relative;
    padding: 64px 0;
}

.homeShare .cay {
    display: none;
}

.homeShare .cay1 {
    position: absolute;
    bottom: 0;
    left: 5%;
}

.homeShare .cay2 {
    position: absolute;
    bottom: 0;
    right: 5%;
}

.homeSharecontent h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 64px;
}


/* .homeShareSlider .owl-stage-outer {
    overflow: inherit !important;
} */

.homeShareSlider .owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.homeShareSlider .itemPhay {
    margin-bottom: 5px;
}

.homeShareSlider .itemContent {
    font-size: 20px;
}

.homeShareSlider .itemAthor img {
    margin: 16px auto;
    width: 100px !important;
    height: 100px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.homeShareSlider .itemAthor .itemName {
    font-size: 14px;
    font-weight: 600;
}

.homeShareSlider .itemAthor .itemIntroduce {
    font-size: 12px;
}

.screenshot_slider .owl-item .item {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding: 30px;
    margin: 0 10px;
    border: 1px solid transparent;
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
    opacity: .5;
    -moz-transform: scale(0.75);
    -o-transform: scale(0.75);
}

.screenshot_slider .owl-item.center .item {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    border: 1px solid #ffb600;
    border-radius: 4px;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.screenshot_slider .owl-nav {
    text-align: center;
    margin-top: 40px;
}

.screenshot_slider .owl-nav button {
    font-size: 40px !important;
    margin: 10px;
    position: absolute;
    top: 40%;
}

.screenshot_slider .owl-nav button i {
    color: rgba(10, 10, 10, 0.4)
}

.screenshot_slider .owl-nav button.owl-prev {
    left: 10px;
}

.screenshot_slider .owl-nav button.owl-next {
    right: 10px;
}

.owl-dots .owl-dot span {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: #fff;
    -webkit-box-shadow: 0 0 0 1px rgb(255 182 0 / 50%);
    box-shadow: 0 0 0 1px rgb(255 182 0 / 50%);
}

.owl-dots .owl-dot.active span {
    background: #ffb600;
    -webkit-box-shadow: 0 0 0 1px rgb(255 255 255 / 75%);
    box-shadow: 0 0 0 1px rgb(255 255 255 / 75%);
}

.homeTeam {
    text-align: center;
    padding: 64px 0;
    border-top: 1px solid #dfe1e6;
}

.homeTeam h1,
.homeBlog h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 64px;
    text-align: center;
}

.homeBlog {
    background: #f6f9ff;
    padding: 64px 0;
}

.homeBlogImg {
    margin-bottom: 24px;
}

.homeBlogImg img{
  min-height:200px;
}

.homeBlogTitle a {
    text-decoration: none;
    color: #172b4d;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.homeBlogExcept p {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.homeBlog .btnXT {
    text-align: center;
}

.homeBlogContent {
    margin-bottom: 32px;
}

.homeBlog .btnXT a {
    padding: 10px 20px;
    text-decoration: none;
    border: 1px solid #ffab00;
    color: #172b4d;
    transition: all .3s;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.homeBlog .btnXT a:hover {
    background: #ffab004f;
}

@media (min-width:992px) {
    .mainBanner {
        height: 90vh;
    }
    .mainBannerText .gridLayout {
        flex-basis: auto;
        width: 50%;
    }
    .mainBannerText .gridLayout h1 {
        font-size: 40px;
        line-height: 1.3;
    }
    .mainBannerText .gridLayout p {
        font-size: 18px;
        font-weight: 400;
        line-height: 1.56;
    }
    .mainBannerBg {
        display: block;
    }
    .mainBannerMB img {
        display: none;
    }
    .homeShare .cay {
        display: block;
    }
    .homeShare,
    .homeTeam,
    .homeBlog {
        padding: 96px 0;
    }
    .footer,
    .btnDT {
        padding: 64px 0;
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1152px !important;
    }
}






/* footer */

.footer {
    padding: 96px 0;
    border-bottom: 1px solid #dfe1e6;
    border-top: 1px solid #dfe1e6;
}

.footer a {
    text-decoration: none;
    color: #6b778c;
}

.footerLH,
.footerTG,
.footerKN {
    margin-bottom: 32px;
}

.footerLH p,
.footerTG p,
.footerKN p {
    padding: 4px 0;
    margin: 0;
    font-size: 13px;
}

.footerKN .KNimg {
    margin: 16px 0;
}

.footerKN .KNimg a {
    margin-right: 16px;
}

.footerKN .KNimg a img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .5;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    width: 24px;
    height: 24px;
}

.footerKN .KNimg a img:hover {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
}

.footerCty .CtyImg {
    margin-bottom: 16px;
}


.scrolltop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    background-color: #97a0af;
    border-radius:50%;
    color: #fff;
    opacity: .3;
    z-index:999;
    cursor: pointer;
    transition: all .5s;
}

.scrolltop:hover{
  background-color:#ffab00;
  opacity: 1;
}

.dev .devImg {
    padding: 20px 0;
    text-align: center;
}

.dev .devImg img {
    width: 100px;
    height: auto;
}

.modal-header button{
  border:none;
  background:transparent;
}

.modal-body a{
    font-size:14px;
    font-weight:600;
    background-color: transparent;
    color: #ffab00;
    text-decoration: none;
}

.u-flexGrow-1 {
    flex-grow: 1;
}

.modal-footer{
  background:#f4f5f7;
}

.modal-footer button{
  padding: calc(0.375rem - 1px) 1rem;
  width:100%;
  background:#ffab00;
  border:none;
  border-radius:4px;
}

.FormInput {
    transition: all .15s ease-in-out;
    padding: calc(0.375rem - 1px) 1rem;
    line-height: 1.5rem;
    border-radius: 4px;
    height: calc(0.375rem * 2 + 1.5rem);
    border: 1px solid #dfe1e6;
    background: #fff;
}

.fade2 {
    transform: scale(0.9);
    opacity: 0;
    transition: all .2s linear;
    display: block;
}

.fade2.show {
    opacity: 1;
    transform: scale(1);
}
