/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+Thai:wght@100..900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* Main Colors */
    --blue: #102E6A;
    --red: #FF0000;
    --black: #1A1A1A;
    --gray: #A0A0A0;
    --white: #FFFFFF;
    --Color-7: var(--white);
    --gray-light: #F2F2F2;
    --gray-light3: #F3F3F3;
    /* --txt-black: #1C1C1C; */
    --yellow: #FFB800;

    /* Button Color Variations */
    --btn-blue-primary: var(--blue);
    --btn-blue-hover: #163E8E;
    --btn-blue-active: #0D2453;

    --btn-red-primary: var(--red);
    --btn-red-hover: #FF3333;
    --btn-red-active: #CC0000;

    --color-DarkGray: #1C1C1C;
    --secondary-color: #dfdfdf;

    --font-main-set: 'Lato', 'Noto Sans Thai', 'Prompt', sans-serif;

    --text-xlight: 200;
    --text-light: 300;
    --text-regular: 400;
    --text-medium: 500;
    --text-semibold: 600;
    --text-bold: 700;

    --text-xs: 12px;
    --text-sm: 14px;
    --text-md: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-1xl: 22px;
    --text-2xl: 24px;
    --text-3xl: 26px;

    --text-heading: 32px;
    --text-heading-mobile: 28px;

    --text-28: 28px;
    --text-30: 30px;
    --text-32: 32px;
    --text-34: 34px;
    --text-36: 36px;
    --text-40: 40px;
    --text-45: 45px;
    --text-84: 84px;

    --display-xs: 24px;
    --display-sm: 30px;
    --display-md: 36px;
    --display-lg: 46px;
    --display-xl: 60px;
    --display-2xl: 72px;




}

html,
body {
    font-family: var(--font-main-set);
    font-size: var(--text-md);
    position: relative;
}

body>.container_ {
    margin-top: 33px;
}

.sectionConfig {
    padding: 80px 0;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-xl,
    .container-xxl {
        /* max-width: 1530px; */
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }
}



/* -------- Buttons -------- */
.btnMain {
    color: var(--white);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: var(--text-medium);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    min-height: 45px;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btnMainRed {
    background-color: var(--btn-red-primary);
}

.btnMainRed:hover {
    background-color: var(--btn-red-hover);
    color: var(--white);
}

.btnMainRed:active {
    background-color: var(--btn-red-active);
    transform: translateY(2px);
}

.btnMainBlue {
    background-color: var(--btn-blue-primary);
}

.btnMainBlue:hover {
    background-color: var(--btn-blue-hover);
    color: var(--white);
}

.btnMainBlue:active {
    background-color: var(--btn-blue-active);
    transform: translateY(2px);
}

.btnSecondry {
    background: #1C1C1C80;
    color: var(--white);
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: var(--text-medium);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    min-height: 45px;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btnSecondry:hover {
    background: #47474780;

}

.btnSecondry:active {
    background: #00000080;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 1.5rem;
}

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

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        --bs-gutter-x: 2.5rem;
    }
}

.swal2-container .swal2-popup {
    border-radius: 5px;
    /* max-width: 420px; */
}

div:where(.swal2-container) button:where(.swal2-styled) {

    border-radius: 5px;
    min-width: 120px;
}


div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    background-color: var(--blue);
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):hover {
    background-color: var(--btn-blue-hover);
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):active {
    background-color: var(--btn-blue-active);
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel) {
    background-color: var(--red);
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel):hover {
    background-color: var(--btn-red-hover);
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel):active {
    background-color: var(--btn-red-active);
}

section .contact-header .title {
    font-weight: var(--text-regular);
    color: var(--blue);
    font-size: var(--text-2xl);
    margin-bottom: 20px;
}

section .contact-header .title strong {
    color: var(--red);
    font-weight: 700;
}

section .contact-header .title b {
    color: var(--blue);
    font-weight: 700;
}


/* Banner Style */
.showBanner {
    margin-top: 40px;
    /* padding-bottom: 40px; */
    padding: 0px;
}

.banner-content {
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    padding: 35px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    align-items: end;
}

.banner-text {
    flex: 1;
    z-index: 1;
    color: var(--white);
}

.banner-title {
    font-size: var(--text-32);
    margin-bottom: 5px;
    font-weight: var(--text-semibold);
    color: var(--white);

}

.banner-title .red-text {
    color: var(--red);
}

.banner-title strong {
    font-weight: var(--text-bold);
}

.banner-subtitle {
    font-size: var(--text-2xl);
    font-weight: var(--text-regular);
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
}

.banner-subtitle strong {
    font-weight: var(--text-semibold);
}

.banner-desc {
    font-size: var(--text-sm);
    font-weight: var(--text-light);
    color: rgba(255, 255, 255, 0.9);
    max-width: 450px;

    margin: 0;
}

.banner-desc strong {
    font-weight: var(--text-semibold);
}

.banner-desc .red-text {
    color: var(--red);
    font-weight: var(--text-semibold);
}

.banner-action {
    margin-left: 40px;
    z-index: 1;
}

@media (max-width: 992px) {

    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        background-position: center;
        align-items: center;
        border-radius: 0px;
    }

    .banner-text {
        margin-bottom: 25px;
    }

    .banner-action {
        margin-left: 0;
    }

    .banner-desc {
        margin: 0 auto;
    }

    .banner-title {
        font-size: var(--text-2xl);
    }

    .banner-subtitle {
        font-size: var(--text-xl);
    }

    .product-item {
        width: 80px;
        height: 300px;
    }

    .contentProductsImgAnimation {
        min-height: 350px;
    }
}