@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Roboto&display=swap");

/* Global */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #21094d40;
    --text-color: #fdfdfd;
    --black-color: #161616;
    --white-color: #ffffff;
}

a {
    text-decoration: none;
}

::placeholder {
    color: var(--white-color);
}

.error {
    display: block;
    color: red;
    font-size: 16px;
    font-family: inherit;
    text-align: left;
    margin-top: -12px;
    margin-left: 5px;
}



body {
    font-family: "Roboto", sans-serif;
    font-family: "Cinzel", serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

.button {
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    padding: 8px 40px;
    font-size: 20px;
    border-radius: 48px;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: var(--white-color);
    font-family: inherit;
    letter-spacing: 2px;
    transition: background-color 0.3s ease-in-out;
}

.button:hover {
    background-color: var(--white-color);
    border-color: var(--white-color);
    cursor: pointer;
    color: #333;
}


.heading-alone {
    font-size: 22px;
    margin-bottom: 100px;
    font-weight: 400;
}

/* Header */

.header {
    position: relative;
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.25) 100%),
        url("./image/Backgound-web.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.header-page {
    background-color: #21094d;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 120px;
    background-color: rgba(33, 9, 77, 0.25);
}

.header-item {
    text-align: center;
    flex: 1;
}

.header-item:last-child {
    display: flex;
    justify-content: flex-end;
}

.header-logo-text {
    text-align: center;
    font-size: 60px;
    text-transform: capitalize;
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 2px;
}

.header-logo-text:hover {
    cursor: pointer;
}

.header-info {
    width: 870px;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: absolute;
    text-align: center;
    gap: 24px;
    left: 50%;
    bottom: 20%;
    align-items: center;
    transform: translateX(-50%);
}

.header-info h5 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 2px;
    color: var(--text-color);
}


.nav-list {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 60px;
}

.nav-list li {
    position: relative;
}

.nav-list li a.active::after {
    content: "";
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-100%);
    vertical-align: middle;
    background-color: var(--text-color);
    width: 8px;
    height: 2px;
}

.nav-list li a:active {
    cursor: pointer;
    opacity: 0.5;
}

.nav-list li a {
    font-size: 18px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 2px;
}

.header-icon {
    display: none;
}

/* Footer Global*/

.footer {
    display: flex;
    padding: 50px;
    justify-content: space-between;
    align-items: center;
    background-color: #21094d;
}

.footer p {
    color: var(--text-color);
    flex-basis: calc(100% / 3);
    text-align: center;
    font-size: 14px;
    font-family: "roboto";
    line-height: 2;
}

.footer-info {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-phone {
    margin-top: 20px;
    text-decoration: none;
    color: var(--white-color);
    display: inline-block;
}

.footer p:last-child {
    display: flex;
    justify-content: flex-end;
    margin-right: 10px;
}

/* Content Home */

.content {
    background-color: var(--black-color);
    padding: 100px;
    text-align: center;
    color: var(--white-color);
}

.content-contain {
    max-width: 1048px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin: 0 auto;
}

.content-full {
    flex-basis: 100%;
}

.content-part {
    display: flex;
    gap: 48px;
}

.content-part-item {
    flex-basis: 50%;
}

.content-full h5,
.content-part h5 {
    font-weight: 400;
    margin-bottom: 22px;
    font-size: 26px;
}

.content-full p,
.content-part p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    font-family: "Roboto";
    color: var(--text-color);
}

/* Product */
.product {
    display: flex;
    gap: 48px;
    justify-content: space-between;
    padding: 0 40px;
    margin-bottom: 100px;
}

/* .product-item {
    width: 365px;
    height: 365px;
} */

.product-item img {
    width: 100%;
    display: block;
    height: 100%;
    /* object-fit: cover; */
}



.product-item p {
    margin-top: 24px;
    font-family: "Cinzel";
    margin-bottom: 22px;
    font-size: 22px;
}

/* Form Contact */

.heading-contact {
    margin-bottom: 20px;
    font-weight: 400;
    font-family: "roboto";
    font-size: 22px;
    letter-spacing: 2px;
}

.form-group {
    width: 780px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    font-family: "roboto";

}

.form-input {
    width: 100%;
    padding: 23px 8px 8px 8px;
    border: none;
    outline: none;
    font-size: 16px;
    margin-bottom: 24px;
    background-color: transparent;
    border-bottom: 1px solid #fdfdfd;
    transition: background-color 0.25s ease-in-out;
    caret-color: var(--white-color);
    color: var(--white-color);
    font-family: "roboto" !important;

}

.form-input:hover,
.form-input:focus {
    background-color: rgb(0, 0, 0);
}

.form-input:not(:placeholder-shown)+.form-lable,
.form-input:focus+.form-lable {
    top: 23px;
    color: #551a8b;
    font-size: 12px;

}

.form-group label {
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-100%);
    user-select: none;
    pointer-events: none;
    transition: 0.25s ease-in-out;

}

.policy,
.policy-modal {
    margin-top: 24px;
    font-size: 12px;
    font-family: "roboto";
    font-weight: 400;
}

.form-info-bottom {
    width: 780px;
    max-width: 100%;
    display: flex;
    margin: 0 auto;
    margin-top: 40px;
}

.form-info-left {
    flex-basis: 50%;
}

.form-info-left a {
    color: #8d70c2;
    font-family: "roboto";
}


.form-info-right {
    flex-basis: 50%;
}

.wrap-text {
    display: flex;
    flex-direction: column;
    align-items: center;

}


.form-info-right h5,
.form-info-left h5 {
    margin-bottom: 24px;
    font-size: 22px;
}

.form-info-right p {
    font-family: "roboto";
    margin-bottom: 10px;

}


/* Navbar responvive for tablet and mobile devices */

.navbar-ui {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: var(--white-color);
    transition: 0.3s ease;
    padding: 72px 0 0 0;
    z-index: 10;
}

.navbar-ui ul {
    list-style-type: none;
    padding: 0 12px;
}

.navbar-ui li {
    display: block;
    text-align: center;
    padding: 24px 0;
}

.navbar-ui li a {
    position: relative;
    font-size: 18px;
    text-decoration: none;
    color: var(--black-color);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 2px;
}



.navbar-ui li a.active::after {
    content: "";
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-100%);
    vertical-align: middle;
    background-color: #777777;
    width: 9px;
    height: 2px;
}

.navbar-ui li:hover {
    cursor: pointer;
    opacity: 0.5;
}


/* Notification global */

.notification-global {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 99;
}

.notification-icon,
.close-icon {
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background-color: #21094d;
    border-radius: 999px;
    cursor: pointer;
}

.close-icon {
    background-color: #555555;
    display: none;
}

.form-modal {
    display: none;
    position: fixed;
    max-width: 365px;
    max-height: calc(100vh - 105px);
    top: 0;
    right: 20px;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.open {
    display: flex;
    flex-direction: column;
}

.close {
    display: none;
}

.heading-modal {
    position: relative;
    color: var(--white-color);
    padding: 16px 24px 40px;
    background-color: #21094d;
    font-size: 20px;
    font-family: "roboto";
    font-weight: 400;
    letter-spacing: 2px;
    z-index: 100;
}

.heading-modal::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--white-color);
    z-index: 101;
}

.heading-modal::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--white-color);
    z-index: 101;
}

.note-text {
    position: absolute;
    top: 70%;
    width: 315px;
    color: #303030;
    padding: 12px 15px;
    border-radius: 10px;
    background-color: #bcb5c9;
    font-size: 14px;
    font-family: "roboto";
    z-index: 102;
    letter-spacing: 1px;
}

.contain-field {
    padding: 40px 24px;
    color: rgb(27, 27, 27);
    width: 100%;
}

.form-group-modal {
    width: 100%;
}

.form-input-modal {
    color: rgb(27, 27, 27);
    border-bottom: 1px solid #1b1b1b;

}

.form-input-modal:hover,
.form-input-modal:focus {
    background-color: rgb(246, 246, 246);
    caret-color: rgb(27, 27, 27);

}

.form-input-modal:not(:placeholder-shown)+.form-lable,
.form-input-modal:focus+.form-lable {
    top: 23px;
    font-size: 12px;

}

.form-input-modal::placeholder {
    color: rgb(27, 27, 27);

}

.button-modal {
    display: block;
    margin: 0 auto;
    color: var(--black-color);
    border: 1px solid #1b1b1b;
}

.button-modal:hover {
    background-color: var(--black-color);
    border: none;
    color: var(--white-color);
}

.policy-modal {
    padding: 24px;
    text-align: center;
    margin-top: 0;
}