* {
  margin: 0;
  padding: 0;
  outline: 0 !important;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

:root {
  --black: #102037;
  --dark-blue: #001e67;
  --light-blue: #f5faff;
  --gold: #c26d2a;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0.01rem auto 0;
  padding: 0;
  color: #202020;
  font-size: 16px;
  width: 100%;
  font-weight: 400;
  background-color: #fff;
  overflow-x: hidden;
}

.row > *,
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  padding: 0 15px;
}

.row {
  margin: 0 -15px;
}

b,
strong {
  font-weight: 800;
}

p {
  margin: 0 0 0.8rem;
}

p,
ul li {
  font-size: 16px;
  line-height: 26px;
}

ol,
ul {
  padding-left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-blue);
  font-weight: 800;
}

a,
button,
input[type=submit] {
  color: #202020;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s all ease-in-out;
}

a:focus,
a:hover,
button:focus,
button:hover {
  color: var(--gold);
  text-decoration: none;
  outline: 0 !important;
}

.pointer-event-none {
  pointer-events: none;
}

header {
  position: static;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  padding: 15px 0;
  animation-duration: 0.5s;
  transition: 0.3s all ease-in-out;
  box-shadow: 0px 4.81px 33.66px rgba(0, 0, 0, 0.09);
}
header.menu-fix {
  position: fixed;
  animation-name: fadeInDown;
  animation-fill-mode: none;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}

.logo-area img {
  animation-duration: 0.6s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-fill-mode: none;
  width: 150px;
}
.menu-fix .logo-area img {
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-fill-mode: none;
  width: 120px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  opacity: 0;
  z-index: 99;
  transform-origin: bottom center;
  transform: rotate(-90deg) scale(0) translateX(85px);
  width: 40px;
  height: 40px;
  display: inline-block;
  background-color: var(--gold);
  padding: 0;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 2.5rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}
.scroll-to-top.fade.in {
  opacity: 1;
  transform: rotate(0) scale(1) translateX(0);
}
.scroll-to-top:hover {
  color: #fff;
  background-color: #1b1b1b;
}

@keyframes float-icon {
  0% {
    bottom: 20px;
  }
  25% {
    bottom: 10px;
  }
  50% {
    bottom: 20px;
  }
  75% {
    bottom: 10px;
  }
  100% {
    bottom: 20px;
  }
}
::-moz-selection {
  color: #fff;
  background: var(--dark-blue);
}
::selection {
  color: #fff;
  background: var(--dark-blue);
}

.footer-bg {
  padding: 60px 0 0;
  background-color: #082164;
}
.footer-bg a, .footer-bg p {
  font-size: 1.4rem;
  line-height: 2.5rem;
}

.footer-left-block img {
  margin: 0 0 15px;
  width: 160px;
}

.foot-head {
  font-size: 2.2rem;
  line-height: 3.2rem;
  margin: 0px 0 15px;
  font-weight: 500;
}
.foot-head span {
  color: var(--gold);
}

.footer-links li {
  list-style-type: none;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.footer-links li i {
  margin-right: 8px;
  color: var(--gold);
  transition: 0.3s all ease-in-out;
}
.footer-links li a, .footer-links li p {
  display: flex;
  align-items: baseline;
  color: #fff;
  position: relative;
}
.footer-links li a:before {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  left: 0px;
  color: var(--gold);
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.footer-links li:hover a {
  font-weight: 600;
}
.footer-links li:hover a:before {
  left: 10px;
  opacity: 1;
}
.footer-links li:hover a i {
  margin-right: 18px;
}

.address-details li a:before {
  content: none;
}
.address-details li:hover a {
  font-weight: 400;
}
.address-details li:hover a:before {
  left: 0px;
}
.address-details li:hover a i {
  margin-right: 10px;
}

.foot-address-single {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.address-foot-desc p {
  margin: 0;
  line-height: 22px;
  color: #fff;
  font-weight: 400;
}
.address-foot-desc p a {
  color: #e5cc96;
}

.get-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.get-social a {
  color: #fff;
  margin-right: 20px;
}
.get-social a:hover {
  transform: scale(1.05);
}

.footer-bg .get-social a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 15px;
  color: #fff;
}
.footer-bg .get-social a:hover {
  color: #fff;
}

.address-icon-foot {
  font-size: 2.4rem;
  color: #e5cc96;
  margin-right: 12px;
}

.copyright-bg {
  background-color: #021752;
  padding: 20px 0;
}
.copyright-bg p, .copyright-bg a {
  color: #fff;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.copyright-r {
  text-align: right;
}
.copyright-r a {
  margin-left: 10px;
}

/****global******/
.btn-main {
  background-color: var(--dark-blue);
  color: #fff;
  padding: 12px 30px;
  display: inline-block;
  cursor: pointer;
  border-radius: 0px;
  text-align: center;
  position: relative;
  top: 0;
  min-width: 150px;
  border: none;
}
.btn-main:focus, .btn-main:hover {
  color: #fff;
  background-color: var(--gold);
}
.btn-main.btn-orange {
  background-color: var(--gold);
}
.btn-main.btn-orange:hover, .btn-main.btn-orange:focus {
  background-color: #202020;
}

.section-divider {
  margin: 0 0 60px;
}

.heading {
  font-size: 2.8rem;
  line-height: 3.8rem;
  padding: 0;
  margin: 0 0 15px;
  font-weight: 700;
}
.heading span {
  color: var(--gold);
}

.sub-heading {
  font-size: 2.4rem;
  line-height: 3.4rem;
  padding: 0;
  margin: 0 0 15px;
  font-weight: 600;
}
.sub-heading span {
  color: var(--gold);
}

.sub-head {
  font-size: 2.2rem;
  line-height: 3.2rem;
  margin: 15px 0 10px;
}

.postimage {
  position: relative;
}
.postimage img {
  width: 100%;
}
.postimage:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: unset;
  background-color: unset;
}

.webp .postimage:before {
  background-image: url(https://cdn.openviowebsites.com/source/sites/43f21731-8407-4dad-a368-390fa9089665/images/post-white-bg.webp);
}

.webp .gray-bg .postimage:before, .webp .inner-banner .postimage:before {
  background-image: url(https://cdn.openviowebsites.com/source/sites/43f21731-8407-4dad-a368-390fa9089665/images/post-color-bg.webp);
}

.no-webp .postimage:before {
  background-image: url(https://cdn.openviowebsites.com/source/sites/43f21731-8407-4dad-a368-390fa9089665/images/post-white-bg.png);
}

.no-webp .gray-bg .postimage:before, .no-webp .inner-banner .postimage:before {
  background-image: url(https://cdn.openviowebsites.com/source/sites/43f21731-8407-4dad-a368-390fa9089665/images/post-color-bg.png);
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.blue-bg-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: var(--dark-blue);
  padding: 60px 0;
}

.offer-exclusive {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: #f7f8fa;
  padding: 60px 0;
}

.gray-bg {
  background-color: #f5f5ff;
  padding: 60px 0;
}

.form-control {
  height: 48px;
  border: 1px solid #646464;
  font-size: 1.4rem;
  border-radius: 0;
  padding: 10px 15px;
}
.custom-form .form-control {
  margin: -10px 0 0;
}
.form-control:focus {
  box-shadow: none;
  border: 1px solid var(--dark-blue);
  background-color: #fff;
}
.form-control.error {
  border: 1px solid var(--gold);
}

::-moz-placeholder {
  color: #646464;
}

::placeholder {
  color: #646464;
}

label {
  margin: 0 10px;
  background-color: #fff;
  z-index: 9;
  padding: 0 10px;
  font-weight: 500;
  color: var(--dark-blue);
  font-size: 1.6rem;
  line-height: 2.6rem;
}
label.error {
  padding: 0;
  margin: 0;
  font-weight: 400;
 color: #ff0000;
   background-color: transparent;
}

label.custom-control-label {
  margin: 0;
  padding: 0;
}

.appoint-form-home .form-control {
  margin: -10px 0 0;
}

.form-group {
  margin-bottom: 25px;
}

textarea.form-control {
  min-height: 105px;
}

.formgroup-dsc p {
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  color: #646464;
}
.formgroup-dsc p i {
  font-size: 40px;
  width: 50px;
  color: var(--dark-blue);
  line-height: 50px;
}
.formgroup-dsc p span {
  flex: 1;
}

.grey-bg {
  background-color: #f9f9fe;
}

.home-slider {
  background-color: var(--gold);
}

.check-list li {
  list-style-type: none;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.check-list li::before {
  font-family: "Font Awesome 6 Pro";
  content: "\f2f7";
  position: absolute;
  left: 0px;
  top: 0px;
  color: #202020;
  font-weight: 600;
}
.check-list li span {
  color: var(--gold);
  font-weight: 600;
}
.check-list.two li {
  list-style-type: none;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.check-list.two li::before {
  font-family: "Font Awesome 6 Pro";
  content: "\f00c";
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: #202020;
  font-weight: 900;
}

.flex-check li {
  margin-left: 10px;
}

.check-list-alpha li {
  list-style: lower-alpha inside;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.repugen-badge {
  background-color: #f4f9fd;
  padding: 15px;
  border-radius: 20px;
  color: var(--dark-blue);
  transform: translateY(0px);
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.1);
}
.repugen-badge img {
  margin-right: 10px;
}
.repugen-badge i {
  color: #ffcc44;
}
.repugen-badge:hover i {
  color: #ffcc44;
}
.repugen-badge:hover {
  color: var(--dark-blue);
  transform: translateY(-3px);
  box-shadow: 0px 5px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  html {
    font-size: 60%;
  }
}
@media (max-width: 990px) {
  html {
    font-size: 55%;
  }
  .menu-fix .logo-area img {
    width: 100px;
  }
  .form-group.fancy-radio {
    margin: 5px 0 10px;
  }
  .heading {
    font-size: 2.4rem;
    line-height: 3.4rem;
    margin: 0 0 10px;
  }
  .postimage {
    margin-bottom: 20px;
  }
  .sub-head {
    font-size: 2rem;
    line-height: 3rem;
    margin: 15px 0 5px;
  }
  .footer-left-block {
    text-align: center;
    padding: 0 0 30px;
  }
  .foot-head {
    margin: 0px 0 15px;
  }
  .footer-bg {
    padding: 40px 0 0;
  }
  .get-social {
    justify-content: center;
    margin: 0 0 10px;
  }
  .get-social a {
    margin: 0 15px;
  }
  .copyright-bg {
    margin: 15px 0 0 0;
  }
}
@media (max-width: 767px) {
  .section-divider {
    margin: 0 0 60px;
  }
  .footer-bg .get-social a {
    margin: 0 5px;
  }
  .get-social {
    justify-content: center;
  }
  .get-social a {
    margin-right: 15px;
  }
  .tp-area {
    padding: 8px 0;
  }
  .footer-links.useful-links li a {
    flex-direction: row;
  }
  .footer-links.useful-links li i {
    margin-right: 8px;
  }
  .section-divider {
    margin: 0 0 40px;
  }
  .foot-logo {
    width: 220px;
  }
  .footer-links ul li {
    text-align: center;
  }
  .footer-links li a, .footer-links li p {
    align-items: center;
    flex-direction: column;
  }
  .footer-links li i {
    margin-right: 0;
    margin: 10px 0 5px;
  }
  .footer-links li .breadcrumb {
    margin-bottom: 3rem;
    justify-content: center;
  }
  .footer-head {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 25px;
  }
  .address-icon-foot {
    margin: 0 auto;
  }
  .foot-address-single {
    display: block;
    text-align: center;
  }
  .footer-social {
    justify-content: space-around;
  }
  .footer-bg {
    text-align: center;
  }
  .footer-nav ul li {
    display: block;
    padding: 10px 0;
  }
  .footer-links {
    text-align: center;
  }
  .footer-links li {
    justify-content: center;
  }
  .americas-best-dentist-badge {
    margin: 0 0 15px;
  }
  .btn-main {
    padding: 10px 20px 10px;
  }
  .copyright-bg {
    text-align: center;
    padding: 15px 0;
  }
  .copyright-r {
    text-align: center;
    margin: 5px 0 0;
  }
  .footer-bg .get-social {
    width: 100%;
  }
  .get-social.top-call-btns.head-flex {
    justify-content: flex-end;
  }
  .logo-area img {
    width: 100px;
  }
  .mob-center {
    text-align: center;
  }
  .postimage {
    margin: 0 0 15px;
  }
  .flogo-sec {
    flex-direction: column;
  }
  .scroll-to-top {
    bottom: 70px;
  }
}
/*******wow-animation*******/
.custom-wow {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.custom-wow.animated {
  visibility: visible;
  opacity: 1;
}

.custom-wow.animated.fadeInUp {
  animation-name: fadeInUp;
}
.custom-wow.animated.fadeInRight {
  animation-name: fadeInRight;
}
.custom-wow.animated.fadeInLeft {
  animation-name: fadeInLeft;
}
.custom-wow.animated.fadeInDown {
  animation-name: fadeInDown;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animated.delay-1s {
  animation-delay: 1s;
}
.animated.delay-1-2s {
  animation-delay: 1.2s;
}
.animated.delay-1-3s {
  animation-delay: 1.3s;
}
.animated.delay-1-4s {
  animation-delay: 1.4s;
}
.animated.delay-1-5s {
  animation-delay: 1.5s;
}

/******** Home --- css ******/
.home-slider {
  background-color: var(--dark-blue);
}
.home-slider .carousel-caption {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 1;
  text-align: left;
  margin: 150px 0 150px;
  opacity: 0;
  color: #fff;
}
.home-slider .carousel-caption h1 {
  font-size: 3.5rem;
  line-height: 4.5rem;
  margin: 20px 0 20px;
  color: #fff;
}
.home-slider .carousel-caption h1 span {
  color: var(--gold);
}
.home-slider .carousel-caption p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #fff;
}
.home-slider .carousel-caption .home-cta {
  margin: 30px 0 0;
}
.home-slider .container {
  position: relative;
  z-index: 9;
}
.home-slider .carousel-item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: unset;
  display: table;
}
.home-slider .carousel-item.active .carousel-caption {
  opacity: 1;
}
.home-slider .carousel-item.active .carousel-caption h1, .home-slider .carousel-item.active .carousel-caption h4, .home-slider .carousel-item.active .carousel-caption p, .home-slider .carousel-item.active .carousel-caption .home-cta a {
  animation-name: fadeInUp;
}
.home-slider .carousel-item.active .home-banner-modal {
  animation-name: fadeInRight;
}
.home-slider .home-banner-modal {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 99;
  display: inline-block;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-slider .home-banner-modal .home-banner {
  position: relative;
}
.home-slider .home-banner-modal .home-banner img {
  width: 90%;
}
.home-slider .home-banner-modal .home-banner .bannerbg {
  position: absolute;
  left: -50px;
  right: 0;
  bottom: 0;
  top: 80px;
  margin: 0 auto;
  z-index: -9;
  animation: mover 1s infinite alternate;
}

.covidupdate h4 {
  font-size: 1.4rem;
  line-height: 2.4rem;
  display: inline-block;
  background-color: #0f3577;
  border-radius: 30px;
  padding: 5px 15px;
  font-weight: 500;
}
.covidupdate h4 a {
  color: #fff;
}
.covidupdate p {
  padding: 10px 0 10px;
  font-size: 1.6rem;
  line-height: 2.86rem;
}
.covidupdate p span a {
  text-decoration: underline;
  color: #fff;
}

.home-dr-name {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-dr-name::before {
  position: absolute;
  background-image: url(https://cdn.openviowebsites.com/source/sites/43f21731-8407-4dad-a368-390fa9089665/images/title-post-white-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-dr-name h4 {
  color: var(--dark-blue);
  position: relative;
  font-size: 1.5rem;
  line-height: 2.5rem;
  margin: 15px 0 0 0;
  font-weight: 700;
}
.home-dr-name h4 span {
  color: var(--gold);
  display: block;
  font-size: 20px;
}

/*******services*****/
.services-sec-inner {
  box-shadow: 0px 4.81px 33.66px rgba(0, 0, 0, 0.09);
  background-color: #fff;
  margin: 0 0 30px;
  transition: 0.3s all ease-in-out;
  min-height: calc(100% - 30px);
}
.services-sec-inner .services-sec-inner-dsc {
  padding: 20px 20px;
  position: relative;
}
.services-sec-inner h3, .services-sec-inner p {
  transition: 0.3s all ease-in-out;
}
.services-sec-inner h3 {
  margin-top: 0;
  color: #202020;
  font-weight: 600;
}
.services-sec-inner .scbtn, .services-sec-inner a {
  transition: 0.3s all ease-in-out;
}
.services-sec-inner:hover {
  background-color: var(--dark-blue);
}
.services-sec-inner:hover h3, .services-sec-inner:hover p, .services-sec-inner:hover a {
  color: #fff;
}

.how-you-can-pay-us {
  background-color: #fcfcfe;
}

.how-you-can-pay-us-inner {
  padding: 60px 0;
}

.card-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-sec {
  padding: 2px;
  background-color: #fff;
  margin: 10px 10px 10px 0;
  flex: 1;
  text-align: center;
}

.how-you-can-pay-us:before {
  position: absolute;
  content: "";
  background-color: #f5f5ff;
  width: 50%;
  height: 100%;
}

.offer-exclusive {
  position: relative;
}

.services-sec {
  position: relative;
}
.services-sec:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-image: url(https://cdn.openviowebsites.com/source/sites/43f21731-8407-4dad-a368-390fa9089665/images/shape1.webp);
  background-repeat: no-repeat;
  opacity: 0.13;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background-position: top left;
}
.services-sec:after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  background-image: url(https://cdn.openviowebsites.com/source/sites/43f21731-8407-4dad-a368-390fa9089665/images/shape2.webp);
  background-repeat: no-repeat;
  opacity: 0.13;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background-position: bottom right;
}

.meet-our-highly-experienced-sec .logo-sec {
  background-color: #f5f5ff;
}

.dr-beth-image.text-center {
  background-position: center center;
  background-repeat: no-repeat;
  animation: mover 1s infinite alternate;
  background-size: contain;
}

/*****testimonials*******/
.rep-testimonial-txt::-webkit-scrollbar {
  width: 4px;
}

.rep-testimonial-txt::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #202020;
  border-radius: 10px;
}

.rep-testimonial-txt::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--dark-blue);
}

    .home-slider .carousel-item::before {
        display: none;
    }

@media (min-width: 1200px) {
  .rep-container {
    max-width: 1320px !important;
  }
  .rep-testimonial-txt {
    height: 180px !important;
  }
}
.rep-testimonial-slider-single {
  background-color: #f7f8fa !important;
  border: none !important;
  font-family: "Jost", sans-serif !important;
}

.rep-testimonial-stars {
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 600 !important;
}

.rep-testimonial-head p {
  color: var(--gold) !important;
}

.rep-testimonial-txt {
  padding: 10px 0 !important;
  border-top: 1px solid var(--dark-blue) !important;
  border-bottom: 1px solid var(--dark-blue) !important;
}

.rep-testimonial-txt p {
  font-family: "Jost", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 500 !important;
}

.rep-testimonial-footer p {
  color: var(--gold) !important;
  font-size: 18px !important;
  line-height: 28px !important;
}

.rep-testimonial-footer p strong {
  font-weight: 600 !important;
}

.rep-testimonial-slider-single p {
  font-family: "Jost", sans-serif !important;
}

.rep-testimonial-slider-single {
  position: relative !important;
}

.rep-testimonial-slider-single::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-size: 40px;
  font-weight: 600;
  color: #e1e5ed;
  line-height: 40px;
}

/*******contactus-form*********/
.appointment-home-main {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: var(--dark-blue);
  padding: 0px 0 0;
}
.appointment-home-main::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 70% !important;
  height: 100% !important;
  background-repeat: no-repeat;
  background-size: cover;
}
.appointment-home-main .home-appoint-hours {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 10px;
  bottom: 20px;
  left: 20px;
}
.appointment-home-main .home-appoint-hours .office-hours-area {
  background-color: #fff;
  padding: 20px;
}
.appointment-home-main .home-appoint-hours .office-hours-area .sub-head {
  margin: 0 0 5px;
  font-weight: 500;
}
.appointment-home-main .home-appoint-hours .office-hours-area .table {
  margin: 0;
}
.appointment-home-main .home-appoint-hours .office-hours-area .table td {
  font-size: 14px;
  font-weight: 500;
  min-width: 150px;
}
.appointment-home-main.request::before {
  right: 0 !important;
  left: 35% !important;
  background-position: right;
}
.appointment-home-main.request .home-appoint-hours {
  right: 20px;
  left: auto;
}

.webp .appointment-home-main::before {
  background-image: url(https://cdn.openviowebsites.com/source/sites/43f21731-8407-4dad-a368-390fa9089665/images/form-bg.webp);
}
.webp .appointment-home-main.request::before {
  background-image: url(https://cdn.openviowebsites.com/source/sites/43f21731-8407-4dad-a368-390fa9089665/images/appointment-bg.webp);
}

.no-webp .appointment-home-main::before {
  background-image: url(https://cdn.openviowebsites.com/source/sites/43f21731-8407-4dad-a368-390fa9089665/images/form-bg.png);
}
.no-webp .appointment-home-main.request::before {
  background-image: url(https://cdn.openviowebsites.com/source/sites/43f21731-8407-4dad-a368-390fa9089665/images/appointment-bg.jpg);
}

.appoint-form-home {
  background-color: #fff;
  padding: 30px 40px;
  transform: translateY(60px);
  box-shadow: 0px 4.81px 33.66px rgba(0, 0, 0, 0.09);
  position: relative;
  z-index: 9;
}

.refer-friend-main {
  background-color: #fff;
  position: relative;
}
.refer-friend-main::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(354deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 15%, rgba(255, 255, 255, 0) 40%);
  z-index: 99;
  pointer-events: none;
}

.refer-friend-img {
  position: relative;
  z-index: 99;
  pointer-events: none;
}

.homepage-map-main a {
  display: block;
}

.flex-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-btn a:last-child {
  margin-left: 10px;
}

.pad-60 {
  padding: 60px 0;
}

.contact-each-block {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.contact-each-block.bdr-none {
  border-bottom: none;
}

.contact-each-block .icon-section {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  transition: all 0.3s;
}

.contact-each-block .icon-section i {
  font-size: 1.8rem;
  color: #ffffff;
}

.contact-each-block .address-section {
  margin-left: 20px;
}

.contact-each-block:hover .icon-section {
  background-color: var(--dark-blue);
}

.contact-each-block:hover .icon-section i {
  color: #fff;
}

.contact-each-block .get-social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.contact-each-block .get-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dark-blue);
  transition: all 0.3s;
}

.contact-each-block .get-social a i {
  font-size: 1.8rem;
  color: var(--dark-blue);
}

.contact-each-block .get-social a:hover {
  background-color: var(--dark-blue);
}

.contact-each-block .get-social a:hover i {
  color: #fff;
}

.choose-block-main {
  display: flex;
  margin: 30px 0 0;
}
.choose-block-main .choose-block {
  display: flex;
  justify-content: center;
  width: 33%;
  padding: 40px;
  background-color: var(--dark-blue);
  position: relative;
  z-index: 1;
}
.choose-block-main .choose-block .number {
  font-size: 4rem;
  line-height: 5rem;
  bottom: 0;
  left: 35px;
  position: absolute;
  z-index: -1;
  color: rgba(55, 68, 118, 0.9);
  font-weight: 900;
}
.choose-block-main .choose-block.second {
  background-color: #e4e9f3;
}

.logo-sec {
  background-color: #f9f9fe;
}

@media (max-width: 1700px) {
  .home-slider .home-banner-modal {
    background-position: center left;
  }
  .home-slider .carousel-caption {
    margin: 180px 0 200px;
  }
}
@media (max-width: 1400px) {
  .home-slider .carousel-caption {
    margin: 100px 0 100px;
  }
  .home-slider .home-banner-modal .home-banner img {
    width: 80%;
  }
}
@media (max-width: 1199px) {
  .home-slider .carousel-caption {
    margin: 80px 0 80px;
  }
}
@media (max-width: 1024px) {
  .home-slider .carousel-caption h1 {
    font-size: 3rem;
    line-height: 4rem;
    margin: 15px 0 15px;
    color: #fff;
  }
  .appointment-home-main:before {
    background-position: center center;
  }
  .services-sec-inner .services-sec-inner-dsc {
    min-height: 205px;
  }
}
@media (max-width: 990px) {
  .home-dr-name {
    width: 170px;
    height: 170px;
    right: 10px;
  }
  .home-slider .carousel-caption h1 {
    margin: 30px 0;
  }
  .services-sec-inner .services-sec-inner-dsc {
    min-height: 180px;
  }
  .how-you-can-pay-us:before {
    width: 100%;
    height: 50%;
  }
  .home-slider .home-banner-modal {
    margin: 30px 0 30px 0;
  }
  .appointment-home-main:before {
    background-size: 0;
  }
  .appointment-home-main .home-appoint-hours {
    position: static;
    margin: 25px 0 0;
  }
  .refer-friend-main {
    padding: 10px 0 0 0 !important;
  }
  .blue-bg-img,
  .how-you-can-pay-us-inner,
  .offer-exclusive,
  .appointment-home-main {
    padding: 40px 0;
  }
  .appoint-form-home {
    padding: 15px;
    transform: translateY(0px);
  }
  .request-a-dental-appointment-dsc,
  .meet-our-highly-experienced-sec {
    text-align: center;
    padding: 0 0 15px;
  }
  .refer-text {
    z-index: 999;
    position: relative;
  }
  .choose-block-main {
    display: block;
  }
  .choose-block-main .choose-block {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .offer-exclusive {
    background-color: #001d65;
  }
  .offer-exclusive .heading {
    color: #fff;
  }
  .offer-exclusive .offer-exclusive-inner img {
    border: 1px solid #fff;
    padding: 5px;
  }
  .refer-text p {
    color: #fff;
  }
  .services-sec-inner .services-sec-inner-dsc {
    min-height: auto;
  }
  .flex-btn {
    flex-wrap: wrap;
  }
  .flex-btn a:last-child {
    margin-left: 0;
    margin-top: 10px;
  }
  .home-slider .carousel-caption {
    margin: 30px 0 0px;
    text-align: center;
  }
  .home-slider .home-banner-modal {
    position: static;
    width: 100%;
  }
  .carousel-item.active {
    background-position: center center;
    background-size: cover;
    margin: 0 0 40px;
  }
  .offer-exclusive-inner {
    text-align: center;
    padding: 15px 0 0 0;
  }
  .meet-our-highly-experienced-sec {
    text-align: center;
  }
  .dr-beth-image {
    padding: 30px 30px 0;
  }
  .refer-friend-main {
    text-align: center;
  }
  .refer-friend-main:after {
    left: 0;
  }
  .pad-60 {
    padding: 40px 0;
  }
  .services-sec:after, .services-sec:before {
    display: none;
  }
  .card-logo {
    flex-wrap: wrap;
    justify-content: center;
  }
  .card-logo .logo-sec {
    width: 47%;
    flex: unset;
    margin: 0 5px 10px;
  }
}