/* ===== Scrollbar CSS ===== */
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background-color: #34B099;
  border-radius: 10px;
}

body *::-webkit-scrollbar {
  position: absolute;
  width: 6px;
  padding-right: 10px;
}

/* Defaults
-------------------------------------------------------------- */
html {
  font-size: 22px;
  scroll-behavior: smooth;
}

body {
  color: #4C5151;
  font-size: 1rem;
  direction: ltr;
  line-height: 1.3;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}
body.has-overflow {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1.3em;
}

h1 {
  font-size: 3.636rem; /* 80/22 */
  font-weight: 300;
  line-height: 1.2;
}

h2 {
  font-size: 3.636rem; /* 80/22 */
  font-weight: 100;
  margin-bottom: 70px;
}

h3 {
  font-size: 2.2rem;
  margin-bottom: 50px;
}

h4 {
  font-size: 1rem;
}

div,
p,
span,
a,
input,
input[type=submit],
select,
textarea {
  font-family: "Roboto", sans-serif;
}

strong,
b {
  font-weight: 500;
}

i,
em {
  font-style: italic;
}

ul li,
ol li {
  text-align: left;
}

a,
input[type=submit],
button,
.transition {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  color: #34B099;
}

img {
  max-width: 100%;
  height: auto;
}

img.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
}

img.grayscale:hover {
  filter: none;
  -webkit-filter: grayscale(0%);
}

.round {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.center {
  text-align: center;
}

.bold {
  font-weight: 500;
}

.light-text {
  font-weight: 100;
}

.white-color {
  color: #fff;
}

.primary-color {
  color: #34B099;
}

.dark-color {
  color: #033131;
}

.blue-color {
  color: #00576E;
}

.medium-blue-color {
  color: #008DA1;
}

.orange-color {
  color: #F26611;
}

.dark-bg {
  color: #fff;
  background-color: #033131;
}

.blue-bg {
  background-color: #00576E;
}

.medium-blue-bg {
  background-color: #008DA1;
}

.orange-bg {
  background-color: #F26611;
}

.primary-bg {
  background-color: #34B099;
}

.full-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-cover {
  background-position: center;
  background-size: cover;
}

.special-font {
  font-family: "Poiret One", cursive;
}

.small-text {
  font-size: 0.9rem;
}

.medium-text {
  font-size: 1.5rem;
}

.circle-button {
  background-color: #F26611;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.5s;
  cursor: pointer;
  border: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-button:hover {
  background-color: #00576E;
}
.circle-button svg {
  width: 60%;
  height: 60%;
}

.content {
  max-width: 900px;
}
.content ol,
.content ul {
  margin-left: 10px;
  padding-left: 10px;
  font-size: 1em;
  margin-bottom: 8px;
}
.content ol {
  list-style: decimal;
}
.content li {
  margin-bottom: 0.6em;
}
.content p {
  margin-bottom: 0.6rem;
}
.content a {
  color: inherit;
  text-decoration: underline;
}
.content a:hover {
  color: #34B099;
}
.content.seperator {
  position: relative;
  padding-top: 15px;
  margin-top: 30px;
}
.content.seperator::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: #34B099;
  top: 0;
  left: 0;
  border-radius: 30px;
}

sup {
  font-size: 0.5rem;
}

/****************************************************************
    LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT
****************************************************************/
.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: block;
}

.flex_container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 15px;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  background-color: #033131;
  z-index: 5555555;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.5);
  color: #fff;
}
header .logo svg, header .logo img {
  width: 220px;
  height: auto;
}

footer {
  padding: 25px 0 15px 0;
  border-top: 5px solid #fff;
}
footer .rights-credit {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  font-size: 0.7rem;
}
footer .rights-credit a {
  text-decoration: underline;
  color: #fff;
}
footer .rights-credit a:hover {
  opacity: 0.5;
}
footer .rights {
  display: flex;
  flex-wrap: wrap;
}
footer .rights > * {
  margin-right: 15px;
}

/** Main Menu */
ul#main-menu {
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
}
ul#main-menu > li {
  position: relative;
  padding: 0px 20px;
}
ul#main-menu > li > a {
  position: relative;
  display: block;
  color: #fff;
  line-height: 1.1rem;
  padding: 0 0 10px 0;
  font-size: 0.909rem; /* 20/22 */
  transition: 0.4s;
}
ul#main-menu > li > a:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  transition: 0.8s;
  height: 2px;
  border-radius: 10px;
  background-color: #F26611;
}
ul#main-menu > li.active > a::after {
  width: 100%;
}

ul#main-menu ul#main-menu > li.current-menu-item > a {
  color: #4C5151;
}

ul#main-menu > li > a:focus,
ul#main-menu > li > a:hover {
  text-decoration: none;
  color: #F26611;
}
ul#main-menu > li > a:focus::after,
ul#main-menu > li > a:hover::after {
  width: 100%;
}

/** Sub Menu  ***/
ul#main-menu ul.sub-menu {
  position: absolute;
  z-index: 10;
  left: -15px;
  top: 100%;
  width: 250px;
  display: none;
}

ul#main-menu > li.menu-item-has-children:hover > ul.sub-menu {
  display: block;
}

ul#main-menu ul.sub-menu li {
  position: relative;
  display: block;
  background: #fff;
}

ul#main-menu ul.sub-menu li a {
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  padding: 10px;
  color: #34B099;
  border-right: 1px solid #34B099;
  border-left: 1px solid #34B099;
  border-bottom: 1px solid #a1a1a1;
  margin-right: 2px;
  margin-left: 2px;
}

ul#main-menu ul.sub-menu li a:hover,
ul#main-menu ul.sub-menu li a:focus {
  text-decoration: none;
  color: #4C5151;
}

ul#main-menu ul.sub-menu li:hover > a {
  color: #4C5151;
}

.home .top-section {
  position: relative;
}
.home .top-section h1 {
  opacity: 0;
  transition: 0.4s;
}
.home .top-section .bg-grad {
  background-image: linear-gradient(to to right, rgb(3, 49, 49), rgba(3, 49, 49, 0.55) 30%, rgba(3, 49, 49, 0));
}
.home .top-section .popup-youtube {
  margin-top: 40px;
  padding: 13px 50px;
  background-color: #34B099;
  color: #fff;
  border-color: #34B099;
  opacity: 0;
  transform: translateY(50px);
  transition-duration: 0.6s;
  transition-delay: 4.5s;
}
.home .top-section .popup-youtube.active {
  opacity: 1;
  transform: translateY(0);
}
.home .top-section .popup-youtube:hover {
  background-color: transparent;
  text-decoration: none;
  color: #34B099;
}

.wpcf7-acceptance label {
  margin-bottom: 0;
}

.page-template-home-new header {
  background-color: none;
  background-image: linear-gradient(to left, #2F9C9C, #033131);
}
.page-template-home-new h2, .page-template-home-new h3 {
  font-weight: 100;
}
.page-template-home-new .single-detail path, .page-template-home-new .single-detail circle, .page-template-home-new .single-detail rect {
  stroke: #fff;
}
.page-template-home-new .need-section h3 {
  font-weight: 300;
}
.page-template-home-new .dark-bg {
  background-color: none;
  background-image: linear-gradient(to right, #2F9C9C, #033131);
}
.page-template-home-new .top-section h1 {
  max-width: 950px;
  font-weight: 100;
}
.page-template-home-new .slick-dots li button {
  background-color: #5C928D;
}
.page-template-home-new .news-section .slick-dots li.slick-active button {
  background-color: #fff;
}
.page-template-home-new .advantages-section .row {
  justify-content: center;
}
.page-template-home-new .advantages-section .primary-bg {
  background-color: #00576E;
}
.page-template-home-new .advantages-section .container {
  max-width: 1740px;
}
.page-template-home-new .solution-section {
  padding-bottom: 100px;
}
.page-template-home-new .solution-section .container {
  max-width: 1700px;
}
.page-template-home-new .solution-section .content strong {
  color: #34B099;
}
.page-template-home-new .solution-section .read-more {
  margin-top: 40px;
  background-color: #34B099;
  color: #fff;
  border-color: #34B099;
  padding: 13px 50px;
}
.page-template-home-new .solution-section .read-more:hover {
  background: transparent;
  text-decoration: none;
  color: #34B099;
  border-color: #34B099;
}
.page-template-home-new .solution-section .images-side {
  align-items: flex-start;
}
.page-template-home-new .solution-section .content.seperator::before {
  top: -20px;
}
.page-template-home-new .solution-section .bottom-text {
  max-width: 630px;
  line-height: 1.5;
}
.page-template-home-new .solution-section .top-text {
  display: flex;
  line-height: 1.2;
  flex-direction: column;
  align-items: flex-start;
  font-size: 2.5rem;
  font-weight: 100;
}
.page-template-home-new .about-section h2 {
  margin-bottom: 25px;
}
.page-template-home-new .about-section .top-text {
  max-width: 1020px;
  margin: 0 auto 40px auto;
  font-weight: 400;
}
.page-template-home-new .about-section .bottom-text {
  max-width: 1120px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
}

/****** General ******/
.mfp-iframe-holder .mfp-content {
  max-width: 1100px !important;
}

.word-breaker span {
  position: relative;
  display: inline-block;
  -webkit-transition: all 400ms cubic-bezier(0.65, 0, 0.35, 1);
  transition: all 400ms cubic-bezier(0.65, 0, 0.35, 1);
  opacity: 0;
  -webkit-transform: translateY(25%);
  transform: translateY(25%);
}
.word-breaker span.active {
  transform: translateY(0) !important;
  opacity: 1;
}
.word-breaker span.end {
  margin-right: 20px;
}

.big {
  font-size: 1.3636rem;
}

.credit-accessibility {
  display: flex;
  align-items: center;
}
.credit-accessibility .credit {
  margin-left: 25px;
}

.read-more {
  color: #F26611;
  border: 1px solid #F26611;
  text-align: center;
  padding: 10px 20px;
  transition: 0.5s;
  border-radius: 30px;
  display: inline-block;
}
.read-more:hover {
  background-color: #F26611;
  color: #fff;
}

.section-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 115px;
  height: 9px;
  background-color: #F26611;
  transition: 1.5s;
}
.section-line.active {
  width: 100vw;
}

.page-template-accessibility {
  direction: rtl;
}
.page-template-accessibility a.accessibility {
  margin-top: 5px;
  display: block;
}
.page-template-accessibility .main-container {
  padding: 70px 15px;
}
.page-template-accessibility h1 {
  text-align: center;
}
.page-template-accessibility h2 {
  font-size: 2rem;
  margin-top: 50px;
  text-align: right;
}
.page-template-accessibility p {
  text-align: right !important;
  line-height: 1.4;
}
.page-template-accessibility .content ul {
  direction: rtl;
  list-style: disc;
}
.page-template-accessibility .content ul p {
  text-align: right;
}
.page-template-accessibility .content ul li {
  font-size: 0.9rem;
  text-align: right;
  margin-bottom: 10px;
}

.top-section-line::before {
  content: "";
  position: absolute;
  margin: 0 auto;
  background-color: #F26611;
  width: 100%;
  height: 8px;
  left: 0;
  right: 0;
  top: -4px;
  border-radius: 50px;
  transition: 1.5s;
}
.top-section-line.active::before {
  width: 115px;
}

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

.top-section {
  min-height: calc(100vh - 50px);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.top-section .video-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
}
.top-section video {
  position: absolute;
  width: 100vw !important;
  height: 100vh !important;
  -o-object-fit: cover;
  object-fit: cover;
}
.top-section .hp-video-overlay {
  background: linear-gradient(90deg, rgba(3, 49, 49, 0.95), rgba(3, 49, 49, 0.75), rgba(3, 49, 49, 0.4));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.top-section h1 {
  padding-top: 30px;
  transition: 0.5s 0.2s;
}
.top-section h1::before {
  content: "";
  position: absolute;
  width: 115px;
  height: 5px;
  background-color: #F26611;
  top: 0;
  left: 0;
  border-radius: 5px;
  transition: 0.5s 0.7s;
}
.top-section .slick-slide h1 {
  opacity: 0.2;
  transition: 0.5s 0.4s;
}
.top-section .slick-slide h1::before {
  transform-origin: left;
  transform: scaleX(0);
}
.top-section .slick-slide.slick-current h1 {
  opacity: 1;
}
.top-section .slick-slide.slick-current h1::before {
  transform: scaleX(1);
}
.top-section .video-slider {
  position: absolute;
  width: 100vw;
  height: 100vh;
}
.top-section .video-slider .container {
  z-index: 3;
}
.top-section .video-slider .slick-slide {
  position: relative;
}
.top-section .video-slider .slick-list, .top-section .video-slider .slick-track, .top-section .video-slider .slick-slide, .top-section .video-slider .slick-slide > div, .top-section .video-slider .single-slide {
  height: 100%;
}
.top-section .video-slider .single-slide {
  overflow: hidden;
  position: relative;
  display: flex !important;
  align-items: center;
}

.need-section .single-need {
  border-left: 3px solid #008DA1;
  padding-right: 30px;
  margin-bottom: 30px;
}
.need-section .single-need:first-child {
  border: none;
}
.need-section .top-orange {
  min-height: 70px;
}
.need-section .top-orange h3 {
  margin-bottom: 0;
}
.need-section .top-orange svg {
  height: 60px;
}
.need-section .need-repeater {
  margin: 80px 0 0 0;
}

.solution-section {
  background-image: url(../../img/sparkle.png);
  background-size: auto;
  background-position: right bottom;
  background-repeat: no-repeat;
  padding-bottom: 0;
}
.solution-section .images-side {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.solution-section .doctor-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.solution-section .doctor-img::before {
  content: "";
  position: absolute;
  margin: 0 auto;
  background-color: #F26611;
  height: 130px;
  width: 8px;
  right: -4px;
  bottom: -4px;
  border-radius: 50px;
  transition: 1.5s 0.5s;
}
.solution-section .screen-img {
  position: absolute;
  right: 65%;
  margin-left: -50%;
  transition: 0.8s transform 1s;
  transform: translateX(-200%);
}
.solution-section .text-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: 50px;
}
.solution-section.active .doctor-img::before {
  height: 90%;
}
.solution-section.active .screen-img {
  transform: translateX(0);
}

.advantages-section .seperator {
  display: block;
  width: 50px;
  height: 5px;
  border-radius: 5px;
  margin: 30px auto;
}
.advantages-section .content {
  max-width: 250px;
  margin: 0 auto;
}
.advantages-section .single-advantages .primary-stroke path {
  stroke: #00576E;
}
.advantages-section .single-advantages .orange-stroke path {
  stroke: #F26611;
}
.advantages-section .single-advantages .dark-stroke path {
  stroke: #033131;
}
.advantages-section .single-advantages .blue-stroke path {
  stroke: #00576E;
}
.advantages-section .single-advantages .medium-blue-stroke path {
  stroke: #00576E;
}
.advantages-section .single-advantages svg {
  width: 170px;
  height: 150px;
}

.slick-slider {
  flex-wrap: wrap;
  align-items: center;
}

.slick-list {
  flex: 1;
}

.slick-dots {
  width: 100%;
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  margin-top: 40px;
}
.slick-dots li {
  margin: 0 5px;
}
.slick-dots li button {
  background-color: #00576E;
  border-radius: 50%;
  border: 0;
  padding: 0;
  font-size: 0;
  width: 10px;
  height: 10px;
}
.slick-dots li.slick-active button {
  background-color: #008DA1;
}

.slick-arrow.slick-next {
  margin-right: -60px;
  margin-left: 40px;
}
.slick-arrow.slick-prev {
  margin-left: -60px;
  margin-right: 40px;
}

.testimonial-section .slick-dots li.slick-active button {
  background-color: #fff;
}
.testimonial-section .single-testimonial {
  padding-top: 50px;
}
.testimonial-section .single-testimonial svg path {
  stroke: #34B099;
}
.testimonial-section .image-wrapper {
  position: relative;
  width: 500px;
  max-width: 100%;
}
.testimonial-section .image-wrapper .image {
  background-color: #FFF;
  width: 100%;
  padding-top: 55%;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  filter: grayscale(1);
}
.testimonial-section .image-wrapper svg {
  top: -50px;
  right: -100px;
  position: absolute;
  z-index: 2;
}

.about-section .top-image {
  margin-top: 30px;
  position: relative;
  display: flex;
  align-items: flex-end;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  padding-left: 15px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  max-width: 100%;
  width: 350px;
  min-height: 160px;
}
.about-section .top-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2));
  backdrop-filter: grayscale(1);
}
.about-section .top-image > div {
  position: relative;
  z-index: 1;
}
.about-section .top-image .content {
  padding: 30px 15px 0;
  max-width: 150px;
}
.about-section .special-font {
  font-size: 10rem;
  line-height: 0.8;
  margin-top: -30px;
}
.about-section .hidden {
  display: none;
}
.about-section .single-about.active button {
  rotate: 180deg;
}

.team-section {
  background-color: #FBFBFB;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.team-section .team-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 100px;
}
.team-section .team-group:nth-of-type(2) .single-member {
  width: 25%;
}
.team-section .team-group:nth-of-type(2) .single-member:nth-child(1), .team-section .team-group:nth-of-type(2) .single-member:nth-child(2), .team-section .team-group:nth-of-type(2) .single-member:nth-child(3) {
  width: 25%;
}
.team-section .single-member {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 100px 0;
  padding: 0 15px;
}
.team-section .single-member:nth-child(1), .team-section .single-member:nth-child(2), .team-section .single-member:nth-child(3) {
  width: 33%;
}
.team-section .single-member .image-wrapper {
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin-bottom: 0;
}
.team-section .single-member .image-wrapper .image {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  filter: grayscale(1);
}
.team-section .single-member .image-wrapper .linkedin {
  position: absolute;
  opacity: 0;
  transition: 0.5s;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 0;
}
.team-section .single-member:hover .linkedin {
  opacity: 1;
}
.team-section .single-member .hidden {
  display: none;
  padding-top: 10px;
}
.team-section .single-member button {
  margin-top: -7px;
  margin-bottom: 15px;
  z-index: 2;
}
.team-section .single-member.active button {
  rotate: 225deg;
}

.news-section .slick-slide {
  padding: 0 15px;
}
.news-section .slick-track {
  display: flex;
}
.news-section .slick-track .slick-slide {
  display: flex;
  height: auto;
}
.news-section .single-news {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}
.news-section .single-news .top {
  width: 100%;
}
.news-section .image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}
.news-section .image-wrapper .image {
  padding-top: 80%;
  background-color: #eee;
}
.news-section .date {
  margin-bottom: 15px;
}
.news-section .news-content-wrapper {
  direction: rtl;
  height: 170px;
  overflow-y: auto;
}
.news-section .news-content {
  padding-left: 15px;
  direction: ltr;
}
.news-section .content.seperator {
  padding-top: 25px;
  margin-top: 20px;
}

.careers-section {
  padding-bottom: 60px;
}
.careers-section h2 {
  margin-bottom: 50px;
}
.careers-section .top-text {
  margin: 0 auto 80px auto;
  max-width: 1020px;
}
.careers-section .slick-list {
  padding-right: 42% !important;
}
.careers-section .slick-dots {
  margin: 70px 0 20px 0;
}
.careers-section .slick-dots li button {
  background-color: rgba(52, 176, 153, 0.3);
}
.careers-section .slick-dots li.slick-active button {
  background-color: #34B099;
}
.careers-section .single-career {
  display: flex;
  justify-content: center;
  padding-right: 50px;
}
.careers-section .single-career .image {
  background-position: center;
  background-size: cover;
  height: 190px;
  width: 190px;
  min-width: 190px;
  filter: grayscale(1);
  margin-right: 30px;
}
.careers-section .single-career .details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.careers-section .single-career .title {
  display: flex;
  flex-direction: column;
}
.careers-section .single-career .title::after {
  content: "";
  width: 45px;
  border-bottom: 3px solid #F26611;
  margin: 15px 0 20px 0;
}
.careers-section .single-career .text {
  color: #4C5151;
}
.careers-section .single-career .read-more {
  border-color: #008DA1;
  padding: 8px 15px;
  margin-top: 15px;
}
.careers-section .single-career .read-more:hover {
  text-decoration: none;
  background-color: #008DA1;
}
.careers-section .single-career .read-more:hover span {
  color: #fff;
}
.careers-section .single-career .read-more span {
  color: #008DA1;
}
.careers-section .read-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.careers-section .read-wrapper p {
  margin-bottom: 0;
}
.careers-section .read-wrapper a:hover {
  text-decoration: none;
}

.partners-section .single-partner {
  margin: 30px 0;
  filter: grayscale(1);
  transition: 0.5s;
}
.partners-section .single-partner:hover {
  filter: grayscale(0);
}

.contact-section .location-title {
  font-size: 1.4667rem;
  font-weight: 400;
  margin-bottom: 15px;
}
.contact-section .single-detail {
  color: #FFF;
  text-decoration: none;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
}
.contact-section .single-detail svg {
  width: 35px;
  height: auto;
  margin-right: 10px;
  margin-top: -0.1em;
}
.contact-section a:hover {
  opacity: 0.5;
}

.wpcf7-form label {
  position: relative;
  margin-bottom: 1.5em;
  width: 100%;
}
.wpcf7-form .label {
  position: absolute;
  top: 0;
  transition: 0.4s;
}
.wpcf7-form .label.textarea-label {
  left: 15px;
  top: 15px;
}
.wpcf7-form .top-label .label {
  font-size: 0.8rem;
  top: -1.2rem;
}
.wpcf7-form .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-form input:not([type=submit]):not([type=checkbox]), .wpcf7-form select {
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid;
  color: inherit;
  width: 100%;
}
.wpcf7-form input:not([type=submit]):not([type=checkbox]):focus, .wpcf7-form select:focus {
  outline: 0;
  border-bottom: 2px solid #34B099;
}
.wpcf7-form option {
  color: #34B099;
}
.wpcf7-form textarea {
  background-color: transparent;
  border-radius: 15px;
  border: 2px solid;
  padding: 15px;
  color: inherit;
  width: 100%;
  height: 200px;
}
.wpcf7-form textarea:focus {
  outline: 0;
  border: 2px solid #34B099;
}
.wpcf7-form .submit-wrapper {
  display: flex;
  justify-content: flex-start;
}
.wpcf7-form .wpcf7-spinner {
  position: absolute;
}
.wpcf7-form input[type=submit] {
  color: #F26611;
  font-weight: 700;
  background-color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 1s;
  display: inline-block;
  border: 0;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
}
.wpcf7-form input[type=submit]:hover {
  color: #34B099;
  text-decoration: none;
  box-shadow: 3px -10px 30px 10px rgba(0, 0, 0, 0.5);
}
.wpcf7-form a {
  text-decoration: underline;
  color: inherit;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: #F26611;
  font-weight: 700;
  font-size: 0.8em;
}
.wpcf7-form .wpcf7-acceptance {
  font-size: 0.8em;
}

#acwp-toolbar-btn-wrap {
  bottom: 15px;
  top: auto !important;
  border: 0;
  right: 15px;
  left: auto !important;
}
#acwp-toolbar-btn-wrap #acwp-toolbar-btn {
  background-color: #F26611;
}

/* Edit Above Only*/
.mobile_menu_button {
  position: relative;
  display: none;
}

.triggerMobileMenu {
  position: relative;
  width: 35px;
  height: 28px;
  padding: 0;
  border: 0;
  margin: 0 auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: none;
  text-indent: -99999px;
}

.triggerMobileMenu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.triggerMobileMenu span:nth-child(1) {
  top: 0px;
}

.triggerMobileMenu span:nth-child(2) {
  top: 11px;
}

.triggerMobileMenu span:nth-child(3) {
  top: 22px;
}

.triggerMobileMenu.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

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

.triggerMobileMenu.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.button.triggerMobileMenu:focus,
.button.triggerMobileMenu:hover {
  background: none;
  outline: none;
}

/** off-cnavas (mobile menu wrapper) ****************/
.off-canvas {
  position: fixed;
  z-index: 1;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #2F9C9C;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.off-canvas.is-open {
  z-index: 9999;
  transform: translate(0);
}

.position-left {
  transform: translateX(-120%);
  left: 0;
}

.position-right {
  transform: translateX(120%);
  right: 0;
}

body.admin-bar .off-canvas {
  top: 32px;
}

/** Mobile Menu Style **************/
.mobile_menu_holder {
  position: relative;
}

.mobile_menu_title {
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  padding: 10px 0;
  background: #34B099;
  border-bottom: 1px solid #34B099;
  font-weight: 500;
  color: #fff;
}

ul#mobile-menu {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  padding-top: 50px;
}

ul#mobile-menu li {
  position: relative;
  display: block;
  list-style: none;
  margin-bottom: 15px;
  text-align: center;
}

ul#mobile-menu li a {
  position: relative;
  display: block;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 10px 15px;
  color: #fff;
  transition: 0.5s;
  text-align: center;
}

ul#mobile-menu ul.sub-menu {
  position: relative;
  display: block;
  margin-left: 15px;
}

ul#mobile-menu ul.sub-menu li a {
  padding: 0px 15px 10px 15px;
  font-size: 0.9rem;
}

ul#mobile-menu ul.sub-menu li a::after {
  content: "";
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 0;
  border-bottom: 2px solid #F26611;
  transition: 0.7s;
}

ul#mobile-menu > li > a:focus,
ul#mobile-menu > li.current-menu-item > a,
ul#mobile-menu ul.sub-menu li.current-menu-item a,
ul.mobile_menu > li a:hover {
  color: #F26611;
}
ul#mobile-menu > li > a:focus::after,
ul#mobile-menu > li.current-menu-item > a::after,
ul#mobile-menu ul.sub-menu li.current-menu-item a::after,
ul.mobile_menu > li a:hover::after {
  width: 140px;
}

/****************************************************************************************************************/
@media only screen and (max-width: 1640px) {
  .page-template-home-new .solution-section .top-text {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1440px) {
  html {
    font-size: 18px;
  }
  .page-template-home-new .top-section h1 {
    max-width: 800px;
  }
  .solution-section .doctor-img {
    max-width: 700px;
    width: 100%;
  }
  .solution-section .doctor-img > img {
    width: 50%;
  }
  .solution-section .screen-img {
    width: 50%;
    right: 35%;
    margin-left: 0;
  }
  .advantages-section .single-advantages svg {
    width: 130px;
    height: 120px;
  }
  .testimonial-section .image-wrapper svg {
    top: -20px;
    height: auto;
    right: -15px;
    width: 110px;
  }
  .testimonial-section .image-wrapper svg path {
    stroke-width: 4px;
  }
} /* end of (max-width: 1440px) */
/****************************************************************************************************************/
@media only screen and (max-width: 1200px) {
  .team-section .single-member .image-wrapper {
    padding: 5px;
  }
  .team-section .single-member .image-wrapper .image {
    width: 120px;
    height: 120px;
  }
} /* end of (max-width: 1200px) */
/****************************************************************************************************************/
@media only screen and (max-width: 990px) {
  .mobile_menu_button {
    display: block;
  }
  .wrap_main_menu {
    display: none;
  }
  .solution-section {
    padding: 50px 0;
  }
  .solution-section .images-side {
    margin-bottom: 50px;
    padding: 0;
  }
  .solution-section .doctor-img::before {
    height: 8px;
    width: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: -4px;
  }
  .solution-section.active .doctor-img::before {
    height: 8px;
    width: 115px;
  }
  .solution-section .text-side {
    margin-left: 0;
  }
  .single-advantages {
    margin-bottom: 70px;
  }
  .team-section .team-group, .team-section .team-group.three-row {
    max-width: 500px;
    margin: 0 auto;
  }
  .team-section .team-group .single-member, .team-section .team-group.three-row .single-member {
    width: 50% !important;
  }
  .team-section .team-group .single-member .image-wrapper, .team-section .team-group.three-row .single-member .image-wrapper {
    padding: 5px;
  }
  .team-section .team-group .single-member .image-wrapper .image, .team-section .team-group.three-row .single-member .image-wrapper .image {
    width: 120px;
    height: 120px;
  }
  .careers-section .slick-list {
    padding-right: 0 !important;
  }
  .careers-section .single-career {
    font-size: 20px;
    padding-right: 0;
  }
  .careers-section .single-career .title::after {
    margin: 8px 0 15px 0;
  }
  .careers-section .single-career .image {
    height: 160px;
    width: 160px;
    min-width: 160px;
    margin-right: 15px;
  }
  .careers-section .single-career .read-more {
    font-size: 17px;
  }
  .page-template-home-new .need-section .need-repeater {
    margin: 40px 0 0 0;
  }
  .page-template-home-new .solution-section {
    padding-bottom: 60px;
  }
  .page-template-home-new .solution-section h2 {
    margin-bottom: 25px;
  }
  .page-template-home-new .solution-section .content.seperator {
    padding-top: 0px;
    margin-top: 20px;
  }
  .page-template-home-new .solution-section .images-side {
    margin-bottom: 10px;
  }
  .page-template-home-new .solution-section.dark-bg {
    background-image: linear-gradient(to left, #2F9C9C, #033131);
  }
  .page-template-home-new .team-section .single-member {
    margin: 0 0 50px 0;
  }
  .page-template-home-new .advantages-section .single-advantages {
    margin-bottom: 45px;
  }
  .page-template-home-new .advantages-section .seperator {
    margin: 15px auto;
  }
  .page-template-home-new .advantages-section .single-advantages svg {
    width: 75px;
    height: 75px;
  }
  .home .top-section .popup-youtube, .home .solution-section .read-more {
    padding: 11px 30px;
  }
} /* end of (max-width: 990px) */
/****************************************************************************************************************/
@media only screen and (max-width: 768px) {
  header .logo img {
    height: 40px;
    width: auto;
  }
  body.admin-bar .off-canvas {
    top: 46px;
  }
  .section {
    padding: 50px 0;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  h3 {
    font-size: 1.7rem;
    margin-bottom: 35px;
  }
  .circle-button {
    width: 30px;
    height: 30px;
  }
  .word-breaker span {
    font-weight: 300;
  }
  .word-breaker span.end {
    margin-right: 10px;
  }
  .page-template-home-new .top-section h1 {
    max-width: 555px;
  }
  .need-section .top-orange {
    min-height: 50px;
  }
  .need-section .top-orange svg {
    height: 40px;
  }
  .testimonial-section .image-wrapper {
    margin-bottom: 40px;
    width: 350px;
    max-width: calc(100% - 40px);
  }
  .team-section .single-member button {
    margin-top: 15px;
  }
  .wpcf7-form {
    margin-bottom: 50px;
  }
  .contact-section .single-detail svg {
    width: 20px;
    height: auto;
    margin-top: 0;
  }
  footer .rights > * {
    margin-right: 6px;
  }
  footer .credit-accessibility {
    margin-top: 20px;
  }
  .about-section .single-about {
    margin-bottom: 30px;
  }
  .about-section .top-image {
    margin-bottom: 15px;
  }
  .careers-section h2 {
    margin-bottom: 20px;
  }
  .careers-section .top-text {
    margin: 0 auto 45px auto;
  }
  .careers-section .slick-dots {
    margin: 30px 0 0px 0;
  }
  .careers-section .read-wrapper {
    margin-top: 50px;
  }
} /* end of (max-width: 768px) */
/****************************************************************************************************************/
@media only screen and (max-width: 640px) {
  .page-template-home-new .top-section h1 {
    font-size: 24px;
    width: 300px;
    max-width: 100%;
  }
} /* end of (max-width: 640px) */
/****************************************************************************************************************/
@media only screen and (max-width: 480px) {
  .page-template-accessibility .main-container {
    padding: 40px 15px;
  }
  .page-template-accessibility h2 {
    font-size: 1.2rem;
  }
  .home .top-section {
    padding: 0;
  }
  .home .top-section .video-slider {
    position: relative;
  }
  .home .top-section .video-slider .slick-track {
    display: flex;
  }
  .home .top-section .video-slider .slick-slide {
    height: auto;
  }
  .home .top-section .video-slider .single-slide {
    padding: 0 0 50px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-weight: 300;
    font-size: 2rem;
  }
  .team-section .team-group .single-member,
  .team-section .team-group.three-row .single-member {
    width: 100% !important;
  }
  .careers-section .single-career {
    flex-direction: column;
  }
  .careers-section .single-career .image {
    margin: 0 0 10px 0;
  }
  .careers-section .read-more {
    font-size: 17px;
  }
  .credit-accessibility {
    flex-direction: column;
    align-items: flex-start;
  }
  .credit-accessibility .credit {
    margin-left: 0;
    margin-top: 10px;
  }
  .page-template-home-new .solution-section .top-text {
    font-size: 1.6rem;
  }
} /* end of (max-width: 480px) */
/****************************************************************************************************************/
/* end of (max-width: 320px) */
/****************************************************************************************************************//*# sourceMappingURL=style.css.map */