/*@font-face {
  font-family: 'Proxima Nova';
  src: url("fonts/ProximaNova-Light.eot");
  src: url("fonts/ProximaNova-Light.eot?#iefix") format("embedded-opentype"), url("fonts/ProximaNova-Light.woff2") format("woff2"), url("fonts/ProximaNova-Light.woff") format("woff"), url("fonts/ProximaNova-Light.ttf") format("truetype"), url("fonts/ProximaNova-Light.svg#ProximaNova-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url("fonts/ProximaNova-Regular.eot");
  src: url("fonts/ProximaNova-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/ProximaNova-Regular.woff2") format("woff2"), url("fonts/ProximaNova-Regular.woff") format("woff"), url("fonts/ProximaNova-Regular.ttf") format("truetype"), url("fonts/ProximaNova-Regular.svg#ProximaNova-Regular") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url("fonts/ProximaNova-Medium.eot");
  src: url("fonts/ProximaNova-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/ProximaNova-Medium.woff2") format("woff2"), url("fonts/ProximaNova-Medium.woff") format("woff"), url("fonts/ProximaNova-Medium.ttf") format("truetype"), url("fonts/ProximaNova-Medium.svg#ProximaNova-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url("fonts/ProximaNova-Semibold.eot");
  src: url("fonts/ProximaNova-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/ProximaNova-Semibold.woff2") format("woff2"), url("fonts/ProximaNova-Semibold.woff") format("woff"), url("fonts/ProximaNova-Semibold.ttf") format("truetype"), url("fonts/ProximaNova-Semibold.svg#ProximaNova-Semibold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url("fonts/ProximaNova-Bold.eot");
  src: url("fonts/ProximaNova-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/ProximaNova-Bold.woff2") format("woff2"), url("fonts/ProximaNova-Bold.woff") format("woff"), url("fonts/ProximaNova-Bold.ttf") format("truetype"), url("fonts/ProximaNova-Bold.svg#ProximaNova-Bold") format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}*/

#hamburger {
  width: 35px;
  height: 18px;
  position: relative;
  display: none;
}

#hamburger .line {
  display: block;
  background-color: #002458;
  width: 35px;
  height: 2px;
  position: absolute;
  left: 0;
  border-radius: 1px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

#hamburger .line.line-1 {
  top: 0;
}

#hamburger .line.line-2 {
  top: 50%;
}

#hamburger .line.line-3 {
  top: 100%;
}

#hamburger:hover .line-1, #hamburger:focus .line-1 {
  transform: translateY(-1px);
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
}

#hamburger:hover .line-3, #hamburger:focus .line-3 {
  transform: translateY(1px);
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
}

#hamburger.active .line-1 {
  transform: translateY(9px) translateX(0) rotate(45deg);
  -webkit-transform: translateY(9px) translateX(0) rotate(45deg);
  -moz-transform: translateY(9px) translateX(0) rotate(45deg);
}

#hamburger.active .line-2 {
  opacity: 0;
}

#hamburger.active .line-3 {
  transform: translateY(-9px) translateX(0) rotate(-45deg);
  -webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
  -moz-transform: translateY(-9px) translateX(0) rotate(-45deg);
}

#hamburger {
  cursor: pointer;
}

@media (max-width: 991px) {
  .nav {
    padding: 15px 0;
  }
  .nav__right {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
  }
  .sub__nav a:hover {
    color: #8eafcb;
  }
  .sub__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #132f65;
    width: 100%;
    padding-top: 25px;
  }
  .sub__nav li {
    padding: 0 25px 25px;
  }
}

@media only screen and (min-width: 563px) and (max-width: 992px) {
  #hamburger {
    margin-left: auto;
  }
}

@media (max-width: 700px) {
  .sub__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 561px) {
  .nav {
    padding: 10px 0;
  }
  .nav__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav__right {
    top: 90px;
  }
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #002458;
}

svg {
  max-width: 100%;
  width: 100%;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

path {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

img {
  max-width: 100%;
}

body {
  counter-reset: section;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 22px;
}

body *, body *:before, body *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

p {
  margin-top: 0;
  font-size: 18px;
  line-height: 1.5;
}

.page__content {
  background-image: url(../images/medical_shapes.html);
  background-position: left center;
  background-repeat: repeat;
  background-size: 250%;
  background-attachment: fixed;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

::-moz-selection {
  background-color: #002458;
  color: #ffffff;
}

::selection {
  background-color: #002458;
  color: #ffffff;
}

.container {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1600px;
  padding: 0 15px;
  min-height: 100%;
}

.container-small {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
  padding: 0 15px;
}

.container-extrasmall {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 768px;
  padding: 0 15px;
}

ul {
  padding-left: 0;
  list-style: none !important;
  margin: 0 !important;
}

.dics__list {
  list-style: disc !important;
  padding-left: 20px !important;
}

.number__list {
  list-style: decimal !important;
  padding-left: 20px !important;
}

a {
  text-decoration: none;
}

.hide {
  display: none;
}

input, button {
  font-family: inherit;
}

.white__bg {
  background-color: #ffffff;
}

.text-white {
  color: #ffffff;
}

.text-blue {
  color: #00A1E9;
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.justify-content-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}

.col {
  padding-left: 15px;
  padding-right: 15px;
}

.col-lg-3 {
  max-width: 25%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
}

.col-lg-4 {
  max-width: 33.33%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
}

.col-lg-5 {
  max-width: 41.666667%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.666667%;
          flex: 0 0 41.666667%;
}

.col-lg-6 {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.col-lg-7 {
  max-width: 58.333333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.333333%;
          flex: 0 0 58.333333%;
}

.col-lg-8 {
  max-width: 66.67%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.67%;
          flex: 0 0 66.67%;
}

.col-lg-9 {
  max-width: 75%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
}

.col-lg-12 {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.mb-0 {
  margin-bottom: 0;
}

.responsive-table {
  overflow: auto;
}

.table {
  width: 100%;
  border: 1px solid #1A3A69;
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 10px;
}

.table tr td {
  color: #0D3467;
  font-weight: 500;
  font-size: 22px;
  border: 1px solid #1A3A69;
  padding: 25px;
}

.table tr:nth-child(even) td {
  background-color: rgba(0, 0, 0, 0.1);
}

.btn {
  display: inline-block;
  padding: 22px 50px;
  line-height: normal;
  text-decoration: none;
  background-color: #002458;
  color: #ffffff;
  font-size: 22px;
  letter-spacing: 1px;
  border-radius: 16px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  border: 2px solid #ffffff;
  font-family: inherit;
  cursor: pointer;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.btn:hover {
  background-color: #00A1E9;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.btn-blue {
  background-color: #00A1E9;
}

.btn-blue.effect-btn:before {
  background-color: #002458;
}

.effect-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.effect-btn:before {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: #00A1E9;
  z-index: -1;
}

.effect-btn:hover:before {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

@media (max-width: 1750px) {
  .btn {
    padding: 20px 45px;
    font-size: 20px;
  }
}

@media (max-width: 1600px) {
  .container {
    max-width: 1400px;
  }
  .btn {
    padding: 15px 40px;
    font-size: 18px;
  }
  .table tr td {
    font-size: 16px;
    padding: 15px;
  }
}

@media (max-width: 1400px) {
  .container {
    max-width: 1250px;
  }
}

@media (max-width: 1300px) {
  .container {
    max-width: 1170px;
  }
  .btn {
    border-radius: 12px;
  }
}

@media (max-width: 1199px) {
  .container {
    max-width: 100%;
  }
  .btn {
    padding: 15px 25px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
  .col-md-4, .col-md-4.col {
    max-width: 33.33%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
  }
  .col-md-6, .col.col-md-6 {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .col-md-5 {
    max-width: 41.666667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
            flex: 0 0 41.666667%;
  }
  .col-md-7 {
    max-width: 58.333333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
            flex: 0 0 58.333333%;
  }
  .col-md-8 {
    max-width: 66.67%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.67%;
            flex: 0 0 66.67%;
  }
  .col-md-12 {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

@media (max-width: 767px) {
  .col-sm-12.col, .col-sm-12 {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

* {
  outline: none !important;
}

h2.sec-heading {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  padding: 30px 0;
}

header .logo img {
  display: block;
}

section {
  position: relative;
  z-index: 9;
}

.main__title {
  color: #ffffff;
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: bold;
}

.section__space {
  padding: 100px 0;
}

.top-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-menu > ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.top-menu li {
  padding: 0 15px;
}

.top-menu li a {
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  color: #00A1E9;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.top-menu .menu-item-has-children a {
  padding-right: 20px;
}

header.fixed-header {
  background-color: #ffffff;
}

.submenu {
  position: absolute;
  left: -20px;
  padding: 10px;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  min-width: 150px;
}
.submenu .down-arrow { display: none; }

.submenu a {
  padding: 5px !important;
  width: 100%;
}

.submenu.current-menu-item {
  opacity: 1;
  visibility: visible;
}

.submenu.current-menu-item .main__li.current-menu-item > a, .submenu.current-menu-item .main__li:hover > a {
  border-color: #002458;
  color: #002458;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.main__li {
  position: relative;
  padding: 0;
}

.main__li:hover .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.main__li.current-menu-item > a, .main__li:hover > a, .main__li.current-menu-ancestor > a {
  border-color: #002458;
  color: #002458;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.main__li .down-arrow {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7.5px 0 7.5px;
  border-color: #009fe9 transparent transparent transparent;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.main__li.current-menu-item .down-arrow, .main__li:hover .down-arrow, .main__li.current-menu-ancestor > .down-arrow {
  border-color: #002458 transparent transparent transparent;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.hero__banner {
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__banner--content {
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: auto;
  right: auto;
  bottom: auto;
}

.hero__banner--content h1 {
  color: #002458;
  font-size: 50px;
  max-width: 800px;
  line-height: 1.2;
}

.banner__instruction {
  position: absolute;
  top: auto;
  bottom: 30px;
  left: auto;
}

.banner__instruction p {
  margin-bottom: 0;
  font-weight: 500;
}

.about--block {
  background-color: rgba(0, 36, 88, 0.9);
}

.about__description {
  padding: 140px 20px 140px 10vw;
}

.about__description h2 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 60px;
}

.about__description .btn {
  background-color: #00A1E9;
}

.about__banner img {
  width: 100%;
  display: block;
}

.key--block {
  background-color: rgba(0, 161, 233, 0.9);
  padding: 60px 0;
}

.key__list {
  margin: 0 -60px;
}

.key__list .col {
  padding: 0 50px;
}

.key__item .key__icon {
  margin-bottom: 30px;
}

.key__item:hover svg path {
  fill: #002458;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.key__item .key__content h3 {
  font-size: 34px;
  margin-bottom: 30px;
}

.key__item .key__content ul {
  padding-left: 35px;
}

.key__item .key__content ul li {
  position: relative;
  margin-bottom: 30px;
  padding-left: 35px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.4;
}

.key__item .key__content ul li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #002458;
}

.opportunity--block {
  padding: 50px 0;
  background-color: rgba(255, 255, 255, 0.8);
}

.opportunity--block h2 {
  margin-bottom: 50px;
  font-size: 38px;
}

.opportunity--block .instruction {
  margin-top: 30px;
}

.opportunity--block .instruction p {
  margin: 0;
  font-weight: 500;
}

.calender__item {
  position: relative;
}

.calender__item .calender__icon {
  margin-bottom: 30px;
}

.calender__item .calender__icon img {
  display: block;
  margin: 0 auto;
}

.calender__item:hover svg path {
  fill: #00A1E9;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.calender__item .calender__year {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  right: auto;
  bottom: auto;
}

.calender__item .calender__year span {
  font-size: 42px;
  font-weight: 600;
  display: block;
  margin-top: -10px;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.calender__item:hover span {
  color: #00A1E9;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.calender__item h3 {
  font-size: 40px;
  font-weight: 600;
}

.direction__arrow {
  margin: 0 30px;
  height: 100%;
}

.carg__rates {
  position: relative;
}

.carg__rates img {
  display: block;
}

.carg__rates .carg__rate {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  right: auto;
  bottom: auto;
  text-align: center;
}

.carg__rates .carg__rate h4 {
  margin-top: 65px;
  font-size: 36px;
  line-height: 1.2;
  color: #ffffff;
}

.carg__rates .carg__rate h4 sup {
  font-weight: 500;
  font-size: 18px;
}

.opportunity--block .find__more {
  margin-left: 100px;
}

.footer-top {
  position: relative;
  background-color: #002458;
  padding: 20px 0;
}

.footer-top p {
  margin: 0;
  color: #ffffff;
  font-weight: 500;
}

.inner_hero__banner {
  height: 700px;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-size: cover;
}

.about__main .about__description {
  padding-right: 100px;
}

.about__main .about__description h2 {
  color: #00A1E9;
  margin-bottom: 30px;
}

.about__main .about__description p {
  font-size: 20px;
  line-height: 1.4;
  text-align: justify;
}

.about__main .about__description ul {
  padding-left: 18px;
  list-style: disc !important;
}

.about__main .about__description ul li {
  text-align: justify;
  font-size: 20px;
  line-height: 1.4;
}

.about__main .about__description ul li:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #00A1E9;
}

.about__main .about__description .intruction {
  position: absolute;
  top: auto;
  bottom: 20px;
  left: auto;
  margin: 0;
}

.about__main .about__banner {
  position: relative;
  padding-top: 100%;
  height: 100%;
}

.about__main .about__banner img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.historical--block {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.9);
}

.historical--block h2 {
  color: #00A1E9;
  font-size: 46px;
}

.historical--block .historical__des {
  padding-right: 30px;
  text-align: justify;
}

.historical--block ul {
  padding-left: 18px;
  list-style: disc !important;
}

.historical--block ul li {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 30px;
}

.historical--block .historical__img {
  margin-top: -105px;
}

/* Health Care Block CSS */
.health__care--block {
    background-color: rgba(0, 36, 88, 0.86);
    padding: 50px 0;
}
.reasons__list {
    width: 90%;
    margin: 0 auto;
}
.reason__item .reason__des h5, 
.mens__condition-item .condition__des h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 0;
}
.reason__item .reason__des p {
    font-weight: 400;
    margin: 0;
}
.reasons__list .col:not(:last-child) .reason__item {
    border-right: 1px solid #00A1E9;
    padding-right: 60px;
    height: 100%;
}

.mens__conditions {
    margin-top: 100px;
}
.mens__conditions h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 70px;
}
.mens__condition__list {
    width: 75%;
    margin: 0 auto 90px;
}
.mens__condition__list .col {
    max-width: 20%;
    flex: 0 0 20%;
}
.mens__condition__list .col:not(:last-child) .mens__condition-item  {
    border-right: 1px solid #00A1E9;
    padding-right: 40px;
    height: 100%;
}
.mens__condition__list .col:first-child .mens__condition-item h5 {
    width: 80%;
}

.health__care--block .instruction {
    font-weight: 100;
    font-size: 14px;
    width: 95%;
    margin-left: auto;
    margin-bottom: 0;
}
/* Health Care Block CSS */

.problems--block {
  background-color: rgba(0, 36, 88, 0.86);
  padding: 140px 0;
}

.problems__heading,
.health__care--block .health__heading {
  margin-bottom: 100px;
}

.problems__heading h2,
.health__care--block .health__heading .sec-heading {
  font-weight: 500;
  font-size: 50px;
  margin-bottom: 20px;
  color: #00A1E9;
}

.problems__heading p,
.health__care--block .health__heading p {
  font-weight: 500;
  margin-bottom: 0;
  font-size: 30px;
}

.problem__item .problem__img:hover svg path,
.reason__icon:hover svg path,
.condition__icon:hover svg path {
  fill: #ffffff;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.reasons__list .col:first-child .reason__icon:hover svg path:last-child {
    fill: #000000;
}

.problem__item .problem__des,
.reason__item .reason__des,
.mens__condition-item .condition__des {
  margin-top: 30px;
}

.problem__item .problem__des p {
  font-weight: 300;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.4;
}

.solution--block {
  background-color: #00A1E9;
  padding: 250px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution--block:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -9;
  background-color: #002458;
  opacity: 0.3;
}

.solution__content h2 {
  font-weight: 700;
  font-size: 60px;
  margin-bottom: 60px;
}

.solution__content h4 {
  font-weight: 600;
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 60px;
  max-width: 1250px;
  margin: 0 auto;
}

.comparison--block {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.9);
}

.comparison__heading {
  margin-bottom: 60px;
}

.comparison__heading h3 {
  color: #00A1E9;
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 30px;
}

.comparison__heading h5 {
  font-weight: 600;
  font-size: 34px;
}

.acesis__plans .intruction {
  font-size: 15px;
  margin: 0;
}

.acesis__plans .intruction a {
  color: #002458;
}

.acesis__plans__table .table thead tr td {
  background-color: rgba(0, 36, 88, 0.9);
  color: #ffffff;
}

.acesis__plans__table .table thead tr td:not(:last-child) {
  border-right-color: #EFEFEF;
}

.pipeline__main {
  margin-top: 70px;
}

.pipeline__main h2 {
  color: #00A1E9;
  font-size: 50px;
  margin-bottom: 30px;
}

.pipeline__main h5 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}

.pipeline__table {
  margin-bottom: 30px;
}

.pipeline__table .table thead tr td {
  color: #ffffff;
  background-color: #00A1E9;
  text-transform: uppercase;
}

.pipeline__table .table thead tr td:nth-child(1) {
  background-color: #03285C;
}

.pipeline__table .table thead tr td:nth-child(3) {
  background-color: #002458;
}

.pipeline__table .table thead tr td:nth-child(4) {
  background-color: #085DC9;
}

.pipeline__table .table tr td {
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.pipeline__table .table tr td ul {
  list-style: disc !important;
  padding-left: 20px;
}

.pipeline__table .table tr td:first-child, .pipeline__table .table tr td:last-child {
  text-align: left;
}

.pipeline__main p {
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

.market__opportunity--block {
  padding: 300px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.market__opportunity--block .container {
  text-align: center;
}

.market__opportunity--block h2.sec-heading {
  font-size: 70px;
}

.market__opportunity--block:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -9;
  background-color: #002458;
  opacity: 0.3;
}

.publications--block {
  background-color: rgba(0, 36, 88, 0.9);
  padding: 140px 0;
}

.publications__list {
  margin: 0 -80px;
}

.publication__item {
  padding: 0 80px 50px;
}

.publication__item .publications__pdf {
  padding: 0 40px;
  position: relative;
/*   overflow: hidden; */
  padding-top: 100%;
}

.publication__item .publications__pdf img {
  width: auto;
  height: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.publication__item .publications__des {
  margin-top: 10px;
}

.publication__item .publications__des .file__name {
  font-weight: 300;
  font-size: 25px;
  margin-bottom: 20px;
  height: 63px;
/*   overflow: hidden;
  text-overflow: ellipsis; */
  display: -webkit-box;
/*   -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
}

.publication__item .publications__des a svg {
  width: 70px;
}

.publication__item .publications__des a svg path {
  fill: #ffffff;
}

.publication__item .publications__des a svg:hover path {
  fill: #00A1E9;
}

.market_opportunity--block {
  background-color: rgba(0, 36, 88, 0.9);
}

.market_opportunity__des {
  padding: 120px 30px 140px 10vw;
  position: relative;
  height: 100%;
}

.market_opportunity__des h2 {
  font-weight: 500;
  font-size: 55px;
  margin-bottom: 40px;
}

.market_opportunity__des p {
  font-size: 22px;
}

.market_opportunity__des p.instruction {
  position: absolute;
  top: auto;
  bottom: 20px;
  left: auto;
  right: auto;
  margin: 0;
  font-size: 16px;
}

.market_opportunity__play img {
  width: 100%;
  display: block;
}

.market__potential--block {
  padding: 70px 0 20px;
  background-color: rgba(0, 161, 233, 0.85);
}

.market__potential__title {
  margin-bottom: 40px;
}

.market__potential__title h2 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 25px;
}

.market__potential__title p {
  font-size: 32px;
}

.market__potential__main {
  padding-bottom: 100px;
}

.market__potential__main h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 40px;
}

.market__potential__main .calender__item h3 {
  font-weight: 700;
}

.market__potential__main .calender__item span {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.market__potential__main .calender__item:hover svg path {
  fill: #ffffff;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.market__potential__main .calender__item:hover span {
  color: #ffffff;
}

.market__potential__main .carg__rates .carg__rate h4 {
  color: #002458;
}

.market__potential__main .direction__arrow svg path, .market__potential__main .carg__rates svg path {
  fill: #ffffff;
  stroke: #ffffff;
}

.market__potential__main .instruction {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: auto;
}

.addressable_market--block {
  padding: 70px 0;
}

.addressable_market--block:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -9;
  background-color: #002458;
  opacity: 0.9;
}

.addressable_market__title h2 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 30px;
}

.addressable_market__title p {
  font-size: 32px;
  font-weight: 500;
}

.country__population__item .country__des {
  margin-top: -5px;
  margin-left: 60px;
}

.country__population__item .country__des .popuplation__count h3 {
  font-size: 40px;
  font-weight: 500;
  margin-left: 60px;
}

.country__population__item .country__list .country__item {
  margin-left: 60px;
  margin-top: 15px;
}

.country__population__item .country__list .country__item img {
  margin-right: 10px;
}

.country__population__item .country__list .country__item span {
  font-size: 26px;
  font-weight: 500;
}

.country__population__list {
  padding: 0 50px;
}

.country__population__list .col:nth-child(2) .country__des {
  margin-top: -70px;
  margin-left: 0;
}

.country__population__list .col:nth-child(3) .country__des {
  margin-top: -120px;
  margin-left: -20px;
}

.population__intruction {
  margin-top: 40px;
}

.population__intruction h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.population__intruction h4 sup {
  font-size: 18px;
}

.population__intruction h3 {
  font-size: 24px;
  font-weight: 300;
  margin: 15px 0;
}

.population__intruction .number__list li {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 300;
}

.population__intruction .dics__list li::marker {
  color: #00A1E9;
}

.markets__acesis--block {
  padding: 70px 0;
  background-color: rgba(255, 255, 255, 0.85);
}

.markets__acesis--block h2 {
  margin-bottom: 40px;
  font-weight: 600;
  font-size: 44px;
}

.markets__acesis--block .intruction ul li {
  font-weight: 500;
}

.markets__acesis__list {
  padding: 0 50px 150px;
}

.markets__acesis__list .col:nth-child(1) .markets__acesis .markets__acesis__shape svg, .markets__acesis__list .col:nth-child(4) .markets__acesis .markets__acesis__shape svg {
  opacity: 0.85;
}

.markets__acesis__list .col:nth-child(2) .markets__acesis .calender__item svg path, .markets__acesis__list .col:nth-child(3) .markets__acesis .calender__item svg path {
  fill: #00A1E9;
}

.markets__acesis__list .col:nth-child(2) .markets__acesis .calender__item .calender__year span, .markets__acesis__list .col:nth-child(3) .markets__acesis .calender__item .calender__year span {
  color: #ffffff;
}

.markets__acesis__list .col:nth-child(2) .markets__acesis .calender__item:hover svg path, .markets__acesis__list .col:nth-child(3) .markets__acesis .calender__item:hover svg path {
  fill: #ffffff;
}

.markets__acesis__list .col:nth-child(2) .markets__acesis {
  top: 150px;
  left: -80px;
}

.markets__acesis__list .col:nth-child(3) .markets__acesis {
  top: -50px;
  left: 200px;
}

.markets__acesis__list .col:nth-child(4) .markets__acesis {
  top: 100px;
  right: -120px;
}

.markets__acesis__list .col:nth-child(4) .markets__acesis .direction__arrow {
  margin: 0 25px;
}

.markets__acesis__list .col:nth-child(4) .markets__acesis .carg__rates {
  margin-left: 30px;
}

.markets__acesis {
  position: relative;
  padding: 0 0 70px;
  z-index: 9;
}

.markets__acesis .markets__acesis__des > h3 {
  font-weight: 500;
  font-size: 32px;
}

.markets__acesis .direction__arrow svg path, .markets__acesis .carg__rates svg path {
  fill: #ffffff;
  stroke: #ffffff;
}

.markets__acesis .carg__rates .carg__rate h4 {
  margin-top: 60px;
  font-size: 22px;
  line-height: 1;
  color: #002458;
}

.markets__acesis .carg__rates .carg__rate h4 sup {
  font-size: 16px;
}

.markets__acesis .calender__item h3 {
  font-size: 24px;
}

.markets__acesis .calender__item .calender__icon {
  margin-bottom: 15px;
  text-align: center;
}

.markets__acesis .calender__item .calender__icon svg {
  width: 110px;
  height: 110px;
}

.markets__acesis .calender__item:hover .calender__icon svg path {
  fill: #ffffff;
  fill-transition: all 0.6s ease-in-out;
}

.markets__acesis .calender__item .calender__year span {
  font-size: 34px;
  font-weight: 700;
}
.markets__acesis__list .col:last-child .markets__acesis .calender__item .calender__year span {
    margin-top: 15px;
}
.markets__acesis .calender__item:hover span {
  color: #ffffff;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.markets__acesis .direction__arrow {
  margin: 0 10px;
  height: 180px;
}

.markets__acesis .direction__arrow svg {
  width: 80px;
}

.markets__acesis .rate__up__arrow svg {
  width: 130px;
  height: auto;
}

.markets__acesis .market__icon {
  margin-top: 40px;
}

.markets__acesis .market__icon svg {
  width: 150px;
  height: 150px;
}

.markets__acesis .markets__acesis__des {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.biomed__team--block {
  padding: 70px 0;
  background-color: rgba(0, 36, 88, 0.9);
}

.biomed__team--block h2 {
  font-size: 50px;
}

.biomed__team--block .sub__title {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 50px;
}

.team__list .col {
  padding: 0 100px;
}

.team__item {
  margin-bottom: 60px;
}

.team__item .team__img {
  width: 250px;
  margin: 0 auto;
}

.team__item .team__img img {
  width: 100%;
  border: 2px solid #00A1E9;
  border-radius: 50%;
  display: block;
}

.team__item .team__post {
  margin-top: 15px;
}

.team__item .team__post h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.team__item .team__post h5 {
  font-size: 25px;
  font-weight: 500;
}

.team__item .team__bio {
  margin-top: 25px;
  border: 1px solid #00A1E9;
  padding: 20px;
}

.team__item .team__bio .read__bio {
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  display: block;
  position: relative;
}

.team__item .team__bio .read__bio span {
  position: absolute;
  top: -5px;
  right: 10px;
  width: 40px;
  height: 40px;
  line-height: 1.3;
  display: block;
  background-color: #00A1E9;
  color: #ffffff;
  text-align: center;
  font-size: 34px;
  border-radius: 50%;
}

.team__item .team__bio .read__bio .minus {
  display: none;
  line-height: 1.15;
}

.team__item .team__bio .read__bio.show .plus {
  display: none;
}

.team__item .team__bio .read__bio.show .minus {
  display: block;
}

.team__item .team__bio .team__bio__des {
  display: none;
  margin-top: 30px;
}

.team__item .team__bio .team__bio__des ul {
  min-height: 280px;
}

.team__item .team__bio .team__bio__des ul li {
  margin-bottom: 20px;
  line-height: 1.3;
  font-size: 21px;
  font-weight: 300;
}

.team__item .team__bio .team__bio__des ul li::marker {
  color: #00A1E9;
}

.team__item .team__logos {
  margin: 70px -15px 0;
}

.team__item .team__logos .team__logo {
  max-width: calc(100% / 4 - 10px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 4 - 10px);
          flex: 0 0 calc(100% / 4 - 10px);
  padding: 0 10px;
}

.independent__directors {
  margin-top: 50px;
}

.scientific__advisory--block {
  padding: 80px 0;
  background-color: rgba(0, 161, 233, 0.8);
}

.scientific__advisory--block .team__list {
  margin: 0 -80px;
}

.scientific__advisory--block .team__list .col {
  padding: 0 80px;
}

.scientific__advisory--block h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 70px;
}

.scientific__advisory--block .team__item .team__logos .team__logo {
  max-width: calc(100% / 3 - 10px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3 - 10px);
          flex: 0 0 calc(100% / 3 - 10px);
}

.scientific__advisory--block .team__item .team__img img {
  border-color: #002458;
}

.scientific__advisory--block .team__item .team__bio {
  border-color: #002458;
}

.scientific__advisory--block .team__item .team__bio .read__bio {
  font-size: 26px;
  color: #002458;
}

.scientific__advisory--block .team__item .team__bio .read__bio span {
  background-color: #002458;
}

.scientific__advisory--block .team__item .team__post h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.scientific__advisory--block .team__item .team__bio__des p {
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin-bottom: 5px;
}

.page__content.contact-page {
  background-image: none;
  margin-top: 130px;
}

.contact__banner img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.contact__information {
    position: static;
    padding-top: 100px;
    padding-left: 11vw;
    width: 45%;
    height: auto;
    padding-bottom: 100px;
}

.contact__banner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
section.contact-block {
    min-height: 100vh;
}
.contact__logo {
    position: relative;
}

.contact__address {
  margin-top: 30px;
}

.contact__address h4 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact__address address {
  font-style: normal;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
}

.contact__form {
  margin-top: 30px;
}

.contact__form h3 {
  font-weight: 500;
  margin-bottom: 15px;
}

.contact__form .form-group {
  margin-bottom: 15px;
  position: relative;
}

.contact__form .form-group textarea {
  resize: none;
}

.contact__form .form-group .form-control {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #00A1E9;
  border-radius: 0;
  padding: 20px 15px;
  font-size: 22px;
  color: #00A1E9;
  width: 100%;
}

.contact__form .form-group .form-control::-webkit-input-placeholder {
  color: #00A1E9;
}

.contact__form .form-group .form-control::-moz-placeholder {
  color: #00A1E9;
}

.contact__form .form-group .form-control:-ms-input-placeholder {
  color: #00A1E9;
}

.contact__form .form-group .form-control:-moz-placeholder {
  color: #00A1E9;
}

.contact__form .form-group .btn {
  width: 100%;
  border: 1px solid #00A1E9;
  background-color: #ffffff;
  border-radius: 0;
  color: #00A1E9;
  text-transform: uppercase;
  padding: 20px 30px;
}

.contact__form .form-group .btn:hover {
  background-color: #00A1E9;
  border-color: #ffffff;
  color: #ffffff;
}

.contact__form .form-group .ajax-loader {
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
}

.contact__form .form-group .wpcf7-not-valid-tip {
  font-size: 16px;
  display: block;
  margin-top: 5px;
  color: #c10000;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 10px 15px;
  font-size: 16px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #c10000;
  color: #c10000;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #12ad12;
  color: #12ad12;
}

.screen-reader-response {
  display: none;
}

/* 404 Page CSS */
body.error404 header {
    background-color: #ffffff;
}
.error-404.not-found {
    height: 100vh;
    flex-direction: column;
    background-color: rgba(0, 161, 233, 0.9);
    padding: 0 15px;
    margin-top: 108px;
}
.error-404.not-found h1 {
    font-size: 60px;
    margin-bottom: 20px;
}
.error-404.not-found p {
    margin-bottom: 50px;
}
/* 404 Page CSS */

@media (max-width: 991px) {
  .main__li {
    display: block;
  }
  .head__right {
    position: fixed;
    width: 100%;
    top: 80px;
    left: 0;
    display: none;
    background: rgba(0, 0, 0, 0.9);
  }
  .head__right a {
    width: 100%;
    padding: 15px !important;
  }
  .head__right > ul:last-of-type {
    padding: 20px;
    display: block;
    text-align: center;
  }
}

@media (max-width: 1850px) {
  .about__description {
    padding: 100px 20px 100px 7vw;
  }
  .about__description h2 {
    font-size: 46px;
  }
  .market_opportunity__des {
    padding: 140px 20px 140px 7vw;
  }
  .team__list {
    margin: 0 -100px;
  }
  .team__list .col {
    padding: 0 100px;
  }
  .team__item .team__img img {
    width: 200px;
    margin: 0 auto;
  }
  .team__item .team__post h4 {
    font-size: 22px;
  }
  .team__item .team__post h5 {
    font-size: 20px;
  }
  .team__item .team__bio {
    padding: 20px;
  }
  .team__item .team__bio .read__bio {
    font-size: 26px;
  }
  .team__item .team__bio .read__bio span {
    width: 35px;
    height: 35px;
    line-height: 1.4;
    font-size: 28px;
  }
  .team__item .team__bio .team__bio__des ul {
    min-height: 230px;
  }
  .team__item .team__bio .team__bio__des ul li {
    font-size: 20px;
  }
  .biomed__team--block .sub__title {
    font-size: 26px;
  }
  .scientific__advisory--block h2 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 40px;
  }
  .scientific__advisory--block .team__list {
    margin: 0 -30px;
  }
  .scientific__advisory--block .team__list .col {
    padding: 0 30px;
  }
  .scientific__advisory--block .team__item .team__post h4 {
    font-size: 18px;
  }
  .scientific__advisory--block .team__item .team__bio .read__bio {
    font-size: 20px;
  }
  .contact__information {
    padding-top: 30px;
    padding-left: 6vw;
  }
  .contact__address address {
    font-size: 24px;
  }
  .contact__form h3 {
    font-size: 23px;
  }
}

@media (max-width: 1750px) {
  .main__title {
    margin-bottom: 20px;
    font-size: 32px;
  }
  h2.sec-heading {
    font-size: 46px;
  }
  p {
    font-size: 16px;
  }
  .top-menu li a {
    font-size: 18px;
  }
  .main__li .down-arrow {
    border-width: 7px 7px 0 7px;
  }
  .hero__banner--content h1 {
    max-width: 700px;
    font-size: 46px;
  }
  .banner__instruction p {
    font-size: 14px;
  }
  .about__description {
    padding: 100px 20px 100px 4vw;
  }
  .key__list {
    margin: 0 -30px;
  }
  .key__list .col {
    padding: 0 30px;
  }
  .key__item .key__content h3 {
    font-size: 30px;
  }
  .key__item .key__content ul {
    padding-left: 20px;
  }
  .key__item .key__content ul li {
    padding-left: 20px;
    font-size: 20px;
  }
  .opportunity--block h2 {
    font-size: 34px;
  }
  .calender__item h3 {
    font-size: 34px;
  }
  .direction__arrow {
    margin: 0 20px;
  }
  .instruction p {
    font-size: 14px;
  }
  .inner_hero__banner {
    height: 600px;
  }
  .publications__list {
    margin: 0 -40px;
  }
  .publication__item {
    padding: 0 30px 30px;
  }
  .publication__item .publications__des .file__name {
    font-size: 22px;
  }
  .market_opportunity__des {
    padding: 140px 20px 140px 4vw;
  }
  .market_opportunity__des h2 {
    font-size: 50px;
  }
  .market_opportunity__des p {
    font-size: 20px;
  }
  .market__potential__title h2 {
    font-size: 42px;
    margin-bottom: 15px;
  }
  .market__potential__title p {
    font-size: 26px;
  }
  .market__potential__main h2 {
    font-size: 38px;
    margin-bottom: 30px;
  }
  .addressable_market__title p {
    font-size: 28px;
  }
  .country__population__item .country__des .popuplation__count h3 {
    font-size: 34px;
  }
  .country__population__item .country__list .country__item span {
    font-size: 24px;
  }
  .markets__acesis--block h2 {
    font-size: 38px;
  }
  .markets__acesis--block .intruction ul li small {
    font-size: 14px;
  }
  .markets__acesis__list {
    padding: 0 150px 150px;
  }
  .markets__acesis .markets__acesis__des {
    transform: scale(0.80);
  }
  .markets__acesis .markets__acesis__des > h3 {
    font-size: 26px;
  }
  .team__list {
    margin: 0 -50px;
  }
  .team__list .col {
    padding: 0 50px;
  }
  .contact__information {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 4vw;
    width: 40%;
  }
  .contact__address h4 {
    font-size: 22px;
  }
  .contact__address address {
    font-size: 20px;
  }
  .contact__form h3 {
    font-size: 21px;
  }
  .contact__form .form-group .form-control {
    font-size: 18px;
    padding: 15px 20px;
  }
  .contact__form .form-group .btn {
    padding: 15px 20px;
  }
  .contact__form .form-group .wpcf7-not-valid-tip {
    font-size: 16px;
  }
  .wpcf7 form .wpcf7-response-output {
    font-size: 16px;
    padding: 5px;
  }
  .contact__form .form-group {
    margin-bottom: 10px;
  }
  .contact__form .form-group .wpcf7-not-valid-tip {
    font-size: 14px;
  }
  .markets__acesis__list .col:nth-child(3) .markets__acesis {
    top: -50px;
    left: 150px;
  }
  .markets__acesis__list .col:nth-child(4) .markets__acesis {
    right: -70px;
  }
}

@media (max-width: 1700px) {
  .biomed__team--block h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .biomed__team--block .sub__title {
    font-size: 24px;
  }
  .team__list {
    margin: 0 -30px;
    padding: 0 200px;
  }
  .team__list .col {
    padding: 0 30px;
  }
  .team__item .team__img img {
    width: 150px;
  }
  .team__item .team__post h4 {
    font-size: 18px;
  }
  .team__item .team__post h5 {
    font-size: 18px;
  }
  .team__item .team__bio .read__bio {
    font-size: 20px;
  }
  .team__item .team__bio .team__bio__des ul li {
    font-size: 16px;
  }
  .contact__information {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contact__address h4 {
    font-size: 20px;
  }
  .contact__address address {
    font-size: 18px;
  }
  .contact__form h3 {
    font-size: 20px;
  }
  .contact__form .form-group .form-control {
    font-size: 16px;
    padding: 10px 20px;
  }
  .contact__form .form-group .btn {
    padding: 10px 20px;
  }

  /* Health Care Block CSS */
  .health__care--block .health__heading {
    margin-bottom: 70px;
  }
  .health__care--block .health__heading .sec-heading {
    font-size: 40px;
  }
  .health__care--block .health__heading p {
    font-size: 25px;
  }
  .reasons__list .col:not(:last-child) .reason__item,
  .mens__condition__list .col:not(:last-child) .mens__condition-item {
    padding-right: 20px;
  }
  .reasons__list .reason__icon svg {
    width: 90px;
    height: 90px;
  }
  .reason__item .reason__des h5, .mens__condition-item .condition__des h5 {
    font-size: 18px;
  }

  .reason__item .reason__des h5, .mens__condition-item .condition__des h5 {
    font-size: 15px;
  }
  .mens__condition__list .col:first-child .mens__condition-item h5 {
    width: 70%;
  }
  .mens__condition-item .condition__icon svg {
    width: auto;
    height: 70px;
  }
  .problem__item .problem__des, .reason__item .reason__des, .mens__condition-item .condition__des {
    margin-top: 15px;
  }
  /* Health Care Block CSS */
}

@media (max-width: 1600px) {
  .top-menu li a {
    font-size: 15px;
  }
  .main__li .down-arrow {
    border-width: 5px 5px 0 5px;
    top: 12px;
  }
  .hero__banner--content h1 {
    max-width: 650px;
    font-size: 40px;
  }
  .about__description h2 {
    font-size: 36px;
  }
  .key__item .key__content h3 {
    font-size: 22px;
  }
  .key__item .key__content ul li {
    font-size: 16px;
  }
  .key__item .key__content ul li:before {
    width: 5px;
    height: 5px;
  }
  .calender__item h3, .carg__rates .carg__rate h4 {
    font-size: 30px;
  }
  .calender__item .calender__year span {
    font-size: 36px;
  }
  .inner_hero__banner {
    height: 450px;
  }
  .about__main .about__description {
    padding-right: 50px;
  }
  .about__main .about__description p {
    font-size: 16px;
  }
  .about__main .about__description ul li {
    font-size: 16px;
  }
  .historical--block h2.sec-heading {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .historical--block .historical__des {
    padding-right: 70px;
  }
  .historical--block .historical__des ul li {
    font-size: 15px;
  }
  .historical--block .historical__des .btn {
    padding: 10px 25px;
    font-size: 15px;
  }
  .historical--block .historical__img {
    margin-top: -60px;
  }
  .problems--block {
    padding: 100px 0;
  }
  .problems__heading h2.sec-heading {
    font-size: 40px;
  }
  .problems__heading p {
    font-size: 24px;
  }
  .problem__item .problem__des p {
    font-size: 16px;
  }
  .solution--block {
    padding: 150px 0;
  }
  .solution__content h2 {
    font-weight: 700;
    font-size: 45px;
    margin-bottom: 40px;
  }
  .solution__content h4 {
    font-size: 32px;
    max-width: 850px;
  }
  .comparison__heading h3 {
    font-size: 28px;
  }
  .comparison__heading h5 {
    font-size: 24px;
  }
  .pipeline__main p {
    font-size: 18px;
  }
  .market__opportunity--block {
    padding: 200px 0;
  }
  .market__opportunity--block h2.sec-heading {
    font-size: 50px;
  }
  .publications--block {
    padding: 100px 0;
  }
  .publications__list {
    margin: 0 -15px;
  }
  .publication__item {
    padding: 0 30px 30px;
  }
  .publication__item .publications__des .file__name {
    height: auto;
    font-size: 16px;
  }
  .publication__item .publications__des a svg {
    width: 30px;
    height: auto;
  }
  .market_opportunity__des h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .markets__acesis .markets__acesis__des {
    transform: scale(0.60);
  }
  .market_opportunity__des p {
    font-size: 16px;
  }
  .market_opportunity__des .instruction small {
    font-size: 10px;
  }
  .market__potential__title h2 {
    font-size: 36px;
  }
  .market__potential__title p {
    font-size: 24px;
  }
  .market__potential__main h2 {
    font-size: 34px;
  }
  .market__potential__main {
    zoom: 0.8;
  }
  .addressable_market__title p {
    font-size: 24px;
  }
  .country__population__list {
    zoom: 0.8;
  }
  .population__intruction h4 {
    font-size: 20px;
  }
  .population__intruction ul li {
    font-size: 22px;
  }
  .population__intruction h3 {
    font-size: 20px;
  }
  .population__intruction .number__list li {
    font-size: 12px;
  }
  .markets__acesis--block h2 {
    font-size: 32px;
  }
  .markets__acesis__list {
    padding: 0 70px 150px;
  }
  .markets__acesis__list .col:nth-child(3) .markets__acesis {
    left: 80px;
  }
  .markets__acesis__list .col:nth-child(4) .markets__acesis {
    right: -15px;
  }
  /*.markets__acesis {
    zoom: 0.85;
  }*/
  .team__list {
    padding: 0 100px;
    margin: 0 -60px;
  }
  .team__list .col {
    padding: 0 60px;
  }
  .team__item .team__post h4 {
    font-size: 16px;
  }
  .team__item .team__post h5 {
    font-size: 16px;
  }
  .team__item .team__bio {
    padding: 15px;
  }
  .team__item .team__bio .read__bio {
    font-size: 18px;
  }
  .team__item .team__bio .read__bio span {
    width: 30px;
    height: 30px;
    line-height: 1.5;
    font-size: 23px;
  }
  .team__item .team__bio .read__bio .minus {
    line-height: 1.3;
  }
  .scientific__advisory--block .team__item .team__bio .read__bio {
    font-size: 18px;
  }
  .scientific__advisory--block .team__item .team__post h4 {
    font-size: 16px;
  }
  .page__content.contact-page {
    margin-top: 121px;
  }
  .contact__information {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .contact__logo img {
    width: 70%;
  }
  .contact__address {
    margin-top: 30px;
  }
  .contact__address h4 {
    font-size: 16px;
  }
  .contact__address address {
    font-size: 16px;
  }
  .contact__form h3 {
    font-size: 16px;
  }
  .contact__form .form-group .form-control {
    font-size: 14px;
    padding: 10px 15px;
  }
  .contact__form .form-group .btn {
    padding: 10px 15px;
  }
}

@media (max-width: 1400px) {
  .page__content.contact-page {
    margin-top: 115px;
  }
}

@media (max-width: 1280px) {
  .about__description h2 {
    font-size: 36px;
  }
  .key__list {
    margin: 0 -15px;
  }
  .key__list .col {
    padding: 0 15px;
  }
  .opportunity--block .find__more {
    margin-left: 0;
  }
  .country__population__list {
    zoom: 1;
    padding: 0;
  }
  .market_opportunity__des {
    padding: 60px 20px 50px 5vw;
  }
  .markets__acesis__list {
    padding: 0 0 100px;
  }
  .markets__acesis {
    zoom: 0.78;
  }
  .markets__acesis .markets__acesis__des {
    zoom: 1;
    transform: scale(1);
  }
  .team__list {
    padding: 0 100px;
    margin: 0 -30px;
  }
  .team__list .col {
    padding: 0 30px;
  }

  .contact__logo img {
    width: 70%;
  }
}

@media (max-width: 1199px) {
  .top-menu li {
    padding: 0 15px;
  }
  .top-menu li a {
    font-size: 14px;
    padding: 5px 0;
    line-height: normal;
  }
  .main__li .down-arrow {
    top: 13px;
  }
  h2.sec-heading {
    font-size: 38px;
  }
  .about__description {
    padding: 60px 30px;
  }
  .about__description h2 {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .key__item .key__content ul {
    padding-left: 10px;
  }
  .calender__item h3 {
    font-size: 22px;
  }
  .calender__item .calender__icon {
    width: 120px;
    margin: 0 auto;
  }
  .calender__item .calender__year span {
    font-size: 34px;
    margin-top: 10px;
  }
  .direction__arrow {
    margin: 0 10px;
  }
  .direction__arrow img {
    width: 80px;
  }
  .carg__rates .carg__rate h4 {
    font-size: 20px;
  }
  .carg__rates img {
    display: block;
    width: 130px;
  }
  .carg__rates .carg__rate h4 {
    margin-top: 100px;
  }
  .opportunity--block .find__more {
    margin-left: 15px;
  }
  .inner_hero__banner {
    height: 300px;
  }
  .inner_hero__banner .hero__banner--content {
    top: 50%;
  }
  .solution--block {
    padding: 100px 0;
  }
  .comparison__heading {
    margin-bottom: 30px;
  }
  .comparison__heading h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .market__opportunity--block {
    padding: 150px 0;
  }
  .market_opportunity__des {
    padding: 30px 20px 60px 30px;
  }
  .markets__acesis--block .col-lg-6 {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .markets__acesis {
    zoom: 1;
  }
  .markets__acesis .markets__acesis__des {
    zoom: 1.3;
  }
  .market__potential__main {
    zoom: 1;
  }
  .markets__acesis__list .col:nth-child(2) .markets__acesis {
    top: 0;
    left: 0;
  }
  .markets__acesis__list .col:nth-child(3) .markets__acesis {
    top: 0;
    left: 0;
  }
  .markets__acesis__list .col:nth-child(4) .markets__acesis {
    top: 0;
    right: 0;
  }
  .team__list {
    padding: 0 30px;
    margin: 0 -15px;
  }
  .team__list .col {
    padding: 0 15px;
  }
  .team__item .team__bio .team__bio__des ul {
    min-height: 340px;
  }
  .scientific__advisory--block .team__list {
    margin: 0 -15px;
  }
  .page__content.contact-page {
    margin-top: 105px;
  }
  .contact-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact__logo {
    width: auto;
  }
  .contact__banner {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: none;
  }
  .contact__banner__mobile {
    display: block;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
            position: relative;
    padding-top: 60%;
  }
  .contact__banner__mobile img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left:0;
}
  .contact__information {
    position: static;
    width: 100%;
    background-color: #002458;
    padding: 50px 30px;
    z-index: 9;
  }

  /* Health Care Block CSS */
  .reasons__list {
    width: 100%;
  }
  .mens__condition__list {
    width: 90%;
  }
  .mens__condition__list .col:last-child {
    padding-left: 0;
  }
  /* Health Care Block CSS */
}

@media (max-width: 1024px) {
  .top-menu ul.submenu { display: none; }
  .top-menu ul.submenu.show {
    display: block;
  }
  section.contact-block {
    min-height: 0;
    }
}

@media (max-width: 991px) {
  header {
    padding: 15px 0;
  }
  .top-menu a {
    font-size: 16px;
  }
  .top-menu li {
    margin: 0;
  }
  .top-menu > ul:last-of-type {
    padding: 0;
    display: block;
    text-align: center;
    margin-top: 50px;
  }
  #hamburger {
    display: block;
    margin-left: auto;
  }
  .top-menu {
    position: fixed;
    width: 300px;
    top: 88px;
    height: auto;
    right: 30px;
    padding: 30px;
    overflow: auto;
    display: none;
    background-color: #002458;
  }
  .top-menu .main__li {
    padding: 0 0 10px;
  }
  .top-menu .main__li a {
    border-width: 2px;
    color: #ffffff;
  }
  .top-menu .main__li:hover a {
    border-color: #00A1E9;
    color: #00A1E9;
  }
  .top-menu .main__li .down-arrow {
    border-color: #ffffff transparent transparent transparent;
  }
  .top-menu ul.submenu.show .main__li a {
    color: #00A1E9;
    display: inline;
  }
  .top-menu .main__li.current-menu-item .down-arrow, 
  .top-menu .main__li:hover .down-arrow {
    border-color: #00A1E9 transparent transparent transparent;
  }
  .top-menu .current-menu-item a {
    border-color: #00A1E9;
    color: #00A1E9;
  }
  .top-menu ul.submenu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    background-color: #ffffff;
    margin-top: 10px !important;
  }
  .top-menu ul.submenu li {
    margin: 0;
    padding: 0;
  }
  .top-menu ul.submenu li .main__link {
    color: #00A1E9;
    display: inline;
  }
  .top-menu ul.submenu.show {
    display: block;
    padding: 5px 10px 13px;
  }
  .top-menu .main__li .down-arrow {
    top: 15px;
  }
  .hero__banner--content h1 {
    max-width: 510px;
    font-size: 32px;
  }
  .hero__banner {
    height: 70vh;
  }
  .about__description {
    padding: 50px 0 50px 30px;
  }
  .about__description h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .key__item .key__icon svg {
    width: auto;
    height: 90px;
  }
  .key__item .key__content h3 {
    font-size: 20px;
  }
  .opportunity--block h2 {
    font-size: 28px;
  }
  .opportunity--block .find__more {
    margin: 20px 0 0;
  }
  .footer-top {
    padding: 10px 0;
  }
  .footer-top p {
    font-size: 14px;
  }
  .inner_hero__banner {
    height: 250px;
  }
  .historical--block h2.sec-heading {
    font-size: 26px;
  }
  .historical--block .historical__des {
    padding-right: 0;
  }
  .historical--block .historical__img {
    padding-left: 0;
  }
  .problems--block {
    padding: 50px 0;
  }
  .problems__heading h2.sec-heading {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .problems__heading p {
    font-size: 20px;
  }
  .problem__item .problem__des {
    margin-top: 15px;
  }
  .problem__item .problem__des p {
    font-size: 16px;
  }
  .problem__img svg {
    width: 100px;
    height: 100px;
  }
  .solution--block {
    padding: 70px 15px;
  }
  .solution__content h2 {
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 20px;
  }
  .solution__content h4 {
    font-size: 24px;
    max-width: 650px;
  }
  .comparison--block {
    padding: 60px 0;
  }
  .comparison__heading h5 {
    font-size: 20px;
  }
  .pipeline__main p {
    font-size: 16px;
  }
  .acesis__plans .intruction {
    font-size: 13px;
  }
  .market__opportunity--block {
    padding: 50px 0;
  }
  .market__opportunity--block h2.sec-heading {
    margin-bottom: 30px;
    font-size: 40px;
  }
  .publication__item {
    padding: 0 0 30px;
  }
  .publication__item .publications__des .file__name {
    height: 44px;
    font-size: 18px;
  }
  .market__potential__main .carg__rates .carg__rate h4 {
    font-size: 30px;
    margin-top: 30px;
  }
  .country__population__list {
    padding: 0 150px;
  }
  .country__population__list .col {
    margin-bottom: 50px;
  }
  .markets__acesis .markets__acesis__des {
    zoom: 1;
  }
  .markets__acesis .carg__rates .carg__rate h4 {
    font-size: 22px;
  }
  .markets__acesis .calender__item .calender__year span {
    font-size: 30px;
    font-weight: 700;
  }
  .markets__acesis__list {
    padding: 0;
  }
  .team__list {
    padding: 0;
  }
  .team__item .team__bio .team__bio__des ul {
    min-height: 300px;
  }
  .team__item .team__post h5, .team__item .team__post h4 {
    font-size: 14px;
  }
  .page__content.contact-page {
    margin-top: 95px;
  }

  /* 404 Page CSS */
  .error-404.not-found { margin-top: 72px; }
  .error-404.not-found h1 {
    font-size: 50px;
  }
  /* 404 Page CSS */

  /* Health Care Block CSS */
  .mens__condition__list {
    width: 100%;
  }
  .reasons__list .col:not(:last-child) .reason__item, .mens__condition__list .col:not(:last-child) .mens__condition-item {
    padding-right: 15px;
  }
  /* Health Care Block CSS */
}

@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
  p {
    font-size: 14px;
  }
  h2.sec-heading {
    font-size: 32px;
  }
  .top-menu {
    top: 65px;
  }
  .hero__banner {
    height: 400px;
  }
  .hero__banner .banner__instruction p {
    font-size: 12px;
  }
  .hero__banner--content {
    top: 50%;
  }
  .hero__banner--content h1 {
    font-size: 20px;
  }
  .about__description {
    padding: 30px 15px;
  }
  .about__banner img {
    width: 300px;
    margin-left: auto;
  }
  .key__item {
    margin-bottom: 50px;
  }
  .key__item .key__content h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .opportunity--block {
    padding: 40px 0;
  }
  .opportunity--block h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
  }
  .opportunity--block .col {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .opportunity--block .find__more {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
  }
  .global__calender {
    display: block;
    margin: 0 auto;
  }
  .direction__arrow {
    margin: 10px 0;
    height: 100px;
  }
  .direction__arrow img {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .carg__rates {
    margin: 20px 0;
  }
  .carg__rates .carg__rate h4 {
    margin-top: 30px;
    font-size: 20px;
  }
  .inner_hero__banner {
    height: 200px;
  }
  .about__main .about__banner {
    padding: 0;
    height: auto;
  }
  .about__main .about__banner img {
    position: static;
  }
  .about__main .about__description {
    padding-right: 30px;
  }
  .about__main .about__description h2 {
    font-size: 30px;
  }
  .about__main .about__description .intruction {
    position: static;
    margin: 30px 0 0;
  }
  .about__main .about__description ul {
    padding-left: 15px;
  }
  .historical--block {
    padding: 50px 0;
  }
  .historical--block .historical__img {
    text-align: center;
    margin: 20px 0;
  }
  .historical--block .historical__img img {
    width: 200px;
  }
  .historical--block .historical__des {
    padding-right: 0;
  }
  .historical--block .historical__des ul {
    padding-left: 10px;
  }
  .historical--block .historical__des .btn {
    padding: 10px 15px;
    font-size: 15px;
  }
  .problems__heading {
    margin-bottom: 40px;
  }
  .problem__item {
    margin-bottom: 30px;
  }
  .solution--block {
    padding: 50px 30px;
  }
  .solution__content h2 {
    font-size: 30px;
  }
  .solution__content h4 {
    font-size: 18px;
    max-width: 100%;
  }
  .solution__content h4 br {
    display: none;
  }
  .comparison__heading h3 {
    font-size: 22px;
    line-height: 1.2;
  }
  .market__opportunity--block {
    padding: 50px 0;
  }
  .market__opportunity--block h2.sec-heading {
    margin-bottom: 20px;
    font-size: 36px;
  }
  .inner_hero__banner .hero__banner--content h1 {
    font-size: 32px;
  }
  .publications--block {
    padding: 60px 0;
  }
  .publication__item {
    padding: 0 30px 30px;
  }
  .publication__item .publications__des .file__name {
    height: auto;
  }
  .country__population__list {
    padding: 0 30px;
    text-align: center;
  }
  .country__population__list .col:nth-child(3) .country__des {
    margin-left: 0;
  }
  .markets__acesis__list .col:nth-child(2) .markets__acesis, .markets__acesis__list .col:nth-child(3) .markets__acesis {
    background-color: #002458;
  }
  .markets__acesis__list .col:nth-child(4) .markets__acesis .carg__rates {
    margin-left: 0;
  }
  .addressable_market__title p {
    font-size: 20px;
  }
  .addressable_market__title p br {
    display: none;
  }
  .markets__acesis {
    background-color: rgba(0, 161, 233, 0.85);
    margin-bottom: 30px;
    padding: 30px;
  }
  .markets__acesis .markets__acesis__des {
    position: static;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .markets__acesis .markets__acesis__des > h3 {
    margin-bottom: 40px;
  }
  .markets__acesis .direction__arrow {
    margin: 0 10px;
    height: 150px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .markets__acesis__shape {
    display: none;
  }
  .markets__acesis__details, .carg__rates {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .market__potential__main .col {
    display: block;
    text-align: center;
  }
  .markets__acesis__list .col:nth-child(4) .markets__acesis .markets__acesis__details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .team__list {
    padding: 0 50px;
  }
  .team__item .team__bio .team__bio__des ul {
    min-height: initial;
  }
  .team__item .team__post h5, .team__item .team__post h4 {
    font-size: 18px;
  }
  .team__item .team__logos .team__logo {
    max-width: calc(100% / 3 - 10px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 3 - 10px);
            flex: 0 0 calc(100% / 3 - 10px);
  }

  /* Health Care Block CSS */
  .health__care--block .instruction {
    width: 100%;
  }
  .health__care--block .health__heading {
    margin-bottom: 40px;
    padding: 0;
  }
  .health__care--block .health__heading .sec-heading {
    font-size: 26px;
  }
  .health__care--block .health__heading p {
    font-size: 18px;
  }
  .mens__conditions {
    margin-top: 50px;
  }
  .mens__conditions h3 {
    font-size: 22px;
    margin-bottom: 40px;
  }
  .reasons__list .col:not(:last-child) .reason__item, .mens__condition__list .col:not(:last-child) .mens__condition-item {
    padding: 0;
    margin: 0;
    border: none;
  }
  .reasons__list .col:not(:last-child) {
    margin-bottom: 50px;
  }
  .mens__condition__list .col {
    max-width: 50%;
    flex: 0 0 50%;
    padding-bottom: 50px;
  }
  .mens__condition__list {
    margin: 0 auto 50px;
    justify-content: center;
  }
  .mens__condition__list .col:nth-child(odd) .mens__condition-item {
    border-right: 1px solid #00A1E9;
    padding-right: 20px;
    margin-right: -20px;
  }
  .mens__condition__list .col:last-child .mens__condition-item {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
  /* Health Care Block CSS */
}

@media (max-width: 480px) {
  .top-menu {
    top: 78px;
  }
  header .col.col-lg-3 {
    max-width: 75%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }
  header .col.col-lg-9 {
    max-width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .main__title {
    font-size: 22px;
  }
  .inner_hero__banner .hero__banner--content h1 {
    margin-top: 60px;
    font-size: 26px;
  }
  .market_opportunity__des {
    padding: 30px 15px 60px 15px;
  }
  .market__potential__title h2 {
    font-size: 28px;
  }
  .market__potential__title p {
    font-size: 20px;
  }
  .market__potential__main h2 {
    font-size: 28px;
  }
  .country__population__list {
    padding: 0;
  }
  .country__population__list .col:nth-child(3) .country__des {
    margin-top: -60px;
  }
  .country__population__item .country__list .country__item {
    margin-left: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .country__population__item .country__des .popuplation__count h3 {
    margin-left: 0;
  }
  .population__intruction ul li {
    font-size: 18px;
  }
  .biomed__team--block, .scientific__advisory--block {
    padding: 40px 0;
  }
  .team__list {
    padding: 0;
  }
  .biomed__team--block .sub__title {
    font-size: 22px;
  }
  .biomed__team--block h2.sec-heading {
    font-size: 26px;
  }
  .team__item .team__post h5, .team__item .team__post h4 {
    font-size: 16px;
  }
  .team__item .team__bio .read__bio {
    font-size: 16px;
  }
  .team__item .team__bio .read__bio span {
    width: 25px;
    height: 25px;
    line-height: 1.5;
    font-size: 18px;
    top: -3px;
    right: 0;
  }
  .team__item .team__bio .read__bio .minus {
    line-height: 1.4;
  }
  .scientific__advisory--block .team__list {
    margin: 0;
  }
  .page__content.contact-page {
    margin-top: 75px;
  }
  .contact__information {
    padding: 30px 15px;
  }
  .contact__address address {
    font-size: 14px;
  }

  .about__description h2 {
    font-size: 22px;
  }

  /* 404 Page CSS */
  .error-404.not-found h1 {
    font-size: 32px;
  }
  /* 404 Page CSS */

}

@media screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  .hero__banner {
    height: 150vh;
  }
  .about__description h2 {
    font-size: 20px;
  }
  .top-menu {
    top: 83px;
    height: calc(100vh - 83px);
  }
}

@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
  .hero__banner {
    height: 100vh;
  }
  .hero__banner--content h1 {
    font-size: 30px;
  }
}

@media(max-width: 340px){
    .wpcf7 .wpcf7-recaptcha iframe {
    transform: scale(0.9);
    transform-origin: left;
}
}




