:root {
    --primary-color: rgb(235 38 143);
    --secondary-color: #fbb030;
    --third-color: #805aa3;
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #FFD333;
    --secondary: #F5F5F5;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #FFFFFF;
    --dark: #3D464D;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "Raleway", sans-serif;

}

body {
    font-size: 15px !important;
    color: #343a40;
    font-family: "Raleway", sans-serif;
    text-decoration: none;
}

a {
    text-decoration: none;
}

p {
    margin-top: 0;
    margin-bottom: 0;
}

.dropdown-menu {
    background: var(--secondary-color);
}

.text-right {
    text-align: right;
}

.topbar {
    background-color: #805aa3;
    color: #fff;
    align-items: center;
}

.topbar .right {
    text-align: right;
}

.text-lg-right {
    text-align: right;
}

.icon {
    color: rgb(235 38 143) !important
}

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

.logo {
    padding: 10px 0;
    display: block;
}

.input-group-text {
    height: 100%;
}

.navbar-nav .nav-link {
    padding: 20px 20px !important;
    color: #F5F5F5;
    outline: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: #FFD333;
    color: #6610f2;

}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 5px 0px;
    }
}

.navbar-vertical.navbar-light .navbar-nav .nav-link {
    padding: 8px 30px;
    border-bottom: 1px solid #F5F5F5;
}

.navbar-light .dropdown-toggle::after,
.navbar-dark .dropdown-toggle::after {
    display: none;
}

.navbar-nav .btn {
    position: relative;
    margin-right: 30px;
}

.navbar-nav .btn .badge {
    position: absolute;
    top: -8px;
    right: -25px;
}

.text-pink {
    color: #eb268f;
}

#header-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.carousel-indicators li {
    width: 15px;
    height: 15px;
    margin: 0 3px 12px 3px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.carousel-indicators .active {
    width: 30px;
    background: #FFFFFF;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
    align-self: center;
    font-family: "Montserrat", sans-serif;

}

.carousel-caption h2 {
    color: var(--pink);
    font-size: 50px !important;
    font-weight: bolder;
    text-shadow: 1px 1px 1px #000;
    font-family: "Montserrat", sans-serif;
}

.section-padding {
    padding: 60px 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title span {
    padding: 5px 10px;
    color: #fff;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 50%;
    left: 0;
    border-top: 1px dashed var(--primary-color);
    z-index: -1;
}

.product-offer {
    position: relative;
    overflow: hidden;
}

.product-offer img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.product-offer:hover img {
    transform: scale(1.2) rotate(5deg);
}

.product-offer .offer-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(61, 70, 77, 0.5);
    z-index: 1;
}

.cat-item {
    background: #FFFFFF;
    transition: .5s;
}

.cat-item:hover {
    background: #FFD333;
}

.cat-item img {
    transition: .5s;
}

.cat-item:hover img {
    transform: scale(1.2) rotate(5deg);
}

.product-item {
    transition: .5s;
    border: 1px solid var(--primary-color);
}

.product-action {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.product-action .btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.product-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.product-item:hover .product-action {
    background: rgba(255, 255, 255, 0.7);
}

.product-action:hover .btn {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}



.product-item .product-img img {
    transition: .5s;
    max-height: 250px;
    object-fit: cover;
}

.product-item:hover .product-img img {
    transform: scale(1.2);
}

.product-item .btn:hover {
    color: #FFD333 !important;
}

.table.table-borderless thead tr,
.table.table-borderless tbody tr:not(:last-child) {
    border-bottom: 15px solid #F5F5F5;
}

.contact-form .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 11;
    animation: action 1s infinite alternate;
}

@keyframes action {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

.item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    height: 500px;
}


.owl-nav .owl-prev,
.owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    color: #805aa3;
    border: 1px solid #805aa3;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    position: absolute;
    top: 50%;
    background: rgb(0 0 0 / 42%);
    padding: 10px 20px;
    color: #fff;
    border: 1px solid #fff;
}

.owl-nav .owl-prev {
    left: 15px;
}

.owl-nav .owl-next {
    right: 15px;
}

.shop-services .single-service i {
    height: 50px;
    width: 100%;
    line-height: 50px;
    text-align: center;
    color: var(--primary-color);
    background: transparent;
    border-radius: 100%;
    display: block;
    font-size: 32px;
    /* position: absolute; */
    /* left: 0; */
    /* top: 0; */
}

.shop-services .single-service h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 22px;
    color: var(--primary-color);
    text-align: center;
}

.shop-services .single-service p {
    color: var(--primary-color);
    line-height: 28px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 5px;
    background: #ccc;
    border: 0px;
    transition: background 0.3s;
}

.owl-dot.active {
    background: var(--primary-color);
}

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

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

@media only screen and (max-width: 600px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50% !important;
    }
}

.owl-carousel,
.owl-carousel .owl-item {
    padding: 2px;
}

.footer {
    background: #e2e2e2;
    border-top: 10px solid var(--primary-color);
}

li {
    list-style-type: none;
}

.footer li i {
    color: var(--primary-color);
    font-size: 15px;
    transition: all 1s;
}

.footer a {
    font-size: 14px;
    line-height: 30px;
    color: #343a40;
}

.footer li:hover i {
    margin-right: 15px
}

.footer a:hover {
    font-size: 14px;
    line-height: 30px;
    color: #eb268f;
}

.breadcrumb-section {
    background-color: #e5e5e5 !important;
    background: url(../img/inner-bg.jpg) no-repeat center bottom;
    background-size: cover;
    padding: 30px 0;
    position: relative;

}

.breadcrumb-section::before {
    background-color: #000 !important;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.breadcrumb-section .container-fluid {
    z-index: 102;
    position: relative;
}

.slogan {
    text-align: center;
    color: var(--pink);
    background-color: #fff;
    margin-bottom: 0;
    padding: 5px 10px;
    border-radius: 20px 0 0px 0px;


}

.breadcrumb {
    background: pink;
    text-align: center;
    justify-content: center;
    padding: 10px;
    border-radius: 0 0 20px 0px;


}

.nav-tabs {
    background: transparent !important;

}

.tab-content {
    border: 1px solid var(--primary-color);
    padding: 20px;

}

.nav-tabs .nav-item.active {
    background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
}

.btn-primary {
    background-color: rgb(235 38 143) !important;
    border: 1px solid rgb(235 38 143) !important;
}

.product-gallery {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.main-image-container {
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
}

.main-image {
    width: 100%;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.main-image-container:hover .main-image {
    transform: scale(1.8);
}

.thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.3s;
}

.thumb.active,
.thumb:hover {
    border: 2px solid #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {

    /* font-size: 1rem; */
    font-weight: 400;
    line-height: 1.5;
    color: #000 !important;
    ;
    background-color: #fff;
    border: 1px solid #222222;

    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;

}

label {
    display: inline-block;
    margin-bottom: 10px;
}

.contact .card {
    /* padding: 40px 30px 0; */
    /* margin: 50px 0 !important; */
    position: relative;
    height: 71px;
    display: block;
}

.contact .card i {
    color: var(--pink) !important;
    font-size: 40px;
    /* position: absolute; */
    /* top: -40px; */
    background-color: var(--primary);
    width: 70px;
    height: 70px;
    text-align: center;
    padding: 15px 10px;
    margin-right: 20px;
}

.thank-you-img {
    height: 320px;
    overflow: hidden;
}


.my-account .nav-tabs .nav-link {
    border-radius: 8px;
    font-weight: 500;
    background: #f1f1f1;
    color: #333;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.my-account .nav-tabs .nav-link.active {
    background-color: var(--secondary-color);
    color: white;
}

.my-account .tab-content {
    margin-top: 20px;
}

.my-account .btn-outline-primary {
    border-radius: 6px;
}

.my-account .btn-danger {
    border-radius: 6px;
}

.my-account .card {
    border-radius: 1.5rem;
}

.list-group-item {
    font-size: 16px;
}

.dropdown{    height: 40px;
    width: 150px;
    margin-left: 20px;}

.input-group-text {
    height: 100%;
    border: 1px solid #000;
    margin-left: -3px;
}

.form-control{
    appearance: auto!important;
}