@keyframes hideSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes showSlide {
  from {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
/* NAV STYLING */
* {
  box-sizing: border-box;
  margin: 0;
}

html {
  margin: 0;
  padding: 0;
  top: 0;
  background-color: #f2f2f2;
  scroll-behavior: smooth;
  font-family: "Maven Pro", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  top: 0;
  background-color: #f2f2f2;
  scroll-behavior: smooth;
  font-family: "Maven Pro", sans-serif;
  overflow-x: hidden;
}

.middle {
  margin-left: auto;
  margin-right: auto;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.hideSlide {
  animation: hideSlide 1.2s;
  transform: translateX(-200%);
}

.showSlide {
  animation: showSlide 1.2s;
  transform: translateX(0);
}

.container {
  position: relative;
  min-height: 105vh;
  z-index: 5;
  width: 100vw;
  font-family: "Baloo Tamma 2", cursive;
  overflow: hidden;
}
.container .menu-dots {
  position: absolute;
  bottom: 50px;
  right: 0;
  left: 0;
  margin: auto;
  height: 50px;
  width: 500px;
  z-index: 20;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.container .menu-dots .dot {
  position: relative;
  height: 30px;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
.container .menu-dots .dot .line {
  position: absolute;
  height: 15px;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -15px;
  width: 70%;
}
.container .menu-dots .dot .p {
  position: relative;
  width: 100%;
  text-align: center;
  height: 30px;
  font-size: 1.3em;
}

.active-menu {
  font-weight: 600 !important;
  border-bottom: 1px solid #04979a !important;
  color: #04979a !important;
  transition: ease-in 0.2s !important;
}

.active-line {
  border-bottom: 2px solid black !important;
}

.active-text {
  font-size: 1.5em !important;
}

.landing-logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20%;
  height: 50%;
  right: 0;
  margin: auto;
}
.landing-logo img {
  position: absolute;
  width: 100%;
  height: auto;
  right: 0;
  left: 0;
  margin: auto;
}

.nav {
  position: fixed;
  background-color: #f2f2f2;
  height: 150px;
  top: 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.nav .upper {
  position: relative;
  height: 30%;
  padding-left: 10%;
  width: 60%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #04979a;
  color: #f2f2f2;
}
.nav .upper .email {
  font-size: 1.5em;
  margin: auto;
}
.nav .upper .phone {
  font-size: 1.5em;
  margin: auto;
}
.nav .lower {
  position: relative;
  height: 70%;
  display: flex;
  flex-direction: row;
}
.nav .lower .logo-container {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 49%;
  margin-right: 1%;
}
.nav .lower .logo-container .logo {
  position: relative;
  height: 100%;
  width: 20%;
  margin-left: 10px;
}
.nav .lower .logo-container .logo img {
  height: 90%;
  width: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.nav .lower .logo-container .right-side {
  position: relative;
  display: flex;
  width: 80%;
  flex-direction: column;
}
.nav .lower .logo-container .right-side .middle {
  position: relative;
  height: 50%;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.nav .lower .logo-container .right-side .middle .title {
  position: relative;
  display: flex;
  color: #292929;
  font-size: 2.5em;
  text-align: left;
  height: 100%;
  width: 100%;
}
.nav .lower .logo-container .right-side .middle .title p {
  margin: auto;
  text-align: center;
  width: 100%;
  margin-left: 0;
}
.nav .lower .logo-container .right-side .lower {
  position: relative;
  height: 50%;
  width: 70%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: auto;
  margin-top: 0;
}
.nav .lower .logo-container .right-side .lower img {
  position: relative;
  height: 60%;
  width: auto;
  margin: 10px;
}
.nav .lower .logo-container .right-side .lower p {
  position: relative;
  color: #04979a;
  font-size: 2em;
  font-weight: 600;
}
.nav .lower .buttons {
  position: relative;
  margin-right: 0;
  margin-left: auto;
  display: flex;
  flex-direction: row;
}
.nav .lower .buttons .btn {
  position: relative;
  height: 65px;
  width: 180px;
  margin: 20px;
  background-color: #292929;
  text-align: center;
  padding-top: 50%;
  font-size: 1.3em;
  border: 0;
  padding: 0;
  color: #f2f2f2;
}
.nav .lower .menu {
  position: relative;
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.nav .lower .menu #li-contact {
  position: relative;
  margin: auto;
  display: flex;
  flex-direction: row;
}
.nav .lower .menu #li-contact a {
  text-decoration: none;
}
.nav .lower .menu ul {
  position: relative;
  display: flex;
  flex-direction: row;
  list-style-type: none;
  width: 90%;
  margin: auto;
}
.nav .lower .menu ul li {
  position: relative;
  margin: auto;
  display: flex;
  flex-direction: row;
  text-align: center;
}
.nav .lower .menu ul li:hover {
  cursor: pointer;
}
.nav .lower .menu ul li .title {
  font-size: 1.2em;
  font-weight: 600;
  text-align: center;
}
.nav .lower .menu ul li #contact-btn {
  position: relative;
  height: 50px;
  width: 150px;
  background-color: #04979a;
}
.nav .lower .menu ul li #contact-btn p {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #f2f2f2;
}

.landing-section {
  position: absolute;
  display: flex;
  flex-direction: row;
  width: 100%;
  top: 150px;
  height: 75%;
}
.landing-section .landing-bg {
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
}
.landing-section .landing-bg img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}
.landing-section .landing-text {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.landing-section .landing-text h1 {
  position: relative;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
  font-weight: 500;
  padding: 30px;
  font-size: 2em;
  margin-left: 10%;
  text-align: center;
}
.landing-section .landing-text h1 span {
  font-weight: 600;
}
.landing-section .right-side {
  position: relative;
  width: 50%;
  height: 100%;
}
.landing-section .right-side .landing-img-cont {
  position: relative;
  display: block;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
}
.landing-section .right-side .landing-img-cont img {
  position: relative;
  display: block;
  height: 400px;
  width: 550px;
  margin: auto;
  width: auto;
  border: 10px solid #f2f2f2;
  border-radius: 20px;
}
.landing-section .right-side .landing-img-cont .img-bg {
  position: absolute;
  height: 100%;
  width: 100%;
}
.landing-section .right-side .landing-img-cont .img-bg img {
  position: relative;
  height: 100%;
  width: 100%;
}

.about-section {
  position: relative;
  top: 150px;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.about-section .about-left {
  position: relative;
  height: 1000px;
  width: 50%;
  color: #1d1d1d;
}
.about-section .about-left .about-text {
  position: relative;
  width: 95%;
  top: 5%;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border-radius: 10px;
}
.about-section .about-left .about-text .title {
  font-size: 3em;
  margin-bottom: 15px;
  width: 290px;
  margin-left: 20px;
  font-family: "Pacifico", cursive;
}
.about-section .about-left .about-text .body {
  position: relative;
  width: 100%;
  font-size: 1.3em;
  text-align: left;
  margin-bottom: 10px;
  line-height: 1.8em;
  overflow: hidden;
  padding: 10px;
  text-align: justify;
  border-right: 0.15em solid #f2f2f2;
}
.about-section .about-left .about-text .name {
  position: relative;
  font-size: 2.5em;
  margin-left: 20px;
  font-family: "Pacifico", cursive;
}
.about-section .about-img {
  position: relative;
  width: 50%;
  height: 700px;
}
.about-section .about-img .img-container {
  position: relative;
  width: 100%;
  height: 90%;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
}
.about-section .about-img .img-container .white-img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #f2f2f2;
}
.about-section .about-img .img-container img {
  position: absolute;
  height: 100%;
  width: auto;
  left: 10%;
  border-radius: 10px;
}
.about-section .svg-bottom {
  position: absolute;
  width: 100%;
  height: 15%;
  bottom: 40px;
  right: 0;
}
.about-section .svg-bottom img {
  position: relative;
  min-width: 100%;
  height: auto;
  bottom: 0;
}

.services-section {
  position: relative;
  top: 150px;
  width: 100vw;
  display: flex;
  flex-direction: column;
}
.services-section .services-sec {
  position: relative;
  display: flex;
  transform: translateY(0);
  flex-direction: row;
  background-color: #04979a;
  color: #f2f2f2;
}
.services-section .services-sec .left-sec {
  position: relative;
  width: 50%;
  margin-top: 5%;
  height: 600px;
}
.services-section .services-sec .left-sec p {
  position: relative;
  margin: auto;
  width: 60%;
  font-size: 1.4em;
  text-align: center;
}
.services-section .services-sec .left-sec img {
  position: relative;
  width: 90%;
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  bottom: -8vh;
  border: 6px solid #f2f2f2;
  max-width: 560px;
}
.services-section .services-sec .right-sec {
  position: relative;
  width: 50%;
  margin-top: 2%;
  height: 600px;
}
.services-section .services-sec .right-sec .title {
  position: relative;
  height: 20%;
  padding: 10px;
  font-size: 3em;
  text-align: center;
}
.services-section .services-sec .right-sec .title2 {
  position: relative;
  height: 20%;
  font-size: 1.2em;
  text-align: center;
  width: 60%;
  margin: auto;
}
.services-section .services-sec .right-sec .services {
  position: relative;
  display: flex;
  flex-direction: row;
}
.services-section .services-sec .right-sec .services .left-serv {
  position: relative;
  width: 50%;
  height: 100%;
}
.services-section .services-sec .right-sec .services .left-serv li {
  text-decoration: none;
  list-style-type: none;
  width: 60%;
  text-align: center;
  margin: auto;
  margin-bottom: 30px;
}
.services-section .services-sec .right-sec .services .right-serv {
  position: relative;
  width: 50%;
  height: 100%;
}
.services-section .services-sec .right-sec .services .right-serv li {
  list-style-type: none;
  text-decoration: none;
  width: 60%;
  text-align: center;
  margin: auto;
  margin-bottom: 30px;
}
.services-section .sidenote {
  position: relative;
  width: 100%;
  padding: 20%;
  padding-top: 0;
  padding-bottom: 10px;
  height: 200px;
  color: #f2f2f2;
  background-color: #04979a;
  margin-left: auto;
  margin-right: auto;
}
.services-section .sidenote p {
  text-align: center;
  padding: 30px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.2em;
}

.diabetes-section {
  position: relative;
  top: 150px;
  height: 850px;
  width: 100%;
}
.diabetes-section .title {
  position: relative;
  font-size: 3em;
  height: 10%;
  width: 50%;
  margin-left: 15px;
  margin-right: auto;
  margin-top: 50px;
  text-align: center;
  padding-bottom: 5px;
}
.diabetes-section .container-diab {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.diabetes-section .container-diab .diab-text {
  position: relative;
  width: 50%;
  height: 600px;
  padding: 20px;
  margin: auto;
  margin-left: 30px;
  font-size: 1.3em;
  text-align: justify;
  line-height: 1.6em;
}
.diabetes-section .container-diab .diab-text span {
  font-weight: 600;
  text-align: center;
  display: block;
}
.diabetes-section .container-diab .diab-text .left-door {
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  top: 0;
  z-index: 3;
}
.diabetes-section .container-diab .diab-text .right-door {
  position: absolute;
  height: 100%;
  width: 50%;
  right: 0;
  top: 0;
  z-index: 3;
}
.diabetes-section .container-diab .diab-images {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 600px;
  top: -10%;
  padding: 20px;
}
.diabetes-section .container-diab .diab-images .diab-img {
  position: relative;
  width: 50%;
  height: 70%;
  overflow: hidden;
}
.diabetes-section .container-diab .diab-images .diab-img img {
  position: relative;
  max-height: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
}
.diabetes-section .container-diab .diab-images #diabimg2 {
  float: right;
  margin-left: 50%;
}

.faqs-section {
  position: relative;
  width: 100%;
  top: 150px;
}
.faqs-section .title {
  position: relative;
  font-size: 3em;
  width: 100%;
  height: 75px;
  margin-top: 20px;
  background-color: #04979a;
  color: #f2f2f2;
  text-align: center;
}
.faqs-section .message {
  position: relative;
  font-size: 1.5em;
  width: 70%;
  margin: auto;
  margin-top: 15px;
  text-align: center;
}
.faqs-section .questions-container {
  position: relative;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  margin-bottom: 50px;
  padding: 20px;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07);
}
.faqs-section .question-box {
  position: relative;
  margin-top: 20px;
}
.faqs-section .question-box .answer {
  text-align: justify;
}
.faqs-section .question-box #getInfoLink {
  margin-left: 40px;
}

.contact-section {
  position: relative;
  top: 150px;
  overflow: hidden;
}
.contact-section .bg {
  position: absolute;
  z-index: 0;
}
.contact-section .title {
  position: relative;
  z-index: 2;
  width: 100vw;
  font-size: 2.5em;
  text-align: center;
}
.contact-section .contact-cont {
  position: relative;
  padding: 50px;
  width: 100vw;
  height: 600px;
  background-color: #f2f2f277;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.contact-section .contact-cont .loading {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.contact-section .contact-cont .loading img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.contact-section .contact-cont .displayEmailMessage {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}
.contact-section .contact-cont .displayEmailMessage .icon {
  position: relative;
  height: 100px;
  width: 100px;
  margin: auto;
  background-color: 0;
}
.contact-section .contact-cont .displayEmailMessage .icon img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}
.contact-section .contact-cont .displayEmailMessage .msg {
  position: relative;
  margin: auto;
  text-align: center;
  font-size: 3em;
}
.contact-section .contact-cont .displayEmailMessage #emailTryAgain {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  font-family: inherit;
  font-size: 1em;
  border: 0;
  padding: 0;
  height: 50px;
  width: 150px;
  background-color: #04979a;
  color: white;
  border: 1px solid white;
}
.contact-section .contact-cont .contact-form {
  width: 50%;
  height: 400px;
  margin-left: auto;
  margin-right: auto;
}
.contact-section .contact-cont .contact-form form .input-group {
  display: flex;
  height: 43px;
  width: 250px;
  margin: 20px;
  margin-left: auto;
  margin-right: auto;
}
.contact-section .contact-cont .contact-form form .input-group .fa {
  display: inline-block;
  padding: 5px 20px;
}
.contact-section .contact-cont .contact-form form .input-group input {
  display: inline-block;
  width: 90%;
  height: 100%;
  padding: 10px;
  font-size: 1.3em;
  margin-left: auto;
  margin-right: auto;
  border: none;
  border-bottom: 1px solid #1d1d1d;
  background: transparent;
}
.contact-section .contact-cont .contact-form form .input-group-area {
  display: flex;
  height: 100px;
  width: 250px;
  margin: 20px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid #292929;
}
.contact-section .contact-cont .contact-form form .input-group-area textarea {
  width: 90%;
  margin: auto;
  padding: 10px;
  font-size: 1.3em;
  border: none;
  margin-left: auto;
  margin-right: auto;
  height: 100px;
  max-height: 120px;
  background: transparent;
}
.contact-section .contact-cont .contact-form form .contactBtn {
  position: relative;
  display: block;
  font-family: inherit;
  border: 0;
  padding: 0;
  height: 50px;
  width: 150px;
  background-color: #04979a;
  margin-left: auto;
  margin-right: auto;
  color: white;
}
.contact-section .contact-cont .contact-info {
  position: relative;
  font-size: 1.4em;
  width: 50%;
}

.footer {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: #04979a;
  z-index: 0;
}

@media only screen and (max-width: 1440px) {
  .landing-section .right-side .landing-img-cont img {
    height: 300px !important;
  }

  .about-section .about-left .about-text {
    padding: 10px !important;
  }
  .about-section .about-left .about-text .body {
    font-size: 0.9em !important;
  }

  .services-section .sidenote p {
    font-size: 1em !important;
  }
  .services-section .services-sec .right-sec {
    margin-top: 0 !important;
  }
  .services-section .services-sec .right-sec .title {
    height: 15% !important;
  }
  .services-section .services-sec .right-sec .title2 {
    width: 95% !important;
    font-size: 1em;
  }
  .services-section .services-sec .right-sec .services .left-serv li {
    width: 90% !important;
  }
  .services-section .services-sec .right-sec .services .right-serv li {
    width: 90% !important;
  }
  .services-section .services-banner .banner-bg img {
    height: 1200px;
    right: -200px;
    width: auto;
  }

  .nav .lower .logo-container .middle .title {
    font-size: 2em !important;
  }

  .nav-contact .lower .logo-container .right-side .middle .title p {
    display: none !important;
  }

  .diabetes-section .container-diab .diab-images .diab-img {
    margin: auto !important;
  }
  .diabetes-section .container-diab .diab-images #diabimg2 {
    margin: auto !important;
    float: none !important;
  }
  .diabetes-section .container-diab .diab-text {
    font-size: 1.1em !important;
    line-height: 1.4em !important;
  }
  .diabetes-section .title {
    font-size: 2.5em !important;
  }
}
@media only screen and (max-width: 1240px) {
  .landing-section .landing-text p {
    font-size: 1.6em !important;
  }

  .contact-section .contact-cont .contact-container {
    width: 70% !important;
  }
}
@media only screen and (max-width: 1080px) {
  .landing-section .right-side .landing-img-cont img {
    height: 230px !important;
  }
  .landing-section .landing-text p {
    font-size: 1.3em !important;
  }

  .about-section .about-img .img-container {
    height: 70% !important;
    top: 10% !important;
  }
  .about-section .about-left .about-text .title {
    font-size: 2.3em !important;
    width: 200px !important;
  }
  .about-section .about-left .about-text .name {
    font-size: 2.3em !important;
  }
  .about-section .about-left .about-text .body {
    font-size: 0.8em !important;
  }

  .services-section .services-sec .right-sec .title2 {
    font-size: 0.8em !important;
  }
  .services-section .services-sec .right-sec .services .left-serv li {
    font-size: 0.8em !important;
  }
  .services-section .services-sec .right-sec .services .right-serv li {
    font-size: 0.8em !important;
  }
  .services-section .sidenote p {
    font-size: 0.8em !important;
  }

  .contact-section .bg img {
    min-height: 110%;
    max-height: 150%;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    height: 90vh !important;
    width: auto !important;
    left: 0 !important;
  }
  .contact-section .contact-cont .contact-form {
    width: 60vw !important;
  }

  .nav .lower .logo-container .middle .title {
    font-size: 1.5em !important;
    display: none;
  }
  .nav .upper {
    width: 100% !important;
    padding-left: 5px !important;
  }

  .nav-contact .lower .menu-contact {
    width: 20% !important;
  }
  .nav-contact .lower .logo-container {
    width: 70% !important;
  }
  .nav-contact .upper {
    width: 100% !important;
  }

  .contact-cont {
    flex-direction: column-reverse !important;
  }
  .contact-cont .contact-info {
    width: 100% !important;
    margin-bottom: 50px !important;
  }
  .contact-cont .contact-container {
    height: 50% !important;
    width: 100% !important;
  }

  .diabetes-section .container-diab {
    flex-direction: column !important;
  }
  .diabetes-section .container-diab .diab-text {
    width: 100% !important;
    height: 60% !important;
    margin-left: auto !important;
  }
  .diabetes-section .container-diab .diab-images {
    width: 100% !important;
    height: 50% !important;
    flex-direction: row !important;
    top: 0 !important;
  }
  .diabetes-section .container-diab .diab-images .diab-img img {
    position: relative !important;
    margin: auto !important;
    position: relative !important;
    margin: auto !important;
  }
  .diabetes-section .title {
    width: 100% !important;
    margin-left: auto !important;
  }
}
@media only screen and (max-width: 820px) {
  .landing-section {
    flex-direction: column !important;
  }
  .landing-section .landing-text {
    width: 100% !important;
  }
  .landing-section .landing-text h1 {
    font-size: 1.5em;
  }
  .landing-section .landing-text p {
    margin: auto !important;
    display: block !important;
  }
  .landing-section .right-side {
    width: 100% !important;
    height: 50% !important;
  }

  .about-section .about-img .img-container {
    height: 50% !important;
    top: 25% !important;
  }
  .about-section .about-left .about-text .body {
    font-size: 0.7em !important;
  }

  .services-section .services-sec {
    flex-direction: column !important;
  }
  .services-section .services-sec .right-sec {
    width: 100% !important;
    height: 50% !important;
  }
  .services-section .services-sec .right-sec .title {
    height: 25% !important;
    font-size: 2em !important;
  }
  .services-section .services-sec .right-sec .title2 {
    height: 15% !important;
  }
  .services-section .services-sec .right-sec .services {
    height: 60% !important;
  }
  .services-section .services-sec .right-sec .services .left-serv li {
    margin-bottom: 5px;
  }
  .services-section .services-sec .right-sec .services .right-serv li {
    margin-bottom: 5px;
  }
  .services-section .services-sec .left-sec {
    width: 100% !important;
    height: 50% !important;
    display: flex !important;
    margin-top: 0 !important;
    flex-direction: column !important;
  }
  .services-section .services-sec .left-sec img {
    height: 200px !important;
    width: auto !important;
    margin: auto !important;
    bottom: 0 !important;
  }
  .services-section .services-sec .left-sec p {
    padding: 5px !important;
    width: 95% !important;
    font-size: 1.2em !important;
  }
  .services-section .sidenote {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .contact-section .contact-cont .contact-container {
    width: 90% !important;
  }
  .contact-section .contact-cont .contact-container .contact-form .form-group {
    width: 70% !important;
  }

  .nav-contact .upper {
    padding-left: 10px !important;
  }

  .diabetes-section .container-diab .diab-text {
    font-size: 0.9em !important;
  }

  .nav .lower .logo-container {
    width: 85% !important;
  }
  .nav .lower .logo-container .right-side .middle {
    display: none;
  }
}
@media only screen and (max-width: 620px) {
  .landing-section .landing-text p {
    font-size: 1em !important;
  }

  .about-section {
    flex-direction: column !important;
  }
  .about-section .about-left {
    width: 100% !important;
    height: 60% !important;
  }
  .about-section .about-left .about-text .title {
    font-size: 1.8em !important;
    margin-bottom: 0 !important;
  }
  .about-section .about-left .about-text .name {
    font-size: 1.8em !important;
    margin-bottom: 0 !important;
  }
  .about-section .about-left .about-text .body {
    margin-bottom: 0 !important;
    text-align: justify !important;
  }
  .about-section .about-img {
    width: 100% !important;
    height: 300px !important;
  }
  .about-section .about-img .img-container {
    height: 85% !important;
    width: 70% !important;
    top: 5% !important;
    right: 10px !important;
  }

  .services-section .services-sec .left-sec {
    height: 40% !important;
  }
  .services-section .services-sec .left-sec p {
    padding: 0 !important;
    font-size: 1em !important;
  }
  .services-section .services-sec .left-sec img {
    height: 200px !important;
  }
  .services-section .services-sec .right-sec {
    height: 60% !important;
  }
  .services-section .services-sec .right-sec .title2 {
    font-size: 0.7em !important;
  }

  .nav .upper .email {
    font-size: 0.8em;
  }
  .nav .upper .phone {
    font-size: 0.8em;
  }
  .nav .lower .logo-container .lower p {
    font-size: 1.6em !important;
  }
  .nav .lower .logo-container .lower img {
    height: 70% !important;
  }

  .nav-contact .upper .email {
    font-size: 0.8em !important;
  }
  .nav-contact .upper .phone {
    font-size: 0.8em !important;
  }
  .nav-contact .lower .logo-container .right-side .lower img {
    height: 40% !important;
  }
  .nav-contact .lower .logo-container .right-side .lower p {
    font-size: 1.5em !important;
  }
  .nav-contact .lower .menu-contact {
    width: 30% !important;
  }

  .contact-cont .contact-info {
    font-size: 1em !important;
  }
  .diabetes-section .title {
    font-size: 2em !important;
    font-size: 1.5em !important;
  }
  .diabetes-section .container-diab .diab-text {
    font-size: 0.8em !important;
  }

  .contact-section .contact-cont .contact-form .input-group {
    width: 70% !important;
  }
  .contact-section .contact-cont .contact-form .input-group-area {
    width: 65% !important;
  }

  .faqs-section .title {
    font-size: 2em !important;
  }
}
@media only screen and (max-width: 420px) {
  .landing-section .landing-text h1 {
    font-size: 1.3em;
  }

  .about-section .about-left .about-text .title {
    font-size: 1.3em !important;
    margin-bottom: 0 !important;
  }
  .about-section .about-left .about-text .name {
    font-size: 1.3em !important;
    margin-bottom: 0 !important;
  }
  .about-section .about-left .about-text .body {
    font-size: 0.7em !important;
  }

  .nav .upper .email {
    font-size: 0.6em;
  }
  .nav .upper .phone {
    font-size: 0.6em;
  }
  .nav .lower .logo-container .right-side {
    display: none;
  }

  .nav-contact .lower .logo-container .right-side .lower {
    display: none;
    height: 0 !important;
    overflow: hidden !important;
  }
  .nav-contact .lower .menu-contact {
    width: 50% !important;
  }

  .contact-cont .contact-container .contact-form .form-group {
    width: 90% !important;
  }
  .contact-cont .google-maps .info .contact-info {
    font-size: 1em !important;
    font-size: 1em !important;
  }

  .diabetes-section .container-diab .diab-text {
    font-size: 0.7em !important;
  }
  .diabetes-section .title {
    font-size: 1.2em !important;
  }
}
@media only screen and (max-width: 370px) {
  .landing-section .landing-text p {
    padding: 10px !important;
  }
  .landing-section .right-side .landing-img-cont img {
    height: 180px !important;
  }

  .about-section .about-left {
    height: 70% !important;
  }
  .about-section .about-img {
    height: 30% !important;
  }

  .services-section .services-sec .right-sec .title2 {
    font-size: 0.6em !important;
  }
  .services-section .services-sec .right-sec .services .left-serv li {
    font-size: 0.6em !important;
  }
  .services-section .services-sec .right-sec .services .right-serv li {
    font-size: 0.6em !important;
  }
  .services-section .sidenote p {
    padding: 5px !important;
  }

  .contact-section .title {
    font-size: 2em !important;
  }
  .contact-section .contact-cont {
    padding: 10px !important;
  }
  .contact-section .contact-cont .contact-container .contact-form .form-group {
    width: 100% !important;
  }
  .contact-section .contact-cont .contact-form .input-group {
    width: 90% !important;
  }
  .contact-section .contact-cont .contact-form .input-group-area {
    width: 80% !important;
  }

  .nav .upper {
    padding-left: 2% !important;
  }
  .nav .upper .email {
    font-size: 0.5em;
  }
  .nav .upper .phone {
    font-size: 0.5em;
  }
  .nav .lower .logo-container {
    width: 70% !important;
  }

  .faqs-section .title {
    font-size: 1.3em !important;
    height: 40px !important;
  }
  .faqs-section .message {
    font-size: 1em !important;
  }
}
@media only screen and (max-width: 290px) {
  .landing-section .right-side .landing-img-cont img {
    height: 140px !important;
  }
  .landing-section .landing-text p {
    font-size: 0.8em !important;
  }

  .services-section .services-sec .left-sec p {
    font-size: 0.7em !important;
  }
  .services-section .services-sec .right-sec .title {
    font-size: 1.2em !important;
    height: 18% !important;
  }
  .services-section .services-sec .right-sec .title2 {
    height: 20% !important;
  }

  .nav .lower .logo-container .lower p {
    font-size: 1.3em !important;
  }
  .nav .lower .logo-container .lower img {
    height: 50% !important;
  }

  .diabetes-section .container-diab .diab-text {
    font-size: 0.5em !important;
  }
}
@media only screen and (max-width: 1200px) {
  .active-menu {
    border-bottom: none !important;
  }

  .nav .lower .menu ul li .title {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .burger {
    margin: 30px;
    position: absolute;
    right: 10px;
    z-index: 10;
    height: 30px;
    z-index: 30;
    cursor: pointer;
  }
  .burger .line {
    width: 30px;
    height: 4px;
    background: black;
    margin: 5px;
    border-radius: 40px !important;
  }

  .menu {
    position: fixed !important;
    height: 100vh !important;
    top: 0 !important;
    width: 100% !important;
    font-family: "Nunito", sans-serif;
    z-index: 10;
  }
  .menu ul {
    display: flex;
    position: relative;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    align-items: center !important;
    justify-content: space-evenly !important;
    margin-left: auto !important;
    margin-right: auto !important;
    background-color: #57b6b8;
    padding: 0 !important;
    transition: 1s all ease-out;
  }
  .menu ul li {
    vertical-align: middle !important;
    text-align: center !important;
    position: relative !important;
    width: 15% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .menu ul li a {
    color: white;
    text-decoration: none;
  }
}

/*# sourceMappingURL=index.css.map */
