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

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

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

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

:root {
    --red-color: #D1212A;
    --light-tosca-color: #F6FAF9;
    --grey-color: #82839B;
    --light-grey-color: #F3F5F9;
    --light-red-color: #FFD1D1;
    --light-green-color: #EAF7F1;
    --yellow-color: #FFBC01;
    --orange-color: #FE7200;
    --green-color: #A0BB3B;
    --black-color: #000000;
    --white-color: #FFFFFF;

    --primary-color: #D1212A;
    --primary-light-color: #ffcfd1;

    --secondary-color:#816C4A;


}

*,
::after,
::before {
    box-sizing: border-box
}

html,
body {
    font-family: 'Poppins-Regular';
    color: var(--black-color);
    overflow-x: hidden;
    background-color: var(--white-color);
}

.primary  {
    color: var(--primary-color);
}

.secondary {
    color: var(--primary-color);
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.font-weight-bold {
    font-family: 'Poppins-Bold';
}

.font-weight-semibold {
    font-family: 'Poppins-SemiBold';
}

.font-weight-normal {
    font-family: 'Poppins-Regular';
}

/* Placeholder */
::-webkit-input-placeholder {
    /* Edge */
    color: var(--grey-color) !important;
    font-size: small;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--grey-color) !important;
    font-size: small;
}

::placeholder {
    color: var(--grey-color) !important;
    font-size: small;
}

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

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

/* h3 {
    font-size: 25px;
} */

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid #E8E8E8;
    opacity: 1;
}

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

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

.light-grey-color {
    color: var(--light-grey-color) !important;
}

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

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

.yellow-color {
    color: var(--yellow-color);
}

.grey-color {
    color: var(--grey-color);
}

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

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

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

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

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

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

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

.curved-60 {
    border-radius: 60px !important;
}

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

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

.curved-25 {
    border-radius: 25px !important;
}

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

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

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

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

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

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

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

.curved-left-15 {
    border-top-left-radius: 15px !important;
    border-bottom-left-radius: 15px !important;
}

.curved-right-15 {
    border-top-right-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}

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

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

.navbar .icon-cart {
    height: 40px;
    width: 40px;
    background-color: var(--light-grey-color);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar .icon-cart i {
    font-size: 20px;
}

.banner .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 30px !important;
    border-top: none;
    border-bottom: none;
}

.banner .carousel-control-next,
.banner .carousel-control-prev {
    width: 5%;
}

.banner .carousel-control,
.banner .carousel-control {
    width: 40px;
    height: 40px;
    background-color: rgba(40, 40, 40, 0.7);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .carousel-control i,
.banner .carousel-control i {
    font-size: 20px;
}

footer {
    /* background-color: #F8F8F8; */
    background-color: #f8f9fa;
    padding: 30px;
    position: relative;
}

footer .logo img {
    width: 210px;
    /* height: auto; */
}

footer hr {
    border-top: 1px solid #E8E8E8;
    opacity: 1;
}

footer .icon-medsos {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    border: 1px solid var(--grey-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .icon img {
    height: 40px;
}

small {
    font-size: 13px;
}

.promo-1 img {
    width: 100%;
    height: 533px;
    border-radius: 30px;
    object-fit: cover;
}

.promo-2 img {
    width: 100%;
    height: 254px;
    border-radius: 30px;
    object-fit: cover;
}

.promo-3 img {
    width: 100%;
    height: 254px;
    border-radius: 30px;
    object-fit: cover;
}

.cta-info {
    margin-top: 130px;
    margin-bottom: 100px;
}

.shape-2 {
    position: absolute;
    left: 0;
}

.shape-2 img {
    height: 493px;
    width: 309px;
}

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

.btn-primary:hover {
    background-color: var(--primary-light-color);
    border: 1px solid var(--primary-light-color);
    border-radius: 10px;
}

.btn-outline-black {
    background-color: var(--white-color);
    border: 1px solid #E8E8E8;
    color: var(--black-color);
    border-radius: 10px;
}

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

.table-data .table th {
    font-family: 'Poppins-Bold';
    font-size: 13px;
    color: var(--black-color);
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    background-color: var(--light-grey-color);
    border: 0;
}

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


.input-number {
    /* background-color: var(--light-grey-color); */
    border: 0;
    font-weight: bold;
    color: var(--black-color);
    text-align: center;
    padding: 0;
}

.input-number:focus-visible {
    outline: none;
}
