body {
    margin: 0;
    padding: 0;
}

/* header css start */
.header-wapper {
	position: sticky;
	z-index: 50;
	top: 0;
	width: 100%;
	padding: 16px 0;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
}
.header-wapper .container{
background-color: transparent !important;
}
.header-wapper::before {
    content: '';
    width: 100%;
    height: 4px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #ff0080, #ff8c00, #40e0d0, #8a2be2);
}

.header-logo a {
    display: flex;
    flex-direction: column;
}

.header-logo a img {
    max-width: 113px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.header-logo-main {
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
    font-family: 'Fraunces', serif;
    letter-spacing: -1px;
    color: rgb(90 95 147);
}

.header-logo-sub {
    display: flex;
    gap: 6px;
    margin-top: -4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: rgb(149 151 191);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.top-header-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-top-right .search-box input {
    width: 280px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 44px;
    padding-right: 20px;
    background-color: rgb(248 249 253);
    outline: none;
    box-shadow: none;
    border-width: 2px;
}

.header-top-right .search-box input:focus{
    border-color: rgb(255 78 136 / 0.3);
}

.header-top-right .search-box-icon {
    position: absolute;
    left: 15px;
    top: 6px;
    color: #999;
}

.header-top-right .search-box input:focus + .search-box-icon {
    color: rgb(255 78 136); 
}

.header-top-join-btn {
    background: rgb(255 78 136);
    color: white;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 28px;
    padding-right: 28px;
    display: inline-block;
    border-radius: 9999px;
}

/* menu */
.bottom-header-card {
    padding-top: 12px;
    border-top: 1px solid rgb(149 151 191 / 0.05);
    margin-top: 8px;
}

.bottom-header-card ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.bottom-header-card ul li {
    list-style-type: none;
    display: block;
}

.bottom-header-card ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    color: rgb(47 47 47 / 0.6);
    font-weight: 900;
    font-size: 11px;
    line-height: normal;
    position: relative;
    font-family: Plus Jakarta Sans, sans-serif;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    letter-spacing: 1.6px;
    padding-bottom: 4px;
}

.bottom-header-card ul li a:hover {
    color: rgb(255 78 136);
    text-decoration: none;
}

.bottom-header-card ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 0;
    left: 0;
    background-color: transparent;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.bottom-header-card ul li a:hover::before {
    background-color: rgb(255 78 136);
    width: 100%;
}

.h-menu-icon {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-subscribe-btn {
    display: none;
}

.h-toggle-btn {
    display: none;
}

/* header css end */

/* footer css start */
.footer-newsletter .inline-container {
    padding: 0 !important;
}
.inline-container .emailoctopus-form-wrapper {
    margin-top: 0 !important;
}
.footer-newsletter .main-form input{
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
    border-radius: 1rem !important;
    border: 1px solid #ccc !important;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    background-color: rgb(248 249 253) !important;
    border-radius: 0.75rem !important;
    flex-grow: 1 !important;
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
    height: 46px !important;
}
.footer-newsletter .main-form input[type=submit] {
    padding: 0.75rem !important; 
    background: rgb(90 95 147) !important;
    border: none !important;
    border-radius: 0.75rem !important;
    color: white !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.footer-newsletter .main-form input[type=submit]:hover
{
        background: rgb(255 78 136);
}
.footer-newsletter .main-form {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}
.footer-wapper {
    background: white;
    padding: 5rem 0 2.5rem;
    position: relative;
}

.footer-wapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
        background: linear-gradient(90deg, #FF0000, #FF7F00, #FFFF00, #00FF00, #0000FF, #4B0082, #8B00FF);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

.footer-logo-img {
    display: block;
    max-width: 120px;
    height: auto;
}

.footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-logo .description {
    font-size: 14px;
    color: rgb(47 47 47 / 0.5);
    margin-top: 16px;
    max-width: 250px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-menu h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    line-height: 16px;
    color: rgb(47 47 47 / var(--tw-text-opacity, 1));
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-menu ul li {
    list-style-type: none;
}

.footer-menu ul li a {
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: rgb(47 47 47 / 0.6);
    transition: color 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-menu ul li a:hover {
    color: rgb(255 78 136);
}

.footer-menu p {
    color: rgb(47 47 47 / 0.5);
    line-height: 1.625;
    font-weight: 500;
    font-size: 12px;
    margin: 0;
    font-family: ' Plus Jakarta Sans', sans-serif;

}

.footer-newsletter .newsletter {
    display: flex;
    align-items: center;
    gap: 4px;
}
.footer-newsletter input {
	flex-grow: 1;
	font-size: 0.875rem;
	line-height: 1.25rem;
	border-radius: 1rem !important;
	border: 2px solid #ccc !important;
	padding-top: 0.75rem !important;
	padding-bottom: 0.75rem !important;
	padding-left: 1rem !important;
	padding-right: 1rem !important;
	background-color: rgb(248 249 253) !important;
	border-radius: 0.75rem !important;
	flex-grow: 1 !important;
	outline: 2px solid transparent !important;
	outline-offset: 2px !important;
}

.footer-newsletter input:focus {
	outline: none !important;
	border-color: rgb(255 78 136 / 0.2) !important;
	box-shadow: none !important;
}
.footer-newsletter h4 {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: #333;
}
.footer-newsletter p {
    color: rgb(47 47 47 / 0.5);
    line-height: 1.625;
    font-weight: 500;
    font-size: 12px;
    margin: 0;
    font-family: ' Plus Jakarta Sans', sans-serif;
    margin-bottom: 1.5rem;
}

.footer-newsletter button {
    padding: 0.75rem;
    background: rgb(90 95 147);
    border: none;
    border-radius: 0.75rem;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    outline: none !important;
}

.footer-newsletter button:hover {
    background: rgb(255 78 136);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2.5rem;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.625rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.3);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-social-links a {
    font-size: 0.625rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgb(47 47 47 / 0.3);
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-social-links a:hover {
    color: rgb(255 78 136);
}

/* footer css end */



@media(max-width:991px) {

    /* header css start */
    .h-subscribe-btn {
        display: block;
        padding-top: 24px;
    }

    .h-subscribe-btn a {
        width: 100%;
        color: rgb(255 255 255);
        font-weight: 700;
        background-color: rgb(90 95 147);
        border-radius: 16px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: Plus Jakarta Sans, sans-serif;
        font-size: 18px;
    }

    .h-toggle-btn {
        display: block;
    }


    .h-toggle-btn {
        margin-right: 0;
        width: 18px;
        height: auto;
        position: relative;
        -webkit-transition: .5s ease-in;
        -o-transition: .5s ease-in;
        transition: .5s ease-in;
        cursor: pointer;
        display: inline-block;
    }

    .line-card {
        width: 100%;
        height: 3px;
        background: rgb(47 47 47);
        margin: 4px auto;
        transition: all 0.3s;
        backface-visibility: hidden;
    }

    #h-toggle-btn.open .one {
        transform: rotate(45deg) translate(2px, 5px);
    }

    #h-toggle-btn.open .two {
        opacity: 0;
    }

    #h-toggle-btn.open .three {
        transform: rotate(-45deg) translate(5px, -8px);
    }

    .header-top-right {
        display: none;
    }

    .bottom-header-card {
        height: auto;
        width: 100%;
        transition-duration: 200ms;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        left: 0px;
        top: 100%;
        position: absolute;
        padding: 24px;
        visibility: hidden;
        opacity: 0;
        z-index: -1;
    }

    .bottom-header-card.h-menu-active {
        height: auto;
        visibility: visible;
        opacity: 1;
        z-index: 100;
    }

    .bottom-header-card ul {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;

    }

    .bottom-header-card ul li a {
        padding: 8px 0;
        font-size: 18px;

    }

    /* header css end */
}


@media(max-width:767px) {
    /* footer css start */
    .footer-social-links{
        margin: 0 auto;
    }
    /* footer css end */
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
.container
{
    background: transparent !important;
}
@media(min-width:1300px) {
    .container {
        max-width: 1280px;
    }
}
