/* 
    Created By: Ali Irtaza 
    Email: ma280972@gmail.com
    WhatsApp Number: +923490825882
*/


/* 
    (Font Family)
    font-family: 'Open Sans', sans-serif;
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}


/* Other stylings */

.btn:focus {
    border: none;
    outline: none;
    box-shadow: none;
}


/* 
=================================================================================
                                Navbar Styling Starts 
=================================================================================
*/

.header_background {
    background: rgb(5, 132, 196) !important;
    transition: background .5s ease-in-out;
    -webkit-transition: background .5s ease-in-out;
    -moz-transition: background .5s ease-in-out;
    -ms-transition: background .5s ease-in-out;
    -o-transition: background .5s ease-in-out;
}

#header {
    position: relative;
    width: 100%;
    height: 90vh;
    background: linear-gradient(to top, rgba(5, 132, 196, .5), rgba(5, 132, 196, .5)), url('../img/header-background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-text {
    margin-left: 5px;
    font-size: 30px;
}

@media screen and (max-width: 375px) {
    .logo-text {
        font-size: 20px;
    }
}

.navbar-btn {
    color: #fff58a !important;
    font-size: 14px;
}

.fixed-top {
    background: rgba(0, 0, 0, .2);
}

.navbar-nav .nav-link {
    font-size: 14px;
    margin: 0 20px;
    color: #fff !important;
}

.book-now {
    background-color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.header-content {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.header-content h1 {
    font-size: 80px;
}

.header-content .lead {
    font-weight: 400;
}

.navbar {
    z-index: 9 !important;
}

.Commercial {
    position: absolute;
    right: 20px;
    top: 90px;
    background: #fff58a;
    width: 150px;
    font-size: 14px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    z-index: 1;
}

@media screen and (max-width: 992px) {
    .header-content h1 {
        font-size: 40px;
    }
    .left-text {
        margin-top: 100px;
        text-align: center;
    }
    .Commercial {
        top: 80vh;
    }
}


/* 
=================================================================================
                                Navbar Styling Ends 
=================================================================================
*/


/* 
=================================================================================
                                tokenomics Starts
=================================================================================
*/

.heading h1 {
    margin: 0;
    font-weight: 600;
}

.box {
    box-shadow: 1px 16px 30px rgba(0, 0, 0, .1);
    height: 300px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tokenomics-text {
    font-size: 19px;
    margin-top: -10px;
    font-weight: normal;
}

.details p {
    letter-spacing: 4px;
    font-weight: 100;
    font-size: 14px;
}


/* 
=================================================================================
                                tokenomics Ends 
=================================================================================
*/


/* 
=================================================================================
                                Token Info Box Starts
=================================================================================
*/

.token-info-box {
    width: 80%;
    background: rgba(0, 0, 0, .3);
    margin: auto;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fields {
    position: relative;
    width: 40%;
}

.fields h4 {
    color: #fffd3e;
    margin-left: 30px;
}

.fields p {
    width: 100%;
    background: #fff;
    color: #0584c4;
    padding: 10px 30px;
    font-weight: 600;
    font-size: 24px;
}

@media screen and (max-width: 992px) {
    .fields {
        width: 60%;
    }
}

@media screen and (max-width: 576px) {
    .fields {
        width: 80%;
        margin-left: 10px;
    }
    .fields h4 {
        font-size: 18px;
    }
}

@media screen and (max-width: 414px) {
    .fields {
        width: 65%;
    }
    .fields h5 {
        margin-left: 10px;
        font-size: 14px;
    }
    .fields p {
        font-size: 12px;
        padding: 10px 10px;
    }
}


/* 
=================================================================================
                                Token Info Box Ends
=================================================================================
*/


/* 
=================================================================================
                                Road Map Starts
=================================================================================
*/

.wrapper {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
}

.donation-text {
    position: absolute;
    margin: 40px 0 0 40px;
    width: 500px;
    z-index: 3;
}

.donation-text h2 {
    color: #0584c4;
    font-weight: 600;
}

.timeline {
    position: relative;
    width: 90%;
    max-width: 1366px;
    margin: 0 auto;
    margin-top: 80px;
}

.timeline:after {
    position: absolute;
    content: '';
    top: -80px;
    height: 110%;
    width: 3px;
    background-color: #0584c4;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.timeline h3:nth-child(odd) {
    margin-left: 30px;
}

.timeline h3:nth-child(even) {
    margin-right: 30px;
    float: right;
    width: 100%;
}

.timeline h3 {
    color: #0584c4 !important;
    font-size: 45px;
    line-height: 25px;
}

.timeline .date {
    font-size: 20px;
}

.timeline ul {
    list-style: none;
}

.timeline ul li {
    width: 50%;
    position: relative;
    font-size: 12px;
}

.timeline ul li:nth-child(odd) {
    float: right;
    clear: left;
}

.timeline ul li:nth-child(even) {
    float: left;
    clear: right;
}

.timeline .inner-timeline {
    position: relative;
}

.timeline .inner-timeline .timeline-bar {
    width: 100%;
    height: 3px;
    background-color: #0584c4;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 70px;
}

.timeline .inner-timeline .timeline-bar .circle {
    position: relative;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    color: green;
    border: 2px solid #0584c4;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 2;
}

.timeline .inner-timeline .timeline-bar .circle:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    width: 3px;
    height: 50px;
    background-color: #0584c4;
    z-index: 1;
}

.timeline .inner-timeline .timeline-bar .circle:before {
    position: absolute;
    content: '';
    bottom: -59px;
    left: 23%;
    width: 10px;
    height: 10px;
    background-color: #0584c4;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.update-line {
    width: 150px;
    height: 3px;
    background-color: #0584c4;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 70px;
}

.update-line .update-circle {
    position: relative;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    color: green;
    border: 2px solid #0584c4;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 2;
}

.update-line .update-circle:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 55%;
    width: 3px;
    height: 50px;
    background-color: #0584c4;
    z-index: 1;
}

.update-line .update-circle::before {
    position: absolute;
    content: '';
    bottom: -59px;
    left: 30%;
    width: 10px;
    height: 10px;
    background-color: #0584c4;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.update-left-line {
    margin-left: auto;
    width: 150px;
    height: 3px;
    background-color: #0584c4;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
}

.update-left-line .update-left-circle {
    position: relative;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    color: green;
    border: 2px solid #0584c4;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 2;
}

.update-left-line .update-left-circle:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 55%;
    width: 3px;
    height: 50px;
    background-color: #0584c4;
    z-index: 1;
}

.update-left-line .update-left-circle:before {
    position: absolute;
    content: '';
    bottom: -59px;
    left: 30%;
    width: 10px;
    height: 10px;
    background-color: #0584c4;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.com-soon {
    margin-top: 70px;
    margin-right: 100px;
}

.timeline .inner-timeline ul {
    margin-left: 20px;
}

.timeline .inner-timeline ul li div {
    background-image: url("../img/arrow.png");
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 15px;
}

.timeline .inner-timeline .bar:nth-child(even) {
    padding-left: 20px;
}

@media screen and (max-width: 992px) {
    .timeline-content {
        box-shadow: 1px 16px 60px rgba(0, 0, 0, .2);
        margin-bottom: 20px;
        padding: 40px 20px;
    }
    .timeline::after {
        display: none;
    }
    .timeline .inner-timeline .timeline-bar,
    .timeline .inner-timeline .timeline-bar .circle,
    .update-line,
    .update-left-line,
    .update-line .update-circle .update-left-line,
    .update-left-line .update-left-circle {
        display: none;
    }
    .timeline ul li,
    .timeline ul li:nth-child(even),
    .timeline ul li:nth-child(odd) {
        width: 100%;
        float: none;
    }
    .update-left-circle {
        margin: 0;
    }
    .donation-text {
        position: relative;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .timeline .inner-timeline ul li {
        width: 50%;
    }
}

@media screen and (max-width: 576px) {}

@media screen and (max-width: 414px) {}


/* 
=================================================================================
                                Road Map Ends
=================================================================================
*/


/* 
=================================================================================
                                Donation Starts
=================================================================================
*/

.donation {
    position: relative;
    width: 100%;
}

.donation .coming-soon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    font-size: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #0584c4;
    font-weight: bold;
    backdrop-filter: blur(10px);
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .donation .coming-soon {
        font-size: 100px;
    }
}

@media screen and (max-width: 320px) {
    .donation .coming-soon {
        font-size: 70px;
    }
}

.top-bar {
    box-shadow: 17px 7px 10px rgba(0, 0, 0, .1);
    padding: 15px 0;
}

.top-bar .custom-border {
    border-right: 1px solid #b4b4b4;
    height: 40px;
}

.top-bar .custom-border:last-child {
    border-right: none;
}

.top-bar .recent {
    font-size: 20px;
    background: #0584c4;
}

.top-bar p {
    font-size: 14px;
    margin: 0;
}

.graph-img {
    user-select: none;
    pointer-events: none;
}

.donation-details {
    margin-left: 20px;
    font-size: 20px;
}

.donation-details .money {
    color: #0584c4;
    font-size: 30px;
}

.donation-details p {
    font-weight: 100;
    font-size: 16px;
}

@media screen and (max-width: 992px) {
    .top-bar .custom-border {
        border: none;
    }
}

.donation-bottom img {
    margin-right: 100px;
}

.donation-bottom a {
    text-decoration: none;
    font-size: 25px;
}


/* 
=================================================================================
                                Donation Ends
=================================================================================
*/


/* 
=================================================================================
                                Our Doctors Starts
=================================================================================
*/

#our-doctors {
    background: #0584c4;
    margin-top: 20px;
}

.doctor {
    box-shadow: 2px 17px 65px rgba(0, 0, 0, .5);
    background: #fff;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.doctor p {
    margin: 0;
}

.doctor .name {
    font-weight: 600;
    font-size: 22px;
}

.doctor .status {
    color: #0584c4;
}


/* 
=================================================================================
                                Our Doctors Ends
=================================================================================
*/


/* 
=================================================================================
                                Footer Starts
=================================================================================
*/

#footer {
    background: #005c81;
    padding: 5px 0;
}

#footer p {
    margin: 0;
}


/* 
=================================================================================
                                Footer Ends
=================================================================================
*/