body {
    padding: 0;
}

.main-header {
    height: 120px;
    position: absolute;
    inset: 0;
}

.banner {
    position: relative;
    color: #fff;

}

.banner .banner_img {
    width: 100%;
    height: 400px;
    background-image: url("../images/home/hero_image.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


@media screen and (min-width: 1200px) {
    body {
        padding: 20px 0;
    }

    .banner {

        padding: 0 15px;
    }

    .banner .banner_img {
        display: block;
        height: 691px;
        border-radius: 40px;
        background-image: url("../images/home/banner.png");

        /* Create the parallax scrolling effect */
        background-attachment: fixed;
    }

    .banner img.banner_img2 {
        display: none;
    }
}

.main-header {
    padding: 0 15px;
}

#header-top.active {
    background-color: #fff;
}

#header-top.active .navbar {
    /* background: #00071a; */
}

@media screen and (max-width: 1199px) {
    #header-top.active .navbar {
        top: 0;
    }
}

.navbar {

    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    padding: 8px 20px;
    width: 100%;
    z-index: 99;
    right: 0;
    left: 0;
    background: #00071A80;
}

.logo img {
    display: none;
}

@media screen and (min-width: 1200px) {
    .navbar {
        width: calc(100vw - 30px);
        left: 50%;
        right: 0;
        transform: translateX(-50%);
        border-radius: 50px;
        padding: 20px 50px;
        background-color: #00071A80;
    }

    #bar {
        display: none;
    }

    .logo img {
        display: block;
    }
}

@media screen and (min-width: 1200px) {
    .navbar {
        padding: 0 120px;
        height: 80px;
    }

    #bar {
        display: none;
    }
}

@media screen and (min-width: 991px) {
    .navbar .logo {
        display: block;
    }
}

@media screen and (max-width: 1199px) {

    .main-header {
        padding: 0;
    }

    .nav-links {
        display: none;
        gap: 20px;
        flex-direction: column;
        width: 65%;
        max-width: 460px;
        height: 100vh;
        position: absolute;
        top: 0;
        right: 0;
        background-color: rgb(255 255 255);
        padding: 36px 22px 0;
    }

    .nav-links.show+.shadown {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(43, 43, 43, 0.502);
        z-index: -1;
    }
}

@media screen and (min-width: 1200px) {
    .nav-links {
        display: flex;
        list-style: none;
        gap: 25px;
        transition: all 0.3s ease;
        align-items: center;
        padding: 0;
    }
}

.nav-links li {
    position: relative;
    display: block;
    padding: 10px;
    width: 100%;
}

@media screen and (min-width: 1200px) {
    .nav-links li {
        width: unset;
    }
}

@media screen and (max-width: 1199px) {
    .nav-links li:not(:last-child) {
        margin-bottom: 8px;
    }
}

.nav-links a {
    color: #5C636B;
    text-decoration: none;
    font-weight: 300;
    padding: 3px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

@media screen and (min-width: 1200px) {
    .nav-links a {
        color: white;
        font-weight: 300;
        font-size: 1.06vw;
        padding: 8px 15px;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        /* transform: translateY(-2px); */
    }
}


.nav-links a.active {
    position: relative;
    font-weight: 700;
    color: #00071A;
    display: block;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    height: 2px;
    background-color: rgba(14, 168, 218, 1);
}

@media screen and (max-width: 1199px) {
    .nav-links .nav-close {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}


@media screen and (min-width: 1200px) {
    .nav-links a.active {
        display: inline-block;
        color: #FFFFFF;
    }

    .nav-links a.active::after {
        content: "";
        position: absolute;
        width: 80%;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        height: 2px;
        background-color: rgba(14, 168, 218, 1);
    }

    .nav-links .nav-close {
        display: none;
    }
}

/* Hamburger menu styling */

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 77%;
    font-weight: 700;
}

.hero-content h1 {
    font-size: 32px;
    /* white-space: nowrap; */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 1200px) {
    .hero-content h1 {
        font-size: 64px;
    }
}

.hero-content p {
    font-size: 16px;
    line-height: 1.4;
    opacity: 0.95;
}

@media screen and (min-width: 1200px) {
    .hero-content p {
        font-size: 36px;
    }
}

.hero-content span {
    color: #00bfff;
    font-weight: 600;
}

/* Services Section */
.services {
    /* padding: 0 15px; */
    /* overflow-x: hidden; */
    padding: 30px 8px 0;
    margin-top: -80px;
}

@media screen and (min-width: 1200px) {
    .services {
        max-width: 890px;
        margin: -156.5px auto 0;
        padding: 0;
    }
}

.service-box {
    text-decoration: none;
    margin: 2px 0 0 0;
    box-shadow: 1px 1px 7px 0px #c1c8ca;
    background: #F8F8F8;
    color: rgba(0, 7, 26, 1);
    padding: 20px;
    border-radius: 20px;
    width: 100%;
    /* margin-bottom: 15px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.25s;
    position: relative;
    overflow: hidden;
    user-select: none;
    /* height: 243px; */

}

@media screen and (min-width: 1200px) {
    .service-box {
        max-width: 316px !important;
        height: 212px;
        background: #ffffff;
    }

    .service-box:hover {
        transform: translateY(-10px);
        transition: .35s;
    }
}

.service-box .icon {
    background: linear-gradient(135deg, #00bfff, #0080ff);
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}


@media screen and (max-width: 1199px) {
  .navbar {
    flex-direction: row-reverse;
  }
}

.service-box h3 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-box p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

/* News Section */
/* News Section */
.news {
    background: #051029;
    color: #fff;
    padding: 0 20px;
    margin-top: 54px;
    /* margin-bottom: 34px; */
    clip-path: polygon(0 0,
            /* góc trên bên trái */
            50% 15%,
            /* lõm vào giữa phía trên */
            100% 0,
            /* góc trên bên phải */
            100% 100%,
            /* góc dưới bên phải */
            50% 85%,
            /* lõm vào giữa phía dưới */
            0 100%
            /* góc dưới bên trái */
        );
}

.slick-track {
    padding: 20px 0;
}

@media screen and (min-width: 1200px) {
    .service-box .icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    .news {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 40px;
        gap: 20px;
        flex-wrap: wrap;
        /* Để khi màn nhỏ thì xuống hàng */
        /* margin-top: 128px; */
        clip-path: none;
    }
}

.news-left h2 {
    margin: 0;
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    padding-top: 97px;
}

.news-left h2::after {
    content: url(../images/News.svg);
    position: absolute;
    width: 132px;
    /* height: 58px; */
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: -1;
}

@media screen and (min-width: 1200px) {

    .news-left h2 {
        padding-top: 0;
    }

    .news-left h2 {
        margin: 0;
        font-size: 36px;
        text-align: left;
    }

    .news-left h2::after {
        display: none;
    }
}


.news-item {
    display: flex;
    align-items: self-start;
    flex-direction: column;
    gap: 15px;
    /* margin-bottom: 12px; */
    font-size: 14px;
}


@media screen and (max-width: 1199px) {
    .news-item:not(:first-child) {
        padding-top: 20px;
        border-top: 1px solid #1F305D;
    }
}

@media screen and (min-width: 1200px) {
    .news-item {
        align-items: center;
        flex-direction: unset;
    }
}

.news-item .date {
    font-weight: 600;
}

@media screen and (max-width: 1199px) {
    .news-item .date {
        background-color: #0EA8DA;
        color: white;
        padding: 5px 12px;
        border-radius: 22px;
        min-width: 70px;
        text-align: center;
        font-size: 10px;
    }

    .news-item .title {
        font-size: 14px;
        line-height: 22px;
    }
}

.news-item .title {
    color: inherit;
    text-decoration: none;
}

.news-right {
    padding-bottom: 57px;
}

@media screen and (min-width: 1200px) {

    .news-right {
        padding-bottom: 0;
    }

    .news-item .title {
        font-size: 12px;
    }
}

.news-right .news-item .date {
    font-size: 16px;
    font-weight: 700;
}

.news-right .news-item {
    padding-bottom: 23px;
}

.news-item:last-child {
    padding-bottom: 58px;
}

@media screen and (min-width: 1200px) {
    .news-right .news-item {
        margin-bottom: 0;
    }

    .news-right .news-item .date {
        font-size: 24px;
    }

    .news-item .title {
        font-size: 14px;
    }

    .news-item:last-child {
        padding-bottom: 0;
    }
}



/* VIBEZ Button */
.vibez {
    padding: 20px 15px;
    background-image: url("../images/ellipse-home-3.png"),
        url("../images/ellipse-home-2.png"), url("../images/ellipse-home-1.png");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: left center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (min-width: 1200px) {
    .vibez {
        padding: 154px 119px;
        /* margin-top: 54px; */
    }
}

.vibez-section {
    width: 100%;
    position: relative;
    margin-bottom: 24px;
    text-align: center;
}

.vibez-section p {
    font-size: 16px;
    color: #707070;
}

@media screen and (min-width: 1200px) {
    .vibez-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        margin-bottom: 40px;
        max-width: 1199px;
    }

    .vibez-section p,
    .vibez-section button {
        font-size: 16px;
        padding-top: 10px;
    }

    .vibez-section p {
        font-size: 16px;
    }
}

.vibez-section img {
    display: none;
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 749px;
}

@media screen and (min-width: 1200px) {
    .vibez-section img {
        display: block;
    }
}

.vibez-btn {
    background: linear-gradient(45deg, #00bcd4, #0097a7);
    color: black;
    padding: 8px 24px;
    border-radius: 30px;
    border: none;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
}

@media screen and (min-width: 1200px) {
    .vibez-btn {
        margin-bottom: 0px;
    }
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1199px;
}

.slick-slide div a {
    min-height: 222px;
}

.card {
    border-radius: 25px;
    overflow: visible;
    position: relative;
    left: 50%;
    transform: translate(-50%);
}

.card img {
    border-radius: 22px;
}

.card a {
    display: block;
}

.card-image {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 25px;
    text-align: center;
}

.card-image img:first-child {
    display: none;
    width: 100%;
    /* height: 588px;
max-width: 410px; */
}

.card-image img:last-child {
    display: inline-block;
    width: 100%;
    max-height: 230px;
}

@media screen and (min-width: 430px) {

    .card,
    .card-image img:last-child {
        max-width: 359px;

    }

}

@media screen and (min-width: 626px) {
    .card {
        left: unset;
        transform: unset;
    }

    .card,
    .card-image img:last-child {
        max-width: unset;

    }

    .cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 17px;
    }

}

@media screen and (min-width: 1200px) {
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 17px;
    }

    .card {
        width: 100%;
    }

    .card:hover {
        transform: translateY(-10px);
        transition: .35s;
        /* box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2); */
    }
}


@media screen and (min-width: 1200px) {

    .card {
        /* height: 588px;
max-width: 410px; */
    }

    .card-image img:first-child {
        width: 100%;
        display: block;
    }

    .card-image img:last-child {
        display: none;
    }

    .card-1 .card-image {
        /* background: url("../images/vibez1.png") no-repeat center/contain; */
    }

    .card-2 .card-image {
        /* background: url("../images/vibez2.png") no-repeat center/contain; */
    }

    .card-3 .card-image {
        /* background: url("../images/vibez3.png") no-repeat center/contain; */
    }
}

.card-content {
    padding: 35px 12px 12px;
    position: absolute;
    bottom: 0%;
    color: white;
}

@media screen and (min-width: 1200px) {
    .card-content {
        bottom: 2%;
    }

}

.card-content div {
    color: #0EA8DA;
    margin-top: 12px;
    display: inline-block;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    padding-left: 20px;
}

.card-content a img {
    width: 21px;
    height: 10px;

}

.card-content .card-description {
    color: #DEDDDD;
    height: 55.5px;

}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

@media screen and (min-width: 1200px) {
    .card-title {
        font-size: 20px;
        height: 52px;
    }

    .card-content {
        padding: 12px;
        position: absolute;
        top: 56%;
        bottom: 0;
        color: white;
    }

    /* .card-content div {
display: none;
} */
}


.card-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 88px;
    height: 88px;
}

/* Survey section */
.survey-section {
    background-color: #f8f8f8;
    padding: 24px 16px;
}

.survey-title {
    display: none;
}

.survey-container .form-container input {
    width: 100%;
}

@media screen and (min-width: 1200px) {
    .survey-container {
        width: 100%;
        display: flex;
        gap: 80px;
        align-items: center;
        justify-content: center;
    }

    .survey-title {
        display: block;
    }

    .survey-container .form-container {
        max-width: 691px;
    }
}

.survey-container .form-container {
    flex: 1;
}

.home-asterisk {
    color: red;
}

.left-content {
    position: relative;
    padding-bottom: 1.5rem;
}

@media screen and (min-width: 1200px) {
    .left-content {
        padding-left: 10px;
    }
}

.background-text {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    text-transform: capitalize;
    color: #000000;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media screen and (min-width: 1200px) {
    .background-text {
        width: 288px;
        top: 34%;
        position: absolute;
        transform: translate(-50%);
        left: 47%;
        font-size: 48px;
        line-height: 65px;
    }
}

.sub-heading {
    font-size: 16px;
    line-height: 33px;
    text-transform: capitalize;
    color: #838b93;
    text-align: center;
}

.form-container {
    border-radius: 12px;
}

@media screen and (min-width: 1200px) {
    .sub-heading {
        margin-top: 40px;
        font-size: 24px;
    }

    .form-container {
        max-width: 90%;
        margin: 0 auto;
    }
}


@media screen and (min-width: 1200px) {
    .form-container {
        padding: 40px;
        max-width: unset;
        margin: 0;

    }
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: #c8c5c508;
    display: block;
    margin-bottom: 36px;
}

.form-input:focus {
    outline: none;
    border-color: #2ba4d1;
    box-shadow: 0 0 0 3px rgba(43, 164, 209, 0.1);
}

.form-textarea {
    height: 120px;
    resize: vertical;
    resize: none;
}

.form-container form label div {
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 5px;
}

@media screen and (min-width: 1200px) {
    .form-container form label div {
        line-height: 22px;
        font-size: 16px;
    }
}

.submit-button {
    background: linear-gradient(135deg, #2ba4d1, #1a8fb8);
    color: rgba(0, 0, 0, 1);
    border: none;
    padding: 18px 40px;
    border-radius: 16px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(43, 164, 209, 0.3);
    font-family: SVN-Gilroy;
    margin: 36px auto 24px;
}

@media screen and (min-width: 1200px) {
    .submit-button {
        margin: 36px 0 0;
    }
}

.submit-button:hover {
    background: linear-gradient(135deg, #1a8fb8, #2ba4d1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 164, 209, 0.4);
}

.submit-button::after {
    content: "→";
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-button:hover::after {
    transform: translateX(3px);
}

/* footer {
margin-top: 20px;
} */

@media screen and (min-width: 1200px) {
    footer {
        margin-top: 80px;
    }
}

.slick-slide {
    margin: 0 15px;
}

.slick-dots {
    bottom: -38px !important;
}

.slick-dots li.slick-active {
    width: 36px;
}

.slick-dots li {
    margin: 0 10px !important;
    margin: 0 2px !important;
}

.slick-dots li button {
    position: absolute;
    padding: 0 !important;
    width: 10px !important;
    height: 10px !important;
    left: 50%;
    transform: translateX(-50%);
}

.slick-dots li button:before {
    border-radius: 16px;
    width: 10px !important;
    height: 10px !important;
    content: "" !important;
    background-color: #D9D9D9 !important;
}

.slick-dots li.slick-active button {
    width: 36px !important;
}

.slick-dots li.slick-active button:before {
    width: 36px !important;
    height: 10px !important;
    background-color: #0EA8DA !important;
    left: 0;
    transform: translateX(0);
}

.nav-close a {
    flex: 1;
}
