@import url('https://fonts.googleapis.com/css2?family=Kaisei+Decol&family=Poppins: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&display=swap');

:root {
    --lg-font: "Poppins", sans-serif;
    --sm-font: "Kaisei Decol", serif;
    --pink: #e5345b;
}
body {
    font-family: var(--sm-font);
}
.text-col {
    color: #777676 !important;
}
.bg-primary {
    background-color: var(--pink) !important;
}
.btn:not(.nav-btns button) {
    background-color: #fff;
    color: rgb(85, 85, 85);
    padding: 10px 28px;
    border-radius: 25px;
    border: 1px solid rgb(85, 85, 85);
}
.btn:not(.nav-btns button):hover {
    background-color: var(--pink);
    color: #fff;
    border-color: var(--pink);
}
/* text color */
.text-primary {
    color: var(--pink) !important;
}
.navbar {
    box-shadow: 0 3px 9px 3px rgba(0, 0, 0, 0.1);
}
.navbar-brand img {
    width: 30px;
}
.navbar-brand span {
    letter-spacing: 2px;
    font-family: var(--lg-font);
}
.nav-link:hover {
    color: var(--pink) !important;
}
.nav-item {
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.05);
}

/* header */
#header {
    background: url(/static/images2/lady-hoverboard.png) top/cover no-repeat;
    background-position: center top 50px;
}
.carousel-inner h1 {
    font-size: 60px;
    font-family: var(--lg-font);
}
.carousel-item .btn {
    border-color: #fff !important;
}
.carousel-item .btn:hover {
    border-color: var(--pink) !important;
}
/* title */
.title h2::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 50px;
    background-color: var(--pink);
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}
/* collection */
.active-filter-btn {
    background-color: var(--pink) !important;
    color: #fff !important;
    border-color: var(--pink) !important;
}
.filter-button-group .btn:hover {
    color: #fff !important;
}
.collection-img span {
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

/* special collection */
.special-img span {
    top: 20px;
    right: 20px;
}
.special-list .btn {
    padding: 8px 20px !important;
}
.special-img img {
    transition: all 0.3s ease;
}
.special-img:hover img {
    transform: scale(1.2);
}

/* offers */
#offers {
    background: url(/static/images/make-money-banner.png) center/cover no-repeat;
}
#offers .row {
    min-height: 60vh;
}
.offers-content span {
    font-size: 28px;
}
.offers-content h2 {
    font-size: 60px;
    font-family: var(--lg-font);
}
.offers-content .btn {
    border-color: transparent !important;
}
/* about */
#about {
    background-color: rgba(179, 179, 179, 0.05);
}
.popular img {
    max-height: 60px;
    min-width: 25%;
}
/* newsletter */
#newsletter {
    background-color: rgba(179, 179, 179, 0.05);
}
#newsletter p {
    max-width: 600px;
}
#newsletter .input-group {
    max-width: 500px;
}
#newsletter .form-control {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}
#newsletter .btn {
    background-color: var(--pink);
    color: #fff;
    border-color: var(--pink);
}
#newsletter .btn:hover {
    background-color: #000;
    border-color: #000;
}
/* footer */
footer .brand {
    font-family: var(--lg-font);
    letter-spacing: 2px;
}
footer a {
    transition: color 0.3s ease;
}
footer a:hover {
    color: var(--pink) !important;
}

/* media queries */
@media (min-width: 992px) {
    .nav-item {
        border-bottom: none;;
    }
}

.post-ad {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    background-color: #2994F2;
    padding: 10px 18px;
    float: right;
	border-radius:3px;
	-webkit-border-radius:3px;
	-o-border-radius:3px;
	-ms-border-radius:3px;
	-moz-border-radius:3px;
	color: #fff !important;
}
.post-ad:hover {
	background:#000;
	color: #ccc !important;
}