@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
@import "https://unpkg.com/open-props@1.6.17/easings.min.css";
@keyframes pulse {
    50% {
        transform: scale(1.05);
    }
}
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-timeline: view(50px);
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both
}

[anim="pulse"]:not(.toggled) {
    animation: pulse var(--ease-elastic-in-1) 1400ms infinite alternate;
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
}

:root {
    /* Màu chính */
    --primary-color: #0B437A;
    /* Màu phụ */
    --secondary-color: #BFA67B;
    /* Màu chữ */
    --text-color: #333333;
    --sub-text-color: #888e98;
    /* Màu nền */
    --background-color-one: #00284E;
}

body {
    scroll-behavior: smooth;
    font-family: "Noto Serif", serif;
    overflow-x: hidden;
    background: #f5f6f7;
    font-size: 16px;
    line-height: 1.5;
}

.navbar .navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.navbar .navbar-brand {
    width: 80px;
}

.navbar .navbar-brand img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.section-hero {
    margin: 20px 0;
}

.section-hero .title-group-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-hero .title-group-hero .sub-title-hero{
    font-size: 30px;
    color: var(--secondary-color);
    text-decoration: underline;
}

.section-hero .title-group-hero .title-hero{
    color: var(--primary-color);
    font-size: 50px;
    margin: 0 0 20px;
    font-weight: 800;
}

.section-hero .para {
    text-align: center;
    font-size: 25px;
}

.section-hero .para .hight-light{
    border-radius: 2px;
    padding: 5px 10px;
    color: #fff;
    background-color: var(--secondary-color);
    display: inline-block;
}

.section-hero .video-wrapper .video-intro{
    width: 70%;
    aspect-ratio: 1920/1080;
    border-radius: 10px;
    margin: 35px auto;
    overflow: hidden;
}

.para-desc {
    padding: 40px 0;
    background-color: #00000012;
    margin: 80px 0;
    /* text-align: center; */
}


.para-desc .desc-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.para-desc .desc-group .desc{
    width: 60%;
    font-style:italic ;
}

.para-desc .desc-group .desc i{
    font-size: 25px;
    color: var(--secondary-color);
}

.para-desc .desc-group .btn-desc{
    margin: 5px 0;
   
}

.bold {
    font-weight: 800;
}

.btn {
    padding: 5px 10px;
    background-color: var(--secondary-color);
    color: #fff;
    display: inline-block;
    width: 100%;
}

.btn:hover {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    background-color: #fff;
}

.section-title h2{
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 50px 0;
}

.risks-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.risks-wrapper .risk-card{
    width: calc(100% / 2 - 20px);
    padding: 10px 20px;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.8s;
}

.risks-wrapper .risk-card:hover{
   transform: scale(1.02) perspective(0px);
   box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
        rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.risks-wrapper .risk-card .img-group{
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 8px;
    cursor: pointer;

}

.risks-wrapper .risk-card .img-group img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.risks-wrapper .info-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.risks-wrapper .info-group .number-order {
    font-size: 80px;
    color: var(--secondary-color);
}

.risk-card .info-content .title-group {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

hr {
    margin: 2px 0;
    color: var(--secondary-color);
}

.why {
    /* padding: 60px 0; */
}

.why-wrapper {
    padding: 20px 0;
}

.why-wrapper .choose,  .why-wrapper .not-choose{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}

.why-wrapper .choose h3 {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.why-wrapper .not-choose h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.why-wrapper .why-card {
    padding: 10px 5px;
    margin: 10px 0;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.8s;
}

.why-wrapper .why-card:hover {
    transform: scale(1.02) perspective(0px);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
        rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.why-wrapper .why-card i{
    margin-right: 15px;
}

.why-wrapper .choose .why-card {
    color: #fff;
    background: var(--primary-color);
   
}

.why-wrapper .not-choose .why-card {
    border: 1px solid black;
}

.service-img {
    width: 100%;
    margin: auto 0;
    align-items: center;
}

.service-img img{
    width: 100%;
    height: auto;
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
    transition: transform 0.3s, box-shadow 0.8s;
    margin: auto;
}

.service-img img:hover{
    transform: scale(1.02) perspective(0px);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
        rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.service-wrapper {
    padding: 5px 0 20px;
}

.card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.service-card {
    padding: 10px 20px;
    border: 1px solid var(--secondary-color);
    /* margin: 10px 0; */
    border-radius: 5px;
    width: calc(100% / 3 - 10px);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.8s;
}

.service-card:hover, .pricing-card:hover {
    transform: scale(1.02) perspective(0px);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
        rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.service-card .service-title{
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
   
}

.service-card .service-icon {
    font-size: 38px;
    color: var(--secondary-color);
    
}

.about-us-wrapper {
    padding: 30px 0;
}

.intro-member {
    position: relative;
    width: 80%;
    height: 300px;
    margin: 20px auto;
    background-color: var(--secondary-color);
    border-radius: 5px;
}

.intro-member .member-img{
    position: absolute;
    bottom: -6px;
    width: 350px;
    /* height: auto; */

}

.intro-member .member-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-member .member-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 10px;
    color: #fff;
}

.member-info hr {
    color: #fff;
}

.member-info .member-title {
    font-size: 20px;
    font-weight: 600;
}

.member-info .member-quote {
    font-style: italic;
}

.usp {
    text-align: center;
    margin: 70px 0 80px;
}

.usp h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0 18px;
}

.usp-wrapper {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin: 10px 0;
}

.usp-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.usp-icon i {
    font-size: 50px;
    color: var(--secondary-color);
}
.pricing-wrapper {
    padding-bottom: 60px;
}
.pricing-card {
    padding: 10px;
    text-align: center;
    color: #fff;
    background: var(--secondary-color);
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.8s;
}

.pricing-card .title{
    font-size: 16px;
    font-weight: 600;
    margin: 14px 0;
}

.pricing-card hr {
    color: #fff;
}

.pricing-card .price{
    margin: 14px 0;
    font-size: 30px;
    font-weight: 800;
    /* color: var(--primary-color); */
}

.pricing-card .desc ul {
    margin: 14px 0;
    text-align: start;
    font-size: 14px;
}

.pricing-card .desc ul li {
    display: flex;
    padding: 5px 0;
}

.pricing-card .desc ul li i{
    margin-right: 10px;
}

.register {
    color: #fff;
    color:  var(--background-color-one);
    padding: 60px 0;
    /* background-color: var(--background-color-one); */
}

.register .title{
    font-size: 50px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.form-wrapper .form-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);

}

.form-wrapper .form-sub-title {
    margin-bottom: 15px;
}

.contact {
    background: var(--background-color-one);
    padding: 50px 0;
    color: #fff;
    text-align: center;

}

.contact .contact-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact .image{
    width: 150px;
    text-align: center;
}

.contact .image img{
    width: 100%;
}

.contact .title h2 {
    font-size: 16px;
    font-style: italic;
    text-align: center;
}

.contact-wrapper {
    text-align: start;
    margin: 0 20px 0;
}

.contact-wrapper h3{
    margin-bottom: 10px;
    font-size: 22px;
    text-decoration: underline;
}

.contact a {
    color: var(--secondary-color);
}

.contact-wrapper ul li{
    padding: 5px 0;
}