:root {
    --primary-color: #FF02B5;
    --hover-color: #212121;
}


@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans&display=swap');





.brandon-light {
    font-family: "Plus Jakarta Sans", sans-serif;
}

h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.container {
    max-width: 1024px;
}

.btn {
    border-radius: 0;
    background-color: var(--primary-color);
    color: #fff;
    transition: all .5s;
    font-weight: bold;
    border: 1px solid var(--primary-color);
    padding: 7px 21px;
}

.btn:hover {
    background-color: var(--hover-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}

.navbar {
    background-color: #ffffff;
    margin-bottom: 60px;
}

.navbar-brand img {
    height: 70px;
    width: 200px;
    object-fit: scale-down;
}

.nav-link {
    color: #000;
}

.nav-link.active {
    color: #607D8B !important;
    font-weight: bold;
}

.nav-link {
    margin-right: 15px;
}

.last {
    margin-right: 0;
}

.search-bar {
    display: flex;
    align-items: center;
    position: relative;
    border: 2px solid #3361AC;
    border-radius: 6px;
}

#search-input {
    padding: 10px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding-right: 1px;
    /* Space for the icon */
}

#search-button {
    position: absolute;
    right: 20px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 5px 10px;
    color: #333;
    border-left: 2px solid #3361AC;
}

#search-button i {
    font-size: 16px;
    color: #3361ac;
}

#search-input:focus {
    border-color: #007bff;
    outline: none;
}

#search-button:focus {
    outline: none;
}

input#search-input::placeholder {
    color: #3361AC;
    font-size: 16px;
    font-weight: 600;
}


/* ======================BANNER CSS START====================== */
.home-section {
    position: relative;
}

.home-section::after {
    position: absolute;
    content: '';
    background: #2FA6D9;
    width: 200px;
    height: 200px;
    top: 0px;
    border-radius: 0px 100px 160px 100px;
    filter: blur(130px);
}

.home-section::before {
    position: absolute;
    content: '';
    background: #E74C3C;
    width: 200px;
    height: 200px;
    top: 0px;
    right: 0;
    z-index: 1;
    border-radius: 80px 0px 80px 300px;
    filter: blur(130px);
}

section.banner-01 {
    position: relative;
}

.banner-content-img img {
    width: 25%;
    height: 150PX;
    position: absolute;
}

.banner-images img {
    width: 100%;
    height: auto;
    object-fit: scale-down;
}

.banner-content h3 {
    font-size: 50px;
    color: #000;
    font-weight: 800;
}

.banner-content h4 {
    font-size: 50px;
    color: #317FB6;
    font-weight: 800;
}

.banner-content h6 {
    font-size: 38px;
    color: #000;
    font-weight: 700;
}

.banner-content h6 span {
    color: #317FB6;
}

/* ======================BANNER CSS END======================== */
/* ======================ABOUT CSS START======================== */
div#about {
    margin: 60px 0 0px;
}

.about_content_box {
    width: 336px;
    background: #fff;
    box-shadow: 0px 0px 7px #cccccc73;
    border-radius: 5px;
    padding: 90px 20px;
}

.about-paragraph p {
    font-size: 17px;
    font-weight: 400 !important;
    line-height: 28px;
    color: #909090;
}

.about_content_box h4 {
    font-size: 28px;
    font-weight: 700;
}

.about_content_box h4 span {
    color: #317FB6;
}

/* ======================ABOUT CSS END======================== */
/* ======================KEY FEATURES CSS START======================== */
.key-features {
    background: #181727;
    color: #fff;
}

img.img-02 {
    margin: -200px 0 0 -100px;
}

.key-futures-content h3 {
    font-weight: 700;
    font-size: 38px;
}

.key-futures-content h3 span {
    color: #317FB6;
}

.key-futures-content p {
    font-size: 17px;
}

.key-futures-content ul li {
    position: relative;
    padding-left: 0px;
    margin-bottom: 10px;
    list-style: none;
}

.key-futures-content ul li::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #3361AC;
    border-radius: 50%;
    font-weight: bold;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-60%) scale(1.2);
    }
}

.purple {
    position: relative;
    animation: fadeIn 2s ease-in-out;
}

.purple::after {
    position: absolute;
    content: '';
    background: linear-gradient(to bottom, #C82BFF, #660BDD);
    width: 50px;
    height: 50px;
    top: -65px;
    border-radius: 50px;
    animation: rotate 4s linear infinite;
}

.red {
    position: relative;
    animation: fadeIn 2s ease-in-out;
}

.red::after {
    position: absolute;
    content: '';
    background: #E74C3C;
    width: 30px;
    height: 30px;
    top: -15px;
    border-radius: 50px;
    right: 50px;
    animation: scale 2s infinite alternate;
}

.red::before {
    position: absolute;
    content: '';
    background: #E74C3C;
    width: 25px;
    height: 25px;
    bottom: -50px;
    border-radius: 50px;
    right: 80px;
    animation: pulse 2s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes scale {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        background-color: #E74C3C;
    }

    50% {
        transform: scale(1.2);
        background-color: #FF6F61;
    }

    100% {
        transform: scale(1);
        background-color: #E74C3C;
    }
}

/* ======================KEY FEATURES CSS END======================== */
/* ======================biorythem CSS start======================== */
.biorythem-img {
    position: relative;
}

.biorythem-img:after {
    position: absolute;
    background: #181727;
    width: 0;
    /* Start with zero width */
    height: 300px;
    content: '';
    top: 200px;
    z-index: -1;
    right: 109px;
    border-radius: 0px 150px 150px 0px;
    animation: expandWidth 2s forwards;
    /* Apply animation */
}

@keyframes expandWidth {
    from {
        width: 0;
        /* Start from zero width */
    }

    to {
        width: 420px;
        /* End at 420px width */
    }
}

.biorythem-img img {
    width: 400px !important;
    position: relative;
    right: 120px;
    object-fit: scale-down;
    animation: rotateImage 19s infinite linear;
}

@keyframes rotateImage {
    from {
        transform: rotate(0deg);
        /* Start from 0 degrees */
    }

    to {
        transform: rotate(360deg);
        /* End at 360 degrees */
    }
}

.biorythem-img:before {
    background: #2FD9B9;
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    border-radius: 50px;
    left: -130px;
}

.biorhythm-content h3 {
    font-size: 40px;
    font-weight: 700;
}

.details__text strong {
    text-align: center !important;
    font-size: 40px;
    color: #317fb6;
}

.details__text p {
    font-size: 18px;
    color: #9c9c9c;
}

.biorhythm-content p {
    font-size: 17px;
    color: #9c9c9c;
}
.key-futures-content ul li a {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
}
/* ======================biorythem CSS END======================== */
/* ====================== CONTACT US  CSS START======================== */
.contact-section {
    background: #181727;
    color: #fff;
    text-align: center;
    margin: 69px 0 0;
}

.contact-form {
    background: #fff;
    color: #000;
    padding: 20px 20px;
    text-align: left;
    border-radius: 10px;
}

.form-group input {
    background: #F5F5F5;
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #000;
}

.form-group textarea {
    width: 100%;
    height: 90px;
    padding: 10px 10px;
    border-radius: 5px;
    background: #F5F5F5;
    border: 1px solid #ccc;
}

.form-group button {
    background: #317FB6;
    border: navajowhite;
    padding: 6px 30px;
    color: #fff;
    border-radius: 6px;
}

.contact-content ul li {
    list-style: none;
    text-align: center;
}

.contact-content ul li span i {
    color: #317fb6;
}

.contact-content ul li p {
    color: #ccc;
    font-size: 14px;
}

.contact-content ul {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.contact-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.social-icon ul {
    justify-content: center;
    gap: 50px;
}

.social-icon ul li a {
    font-size: 26px;
}

.contact-title h3 {
    font-size: 30px;
    font-weight: 700;
}

.contact-title p {
    font-size: 18px;
    color: #FFFFFF;
}

/* ======================CONTACT CSS END======================== */
/* =================FOOTER CSS START================== */
.footer {
    background: #317FB6;
    padding: 35px 0px;
}

.footer_div {
    width: 1000px;
    height: 250px;
    margin: auto;
    border-bottom: 1px solid rgb(255, 255, 255);
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 30px;
}

.footer_logo {
    height: 100%;
    width: 25%;
    /* border: 1px solid red; */
}


.footer-logo {
    width: 200px;
    /* border: 1px solid red; */
}

.footer_socials {
    display: flex;
    align-items: center;
    margin-top: 25px;
    gap: 30px;
}

.footer_logo a {
    font-size: 25px;
    color: white;
}




.footer_links {
    height: 90%;
    width: 25%;
    /* border: 1px solid red; */
    color: white;
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}
.footer_links a {
    color: white;
    text-decoration: none;
    text-transform:lowercase;
    font-size: 16px;
    margin-top: 5px;
}



@media only screen and (max-width:1020px) {
    .footer_div {
        width: 900px;
    }
}

@media only screen and (max-width:930px) {
    .footer_div {
        width: 100%;
        height: 600px;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        padding-left: 10px;
        padding-top: 0;
    }
    .footer_logo,.footer_links {
        width: 100%;
        height: fit-content;
        padding-left: 0px;
        margin-top: 10px;
    }
    .footer_links {
        margin-top: 20px;
    }
}

@media only screen and (max-width:500px) {
    .footer_links a {
        font-size: 14px;
    }
    
}






















.mx-auto {
    margin-right: 0 !important;
    margin-left: auto !important;
}

.banner-images img {
    width: 100%;
    opacity: 0;
}

.banner-content h3,
.banner-content h4,
.banner-content h6 {
    opacity: 0;
    transform: translateY(20px);
}

.banner-content-img img {
    opacity: 0;
    transform: translateY(20px);
}


.about,
.key-features,
.biorhythm,
.contact-section {
    opacity: 1;
    transform: translateY(20px);
}

.about-content-box h4 span,
.key-futures-content h3 span,
.biorhythm-content h3,
.contact-title h3 {
    opacity: 1;
}



.gs_reveal {
    opacity: 0;
    transform: translateY(20px);
}

.gs_reveal_fromLeft {
    opacity: 0;
    transform: translateX(-20px);
}

.gs_reveal_fromRight {
    opacity: 0;
    transform: translateX(20px);
}

section.free-use {
    padding: 65px 0px;
    background: black;
    color: #ffff;
    position: relative;
    margin-top: 75px;
}
.free-text ul li {
    display: inline-block;
    list-style: none;
}
.free-text ul {
    padding: 0px;
    margin-top: 24px;
}

img.smart-phone {
    width: 395px;
    height: 383px;
    display: block;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: -48px;
}
.free-text h2 {
    font-size: 30px;
    font-weight: 600;
}
.free-text small {
    color: #6ad469;
}
.free-text span {
    color: #2fa6d9;
}