@charset "UTF-8";

/************************************ COLORS */

:root {
    --dark_gray: #202332;
    --light_gray: #ebebeb;
    --light_gray: #F5F5F5;
    --dark_blue: #001446;
    --dark_blue_2: #000E33;
    --dark_blue_3: #000615;
    --blue: #3487ED;
    --yellow: #F7F332;
    --light_orange: #fa900f;
    --orange: #F15D22;
    --dark_orange: #cd4400;
    --black: #000000;
    --white: #ffffff;
}

/************************************ FONTS */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/************************************ GENERAL STYLES */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    /*height: 100%;*/
    overflow-x: clip;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    padding: 0px;
}

.para-spacing {
    margin-top: 15px;
}

a {
    text-decoration: none;
}

a:hover {
    color: initial !important;
    background-color: transparent !important;
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

h1, h2, h3, h4, h5, h6, p, ul, li {
    font-family: "Nunito Sans", sans-serif;
}

h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: "Nunito", serif;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 22px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
}

p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}

label {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 3px;
}

p:last-of-type {
    margin-bottom: 0;
}

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}

.text-link {
    text-decoration: underline;
    color: inherit;
}

.hover-effects {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

.section-padding {
    position: relative;
    padding: 100px;
}

.section-padding-more-spacing {
    padding: 120px 100px;
}

.section-padding-less-spacing {
    padding: 70px;
}

.blue-gradient-backer, .orange-gradient-backer {
    background-color: #3487ED;
    background-image: url("../images/blue-gradient-backer.jpg");
    background-size: cover;
    color: var(--white);
}

.orange-gradient-backer {
    background-color: var(--orange);
    background-image: url("../images/orange-gradient-backer.jpg");
}

#footer-cta-orbitalai {
    background-color: var(--white) !important;
    background-image: initial !important;
    color: #212529 !important;
}

#footer-cta-orbitalai h2 {
    color: var(--orange) !important;
}

.orbitalai-page #footer-cta-orbitalai, .orbitalrx-page #footer-cta {
    display: block;
}

.orbitalrx-page #footer-cta-orbitalai, .orbitalai-page #footer-cta {
    display: none;
}

.dark-blue-backer {
    background-color: var(--dark_blue);
}

.orange-backer {
    background-color: var(--orange);
}

.blue-header {
    color: var(--blue);
}

.orange-header {
    color: var(--orange);
}

.section-tab {
    position: absolute;
    bottom: 0;
    height: 40px;
    width: auto;
    left: 24%;
}

.orbitalrx-button {
    width: fit-content;
    background-color: var(--dark_blue);
    padding: 10px 25px;
    border-radius: 5px;
}

#news-panel .orbitalrx-button {
    margin-top: 45px;
    border: 1px solid #fff;
    background-color: initial;
}

#news-panel .orbitalrx-button:hover {
    background-color: var(--orange);
    border: 1px solid var(--orange);
}

.orbitalrx-button:hover {
    background-color: var(--dark_blue_3);
}

.orbitalai-page .orbitalrx-button {
    background-color: var(--orange);
    color: var(--white) !important;
}

.orbitalai-page .orbitalrx-button:hover {
    background-color: var(--dark_orange);
}

.orbital-section-container .orbitalrx-button {
    color: var(--white) !important;
    margin-top: 35px;
}

.button-arrow {
    width: 55px;
    margin-left: 12px;
}

.orbitalrx-button:hover .button-arrow {
    animation: shiftArrow 1.5s ease infinite;
}

@keyframes shiftArrow {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

.linked-button {
    margin-top: 25px;
}

.linked-button a, .linked-button a:hover {
    color: inherit !important;
}

.circle-image {
    height: 500px;
    width: 500px;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-image img {
    height: 100%;
    width: auto;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.circle-image-square-borders img {
    border-radius: 10px;
}

.circle-image-backer {
    height: 180px;
    width: 180px;
    background-color: var(--yellow);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}

.orbitalai-page .circle-image-backer {
    background-color: var(--light_orange);
}

.circle-image-backer-top-left {
    top: -20px;
    left: -20px;
}

.circle-image-backer-top-right {
    top: -20px;
    right: -20px;
}

.circle-image-backer-bottom-right {
    bottom: -20px;
    right: -20px;
}

.circle-image-backer-bottom-left {
    bottom: -20px;
    left: -20px;
}

.parallax {
    transition: transform 0.2s cubic-bezier(0, 0, 0.2, 1);
    will-change: transform;
}

.line-break {
    display: block;
}

/************************************ NAVIGATION */

.banner-wrapper {
    width: 100%;
    position: absolute;
    top: 40px;
    z-index: 5;
}

.banner-backer {
    width: 100%;
    height: 100px;
    background-color: #00144685;
    position: relative;
}

.absolute-wrapper {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

#main-nav {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#main-nav-logo, #main-nav-logo-orbitalai {
    width: 12%;
}

#main-nav-logo img, #main-nav-logo-orbitalai img {
    width: 100%;
}

#main-nav-links {
    margin-bottom: 0;
}

#main-nav-links li {
    display: inline-block;
    font-size: 16px;
    margin-left: 15px;
    color: #ffffff;
    font-family: "Nunito", serif;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

#main-nav-links li:hover {
    color: var(--yellow);
}

#get-started-button {
    background-color: var(--yellow);
    color: var(--dark_blue) !important;
    padding: 8px 19px;
    border-radius: 5px;
    font-weight: 700;
    margin-left: 25px !important;
}

#get-started-button:hover {
    background-color: var(--orange);
    color: var(--dark_blue) !important;
}

.orbitalrx-page #main-nav-logo {
    display: block;
}

.orbitalrx-page #main-nav-logo-orbitalai {
    display: none;
}

.orbitalai-page #main-nav-logo {
    display: none;
}

.orbitalai-page #main-nav-logo-orbitalai {
    display: block;
}

/************************************ HEADER BANNER */

.header-banner {
    display: flex;
    align-items: center;
    background: #3487ED;
    background: radial-gradient(circle, rgba(52, 135, 237, 1) 0%, rgba(0, 20, 70, 1) 100%);
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
    position: relative;
    z-index: 3;
    height: 450px;
    margin-top: 40px;
}

.orbitalai-page .header-banner {
    background: var(--orange);
    background: radial-gradient(circle, #fac824 0%, #fb5b00 100%);
}

#homepage-banner {
    height: 85vh;
}

@keyframes gradient {
    0% {
        background-size: 400% 400%;
    }
    50% {
        background-size: 200% 200%;
    }
    100% {
        background-size: 400% 400%;
    }
}

#homepage-banner-content, .header-banner-content {
    padding-top: 75px;
    position: relative;
    z-index: 3;
}

#homepage-banner-content h1, .header-banner-content h1 {
    color: #ffffff;
    font-size: 72px;
    font-weight: 800;
}

.orbitalai-page #homepage-banner-content h1, .orbitalai-page .header-banner-content h1 {
    font-size: 55px;
}

.header-banner-content h2 {
    color: var(--yellow);
    margin-bottom: 10px;
}

#homepage-banner-content span {
    display: block;
}

.orbitalai-page #homepage-banner-content .italic {
    display: inline;
}

#homepage-banner-content p {
    font-size: 26px;
    line-height: 40px;
    color: #fff;
    width: 46%;
    margin-top: 50px;
    margin-bottom: 0;
}

#header-banner-scroll-backer {
    height: inherit;
    width: 100%;
    position: absolute;
    top: 0;
    background-image: url(../images/backer-3.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 58%;
    background-attachment: fixed;
    opacity: 0.05;
}

.orbitalai-page #header-banner-scroll-backer {
    opacity: .1;
}

/************************************ HOME PAGE - NEWS PANEL */

#news-panel {
    position: absolute;
    z-index: 3;
    right: 0;
    width: 47%;
    background-color: #001446a1;
    padding: 100px;
    top: 57%;
    transform: translateY(-60%);
    color: var(--white);
    border-radius: 10px 0 0 10px;
}

#news-panel:hover {
    background-color: #001446bf;
}

.orbitalai-page #news-panel {
    top: 58%;
    background-color: #f15d2259;
}

.orbitalai-page #news-panel:hover {
    background-color: #f15d2259;
}

#news-panel h3 {
    font-family: "Nunito", sans-serif;
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 32px;
}

.orbitalai-page #news-panel h3 {
    margin-top: 25px;
    margin-bottom: 0;
}

#news-panel-orange-text {
    color: #ff733c;
}

.orbitalai-page #news-panel p:last-of-type {
    color: var(--white);
}

/************************************ FOOTER */

#footer {
    background-color: var(--dark_blue_2);
    padding: 75px;
    color: var(--white);
    position: relative;
    z-index: 3;
}

.orbitalai-page #footer {
    background-color: var(--dark_orange);
}

#footer h6 {
    font-weight: 700;
}

.footer-nav ul {
    padding-left: 0;
    margin-left: 0;
}

.footer-nav ul a {
    color: inherit !important;
}

.footer-nav ul li {
    list-style-type: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.footer-nav ul li:hover {
    color: var(--yellow);
}

#footer p {
    font-size: 10px;
}

#footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer-logo, #footer-logo-orbitalai {
    width: 30%;
    margin-left: auto;
    margin-right: 0;
    display: block;
}

.orbitalrx-page #footer-logo-orbitalai {
    display: none;
}

.orbitalrx-page #footer-logo {
    display: block;
}

.orbitalai-page #footer-logo-orbitalai {
    display: block;
}

.orbitalai-page #footer-logo {
    display: none;
}

#social-media-section img {
    width: 10%;
    margin-right: 5px;
}

#social-media-section img:hover {
    transform: scale(1.1);
}

#footer-cta .orbitalrx-button, #footer-cta-orbitalai .orbitalrx-button {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 0;
}

#footer-cta-content {
    width: 80%;
}

.orbitalai-page #form-header .blue-header {
    color: var(--orange) !important;
}

.orbitalai-page .btn-close p {
    background-color: var(--orange);
}

.orbitalrx-page .orbitalai-footer {
    display: none;
}

.orbitalai-page .orbitalrx-footer {
    display: none;
}

#orbitalai-footer-blurb {
    font-size: 16px !important;
    margin-bottom: 0px;
}

#orbitalai-footer-blurb .text-link:hover {
    color: var(--light_orange) !important;
}

/*.orbitalai-page #submit-button input {*/
/*    background-color: var(--orange);*/
/*    color: var(--white) !important;*/
/*}*/

/*.orbitalai-page #submit-button input:hover {*/
/*    background-color: var(--dark_orange);*/
/*    color: var(--white) !important;*/
/*}*/

/************************************ HOME PAGE */

#homepage-shortage-signal-container {
    position: relative;
}

#homepage-shortage-manager-container {
    border-right: 1px solid var(--white);
}

#orbitalai-homepage #homepage-shortage-manager-container {
    border-right: 1px solid var(--orange);
}

#homepage-shortage-manager-content {
    margin-right: 10%;
}

#homepage-signal-content {
    margin-left: 10%;
    text-align: left;
}

#footer-cta .row, .flex-row, #footer-cta-orbitalai .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

#trusted-across-systems-container {
    background-image: linear-gradient(to bottom, var(--dark_blue) 0%, var(--dark_blue) 90%, var(--blue) 90%, var(--blue) 100%);
    padding-bottom: 0;
}

#trusted-across-systems-container h2 {
    text-align: center;
    color: var(--white);
}

.card-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px !important;
}

.card {
    width: 32%;
    text-align: center;
    padding: 50px;
    height: 400px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card-stat-number {
    color: var(--blue);
    font-weight: 800;
    font-size: 55px;
    margin-bottom: 25px;
    margin-top: 0;
}

.card-stat-number:first-of-type {
    margin-top: 20px;
}

.card-tagline {
    color: var(--dark_blue);
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 0;
    margin-top: 0;
}

.card-spacer-bottom {
    margin-bottom: 30px;
}

.card-divider {
    width: 50px;
    height: 5px;
    background-color: var(--blue);
    margin-right: auto;
    margin-left: auto;
    display: block;
    margin-top: 35px;
    margin-bottom: 50px;
}

.full-row-quote {
    position: relative;
    border: 1px solid #fff;
    padding: 55px 50px 50px 120px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.full-row-quote:last-of-type {
    margin-bottom: 0 !important;
}

.full-row-quote h2 {
    font-family: "Nunito Sans", sans-serif;
    margin-bottom: 10px;
}

.quote-punctuation-block {
    height: 75px;
    width: 75px;
    background-color: var(--dark_blue);
    transform: rotate(45deg);
    border-radius: 5px;
    position: absolute;
    left: -38px;
    top: 50%;
    transform: translateY(-50%);
    transform: translateY(-50%) rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-punctuation-block p {
    transform: rotate(315deg);
    font-size: 80px !important;
    margin-top: 29px;
    margin-right: -27px;
    font-family: "Nunito", serif;
    font-weight: 800;
    color: var(--yellow) !important;
}

#focused-by-design-content {
    color: var(--white);
}

.side-panel {
    background-color: var(--white);
    padding: 50px;
    width: 90%;
    border-radius: 5px;
}

.side-panel p, .side-panel ul li {
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
    color: var(--dark_blue);
}

.side-panel ul {
    margin-left: 0;
    padding-left: 0;
}

.side-panel ul li {
    list-style-type: none;
    color: var(--blue);
    font-weight: 800;
}

.side-panel-section p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

.side-panel h4 {
    color: var(--dark_blue);
}

.side-panel-section h4 {
    color: var(--dark_blue);
}

#side-panel-blue-blurb {
    color: var(--blue);
    font-weight: 800;
}

#awareness-to-execution-container .side-panel-section h4 {
    margin-bottom: 30px;
}

#awareness-subtitle-bottom {
    margin-bottom: 0 !important;
    margin-top: 30px;
}

.side-panel-divider {
    margin-top: 30px;
    margin-bottom: 30px;
    height: 1px;
    background-color: var(--dark_blue);
    width: 100%;
}

#focused-by-design-container ul {
    margin-bottom: 25px;
}

/************************************ SCROLLING IMAGES */

#solutions-intro-section .row.flex-row {
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: initial;
}

#solutions-intro-content-container {
    position: sticky;
    top: 150px;
    align-self: flex-start;
    padding-top: 0;
}

#solutions-intro-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.orbitalai-page #solutions-intro-content-container {
    min-height: 400px;
}

.scrolling-images-container {
    position: relative;
}

.scrolling-images-container .circle-image-backer {
    z-index: 0;
}

.scrolling-images-container .circle-image-backer-top-right {
    top: -60px;
    right: -60px;
}

.scrolling-images-container .circle-image-backer-bottom-left {
    bottom: -60px;
    left: -60px;
}

.scroll-image {
    position: sticky;
    top: 150px;
    margin-bottom: 60vh;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.scroll-image:last-child {
    margin-bottom: 10vh;
}

.scroll-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/************************************ HORIZONTAL SCROLLING CARDS */

#horizontal-scroll {
    padding: 100px 0;
    overflow: hidden;
}

#horizontal-scroll h2 {
    margin-bottom: 95px;
}

.horizontal-scroll-wrapper {
    /*overflow: hidden;*/
    height: 525px;
}

.horizontal {
    display: flex;
    height: 100%;
    margin-left: 12%;
}

.horizontal > div {
    display: flex;
    flex-shrink: 0;
    padding: 0 5px;
}

.horizontal > div:first-child {
    padding: 0 5px 0 15px;
}

.horizontal > div:last-child {
    padding: 0 15px 0 5px;
}

.horizontal-card-container {
    width: 585px;
    padding: 0 !important;
    background: var(--blue);
    border-radius: 10px;
    color: #f6f2e8;
    border: 0;
    text-align: left;
    align-items: stretch;
    margin-right: 3%;
}

.horizontal .card {
    background: var(--light_gray);
    border-radius: 10px;
    border: 0;
    height: inherit;
    width: 100%;
    text-align: left !important;
    position: relative;
}

.horizontal .card h3 {
    text-align: left !important;
    margin-left: 0;
    margin-right: auto;
    font-weight: 700;
}

.horizontal-card-icon {
    height: 120px;
    width: 120px;
    position: absolute;
    top: -10%;
    left: 0;
    background-color: #ffffff;
    padding: 28px;
    border-radius: 50%;
    border: 2px solid var(--light_gray);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.horizontal-card-icon img {
    width: 100%;
}

#what-you-get-icon-1 {
    margin-left: 2px;
    margin-top: 2px;
}

/************************************ SOLUTIONS PAGE CONTINUED */

#how-it-works-section {
    color: var(--white);
}

.graphic-line {
    height: 2px;
    background-color: #ffffff;
}

#start-graphic-line, #graphic-line-2 {
    height: 150px;
    width: 2px;
}

#how-it-works-section-1, #how-it-works-section-3 {
    border-right: 2px solid var(--white);
    border-top: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    text-align: left;
    padding-left: 150px;
}

#how-it-works-section-2, #how-it-works-section-4 {
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    padding-left: 150px;
}

#how-it-works-section-1 {
    border-top: initial !important;
}

#how-it-works-section-4 {
    border-bottom: initial !important;
}

#graphic-line-with-title {
    position: relative;
}

#graphic-line-with-title h2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 70px;
    background-color: var(--dark_blue);
    padding: 30px;
}

.graphic-line-section {
    position: relative;
    padding: 100px;
}

.graphic-line-section h3 span {
    color: var(--yellow);
    font-weight: 700;
}

.graphic-line-step-image {
    position: absolute;
    top: 50%;
    width: 11%;
    top: 50%;
    transform: translateY(-50%);
    right: -5.6%;
}

.graphic-line-step-image-left {
    right: initial;
    left: -5.6%;
}

#solutions-video-section h2 {
    text-align: center;
}

#solutions-video-section video {
    width: 100%;
    border-radius: 10px;
}

#solutions-video-section video:hover {
    transform: scale(1.02);
}

#why-pharmacists-choose-orbitalrx-container h2, #who-we-are-container h2 {
    margin-bottom: 30px;
}

#awareness-to-execution-container h2 {
    margin-bottom: 10px;
}

#why-pharmacists-choose-orbitalrx-container, #why-it-works-container, #results-speak-container, #who-we-are-container, #awareness-to-execution-container {
    background-image: url(../images/why-pharmacists-choose-orbitalrx.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    background-attachment: fixed;
}

#why-it-works-container {
    background-image: url(../images/white-backer.jpg);
}

#awareness-to-execution-container {
    background-image: url("../images/from-awareness-to-execution.jpg");
}

.ghosted-orbital-molecule {
    opacity: .5;
    position: absolute;
    bottom: -33%;
    right: -33%;
    width: 68%;
}

#ghosted-orbital-molecule-command-center {
    bottom: initial;
    right: initial;
    left: -20%;
    position: fixed;
    top: -10%;
    opacity: .3;
}

.orbitalai-page #ghosted-orbital-molecule-command-center {
    opacity: .4;
}

/************************************ FEATURES PAGE */

#features-banner h4 {
    color: var(--white);
}

#detect-risks-container {
    position: relative;
    z-index: 3;
}

#signal-container .side-panel {
    background-color: var(--light_gray);
}

#pulse-container .side-panel {
    background-color: var(--white);
}

#signal-container .side-panel h2:last-of-type, #pulse-container .side-panel h2:last-of-type {
    margin-bottom: 0;
    margin-top: 25px;
}

#pulse-content {
    color: var(--white);
}

#why-it-matters-container {
    text-align: center;
}

.pulse-signal-image {
    width: 80%;
    margin-bottom: 25px;
    /* box-shadow: 2px 8px 20px #0000005e; */
    border-radius: 8px;
}

#why-it-matters-left {
    border-right: 2px solid var(--white);
    position: relative;
}

#plus-icon {
    position: absolute;
    right: -7.2%;
    top: 50%;
    transform: translateY(-50%);
    width: 14%;
}

/************************************ IMPLEMENTATION PAGE */

#why-it-matters-content, #why-pharmacy-content {
    margin-top: 30px;
    margin-bottom: 60px;
}

#orbitalrx-homepage #why-it-matters-content, .orbitalai-page #why-it-matters-content  {
    text-align: left;
}

.horizontal-scroll-implementation h2 {
    margin-bottom: 25px !important;
}

.horizontal-scroll-implementation .col-md-12 p {
    margin-bottom: 90px !important;
}

.horizontal-scroll-implementation p {
    margin-left: 0;
    margin-right: auto;
}

.horizontal-card-content {
    margin-left: 0;
    margin-right: auto;
    /*min-height: 135px;*/
}

#implementation-page .pin-spacer {
    background-color: #3487ED;
    background-image: url("../images/blue-gradient-backer.jpg");
    background-size: cover;
}

#implementation-page #horizontal-scroll .col-md-12 {
    color: var(--white);
}

#why-it-works-container {
    background-color: var(--light_gray);
}

#why-it-works-container .side-panel {
    background-color: var(--blue);
    position: relative;
    min-height: 600px;
    margin-top: -100px;
    padding-right: 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#why-it-works-container .side-panel h2 {
    color: var(--white);
    margin-top: 50px;
    font-size: 32px;
    line-height: 48px;
}

#why-it-works-container .side-panel h2 span {
    color: var(--dark_blue);
}

#why-it-works-container .side-panel .ghosted-orbital-molecule {
    bottom: -4%;
    right: -16%;
    width: 68%;
}

#why-it-works-container .graphic-line {
    background-color: var(--dark_blue);
}

#why-it-works-container #how-it-works-section-1, #why-it-works-container #how-it-works-section-3 {
    border-right: 2px solid var(--dark_blue);
    border-top: 2px solid var(--dark_blue);
    border-bottom: 2px solid var(--dark_blue);
    text-align: right;
    padding-right: 150px;
}

#why-it-works-container #how-it-works-section-2, #why-it-works-container #how-it-works-section-4 {
    border-left: 2px solid var(--dark_blue);
    border-bottom: 2px solid var(--dark_blue);
    padding-left: 150px;
}

#why-it-works-container #how-it-works-section-3 {
    border-top: initial !important;
    border-bottom: initial !important;
}

#why-it-works-container #how-it-works-section-1, #why-it-works-container #how-it-works-section-2 {
    border-bottom: initial !important;
}

#why-it-works-container #how-it-works-section-1, #why-it-works-container #how-it-works-section-3 {
    padding-left: 50px !important;
    text-align: left;
}

#why-it-works-container #how-it-works-section-2 {
    padding-right: 50px !important;
    text-align: right;
}

#why-it-works-graphic-line {
    padding-right: 10%;
    margin-top: -100px;
}

#implementation-page #footer-cta {
    margin-top: -100px;
}

#implementation-page #graphic-line-with-title h3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 50px;
    background-color: var(--blue);
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    color: var(--white);
}

#implementation-page .graphic-line-section {
    padding: 100px !important;
}

.graphic-line-with-title-right h3 {
    right: 50px;
}

#implementation-page .quote-punctuation-block {
    top: 0;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
}

#side-panel-quote-company {
    font-size: 20px;
    line-height: 32px;
    font-weight: 700;
    color: var(--white);
    margin-top: 120px;
}

/************************************ RESULTS & PROOF PAGE */

#results-speak-container {
    background-image: url(../images/results-proof-backer.jpg);
    background-position: right;
    position: relative;
}

#results-speak-container .ghosted-orbital-molecule {
    right: initial;
    left: -33%;
    bottom: -52%;
}

#customer-feedback-content h2 {
    text-align: center;
    margin-bottom: 90px;
}

#customer-feedback-container .card {
    color: var(--dark_blue);
    border: 1px solid var(--dark_blue);
}

#customer-feedback-container .quote-punctuation-block {
    top: 0;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
}


/************************************ ABOUT US PAGE */

#who-we-are-container p {
    font-family: "Nunito", serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

#who-we-are-container .bold {
    font-weight: 700;
}


/******************************************* MODALS */

.modal-content h3 {
    font-weight: 700;
}

.modal-disclaimer {
    border-top: 1px solid #DFDFDF;
    padding-top: 15px;
}

.modal-section:last-of-type {
    margin-top: 25px;
    margin-bottom: 25px;
}

.modal-section p:first-of-type {
    margin-top: 15px;
}


.center {
    text-align: center;
}

.leaderboard-modal {
    width: 100%;
    position: fixed;
    height: 100%;
    overflow-y: scroll;
    z-index: 10;
    background-color: rgba(0,0,0,.75);
    display: flex;
    align-items: center;
}

.modalForm {
    width: 100%;
    position: fixed;
    height: 100%;
    overflow-y: scroll;
    z-index: 10;
    background-color: rgba(0,0,0,.75);
    display: flex;
    align-items: center;
}

.modal-exit {
    width: 20px;
    margin-right: 15px;
    margin-left: auto;
    display: block;
    margin-top: 11px;
}

.modal-dialog {
    width: 60% !important;
    max-width: 850px !important;
    margin: 30px auto !important;
}

.modal-content {
    background-clip: padding-box !important;
    border: 1px solid #999 !important;
    border: 1px solid rgba(0, 0, 0, .2) !important;
    border-radius: 6px !important;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5) !important;
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5) !important;
    outline: 0 !important;
}

.modal-header {
    border-bottom: initial !important;
}

.modal-body {
    padding: 35px 50px 50px 50px !important;
}

.modal-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
    font-family: 'tt-hoves-bold', sans-serif;
    margin-bottom: 0;
    margin-top: -40px;
}


/******************************************* FORMS */

.orbitalrx-form h2 {
    text-align: left;
    margin-bottom: 10px;
}

#collaborator-modal h2 {
    margin-bottom: 25px;
}

.form-description {
    margin-bottom: 25px !important;
}

.orbitalrx-form h3 {
    color: var(--dark_blue);
    border-bottom: 1px solid var(--dark_blue);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.half-field {
    width: 49%;
    display: inline-block;
}

.full-field {
    width: 100%;
}

.form-field label {
    display: block;
    font-weight: 700;
}

#general-form-checkboxes label, #report-abuse-radio-buttons label {
    font-weight: 400;
}

#general-form-checkboxes p {
    font-weight: 700;
}

.form-field input {
    width: 100%;
}

.btn-close {
    background-image: none !important;
    opacity: 1;
}

.btn-close:hover {
    background-image: none !important;
    opacity: 1;
}

.btn-close p {
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    position: absolute;
    right: -18px;
    top: -18px;
    padding-top: 2px;
}

#contact-info-section, #company-info-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.form-section {
    margin-top: 25px;
}

.form-section:first-of-type {
    margin-top: 0;
}

.form-section-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.orbitalrx-form input {
    padding-left: 10px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #F2F2F2;
    font-size: 14px;
    background-color: #F5F5F5;
    border: 1px solid #00000066;
}

#customer-text-block {
    margin-top: 15px;
}

#customer-text-block textarea {
    font-size: 14px;
    width: 100%;
    height: 150px;
    padding: 10px;
    border: 1px solid #00000066;
    background-color: #F5F5F5;
}

#submit-button input {
    background-color: var(--dark_blue);
    font-size: 16px;
    line-height: 16px;
    padding: 8px 15px 10px 15px;
    border-radius: 5px;
    margin-top: 30px;
    font-weight: 500;
    color: var(--white) !important;
}

#submit-button input:hover {
    background-color: var(--dark_blue_3);
}

/******************************************* POLICY PAGES */

.policy-section {
    margin-bottom: 45px;
    border-bottom: 1px solid #ffffff6e;
    padding-bottom: 50px;
}

.policy-section:last-of-type {
    margin-bottom: 0;
    border-bottom: initial;
    padding-bottom: 0;
}

.policy-section ul {
    margin-left: 30px;
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 0;
}

.numbered-list li {
    list-style-type: decimal !important;
    margin-bottom: 10px;
}

.numbered-list li:last-of-type {
    margin-bottom: 0;
}

#report-abuse-radio-buttons, #general-form-checkboxes {
    margin-top: 20px;
}

#general-form-checkboxes {
    margin-bottom: 20px;
    margin-top: 24px;
}

.radio-button input, .radio-button label {
    height: auto !important;
    display: inline !important;
    width: fit-content;
}

#general-form-checkboxes label {
    margin-bottom: 0;
    margin-top: 3px;
    margin-left: 5px;
}

.form-instructions {
    font-size: 16px;
}

/******************************************* MOBILE MENU */

.mobile-menu {
    text-decoration: none;
    color: #1C1C1C;
    margin-left: 30px;
    font-family: 'din';
    font-size: 24px;
    display: none;
}

.mobile-dropdown {
    display: none;
}

/* Hamburger Icon */

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
    width: 40px;
    height: 25px;
    position: relative;
    margin: auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-top: -5px;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
    display: block;
    position: absolute;
    height: 6px;
    width: 100%;
    background: var(--white);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
    top: 0px;
}

#nav-icon1 span:nth-child(2) {
    top: 15px;
}

#nav-icon1 span:nth-child(3) {
    top: 30px;
}

#nav-icon1.open span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#nav-icon1.open span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

#nav-icon4 span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
}

#nav-icon4.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 25px;
    left: 8px;
}

/******************************************* ORBITAL AI */

#orbitalai-cta, #orbitalrx-cta {
    height: 40px;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    background-color: var(--orange);
    color: #fff;
    z-index: 20;
}

#orbitalai-cta p, #orbitalrx-cta p {
    font-size: 16px;
}

#orbitalai-cta a, #orbitalrx-cta a {
    color: inherit;
}

#orbitalai-cta a:hover, #orbitalrx-cta a:hover {
    color: var(--white) !important;
    text-decoration: underline;
}

.orbitalai-page .orbitalrx-link, .orbitalai-page #orbitalai-cta {
    display: none !important;
}

.orbitalai-page #orbitalai-cta {
    display: none;
}

.orbitalrx-page #orbitalrx-cta {
    display: none;
}

.orbitalai-page #orbitalrx-cta {
    display: flex;
    background-color: var(--dark_blue);
}

/*.orbitalai-page .banner-wrapper, .orbitalai-page .header-banner {*/
/*    top: 0;*/
/*    margin-top: 0;*/
/*}*/

.orbitalai-page #get-started-button {
    background-color: var(--orange);
    color: var(--white) !important;
}

.orbitalai-page #get-started-button:hover {
    background-color: var(--dark_orange);
}

.orbitalai-page .banner-backer {
    background-color: #ffffff;
}

#orchestration-container {
    padding: 30px 0 10px 0;
}

#responsible-by-design-container .circle-image {
    margin-top: 75px;
}

#what-this-changes-header {
    margin-top: 55px;
}

#why-pharmacy-container .side-panel {
    text-align: center;
}

#why-pharmacy-container .side-panel p {
    margin-bottom: 0;
    border: 1px solid var(--orange);
    text-align: center;
    padding: 20px;
}

.side-panel-arrow {
    width: 3%;
    margin: 10px auto;
    display: block;
}

#orbitalai-pharmagentic-first-circle {
    top: -600px;
}

/******************************************* MEDIA QUERIES */

@media screen and (max-width: 2400px) {
    .section-tab {
        left: 21%;
    }
}

@media screen and (max-width: 2200px) {
    .section-tab {
        left: 20.5%;
    }
}

@media screen and (max-width: 2100px) {
    .section-tab {
        left: 18.5%;
    }
}

@media screen and (max-width: 1900px) {
    .section-tab {
        left: 14.5%;
    }
    #news-panel h3 {
        font-size: 20px;
    }
    .orbitalai-page #news-panel, #news-panel {
        top: 63%;
    }
}

@media screen and (max-width: 1700px) {
    .section-tab {
        left: 12%;
    }
    #news-panel {
        width: 47%;
    }
}

@media screen and (max-width: 1700px) {
    #news-panel {
        padding: 75px;
    }
}

@media screen and (max-width: 1400px) {
    #orbitalai-pharmagentic-first-circle {
        top: -575px;
    }
    .header-banner {
        height: 350px;
    }
    #header-banner-scroll-backer {
        background-position: top right;
    }
    #homepage-banner-content, .header-banner-content {
        padding-top: 55px;
    }
    .header-banner-content {
        padding-top: 75px;
    }
    #homepage-banner-content, .header-banner-content {
        padding-top: 55px;
    }
    #homepage-banner-content h1, .header-banner-content h1 {
        font-size: 55px;
    }
    #homepage-banner-content p {
        font-size: 22px;
        line-height: 33px;
        margin-top: 35px;
    }
    #footer-cta .orbitalrx-button, #footer-cta-orbitalai .orbitalrx-button {
        margin-top: 15px;
    }
    #footer-cta .orbitalrx-button:first-of-type, #footer-cta-orbitalai .orbitalrx-button:first-of-type {
        margin-top: 0;
    }
    #footer-logo, #footer-logo-orbitalai {
        width: 35%;
    }
    #main-nav-logo, #main-nav-logo-orbitalai {
        width: 14%;
    }
    .card-stat-number {
        font-size: 41px;
        margin-bottom: 10px;
        margin-top: 0;
    }
    .card {
        padding: 25px;
        height: 375px;
    }
    #homepage-quotes-container {
        padding-top: 75px;
    }
    #news-panel {
        top: 63%;
    }
}

@media screen and (max-width: 1200px) {
    #customer-feedback-content .card-container {
        margin-top: 85px !important;
    }
    #customer-feedback-content h2 {
        margin-bottom: 60px;
    }
    #results-speak-container, #who-we-are-container {
        background-size: cover;
    }
    #why-it-works-container {
        background-image: initial;
    }
    #why-it-works-graphic-line {
        padding-right: 0;
        margin-top: -75px;
    }
    #implementation-side-panel-container {
        padding: 0 !important;
    }
    #why-it-works-container .side-panel {
        background-color: var(--blue);
        position: relative;
        min-height: 300px;
        margin-top: -5px;
        padding-right: 80px;
        width: 100%;
        margin-bottom: 100px;
    }
    #why-it-works-container .side-panel h2 {
        font-size: 26px;
        line-height: 36px;
    }
    #side-panel-quote-company {
        margin-top: 50px;
    }
    #why-it-matters-left {
        border-bottom: 2px solid var(--white);
        border-right: initial;
        padding-bottom: 80px;
        margin-bottom: 50px;
    }
    #plus-icon {
        position: absolute;
        top: initial;
        transform: initial;
        width: 11%;
        bottom: -49px;
        left: 0;
        right: 0;
        margin-right: auto;
        margin-left: auto;
    }
    #why-it-matters-content, #why-pharmacy-content {
        margin-top: 0;
        margin-bottom: 0;
    }
    #signal-container .side-panel, #pulse-container .side-panel {
        margin-bottom: 50px;
    }
    #pulse-container .flex-row {
        flex-direction: column-reverse !important;
    }
    .intro-section {
        padding: 75px;
    }
    .circle-image {
        height: 450px;
        width: 450px;
    }
    .circle-image-backer {
        height: 120px;
        width: 120px;
    }
    #news-panel {
        top: 63.5%
    }
    #why-it-matters-container, #built-by-pharmacists-container, #why-pharmacy-container {
        padding: 75px 100px;
    }
    #why-pharmacists-choose-orbitalrx-container .side-panel, #awareness-to-execution-container .side-panel {
        width: 100%;
    }
    #solutions-intro-content-container {
        min-height: auto;
        padding-bottom: 50px;
        position: initial;
    }
    .scroll-image img {
        width: 70%;
        margin-right: auto;
        margin-left: auto;
        padding: 5%;
    }
    #why-pharmacists-choose-orbitalrx-container, #awareness-to-execution-container {
        background: initial;
    }
    #why-pharmacists-choose-orbitalrx-container, #awareness-to-execution-container {
        background-image: url(../images/why-pharmacists-choose-orbitalrx.jpg);
        background-size: cover;
        background-attachment: fixed;
    }
    #why-pharmacists-choose-orbitalrx-container .side-panel, #results-speak-container .side-panel, #who-we-are-container .side-panel, #awareness-to-execution-container .side-panel {
        background-color: #fffffff2;
        width: 100%;
    }
    .orbitalai-page #homepage-banner-content h1 {
        font-size: 40px;
    }
    #orbitalai-pharmagentic-first-circle {
        top: -60px;
    }
    #orchestration-container, #responsible-by-design-container {
        padding: 80px 0 90px 0;
    }
    #responsible-by-design-container .circle-image {
        margin-top: 0;
    }
    #why-pharmacy-container .side-panel {
        margin-bottom: 50px;
        width: 100%;
    }
}

@media screen and (max-width: 1100px) {
    .orbitalai-page #nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
        background: var(--orange);
    }
    .orbitalai-page .mobile-dropdown {
        background-color: var(--light_orange);
    }
    .orbitalai-page #solutions-intro-content-container {
        min-height: auto;
    }
    .orbitalai-page #news-panel h3 {
        margin-bottom: 0;
    }
    #customer-feedback-content .card {
        padding: 100px 25px;
        height: auto;
        margin-top: 100px;
    }
    #customer-feedback-content .card:first-of-type {
        margin-top: 0;
    }
    #customer-feedback-content h2 {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 1100px) {
    #homepage-banner {
        height: auto;
        padding: 100px;
        padding-top: 180px;
    }
    #homepage-banner-content {
        padding-top: 0;
        text-align: center;
    }
    #homepage-banner-content p {
        margin-right: auto;
        margin-left: auto;
        width: 80%;
    }
    #news-panel {
        position: initial;
        margin-top: 50px;
        width: 100%;
        border-radius: 10px;
        top: initial;
        transform: initial;
        padding: 70px !important;
    }
    #header-banner-scroll-backer {
        height: 750px;
        bottom: 0;
        top: initial;
        background-image: url(../images/backer-2.png);
        background-position: bottom right;
        background-size: contain;
        background-attachment: initial;
    }
    .orbitalrx-page #header-banner-scroll-backer {
        height: inherit;
        background-position: bottom right;
        background-size: 55%;
        background-attachment: initial;
    }
    #main-nav-links {
        display: none;
    }
    .mobile-menu {
        display: flex;
        margin-top: auto;
        margin-bottom: auto;
        margin-left: auto;
        cursor: pointer;
        position: relative;
        z-index: 30;
    }
    .mobile-dropdown {
        position: fixed;
        top: 0;
        left: 0px;
        background-color: var(--dark_blue);
        display: block;
        z-index: 4;
        width: 100%;
        height: 100vh;
        display: none;
    }
    .slidedown {
        display: block;
        height: 85%;
        transition: 3s ease-in-out;
    }
    ul.nav-items {
        display: none;
    }
    ul.mob-nav-items {
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    .mobile-dropdown ul.mob-nav-items a {
        text-decoration: none;
        list-style-type: none;
        text-align: left;
        color: #1C1C1C;
        font-family: 'ServiceNow Sans', sans-serif !important;
        font-size: 24px;
        line-height: 1em;
    }
    .mobile-dropdown ul.mob-nav-items a {
        font-size: 24px;
    }
    .mobile-dropdown ul.mob-nav-items a.reg-button {
        margin-left: auto;
        margin-top: 20px;
        width: 150px;
        line-height: 40px;
    }
    .mobile-dropdown ul li {
        color: var(--white);
        line-height: 60px;
    }
    .mobile-dropdown ul li:hover {
        color: var(--yellow);
    }
    .position-nav-fixed {
        position: fixed !important;
        background-color: #000920;
    }
    #get-started-button {
        padding: 10px 20px;
        font-weight: 700;
        line-height: initial !important;
        font-size: 22px;
        margin-top: 20px;
        margin-right: auto;
        margin-left: auto !important;
        display: block;
        font-family: "Nunito Sans", serif;
        cursor: pointer;
    }
    .show-menu {
        display: block !important;
    }
    .circle-image {
        height: 350px;
        width: 350px;
    }
    .circle-image-backer {
        height: 90px;
        width: 90px;
    }
    .circle-image-backer-top-left {
        top: 0px;
        left: 0px;
    }
    .circle-image-backer-bottom-right {
        bottom: 0px;
        right: 0px;
    }
    .circle-image-backer-top-right {
        top: 0;
        right: 0;
    }
    .circle-image-backer-bottom-left {
        bottom: 0;
        left: 0;
    }
    .section-padding {
        padding: 75px;
    }
    .card-container {
        display: block;
    }
    .card {
        width: 100%;
        margin-top: 20px;
    }
    .card:first-of-type {
        margin-top: initial;
    }
    #trusted-across-systems-container {
        background-image: linear-gradient(to bottom, var(--dark_blue) 0%, var(--dark_blue) 95%, var(--blue) 95%, var(--blue) 100%);
    }
    #homepage-quotes-container {
        padding-top: 50px;
    }
    .section-tab {
        left: 8%;
    }
}

@media screen and (max-width: 1000px) {
    #footer-cta-content {
        width: 90%;
    }
    .scroll-image img {
        width: 100%;
    }
    .section-tab {
        left: 14%;
    }
    #main-nav-logo, #main-nav-logo-orbitalai {
        width: 20%;
    }
    #homepage-shortage-manager-container {
        border-right: initial;
    }
    #homepage-signal-content {
        margin-left: 0;
        margin-top: 50px;
        border-top: 1px solid #ffffff73;
        padding-top: 50px;
    }
    #why-it-matters-content, #why-pharmacy-content {
        margin-left: 0;
    }
    #built-by-pharmacists-container .flex-row {
        flex-direction: column-reverse !important;
    }
    #built-by-pharmacists-content {
        margin-top: 40px;
        margin-bottom: 0;
    }
    #built-by-pharmacists-content .line-break {
        display: initial;
    }
    .side-panel {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 40px;
    }
    .section-padding, #why-it-matters-container, #built-by-pharmacists-container, #why-pharmacy-container {
        padding: 75px 0;
    }
    #homepage-banner-content h1, .header-banner-content h1 {
        font-size: 45px;
    }
    #homepage-banner-content p {
        margin-top: 20px;
    }
    #footer-cta .orbitalrx-button, #footer-cta-orbitalai .orbitalrx-button {
        margin-top: 35px !important;
    }
    #footer-cta .orbitalrx-button:last-of-type, #footer-cta-orbitalai .orbitalrx-button:last-of-type {
        margin-top: 15px !important;
    }
    #social-media-section img {
        width: 20%;
    }
    #footer-logo, #footer-logo-orbitalai {
        width: 50%;
    }
    .full-row-quote {
        width: 95%;
        margin-left: auto;
        margin-right: 0;
    }
    .scrolling-images-container .circle-image-backer-top-right {
        top: -35px;
        right: -35px;
    }
    .scrolling-images-container .circle-image-backer-bottom-left {
        bottom: -35px;
        left: -35px;
    }
}

@media screen and (max-width: 992px) {
    #plus-icon {
        bottom: -38px;
    }
    #orchestration-content {
        margin-top: 50px;
    }
    #responsible-by-design-container .flex-row {
        flex-direction: column-reverse !important;
    }
    #responsible-by-design-container #built-by-pharmacists-content {
        margin-top: 50px;
    }
}

@media screen and (max-width: 800px) {
    #why-it-works-graphic-line {
        padding-right: 0;
        margin-top: -50px;
    }
    #homepage-banner-content p {
        width: 90%;
    }
    #built-by-pharmacists-content {
        margin-top: 60px;
    }
    #copyright-row {
        position: absolute;
        bottom: 0;
        text-align: center;
        left: 0;
        right: 0;
        background-color: #00000061;
        padding: 5px;
    }
    #footer-logo, #footer-logo-orbitalai {
        margin-left: 0;
        margin-right: auto;
        animation: block;
        margin-top: 15px;
        width: 150px !important;
    }
    #main-nav-logo {
        min-width: 135px;
    }
    #homepage-banner {
        padding: 25px;
        padding-top: 150px;
        padding-bottom: 100px;
    }
    .section-padding, #why-it-matters-container, #built-by-pharmacists-container, #footer, .intro-section, #why-pharmacy-container {
        padding: 50px 25px;
    }
    .header-banner {
        padding: 25px;
    }
    #horizontal-scroll h2, .horizontal-scroll-implementation .col-md-12 p {
        padding: 0 25px;
    }
    #footer .col-sm-3 {
        width: 50% !important;
    }
    #footer {
        padding-bottom: 105px !important;
    }
    .graphic-line-section {
        padding: 60px 25px 50px 25px !important;
    }
    /*#how-it-works-section-1, #how-it-works-section-3 {*/
    /*    padding-right: 75px !important;*/
    /*}*/
    #how-it-works-section-2, #how-it-works-section-4, #how-it-works-section-1, #how-it-works-section-3 {
        padding-left: 75px !important;
    }
    #start-graphic-line, #graphic-line-2 {
        height: 100px;
        width: 2px;
    }
    .scrolling-images-container .circle-image-backer {
        height: 60px;
        width: 60px;
    }
    .scrolling-images-container .circle-image-backer-top-right {
        top: -20px;
        right: -20px;
    }
    .scrolling-images-container .circle-image-backer-bottom-left {
        bottom: -20px;
        left: -20px;
    }
}

@media screen and (max-width: 768px) {
    #orbitalai-cta p {
        font-size: 14px;
        line-height: 16px;
    }
    #footer-cta-content {
        width: 100%;
    }
    #detect-risks-container .circle-image {
        margin-top: 50px;
    }
    .pulse-signal-image {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .orbitalai-page #homepage-banner-content h1 {
        font-size: 34px;
    }
    .orbitalai-page #homepage-banner-content p {
        font-size: 18px;
        line-height: 22px;
    }
    .absolute-wrapper {
        padding: 0 25px;
    }
    #how-it-works-section {
        padding: 0 30px;
    }
    .header-banner-content h1 {
        font-size: 33px;
    }
    h2 {
        font-size: 22px;
    }
    h3, h4 {
        font-size: 18px;
    }
    p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    .header-banner h4 {
        font-size: 16px;
    }
}

@media screen and (max-width: 500px) {
    #orbitalai-cta p {
        width: 75%;
        margin-right: auto;
        margin-left: auto;
    }
    #customer-feedback-content .card-container {
        margin-top: 60px !important;
    }
    #customer-feedback-content .card {
        margin-top: 50px;
    }
    #news-panel {
        padding: 35px !important;
    }
    .section-padding, #why-it-matters-container, #built-by-pharmacists-container, #footer, #why-pharmacy-container {
        padding: 65px 15px;
    }
    #homepage-banner {
        padding: 15px;
        padding-top: 150px;
        padding-bottom: 100px;
    }
    #homepage-banner-content p {
        width: 100%;
    }
    .full-row-quote {
        padding: 55px 50px 50px 65px;
    }
    .quote-punctuation-block {
        height: 45px;
        width: 45px;
        left: -23px;
    }
    .quote-punctuation-block p {
        font-size: 58px !important;
        margin-top: 18px;
        margin-right: -17px;
    }
    .side-panel {
        padding: 30px;
    }
    #trusted-across-systems-container h2 {
        width: 75%;
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (max-width: 450px) {
    .section-padding, #why-it-matters-container, #built-by-pharmacists-container, #footer, #why-pharmacy-container {
        padding: 45px 15px;
    }
    #footer {
        padding-bottom: 75px !important;
    }
    #homepage-banner-content h1, .header-banner-content h1 {
        font-size: 40px;
    }
}


@media screen and (min-width: 1900px) and (min-height: 1000px) {
    #why-pharmacists-choose-orbitalrx-container, #why-it-works-container, #results-speak-container, #who-we-are-container, #awareness-to-execution-container {
        background-size: 57%;
    }
    #results-speak-container {
        background-size: 60%;
    }
}



