* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: gilroy;
}

@font-face {
    font-family: gilroy;
    src: url(./fonts/Gilroy/Gilroy-Regular.ttf);
}

@font-face {
    font-family: alice;
    src: url(./fonts/Alice/Alice-Regular.ttf);
}

@font-face {
    font-family: pinyon;
    src: url(./fonts/Pinyon/PinyonScript-Regular.ttf);
}

h1,h2,h3,h4,h5 {
    font-family: alice;
}

/* Font Sizes */

:root {

    --enormous-font-size: 10vw;

    --huge-font-size: 5vw;

    --big-font-size: 3vw;

    --medium-font-size: 2.5vw;

    --regular-font-size: 2vw;

    --intermediate-font-size: 1.3vw;

    --small-font-size: 0.8vw;

    --tiny-font-size: 0.6vw;

    --general-horizental-padding: 5%;

    --general-vertical-padding: 15%;

}

@media (min-width:1025px) and (max-width:1434px) {
    
    :root {

        --enormous-font-size: 11vw;

        --huge-font-size: 6vw;

        --big-font-size: 4vw;

        --medium-font-size: 3.5vw;

        --regular-font-size: 2.8vw;

        --intermediate-font-size: 2.3vw;

        --small-font-size: 1.3vw;

        --tiny-font-size: 1vw;

        --general-horizental-padding: 5%;

        --general-vertical-padding: 20%;

    }
    
}

@media (min-width:768px) and (max-width:1025px) {
    
    :root {

        --enormous-font-size: 12vw;

        --huge-font-size: 7vw;

        --big-font-size: 5vw;

        --medium-font-size: 4.5vw;

        --regular-font-size: 3.7vw;

        --intermediate-font-size: 2.5vw;

        --small-font-size: 1.8vw;

        --tiny-font-size: 1.4vw;

        --general-horizental-padding: 5%;

        --general-vertical-padding: 25%;

    }
    
}

@media (min-width:500px) and (max-width:768px) {
        
    :root {

        --enormous-font-size: 15vw;

        --huge-font-size: 8vw;

        --big-font-size: 6vw;

        --medium-font-size: 5.5vw;

        --regular-font-size: 4.7vw;

        --intermediate-font-size: 3.5vw;

        --small-font-size: 2.6vw;

        --tiny-font-size: 2.2vw;

        --general-horizental-padding: 5%;

        --general-vertical-padding: 35%;

    }
    
}

@media (max-width:500px) {
    
    :root {

        --enormous-font-size: 17vw;

        --huge-font-size: 9vw;

        --big-font-size: 7vw;

        --medium-font-size: 6.5vw;

        --regular-font-size: 5.7vw;

        --intermediate-font-size: 4.5vw;

        --small-font-size: 3.6vw;

        --tiny-font-size: 2.5vw;

        --general-horizental-padding: 5%;

        --general-vertical-padding: 45%;

    }
    
}

@media (min-width:768px) and (max-width:1025px) {
    p {
        line-height: 5vw;
    }
}

@media (min-width:500px) and (max-width:768px) {
    p {
        line-height: 6vw;
    }
}

@media (max-width:500px) {
    p {
        line-height: 7vw;
    }
}

html {
    overflow-x: hidden;
}




/* /////////////////////////////////////////////////////////////////////    NAV    ///////////////////////////////////////////////////////////////////// */




nav {
    width: 100%;
    height: auto;
    padding: 20px 5%;
    position: fixed;
    top: 0%;
    left: 0%;
    display: flex;
    justify-content: start;
    align-items: stretch;
    align-content: stretch;
    z-index: 100;
    transition: all ease 0.3s;
}

@media (max-width:1025px) {
    nav {
        justify-content: space-between;
        align-items: center;
        align-content: center;
    }
}

nav.scrolled {
    background-color: #003B73;
}

nav .logo {
    width: auto;
    height: auto;
}

nav .logo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    transition: all linear 0.3s;
}

nav ul {
    width: auto;
    display: flex;
    justify-content: start;
    align-items: stretch;
    align-content: stretch;
    gap: 50px;
    list-style: none;
    margin-left: 35%;
}

@media (max-width:1025px) {
    nav ul {
        display: none;
    }
}

nav ul li a {
    height: 100%;
    display: block;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    color: white;
}

nav ul li a::after {
    content: '';
    width: 0%;
    height: 1px;
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: white;
    transition: all ease 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
    left: 0%;
}

nav .mobile-nav-btn {
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    display: none;
}

@media (max-width:1025px) {
    nav .mobile-nav-btn {
        display: block;
    }
}

nav .mobile-nav-btn svg {
    width: 50px;
    height: 50px;
    color: white;
}

nav .mobile-drawer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    left: 100%;
    background-color: #003B73;
    transition: all linear 0.3s;
    display: none;
}

@media (max-width:1025px) {
    nav .mobile-drawer {
        display: block;
    }
}

.mobile-drawer-active {
    left: 0% !important;
}

nav .mobile-drawer .mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    background-color: white;
    padding: 20px 5%;
}

nav .mobile-drawer .mobile-drawer-header img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    transition: all linear 0.3s;
}

nav .mobile-drawer .mobile-drawer-header svg {
    width: 50px;
    height: 50px;
    color: #003B73;
}

nav .mobile-drawer .mobile-drawer-body {
    width: 100%;
    height: auto;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 5%;
}

nav .mobile-drawer .mobile-drawer-body a {
    color: white;
    text-decoration: none;
}



/* /////////////////////////////////////////////////////////////////////    FOOTER    ///////////////////////////////////////////////////////////////////// */




footer {
    width: 100%;
    height: auto;
    background-color: #F7F7F7;
    padding: 5% 10% 0% 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: stretch;
    align-items: stretch;
    gap: 50px;
}

@media (max-width:1025px) {
    footer {
        flex-direction: column;
        gap: 20px;
    }
}

footer .footer-logo-col {
    width: 20%;
}

@media (max-width:1025px) {
    footer .footer-logo-col {
        width: 40%;
    }
}

footer .footer-logo-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer .footer-col-2 {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 50px;
}

@media (max-width:1025px) {
    footer .footer-col-2 {
        width: 100%;
        gap: 20px;
    }
}

footer .footer-col-2 .footer-socials {
    width: 100%;
    height: auto;
    display: flex;
    gap: 50px;
}

@media (max-width:1025px) {
    footer .footer-col-2 .footer-socials {
        gap: 20px;
    }
}

footer .footer-col-2 .footer-socials a {
    width: auto;
    height: auto;
    color: white;
    text-decoration: none;
    transition: all linear 0.3s;
}

footer .footer-col-2 .footer-socials a:hover {
    scale: 1.2;
}

footer .footer-col-2 .footer-socials a svg {
    width: 50px;
    height: 50px;
}

@media (max-width:1025px) {
    footer .footer-col-2 .footer-socials a svg {
        width: 30px;
        height: 30px;
    }
}

footer .footer-col-3 {
    width: 20%;
    display: flex;
    flex-direction: column;
}

@media (max-width:1025px) {
    footer .footer-col-3 {
        width: 100%;
    }
}

footer .footer-col-3 h4 {
    font-size: var(--regular-font-size);
}

footer .footer-col-3 ul {
    list-style: none;
    margin-top: 20px;
}

@media (max-width:1025px) {
    footer .footer-col-3 ul {
        margin-top: 0px;
        margin-bottom: 20px;
    }
}

footer .footer-col-3 ul li {
    margin-top: 20px;
}

footer .footer-col-3 ul li a {
    color: black;
    text-underline-offset: 10px;
}

footer .footer-rights {
    width: 100%;
    height: auto;
    padding: 50px 0% 50px 0%;
    color: black;
    border-top: 1px solid rgba(0, 0, 0, 0.281);
}

@media (max-width:1025px) {
    footer .footer-rights {
        padding: 20px 0% 20px 0%;
    }
}

body {
    width: 100%;
    height: auto;
    overflow-x: hidden;
}




/* /////////////////////////////////////////////////////////////////////    INDEX PAGE    ///////////////////////////////////////////////////////////////////// */




/* /////////////////////////////////////////    SECTION    ///////////////////////////////////////// */




.index-body section {
    width: 100%;
    height: auto;
}

.index-body section .intro {
    width: 100%;
    height: 100vh;
    position: relative;
}

.index-body section .intro::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    background-image: url(./pics/intro.jpg);
    background-size: cover;
    background-position: center;
    filter: brightness(60%);
}

.index-body section .intro .intro-slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 5% 10%;
}

@media (max-width:1025px) {
    .index-body section .intro .intro-slide {
        justify-content: center !important;
    }
}

.index-body section .intro .intro-slide .intro-slide-dets {
    width: 60%;
    height: auto;
}

.index-body section .intro .intro-slide .intro-slide-dets h1 {
    width: 100%;
    text-align: center;
    font-size: var(--big-font-size);
    color: white;
}

.index-body section .intro .intro-slide .intro-slide-dets h2 {
    width: 100%;
    text-align: center;
    font-size: var(--medium-font-size);
    margin-top: 20px;
    color: white;
}

.intro-slide-2 {
    justify-content: start !important;
}

.index-body section .intro .intro-slide .intro-drug-slide-dets {
    width: 50%;
    height: auto;
    margin-top: 20px;
}

@media (max-width:1025px) {
    .index-body section .intro .intro-slide .intro-drug-slide-dets {
        width: 75%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.index-body section .intro .intro-slide .intro-drug-slide-dets h2 {
    font-size: var(--big-font-size);
    color: white;
}

.index-body section .intro .intro-slide .intro-drug-slide-dets p {
    margin-top: 20px;
    color: white;
}

.index-body section .intro .intro-slide .intro-drug-slide-dets a {
    width: 30%;
    height: auto;
    padding: 20px;
    background-color: #003B73;
    color: white;
    display: block;
    margin-top: 20px;
    transition: all linear 0.3s;
    border: 1px solid transparent;
    text-align: center;
}

@media (max-width:1025px) {
    .index-body section .intro .intro-slide .intro-drug-slide-dets a {
        width: 60%;
    }
}

.index-body section .intro .intro-slide .intro-drug-slide-dets a:hover {
    background-color: white;
    color: #003B73;
    border: 1px solid #003B73;
}


/* INTRO SLIDER */


.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.intro-slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.intro-slide.active {
    left: 0;
    opacity: 1;
    pointer-events: auto;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: white;
    border: none;
    padding: 10px 20px;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width:500px) {
    .slider-btn {
        scale: 0.7;
    }
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}


/* END */


/* CONS */

.index-body section .cons-container {
    width: 100%;
    height: auto;
    padding: 5% 10%;
}

.index-body section .cons-container .con {
    width: 100%;
    height: auto;
}

.index-body section .cons-container .con .con-1-drug {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    border: 1px solid rgba(0, 0, 0, 0.24);
    padding: 5%;
}

.index-body section .cons-container .con .con-1-drug:nth-child(2) {
    direction: rtl;
}

.index-body section .cons-container .con .con-1-drug h3 {
    font-size: var(--big-font-size);
}

.index-body section .cons-container .con .con-1-drug p {
    margin-top: 20px;
}

.index-body section .cons-container .con .con-1-drug a {
    width: 10%;
    height: auto;
    padding: 20px;
    background-color: #003B73;
    color: white;
    display: block;
    margin-top: 20px;
    transition: all linear 0.3s;
    border: 1px solid transparent;
    text-align: center;
}

@media (max-width:1025px) {
    .index-body section .cons-container .con .con-1-drug a {
        width: 30%;
    }
}

.index-body section .cons-container .con .con-1-drug a:hover {
    background-color: white;
    color: #003B73;
    border: 1px solid #003B73;
}




/* /////////////////////////////////////////////////////////////////////    ABOUT US PAGE    ///////////////////////////////////////////////////////////////////// */




/* /////////////////////////////////////////    SECTION    ///////////////////////////////////////// */




.about-us-body section {
    width: 100%;
    height: auto;
}

.about-us-body section .intro {
    width: 100%;
    height: 50vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.about-us-body section .intro::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    background-image: url(./pics/about_us_intro.jpg);
    background-size: cover;
    background-position: center;
    filter: brightness(60%);
}

.about-us-body section .intro h1 {
    width: 60%;
    font-size: var(--big-font-size);
    color: white;
    position: relative;
    text-align: center;
}

.about-us-body section .cons-container {
    width: 100%;
    height: auto;
    padding: 5% 0%;
}

.about-us-body section .cons-container .con {
    padding: 0% 10%;
}

.about-us-body section .cons-container .con-1 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

@media (max-width:1025px) {
    .about-us-body section .cons-container .con-1 {
        flex-direction: column;
    }
}

.about-us-body section .cons-container .con-1 img {
    width: 40%;
    object-fit: cover;
    /* box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.178); */
}

@media (min-width:1025px) and (max-width:1300px) {
    .about-us-body section .cons-container .con-1 img {
        width: 50%;
    }
}

@media (max-width:1025px) {
    .about-us-body section .cons-container .con-1 img {
        width: 100%;
    }
}

.about-us-body section .cons-container .con-1 .con-1-dets {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
}

@media (min-width:1025px) and (max-width:1300px) {
    .about-us-body section .cons-container .con-1 .con-1-dets {
        width: 50%;
        padding-left: 5%;
    }
}

@media (max-width:1025px) {
    .about-us-body section .cons-container .con-1 .con-1-dets {
        width: 100%;
    }
}

.about-us-body section .cons-container .con-1 h2 {
    font-size: var(--regular-font-size);
    padding: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.233);
}

.about-us-body section .cons-container .con-1 p {
    color: black;
}

.about-us-body section .cons-container .con-2 {
    width: 100%;
    height: auto;
    padding: 2% 10%;
    background-color: #003B73;
    margin-top: 100px;
    display: flex;
    justify-content: start;
    align-items: center;
    align-content: center;
    gap: 10%;
}

@media (min-width:1025px) and (max-width:1443px) {
    .about-us-body section .cons-container .con-2 {
        gap: 5%;
    }
}

@media (min-width:500px) and (max-width:1025px) {
    .about-us-body section .cons-container .con-2 {
        flex-direction: column;
        gap: 20px;
        padding: 5% 10%;
    }
}

@media (max-width:500px) {
    .about-us-body section .cons-container .con-2 {
        flex-direction: column;
        gap: 20px;
        padding: 10%;
    }
}

.about-us-body section .cons-container .con-2 h2 {
    color: white;
    font-size: var(--huge-font-size);
}

.about-us-body section .cons-container .con-2 .contact-sec {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 50px;
} 

@media (min-width:1025px) and (max-width:1443px) {
    .about-us-body section .cons-container .con-2 .contact-sec {
        width: 50%;
    }
}

@media (min-width:500px) and (max-width:1025px) {
    .about-us-body section .cons-container .con-2 .contact-sec {
        width: 100%;
        flex-direction: row;
    }
}

@media (max-width:500px) {
    .about-us-body section .cons-container .con-2 .contact-sec {
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }
}

.about-us-body section .cons-container .con-2 .contact-sec .contact-way {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    align-content: center;
    gap: 20px;
    padding: 20px;
    background-color: white;
}

.about-us-body section .cons-container .con-2 .contact-sec .contact-way svg {
    width: 30px;
    height: 30px;
    color: #003B73;
    fill: #003B73;
}

.about-us-body section .cons-container .con-2 .contact-sec .contact-way span {
    color: #003B73;
}

.about-us-body section .cons-container .con-3 {
    width: 100%;
    height: auto;
    margin-top: 50px;
}

.about-us-body section .cons-container .con-3 h2 {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: var(--regular-font-size);
    padding: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.233);
}

.about-us-body section .cons-container .con-3 ul {
    margin-left: 5%;
    margin-top: 50px;
}

.about-us-body section .cons-container .con-3 ul:not(:first-of-type) {
    margin-top: 0px !important;
}

.about-us-body section .cons-container .con-3 ul li {
    margin-top: 20px;
}

.about-us-body section .cons-container .con-3 ul li span {
    display: block;
    margin-bottom: 20px;
    font-size: var(--intermediate-font-size);
}

.about-us-body section .cons-container .con-4 {
    width: 100%;
    height: auto;
    margin-top: 50px;
}

.about-us-body section .cons-container .con-4 h2 {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: var(--regular-font-size);
    padding: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.233);
}

.about-us-body section .cons-container .con-4 ul {
    margin-left: 5%;
    margin-top: 50px;
}

.about-us-body section .cons-container .con-4 ul:not(:first-of-type) {
    margin-top: 0px !important;
}

.about-us-body section .cons-container .con-4 ul li {
    margin-top: 20px;
}

.about-us-body section .cons-container .con-4 ul li span {
    display: block;
    margin-bottom: 20px;
    font-size: var(--intermediate-font-size);
}

.about-us-body section .cons-container .con-5 {
    width: 100%;
    height: auto;
    background-color: rebeccapurple;
    margin-top: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 5% 10%;
}

@media (min-width:500px) and (max-width:1025px) {
    .about-us-body section .cons-container .con-5 {
        padding: 5% 10%;
    }
}

@media (max-width:500px) {
    .about-us-body section .cons-container .con-5 {
        padding: 10%;
    }
}

.about-us-body section .cons-container .con-5::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    background-image: url(./pics/our_vision.jpg);
    background-size: cover;
    background-position: center;
    filter: brightness(40%);
}

.about-us-body section .cons-container .con-5 h2 {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: var(--regular-font-size);
    position: relative;
    color: white;
}

.about-us-body section .cons-container .con-5 p {
    height: auto;
    color: white;
    position: relative;
    text-align: center;
}

.about-us-body section .cons-container .con-6 {
    width: 100%;
    height: auto;
    margin-top: 50px;
}

.about-us-body section .cons-container .con-6 h2 {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: var(--regular-font-size);
    padding: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.233);
}

.about-us-body section .cons-container .con-6 ul {
    margin-left: 5%;
    margin-top: 50px;
}

.about-us-body section .cons-container .con-6 ul:not(:first-of-type) {
    margin-top: 0px !important;
}

.about-us-body section .cons-container .con-6 ul li {
    margin-top: 20px;
}

.about-us-body section .cons-container .con-6 ul li span {
    display: block;
    margin-bottom: 20px;
    font-size: var(--intermediate-font-size);
}




/* /////////////////////////////////////////////////////////////////////    RESULTS PAGE    ///////////////////////////////////////////////////////////////////// */




/* /////////////////////////////////////////    SECTION    ///////////////////////////////////////// */




.results-body section {
    width: 100%;
    height: auto;
}

.results-body section .intro {
    width: 100%;
    height: 50vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.results-body section .intro::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    background-image: url(./pics/result_intro.jpg);
    background-size: cover;
    background-position: center;
    filter: brightness(60%);
}

.results-body section .intro h1 {
    width: 60%;
    font-size: var(--big-font-size);
    color: white;
    position: relative;
    text-align: center;
}

.results-body section .cons-container {
    width: 100%;
    height: auto;
    padding: 5% 10%;
}

@media (max-width:1025px) {
    .results-body section .cons-container {
        padding: 5%;
    }
}

.results-body section .cons-container h2 {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: var(--regular-font-size);
    margin-bottom: 50px;
}

.chart-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
}

#drugSalesChart {
    width: 100% !important;
    height: auto !important;
}

@media (min-width:768px) and (max-width:1025px) {
    #drugSalesChart {
        height: 60vh !important;
    }
}

@media (min-width:500px) and (max-width:768px) {
    #drugSalesChart {
        height: 60vh !important;
    }
}

@media (max-width:500px) {
    #drugSalesChart {
        height: 60vh !important;
    }
}




































