/*! HTML5 Boilerplate v6.0.1 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body    {
    height: 100vh;
    width: 100vw;
    overflow: hidden;

}
body.purple {
    background-color: #5C287F;
}



.loading-cont {
/*    height: 113px;
    width: 113px;
    position: absolute;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);*/
}
svg#intro-img {
    width: 100vw;
}

.intro-cont {
    height: 100vh;
    width: 100vw;
    position: relative;
    top: 0;
    left: 0;
}

.intro-img {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}





/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    -webkit-clip-path: none;
    clip-path: none;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
.home-cont {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: url(../img/bg.svg) 20px 20px repeat;

}

.header-cont {
    height: auto;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 9999;
}

.footer-cont {
		height: 40px;
    width: 100vw;
		text-align: right;
		overflow: hidden;
    position: absolute;
    bottom: 0 !important;
}

.footer-cont a {
	text-decoration: none;
  font-family: Cuprum-Regular, Cuprum;
  font-size: 13px;
  font-weight: normal;
  line-height: 20px;
  margin: 0 20px;
	color: #AEB0B2;
}
.drl-footer-logo {
  height: 20px;
}
svg {
    height: auto;
    width: 100vw;
}

.banner-cont {
	text-decoration: none !important;
	font-family: 'Cuprum';
  height: 100vh;
  width: 100vw;
  position: absolute;
}

.patient-circle, .medical-circle {
	height: 360px;
  width: 360px;
  position: absolute;
  transition-duration: 0.5s;
  outline: none;
}

.patient-circle span.bgCircle, .medical-circle span.bgCircle {
	  left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 360px;
    width: 360px;
    background-color: rgb(103, 56, 142);
    position: absolute;
    transition-duration: 0.5s;
    border-radius: 100%;
}

.patient-circle span.bgCircle:hover, .medical-circle span.bgCircle:hover {
	  background: rgb(226, 0, 122);
    transform-origin: 50% 50%;
    height: 340px;
    width: 340px;
    transition-duration: 0.5s;
}


@keyframes floatA {
  from {
    transform: translate(0px, 0px);
  }
  to {
    transform: translate(4px, 14px);
  }
}

@keyframes floatB {
  from {
    transform: translate(0px, 0px);
  }
  to {
    transform: translate(12px, 20px);
  }
}


.patient-circle {
    top: 20%;
    left: 18%;
    animation: floatA 6s ease-in-out infinite alternate;
    animation-delay: 2s;
}



.medical-circle {
	top: 36%;
    left: 57%;
    animation: floatA 3.5s ease-in-out infinite alternate;
}

.patient-circle a, .medical-circle a {
		color: #fff;
    font-size: 40px;
    letter-spacing: -0.88px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    text-decoration: none !important;
    font-family: 'Cuprum';
    line-height: 40px;
}

.patient-circle a {
	  width: 204px;
    height: 86px;
    text-align: center;
}

.medical-circle a {
		width: 234px;
    height: 126px;
    text-align: center;
}

.faq1-circle, .faq2-circle, .faq3-circle, .faq4-circle {
	/*background: rgb(154, 122, 177);*/
	height: 180px;
	width: 180px;
	border-radius: 100%;
  position: absolute;
  transition-duration: 0.5s;
  animation: floatA 6s ease-in-out infinite alternate;
  outline: none;
}
.faq1-circle span.bgCircle, .faq2-circle span.bgCircle, .faq3-circle span.bgCircle, .faq4-circle span.bgCircle {
	background: rgb(154, 122, 177);
	height: 180px;
	width: 180px;
	border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition-duration: 0.5s;
}
.faq1-circle span.bgCircle:hover,
.faq2-circle span.bgCircle:hover,
.faq3-circle span.bgCircle:hover,
.faq4-circle span.bgCircle:hover {
    background: rgb(105, 50, 139);
    transform-origin: 50% 50%;
    transition-duration: 0.5s;
    height: 160px;
		width: 160px;
}

.faq1-circle a, .faq2-circle a, .faq3-circle a, .faq4-circle a {
		color: #fff;
    font-size: 16px;
    letter-spacing: -0.36px;
    line-height: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    text-decoration: none !important;
    font-family: 'Cuprum';
    text-align: center;
}

.faq1-circle {
	  bottom: 13%;
    left: 3%;
}

.faq2-circle {
	  top: 15%;
    left: 46%;
    animation-delay: 2.5s;
}

.faq3-circle {
		bottom: 15%;
    left: 42%;
    animation-delay: 4s;
}

.faq4-circle {
	  right: 4%;
    top: 21%;
    animation-delay: 0.75s;
}

.faq1-circle a {
	width: 132px;
	height: 58px;
}

.faq2-circle a {
	width: 140px;
	height: 40px;
}

.faq3-circle a {
  width: 141px;
  height: 61px;
}

.faq4-circle a {
	width: 138px;
	height: 58px;
}

.pink1-circle,
.pink2-circle,
.pink3-circle {
	background: #E2007A;
	position: absolute;
	border-radius: 100%;
  animation: floatB 6s ease-in-out infinite alternate;
}

.pink1-circle {
	height: 120px;
	width: 120px;
	top: 13%;
  left: 6%;
    animation-delay: 4.75s;
}

.pink2-circle {
	height: 80px;
	width: 80px;
	    bottom: 10%;
    left: 23%;
    animation-delay: 0.5s;
}

.pink3-circle {
	height: 60px;
	width: 60px;
	    top: 20%;
    right: 28%;
    animation-delay: 2s;

}

.good-health-circle {
	background: rgb(254, 205, 4);
	height: 110px;
	width: 110px;
	border-radius: 100%;

    position: absolute;
    right: 8%;
    bottom: 13%;

}



.good-health-circle span.bgCircle {
/*    height: 68px;
    width: 40px;
    color: #222;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    text-decoration: none !important;
    line-height: 17px;*/
    height: 100%;
    width: 100%;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    text-decoration: none !important;
    background: url('../img/good-health.svg') no-repeat;
    background-size: auto auto;
    background-size: contain;
}

.patient-circle .hoverArrow,
.medical-circle .hoverArrow {
    width: 67px;
    height: 43px;
    position: absolute;
    display: block;
    background: url('../img/large-arrow.svg') no-repeat;
    opacity: 0;
    transition-duration: 0.5s;
}

.patient-circle .hoverArrow.arrow-top,
.medical-circle .hoverArrow.arrow-top {
    left: 50%;
    top: 10px;
    transform: translate(-50%, 0);
}

.patient-circle .hoverArrow.arrow-right,
.medical-circle .hoverArrow.arrow-right {
    right: 10px;
    top: 50%;
    transform: translate(0%, -50%) rotate(90deg);
}

.patient-circle .hoverArrow.arrow-bottom,
.medical-circle .hoverArrow.arrow-bottom {
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0%) rotate(180deg);
}

.patient-circle .hoverArrow.arrow-left,
.medical-circle .hoverArrow.arrow-left {
    left: 10px;
    top: 50%;
    transform: translate(0%, -50%) rotate(-90deg);
}

.medical-circle:hover .arrow-top,
.patient-circle:hover .arrow-top {
  top: -55px;
  opacity: 1;
  transition-duration: 0.5s;
}

.medical-circle:hover .arrow-right,
.patient-circle:hover .arrow-right {
  right: -68px;
  opacity: 1;
  transition-duration: 0.5s;
}

.medical-circle:hover .arrow-bottom,
.patient-circle:hover .arrow-bottom {
  bottom: -55px;
  opacity: 1;
  transition-duration: 0.5s;
}

.medical-circle:hover .arrow-left,
.patient-circle:hover .arrow-left {
  left: -68px;
  opacity: 1;
  transition-duration: 0.5s;
}

.faq1-circle .hoverArrow,
.faq2-circle .hoverArrow,
.faq3-circle .hoverArrow,
.faq4-circle .hoverArrow {
    width: 37px;
    height: 25px;
    position: absolute;
    display: block;
    background: url('../img/small-arrow.svg') no-repeat;
    opacity: 0;
    transition-duration: 0.5s;
}
.faq1-circle .hoverArrow.arrow-top,
.faq2-circle .hoverArrow.arrow-top,
.faq3-circle .hoverArrow.arrow-top,
.faq4-circle .hoverArrow.arrow-top {
    left: 50%;
    top: 10px;
    transform: translate(-50%, 0);
}

.faq1-circle:hover .hoverArrow.arrow-top,
.faq2-circle:hover .hoverArrow.arrow-top,
.faq3-circle:hover .hoverArrow.arrow-top,
.faq4-circle:hover .hoverArrow.arrow-top {
  top: -30px;
  opacity: 1;
  transition-duration: 0.5s;
}

.faq1-circle .hoverArrow.arrow-bottom,
.faq2-circle .hoverArrow.arrow-bottom,
.faq3-circle .hoverArrow.arrow-bottom,
.faq4-circle .hoverArrow.arrow-bottom {
    left: 50%;
    bottom: 10px;
    transform: translate(-50%, 0)  rotate(180deg);
}

.faq1-circle:hover .hoverArrow.arrow-bottom,
.faq2-circle:hover .hoverArrow.arrow-bottom,
.faq3-circle:hover .hoverArrow.arrow-bottom,
.faq4-circle:hover .hoverArrow.arrow-bottom {
  bottom: -30px;
  opacity: 1;
  transition-duration: 0.5s;
}

.faq1-circle .hoverArrow.arrow-right,
.faq2-circle .hoverArrow.arrow-right,
.faq3-circle .hoverArrow.arrow-right,
.faq4-circle .hoverArrow.arrow-right {
    top: 50%;
    right: 10px;
    transform: translate(0%, -50%)  rotate(90deg);
}

.faq1-circle:hover .hoverArrow.arrow-right,
.faq2-circle:hover .hoverArrow.arrow-right,
.faq3-circle:hover .hoverArrow.arrow-right,
.faq4-circle:hover .hoverArrow.arrow-right {
  right: -35px;
  opacity: 1;
  transition-duration: 0.5s;
}


.faq1-circle .hoverArrow.arrow-left,
.faq2-circle .hoverArrow.arrow-left,
.faq3-circle .hoverArrow.arrow-left,
.faq4-circle .hoverArrow.arrow-left {
    top: 50%;
    left: 10px;
    transform: translate(0%, -50%)  rotate(-90deg);
}

.faq1-circle:hover .hoverArrow.arrow-left,
.faq2-circle:hover .hoverArrow.arrow-left,
.faq3-circle:hover .hoverArrow.arrow-left,
.faq4-circle:hover .hoverArrow.arrow-left {
  left: -35px;
  opacity: 1;
  transition-duration: 0.5s;
}

@media only screen and (max-width: 767px) {
  .patient-circle .hoverArrow.arrow-top,
  .medical-circle .hoverArrow.arrow-top {
      top: -30px;
      transform: translate(-50%, 0) scale(0.6);
  }
  .footer-cont  {
    text-align: center;
  }
  .footer-cont.home-footer {
    position: fixed;
  }
  .footer-cont a {
    margin: 0;
    float: left;
    line-height: 40px;
    width: 22%;
  }
  .footer-cont a:first-child {
      width: 30%;
  }

  .patient-circle .hoverArrow.arrow-right,
  .medical-circle .hoverArrow.arrow-right {
      right: -42px;
      transform: translate(0%, -50%) rotate(90deg) scale(0.6);
  }

  .patient-circle .hoverArrow.arrow-bottom,
  .medical-circle .hoverArrow.arrow-bottom {
      bottom: -30PX;
      transform: translate(-50%, 0%) rotate(180deg) scale(0.6);
  }

  .patient-circle .hoverArrow.arrow-left,
  .medical-circle .hoverArrow.arrow-left {
      left: -42px;
      transform: translate(0%, -50%) rotate(-90deg) scale(0.6);
  }
  .patient-circle {
    height: 200px;
    width: 200px;
    top: 80px;
    left: 20px;
  }
  .patient-circle span.bgCircle:hover, .medical-circle span.bgCircle:hover {
      height: 180px;
      width: 180px;
  }

  .medical-circle {
    height: 200px;
    width: 200px;
    bottom: 80px;
    right: 25px;
    top: auto;
    left: auto;
  }
  .faq1-circle, .faq4-circle {
    width: 140px;
    height: 140px;
    font-family: "Cuprum";
    font-size: 16px;
    line-height: 1.12;
    letter-spacing: -0.4px;
    text-align: center;
    color: #fffdfd;
  }
  .faq1-circle {
    left: 10px;
    top: 48vh;
  }
  .faq4-circle {
    left:auto;
    right: 20px;
    top: 30vh;
  }
  .faq1-circle a, .faq4-circle a {
    width: 122px;
  }
  .good-health-circle {
    width: 80px;
    height: 80px;
    left: 20px;
    bottom: 80px;
  }
  .pink1-circle {
    width: 60px;
    height: 60px;
    top: 80px;
    right: 20px;
    left: auto;
  }
  .faq1-circle span.bgCircle, .faq2-circle span.bgCircle, .faq3-circle span.bgCircle, .faq4-circle span.bgCircle {
    height: 130px;
    width: 130px;
  }
  .faq1-circle:hover .hoverArrow.arrow-top, .faq2-circle:hover .hoverArrow.arrow-top, .faq3-circle:hover .hoverArrow.arrow-top, .faq4-circle:hover .hoverArrow.arrow-top {
    top: -23px;
  }
  .faq1-circle:hover .hoverArrow.arrow-right, .faq2-circle:hover .hoverArrow.arrow-right, .faq3-circle:hover .hoverArrow.arrow-right, .faq4-circle:hover .hoverArrow.arrow-right {
    right: -29px;
  }
  .faq1-circle:hover .hoverArrow.arrow-bottom, .faq2-circle:hover .hoverArrow.arrow-bottom, .faq3-circle:hover .hoverArrow.arrow-bottom, .faq4-circle:hover .hoverArrow.arrow-bottom {
    bottom: -23px;
  }
  .faq1-circle:hover .hoverArrow.arrow-left, .faq2-circle:hover .hoverArrow.arrow-left, .faq3-circle:hover .hoverArrow.arrow-left, .faq4-circle:hover .hoverArrow.arrow-left {
    left: -29px;
  }
  .patient-circle span.bgCircle, .medical-circle span.bgCircle {
    height: 180px;
    width: 180px;
  }
  .patient-circle a {
    width: 146.7px;
    height: 56px;
    font-family: "Cuprum";
    font-size: 24px;
    line-height: 1.17;
    letter-spacing: -0.5px;
    text-align: center;
    color: #fffdfd;
  }
  .medical-circle a {
    width: 146.7px;
    height: 84px;
    font-family: "Cuprum";
    font-size: 24px;
    line-height: 1.17;
    letter-spacing: -0.5px;
    text-align: center;
    color: #fffdfd;
  }

  .banner-cont {
      height: 95vh;
  }
  .faq1-circle span.bgCircle:hover,
  .faq2-circle span.bgCircle:hover,
  .faq3-circle span.bgCircle:hover,
  .faq4-circle span.bgCircle:hover {
      height: 130px;
      width: 130px;
  }

}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .patient-circle {
    height: 340px;
    width: 340px;
    top: 100px;
    left: 60px;
  }
  #searchList, #searchListRmp {
    width: 89%;
  }
  .medical-circle {
    height: 340px;
    width: 340px;
    bottom: 140px;
    right: 60px;
    top: auto;
    left: auto;
  }
  .faq1-circle, .faq4-circle {
    width: 220px;
    height: 220px;
    font-family: "Cuprum";
    font-size: 16px;
    line-height: 1.12;
    letter-spacing: -0.4px;
    text-align: center;
    color: #fffdfd;
  }
  .faq4-circle a {
    height: 95px;
  }
  .faq1-circle a {
    height: 58px;
  }
  .faq1-circle {
    left: 60px;
    top: 50vh;
  }
  .faq1-circle a, .faq2-circle a, .faq3-circle a, .faq4-circle a {
    font-size: 24px;
    line-height: 26px;
    width: 182px;
  }
  .faq4-circle {
    left: auto;
    right: 80px;
    top: 25vh;
  }
  .good-health-circle {
    width: 140px;
    height: 140px;
    left: 80px;
    bottom: 80px;
  }
  .pink1-circle {
    width: 140px;
    height: 140px;
    top: 70px;
    right: 110px;
    left: auto;
  }
  .faq1-circle span.bgCircle, .faq2-circle span.bgCircle, .faq3-circle span.bgCircle, .faq4-circle span.bgCircle {
    height: 220px;
    width: 220px;
  }
  .patient-circle span.bgCircle, .medical-circle span.bgCircle {
    height: 340px;
    width: 340px;
  }

  .patient-circle a {
    width: 204px;
    height: 86px;
    font-family: "Cuprum";
    font-size: 42px;
    line-height: 1.17;
    letter-spacing: -0.5px;
    text-align: center;
    color: #fffdfd;
  }
  .medical-circle a {
    width: 234px;
    height: auto;
    font-family: "Cuprum";
    font-size: 42px;
    line-height: 1.17;
    letter-spacing: -0.5px;
    text-align: center;
    color: #fffdfd;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1250px) {
  .patient-circle {
    height: 360px;
    width: 360px;
    top: 15%;
    left: 11%;
  }
  .medical-circle {
    height: 360px;
    width: 360px;
    top: 36%;
    left: 51%;
  }
  .faq1-circle, .faq2-circle, .faq3-circle, .faq4-circle {
    width: 220px;
    height: 220px;
  }
  .faq1-circle {
    bottom: 19%;
    left: 3%;
  }
  .faq2-circle {
    top: 11%;
    left: 50%;
  }
  .faq3-circle {
    bottom: 8%;
    left: 33%;
  }
  .faq4-circle {
    right: 4%;
    top: 15%;
  }
  .good-health-circle {
    background: rgb(254, 205, 4);
    height: 110px;
    width: 110px;
    border-radius: 100%;
    position: absolute;
    right: 3%;
    bottom: 7%;
  }
  .pink1-circle {
    height: 120px;
    width: 120px;
    top: 13%;
    left: 2%;
  }
  .pink2-circle {
    height: 80px;
    width: 80px;
    bottom: 13%;
    left: 20%;
  }
  .pink3-circle {
    height: 60px;
    width: 60px;
    top: 11%;
    right: 23%;
  }
  .faq1-circle span.bgCircle, .faq2-circle span.bgCircle, .faq3-circle span.bgCircle, .faq4-circle span.bgCircle {
    height: 150px;
    width: 150px;
  }
  .faq1-circle span.bgCircle {
    left: 40%;
    top: 60%;
  }
  .faq1-circle a, .faq2-circle a, .faq3-circle a, .faq4-circle a {
    width: 120px;
  }
  .patient-circle span.bgCircle, .medical-circle span.bgCircle {
    height: 320px;
    width: 320px;
  }
  .patient-circle a {
    width: 204px;
    height: 86px;
    font-family: "Cuprum";
    font-size: 42px;
    line-height: 1.17;
    letter-spacing: -0.5px;
    text-align: center;
    color: #fffdfd;
  }
  .medical-circle a {
    width: 234px;
    height: auto;
    font-family: "Cuprum";
    font-size: 42px;
    line-height: 1.17;
    letter-spacing: -0.5px;
    text-align: center;
    color: #fffdfd;
  }
}



@media only screen and (min-width: 400px) and (orientation: landscape) and (max-width: 768px) {
    #landscapeMobile {
        display: block;
    }
    .hideModal {
        display: none !important;
    }
    .medical-circle {
        height: 200px;
        width: 200px;
        bottom: 35px;
        right: 6vw;
        top: auto;
        left: auto;
    }
    .faq4-circle {
        left: auto;
        right: 32vw;
        top: 55px;
    }
    .patient-circle {
        height: 200px;
        width: 200px;
        bottom: 20px;
        left: 20vw;
        top: auto;
    }
    .faq1-circle {
        left: 4vw;
        top: 65px;
    }
    .good-health-circle {
        width: 80px;
        height: 80px;
        left: 20px;
        bottom: 20px;
    }

}
