/* default */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --primary-color: #01017F;
    --secondary-color: #1C8CD1;
    --third-color: #1E46A1;
    --background-color: white;
}

html,
body {
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    background-color: var(--background-color);
    font-family: 'Poppins', sans-serif;
    transition: background-color .5s;


}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.06;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preloader {
    background: white url(/static/images/preloader.gif) no-repeat center center;
    background-size: 15%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 9999999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.preloader-hidden {
    opacity: 0;
}

/* default */



/* Navbar Start */
#navbar {
    background-color: transparent;
    transition: 0.3s ease-in-out all;
}

#navbar.scrolled {
    transition: 0.3s ease-in-out all;
    background-color: white;
    box-shadow: 1px 1px 1px 1px #f2f2f2;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: var(--secondary-color);
}

.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transform-origin: bottom;
    transition: transform 0.25s ease-in-out;
}

.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom;
}

.navbar-nav .nav-item .nav-link {
    font-size: 0.9em;
    color: black;
}

.logo {
    width: 180px;
    height: auto;
}

.mobile-navbar {
    display: none;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: black;
    display: block;
    transition: all ease-in 0.2s;
}

.sidenav a:hover {
    transition: all ease-in 0.2s;
    color: var(--secondary-color);
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}


@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    box-shadow: 1px 1px 1px 1px #f2f2f2;
}

.fixed-button {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
}

.header-bg-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.header-bg-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 126px;
}

.header-bg-top .shape-fill {
    fill: #1E46A1;
}

.mobile-nav-img {
    width: 50%;
    height: auto;
}

/* Navbar End */




/*Home  Start*/
.home {
    padding-top: 300px;
    padding-bottom: 200px;
    position: relative;
}

.home-left-h1 {
    font-size: 3em;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-left-p {
    padding-top: 20px;
    padding-bottom: 20px;
}

.home-btn {
    color: var(--primary-color);
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    font-size: 17px;
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
}

.home-btn:hover {
    color: white;
}

.home-btn::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: var(--primary-color);
    z-index: -1;
    transition: all 1s;
}

.home-btn:hover::before {
    width: 160%;
}

.home-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.home-bg svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 155px;
}

.home-bg .shape-fill {
    fill: var(--third-color);
}


@media (max-width: 767px) {
    .home-bg svg {
        width: calc(100% + 1.3px);
        height: 90px;
    }
}



/* Home End */



/* About Start */
.about {
    padding-top: 200px;
    padding-bottom: 200px;
    position: relative;
}

.about-hr {
    color: var(--third-color);
}

.about-h1 {
    font-weight: bold;
    font-size: 3em;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-p {
    font-size: 1.1em;
    color: black;
    padding-top: 20px;
}


/* About End */




/* Contact Start */
.contact {
    padding-top: 200px;
    padding-bottom: 200px;
    position: relative;
}

.contact-h1 {
    font-weight: bold;
    font-size: 3em;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.inputBox {
    position: relative;
}

.inputBox input,
.inputBox textarea {
    width: 100%;
    padding: 15px 20px;
    outline: none;
    background: transparent;
    border-radius: 5px;
    color: black;
    border: 1px solid var(--primary-color);
    font-size: 1em;
}

.inputBox span {
    position: absolute;
    left: 0;
    padding: 15px 20px;
    pointer-events: none;
    font-size: 1em;
    transition: 0.4s cubic-bezier(0.05, 0.81, 0, 0.93);
    color: var(--primary-color);
    font-weight: bold;
    letter-spacing: 0.1em;
}

.inputBox input:focus~span,
.inputBox input:valid~span {
    font-size: 0.7em;
    transform: translateX(14px) translateY(-7.5px);
    padding: 0 5px;
    border-radius: 2px;
    background: #f2f2f2;
    letter-spacing: 0em;
    border: 1px solid var(--primary-color);
}

.inputBox textarea:focus~span,
.inputBox textarea:valid~span {
    font-size: 1em;
    transform: translateX(14px) translateY(-7.5px);
    padding: 0 5px;
    border-radius: 2px;
    background: #f2f2f2;
    letter-spacing: 0em;
    border: 1px solid var(--primary-color);
}


.contact-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.contact-bg svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 186px;
    transform: rotateY(180deg);
}

.contact-bg .shape-fill {
    fill: #1E46A1;
}





/* Contact End */


/* liquid Helium Start */

.liquid-helium {
    padding-top: 100px;
    padding-bottom: 200px;
}

.liquid-helium-headers {
    padding-bottom: 50px
}

.liquid-helium-h1 {
    font-weight: bold;
    font-size: 3em;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.liquid-helium-p {
    font-size: 1.1em;
}

.liquid-helium-h2 {
    font-weight: bold;
    font-size: 2em;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}



/* liquid Helium End */


/* Services Start */
.services {
    padding-top: 100px;
    padding-bottom: 200px;
}

.services-h1 {
    font-weight: bold;
    font-size: 3em;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.learn-more {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

.learn-more {
    width: 12rem;
    height: auto;
}

.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #282936;
    border-radius: 1.625rem;
}

.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #282936;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

.learn-more:hover .circle {
    width: 100%;
}

.learn-more:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

.learn-more:hover .button-text {
    color: #fff;
}

.card-custom {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 0.5rem;
    background-color: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
}

.card-custom a {
    text-decoration: none
}

.card-custom .content {
    padding: 1.1rem;
}


.card-custom .title {
    font-weight: bold;
    font-size: 1.5em;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card-custom .desc {
    margin-top: 0.5rem;
    color: #6B7280;
    font-size: 0.975rem;
    line-height: 1.25rem;
}


.card-custom .action span {
    transition: .3s ease;
}

.card-custom .action:hover span {
    transform: translateX(4px);
}


/* Services End */

/* Error Start */
#notfound {
    position: relative;
    height: 100vh;
}

#notfound .notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.notfound {
    max-width: 560px;
    width: 100%;
    padding-left: 160px;
    line-height: 1.1;
}

.notfound .notfound-404 {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 140px;
    height: 140px;
    background-image: url('../images/emoji.png');
    background-size: cover;
}

.notfound .notfound-404:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(2.4);
    -ms-transform: scale(2.4);
    transform: scale(2.4);
    border-radius: 50%;
    background-color: #f2f5f8;
    z-index: -1;
}

.notfound h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 65px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 10px;
    color: #151723;
    text-transform: uppercase;
}

.notfound h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 21px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    color: #151723;
}

.notfound p {
    font-family: 'Nunito', sans-serif;
    color: #999fa5;
    font-weight: 400;
}

.notfound a {
    font-family: 'Nunito', sans-serif;
    display: inline-block;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    color: var(--secondary-color);
}

@media only screen and (max-width: 767px) {
    .notfound .notfound-404 {
        width: 110px;
        height: 110px;
    }

    .notfound {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 110px;
    }
}

/* Error End */


/* Sell Start */
.sell {
    padding-top: 150px;
    padding-bottom: 150px;
}

.sell-h1 {
    font-weight: bold;
    font-size: 3em;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 50px;
}

.card-sell {
    max-width: 100%;
    border-radius: 0.5rem;
    background-color: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
    border: 1px solid transparent;
}

.image-sell-box {
    position: relative;
    display: inline-block;
}

.post-price {
    font-size: 1.3em;
    font-weight: bold;
    position: absolute;
    bottom: -16px;
    right: 0px;
    background-color: rgba(255, 255, 255, 0.7);
    color: black;
    padding: 5px 10px;
    border-radius: 2px;
}

.image-sell-box {
    position: relative;
    width: 100%;
    height: 250px;
}

.image-sell {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.card-sell a {
    text-decoration: none
}

.content-sell {
    padding: 1.1rem;
}

.title-sell {
    color: #111827;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
}

.desc-sell {
    margin-top: 0.5rem;
    color: #6B7280;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.action-sell {
    display: inline-flex;
    margin-top: 1rem;
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    align-items: center;
    gap: 0.25rem;
    background-color: var(--secondary-color);
    padding: 4px 8px;
    border-radius: 4px;
}

.action-sell span {
    transition: .3s ease;
}

.action-sell:hover span {
    transform: translateX(4px);
}

.post-carousel-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.post-header {
    font-weight: bold;
    font-size: 2.4em;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.post-text {
    color: black;
}



/* Sell End */


/* Admin Start */

.admin {
    padding-bottom: 150px;
    padding-top: 150px;
}

#newPostForm {
    margin-top: 100px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f8f8f8;
}

#postTitle,
#postText {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#postImage {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

/* Admin End */

/* Post Start */
.post {
    padding-top: 150px;
    padding-bottom: 150px;
}

/* Post End */



/* responsive */
@media (max-width: 1024px) {

    .mobile-navbar {
        display: block;
    }

    #navbar {
        display: none;
    }

    .preloader {
        background-size: 70%;
    }

    .home {
        padding-top: 100px;
    }

    .logo {
        width: 150px;
    }

    .post-carousel-image {
        width: 100%;
        height: 350px;
    }
}


@media (max-width: 900px) {
    .about {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .contact {
        padding-top: 50px;
    }
}

/* responsive */