html, body, div, span, applet, object, iframe, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ul, ol {
    padding-left: 20px;
}
body {
	line-height: 1;
    box-sizing: border-box;
	font-family: "Open Sans";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: #f8fdff;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.object-fit-cover{
    object-fit: cover;
}
.text-justify {
    text-align: justify;
}
strong {
    font-weight: bolder;
}
:root {
    --color-main: #0464ea;
    --color-text: #000;
    --color-title: #000;
}
.color-text {
	color: var(--color-text);
}
.color-title {
	color: var(--color-title);
}
.color-main {
    color: var(--color-main);
}
body {
    padding-top: 134px;
}
.text-sm {
	font-size: 14px;
}
.cursor-pointer {
    cursor: pointer;
}
.header {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
.zalo-contact {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: #fff;
    padding: 6px 24px;
    background-color: var(--color-main);
    text-decoration: none;
    width: fit-content;
    align-items: center;
    border-radius: 4px;
}
.zalo-contact:hover {
    color: #fff;
}
.sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 200px);
    left: 0;
    width: 200px;
    background: #fff;
    transition: all .3s cubic-bezier(0.215, 0.610, 0.355, 1);
    opacity: 0;
    list-style: none;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    animation: mc-fade-in-bottom 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    -webkit-animation: mc-fade-in-bottom 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@keyframes mc-fade-in-bottom {
    0% {
      -webkit-transform: translateY(20px);
      transform: translateY(20px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }
  }
ul#menu-main-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: end !important;
    width: 100%;
    padding-left: 0;
}
ul#menu-main-menu ul {
    padding-left: 0;
}
.sub-menu >li {
    line-height: 2.5;
    padding: 6px 12px;
    transition: all .3s ease-in-out;
}
.custom-menu .sub-menu {
    min-width: 250px;
}
.sub-menu >li:hover {
background: rgb(4,100,234);
background: linear-gradient(180deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
}
.sub-menu >li:hover a {
    color: #fff;
}
.section-menu{
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    border-top: 1px solid #FF2B801A;
}
ul#menu-main-menu > li > a, .sub-menu >li >a {
    color: #58575C;
    text-decoration: none;
    font-size: 16px;
}
ul#menu-main-menu > li {
    line-height: 4.5;
    padding: 0px 12px;
    position: relative;
}

@media (min-width: 992px) {
    ul#menu-main-menu > li.menu-item-has-children:hover > .sub-menu{
        display: block;
        transform: translateY(0);
        opacity: 1;
        top: 100%
    }
	ul#menu-main-menu > li.menu-item-has-children.custom-menu:hover > .sub-menu {
		display: grid;
        transform: translateY(0);
        opacity: 1;
        top: 100%;
		width: 45vw;
		grid-template-columns: repeat(2, 1fr);
	}
}

.btn-search {
    background: none;
    border: none;
    outline: none;
}
ul#menu-main-menu > li:hover > a {
    color: var(--color-main);
}
.banner-pagination {
    position: relative !important;
    top: unset !important;
}
.section-content-wrapper {
    background: #fff;
    border-radius: 50px;
    box-shadow: 0px 24px 32px 0px rgba(206, 221.99999999999994, 236.99999999999997, 0.24);
}
.section-1 {
    position: relative;
    transform: translatey(-100px);
    z-index: 2;
}
.section-1-content-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}
.video-title {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 12px;
    align-items: center;
    color: var(--color-title);
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}
.line-blue {
    width: 100%;
    height: 3px;
    background: rgb(4,100,234);
    background: linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    position: relative;
    display: block;
}
.line-blue::after {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--color-main);
    border-radius: 50%;
    position: absolute;
    top: -2.5px;
    right: -4px;
}
.section-title span{
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-content {
    font-weight: 400;
}
.play-video {
    background: rgb(4,100,234);
    background: linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    height: 40px;
    border-radius: 24px;
    border: none;
    outline: none;
    padding: 0px 18px;
}
.list-case-study {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.case-study {
    border-radius: 24px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}
.post-thumb {
    aspect-ratio: 1.6;
}
.client-logo {
    max-width: 60px;
}
.case-study-number {
    font-size: 18px;
    font-weight: bold !important;
    color: var(--color-title);
}
.btn-readmore  {
    padding: 6px 20px;
    width: fit-content;
    border: 1px solid var(--color-main);
    background: none;
    border-radius: 24px;
    margin: 0px auto;
}
.btn-readmore a {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
}
.section-3 {
    background-size: cover;
    position: relative;
    background-position: center;

}
.section-3::before, .case-study-section-5::before, .single-banner::before, .about-section-2::before,
.seo-section-9::before, .seo-section-13::before, .monopoly-section-6::before, .gg-ads-section-8::before,
.about-section-4::before, .about-section-8::before, .about-section-6::before, .train-section-3::before, .fb-ads-section-6::before,
.seo-section-5::before, .seo-section-7::before, .seo-section-12::before, .monopoly-section-1::before, .testimonial-section::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.76);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.color-yellow i {
    color: #ffc20d;
    font-size: 18px;
    font-weight: bold;
}
.testimonial {
    border-radius: 32px;
}
.section-3 .section-title, .testimonial-list {
    z-index: 2;
}
.section-3 .section-title span {
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.client-image {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 50%;
}
.client-text {
    width: calc(100% - 1rem - 70px);
}
.swiper-button-prev.testimonial-prev {
    z-index: 3;
    left: -50px;
    top: 55%;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--color-main);
    border-radius: 50%;
}
.swiper-button-next.testimonial-next{
    z-index: 3;
    right:  -50px;
    top: 55%;
    color: #fff;
    width:40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--color-main);
    border-radius: 50%;
}
.swiper-button-prev:after, .swiper-button-next:after {
  font-size: 18px !important;
  font-weight: bold;
}
.client-name {
    font-size: 24px;
    font-weight: bold;
}
.client-company {
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-4 .section-title span, .section-5 .section-title span, .section-6 .section-title span, .section-10 .section-title span {
     background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.section-2 .section-desc {
    max-width: 70%;
    margin: 0px auto;
}
strong {
    font-weight: bold;
}
.service-icon {
    max-height: 60px;
    height: 60px;
}
.service {
    border-radius: 28px;
    background: #F4F4F4;
}
.service-feature ul {
    padding-left: 24px;
    list-style: none;
}
.service ul li {
    margin-top: 12px;
    position: relative;
}
.service ul li::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url('../images/right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
    left: -28px;
    position: absolute;
    display: block;
}
.section-4, .monopoly-section-5 {
    background-image: url('../images/background-section.png');
    background-size: 400px 400px;
    background-repeat: no-repeat;
    background-position: center center;
}
.section-6 {
    background-color: #F8F8F8 ;
    background-image: url('../images/section-6-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.section-5 {
    background-image: url('../images/section-5-bg.png');
    background-color: #FFFFFF;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.custom-container {
    display: flex;
    align-items: center;
}
.right-section {
    padding: 0px 135px;
}
.company-info {
    max-width: 500px;
    justify-content: center;
    position: relative;
}
.employee-item {
    padding: 0px 50px;
}
.number-item {
    font-size: 48px;
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-item {
    font-size: 24px;
    font-weight: 600;
}
.company-info::after {
    width: 100%;
    height: 100%;
    content: "";
    background-image: url('../images/divider.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cta-btn, .btn-submit {
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    padding: 2px;
    overflow: hidden;
    border-radius: 48px;
    border: none;
    outline: none;
}
.cta-btn.btn-1 span{
    background: #f8fdff;
    color: var(--color-main);
    border-radius: 48px;
}
.cta-btn span {
    padding: 12px 32px;
    text-align: center;
    transition: all .3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.cta-btn.btn-2 span, .btn-submit span {
    color: #fff;
    border-radius: 48px;
}
.cta-btn.btn-1:hover span {
    background: none;
    color: #fff;
}
.cta-btn.btn-2:hover span, .btn-submit:hover span {
    background: #f8fdff;
    color: var(--color-main);
}
.section-10 , .monopoly-section-7, .gg-ads-section-13, .fb-ads-section-7, .website-section-6, .hosting-section-10{
    background: linear-gradient(to right, #f4f4f4 50%, rgb(152, 215, 238)  50%);
}
.form-img {
    max-width: 400px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-25%);
}
.contact-form {
    border-radius: 32px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}
.contact-form input, .contact-form select, .contact-form textarea, .contact-form input::placeholder, .contact-form textarea::placeholder {
    color: var(--color-text);
    outline: none;
}
.btn-submit {
    font-size: 18px;
}
.btn-submit span {
    padding: 10px 0px;
    transition: all .2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.form-logo {
    max-width: 300px;
    position: absolute;
    top: 62%;
    left: 64.3%;
}
.list-menu-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.footer-logo {
    width: 150px;
}
.footer-company-name {
    font-size: 24px;
    font-weight: bold;
}
.mid-footer {
    background: #f7f7f7;
    position: relative;
}
.mid-footer::after, .mid-footer::before {
    content: "";
    height: 1px;
    width: 100%;
    background-image: url('../images/border-line.png');
    background-size: 100%;
    position: absolute;
}
.mid-footer::before {
    top: 0;
}
.mid-footer::after{
    bottom: 0;
}
.bct-vn img{
    max-width: 200px;
}
.list-event {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 8px;
}
.img-item {
    overflow: hidden;
    border-radius: 5px;
    transition: all .2s ease-in-out;
}
.img-1, .img-3,  .img-6, .img-7 {
    aspect-ratio: 1;
}
.img-5 {
    aspect-ratio: 225/208;
}
.img-2 {
    aspect-ratio: 2.51588150198;
    position: relative;
}
.img-4 {
    aspect-ratio: 2.038647343;
}
.text-1{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #0464eade;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 0px 20px;
    gap: 20px;
}
.text-1 strong, .text-2 strong, .text-3 strong {
    font-size: 48px;
}
.row-1 {
    display: grid;
    grid-template-columns: 1fr 2.03365384615fr 1.08173076923fr;
    gap: 8px;
    margin-bottom: 8px;
}
.row-2 {
    display: grid;
    grid-template-columns: 1.72906403941fr 1fr 1.48768472906fr;
    gap: 8px;
}
.img-8 {
    aspect-ratio: 1.48402948403;
}
.left-side {
    gap: 8px;
}
.text-2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #04bceade;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 0px 40px;
    gap: 8px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.5;
}
.text-3 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #ea8604de;
    color: #fff;
    display: flex;
    align-items: start;
    justify-content: center;
    font-size: 24px;
    padding: 0px 20px;
    gap: 10px;
    flex-direction: column;
}
.img-2:hover, .img-3:hover, .img-8:hover {
    transform: scale3d(.9, .9, .9);
}
.big-partner {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    align-items: center;
}
.footer-title {
    font-size: 18px;
}
.case-study-banner {
    height: 408px;
    z-index: 1;
}
.page-title {
    font-size: 32px;
}
.case-study-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}
ul.page-numbers {
    display: flex;
    gap: 24px;
    list-style: none;
    justify-content: center;
    align-items: center;
}
a.page-numbers {
    text-decoration: none;
}
.list-major, .list-service {
    display: none;
    width: 100%;
    position: absolute;
    z-index: 2;
    border-radius: 0px 0px 12px 12px;
    background: #fff;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.major-item, .service-item {
    padding: 8px 16px;
}
.major-item:not(:last-child), .service-item:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.filter-wrapper {
    display: flex;
    justify-content: center;
    background: #fff;
    position: absolute;
    bottom: -30px;
    border-radius: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    box-shadow: 0px 24px 32px 0px rgba(206, 221.99999999999994, 236.99999999999997, 0.24);
}
.filter-item:not(:last-child) {
    border-right: 1px solid #eee;
}
.bg-gray {
    background-color: #f4f4f4;
}
.case-study-section-5 .section-content {
    z-index: 3;
    position: relative;
    width: 70%;
}
.case-study-section-5 {
    height: 417px;
}
.link-to-contact {
    position: relative;
    z-index: 3;
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    padding: 2px;
    overflow: hidden;
    border-radius: 48px;
    border: none;
    outline: none;
    width: fit-content;
    color: #fff;
    padding: 8px 18px;
    line-height: 1.5;
}
.contact-info {
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    padding: 100px 70px;
    z-index: 3;
    position: absolute;
    top: -206px;
    width: 100%;
    border-radius: 50px 24px 0px 0px;
}
.case-study-section-4 {
    padding-bottom:6rem;
}
.contact-heading {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
}
.btn-readmore-blog {
    display: flex;
    position: absolute;
    gap: 12px;
    text-decoration: none;
    color: var(--color-main);
    bottom: 60px;
    right: 155px;
    width: 120px;
}
.btn-readmore-blog svg {
    width: 32px;
}
.case-study-archive .swiper-button-next.testimonial-next, .case-study-archive .swiper-button-prev.testimonial-prev {
    color: var(--color-main);
}
.single-banner {
    height: 320px;
    background-size: cover;
    background-position: top center;
    position: relative;
}
.single-banner-text {
    position: relative;
    z-index: 3;
}
.breadcrumb ul {
    display: flex;
    list-style: none;
    gap: 6px;
    color: #fff;
}
.breadcrumb ul li a{
    color: #fff;
    text-decoration: none;
}
.post-info {
    border-bottom: 1px solid #fff;
}
.box-shadow {
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}
.archive-banner {
    height: 408px;
    padding-top: 88px;
}
.search-form input, .header-search-form input {
    border: none;
    outline: none;
    border-radius: 32px;
    padding-left: 50px;
    padding-right: 18px;
    font-size: 16px;
}
.search-icon {
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    line-height: 1;
    display: block;
    font-size: 18px;
}
.archive-banner-title {
    font-size: 32px;
}
.list-categories-container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-content: center;
    align-items: center;
    padding: 18px 137px;
    background: #fff;
    border-radius: 32px;
    position: relative;
    box-shadow: 0px 24px 40px 0px rgba(6, 110, 230, 0.05);
}
.list-categories-container::before {
    content:"";
    width: 100%;
    height: 1px;
    background-color: #eee;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.category-item {
    display: flex;
    gap: 24px;
    align-items: start;
    padding: 32px 0px;
}
.section-list-categories {
    margin-top: -80px;
}
.cat-name {
    font-size: 18px;
    font-weight: bold;
}
.list-archive-post {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.post-item, .latest-post {
    overflow: hidden;
    border-radius: 32px;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
}
.post-thumb {
    aspect-ratio: 1.6;
    border-radius: 32px 32px 0px 0px;
}
.post-title a {
    font-size: 18px;
    text-transform: uppercase;
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.post-text {
    border-bottom: 1px solid #eee;
}
.custom-breadcrumb .breadcrumb ul {
    color: var(--color-text);
}
.custom-breadcrumb .breadcrumb ul li a {
    color: var(--color-main);
}
.list-other-cat, .service-list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}
.other-cat {
    border-radius: 28px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15)
}
.cat-features ul {
    list-style: none;
}
.cat-features ul li {
    padding-left: 20px;
    position: relative;
    line-height: 2;
    font-size: 14px;
}
.cat-features ul li::before {
    content:"";
    width: 18px;
    height: 18px;
    background: url('../images/right.svg');
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    background-size: contain;
}
.archive-contact {
    /* Đặt hình ảnh nền */
    background-image: url('../images/bakground-banner.png'), linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    
    /* Kích thước và vị trí của hình ảnh */
    background-size: 60% 100%, 100% 100%;
    background-position: left top, right top;
    background-repeat: no-repeat;
}
.contact-wrapper {
    padding-left: 130px;
}
.icon-absolute {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
}
.list-checkbox {
    border-top: 1px solid #eee;
}
.register-form {
    border-radius: 24px;
}
.register-form .btn-submit {
    padding: 6px 24px;
    width: 100%;
    text-align: center;
    color: #fff;
}
.register-form input {
    border: none;
}
.register-form input:focus{
    outline: none;
}


/*** ABOUT CSS ***/

.about-section-1 .section-title {
    font-size: 60px;
}
.about-section-1 .section-desc{
    padding-left: 50px;
    border-left: 1px solid var(--color-main);
}
.btn-next-section svg {
    width: 32px;
}
.z-3 {
    z-index: 3;
}
.about-section-2, .about-section-4 {
    background-size: cover;
}
.about-section-2 .section-desc, .about-section-6 .section-desc {
    padding-left: 50px;
    border-left: 1px solid #fff;
}
.page-template-about-us .section-title {
    font-size: 48px;
    font-weight: bold;
}
.page-template-about-us .section-title span, .page-template-total-seo .section-title span {
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.list-about-reason {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.about-reason  {
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    border-radius: 24px;
}
.about-reason ul {
    padding-left: 20px;
}
.bg-blue {
    background-color: rgba(9,182,246,1);
}

.about-section-6 .section-subdesc ul, .about-section-2 .section-subdesc ul {
    padding-left: 20px;
}
/* .section-desc, .section-subdesc, .section-content-subtitle {
    padding-left: 50px;
} */
/* .section-desc {
    border-left: 1px solid #fff;
} */
.section-content-subtitle {
    font-size: 24px;
    font-weight: bold;
}

/** Seo tổng thể CSS **/
.seo-section-1 {
    background-color: #000;
}
.seo-section-1 .section-title {
    font-size: 55px;
    line-height: 1.3;
}
.list-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.feature-item strong, .problem strong {
    font-size: 42px;
    font-weight: bold;
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.list-benefit {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 32px;
}
.benefit-title {
    font-size: 24px;
    height: 88px;
    overflow-y: hidden;
    position: relative;
    z-index: 1;
}
.benefit-title::after{
    content: "";
    width: 100px;
    height: 2px;
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    bottom: 0px;
    left: 0;
    position: absolute;
    z-index: 3;
    display: block;
}
.problem {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.invest-table thead tr th {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    padding: 15px;
    border: 1px solid hsla(0, 0%, 50.2%, .5019607843);
    text-transform: uppercase;
    text-align: center;
}
.invest-table thead tr th:first-child {
    border-radius: 24px 0px 0px 0px;
}
.invest-table thead tr th:last-child {
    border-radius: 0px 24px 0px 0px;
}
.single-post-content td {
	padding: 10px;
	border: 1px solid var(--color-text);
}
.invest-table tr td {
    padding: 15px;
    border: 1px solid hsla(0, 0%, 50.2%, .5019607843);
    background-color: #fff;
    text-align: center;
}
.invest-table tbody tr:nth-child(odd) td {
    background-color: hsl(0, 2%, 82%);
}
.invest-table tr td:first-child {
    width: 170px;
    font-weight: bold;
}
.invest-table tbody tr:last-child td:first-child {
    border-radius: 0px 0px 0px 24px;
}
.invest-table tbody tr:last-child td:last-child {
    border-radius: 0px 0px 24px 0px;
}
.list-plans {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}
.plans-items {
    display: none;
}
.plans-items.active {
    display: block;
}
.plan-tab-title {
    cursor: pointer;
    font-size: 24px;
    margin-right: -1px;
    
    z-index: 2;
    position: relative;
}
.plan-tab-title.active, .plan-tab-title:hover{
   color:var(--color-main);

}
.plan-tab-title.active {
    background: #fff;
    border-bottom: 1px solid #58575C;
}
.plans-tab-content {
    border: 1px solid #58575C;
    border-radius: 24px;
    position: relative;
    z-index: 1;
}
.plan-tab-title::before, .plan-tab-title::after{
    content: "";
    width: 8px;
    height: 8px;
    background: var(--color-main);
    border-radius: 50%;
    position: absolute;
    display: none;
}
.plan-tab-title.active::before, .plan-tab-title.active::after {
    display: block;
}
.plan-tab-title::after {
    bottom: -3.5px;
    left: 10px;
}
.plan-tab-title::before {
    top: -3.5px;
    right: -3.5px;
}
.seo-section-7 .section-content {
    background-color: rgba(9,182,246,1);
    border-radius: 42px 0px 42px 0px;
    margin-top: -6.5rem;
    height: 346px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.seo-section-7 .section-desc {
    font-size: 24px;
    font-weight: 500;
}
.seo-section-7 .section-title {
    font-size: 40px;
    font-weight: bold;
}
.seo-section-7, .seo-section-9 {
    background-size: cover;
}
.seo-section-7 .section-content::before {
    content: '\f10d';
    font-family: 'FontAwesome';
    font-size: 60px;
    position: absolute;
    top: 2rem;
    left: 4rem;
    color: #eeeeee91;
    font-weight: bold;
}
.seo-section-7 .section-content::after {
    content: '\f10e';
    font-family: 'FontAwesome';
    font-size: 60px;
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    color: #eeeeee91;
    font-weight: bold;
}
.list-package {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.package-item {
    border-radius: 24px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.package-feature-item {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}
.package-feature-item strong {
    font-weight: 700;
}
.package-feature-item:not(:last-child){
    border-bottom: 1px solid #eee;
}
.package-feature-item span {
    line-height: 1.2;
}
.package-name {
    font-size: 50px;
    font-weight: bold;
}
.package-desc {
    font-size: 20px;
    font-weight: 600;
}
.package-price {
    font-size: 25px;
}
.package-price strong {
    font-size: 65px;
    font-weight: bold;
}
.package-content {
    font-size: 18px;
}
.btn-advise , .btn-readmore-plan, .btn-register-course, .btn-register, .btn-promo-submit{
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    padding: 8px 20px;
    color: #fff;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 24px;
    line-height: 1.5;
    display: block;
    width: fit-content;
}
.btn-readmore-project a{
    padding: 6px 20px;
    width: fit-content;
    border: 1px solid #fff;
    border-radius: 24px;
    margin: 0px auto;
    display: flex;
    align-items: center;
    color: #fff;
    gap: 12px;
    text-transform: uppercase;
}
.list-seoer {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}
.seoer-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2); */
    border-radius: 24px;
    gap: 24px;
}
.seoer-name {
    font-size: 24px;
}
.seo-section-15{
    background-image: url('../images/bakground-banner.png'), linear-gradient(to right, #3498db 50%, #3498db 50%);
    background-size: 50% 100%, 100% 100%;
    background-position: left top, right top;
    background-repeat: no-repeat;
}
.input-wrapper i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}
.btn-submit-form, .btn-book-form{
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    padding: 10px 20px;
    color: #fff;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 24px;
    line-height: 1.5;
}
.contact-info-m {
    font-size: 20px;
    font-weight: bold;
}
.contact-info-m i {
    font-size: 40px;
}
.custom-question {
    border-top: 1px solid #eee;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}
.custom-answer {
    display: none;
}
.custom-answer ul {
    padding-left: 20px;
}
.custom-question .fa-minus, .course-content-header .fa-minus{
    display: none;
}
.custom-question.active .fa-minus, .course-content-header.active .fa-minus {
    display: block;
}
.custom-question.active .fa-plus, .course-content-header.active .fa-plus {
    display: none;
}
.custom-question.active, .course-content-header.active {
    color: var(--color-main);
}
.monopoly-section-1, .train-section-1 {
    min-height: 768px;
    background-size: cover;
}
.monopoly-section-1 .title-page, .train-section-1 .title-page{
    font-size: 50px;
}
.section-main-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 32px;
}
.img-left {
    margin-top: -6.5rem;
}
.monopoly-section-2 .section-title {
    font-size: 28px;
    border-left: 1px solid var(--color-main);
    font-weight: bold;
}
.goal-item {
    
    background: #fff;
    padding: 3rem;
    border-radius: 32px;
    display: none;
}
.goal-item.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.goal-tab-header, .project-header-tab {
    cursor: pointer;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: all .2s ease-in-out;
}
.goal-tab-header:hover, .goal-tab-header.active, .project-header-tab:hover, .project-header-tab.active {
    color: var(--color-main);
    border-color: var(--color-main);
}
.goal-title {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
}
.goal-content ul {
    padding-left: 20px;
}
.goal-desc {
    padding-left: 30px;
    border-left: 2px solid #fbbc05;
}
.page-template-monopoly .list-case-study {
    display: none;
}
.page-template-monopoly .list-case-study.active, .page-template-gg-ads .list-case-study {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.list-achievement {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.achievement-number {
    font-size: 48px;
    color: #fbbc05;
}
.achievement-title {
    font-size: 22px;
}
.procedure-title {
    font-size: 32px;
}
.seo-section-14 .section-subtitle {
    font-size: 28px;
}
.seo-section-14 .section-content {
    font-size: 18px;
}
.train-list-problem, .list-train-reason{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.train-problem-content {
    padding-left: 20px;
}
.train-problem-item {
    box-shadow: 0px 24px 32px 0px rgba(206, 221.99999999999994, 236.99999999999997, 0.24);
    border-radius: 24px;
}
.problem-count {
    font-size: 100px;
    color: #34a853;
}
.train-problem-item:nth-child(2) .problem-count{
    color: #ea4335;
}
.train-problem-item:nth-child(3) .problem-count {
    color: #fbbc05;
}
.train-problem-title {
    font-size: 24px;
    line-height: 1.5;
}
.list-train-features {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(3,1fr);
}
.feature-number {
    font-size: 100px;
    font-weight: bold;
    color: #fbbc05;
}
.train-reason-item {
    background: #F4F4F4;
    border-radius: 24px;
}
.train-reason-content ul {
    list-style: none;
}
.train-reason-content ul li {
    position: relative;
    padding-left: 35px;
}
.train-reason-content ul li::before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-image: url('../images/next.svg');
}
.course-content-item {
    width: calc(50% - 24px);
   
}
.list-course-content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.course-content-item {
    border-radius: 24px;
}
.course-content-header {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    gap: 24px;
}
.course-content ul {
    padding-left: 20px;
}
.course-content {
    display: none;
}
.teacher-item {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
    border-radius: 32px;
}
.teacher-item ul {
    padding-left: 20px;
}
.course-name {
    font-size: 22px;
}
.teacher-position {
    color: #58575c;
    font-weight: 500;
}
.teacher-img {
    margin-top: -3rem;
}
.teacher-name {
    font-size: 24px;
}
.list-achive-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:8px;
    grid-auto-flow: dense;
}
.achive-gallery {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.achive-gallery:last-child{
    grid-column: span 2;
}
.achive-gallery:nth-child(1) {
    aspect-ratio: 2.52775;
}
.achive-gallery:nth-child(2) {
    aspect-ratio: 1.71375;
}
.achive-gallery:nth-child(3) {
    aspect-ratio: 0.9455;
    margin-top: -55px;
}
.achive-gallery:nth-child(4) {
    aspect-ratio: 1.1425;
}
.achive-gallery:nth-child(5) {
    aspect-ratio: 3.37138392857;
}
.achive-count strong {
    font-weight: bold;
    font-size: 32px;
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.achive-count span {
    border-bottom:1px solid #000;
    width: 100%;
}
.achive-title {
    font-size:24px;
}
.opening-info-content {
    font-size: 32px;
}
.list-opening-info {
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    border-radius: 32px;
}
.opening-info:not(:last-child) {
    border-right: 1px solid #eee;
}
.promotion-info {
    display: grid;
    align-items: center;
    gap: 139px;
    grid-template-columns: 1fr 1.5fr;
    border: 1px solid var(--color-main);
    border-radius: 32px;
}
.left-info-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.left-promotion-info::before{
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000a4;
}
.left-promotion-info {
    aspect-ratio: 1.5;
    border-radius: 32px;
}
.right-promotion-info {
    font-size: 18px;
}
.right-promotion-info ul {
    padding-left: 20px;
}
.promotion-info-title {
    font-size: 32px;
}
.iframe-wrapper{
    border-radius: 24px;
    aspect-ratio: 16/9;
}
.iframe-wrapper iframe {
    width: 100%;
    height: 100%;
}
.staff-section-1::before {
    background: #fbbc05;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: .8;
}
.staff-section-1 {
    background-size: cover;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-repeat: no-repeat;
}
.list-staff {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    row-gap: 3rem;
}
.staff-wrapper {
    background: #f4f4f4;
    border-radius: 12px;
}
.staff-img {
    margin-top: -3rem;
}
.list-gg-ads-feautures {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}
.gg-ads-feature-item {
    border-radius: 24px;
}
.feature-img {
    aspect-ratio: 0.8;
}
.gg-ads-section-1 {
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 700px;
}
.campaign-item {
    background: #fff;
    transition: all .5s ease-in-out;
    border-radius: 32px;
    min-height: 320px;
    padding: 0px 2rem;
}
.list-campaign {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gg-ads-section-3 {
    background: rgb(187,227,241);
    background: linear-gradient(234deg, rgba(187,227,241,1) 17%, rgba(216,238,247,1) 90%);
}
.campaign-title {
    font-size: 24px;
}
.campaign-content, .campaign-link {
    display: none;
    color: #fff;
    transition: all .3s ease-in;
}
.campaign-item:hover {
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
}
.campaign-item:hover .campaign-content, .campaign-item:hover .campaign-title, .campaign-item:hover .campaign-desc {
    color: #fff;
    display: block;
}
.campaign-item:hover  .campaign-link {
    margin: 0px auto;
    color: #fff;
    border: 1px solid #fff;
    text-align: center;
    padding: 8px 24px;
    border-radius: 24px;
    display: block;
    text-decoration: none;
}
.list-gg-ads-service {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.gg-ads-service-item {
    border-radius: 32px;
}
.gg-ads-service-desc {
    border-left: 2px solid violet;
}
.gg-ads-subcontent ul, .gg-ads-goal-content ul {
    padding-left: 20px;
}
.gg-ads-subcontent {
    border-radius: 24px;
}
.service-title {
    font-size: 16px;
}
.gg-ads-goal-title, .problem-title {
    padding: 8px 32px;
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    color: #fff;
    border-radius: 24px;
    font-weight: bold;
}
.list-gg-ads-model {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.gg-ads-model-item {
    z-index: 1;
}
.gg-ads-model-item:nth-child(6) {
    order: 4;
}
.gg-ads-model-item:nth-child(5){
    order: 5;
}
.gg-ads-model-item:nth-child(4){
    order: 6;
}
.gg-ads-img {
    aspect-ratio: 1;
}
.gg-ads-model-item:nth-child(1){
    background-color: #fbbb00;
    position: relative;
    border-radius: 32px 0px 0px 0px;
}
.gg-ads-model-item:nth-child(2)::after {
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 15px 26.0px 15px;
    border-color: transparent transparent #FBBB00 transparent;
    transform: rotate(90deg);
    position: absolute;
    bottom: 20px;
    left: -2px;
    z-index: 2;
    display: block;
}
.gg-ads-model-item:nth-child(4)::after {
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 15px 26.0px 15px;
    border-color: transparent transparent #518ef8 transparent;
    transform: rotate(180deg);
    position: absolute;
    top: -2px;
    right: 20px;
    z-index: 2;
    display: block;
}
.gg-ads-model-item:nth-child(3) {
    background-color: #518ef8;
    border-radius: 0px 32px 0px 0px;
}
.gg-ads-model-item:nth-child(5) {
    background-color: #f14336;
}
.linkto-model {
    background: #fff;
    padding: 8px 24px;
    border-radius: 24px;
    width: fit-content;
}
.list-gg-ads-achive {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.gg-ads-section-8 {
    background-size: cover;
}
.gg-ads-achive-title {
    font-size: 50px;
    color: #FBBB00;
}
.gg-ads-achive-content {
    font-size: 20px;
}
.list-step {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.step-title {
    color: #333;
    border-bottom: 1px solid transparent;
    transition: all .2s ease-in-out;
    font-weight: 500;
    cursor: pointer;
}
.step-title.active, .step-title:hover {
    border-bottom: 1px solid var(--color-main);
    color: var(--color-title);
}
.step-tab {
    display: none;
}
.step-tab.active {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}
.list-value {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    border-radius: 24px;
}
.value-image-item, .value-content, .value-title .fa-minus {
    opacity: 0;
    height: 0px;
    transition: all 0.1s ease-in-out;
    width: 0;
}
.value-image-item.active, .value-content.active, .value-title.active .fa-minus {
    opacity: 1;
    height: auto;
    width: auto;
    display: block;
}
.value-wrapper {
    display: flex;
    align-items: start;
    gap: 12px;
    transition: all .2s ease-in-out;
}
.value-title {
    font-size: 24px;
    color: #f14336;
    cursor: pointer;
}
.value-title.active .fa-plus{
    display: none;
}
.value-info {
    width: calc(100% - 52px);
}
.value-count {
    background-color: #f14336;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
}
.value-content ul{
    padding-left: 20px;
}
.testimonial-section {
    background-image: url('../images/background-general.png');
    background-size: cover;
}
.gg-ads-section-13 .section-title {
    font-size: 24px;
}
.fb-ads-section-1 {
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 700px;
}
.fb-ads-section-1 .section-content ul {
    padding-left: 20px;
}
.fb-ads-section-1 .section-subtitle {
    font-weight: bold;
    font-size: 20px;
}
.list-fb-ads-problem , .list-fb-ads-service{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.fb-ads-section-6 {
    min-height: 500px;
    background-size: cover;
}
/**** Dịch vụ thiết kế Website CSS ****/
.website-section-1, .website-section-4, .contact-section-1 {
    background-size: cover;
}
.section-promotion .promotion {
    font-size: clamp(2rem, 6vw, 6rem);
    font-weight: bold;
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-promotion span {
    font-size: 32px;
    font-weight: bold;
}
.website-section-1 .title-page {
    font-size: 50px;
}
.website-section-1 .section-content, .website-section-1 .section-slogan {
    font-size: 24px;
}
.list-website-service {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.website-section-2 {
    background-image: url('../images/vector_bg.webp');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-color: #fff;
}
.website-service {
    box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2), 0 0px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: #fff;
    border-radius: 24px;
    overflow: hidden;
    padding-bottom: 50px;
}
.website-service:nth-child(1) .website-service-header{
    background: rgb(4,100,234);
    background: linear-gradient(128deg, rgba(4,100,234,1) 17%, rgba(9,182,246,1) 94%);
}
.website-service:nth-child(2) .website-service-header{
    background: rgb(234,67,53);
background: linear-gradient(128deg, rgba(234,67,53,1) 17%, rgba(251,188,5,1) 94%);
}
.website-service:nth-child(3) .website-service-header{
    background: rgb(251,188,5);
    background: linear-gradient(128deg, rgba(251,188,5,1) 29%, rgba(52,168,83,1) 100%);
}
.website-service-feature {
    display: flex;
    gap: 24px;
    border-bottom: 1px solid var(--color-main);
    justify-content: space-between;
}
.service-feature-title {
    width: calc(65% - 12px);
}
.service-feature-content {
    width: calc(35% - 12px);
    text-align: right;
    font-weight: bold;
    font-size: 18px;
    color: #58575C;
}
.website-service-title, .feature-website-title {
    font-size: 24px;
}
.website-service-price {
    font-size: 40px;
}
.website-service .btn-register {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.website-service-content {
    padding-bottom: 80px;
}
.website-reason {
    display: flex;
    gap: 32px;
    align-items: center;
}
.website-reason:nth-child(even){
    flex-direction: row-reverse;
}
.reason-img, .reason-text {
    width: calc(50% - 16px);
}
.website-reason-title {
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(9,182,246,1);
}
.website-reason-title .count {
    font-size: 52px;
    font-weight: 900;
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.website-reason-content ul, .feature-website-content ul {
    list-style: none; 
}
.website-reason-content ul li, .feature-website-content ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.5;
}
.website-reason-content ul li::before, .feature-website-content ul li::before {
    font-family: 'FontAwesome';
    content: "\f00c";
    font-size: 20px;
    font-weight: bold;
    color: rgba(4,100,234,1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: block;
    width: 20px;
    height: 20px;
    line-height: 1;
}
.worflow-item {
    display: flex;
    gap: 24px;
}
.count-number {
    font-size: 32px;
    font-weight: bold;
}
.workflow-title {
    font-size: 20px;
    font-weight: bold;
}
.list-feature-website {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.contact-section-1 {
    min-height: 400px;
}
.contact-info-wrapper {
    /*  */
    background-color: #fff;
    padding: 2rem 2.5rem;
    border-radius: 24px;
}
.contact-item {
    box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2), 0 0px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--color-text);
}
.contact-item:hover {
    background: #f4f4f4;
}
.btn-submit-hiring{
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    border-radius: 12px;
    padding: 6px 20px;
    display: block;
    margin: 0px auto;
    border: none;
    outline: none;
    color: #fff;
}
.maps-wrapper iframe {
    width: 100%;
}
.inputVal {
    font-size: 12px;
    color: red;
    display: none;
}

/** Tuyển dụng **/
.list-hiring-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hiring-info-item {
    display: flex;
    gap: 12px;
}
.hiring-header, .hiring-detail {
    border-radius: 8px;
}
.time-hiring {
    width: fit-content;
    border-radius: 8px;
    font-size: 14px;
}
.apply-btn  {
    width: 100%;
    border: none;
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    color: #fff;
    outline: none;
    padding: 8px;
    border-radius: 8px;
}
.btn-scroll-contact {
    width: fit-content;
    border: none;
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    color: #fff;
    outline: none;
    padding: 8px 20px;
    border-radius: 8px;
    margin: 0px auto;
}
.hiring-thumb {
    border: 1px solid #eee;
}
.other-hiring:not(:last-child) {
    border-bottom: 1px dotted #eee;
}
.hiring-section-2, .video-wrapper, .popup-book, .popup-analysis, .popup-30-4 {
    position: fixed;
    background: rgb(0 0 0 / 80%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    display: none;
}
.loading-gif {
    position: fixed;
    background: rgb(0 0 0 / 80%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99990;
    align-items: center;
    justify-content: center;
    display: none;
}
.hiring-section-2.active, .video-wrapper.active, .popup-book.active, .popup-analysis.active, .loading-gif.active, .popup-30-4.active {
    display: flex;
}
.hiring-popup-content{
    background: #fff;
    border-radius: 24px;
    width: 500px;
}
.btn-close-hiring-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: bold;
    color: red;
}
.list-hiring-post {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 32px;
}
.hiring-item {
    box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2), 0 0px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 16px;
}
.btn-scroll-top {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: var(--color-main);
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 9999;
    font-size: 24px;
    cursor: pointer;
    line-height: 1.5;
}
.list-client-by-author {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
    width: 100%;
    align-items: center;
}
.list-client-by-author img {
    display: block;
    max-width: 100%;
    height:40px;
    margin: 0px auto;
    width: auto;
}
.author-section-1 {
    min-height: 876px;
    background-size: cover;
}
.author-section-3 {
    background-size: cover;
}
.author-section-3::before{
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.76);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.form-search-wrapper {
    position: absolute;
    display: none;
    width: 100%;
    top: 100%;
    right: 0;
}
.header-search-form {
    max-width: 300px;
}
.single-post-content p, .single-post-content li {
    margin-bottom: 1em;
    line-height: 1.6;
}
.single-post-content h2, .single-post-content h3, .single-post-content h4 {
	color: var(--color-main);
}
.single-post-content img, .single-post-content figure {
	max-width: 100%;
    width: 100% !important;
}
figcaption {
	font-style: italic;
	font-size: 14px;
	text-align: center;
	margin-bottom: 16px;
}
.single-wrapper {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 12px;
}
.latest-post .post-title {
    line-height: 1;
    height: 56px;
    overflow-y: hidden;
}
.latest-post .post-thumb {
    aspect-ratio: 2;
}
.single-post-sidebar {
    top: 150px;
}
.service-product img{
    max-width: 150px;
    width: 100%;
    height: auto;
}
.service-product {
    border: 1px solid #eee
}
.logo-htv img{
    max-width: 65px;
    width: 100%;
    height: auto;
    position: absolute;
    top: -20px;
    right: -65px;
}
.w-fit-content {
    width: fit-content !important;
}
.promo-img {
	position: fixed;
    width: 240px;
    z-index: 3;
    bottom: 180px;
    right: 10px;
}
.bottom-sidebar {
    width: 100%;
    height: 68px;
    background-color: #fff;
    border-top: 1px solid #c7c5c5;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99999;
    display: none;
}
.popup-container {
    width: 95%;
    background: #fff;
    padding: 1.5rem;
}
.book-form input, .book-form select, .book-form textarea, .analysis-form input, .analysis-form select, .analysis-form textarea {
    border: 1px solid var(--color-title);
    outline: none;
    background: none;
}
.loading-gif img {
    width: 300px;
    display: block;
}
.branch-map {
    display: none;
}
.branch-map.active {
    display: block;
}
.branch-text:hover, .branch-text.active {
    background: rgb(235 235 240/1);
}
.list-branch-title {
    height: 212px;
    overflow-y: scroll;
}
.list-branch-title::-webkit-scrollbar {
    width: 8px;
}
.list-branch-title::-webkit-scrollbar-thumb {
    background: var(--color-main);
    border-radius: 8px;
}
/**** Hosting ****/
.hosting-section-1 .section-content ul, .list-hosting-features, .hosting-section-4 .section-content ul, .hosting-section-6 .section-content ul, .hosting-text .section-content ul, .hosting-section-8 .section-content ul, .brand-package-content ul, .keyword-package-content ul {
    list-style-type: "\f00c";

    padding-left:20px;
}
.hosting-section-1 .section-content ul li, .list-hosting-features li, .hosting-section-4 .section-content ul li, .hosting-section-6 .section-content ul li, .hosting-text .section-content ul li, .hosting-section-8 .section-content ul li, .brand-package-content ul li, .keyword-package-content ul li {
    line-height: 2;
    padding-left: 15px; /* Điều chỉnh khoảng cách giữa marker và nội dung */
    list-style-position: outside;
}
.hosting-section-1 .section-content ul li::marker, .list-hosting-features li::marker, .hosting-section-4 .section-content ul li::marker, .hosting-text .section-content ul li::marker, .brand-package-content ul li::marker, .keyword-package-content ul li::marker {
    color: var(--color-main);
    font-family: "FontAwesome";
}
.hosting-section-6 .section-content ul li::marker {
    color: #fff;
    font-family: "FontAwesome";
}
.hosting-section-8 .section-content ul li::marker {
    color: var(--color-title);
    font-family: "FontAwesome";
}
.btn-custom {
    display: grid;
    grid-template-columns: 4fr 1fr;
}
.btn-scroll-to-form {
    padding: 16px 0px ;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0364E9;
    color: #fff;
    text-decoration: none;
    border-radius: 20px 0px 0px 20px;
}
.btn-custom i {
    padding: 16px 0px;
    text-align: center;
    background-color: #08B1F5;
    border-radius: 0px 20px 20px 0px;
}
.page-template-hosting, .page-template-brand, .page-template-mail, .page-template-keyword, .page-template-maps {
    background-color: #F5F5F5;
}
.hosting-package {
    border: 1px solid #E6E6E6;
    border-radius: 10px;
}
.text-xs {
    font-size: 14px;
}
.advise-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #10A6F3;
    color: #fff;
    padding: 16px 0px;
    border-radius: 10px;
    border: none;
    outline: none;
}
.hosting-section-3 .section-content::before{
    content: "";
    width: 42.5px;
    height: 31.5px;
    background: url('../images/quote-open.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    top: 0px;
    left: 0px;
    position: absolute;
}
.hosting-section-3 .section-content::after{
    content: "";
    width: 42.5px;
    height: 31.5px;
    background: url('../images/quote-close.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    bottom: 0px;
    right: 0px;
    position: absolute;
}
.hosting-section-6 {
    background-color: #0069F3;
}
.hosting-image {
    width: 45%;
}
.hosting-text {
    width: cacl(55% - 3rem);
}
.hosting-feature-item:nth-child(even), .brand-feature-item:nth-child(even) {
    flex-direction: row-reverse !important;
}
.hosting-section-8 {
    background: linear-gradient(180deg, #D4ECF5 0%, #F8F8F8 100%);
}
.hosting-section-9 .advise-btn  {
    width: fit-content;
    padding: 16px 30px;
    margin: auto;
}
.brand-section-1 {
    background-size: 100% auto;
    background-position: bottom center;
    height: 480px;
}
.brand-form input, .brand-form select, .brand-form textarea {
    background: #ECECF0;
    padding: 8px 12px;
    border-radius: 5px;
    border: none;
    outline: none;
}
.brand-form input::placeholder, .brand-form textarea::placeholder {
    color: var(--color-main);
}
.btn-scroll-to-form {
    border: none;
    outline: none;
}
.list-brand-reason {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.brand-video-wrapper {
    padding: 12px;
    background-color: #fff;
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 24px 32px 0px rgba(206, 221.99999999999994, 236.99999999999997, 0.24);
}
.brand-video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.list-dac-diem {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.list-brand-package {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.brand-package-img {
    height: 280px;
    display: flex;
    align-items: center;
}
.brand-package-img img {
    width:90%;
    height: auto;
    max-width: 100%;
}
.brand-package-item, .mail-package-item {
    padding-bottom: 100px !important;
    border-radius: 10px;
    border: 1px solid #E6E6E6;
    min-height: 430px;
}
.brand-package-item .advise-btn, .mail-package-item .advise-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
}
.compare-table .row-1, .compare-table .row-2, .mail-section-6 .section-content .row-1, .mail-section-6 .section-content .row-2 {
    display: table-row;
}
.compare-table tr td, .compare-table tr th {
    border: 1px solid #000;
}
.compare-table tr th {
    text-align: center;
}
.compare-table tbody tr td:not(:first-child) {
    text-align: center;
}
.compare-table thead tr th {
    color: #fff !important;
    background-color: var(--color-main) !important;
}
.compare-table .section-title {
    background: -webkit-linear-gradient(90deg, rgba(4,100,234,1) 27%, rgba(9,182,246,1) 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand-basis-img img {
    width: 80% !important;
    height: auto !important;
}
.brand-basis-item:nth-child(odd) {
    flex-direction: row-reverse !important;
}
.brand-section-11, .brand-section-12{
    background: linear-gradient(180deg, #D4ECF5 0%, #F8F8F8 100%);
}
.brand-step-wrapper {
    width: 44px;
    display:flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.process-item:last-child .brand-step-wrapper::after {
    display: none;
}
.brand-step-wrapper::after{
    content: "";
    width: 1px;
    height: 50px;
    background: #000;
    position: absolute;
    left: 50%;
    top: 110%;
    transform: translateX(-50%);
}
.step-count {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--color-main);
    border-radius: 10px;
}
.step-text {
    width: calc(100% - 44px - 1rem);
    border:  1px solid #C1C1C1;
    border-radius: 10px;
}
.brand-section-12::after{
    content: "";
    width: 40%;
    height: 90%;
    background: url('../images/sec-12-bg.png');
    position: absolute;
    right: 0;
    top:10%;
    background-size: cover;
    z-index: 1;
}
.mail-section-1, .mail-section-9 {
    background: linear-gradient(180deg, #D4ECF5 0%, #F8F8F8 100%);
}
.mail-section-5 .section-content img, .mail-section-7 .section-img img {
    width: 80%;
    height: auto;
    max-width: 100%;
}
.list-mail-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}
.mail-feature-item {
    box-shadow: 4px 4px 12px 0px #00000040;
    border-radius: 10px;
    border: 1px solid #ababab;
}
.mail-feature-item:nth-child(odd){
    transform: translateY(32px);
}
.keyword-section-1 {
    background: url('../images/key-sec-1-bg.png');
    background-size: cover;
}
.keyword-section-1 .section-title {
    font-size: 40px;
}
.keyword-section-1 .section-title::after {
    content:"";
    width: 134px;
    height: 13px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}
.btn-link {
    display: block;
    width: fit-content;
    padding: 12px 34px;
    text-decoration: none;
    font-weight: bold;
    color: #067DEF;
    background: #fff;
    border-radius: 20px;
}
.keyword-section-2 {
    background: #10A6F3;
}
.list-parameters, .list-keyword-rule {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.keyword-section-3 {
    background: url('../images/key-sec-3-bg.png') #045ce9e0;
    background-size: cover;
}
.keyword-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.keyword-feature-item:nth-child(even) {
    flex-direction: row-reverse;
}
.keyword-section-5 {
    background: url('../images/key-sec-5-bg.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom;
}
.keyword-package-item {
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    background-color: #fff;
}
.keyword-section-7 {
    background: linear-gradient(to right, #14B8F6 33.33%, #045DE9 33.33%);
}
.keyword-process-item {
    display: flex;
    align-items: center;
    gap: 50px;
}
.keyword-process-item:nth-child(odd) {
    flex-direction: row-reverse;
}
.process-title {
    width: 100%;
    display: flex;
    color: #fff;
    height: 31px;
    align-items: center;
    background: url('../images/process-title-bg.png');
    background-size: 100% 100%;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.process-title::after {
    content: "";
    width: 49px;
    height: 49px;
    background: url('../images/Checkmark.svg');
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
    z-index: 2;
    background-repeat: no-repeat;
}
.keyword-process-item:nth-child(even) .process-title::after {
    left: unset;
    right: -50px;
}
.list-keyword-process::after {
    content: "";
    width: 1px;
    height: 100%;
    background: #2583EF;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.keyword-section-9 {
    background: url('../images/key-sec-9-bg.png') #045ce9e0;
    background-size: cover;
}
.keyword-rule-img img {
    width: auto;
    height: 67px;
    margin: 0px auto;
}
.keyword-special {
    display: flex;
    gap: 30px;
    box-shadow: 2px 4px 11px 0px #00000040;
    align-items: center;
    border-radius: 10px;
    justify-content: space-between;
}
.maps-section-1 {
    background: url('../images/maps-sec-1-bg.webp') #045ce9e0;
    background-size: cover;
    min-height: 630px;
}
.maps-section-1 .section-img {
    position: absolute;
    width: 60%;
    height: auto;
    bottom: 0;
    right: 5%;
    z-index: 0;
}
.link-to-form {
    display: flex;
    width: fit-content;
    background: #fff;
    width: 195px;
    height: 51px;
    border-radius: 20px;
    color: var(--color-main);
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
.maps-section-4 .section-content {
    background: #14B8F6;
    border-radius: 10px;
}
.maps-package-price {
    color: #1338D9;
}
.maps-package {
    border-radius: 10px;
    padding-bottom: 80px;
    position: relative;
}
.maps-package-tag {
    background-color: #045DE9;
    border-radius: 10px;
}
.maps-package-tag i {
    font-size: 25px;
    font-weight: bold;
    color: #75DEFF;
}
.maps-package .advise-btn{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.maps-section-6 {
    background: #14B8F6;
}
.maps-section-6 .section-image {
    margin-top: -120px;
}
.promo-form {
    display: grid;
    grid-template-columns: 2.5fr 2.5fr 1fr;
    gap: 20px;
}
.popup-container-form {
    width: 33%;
    background: #fff;
    overflow: hidden;
}