@import url("../fonts/fonts.css");
@import url("../icons/icons.css");
@import 'animate.css';

:root {
  --desktop-big: 1780px;
  --desktop-medium: 1400px;
  --desktop-small: 1200px;
  --laptop: 1024px;
  --tablet: 768px;
  --phone: 480px;
}


/* Common Styles */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

header,
body,
footer {
  max-width: 1920px;
  margin: 0 auto;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  line-height: 1.6;
  background-color: white;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #333;
}

h1,
h2 {
  font-weight: 300;
  line-height: 1.2;
  margin: 10px 0;
}

p {
  margin: 3px 0;
}

img {
  width: 100%;
}

iframe {
  border-width: 0px;
  border-style: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

footer {
  /*position: fixed;
  bottom: 0;
  width: 100%;*/
}

.spacer-top {
  margin-top: 10px;
}

.spacer-bottom {
  margin-bottom: 10px;
}

.spacer-bottom-5 {
  margin-bottom: 5px;
}

.spacer-bottom25 {
  margin-bottom: 25px;
}

.spacer-bottom50 {
  margin-bottom: 50px;
}

.spacer-bottom75 {
  margin-bottom: 75px;
}

.component-spacer {
  margin-top: 150px;
}

.box-container {
  margin: 0 auto;
  overflow: auto;
  padding: 40px 40px 10px 40px;
}

.font-size28 {
  font-size: 28px !important;  
}

.mg-tp {
  margin-top: 15px;
}

.mg-tp20 {
  margin-top: 20px;
}

.mg-tp60 {
  margin-top: 60px;
}

.mg-tp75 {
  margin-top: 75px;
}

.mg-bt {
  margin-bottom: 15px;
}

.mg-bt20 {
  margin-bottom: 20px;
}

.mg-rt {
  margin-right: 15px;
}

.mg-rt20 {
  margin-right: 20px;
}

.pdt-15 {
  padding-top: 15px;
}

.mn-wd325 {
  min-width: 325px;
}

.mn-wd300 {
  min-width: 300px;
}

.mn-wd250 {
  min-width: 250px;
}

.mn-wd200 {
  min-width: 200px;
}

.color-green{
  color: #8CC63F;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.column2 {
  grid-template-columns: 1fr 2fr;
}

.grid-row-gap50 {
  max-width: 50%;
  grid-row-gap: 15px;
}

.hidden {
  visibility: hidden;
  height: 0;
}

.table {
  display: table;
}

.table>div {
  display: table-row;
}

.table>div>div {
  display: table-cell;
  padding: 5px;
}

.col-gap-4 {
  column-gap: 4rem;
}

.pd-rt25 {
  padding-right: 25px;
}

.pd-lt25 {
  padding-left: 25px;
}

.max-width1600 {
  max-width: 1600px;
}

.font-size22 {
  font-size: 22px;
}

.icon-info:before {
  color: #1476BD;
}

/* colors */

.color-blue {
  color: #1476BD !important;
}

.color-black {
  color: #434343 !important;
}

.color-br-green {
  color: #EFF604 !important;
}

.color-burgundy {
  color: #ED197C !important;
}

.bold{
  font-weight: bold;
}



/* Header Styles */

.logo {
  width: 550px;
}

.logo img {
  position: relative;
  top: -20px;
}

.icon-size65 {
  font-size: 60px;
}

.icon-size70 {
  font-size: 70px;
}

.info-header {
  width: 50%;
  align-items: center;
  text-align: center;
}

.info-cell {
  color: #1476BD;
  font-family: 'Roboto-Medium';
  font-size: 20px;
}

.cell-col-2 {
  grid-template-columns: 1fr 5fr;
  grid-column-gap: 25px;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}


.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-content {
  height: fit-content;
  flex-direction: row;
}

.flex-content>span {
  flex-grow: 1;
}

.flex-content>.flex-item {
  flex-grow: 0;
}

.header-box {
  background: #FFFFFF;
  opacity: 90%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;
  padding: 40px 40px 10px 40px;
  max-height: 350px;
  position: relative;
  z-index: 1;
}

.nav-bar {
  padding: 20px 0px 0px 0px;
  /*animation: nav-bar-load 500ms ease-in-out;*/
}

.nav-bar ul {
  display: flex;
}

.nav-bar ul li a {
  color: #1476BD;
  padding: 10px;
  margin: 0 5px;
  font-family: 'Quicksand-Regular';
  font-size: 25px;
}

.nav-bar ul li ul {
  display: none;
  position: absolute;
  border-radius: 0px 0px 5px 5px;
  padding: 15px;
  width: 475px;
  background: #FFFFFF;
  opacity: 100%;
}

.nav-bar ul li ul li {
  border-radius: 5px;
}

.nav-bar ul li:hover ul {
    display: block;
}
  
.nav-bar ul li ul li a {
  font-family: 'Quicksand-Regular';
  font-size: 22px;
}

.nav-bar ul li ul li:hover {
  width: 100%;
  background-color: #dff0fc;
}
.nav-selected {
  position: relative;
   /*animation: nav-selected-load 400ms ease-in;*/
}


.nav-selected a {
  color: #8CC63F !important;
  font-family: 'Quicksand-Medium';
}

.nav-not-selected a {
  color: #1476BD !important;
  font-family: 'Quicksand-Medium';
}

.hm-sub-menu ul {
  visibility: hidden;
  transition: visibility 0.5s, opacity 0.5s linear;
  opacity: 0;
  height: 0;
}

.hm-sub-menu ul a {
  color: #1476BD;
}

.sub-menu-wrap a { 
  color: #FFFFFF;
}

.nav-selected-2 {
  color: #8CC63F !important;
}

.sub-menu-wrap {
  display: flex;
  align-items: center;
  column-gap: 10px;
  justify-content: center;
}

.arrow-down {
  width: 0; 
  height: 0; 
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #FFFFFF;
}

.arrow-up {
  width: 0; 
  height: 0; 
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #FFFFFF;
}

/* slider css START*/

.img-slider{
  position: relative;
  margin: 10px;
}

.dh-slider {
  height: 250px;
  max-width: 1400px;
}

.testimonial-slider {
  height: 600px;
  margin: 10px;
}

.img-slider .slide{
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.img-slider .slide.active{
  clip-path: circle(150% at 0 40%);
  transition: 2s;
  transition-property: clip-path;
}

.img-slider .slide img{
  width: 100%;
  border-radius: 5px;
}

.img-slider .slide .info{
  position: absolute;
  top: 0;
  padding: 15px 30px;
}

.img-slider .slide .info h2{
  color: #fff;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
}

.img-slider .slide .info p.sl-content {
  color: #FFFFFF;
  font-family: Quicksand-Regular;
  font-size: 25px;  
  width: 100%;
  height: 250px;
  padding: 15px;
  border-radius: 15px;
  background: linear-gradient(to right, rgb(219, 225, 36, 0.4), rgb(20, 118, 189, 0.4), rgb(219, 225, 36, 0.4));    
}

.img-slider .navigation {
  position: absolute;
  display: flex;
  bottom: -50%;
  left: 70%;
  transform: translateX(-50%);
}

.img-slider .navigation .btn {
  display: grid;
  place-items: center;
  border: 3px solid #FFFFFF;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  cursor: pointer;
  margin-right: 10px;

}

.img-slider .navigation .btn-inner {
  background-color: #FFFFFF;
}

.img-slider .navigation .btn.active  .btn-inner {
  background-color: #FFFFFF;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.testimonial-slider .navigation {
  position: absolute;
  display: flex;
  bottom: -60px;
  left: 50%;  
  bottom: -60px;
}

.testimonial-slider .slide.active{
  clip-path: circle(200% at 0 40%);
}

.navigation .btn{
  background: #8CC63F;
  width: 15px;
  height: 15px;
  margin: 10px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.testimonial-slider .navigation .btn.active{
  background: #1476BD;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

/* slider css END*/

li.nav-selected:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 31%;
  width: 40%;
  height: 3px;
  background: #8CC63F;
  box-shadow: 0 0 23px #8cc63f;
}

.hd-hours {
  grid-template-columns: 2.3fr 2fr;
}


.header-container {
  background-image: url("../images/Home_Slider.png");
  background: linear-gradient(rgba(0, 0, 0, 1.3),
      rgba(0, 0, 0, 0.2)),
    url(../images/Home_Slider.png);
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  width: 100%;
  min-height: 750px;
}

.header-line {
  position: relative;
  top: -14px;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  z-index: -1;
}

.services-container {
  background-image: url("../images/Services.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.7)),
    url(../images/Services.jpg);
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  width: 100%;
  height: 750px;
}

.aboutus-bg {
  background-image: url("../images/AboutUs_Header.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)),
    url(../images/AboutUs_Header.jpg);
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  width: 100%;
  height: 750px;
}

.contact-bg {
  background-image: url("../images/ContactUs_Header.png");
  background: linear-gradient(rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.7)),
    url(../images/ContactUs_Header.png);
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  width: 100%;
  height: 750px;
}

.insurance-bg {
  background-image: url("../images/Insurance_Header.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)),
    url(../images/Insurance_Header.jpg);
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  width: 100%;
  height: 750px;
}

.forms-bg {
  background-image: url("../images/Forms_Header.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)),
    url(../images/Forms_Header.jpg);
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  width: 100%;
  height: 750px;
}

.aboutus-bg .page-title:before {
  min-width: 103px !important;
}

/*.aboutus-bg .header-box {
  max-height: 334px;
}

.insurance-bg .header-box {
  max-height: 334px;
}

.contact-bg .header-box {
  max-height: 334px;
}

.services-container .header-box {
  max-height: 334px;
} */

.dashboard {
  max-width: 1400px;
  min-height: 250px;
  /*position: relative;*/
  border-radius: 23px;
  background: linear-gradient(to right, rgb(219, 225, 36, 0.4), rgb(20, 118, 189, 0.4), rgb(219, 225, 36, 0.4));
  padding: 10px;
  margin-left: 10px;
}

.bg-transparent {
  background: none;
  left: auto;
  max-width: 1800px;
  margin: 0px;
  color: #FFFFFF;
  height: auto;
  padding: 20px 0px 20px 50px;
}

.bg-transparent>p,
.bg-transparent>span {
  color: #FFFFFF !important;
}

.bg-transparent>span {
  text-transform: uppercase;
  font-family: 'Roboto-Medium';
}

.bg-transparent .page-title:before {
  min-width: 150px;
}

.forms .page-title:before {
  min-width: 72px;
}

.testimonials .page-title:before {
  min-width: 150px;
}


.insurance-bg .page-title:before {
  min-width: 118px;
}

.insurance-bd .page-title:before {
  min-width: 225px;
}

.bg-transparent .page-title,
.bg-transparent .page-title>p {
  color: #FFFFFF;
  font-family: 'Roboto-Regular';
  padding: 15px 0px 0px 0px;
}

.about-us .page-title:before {
  min-width: 135px;
}

.box-about-us .page-title:before {
  min-width: 186px;
}

.box-our-team .page-title:before {
  min-width: 95px;
}

.contact-bg .page-title:before {
  min-width: 130px;
}

.contact-us-bd .page-title:before {
  min-width: 143px;
}

.db-title {
  font-family: Roboto-medium;
  font-size: 28px;
  color: white;
  padding-left: 25px;
  padding-bottom: 10px;
}

.db-content {
  font-family: Quicksand-Regular;
  font-size: 25px;
  color: white;
  padding-left: 25px;
  padding-bottom: 30px;
}

.box {
  line-height: 30px;
}

.box:after {
  background: linear-gradient(to right, white 5%, rgb(219, 225, 36), rgb(20, 118, 189), rgb(219, 225, 36), white);
  position: absolute;
  content: '';
  height: 5px;
  right: 0;
  left: 0;
  top: 10;
}

.buttons {
  display: flex;
}

.button {
  border-radius: 50px;
  background: linear-gradient(to right, rgb(20, 118, 189, .7), rgb(219, 225, 36, .7));
  text-align: center;
  font-family: Quicksand-Bold;
  font-size: 20px;
  color: #FFFFFF;
}

.button a {
  text-align: center;
  font-family: Quicksand-Bold;
  font-size: 20px;
  color: #FFFFFF;
}

.button:hover {
  cursor: pointer;
}

.button,
.big {
  width: 250px;
  height: 50px;
  line-height: 50px;
}

.buttons .btn-ptp .icon-patients-portal {
  position: relative;
  top: 8px;
  font-size: 35px;
}

.buttons .btn-ptp-text {
  font-size: 22px;
}


.container-service,
.about-us {
  width: 100%;
  height: auto;
}

.service-list {
  display: grid;
  height: auto;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 5rem;
  column-gap: 2.3rem;
  padding: 0px 40px 0px 40px;
}

.box-service {
  text-align: center;
  width: 300px;
  height: 300px;
  border-radius: 23px;
  background-image: url("../images/design/ServiceBox.jpg");
  background-size: 300px 300px;
  background-repeat: no-repeat;
  position: relative;
}

.page-title {
  color: #8CC63F;
  font-family: 'Roboto-Regular';
  font-size: 22px;
  padding: 0px 40px 0px 40px;
}

.page-title:before {
  content: '';
  position: absolute;
  min-width: 300px;
  height: 3px;
  background: #8cc63f;
  box-shadow: 0 0 23px #8cc63f;
  margin-top: 33px;
}

.page-title>p {
  font-family: 'Roboto-Regular';
  font-size: 26px;
  color: #434343;
  text-align: justify;
  padding-bottom: 10px
}

.container-service .page-title:before {
  min-width: 150px;
}

.app-req .page-title:before {
  min-width: 262px;
}

.news .page-title:before {
  min-width: 120px;
}

.box-working-hours {
  width: 100%;
  min-height: 400px;
  top: 35%;
  left: 17%;
  border-radius: 5px;
  background: linear-gradient(to right, rgb(219, 225, 36, .3), rgb(20, 118, 189, .4));
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.serv-icon {
  font-size: 75px;
  color: #8CC63F !important;
  background-color: #DBE124;
  top: 35px;
  border-radius: 50%;
  position: absolute;
  left: 100px;
  padding: 15px;
}

.serv-icon-2 {
  font-size: 75px;
  color: #8CC63F !important;
  background-color: #DBE124;
  border-radius: 50%;
  padding: 15px;
}

.serv-title {
  font-size: 20px;
  color: #1476BD;
  padding: 80px 45px 0px 45px;
  text-align: center;
  margin-top: 70px;
  font-family: 'Roboto-Regular';
  text-transform: uppercase;
}

.serv-title a {
  color: #1476BD;
}

.serv-content {
  font-size: 18px;
  color: #434343;
  padding: 10px 45px 30px 45px;
  text-align: justify;
  margin: 0px;
  font-family: Quicksand-Bold;
}

.serv-arrow {
  font-size: 75px;
  color: #1476BD !important;
  position: absolute;
  left: 40px;
  padding: 15px;
}

.sd-title {
  font-size: 40px;
  color: #1476BD;
  font-family: 'Roboto-medium';
  text-transform: uppercase;
  padding: 0px 40px 0px 40px;
}
.sd-title-desc {
  color: #434343;
  font-size: 28px;
  font-family: 'Roboto-regular';
  text-transform: none;
}
.sd-page-divider img {
  width: auto;
}

.sd-qa-title img {
  width: 200px;
}

.sd-qa-content {
  padding: 0px 40px 0px 40px;
}

.sd-qa-content p:nth-child(1n){
  font-size: 28px;
  color: #1476BD;
  font-family: 'Roboto-italic';
}

.sd-qa-content p:nth-child(2n){
  font-size: 28px;
  color: #434343;
  font-family: 'Roboto Condensed';
}

.box-working-hours {
  padding: 50px 0px 0px 50px;
}

.box-working-hours .page-title:before {
  margin-top: 34px;
  width: 174px;
}

.box-working-hours .hours {
  color: #434343;
  font-size: 22px;
}

.hours .cell-col-2 {
  grid-template-columns: 1fr 3fr;
}

.connect {
  margin: 10px 0px 0px 10px;
}

.connect .cell-col-2 {
  grid-template-columns: 0fr 2fr;
  margin-bottom: 75px;
}

.footer {
  background-color: #1476BD;
  height: 50px;
  width: 100%;
  border-radius: 1px;
  text-align: center;
  vertical-align: middle;
}

.footer>p {
  color: #FFFFFF;
  font-size: 15px;
  padding-top: 15px;
}

.forms-link {
  grid-template-columns: 1fr 1fr;
  font-family: 'Roboto-Medium';
  color: #1476BD;
  font-size: 22px;
}

.forms-link>div {
  margin: 0 auto;
}

.forms-link span {
  padding-left: 25px;
}

.form-link-seperator {
  height: 225px;
  width: 2px;
  background: #DBE124;
  position: absolute;
  left: 50%;
}

.forms-link a {
  color: #1476BD;
}

div.forms-link>div>div {
  margin-bottom: 50px;

}

.form-style {
  max-width: 800px;
  padding: 10px 20px;
  /*margin: 10px auto;*/
  padding: 20px;
  border-radius: 8px;
  font-family: 'Roboto-regular';
}

.form-style fieldset {
  border: none;
}

.form-style legend {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.form-style label {
  display: block;
  margin-bottom: 8px;
}

.form-style input[type="text"],
.form-style input[type="email"],
.form-style textarea {
  font-family: 'Roboto-regular';
  background: rgba(255, 255, 255, .1);
  border: none;
  border-radius: 6px;
  font-size: 15px;
  margin: 0;
  outline: 0;
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  background-color: #e8eeef;
  color: #8a97a0;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
  margin-bottom: 30px;
}

.form-style input::placeholder, .form-style textarea::placeholder {
  font-weight: bold;
  opacity: 90;
  color: rgb(194, 68, 152);
}

.form-style textarea {
  min-height: 200px;
}

.form-btn {
  min-width: 760px;
  margin-left: 0px;
  border-radius: 6px;
  height: 47px;
}

.icon-size350 {
  font-size: 350px;
}

.overlap-arrow {
  top: -180px;
  position: relative;
  left: 238px;
}

.contact-form-box {
  margin-top: 10px;
  margin-left: -350px;
}

.contact-us-box {
  background-image: url("../images/ContactUs_HomePage.png");
  background: linear-gradient(rgba(20, 118, 189, 0.7),
      rgba(20, 118, 189, 1.0)),
    url(../images/ContactUs_HomePage.png);
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  width: 100%;
  background-color: #1476BD;
  min-height: 800px;
  height: auto;
  width: 100%;
  border-radius: 1px;
  padding: 40px;
  color: #FFFFFF;
  font-family: 'Roboto-Regular';
}

.contact-us-info {
  display: grid;
  grid-template-columns: 8fr 4fr;
}

.contact-us-info-1 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  row-gap: 50px;
}

.cnt-us-map iframe {
  max-height: 450px;
  width: 460px;
}

.contact-us-box .page-title {
  padding: 0px;
}

.contact-us-box .page-title:before {
  min-width: 115px;
}

.contact-us-box .page-title,
.contact-us-box .page-title>p {
  color: #FFFFFF;
}

.cnt-us-hours {
  grid-template-columns: 50% 75%;
}

.contact-us-box .icon-Call_blue_Service_page:before {
  color: #FFFFFF;
}

.flex-gap300 {
  gap: 300px;
  margin-bottom: 75px;
}

.flex-gap136 {
  gap: 136px;
  margin-bottom: 75px;
}

.cnt-us-map {
  text-align: center;
  width: 500px;
  height: 500px;
  background-image: url("../images/design/PhotoFrame_Green.png");
  background-repeat: no-repeat;
  position: relative;
  background-size: 500px 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*.cnt-us-map-frame {
  margin-left: -42px;
  margin-top: 22px;
}*/

.general-list {
  padding: 20px 20px 20px 60px;
  font-family: 'Roboto-Regular';
  font-size: 28px;
}

.general-list>div {
  margin-bottom: 15px;
}

.general-list span [class=icon-Insurance_Arrow] {
  padding-right: 40px;
}

.general-title {
  color: #8CC63F;
  font-family: 'Roboto-Regular';
  font-size: 22px;
  padding: 0px 40px 0px 40px;
}

.icon-Insurance_Arrow::before {
  color: #ED197C;
  padding-right: 30px;
}

.insurance-info-box {
  background-image: url("../images/Health_Insurance_Add-on_Covers.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.4)),
    url(../images/Health_Insurance_Add-on_Covers.jpg);
  background-repeat: repeat, no-repeat;
  width: 100%;
  background-color: #1476BD;
  min-height: 400px;
  height: auto;
  width: 100%;
  border-radius: 1px;
  padding: 40px;
  color: #FFFFFF;
  font-family: 'Roboto-Regular';
  font-size: 40px;
}

.insurance-info-box p {
  padding: 20px;
}

.insurance-info-box span:nth-child(2) {
  font-family: 'Roboto-Bold';
  font-size: 42px;
}

.insurance-info-box .icon-Call_Blue:before {
  color: #FFFFFF !important;
  font-size: 72px;
  position: relative;
  top: 10px;
}

.box-about-us {
  width: 100%;
  height: auto;
  top: 35%;
  left: 17%;
  border-radius: 5px;
  background: linear-gradient(to right, rgb(219, 225, 36, .6), rgb(20, 118, 189, .2));
  padding: 20px 10px 10px 0px;
}

.box-about-us .grid {
  grid-template-columns: 2.1fr 1fr;
  grid-column-gap: 4rem;
}

.txt-about-us {
  font-size: 18px !important;
}

.photo-frame {
  width: auto;
  height: auto;
  background-image: url(../images/design/PhotoFrame.png);
  background-repeat: no-repeat;
  position: relative;
  background-size: 500px 500px;
  padding: 45px;
}

.photo-frame img {
  max-width: 410px;
  max-height: 410px;
  height: 100%;
}

.box-about-us .page-title {
  color: #1476BD;
}

.box-about-us .page-title:before {
  background: #1476BD;
  ;
}


.team-list {
  display: grid;
  height: auto;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  row-gap: 1rem;
  column-gap: 4rem;
  padding: 0px 40px 0px 40px;
}

.person-text {
  text-align: center;
  font-family: 'Roboto Medium';
  margin-right: 80px;
}

.person-text>span {
  color: #1476BD;
  font-size: 26px;
}

.person-text>p {
  color: #434343;
  font-size: 20px;
  text-align: justify;
}

.box-testimonial {
  background-image: url("../images/Home_Testimonials.jpg");
  background: linear-gradient(rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.5)),
    url(../images/Home_Testimonials.jpg);
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  width: 100%;
  height: auto;
  text-align: center;
  /*padding: 10px 50px 50px 0px;*/
}
.height600 {
  height: 600px;
}
p.text-h1 {
  color: #1476BD;
  font-size: 30px;
  font-family: 'Quicksand-Bold';
}

p.text-h2 {
  color: #954399;
  font-size: 59px;
  font-family: 'Quicksand-Bold';
}

p.text-content {
  color: #434343;
  font-size: 25px;
  font-family: 'Roboto-Regular';
  padding: 0px 50px 0px 50px;
}

p.text-h3 {
  color: #1476BD;
  font-size: 44px;
  font-family: 'Roboto-Medium';
  text-align: end;
  padding-right: 190px;
  margin-top: 0px;
}

p.text-testimonial-h3 {
  color: #1476BD;
  font-size: 44px;
  font-family: 'Roboto-Medium';
  text-align: end;
  padding-right: 190px;
  margin-top: 0px;
}

p.text-h3:before {
  content: '';
  position: absolute;
  width: 125PX;
  height: 3px;
  background: #8cc63f;
  box-shadow: 0 0 23px #8cc63f;
  margin-top: 65px;
}

p.text-h4 {
  color: #1476BD;
  font-size: 32px;
  font-family: 'Roboto-Bold';
  text-align: end;
  padding-right: 130px;
}

.box-testimonial .icon-Quotes_Icon:before {
  font-size: 75px;
  position: relative;
  left: 78px;
  top: 5px;
  opacity: 0.6;
}

.testimonial-icon {
  font-size: 75px;
  border-radius: 50%;
  position: relative;
  padding: 15px;
  top: -55px;
  background-color: #DBE124;
}


.box-testimonial .icon-HIPAAForm:before {
  color: #FFFFFF;
}

.appointment-req {
  height: auto;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  row-gap: 1rem;
  column-gap: 0rem;
}

.appointment-req>div {
  border-right: #DBE124 solid 3px;
  padding: 0px 20px 0px 20px;
}

.appointment-req>div:last-child {
  border-right: none;
}

.app-req-1 {
  background-image: url("../images/Appointment_New_Patients.jpg");
  background: linear-gradient(rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.3)),
    url(../images/Appointment_New_Patients.jpg);
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  width: 100%;
  height: auto;
  text-align: center;
}

.app-req-2 {
  background-image: url("../images/New_Patients.jpg");
  background: linear-gradient(rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.3)),
    url(../images/New_Patients.jpg);
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  width: 100%;
  height: auto;
  text-align: center;
}

.app-req-3 {
  background-image: url("../images/Appointments_In\ House\ Lab.jpg");
  background: linear-gradient(rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.3)),
    url(../images/Appointments_In\ House\ Lab.jpg);
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  width: 100%;
  height: auto;
  text-align: center;
}

.app-req-icon {
  font-size: 75px;
  color: #FFFFFF;
  background-color: #1476BD;
  top: 200px;
  border-radius: 50%;
  position: relative;
  padding: 15px;
  display: inline-block;
}

.appointment-req p:nth-child(2) {
  color: #1476BD;
  font-size: 26px;
  font-family: 'Roboto-Medium';
  margin-top: 220px;
}

.appointment-req p:nth-child(3) {
  color: #434343;
  font-size: 26px;
  font-family: 'Quicksand-Medium';
}

.appointment-req>span {
  color: #1476BD;
}

.news-feed {
  display: grid;
  height: auto;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  row-gap: 1rem;
  column-gap: 4rem;
  padding: 0px 40px 0px 40px;
}

.news-feed>div {
  width: 100%;
  min-height: 300px;
  color: #434343;
  font-family: 'Roboto-Bold';
  font-size: 22px;
}

.news-feed p {
  border-top: #dcdcdc solid 1px;
  padding: 20px;
  text-align: left;
}

.news-feed-img1 {
  background: linear-gradient(rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1)),
    url(../images/Home_Latest_News_1.png);
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  min-height: 250px;
  margin-bottom: 10px;
}

.news-feed-img2 {
  background: linear-gradient(rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1)),
    url(../images/Home_Latest_News_2.png);
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  min-height: 250px;
  margin-bottom: 10px;
}

.news-feed-img3 {
  background: linear-gradient(rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1)),
    url(../images/Home_Latest_News_3.png);
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  min-height: 250px;
  margin-bottom: 10px;
}

.news-feed-img4 {
  background: linear-gradient(rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1)),
    url(../images/Home_Latest_News_4.png);
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  min-height: 250px;
  margin-bottom: 10px;
}

.nav-bar-phone,
.info-cell-phone {
  display: none;
}

.side-menu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #333;
  opacity: 0.8;
  overflow-x: hidden;
  transition: 0.5s;
}

.header-tools {
  align-items: baseline;
  column-gap: 9rem;
}

.menu-wrap .toggler:checked~.dashboard {
  z-index: -1;
}

.info-wrap {
  position: relative;
  top: 0;
  left: 0;
  z-index: 6;
  visibility: hidden;
  left: -50px;
}


/* INFO TOGGLER STYLE START */

.info-wrap .toggler {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 3;
  cursor: pointer;
  opacity: 0;
  width: 20px;
  height: 20px;
  cursor: pointer !important;
}

.info-wrap .circle>div {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(20, 118, 189);
}


.info-wrap .circle>div::after {
  content: " ";
  position: absolute;
  display: block;
  background-color: rgb(219, 225, 36, .8);
  height: 10px;
  border-radius: 2px;
  margin-top: -5px;
  top: 50%;
  left: 8px;
  right: 8px;
  z-index: 9;
}

.info-wrap .circle>div::before {
  content: " ";
  position: absolute;
  display: block;
  background-color: rgb(219, 225, 36, .8);
  width: 10px;
  margin-left: -5px;
  border-radius: 2px;
  left: 50%;
  top: 8px;
  bottom: 8px;
  z-index: 9;
}


.info-wrap .toggler:checked+.circle>div:before,
.info-wrap .toggler:checked+.circle>div:after {
  transform: rotate(45deg);
}

.info-wrap .toggler:checked~.info {
  visibility: visible;
}

.info-wrap .toggler:checked~.info>div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}

.info-wrap .toggler:checked~.info>div>div {
  opacity: 2;
  transition: opacity 0.4s ease 0.4s;
}

.info-wrap .info {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-wrap .info>div {
  background: rgba(20, 118, 189);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  width: 200vw;
  height: 200vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}

.info-wrap .info>div>div {
  max-width: 70%;
}

.info-item {
  color: white;
  font-family: 'Roboto-Medium';
  font-size: 20px;
}

.info-item .icon-Call_Blue:before,
.info-item .icon-Location_Blue:before,
.info-item .icon-Fax_blue:before,
.info-item .icon-clock_Blue:before {
  color: white;
}

.info-wrap .toggler:checked~.menu {
  visibility: hidden !important;
}

/* INFO TOGGLER STYLE END */
.cover {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: -100vw;
  z-index: 1000;
}
.transition.slide .cover1 {
  background-color: skyblue;
  animation: slide 3400s ease-in-out forwards;
}

.contact-us-app-link {
  color: #DBE124;
  font-size: 18px;
  font-style: 'Roboto-Bold';
}

.contact-ko-msg {
  color: red;
  width: 100%;
  text-align: center;
  display: none;
  font-family: 'Roboto-Regular';
  font-size: 22px;
}

.contact-ok-msg {
  color: rgb(194, 68, 152);
  width: 100%;
  text-align: center;
  display: none;
  font-family: 'Roboto-Regular';
  font-size: 22px;
}

.box-televisit {
  width: 100%;
  border-radius: 5px;
  background: linear-gradient(to bottom, rgb(219, 225, 36,0.4), rgb(140, 198, 63, 0.9));
  padding: 40px 20px 40px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 150px;
}

.container-televisit .page-title:before {
  min-width: 213px;
  background: none;
  box-shadow: none;
}

.photo-frame-tv {
  text-align: center;
  color: #434343;
}

.photo-frame-font-1{
  font-family: 'Roboto-Bold';
  font-size: 26px;
}

.photo-frame-font-2{
  font-family: 'Quicksand-Bold';
  font-size: 20px;
}

.videoIcon-frame {
  padding-top: 5px;
  font-size: 65px;
}

.gn-font{
  font-family: 'Roboto-Regular';
  font-size: 22px !important;
  padding: 10px !important;
  color: #333;
}

.hiliter-font{
  font-family: 'Roboto-italic';
  font-size: 26px !important;
  color: #8CC63F;
}

@keyframes slide {
  from {
    left: -100vw;
  }
  to {
    left: 0;
  }
}


@keyframes nav-bar-load {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes nav-selected-load {
  0% {
    transform: translateY(200%);
  }

  100% {
    transform: translateY(0);
  }
}



@media only screen and (max-width: 1900px) {
  .box-service {
    width: 325px;
    height: 325px;
    background-size: 325px 325px;
  }

  .serv-title {
    font-size: 18px;
  }

  .serv-content {
    font-size: 14px;
  }

  .team-list {
    gap: 9rem;
  }

  .team-list .photo-frame {
    background-size: 425px 425px;
    padding: 33px;
  }

  .team-list .photo-frame img {
    max-width: 360px;
    max-height: 360px;
  }

  .app-req-icon {
    font-size: 70px;
  }

}

@media only screen and (max-width: 1680px) {

  /* nav bar */
  .nav-bar a , .nav-bar ul li a, .nav-bar ul li ul li a {
    font-size: 20px;
  }

  .button, .big {
    width: 230px;
  }

 .header-tools {
  column-gap: 6rem;
 }

 .button a {
    font-size: 18px;
 }

  .info-cell {
    font-size: 18px;
  }

  /* service section*/
  .box-service {
    text-align: center;
    width: 300px;
    height: 300px;
    background-size: 300px 300px;
  }

  .serv-title {
    font-size: 16px;
  }

  .serv-content {
    font-size: 14px;
  }

  .photo-frame {
    background-size: 425px 425px;
    padding: 33px;
  }

  .photo-frame img {
    max-width: 360px;
    max-height: 360px;
  }

  .box-about-us .page-title>p {
    font-size: 24px;
  }

  .team-list {
    gap: 6rem;
  }

  .team-list .photo-frame {
    background-size: 375px 375px;
    padding: 27px;
  }

  .team-list .photo-frame img {
    max-width: 320px;
    max-height: 320px;
  }

  .app-req-icon {
    font-size: 70px;
  }

  .contact-us-box .font-size22 {
    font-size: 20px;
  }

  .img-slider .navigation {
    left: 60%;
  }

  .photo-frame-font-1{
    font-size: 20px;
  }

  .photo-frame-font-2{
    font-size: 16px;
  }

  .box-televisit {
    column-gap: 120px;
  }
}

@media only screen and (max-width: 1440px) {

  /* nav bar */
  .nav-bar a, .nav-bar ul li a, .nav-bar ul li ul li a {
    font-size: 19px;
 } 

 .nav-bar ul li ul{
   width: 420px;
 }
  
 .button, .big {
  width: 200px;
 }

 .button a {
  font-size: 15px;
 }

  .info-cell {
    font-size: 16px;
  }

  .logo {
    width: 500px;
  }

  .flex-content>span {
    flex-grow: .5;
    }

  .service-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .box-service {
    width: 325px;
    height: 325px;
    background-size: 325px 325px;
  }

  .serv-title {
    font-size: 18px;
  }

  .serv-content {
    font-size: 14px;
  }

  .box-about-us .page-title>p {
    font-size: 22px;
  }

  .box-about-us .grid {
    grid-template-columns: 1.7fr 1fr;
    column-gap: 3rem;
  }

  .team-list {
    gap: 4rem;
  }

  .team-list .photo-frame {
    background-size: 350px 350px;
    padding: 25px;
  }

  .team-list .photo-frame img {
    max-width: 300px;
    max-height: 300px;
  }

  .person-text {
    margin-right: 55px;
  }

  .appointment-req p:nth-child(2),
  .appointment-req p:nth-child(3) {
    font-size: 24px;
  }

  .app-req-icon {
    font-size: 65px;
  }

  p.text-h1 {
    font-size: 26px;
  }

  p.text-h2 {
    font-size: 55px;
  }

  p.text-content {
    font-size: 26px;
  }

  p.text-h3 {
    font-size: 40px;
  }

  p.text-h4 {
    font-size: 26px;
    padding-right: 155px;
  }

  .box-testimonial .icon-Quotes_Icon:before {
    font-size: 70px;
  }

  .dashboard {
    margin-right: 50px;
  }

  .contact-us-box .font-size22 {
    font-size: 16px;
  }

  .header-tools {
    column-gap: 1rem;
 }

 .img-slider .navigation {
  left: 50%;
 }

 .box-televisit {
  column-gap: 80px;
}

 .photo-frame-font-1{
  font-size: 18px;
}

.photo-frame-font-2{
  font-size: 14px;
}

}

@media only screen and (max-width: 1280px) {
  .nav-bar a, .nav-bar ul li a {
    font-size: 15px;
  }

  .button, .big {
		width: 160px;
		height: 40px;
		line-height: 40px;
	}

	.button a {
		font-size: 12px;
	}
   
	 .buttons .btn-ptp .icon-patients-portal {
		font-size: 25px;
	 }
	 
	 .header-tools {
		column-gap: 1rem;
	}

  .header-box {
    padding: 40px 20px 10px 20px;
  }

  .logo {
    width: 425px;
  }

  .header-box .cell-col-2 {
    grid-template-columns: 1fr 5fr;
    grid-column-gap: 15px;
  }

  .info-cell {
    font-size: 13px;
  }

  .info-cell .hd-hours {
    grid-template-columns: 1fr 1.5fr;
  }

  .column2 {
    grid-template-columns: 1fr 1.5fr;
  }

  .flex-content>span {
    flex-grow: 1;
  }

  .box-service {
    text-align: center;
    width: 300px;
    height: 300px;
    background-size: 300px 300px;
  }

  .serv-title {
    font-size: 16px;
  }

  .serv-content {
    font-size: 14px;
  }

  .photo-frame {
    background-size: 350px 350px;
    padding: 25px;
  }

  .photo-frame img {
    max-width: 300px;
    max-height: 300px;
  }

  .box-about-us .page-title>p {
    font-size: 17px;
  }

  .box-about-us .grid {
    grid-template-columns: 1.4fr 1fr;
    column-gap: 1.5rem;
  }

  .team-list {
    gap: 2rem;
  }

  .team-list .photo-frame {
    background-size: 275px 275px;
    padding: 23px;
  }

  .team-list .photo-frame img {
    max-width: 230px;
    max-height: 230px;
  }

  .person-text {
    margin-right: 100px;
  }

  .appointment-req p:nth-child(2),
  .appointment-req p:nth-child(3) {
    font-size: 20px;
  }

  .app-req-icon {
    font-size: 60px;
  }

  p.text-h1 {
    font-size: 20px;
  }

  p.text-h2 {
    font-size: 35px;
  }

  p.text-content {
    font-size: 18px;
    text-align: justify;
  }

  p.text-testimonial-h3 {
    font-size: 28px;
  }

  p.text-h3 {
    font-size: 36px;
    padding-right: 130px;
  }

  p.text-h3:before {
    width: 101PX;
    margin-top: 55px;
  }

  p.text-h4 {
    font-size: 22px;
    padding-right: 104px;
  }

  .box-testimonial .icon-Quotes_Icon:before {
    font-size: 65px;
  }

  .hours .cell-col-2 {
    grid-template-columns: 1fr 2.5fr;
  }

  .box-working-hours {
    padding: 30px 0px 0px 10px;
  }

  .bg-transparent .page-title>p {
    font-size: 26px;
  }

  .contact-us-box .font-size22 {
    font-size: 15px;
  }

  .contact-us-box .flex-gap300 {
    gap: 230px;
  }

  .contact-us-info-1,
  .contact-us-info {
    grid-template-columns: 1fr;
  }

  .img-slider .navigation {
    left: 50%;
  }

 .nav-bar a, .nav-bar ul li a {
    font-size: 15px;
 }

 .nav-bar ul li ul li a { 
  font-size: 15px;
 }

 .nav-bar ul li ul {
  width: 350px;
 }

 .overlap-arrow {
  top: -179px;
  left: 235px;
 }

 .box-televisit {
  column-gap: 50px;
}

.photo-frame-font-1{
  font-size: 16px;
}

.photo-frame-font-2{
  font-size: 12px;
}

}

@media only screen and (max-width: 1024px) {
  .logo {
    width: 425px;
  }

  .nav-bar a {
    font-size: 16px;
  }

  .menu-wrap {
    visibility: visible;
  }

  .info-cell-mobile {
    visibility: visible;
  }

  .nav-bar {
    visibility: hidden;
  }

  .info-cell {
    display: none
  }

  .info-wrap {
    visibility: visible;
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .box-service {
    width: 325px;
    height: 325px;
    background-size: 325px 325px;
  }

  .serv-title {
    font-size: 18px;
  }

  .serv-content {
    font-size: 14px;
  }


  .box-about-us .grid {
    grid-template-columns: 1.1fr 1fr;
    column-gap: 1rem;
  }

  .team-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-list {
    row-gap: 4rem;
    column-gap: 4rem;
  }

  .person-text {
    margin-right: 0px;
  }

  .appointment-req p:nth-child(2),
  .appointment-req p:nth-child(3) {
    font-size: 16px;
  }

  .app-req-icon {
    font-size: 55px;
  }

  .news-feed {
    grid-template-columns: repeat(2, 1fr);
  }

  .box-testimonial .icon-Quotes_Icon:before {
    font-size: 60px;
  }

  .hours .cell-col-2 {
    grid-template-columns: 1fr 1fr;
  }

  .box-working-hours .page-title>p {
    font-size: 24;
  }

  .box-working-hours .hours {
    font-size: 20px;
  }

  .bg-transparent .page-title>p {
    font-size: 23px;
  }

  .form-style {
    max-width: 600px;
  }

  .form-btn {
    min-width: 560px;
  }

  .contact-form-box {
    margin-left: -400px;
  }

  .insurance-list {
    font-size: 24px;
    padding: 0px 20px 0px 40px;
  }

  .insurance-info-box {
    font-size: 30px;
    padding: 10px;
  }

  .insurance-info-box span:nth-child(2) {
    font-size: 32px;
  }

  .form-link-seperator {
    display: none;
  }

  .forms-link {
    grid-template-columns: 1fr;
  }

  .forms-link>div {
    margin: 0 0;
  }

  .forms-link .flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer {
    height: 60px;
  }

  .footer>p {
    padding-bottom: 15px;
  }

  .header-tools {
    width: 100%;
    justify-content: end;
  }
  .menu-wrap {
    margin-top: 20px;
  }

  .box-televisit {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .photo-frame-font-1{
    font-size: 16px;
  }
  
  .photo-frame-font-2{
    font-size: 12px;
  }
  
}

@media only screen and (max-width: 800px) {
  .box-service {
    text-align: center;
    width: 300px;
    height: 300px;
    background-size: 300px 300px;
  }

  .overlap-arrow {
    display: none;
  }

  .contact-form-box {
    margin-left: 0px;
  }

  .serv-title {
    font-size: 16px;
  }

  .serv-content {
    font-size: 14px;
  }

  .box-about-us .grid {
    grid-template-columns: 1fr;
  }

  .photo-frame {
    left: 240;
  }

  .appointment-req {
    grid-template-columns: repeat(1, 1fr);
  }

  .appointment-req>div {
    border-right: none;
  }

  .app-req-icon {
    font-size: 50px;
  }

  .nav-bar {
    display: none;
  }

  p.text-content {
    font-size: 16px;
  }

  .news-feed {
    grid-template-columns: 1fr;
  }

  p.text-h3:before {
    width: 100PX;
    margin-top: 55px;
  }


  .box-working-hours {
    grid-template-columns: 1fr;
  }

  .connect {
    margin: 40px 0px 0px 40px;
  }

  .connect .cell-col-2 {
    grid-template-columns: 0fr 2fr;
    margin-bottom: 30px;
  }

  p.text-content {
    padding: 0px 15px 0px 15px;
  }

  .box-working-hours .hours {
    font-size: 18px;
  }

  .bg-transparent .page-title>p {
    font-size: 18px;
  }

  .container-service .page-title>p {
    font-size: 18px;
    padding-right: 20px;
  }

  .menu-wrap {
    margin-top:0px;
  }

  .header-box {
    padding: 40px 20px 20px 20px;
  }

}

  @media only screen and (max-width: 700px) {
    .service-list {
      grid-template-columns: repeat(1, 1fr);
    }

    .box-service {
      width: 325px;
      height: 325px;
      background-size: 325px 325px;
    }

    .serv-title {
      font-size: 18px;
    }

    .serv-content {
      font-size: 14px;
    }

    .team-list {
      grid-template-columns: repeat(1, 1fr);
    }

    .buttons {
      display: grid;
      grid-row-gap: 20px;
      place-items: center;
    }

    .dashboard {
      margin: 25px;
    }

    .box-working-hours {
      padding: 50px 0px 0px 10px;
    }

    .box-working-hours .hours {
      font-size: 16px;
    }

    .button, .big {
      margin-right: 0px;
    }

    .testimonials {
      height: 180vh;
    }
    .menu-wrap {
      margin-top: 20px;
    }
    
    .photo-frame-font-1{
      font-size: 14px;
    }
    
    .photo-frame-font-2{
      font-size: 10px;
    }
  }

  @media only screen and (max-width: 500px) {

    .contact-us-info .max-width1600 {
      max-width: 350px;

    }

    .logo img {
      width: 70%;
    }

    .header-line {
      top: -41px;
    }

    .cnt-us-map {
      width: 300px;
      height: 300px;
      background-size: 450px 450px;

    }

    .form-style {
      max-width: 350px;
    }

    .form-btn {
      min-width: 315px;
    }

    .overlap-arrow {
      display: none;
    }

    .contact-form-box {
      margin-left: 0px;
    }

    .contact-us-bd .spacer-bottom75 {
      margin-bottom: 0px;
    }

    .service-list {
      padding: 0px 40px 0px 30px;
    }

    .box-televisit {
      grid-template-columns: repeat(1, 1fr);
    }
  
  }

  @media only screen and (max-width: 400px) {

    .header-box {
      padding: 15px 5px 10px 5px;

    }

    .box-service {
      width: 300px;
      height: 300px;
      background-size: 300px 300px;
    }

    .serv-title {
      font-size: 17px;
    }
  }

  @media (max-width: 620px) {
    .img-slider {
      width: 400px;
      height: 250px;
    }

    .img-slider .slide.active{
      clip-path: circle(300% at 0 40%);
    }
  
    .img-slider .slide .info{
      padding: 10px 20px;
    }
  
    .img-slider .slide .info h2{
      font-size: 30px;
    }
  
    .img-slider .slide .info p{
      width: 80%;
      font-size: 15px;
    }

    .testimonial-slider .slide .info p{
      font-size: 15px;
      width: 100%;
    }

    .testimonial-slider {
      width: 100% !important;
    }

    .testimonial-slider .navigation {
      bottom: -500px !important;
    }

    .height600 {
      height:130vh;
    }
  
    .img-slider .slide .info p.sl-content {
      height: 430px;
      font-size: 18px;
    }

    .img-slider .navigation {
      bottom: -285px;
      left: 50%;
    }

    .footer>p {
      padding-top: 10px;
    }

  }
  
  @media (max-width: 420px){
    .img-slider{
      width: 320px;
      height: 200px;
    }

    .img-slider .slide .info{
      padding: 5px 10px;
    }
  
    .img-slider .slide .info h2{
      font-size: 25px;
    }
  
    .img-slider .slide .info p{
      width: 80%;
      font-size: 15px;
    }

    .testimonial-slider .slide .info p{
      font-size: 15px;
      width: 100%;
    }
    .testimonial-slider .slide.active{
      clip-path: circle(370% at 0 40%);
    }

    .box-testimonial {
      width: 100%;
      margin-top: 75px;
    }

    .testimonials{
      padding-right: 15px;
    }

    .testimonial-slider .navigation {
      bottom: -780px !important;
   }

    .db-title {
      font-size: 15px;
    } 
    
    .info-item {
      font-size: 15px;
    }
  }
