@font-face {
    font-family: 'BodoniMT';
    src: url(../fonts/BodoniMT/BodoniMT.ttf);
}

@font-face {
    font-family: 'Nunito-Regular';
    src: url(../fonts/Nunito/Nunito-Regular.ttf);
}

@font-face {
    font-family: 'Nunito-SemiBold';
    src: url(../fonts/Nunito/Nunito-SemiBold.ttf);
}

@font-face {
    font-family: 'Nunito-ExtraBold';
    src: url(../fonts/Nunito/Nunito-ExtraBold.ttf);
}

:root {
    --primary-color: #002569;
    --secondary-color: #82839B;
    --black-color: #303030;
    --white-color: #FFFFFF;
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

html,
body {
    font-family: 'Nunito-Regular';
    color: var(--secondary-color);
    overflow-x: hidden;
}


.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-black {
    color: var(--black-color) !important;
}

.text-white {
    color: var(--white-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-black {
    background-color: var(--black-color) !important;
}

.bg-white {
    background-color: var(--white-color) !important;
}

.nunito-extrabold {
    font-family: 'Nunito-ExtraBold';
}

/* Placeholder */
::-webkit-input-placeholder {
    /* Edge */
    font-family: 'Nunito-Regular';
    color: var(--secondary-color) !important;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-family: 'Nunito-Regular';
    color: var(--secondary-color) !important;
}

::placeholder {
    font-family: 'Nunito-Regular';
    color: var(--secondary-color) !important;
}

small {
    font-size: 13px;
}

.text-small {
    font-size: 13px;
}

.text-very-small {
    font-size: 10px;
}

.font-weight-bold {
    font-weight: bold;
}

.curved-top-40 {
    border-top-right-radius: 40px !important;
    border-top-left-radius: 40px !important;
}

.curved-bottom-20 {
    border-bottom-right-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
}

.curved-bottom-10 {
    border-bottom-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
}

.curved-top-10 {
    border-top-right-radius: 10px !important;
    border-top-left-radius: 10px !important;
}

.curved-10 {
    border-radius: 10px;
}

.curved-15 {
    border-radius: 15px;
}

.curved-20 {
    border-radius: 20px;
}

.curved-30 {
    border-radius: 30px;
}

.curved-50 {
    border-radius: 50px;
}

.btn-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: #012f83;
    border: 1px solid #012f83;
    color: var(--white-color);
}

.btn-outline-primary {
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
}

/* .navbar {
    position: absolute;
    width: 100%;
    z-index: 5;
} */

.navbar-light {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
}

.navbar-light.scrolled {
    background: #F7F8FD;
    transition: .5s ease-in-out;
}

.navbar-brand img {
    width: 150px;
    /* height: auto; */
}

.navbar .nav-link {
    font-family: 'BodoniMT';
    color: var(--black-color);
    font-size: 16px;
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
    margin: auto;
}

.navbar .img-user img {
    height: 35px;
    width: 35px;
    border-radius: 50px;
    object-fit: cover;
}

.navbar .dropdown-toggle::after {
    color: white;
}

.navbar .badge-counter {
    color: #fff;
    background-color: #e74a3b;
    font-size: 9px;
    font-weight: normal;
    position: absolute;
    top: 10px;
    right: 15px;
}

.navbar-toggler {
    color: var(--white-color) !important;
    border: 1px solid var(--white-color);
}

.navbar .btn-cart {
    width: 90px;
    height: 40px;
    border: 1px solid #CDD5DF;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Lato-Bold';
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}

.navbar .btn-cart i {
    font-size: 16px;
}

.navbar .btn-login {
    width: 90px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Lato-Bold';
    display: flex;
    justify-content: center;
    align-items: center;
}



.banner {
    background-image: url('../assets/img/bg-banner.jpg');
    height: 700px;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner h1::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -20px;
    right: 45px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background-color: #EFF2FF;
}

.banner img.img-banner {
    width: 548px;
    height: 400px;
    object-fit: cover;
}

/* .banner .explore {
    position: relative;
    z-index: 1;
} */

.banner .explore p {
    font-family: 'BodoniMT';
    color: var(--black-color);
    letter-spacing: 3px;
}

.banner .explore .icon i {
    font-size: 20px;
    color: var(--black-color);
}

.banner .explore .icon::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -20px;
    left: 80px;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    background-color: #EFF2FF;
}

.feature-product .card {
    height: 400px;
}

.feature-product h4 {
    font-family: 'BodoniMT';
}

.feature-product .icon {
    margin-top: 5rem !important;
}

.feature-product .icon img {
    width: 120px;
}

.content .shop-now {
    position: relative;
    z-index: 1;
}

.content h1 {
    font-family: 'BodoniMT';
    font-size: 42px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.content h5,
.our-product h5,
.about-us h5 {
    color: var(--secondary-color);
    line-height: 30px;
    font-size: 16px;
}

.content .shop-now p {
    font-family: 'BodoniMT';
    color: var(--black-color);
    letter-spacing: 3px;
}

.content .shop-now .icon i {
    font-size: 20px;
    color: var(--black-color);
}

.content .shop-now .icon::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -10px;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: #EFF2FF;
}

.our-product h1,
.about-us h1,
.qna h1 {
    font-family: 'BodoniMT';
    font-size: 42px;
    color: var(--primary-color);
    /* position: relative;
    z-index: 1; */
}

.our-product h1::after,
.about-us h1::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    background-color: #EFF2FF;
}

.our-product .detail .img-product img {
    width: 330px;
    height: 400px;
    object-fit: cover;
}

.our-product .detail .item {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: -220px;
}

.our-product .detail .item .img-product {
    position: relative;
}

.our-product .detail .item .btn-add-cart {
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .20);
    color: var(--black-color);
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.our-product .detail .item .btn-add-cart:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.our-product .detail .item .btn-add-cart i {
    font-size: 20px;
}

.our-product .detail .item h5 {
    font-family: 'BodoniMT';
    color: var(--black-color);
    font-weight: bold;
}

.about-us h2 {
    font-size: 50px;
}

.about-us .img-about img {
    width: 300px;
    height: 450px;
    object-fit: cover;
}

.qna h1::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    background-color: #EFF2FF;
}

.qna .content h5 {
    font-family: 'BodoniMT';
}

.qna .content .icon i {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
}

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

footer {
    margin-top: 100px;
    position: absolute;
    width: 100%;
}

footer hr {
    width: 42%;
}

footer img.logo {
    width: 15%;
}

footer h1 {
    font-family: 'BodoniMT';
    font-size: 32px;
    color: var(--primary-color);
    /* position: relative;
    z-index: 1; */
}

footer .input-group input.form-control {
    background-color: #EFF2FF;
    border-radius: 0;
    border: 0;
    height: 50px;
}

footer .input-group input.form-control {
    box-shadow: none;
}

footer .input-group .btn-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
    height: 50px;
    width: 180px;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
}

footer .input-group .btn-primary:hover {
    background-color: #012f83;
    border: 1px solid #012f83;
    color: var(--white-color);
}

footer p.copyright {
    font-family: 'BodoniMT';
    color: var(--primary-color);
    font-weight: bold;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: bold;
}



@media (min-width: 576px) {
    .content h1 {
        font-family: 'BodoniMT';
        font-size: 30px;
        color: var(--primary-color);
        position: relative;
        z-index: 1;
    }

    .content h5,
    .our-product h5,
    .about-us h5 {
        color: var(--secondary-color);
        line-height: 22px;
        font-size: 13px;
    }

    .our-product h1,
    .about-us h1,
    .qna h1 {
        font-family: 'BodoniMT';
        font-size: 30px;
        color: var(--primary-color);
        position: relative;
        z-index: 1;
    }

    footer h1 {
        font-family: 'BodoniMT';
        font-size: 20px;
        color: var(--primary-color);
        position: relative;
        z-index: 1;
    }
}


@media (min-width: 768px) {
    .content h1 {
        font-family: 'BodoniMT';
        font-size: 38px;
        color: var(--primary-color);
        position: relative;
        z-index: 1;
    }

    .content h5,
    .our-product h5,
    .about-us h5 {
        color: var(--secondary-color);
        line-height: 22px;
        font-size: 13px;
    }

    .our-product h1,
    .about-us h1,
    .qna h1 {
        font-family: 'BodoniMT';
        font-size: 38px;
        color: var(--primary-color);
        position: relative;
        z-index: 1;
    }

    footer h1 {
        font-family: 'BodoniMT';
        font-size: 28px;
        color: var(--primary-color);
        position: relative;
        z-index: 1;
    }
}


@media (min-width: 992px) {
    .content h1 {
        font-family: 'BodoniMT';
        font-size: 50px;
        color: var(--primary-color);
        position: relative;
        z-index: 1;
    }

    .content h5,
    .our-product h5,
    .about-us h5 {
        color: var(--secondary-color);
        line-height: 28px;
        font-size: 16px;
    }

    .our-product h1,
    .about-us h1,
    .qna h1 {
        font-family: 'BodoniMT';
        font-size: 50px;
        color: var(--primary-color);
        position: relative;
        z-index: 1;
    }

    footer h1 {
        font-family: 'BodoniMT';
        font-size: 40px;
        color: var(--primary-color);
        position: relative;
        z-index: 1;
    }
}

@media (min-width: 1200px) {

    .banner h1 {
        font-family: 'BodoniMT';
        font-size: 40px;
        color: var(--black-color);
        letter-spacing: 10px;
        position: relative;
        z-index: 1;
    }

    .content h1 {
        font-family: 'BodoniMT';
        font-size: 52px;
        color: var(--primary-color);
        position: relative;
        z-index: 1;
    }

    .content h5,
    .our-product h5,
    .about-us h5 {
        color: var(--secondary-color);
        line-height: 30px;
        font-size: 18px;
    }

    .our-product h1,
    .about-us h1,
    .qna h1 {
        font-family: 'BodoniMT';
        font-size: 52px;
        color: var(--primary-color);
        position: relative;
        z-index: 1;
    }

    footer h1 {
        font-family: 'BodoniMT';
        font-size: 42px;
        color: var(--primary-color);
        position: relative;
        z-index: 1;
    }
}

@media (min-width: 1400px) {

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

    .banner h1 {
        font-family: 'BodoniMT';
        font-size: 50px;
        color: var(--black-color);
        letter-spacing: 10px;
        position: relative;
        z-index: 1;
    }

    .content h1 {
        font-family: 'BodoniMT';
        font-size: 60px;
        color: var(--primary-color);
        position: relative;
        z-index: 1;
    }

    .content h5,
    .our-product h5,
    .about-us h5 {
        color: var(--secondary-color);
        line-height: 35px;
        font-size: 20px;
    }

    .our-product h1,
    .about-us h1,
    .qna h1 {
        font-family: 'BodoniMT';
        font-size: 60px;
        color: var(--primary-color);
        position: relative;
        z-index: 1;
    }

    footer h1 {
        font-family: 'BodoniMT';
        font-size: 50px;
        color: var(--primary-color);
        position: relative;
        z-index: 1;
    }
}


.login .logo img {
    width: 200px;
}

.login h2 {
    font-family: 'BodoniMT';
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.login input.form-control {
    height: 50px;
    background-color: transparent;
    border: 1px solid #CDD5DF;
    border-radius: 10px;
}

.login input.form-control:focus {
    box-shadow: none;
}

.table-data .table th {
    font-family: 'BodoniMT';
    font-size: 13px;
    color: var(--black-color);
    font-weight: bold;
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    background-color: #EFF2FF;
    border: 0;
}

.table-data .table td {
    font-size: 13px;
    color: var(--secondary-color);
    vertical-align: middle;
    padding: 15px;
    border-color: #F0F3FE;
}

.modal .modal-header h5 {
    font-family: 'BodoniMT';
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.modal .modal-header h5::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -5px;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: #EFF2FF;
}

.modal .modal-body input.form-control {
    height: 40px;
    font-size: small;
    background-color: transparent;
    border: 1px solid #CDD5DF;
}

.modal .modal-body input.form-control:focus {
    box-shadow: none;
}

.modal .modal-body textarea.form-control {
    background-color: transparent;
    border: 1px solid #CDD5DF;
}

.modal .modal-body select.form-control {
    height: 40px;
    font-size: small;
    background-color: transparent;
    border: 1px solid #CDD5DF;
}

.modal .modal-body select.form-control:focus {
    box-shadow: none;
}

.content-admin {
    min-height: 100vh;
    margin-left: 250px;
    padding: 20px 30px;
    background: #F7F8FD;
    transition: all 0.5s ease 0s;
}

.content-admin.active {
    margin-left: 0px;
}

.bx-menu,
.bx-x {
    font-size: 23px;
    color: var(--primary-color);
}

.logout {
    padding: 14px 40px;
}

.logout .btn-logout {
    height: 36px;
    width: 110px;
    display: flex;
    color: var(--secondary-color);
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 6px 0px;
    border-radius: 50px;
}

.product-admin h2 {
    font-family: 'BodoniMT';
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.product-admin .upload-img .custom-file-upload {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 10px;
    width: 100%;
    height: 220px;
    background-color: #eff2ff;
    transition: background-color 0.5s ease;
    border: 1px solid var(--primary-color);
    border-style: dashed;
}

.product-admin .upload-img .custom-file-upload:hover {
    background-color: #fff;
}

.product-admin .upload-img .custom-file-upload .icon-gallery {
    font-size: 30px;
    color: var(--primary-color);
}

.product-admin .upload-img input[type="file"] {
    display: none;
}

.product-admin .upload-img #imagePreview img {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    object-fit: cover;
}

.table-data .img-product img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

label {
    color: var(--primary-color);
    font-weight: bold;
}

input.form-control {
    height: 40px;
    background-color: #EFF2FF;
    border: 0;
    border-radius: 10px;
}

textarea.form-control {
    background-color: #EFF2FF !important;
    border: 0 !important;
    border-radius: 10px !important;
}

.import-file input {
    visibility: hidden;
}

input:-webkit-autofill, input.error:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #EFF2FF inset !important;
}
  
input:-webkit-autofill:focus, input.error:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #EFF2FF inset !important;
}

.navbar-collapse.show {
    background-color: #e9ecef;
}

.navbar-collapse.show .navbar-nav {
    height: 50vh;
}

.swiper-button-next, .swiper-button-prev {
    z-index:auto;
}