@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;500;600;700;800;900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Source Sans 3", sans-serif;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  overflow-x: clip;
}

.container-width {
  width: 100%;
  height: 100%;
  margin: auto;
}

.inner-container {
  width: 100%;
  max-width: 1500px;
  height: 100%;
  margin: auto;
  padding: 0 10px;
}

p {
  line-height: 1.5;
}

a {
  text-decoration: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 9, 19, 0.44);
  z-index: 29;
  opacity: 0;
  visibility: hidden;
  transition: all 100ms ease;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

#myBtn {
  position: absolute;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #0632AD;
  color: white;
  cursor: pointer;
  width: 45px;
  height: 45px;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  border-radius: 6px;
}

#myBtn svg {
  font-size: 20px;
}

#myBtn:hover {
  background-color: #2350cd;
}

.playdate {
  display: none;
}

.form-popup {
  position: fixed;
  background-color: #FAFAFC;
  border: 1px solid #E0E0E0;
  top: 150px;
  left: 50%;
  width: 95%;
  height: auto;
  max-width: 500px;
  transform: translate(-50%, 0);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  opacity: 0;
  visibility: hidden;
  transform-origin: top top;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.form-popup .form-popup-container {
  padding: 20px 35px;
}
.form-popup .form-popup-container .form-head {
  padding-bottom: 10px;
  text-align: center;
}
.form-popup .form-popup-container .form-head h5 {
  font-size: 24px;
  font-weight: 600;
}
.form-popup .form-popup-container form .box-input {
  width: 100%;
  padding: 12px 0;
}
.form-popup .form-popup-container form .box-input input,
.form-popup .form-popup-container form .box-input select {
  width: 100%;
  height: 54px;
  border-radius: 7px;
  padding: 0 15px;
  outline: none;
  border: 1px solid #c7c7c7;
  background-color: #fff;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}
.form-popup .form-popup-container form .box-input #phone {
  -webkit-appearance: textfield;
}
.form-popup .form-popup-container form .box-input textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 54px;
  max-height: 50%;
  min-height: 50%;
  border-radius: 7px;
  padding: 15px 15px;
  outline: none;
  border: 1px solid #ADADAD;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}
.form-popup .form-popup-container form .box-input button {
  width: 100%;
  height: 50px;
  border: 1px solid transparent;
  background-color: #0632AD;
  color: #fff;
  font-size: 16px;
  border-radius: 7px;
  cursor: pointer;
}
.form-popup.active {
  opacity: 1;
  visibility: visible;
  z-index: 50;
}
.form-popup .remove {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.appointment-form-btn {
  position: fixed;
  bottom: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
  text-align: center;
  box-shadow: 0px 4px 26px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
  padding: 14px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.appointment-form-btn .appoint-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #0632AD;
  padding: 9px 0;
  width: 90%;
  border-radius: 8px;
}
.appointment-form-btn .appoint-btn svg {
  font-size: 20px;
  margin-right: 8px;
}

@media only screen and (max-width: 1000px) {
  .appointment-form-btn {
    display: block;
    display: flex;
  }
}
.header {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 60;
  border-bottom: 1px solid #ececec;
}
.header .banner {
  background-color: #0632AD;
  padding: 7px 12px;
}
.header .banner .banner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.header .banner .banner-container .banner-left .social {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .banner .banner-container .banner-left .social .icon {
  padding: 0 6px;
  display: flex;
}
.header .banner .banner-container .banner-left .social .icon a {
  color: #fff;
  display: flex;
}
.header .banner .banner-container .banner-left .social .icon a svg {
  font-size: 18px;
  cursor: pointer;
}
.header .banner .banner-container .banner-left .social .icon a svg:hover {
  transform: scale(1.1);
}
.header .banner .banner-container .banner-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .banner .banner-container .banner-right .location {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 5px;
  color: #fff;
  font-size: 16px;
  position: relative;
}
.header .banner .banner-container .banner-right .location a {
  color: #fff;
  font-weight: 300;
  position: relative;
}
.header .banner .banner-container .banner-right .location a .name {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.header .banner .banner-container .banner-right .location a .name svg {
  font-size: 18px;
  margin-right: 8px;
}
.header .banner .banner-container .banner-right .location a .name:first-child {
  padding-right: 30px;
}
.header .banner .banner-container .banner-right .location a:first-child::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 1px;
  height: 100%;
  top: 0;
  right: 12px;
}
.header .navbar {
  padding: 5px 10px;
}
.header .navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .navbar .nav-container .logo {
  display: contents;
  cursor: pointer;
}
.header .navbar .nav-container .logo img {
  width: 100%;
  max-width: 250px;
}
.header .navbar .nav-container .list-items {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}
.header .navbar .nav-container .list-items .logo {
  display: none;
}
.header .navbar .nav-container .list-items .item {
  position: relative;
}
.header .navbar .nav-container .list-items .item li {
  padding: 0 0;
  position: relative;
}
.header .navbar .nav-container .list-items .item li .dropdown-link {
  display: flex;
  justify-items: center;
  align-items: center;
}
.header .navbar .nav-container .list-items .item li .mega-menu {
  display: flex;
  justify-items: center;
  align-items: center;
}
.header .navbar .nav-container .list-items .item li .mega-menu::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #0632AD;
  display: block;
  bottom: 0px;
  opacity: 0;
  left: 0;
  transition: opacity 250ms ease;
}
.header .navbar .nav-container .list-items .item li .mega-menu.active-dropdown::after {
  opacity: 1;
}
.header .navbar .nav-container .list-items .item li .mega-menu:hover::after {
  opacity: 1;
}
.header .navbar .nav-container .list-items .item li a {
  color: #000000;
  text-decoration: none;
  padding: 24px 14px;
  width: 100%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  text-transform: capitalize;
}
.header .navbar .nav-container .list-items .item li a #arrow {
  position: relative;
  font-size: 18px;
  margin-left: 4px;
}
.header .navbar .nav-container .list-items .item li a:hover {
  color: #0632AD;
}
.header .navbar .nav-container .list-items .remove,
.header .navbar .nav-container .list-items .removed {
  display: none;
}
.header .navbar .nav-container .nav-btn {
  padding-right: 20px;
}
.header .navbar .nav-container .nav-btn button {
  width: 170px;
  height: 50px;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 12px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  font-size: 16px;
}
.header .navbar .nav-container .nav-btn button svg {
  font-size: 16px;
  margin-right: 12px;
}
.header .navbar .nav-container .nav-btn button:hover {
  background-color: #0632AD;
  color: #fff;
  border: 1px solid #0632AD;
}
.header .navbar .nav-container .hamburger {
  display: none;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
}
.header .navbar .nav-container .hamburger .bar {
  width: 28px;
  height: 2px;
  background-color: #000000;
  margin: 7px 0;
  display: block;
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.header .navbar .nav-container .hamburger .nav-btn {
  position: absolute;
  top: -4px;
  left: -150px;
}
.header .navbar .nav-container .hamburger .nav-btn button {
  width: 140px;
  height: 50px;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 12px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header .navbar .nav-container .hamburger .nav-btn button svg {
  font-size: 17px;
  margin-right: 8px;
}
.header .navbar .nav-container .hamburger .nav-btn button:hover {
  background-color: #0632AD;
  color: #fff;
  border: 1px solid transparent;
}

@media only screen and (max-width: 1300px) {
  .header .navbar .nav-container .logo img {
    max-width: 200px;
  }
  .header .navbar .nav-container .list-items li {
    padding: 0 5px;
  }
  .header .navbar .nav-container .list-items li a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1100px) {
  .header .navbar .nav-container .logo img {
    max-width: 190px;
  }
  .header .navbar .nav-container .list-items li {
    padding: 0 4px;
  }
  .header .navbar .nav-container .list-items li a {
    font-size: 14px;
  }
  .header .navbar .nav-container .nav-btn button {
    padding-right: 5px;
  }
  .header .navbar .nav-container .nav-btn button svg {
    font-size: 18px;
    margin-left: 5px;
  }
}
@media only screen and (max-width: 1000px) {
  .header .banner .banner-container {
    margin-right: -27px;
  }
  .header .banner .banner-container .banner-right .number {
    font-size: 14px;
  }
  .header .navbar {
    padding: 20px 10px;
    position: relative;
  }
  .header .navbar .nav-container .list-items {
    display: none;
    clear: both;
    position: fixed;
    background-color: rgb(255, 255, 255);
    width: 100%;
    max-width: 350px;
    flex-direction: column;
    right: -1000%;
    top: 0;
    z-index: 30;
    height: 100%;
    overflow: auto !important;
    -ms-overflow: auto;
    justify-content: start;
    align-items: start;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    /* Drop-Down Styling */
  }
  .header .navbar .nav-container .list-items .logo {
    display: block;
    padding: 20px 15px;
    margin-left: -20px;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    text-align: center;
    width: 100%;
  }
  .header .navbar .nav-container .list-items .logo img {
    max-width: 200px;
  }
  .header .navbar .nav-container .list-items li {
    justify-content: start;
    align-items: start;
    padding-left: 30px;
    padding: 15px 0;
    overflow: visible;
    position: relative;
  }
  .header .navbar .nav-container .list-items li a {
    font-size: 16px;
    width: 150%;
    font-weight: 400;
    display: block;
    padding-left: 50px;
    margin-left: -25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: -20px;
    padding-bottom: 20px;
  }
  .header .navbar .nav-container .list-items li a #arrow {
    display: none;
  }
  .header .navbar .nav-container .list-items li #mob-arrow {
    display: block;
    position: absolute;
    right: 25px;
    font-size: 20px;
    top: 8px;
    transform: rotate(180deg);
  }
  .header .navbar .nav-container .list-items .remove,
  .header .navbar .nav-container .list-items .removed {
    display: block;
    position: absolute;
    right: 20px;
    top: 30px;
    cursor: pointer;
    font-size: 28px;
  }
  .header .navbar .nav-container .list-items .nav-btn {
    margin-left: 0px !important;
    position: fixed;
    bottom: 0;
    z-index: 10;
    width: -moz-available;
    background-color: #fff;
    text-align: center;
    box-shadow: 0px 4px 26px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
    padding: 0px 0;
    display: flex;
    justify-content: center;
    width: -webkit-fill-available !important;
    width: -moz-available !important;
    align-items: center;
  }
  .header .navbar .nav-container .list-items .nav-btn .nav-btn-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    background-color: #0632AD;
    padding: 2px 0;
    width: 100%;
    border-radius: 8px;
  }
  .header .navbar .nav-container .list-items .nav-btn .nav-btn-inner svg {
    margin-right: 10px;
    font-size: 20px;
    margin-top: -2px;
  }
  .header .navbar .nav-container .list-items.active {
    right: 0;
    overflow: auto !important;
    overflow-x: hidden !important;
  }
  .header .navbar .nav-container .list-items .dropdown-links {
    position: relative;
  }
  .header .navbar .nav-container .list-items .dropdown-links .dropdown {
    top: 45px;
    left: 20px;
  }
  .header .navbar .nav-container .nav-btn {
    display: none;
  }
  .header .navbar .nav-container .hamburger {
    display: block;
  }
  .header .navbar .nav-container .hamburger .nav-btn {
    left: -180px;
    top: -8px;
    display: block;
  }
  .header .navbar .nav-container .hamburger .nav-btn button {
    width: 160px;
    font-size: 18px;
  }
  .header .navbar .nav-container .hamburger .nav-btn button svg {
    font-size: 18px;
  }
  .header .navbar .nav-container .hamburger.active .bar:nth-child(1) {
    transform: translateX(20px);
    opacity: 0;
  }
  .header .navbar .nav-container .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .header .navbar .nav-container .hamburger.active .bar:nth-child(3) {
    transform: translateX(-20px);
    opacity: 0;
  }
}
@media only screen and (max-width: 600px) {
  .header .banner {
    padding: 7px auto;
  }
  .header .banner .banner-container .banner-left .social .icon {
    padding: 0 5px;
  }
  .header .banner .banner-container .banner-left .social .icon a svg {
    font-size: 16px;
    cursor: pointer;
  }
  .header .banner .banner-container .banner-right .number {
    font-size: 14px;
    padding-right: 1px;
    margin-left: 0;
  }
  .header .navbar .nav-container .list-items {
    max-width: 350px;
  }
  .header .navbar .nav-container .list-items .logo img {
    width: 100%;
    max-width: 180px !important;
  }
  .header .navbar .nav-container .list-items li {
    padding-left: 20px;
    padding: 15px 0;
  }
  .header .navbar .nav-container .list-items li a {
    font-size: 16px;
  }
  .header .navbar .nav-container .list-items .nav-btn {
    margin-left: 10px;
  }
  .header .navbar .nav-container .list-items .nav-btn button {
    width: 150px;
    padding-right: 5px;
  }
  .header .navbar .nav-container .list-items .nav-btn button svg {
    font-size: 16px;
    margin-left: 0px;
  }
  .header .navbar .nav-container .list-items .remove,
  .header .navbar .nav-container .list-items .removed {
    right: 25px;
    top: 20px;
    font-size: 28px;
  }
  .header .navbar .nav-container .hamburger .nav-btn {
    display: none;
  }
}
@media only screen and (max-width: 400px) {
  .header .banner {
    padding: 7px 0;
  }
  .header .navbar {
    padding: 15px 0;
  }
  .header .navbar .nav-container .logo img {
    max-width: 170px;
  }
  .header .navbar .nav-container .list-items {
    max-width: 300px;
  }
  .header .navbar .nav-container .list-items .logo {
    padding: 20px;
  }
  .header .navbar .nav-container .list-items .logo img {
    width: 100%;
    max-width: 160px !important;
  }
  .header .navbar .nav-container .list-items .remove,
  .header .navbar .nav-container .list-items .removed {
    right: 25px;
    top: 20px;
    font-size: 28px;
  }
}
.choose-hero {
  background-color: #EDF8FF;
  min-height: 250px;
  max-height: 450px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.choose-hero .choose-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.choose-hero .choose-title h1 {
  font-size: 48px;
}
.choose-hero .choose-title p {
  font-size: 18px;
  width: 100%;
  max-width: 880px;
}

.why-section {
  width: 100%;
}
.why-section .inner-section {
  width: 100%;
  max-width: 1500px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: end;
  -moz-column-gap: 44px;
       column-gap: 44px;
}
.why-section .inner-section .data {
  width: 60%;
  padding: 18px 0;
}
.why-section .inner-section .data ul {
  padding: 0 10px;
}
.why-section .inner-section .data ul div {
  padding: 10px 0;
  width: 100%;
  max-width: 650px;
}
.why-section .inner-section .data ul div li {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 2px;
  list-style-type: none;
}
.why-section .inner-section .data ul div li::before {
  content: url("/images/tick.svg");
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.why-section .inner-section .data ul div p {
  font-size: 18px;
}
.why-section .inner-section .data-img {
  width: 960px;
  height: 495px;
}
.why-section .inner-section .data-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.rev-section .inner-section {
  flex-direction: row-reverse;
  align-items: start;
}

.why-hero {
  background-image: url("/images/bg.png");
  background-position: center center;
  background-size: cover;
  color: #fff;
  min-height: 350px;
}
.why-hero .choose-title h1 {
  width: 100%;
  max-width: 500px;
  font-size: 36px;
}
.why-hero .choose-title p {
  max-width: 930px;
  padding-top: 8px;
}
.why-hero .choose-title button {
  width: 250px;
  height: 60px;
  background-color: #fff;
  border: 1px solid transparent;
  outline: none;
  cursor: pointer;
  margin: 16px 0;
  border-radius: 12px;
  padding: 18px 0;
  transition: all 200ms linear;
}
.why-hero .choose-title button:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.why-hero .choose-title button:hover a {
  color: #fff;
}
.why-hero .choose-title button a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 18px;
  gap: 18px;
  transition: all 200ms linear;
  font-weight: 600;
}

.doc-profile {
  padding: 50px 0;
}
.doc-profile .inner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 4em;
  column-gap: 4em;
}
.doc-profile .inner-container .doc-img img {
  width: 100%;
}
.doc-profile .inner-container .doc-info h2 {
  font-size: 24px;
  font-weight: 800;
}
.doc-profile .inner-container .doc-info p {
  padding: 10px 0;
  font-size: 18px;
  width: 100%;
  max-width: 700px;
  margin: auto;
}
.doc-profile .inner-container .doc-info button {
  background-color: #DDF7FB;
  color: #0632AD;
  width: 260px;
  height: 50px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  margin-top: 14px;
  cursor: pointer;
  transition: all 150ms ease;
}
.doc-profile .inner-container .doc-info button:hover {
  background-color: #aad8df;
}

@media only screen and (min-width: 1650px) {
  .why-section .inner-section {
    max-width: 1920px;
  }
  .why-section .inner-section .data {
    display: flex;
    justify-content: end;
    margin-left: -4rem;
    width: 49.3%;
  }
  #col-2 .inner-section .data {
    justify-content: start;
    margin-left: 0;
  }
}
@media only screen and (max-width: 1350px) {
  .why-section .inner-section {
    align-items: start;
  }
}
@media only screen and (max-width: 1000px) {
  .why-section .inner-section {
    align-items: start;
    flex-direction: column;
    padding: 0;
  }
  .why-section .inner-section .data {
    width: 100%;
    padding: 20px 20px 0 10px;
  }
  .why-section .inner-section .data ul {
    margin-bottom: 10px;
    padding: 0 10px;
  }
  .why-section .inner-section .data ul div {
    max-width: 100%;
  }
  .why-section .inner-section .data-img {
    width: 100%;
    height: 300px;
    margin: 0;
  }
  .why-section .inner-section .data-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .doc-profile {
    padding: 50px 0;
  }
  .doc-profile .inner-container {
    flex-direction: column;
    align-items: start;
    padding: 0 20px;
    row-gap: 2rem;
  }
  .doc-profile .inner-container .doc-info {
    width: 100%;
  }
  .doc-profile .inner-container .doc-info h2 {
    font-size: 24px;
    font-weight: 800;
  }
  .doc-profile .inner-container .doc-info p {
    max-width: 100%;
  }
  .doc-profile .inner-container .doc-info button {
    background-color: #DDF7FB;
    color: #0632AD;
    width: 260px;
    height: 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 14px;
    cursor: pointer;
    transition: all 150ms ease;
  }
  .doc-profile .inner-container .doc-info button:hover {
    background-color: #aad8df;
  }
}
@media only screen and (max-width: 725px) {
  .choose-hero .choose-title h1 {
    font-size: 36px;
  }
  .why-section .inner-section .data-img {
    width: 100%;
    height: 200px;
  }
  .why-hero {
    min-height: 100%;
    padding: 30px 0;
  }
  .why-hero .choose-title h1 {
    width: 100%;
    max-width: 500px;
    font-size: 32px;
  }
}
@media only screen and (max-width: 450px) {
  .choose-hero {
    min-height: 200px;
  }
  .choose-hero .choose-title h1 {
    font-size: 32px;
  }
  .choose-hero .choose-title p {
    font-size: 16px;
  }
  .why-section .inner-section {
    padding: 0;
    align-items: start;
    flex-direction: column;
  }
  .why-section .inner-section .data {
    width: 100%;
    padding: 20px 20px 10px 10px;
  }
  .why-section .inner-section .data ul {
    padding: 0 10px;
  }
  .why-section .inner-section .data ul div {
    max-width: 100%;
  }
  .why-section .inner-section .data ul div p {
    font-size: 16px;
  }
  .why-section .inner-section .data-img {
    height: 100%;
    width: 100%;
    margin: 0;
  }
  .why-hero {
    min-height: 100%;
    padding: 30px 0;
  }
  .why-hero .choose-title h1 {
    width: 100%;
    max-width: 400px;
    font-size: 26px;
  }
  .why-hero .choose-title button {
    width: 98%;
  }
  .why-hero .choose-title button a {
    font-size: 16px;
    gap: 10px;
  }
  .why-hero .choose-title button a svg {
    font-size: 20px;
  }
  .doc-profile {
    padding: 40px 0;
  }
  .doc-profile .inner-container .doc-info button {
    width: 98%;
  }
}
.mobile-nav {
  display: none;
  background-color: #fff;
  width: 80%;
  height: 100%;
  position: fixed;
  right: -100%;
  top: 0;
  overflow-y: auto;
  transition: all 300ms cubic-bezier(0.3, 0.9, 0.6, 0.9);
}
.mobile-nav.active {
  right: 0;
}
.mobile-nav .mobile-list {
  height: 100%;
  width: 100%;
}
.mobile-nav .mobile-list .nav-logo {
  padding: 20px 0 20px 10px;
}
.mobile-nav .mobile-list .nav-logo img {
  width: 100%;
  max-width: 220px;
}
.mobile-nav .close-nav {
  position: absolute;
  right: 35px;
  top: 30px;
  cursor: pointer;
}
.mobile-nav .close-nav svg {
  font-size: 24px;
}
.mobile-nav .mobile-nav-links {
  width: 100%;
  position: relative;
  height: 100%;
  background-color: #fff;
}
.mobile-nav .mobile-nav-links .inner-links {
  width: 100%;
}
.mobile-nav .mobile-nav-links .inner-links a {
  display: block;
  width: 100%;
  border-bottom: 1px solid #D6D6D6;
  text-decoration: none;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 16px;
  padding-top: 20px;
  color: #000;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav .mobile-nav-links .inner-links a svg {
  font-size: 20px;
}
.mobile-nav .mobile-nav-links .inner-links a:hover {
  background-color: #fff;
}
.mobile-nav .mobile-nav-links .inner-links .sub-links2 {
  position: static !important;
  height: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.3, 0.9, 0.6, 0.9);
}
.mobile-nav .mobile-nav-links .inner-links .sub-links2 .inner-links:first-child {
  padding-top: 0;
}
.mobile-nav .mobile-nav-links .inner-links .sub-links2 .inner-links a {
  padding-left: 48px;
  padding-bottom: 18px;
}
.mobile-nav .mobile-nav-links .inner-links .sub-links2 .inner-links:last-child {
  margin-bottom: 0;
}
.mobile-nav .mobile-nav-links .inner-links .sub-links2.active {
  max-height: 300px;
}
.mobile-nav .mobile-nav-links .inner-links #NonSurgical.active {
  max-height: 535px;
}
.mobile-nav .mobile-nav-links .inner-links .sub-links3 {
  position: static !important;
  height: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.3, 0.9, 0.6, 0.9);
}
.mobile-nav .mobile-nav-links .inner-links .sub-links3 .inner-links:first-child {
  padding-top: 0;
}
.mobile-nav .mobile-nav-links .inner-links .sub-links3 .inner-links a {
  padding-left: 58px;
  padding-bottom: 18px;
}
.mobile-nav .mobile-nav-links .inner-links .sub-links3 .inner-links:last-child {
  margin-bottom: 0;
}
.mobile-nav .mobile-nav-links .inner-links .sub-links3.active {
  max-height: 800px;
}
.mobile-nav .mobile-nav-links .sub-link-container .sub-links {
  position: absolute;
  background-color: #fff;
  width: 100%;
  top: 0;
  display: none;
  transition: right 300ms ease;
}
.mobile-nav .mobile-nav-links .sub-link-container .sub-links.active {
  display: block;
  height: 100%;
}
.mobile-nav .mobile-nav-links .sub-link-container .sub-links .link-head {
  font-size: 18px;
  background-color: #0632AD;
  padding-left: 30px;
  padding: 10px 0 10px 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: start;
  cursor: pointer;
}
.mobile-nav .mobile-nav-links .sub-link-container .sub-links .link-head svg {
  margin-right: 8px;
  font-size: 20px;
}
.mobile-nav .nav-btn {
  position: fixed;
  background-color: #fff;
  box-shadow: 0px 4px 26px 0px rgba(0, 0, 0, 0.25);
  bottom: 0;
  width: 100%;
  width: -webkit-fill-available;
  padding: 0 18px;
  height: 64px;
  box-sizing: border-box;
  display: flex;
  justify-content: start;
  align-items: center;
}
.mobile-nav .nav-btn a {
  width: 78%;
  text-decoration: none;
}
.mobile-nav .nav-btn a .nav-btn-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  background-color: #0632AD;
  border: none;
  width: 100%;
  border-radius: 8px;
  height: 46px;
}
.mobile-nav .nav-btn a .nav-btn-inner svg {
  margin-right: 10px;
  font-size: 16px;
  margin-top: -2px;
}

@media only screen and (max-width: 1000px) {
  .mobile-nav {
    display: block;
  }
}
@media only screen and (max-width: 440px) {
  .mobile-nav .mobile-list .nav-logo img {
    width: 100%;
    max-width: 200px;
  }
  .mobile-nav .close-nav {
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
  }
  .mobile-nav .close-nav svg {
    font-size: 20px;
  }
  .mobile-nav .mobile-nav-links .inner-links a {
    font-size: 14px;
  }
  .mobile-nav .mobile-nav-links .sub-link-container .sub-links .link-head {
    font-size: 16px;
  }
}
@keyframes vision {
  from {
    height: 0;
  }
  to {
    height: 320px;
  }
}
@keyframes about {
  from {
    height: 0;
  }
  to {
    height: 220px;
  }
}
@keyframes ast {
  from {
    height: 0;
  }
  to {
    height: 510px;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header .navbar .nav-container .list-items .item .item-name {
  position: relative;
}
.header .navbar .nav-container .list-items .item .item-name a.active-dropdown {
  color: #0632AD;
}
.header .navbar .nav-container .list-items .item .item-name a:hover + .dropdown,
.header .navbar .nav-container .list-items .item .item-name .dropdown:hover {
  display: block;
}
.header .navbar .nav-container .list-items .item .item-name .dropdown {
  position: absolute;
  background-color: #fff;
  width: 230px;
  height: 0;
  top: 60px;
  left: -5px;
  display: none;
  transition: height 150ms ease;
}
.header .navbar .nav-container .list-items .item .item-name .dropdown .dropdown-list {
  list-style-type: none;
  padding: 10px 5px;
}
.header .navbar .nav-container .list-items .item .item-name .dropdown .dropdown-list .list-name {
  transition: all 200ms ease;
  border-radius: 7px;
}
.header .navbar .nav-container .list-items .item .item-name .dropdown .dropdown-list .list-name a {
  font-size: 16px;
  padding: 14px 0;
}
.header .navbar .nav-container .list-items .item .item-name .dropdown .dropdown-list .list-name a:hover {
  color: #000;
}
.header .navbar .nav-container .list-items .item .item-name .dropdown .dropdown-list .list-name:hover {
  background: rgba(245, 244, 247, 0.5098039216);
  color: #000;
}
.header .navbar .nav-container .list-items .item .item-name .dropdown .dropdown-list .menu-item h1 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.header .navbar .nav-container .list-items .item .item-name #aesthetic-list {
  animation: ast 250ms 1 cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  border-radius: 0;
  overflow: hidden;
  top: 70px;
  width: 100vw;
  left: -50vw;
  border-top: 1px solid rgb(230, 230, 230);
}
.header .navbar .nav-container .list-items .item .item-name #aesthetic-list .flex-list {
  display: flex;
  justify-content: center;
  padding: 20px 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.header .navbar .nav-container .list-items .item .item-name #aesthetic-list .flex-list div {
  width: 100%;
  padding: 8px 0;
}
.header .navbar .nav-container .list-items .item .item-name #aesthetic-list .flex-list div .dropdown-list {
  padding: 0;
  width: 96%;
  animation: fade 250ms 300ms 1 linear both;
  opacity: 0;
}
.header .navbar .nav-container .list-items .item .item-name #aesthetic-list .flex-list div .dropdown-list .list-name {
  margin-left: -10px;
  padding-left: 10px !important;
  padding: 4px 0;
}
.header .navbar .nav-container .list-items .item .item-name #aesthetic-list .flex-list div .dropdown-list .list-name a {
  padding: 8px 0;
}
.header .navbar .nav-container .list-items .item .item-name #aesthetic-list .dropdown-list {
  padding: 30px 40px;
}
.header .navbar .nav-container .list-items .item .item-name #aesthetic-list .dropdown-list .list-name {
  padding: 0;
}
.header .navbar .nav-container .list-items .item .item-name #aesthetic-list .dropdown-list .list-name a {
  padding: 10px 0;
}
.header .navbar .nav-container .list-items .item .item-name #about-list {
  animation: about 200ms 1 cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  overflow: hidden;
  box-shadow: 0px 10px 40px 0px rgba(129, 128, 144, 0.15);
}
.header .navbar .nav-container .list-items .item .item-name #about-list .dropdown-list {
  animation: fade 200ms 250ms 1 linear both;
}
.header .navbar .nav-container .list-items .item .item-name #about-list .dropdown-list .list-name {
  margin: 0 -10px;
  padding: 0 10px !important;
}
.header .navbar .nav-container .list-items .item .item-name #vision-list {
  animation: vision 250ms 1 cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  border-radius: 0;
  overflow: hidden;
  top: 70px;
  width: 850px;
  left: -400%;
  border-top: 1px solid rgb(230, 230, 230);
}
.header .navbar .nav-container .list-items .item .item-name #vision-list .flex-list {
  display: flex;
  justify-content: center;
  padding: 20px 40px;
}
.header .navbar .nav-container .list-items .item .item-name #vision-list .dropdown-list {
  width: 100%;
  animation: fade 250ms 300ms 1 linear both;
}
.header .navbar .nav-container .list-items .item .item-name #vision-list .dropdown-list:nth-child(3) .menu-item {
  margin-top: -16px;
}
.header .navbar .nav-container .list-items .item .item-name #vision-list .dropdown-list .list-name {
  padding: 0;
  margin-left: -10px;
  padding-left: 10px;
}

@media only screen and (max-width: 1300px) {
  .header .navbar .nav-container .list-items .item .item-name .dropdown .dropdown-list .menu-item h1 {
    font-size: 16px;
  }
  .header .navbar .nav-container .list-items .item .item-name #aesthetic-list {
    border-radius: 0;
    top: 70px;
    width: 105vw;
    left: -48vw;
  }
  .header .navbar .nav-container .list-items .item .item-name #aesthetic-list .flex-list {
    display: flex;
    justify-content: start;
    padding: 10px;
  }
  .header .navbar .nav-container .list-items .item .item-name #aesthetic-list .flex-list div {
    padding: 0;
  }
  .header .navbar .nav-container .list-items .item .item-name #aesthetic-list .flex-list div .dropdown-list {
    padding: 20px 30px;
  }
  .header .navbar .nav-container .list-items .item .item-name #aesthetic-list .flex-list div .dropdown-list .list-name a {
    padding: 6px 0;
  }
  .header .navbar .nav-container .list-items .item .item-name #aesthetic-list .flex-list div .dropdown-list .main-item h1 {
    font-size: 16px;
  }
  .header .navbar .nav-container .list-items .item .item-name #aesthetic-list .dropdown-list {
    padding: 20px 30px;
  }
  .header .navbar .nav-container .list-items .item .item-name #aesthetic-list .dropdown-list .list-name {
    padding: 0;
  }
  .header .navbar .nav-container .list-items .item .item-name #aesthetic-list .dropdown-list .list-name a {
    padding: 10px 0;
  }
}
@media only screen and (max-width: 1000px) {
  .header .navbar .nav-container .list-items li {
    position: relative;
    width: 100%;
  }
  .header .navbar .nav-container .list-items li:hover > ul {
    max-height: 0;
    display: none;
  }
  .header .navbar .nav-container .list-items li:hover > .aesthetic-dropdown {
    max-height: 0;
    display: none;
  }
  .header .navbar .nav-container .list-items li:hover > .aesthetic-dropdown-inner {
    max-height: 0;
    display: none;
  }
  .header .navbar .nav-container .list-items li:hover > .aesthetic-dropdown-inner2 {
    max-height: 0;
    display: none;
  }
  .header .navbar .nav-container .list-items li:hover > .aesthetic-dropdown-inner3 {
    max-height: 0;
    display: none;
  }
  .header .navbar .nav-container .list-items li a.active ~ ul {
    max-height: 400px;
    margin-top: 0;
    display: block;
    animation: transitions 300ms 1 linear both;
  }
  .header .navbar .nav-container .list-items li a.active ~ .aesthetic-dropdown {
    max-height: 999px;
    display: block;
    animation: transitions 300ms 1 linear both;
  }
  .header .navbar .nav-container .list-items li a.active ~ .aesthetic-dropdown-inner {
    max-height: 999px;
    display: block;
    animation: transitions 300ms 1 linear both;
  }
  .header .navbar .nav-container .list-items li a.active ~ .aesthetic-dropdown-inner2 {
    max-height: 999px;
    display: block;
    animation: transitions 300ms 1 linear both;
  }
  .header .navbar .nav-container .list-items li a.active ~ .aesthetic-dropdown-inner3 {
    max-height: 999px;
    display: block;
    animation: transitions 300ms 1 linear both;
  }
  .header .navbar .nav-container .list-items li ul {
    clear: both;
    position: static;
    -ms-position: static;
    list-style: none;
    background-color: transparent;
    width: 120%;
    margin-left: -15px;
    box-shadow: none;
    left: 0px;
    overflow: hidden;
    margin-top: 0px;
    max-height: 0;
    transition: max-height 250ms ease-in;
  }
  .header .navbar .nav-container .list-items li ul li {
    padding: 5px 0;
  }
  .header .navbar .nav-container .list-items li ul li a {
    margin: 0;
    width: 100%;
    display: block;
    font-size: 14px;
    width: 105%;
    margin-left: -10px;
    top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: max-height 200ms ease;
  }
  .header .navbar .nav-container .list-items li ul li a:hover {
    color: #000;
    background-color: transparent;
  }
  .header .navbar .nav-container .list-items li .aesthetic-dropdown {
    width: 100%;
    margin-left: 0;
    transition: max-height 500ms ease;
  }
  .header .navbar .nav-container .list-items li .aesthetic-dropdown .aesthetic-dropdown-inner {
    margin-top: 0px;
    margin-left: 0;
    padding: 0;
    width: 100%;
    transition: max-height 500ms ease;
  }
  .header .navbar .nav-container .list-items li .aesthetic-dropdown .aesthetic-dropdown-inner li a {
    padding-left: 40px;
  }
  .header .navbar .nav-container .list-items li .aesthetic-dropdown .aesthetic-dropdown-inner .aesthetic-dropdown-inner2 {
    margin-top: 0;
    width: 100%;
    margin-left: 0px;
    transition: max-height 500ms ease;
  }
  .header .navbar .nav-container .list-items li .aesthetic-dropdown .aesthetic-dropdown-inner .aesthetic-dropdown-inner2 li {
    padding: 5px 0;
  }
  .header .navbar .nav-container .list-items li .aesthetic-dropdown .aesthetic-dropdown-inner .aesthetic-dropdown-inner2 li a {
    width: 100%;
    margin-left: 0;
    padding-left: 62px;
  }
  .header .navbar .nav-container .list-items li .aesthetic-dropdown .aesthetic-dropdown-inner .aesthetic-dropdown-inner3 {
    margin-left: 0;
    padding: 0 0 0 0;
    width: 100%;
    margin-top: 0;
    transition: max-height 500ms ease;
  }
  .header .navbar .nav-container .list-items li .aesthetic-dropdown .aesthetic-dropdown-inner .aesthetic-dropdown-inner3 li a {
    width: 100%;
    margin-left: 0;
    padding-left: 62px;
  }
  .header .navbar .nav-container .list-items li .aesthetic-dropdown .aesthetic-dropdown-inner:focus-within {
    overflow: hidden;
  }
  .header .navbar .nav-container .list-items li .aesthetic-dropdown .aesthetic-dropdown-inner li a {
    padding-left: 65px;
  }
  .header .navbar .nav-container .list-items li .aesthetic-dropdown:focus-within {
    overflow: hidden;
  }
  .header .navbar .nav-container .list-items li .aesthetic-dropdown li a {
    padding-left: 50px;
  }
}
#main {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../images/hero.jpg);
  height: 64vh;
  background-position: center center;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: no-repeat;
}
#main .main-container {
  flex-direction: column;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  color: #fff;
  text-align: center;
  height: 100%;
}
#main .main-container .main-inner {
  flex-direction: column;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  color: #fff;
  text-align: center;
  margin-top: -45px;
}
#main .main-container .main-inner .small {
  font-size: 26px;
  font-weight: 500;
  padding-bottom: 10px;
}
#main .main-container .main-inner .large {
  font-size: 60px;
  background-color: #0632AD;
  padding: 0 30px;
  margin: 10px 0;
}
#main .main-container .main-inner .paragraph {
  width: 65%;
  text-align: center;
  line-height: 1.5;
  padding: 5px 0;
  font-size: 20px;
}

#appointment-form {
  background-color: #fff;
  border: 1px solid #FAFAFC;
  border-radius: 8px;
  width: 100%;
  z-index: 1;
  position: relative;
  margin: -80px auto 0 auto;
  box-shadow: 0px 2px 5px rgba(173, 173, 173, 0.3098039216);
}
#appointment-form .form-container {
  padding: 25px 30px;
}
#appointment-form .form-container .form-head {
  padding-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
}
#appointment-form .form-container form {
  display: flex;
  justify-content: start;
  align-items: center;
}
#appointment-form .form-container form .inputs {
  padding: 15px 10px;
  width: 100%;
}
#appointment-form .form-container form .inputs:first-child {
  padding-left: 0;
}
#appointment-form .form-container form .inputs input,
#appointment-form .form-container form .inputs select {
  width: 100%;
  height: 54px;
  border-radius: 7px;
  padding: 0 15px;
  background-color: transparent;
  outline: none;
  border: 1px solid #ADADAD;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}
#appointment-form .form-container form .inputs input::-moz-placeholder, #appointment-form .form-container form .inputs select::-moz-placeholder {
  font-size: 14px;
}
#appointment-form .form-container form .inputs input::placeholder,
#appointment-form .form-container form .inputs select::placeholder {
  font-size: 14px;
}
#appointment-form .form-container form .inputs:focus-within input {
  border-color: #0632AD;
}
#appointment-form .form-container .btn-submit {
  display: flex;
  justify-content: center;
  margin-left: -30px;
}
#appointment-form .form-container .btn-submit button {
  width: 100%;
  max-width: 70%;
  height: 50px;
  background-color: #0632AD;
  border: none;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#appointment-form .form-container .btn-submit button:hover {
  background-color: #2350cd;
}

.background-body {
  background-color: #FAFAFC;
  position: relative;
  margin-top: -120px;
}

#services {
  padding: 160px 0 60px 0;
}
#services .services-container .card-head {
  padding-bottom: 32px;
  padding-top: 20px;
  font-weight: 700;
  margin-left: 15px;
  font-size: 32px;
  text-align: center;
}
#services .services-container .service-head {
  text-align: center;
  padding: 0px 0 20px 0;
}
#services .services-container .service-head h1 {
  font-weight: 600;
  font-size: 35px;
  margin: 16px 0;
  word-spacing: 8px;
}
#services .services-container .service-head p {
  padding: 10px 0 15px 0;
  font-weight: 300;
  font-size: 18px;
}
#services .services-container .slider-container {
  margin-left: 15px;
  max-width: 1450px;
  width: 100%;
}
#services .services-container .slider-container .card {
  position: relative;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  width: 345px !important;
  cursor: pointer;
  border-radius: 20px;
}
#services .services-container .slider-container .card .image-box {
  height: 300px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 300ms cubic-bezier(0, 0, 1, 1);
}
#services .services-container .slider-container .card .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#services .services-container .slider-container .card .image-box:hover {
  transform: scale(1.08);
}
#services .services-container .slider-container .card .details {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  z-index: 2;
}
#services .services-container .slider-container .card .details h2 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 700;
}
#services .services-container .slider-container .card .details a {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
#services .services-container .slider-container .card .details:hover ~ div {
  transform: scale(1.08);
}
#services .services-container .slider-btn-next,
#services .services-container .slider-btn-prev {
  background-color: #1338B0;
  width: 35px;
  height: 35px;
  display: block;
  position: absolute;
  top: 28%;
  z-index: 10;
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
#services .services-container .slider-btn-next {
  right: 20px;
}
#services .services-container .slider-btn-prev {
  left: 20px;
}
#services .services-container .slider-btn-next::before,
#services .services-container .slider-btn-prev::before {
  border-style: solid;
  border-width: 0.2em 0.2em 0 0;
  content: "";
  display: inline-block;
  height: 12px;
  cursor: pointer;
  position: absolute;
  color: #fff;
  transform: rotate(-45deg);
  vertical-align: top;
  width: 12px;
}
#services .services-container .slider-btn-next::before {
  left: 0.5em;
  top: 0.65em;
  transform: rotate(45deg);
}
#services .services-container .slider-btn-prev::before {
  right: 0.5em;
  top: 0.65em;
  transform: rotate(-135deg);
}
#services .services-container .swiper-button-disabled {
  opacity: 0;
  transition: opacity 100ms ease;
}

#about {
  padding: 33px 0 40px 0;
}
#about .about-container .about-head {
  padding-bottom: 20px;
  text-align: center;
}
#about .about-container .about-head h1 {
  font-size: 45px;
}
#about .about-container .about-head p {
  font-weight: 400;
  font-size: 18px;
  padding: 15px 0;
}
#about .about-container .about-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, auto));
  justify-items: center;
  align-items: start;
  padding: 12px 0;
  text-align: center;
}
#about .about-container .about-row .about-col {
  padding: 0 20px 20px 20px;
}
#about .about-container .about-row .about-col img {
  width: 50px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-bottom: 10px;
}
#about .about-container .about-row .about-col .content h2 {
  padding-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
}
#about .about-container .about-row .about-col .content p {
  font-size: 18px;
  width: 95%;
  margin: auto;
  font-weight: 400;
}
#about .about-container .about-row .about-col-3 .content p {
  width: 100%;
}
#about .about-container #mobile-col {
  display: none;
}
#about .about-container .contact-btn {
  text-align: center;
  width: 100%;
  padding-top: 10px;
}
#about .about-container .contact-btn a {
  cursor: pointer;
}
#about .about-container .contact-btn a button {
  width: 220px;
  height: 55px;
  background-color: #0632AD;
  border: 1px solid #0632AD;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#about .about-container .contact-btn a button:hover {
  background-color: #2350cd;
  border: 1px solid transparent;
}

.review-container {
  padding: 50px 0;
}
.review-container .review-heading {
  text-align: center;
  margin-bottom: 5px;
}
.review-container .review-heading h1 {
  font-weight: 700;
  font-size: 38px;
}
.review-container .reviews-body {
  display: grid;
  justify-items: center;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(345px, auto));
  padding-top: 30px;
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 25px;
}
.review-container .reviews-body .review-border-color {
  padding: 1rem;
  position: relative;
  background: linear-gradient(180deg, #1338B0 0%, #0097FF 100%);
  padding: 1px;
  border-radius: 9px;
}
.review-container .reviews-body .review-border-color .review {
  background: #fff;
  padding: 0rem 2rem;
  border-radius: 8px;
}
.review-container .reviews-body .review-border-color .review .top {
  padding: 25px 0 15px 0;
  display: flex;
  justify-content: start;
  align-items: center;
}
.review-container .reviews-body .review-border-color .review .top .name {
  font-weight: 500;
  font-size: 22px;
}
.review-container .reviews-body .review-border-color .review .top .ratings {
  margin: 0 20px;
}
.review-container .reviews-body .review-border-color .review .top .ratings svg {
  font-size: 18px;
}
.review-container .reviews-body .review-border-color .review .description p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.review-container .reviews-body .review-border-color .review .read-btn {
  padding: 15px 0 25px 0;
}
.review-container .reviews-body .review-border-color .review .read-btn a {
  color: #000;
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline;
}
.review-container .reviews-body .review-border-color .review .read-btn a:hover {
  text-decoration: none;
}
.review-container .further-links {
  text-align: center;
  padding: 40px 0 0 0;
}
.review-container .further-links h2 {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 30px;
}
.review-container .further-links .images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
}
.review-container .further-links .images .webpage {
  background-color: #DCD1FE;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.review-container .further-links .images .webpage a {
  display: flex;
}
.review-container .further-links .images .webpage a img {
  width: 100%;
}
.review-container .further-links .images .webpage:first-child a img {
  max-width: 90px;
}
.review-container .further-links .images .webpage:last-child {
  background-color: #E8EEFF;
}
.review-container .further-links .images .webpage:last-child a img {
  max-width: 110px;
}

#profile {
  background-color: #FAFAFC;
  margin: 20px 0;
}
#profile .profile-container {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: start;
  margin-right: -247px;
}
#profile .profile-container .mobile {
  display: none;
}
#profile .profile-container .profile-img {
  display: inline-block;
}
#profile .profile-container .profile-img img {
  width: 100%;
  max-width: 440px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#profile .profile-container .profile-context {
  padding: 15px 0 10px 40px;
}
#profile .profile-container .profile-context .head {
  font-weight: 700;
  font-size: 38px;
  text-transform: uppercase;
  color: #0632AD;
}
#profile .profile-container .profile-context .qualifi {
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  width: 60%;
  color: #1F1D1D;
  padding: 10px 0 10px 0;
}
#profile .profile-container .profile-context .expert li {
  padding: 2px 0;
  font-weight: 300;
  font-size: 18px;
  color: #000000;
}

/************* CAROUSAL SECTION *****************/
.carousal-head {
  text-align: center;
  padding: 15px 0 10px 0;
}
.carousal-head h1 {
  font-weight: 700;
  font-size: 42px;
  text-transform: capitalize;
}

#carousal-container {
  max-width: 2415px;
}

.swiper {
  width: 100%;
  padding-bottom: 50px !important;
}
.swiper .swiper-wrapper {
  width: 100% !important;
}
.swiper .swiper-wrapper .swiper-slide {
  width: 100% !important;
}
.swiper .swiper-wrapper .video {
  width: 50em !important;
  padding: 2em 0em;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 10px;
}
.swiper .swiper-wrapper .video iframe {
  width: 100%;
  height: 450px;
}
.swiper .swiper-wrapper .video .youtube_codegena {
  width: 100%;
  height: 450px !important;
}
.swiper .swiper-wrapper .video .youtube_codegena .thumb {
  height: 100% !important;
}
.swiper .custom-btn {
  color: #fff !important;
  font-size: 14px !important;
  background-color: #0632AD;
  border-radius: 50%;
  width: 35px !important;
  height: 35px !important;
}
.swiper .custom-btn::after {
  font-size: 18px !important;
  font-weight: 700 !important;
}
.swiper .custom-btn:hover {
  background-color: #2350cd;
}

/************ Appointment Form *************/
.appointment-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}
.appointment-form-container .appoint-form {
  background: linear-gradient(0deg, rgb(19, 56, 176) 0%, rgb(0, 151, 255) 100%);
  background-position: center;
  box-shadow: 0px 4px 57px rgba(0, 0, 0, 0.07);
  border-radius: 17px;
  width: 100%;
  max-width: 1163px;
  padding: 20px 30px;
  color: #fff;
}
.appointment-form-container .appoint-form .form-head {
  text-align: center;
  padding: 30px 0 10px 0;
}
.appointment-form-container .appoint-form .form-head h1 {
  font-weight: 600;
  font-size: 42px;
  text-transform: capitalize;
}
.appointment-form-container .appoint-form .apointmentform-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0;
}
.appointment-form-container .appoint-form .apointmentform-body .input-row {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  max-width: 1050px;
}
.appointment-form-container .appoint-form .apointmentform-body .input-row:focus-within .animation-left {
  width: 88%;
}
.appointment-form-container .appoint-form .apointmentform-body .input-row .input-field {
  width: 100%;
  padding: 0 20px;
  position: relative;
}
.appointment-form-container .appoint-form .apointmentform-body .input-row .input-field:focus-within .animation-left {
  width: 94%;
}
.appointment-form-container .appoint-form .apointmentform-body .input-row .input-field input {
  border: none;
  border-bottom: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  width: 100%;
  padding: 0 10px 15px 15px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease-in-out;
}
.appointment-form-container .appoint-form .apointmentform-body .input-row .input-field input::-webkit-input-placeholder {
  color: rgb(255, 255, 255);
}
.appointment-form-container .appoint-form .apointmentform-body .input-row .input-field input::-moz-placeholder {
  color: rgb(255, 255, 255);
  opacity: 0.67;
}
.appointment-form-container .appoint-form .apointmentform-body .input-row .input-field input::-ms-placeholder {
  color: rgb(255, 255, 255);
  opacity: 0.67;
}
.appointment-form-container .appoint-form .apointmentform-body .input-row .input-field input::-moz-placeholder {
  color: rgb(255, 255, 255);
}
.appointment-form-container .appoint-form .apointmentform-body .input-row .input-field input::placeholder {
  color: rgb(255, 255, 255);
}
.appointment-form-container .appoint-form .apointmentform-body .input-row .input-field .animation-left {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background-color: #000;
  bottom: 0;
  left: 20px;
  transition: all 0.3s ease-in-out;
}
.appointment-form-container .appoint-form .apointmentform-body .input-row .text-input {
  width: 100%;
  max-width: 100%;
  min-width: 67%;
  height: 100%;
  max-width: 100%;
  min-height: 50%;
}
.appointment-form-container .appoint-form .apointmentform-body .input-row .text-input textarea {
  border: none;
  border-bottom: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  width: 543px;
  max-width: 100%;
  min-width: 100%;
  height: 100%;
  overflow-y: auto;
  min-height: 100%;
  max-height: 100%;
  padding: 0 10px 0 15px;
  font-size: 16px;
  outline: none;
}
.appointment-form-container .appoint-form .apointmentform-body .input-row .text-input textarea::-webkit-input-placeholder {
  color: rgb(255, 255, 255);
}
.appointment-form-container .appoint-form .apointmentform-body .input-row .text-input textarea::-moz-placeholder {
  color: rgb(255, 255, 255);
}
.appointment-form-container .appoint-form .apointmentform-body .input-row .text-input textarea::-ms-placeholder {
  color: rgb(255, 255, 255);
}
.appointment-form-container .appoint-form .apointmentform-body .input-row .text-input textarea::-moz-placeholder {
  color: rgb(255, 255, 255);
}
.appointment-form-container .appoint-form .apointmentform-body .input-row .text-input textarea::placeholder {
  color: rgb(255, 255, 255);
}
.appointment-form-container .appoint-form .submit-btn {
  text-align: center;
  padding: 0 0 20px 0;
}
.appointment-form-container .appoint-form .submit-btn #send-form {
  width: 200px;
  height: 55px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #fff;
  color: #1978D6;
  text-transform: uppercase;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.appointment-form-container .appoint-form .submit-btn #send-form:hover {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

@media only screen and (max-width: 1300px) {
  #main {
    height: 60vh;
  }
  #main .main-container .main-inner .large {
    font-size: 50px;
  }
  #main .main-container .main-inner .paragraph {
    width: 50%;
    font-size: 17px;
  }
  #appointment-form {
    width: 95%;
  }
  #appointment-form .form-container form .inputs input::-moz-placeholder {
    font-size: 12px;
  }
  #appointment-form .form-container form .inputs input::placeholder {
    font-size: 12px;
  }
  #appointment-form .form-container form .btn-submit {
    margin-left: 0;
  }
  #appointment-form .form-container form .btn-submit button {
    max-width: 100%;
  }
  #services {
    padding: 160px 0 60px 0;
  }
  #services .services-container .card-head {
    margin-left: 15px;
    font-size: 26px;
    font-weight: 700;
  }
  #services .services-container .slider-container {
    margin-bottom: 0px;
  }
  #services .services-container .slider-container .card {
    cursor: pointer;
    width: 320px !important;
    height: 280px;
  }
  #services .services-container .slider-container .card .details h2 {
    font-size: 20px;
  }
  #services .services-container .slider-container .card .details a {
    font-size: 14px;
  }
  #services .services-container .mb-0 {
    margin-bottom: 0 !important;
  }
  .review-container {
    padding: 50px 0;
  }
  .review-container .review-heading {
    text-align: center;
    margin-bottom: 20px;
  }
  .review-container .review-heading h1 {
    font-weight: 500;
    font-size: 38px;
  }
  .review-container .reviews-body .review-border-color .review .top .name {
    font-size: 20px;
  }
  .review-container .reviews-body .review-border-color .review .description p {
    width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: ellipsis;
    font-size: 16px;
  }
  #about .about-container .about-head h1 {
    font-size: 38px;
  }
  #about .about-container .about-head p {
    font-size: 16px;
  }
  #about .about-container .about-row .about-col {
    padding: 0 0 20px 0;
  }
  #about .about-container .about-row .about-col .content p {
    font-size: 16px;
    width: 95%;
    margin: auto;
  }
}
@media only screen and (max-width: 1100px) {
  #main {
    height: 55vh !important;
  }
  #main .main-container .main-inner .small {
    font-size: 24px;
  }
  #main .main-container .main-inner .large {
    font-size: 45px;
  }
  #main .main-container .main-inner .paragraph {
    font-size: 16px;
  }
  #services .services-container .card-head {
    font-size: 26px;
    font-weight: 700;
  }
  #services .services-container .slider-container {
    margin-bottom: 22px;
  }
  #services .services-container .slider-container .card {
    cursor: pointer;
    width: 320px !important;
    height: 250px;
  }
  #services .services-container .slider-container .card .details h2 {
    font-size: 20px;
  }
  #services .services-container .slider-container .card .details a {
    font-size: 14px;
  }
  #about .about-container .about-head h1 {
    font-size: 38px;
  }
  #about .about-container .about-head p {
    font-size: 16px;
  }
  #about .about-container #mobile-col {
    display: block;
  }
  #about .about-container #mobile-col .about-col {
    padding: 0 0 20px 0;
  }
  #about .about-container #mobile-col .about-col .content p {
    font-size: 16px;
    width: 55%;
    margin: auto;
  }
  #about .about-container .about-row .about-col-3 {
    display: none;
  }
  #about .about-container .about-row .about-col {
    padding: 0 0 20px 0;
  }
  #about .about-container .about-row .about-col .content p {
    font-size: 16px;
    width: 75%;
    margin: auto;
  }
  .review-container {
    padding: 50px 0;
  }
  .review-container .review-heading {
    text-align: center;
    margin-bottom: 20px;
  }
  .review-container .review-heading h1 {
    font-weight: 500;
    font-size: 36px;
  }
  .review-container .reviews-body .review-border-color .review .top .name {
    font-size: 18px;
  }
  .review-container .reviews-body .review-border-color .description p {
    font-size: 15px;
  }
  .review-container .reviews-body .review-border-color:last-child {
    width: 205%;
    margin: auto;
  }
  #profile {
    background-color: #FAFAFC;
    margin: 20px 0;
  }
  #profile .profile-container {
    margin-right: 0;
  }
  #profile .profile-container .profile-img {
    display: inline-block;
  }
  #profile .profile-container .profile-img img {
    width: 100%;
    max-width: 420px;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  #profile .profile-container .profile-context {
    padding: 10px 0 10px 45px;
  }
  #profile .profile-container .profile-context .head {
    font-weight: 600;
    font-size: 40px;
    text-transform: uppercase;
    color: #0632AD;
  }
  #profile .profile-container .profile-context .qualifi {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    width: 70%;
    color: #1F1D1D;
    padding: 10px 0 10px 0;
  }
  #profile .profile-container .profile-context .expert li {
    padding: 2px 5px;
    font-weight: 300;
    font-size: 15px;
    color: #505050;
  }
  .appointment-form-container {
    width: 95%;
    margin: auto;
  }
  .appointment-form-container .appoint-form .apointmentform-body .input-row .input-field textarea {
    padding: 0 10px 15px 15px;
  }
}
@media only screen and (max-width: 1000px) {
  #main {
    height: 45vh !important;
  }
  #main .main-container .main-inner {
    margin-top: 0;
  }
  #main .main-container .main-inner .small {
    font-size: 17px;
  }
  #main .main-container .main-inner .large {
    padding: 6px 20px;
    font-size: 45px;
  }
  #main .main-container .main-inner .paragraph {
    width: 60%;
    font-size: 17px;
  }
  #appointment-form {
    display: none;
  }
  .background-body {
    margin: 0;
  }
  #services {
    padding-top: 25px;
  }
  #services .services-container .slider-container {
    margin-bottom: 15px;
  }
  #services .services-container .slider-container .card {
    cursor: pointer;
    width: 280px !important;
    height: 220px;
  }
  #services .services-container .slider-container .card .image-box {
    height: 250px;
  }
  #services .services-container .slider-container .card .details h2 {
    font-size: 20px;
  }
  #services .services-container .slider-container .card .details a {
    font-size: 14px;
  }
  #about {
    padding-bottom: 20px;
  }
  #about .about-container .about-head h1 {
    font-size: 35px;
  }
  #about .about-container .about-head p {
    font-size: 15px;
  }
  #about .about-container .about-row .about-col-3 {
    display: none;
  }
  #about .about-container .about-row .about-col {
    padding: 0 0 20px 0;
  }
  #about .about-container .about-row .about-col .content h2 {
    font-size: 17px;
  }
  #about .about-container .about-row .about-col .content p {
    font-size: 16px;
    width: 75%;
    margin: auto;
  }
  #about .about-container #mobile-col {
    display: block;
  }
  #about .about-container #mobile-col .about-col {
    padding: 0 0 20px 0;
  }
  #about .about-container #mobile-col .about-col .content h2 {
    font-size: 17px;
  }
  #about .about-container #mobile-col .about-col .content p {
    font-size: 16px;
    width: 55%;
    margin: auto;
  }
  .review-container .reviews-body .review-border-color .description p {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical !important;
  }
  #profile {
    background-color: #FAFAFC;
    margin: 20px 0;
  }
  #profile .profile-container {
    flex-wrap: wrap;
    padding: 20px 0;
  }
  #profile .profile-container .mobile {
    display: block;
    text-align: center;
  }
  #profile .profile-container .mobile .head {
    display: block !important;
  }
  #profile .profile-container .mobile .qualifi {
    display: block !important;
    margin: auto;
  }
  #profile .profile-container .profile-img {
    display: inline-block;
  }
  #profile .profile-container .profile-img img {
    width: 100%;
    max-width: 370px;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  #profile .profile-container .profile-context {
    padding: 10px 0 10px 0px;
  }
  #profile .profile-container .profile-context .head {
    display: none;
  }
  #profile .profile-container .profile-context .qualifi {
    display: none;
  }
  #profile .profile-container .profile-context .expert li {
    padding: 2px 5px;
    font-weight: 300;
    font-size: 15px;
    color: #505050;
  }
  /************* CAROUSAL SECTION *****************/
  .carousal-head {
    padding: 10px 0 10px 0;
  }
  .carousal-head h1 {
    font-weight: 600;
    font-size: 35px;
    text-transform: capitalize;
  }
  .carousal-head p {
    padding-top: 15px;
  }
  .swiper {
    width: 100%;
    padding-bottom: 50px;
  }
  .swiper .swiper-wrapper .video {
    width: 35em !important;
    height: 400px;
  }
  .swiper .swiper-wrapper .video iframe {
    width: 100%;
    height: 100%;
  }
  .swiper .swiper-wrapper .video .youtube_codegena {
    width: 100%;
    height: 400px !important;
  }
  .swiper .swiper-wrapper .video .youtube_codegena .thumb {
    height: 100% !important;
  }
}
@media only screen and (max-width: 800px) {
  #services .services-container .card-head {
    padding-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
  }
  #services .services-container .slider-container {
    margin-bottom: 28px;
  }
  #services .services-container .slider-container .card {
    cursor: pointer;
    width: 260px !important;
    height: 220px;
  }
  #services .services-container .slider-container .card .image-box {
    height: 250px;
  }
  #services .services-container .slider-container .card .details h2 {
    font-size: 20px;
  }
  #services .services-container .slider-container .card .details a {
    font-size: 14px;
  }
  .review-container {
    padding: 50px 0 40px 0;
  }
  .review-container .review-heading {
    text-align: center;
    margin-bottom: 20px;
  }
  .review-container .review-heading h1 {
    font-weight: 600;
    font-size: 35px;
  }
  .review-container .reviews-body .review-border-color .review .top .name {
    font-size: 18px;
  }
  .review-container .reviews-body .review-border-color .description p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 700px) {
  #main {
    height: 40vh !important;
  }
  #main .main-container {
    text-align: center;
  }
  #main .main-container .main-inner .small {
    font-size: 17px;
    padding-bottom: 0;
  }
  #main .main-container .main-inner .large {
    font-size: 38px;
  }
  #main .main-container .main-inner .paragraph {
    width: 70%;
    font-size: 17px;
  }
  #services .services-container .card-head {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
  }
  #services .services-container .slider-container {
    margin-bottom: 15px;
  }
  #services .services-container .slider-container .card {
    cursor: pointer;
    width: 260px !important;
    border-radius: 12px;
  }
  #services .services-container .slider-container .card .image-box {
    height: 250px;
  }
  #services .services-container .slider-container .card .details h2 {
    font-size: 20px;
  }
  #services .services-container .slider-container .card .details a {
    font-size: 14px;
  }
  .review-container .review-heading h1 {
    font-size: 32px;
  }
  .review-container .reviews-body .review-border-color .description p {
    font-size: 15px !important;
  }
  .review-container .reviews-body .review-border-color .read-btn a {
    font-size: 14px !important;
  }
  .review-container .reviews-body .review-border-color:last-child {
    width: 100%;
    margin: auto;
  }
  .review-container .further-links h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .review-container .further-links .link-img a img {
    max-width: 80px;
  }
  .review-container .further-links .link-img a:last-child img {
    max-width: 150px;
    margin-left: 80px;
  }
  #about .about-container .about-head h1 {
    font-size: 32px;
  }
  #about .about-container .about-head p {
    font-size: 16px;
    width: 70%;
    margin: auto;
  }
  #about .about-container .about-row .about-col-3 {
    display: none;
  }
  #about .about-container .about-row .about-col {
    padding: 0 0 20px 0;
  }
  #about .about-container .about-row .about-col .content h2 {
    font-size: 17px;
  }
  #about .about-container .about-row .about-col .content p {
    font-size: 16px;
    width: 85%;
    margin: auto;
  }
  #about .about-container #mobile-col {
    display: block;
  }
  #about .about-container #mobile-col .about-col {
    padding: 0 0 20px 0;
  }
  #about .about-container #mobile-col .about-col .content h2 {
    font-size: 17px;
  }
  #about .about-container #mobile-col .about-col .content p {
    font-size: 16px;
    width: 65%;
    margin: auto;
  }
  #about .about-container .contact-btn a button {
    width: 180px;
    height: 52px;
    font-size: 15px;
  }
  #profile {
    background-color: #FAFAFC;
    margin: 20px 0;
  }
  #profile .profile-container {
    flex-wrap: wrap;
    padding: 20px 0;
  }
  #profile .profile-container .mobile .head {
    display: block !important;
    font-size: 35px;
  }
  #profile .profile-container .mobile .qualifi {
    display: block !important;
    margin: auto;
    font-size: 20px;
  }
  #profile .profile-container .profile-img img {
    max-width: 350px;
  }
  #profile .profile-container .profile-context .expert li {
    font-size: 14px;
    margin-left: 30px;
    padding-top: 8px;
  }
  .carousal-head {
    padding: 10px 0 10px 0;
  }
  .carousal-head h1 {
    font-size: 30px;
  }
  .swiper {
    width: 100%;
    padding-bottom: 50px;
  }
  .swiper .swiper-wrapper .video {
    width: 35em !important;
    height: 350px;
  }
  .swiper .swiper-wrapper .video iframe {
    width: 100%;
    height: 100%;
  }
  .swiper .swiper-wrapper .video .youtube_codegena {
    width: 100%;
    height: 350px !important;
  }
  .swiper .swiper-wrapper .video .youtube_codegena .thumb {
    height: 100% !important;
  }
  .appointment-form-container {
    width: 95%;
    margin: auto;
  }
  .appointment-form-container .appoint-form .form-head h1 {
    font-size: 29px;
  }
  .appointment-form-container .appoint-form .apointmentform-body {
    padding: 0px 0 20px 0;
  }
  .appointment-form-container .appoint-form .apointmentform-body .input-row {
    padding: 20px 0 0 0;
    flex-direction: column;
  }
  .appointment-form-container .appoint-form .apointmentform-body .input-row:last-child {
    padding-top: 0;
  }
  .appointment-form-container .appoint-form .apointmentform-body .input-row .input-field {
    padding: 20px 0;
  }
  .appointment-form-container .appoint-form .apointmentform-body .input-row .input-field:focus-within .animation-left {
    width: 100%;
  }
  .appointment-form-container .appoint-form .apointmentform-body .input-row .input-field .animation-left {
    width: 0%;
    bottom: 20px;
    left: 0;
  }
  .appointment-form-container .appoint-form .apointmentform-body .input-row .input-field textarea {
    padding: 0 10px 15px 15px;
  }
}
@media only screen and (max-width: 500px) {
  #main {
    height: 40vh !important;
  }
  #main .main-container {
    text-align: center;
  }
  #main .main-container .main-inner .small {
    font-size: 18px;
    padding-bottom: 0px;
  }
  #main .main-container .main-inner .large {
    font-size: 30px;
    padding: 6px 15px;
  }
  #main .main-container .main-inner .paragraph {
    padding: 0 15px;
    width: 98%;
    font-size: 15px;
    font-weight: 400;
  }
  .form-popup .form-popup-container {
    padding: 20px 25px;
  }
  .form-popup .form-popup-container .form-head h2 {
    font-size: 22px;
    font-weight: 600;
  }
  #services .services-container .card-head {
    padding-bottom: 22px;
    font-size: 18px;
  }
  #services .services-container .slider-container {
    margin-bottom: 20px;
  }
  #services .services-container .slider-container .card {
    cursor: pointer;
    width: 260px !important;
    height: 200px;
  }
  #services .services-container .slider-container .card:last-child {
    width: 280px !important;
  }
  #services .services-container .slider-container .card .image-box {
    height: 250px;
  }
  #services .services-container .slider-container .card .details h2 {
    font-size: 18px;
  }
  #services .services-container .slider-container .card .details a {
    font-size: 14px;
  }
  #services .services-container .mb-0 {
    margin-bottom: 0 !important;
  }
  .review-container .review-heading h1 {
    font-size: 25px;
  }
  .review-container .reviews-body {
    padding-top: 20px;
  }
  .review-container .further-links h2 {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .review-container .further-links .images {
    flex-direction: column;
    padding-bottom: 20px;
  }
  .review-container .further-links .images .webpage {
    background-color: #DCD1FE;
    border-radius: 6px;
    padding: 12px;
    width: 96%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .review-container .further-links .images .webpage a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .review-container .further-links .images .webpage a img {
    width: 100%;
  }
  .review-container .further-links .images .webpage:first-child a img {
    max-width: 100px;
  }
  .review-container .further-links .images .webpage:last-child a img {
    max-width: 140px;
  }
  #about .about-container .about-head h1 {
    font-size: 23px;
    padding: 0 8px;
  }
  #about .about-container .about-head p {
    font-size: 15px;
    width: 90%;
    margin: auto;
  }
  #about .about-container .about-row .about-col-3 {
    display: none;
  }
  #about .about-container .about-row .about-col {
    padding: 0 0 20px 0;
  }
  #about .about-container .about-row .about-col img {
    width: 40px;
  }
  #about .about-container .about-row .about-col .content h2 {
    font-size: 16px;
  }
  #about .about-container .about-row .about-col .content p {
    font-size: 14px;
    width: 95%;
    margin: auto;
  }
  #about .about-container #mobile-col {
    display: block;
  }
  #about .about-container #mobile-col .about-col {
    padding: 0 0 20px 0;
  }
  #about .about-container #mobile-col .about-col img {
    width: 40px;
  }
  #about .about-container #mobile-col .about-col .content h2 {
    font-size: 16px;
  }
  #about .about-container #mobile-col .about-col .content p {
    font-size: 14px;
    width: 95%;
    margin: auto;
  }
  #profile {
    background-color: #FAFAFC;
    margin: 20px 0;
  }
  #profile .profile-container {
    flex-wrap: wrap;
    padding: 20px 0;
  }
  #profile .profile-container .mobile .head {
    display: block !important;
    font-size: 30px;
  }
  #profile .profile-container .mobile .qualifi {
    display: block !important;
    margin: auto;
    font-size: 18px;
    width: 100%;
    padding: 10px 10px;
  }
  #profile .profile-container .profile-img img {
    max-width: 280px;
  }
  #profile .profile-container .profile-context .expert li {
    font-size: 14px;
    margin-left: 20px;
  }
  .carousal-head {
    padding: 10px 0 5px 0;
  }
  .carousal-head h1 {
    font-size: 28px;
  }
  .swiper {
    width: 100%;
    padding-bottom: 50px;
  }
  .swiper .swiper-wrapper .video {
    width: 25em !important;
    height: 300px;
  }
  .swiper .swiper-wrapper .video iframe {
    width: 90%;
    height: 100%;
  }
  .swiper .swiper-wrapper .video .youtube_codegena {
    width: 100%;
    height: 250px !important;
  }
  .swiper .swiper-wrapper .video .youtube_codegena .thumb {
    height: 100% !important;
  }
  .appointment-form-container {
    background: linear-gradient(0deg, rgb(19, 56, 176) 0%, rgb(0, 151, 255) 100%);
    width: 95%;
    margin: auto;
  }
  .appointment-form-container .appoint-form .form-head h1 {
    font-size: 23px !important;
  }
}
/*************** BLOG SECTION *******************/
#blog-container {
  width: 100%;
  max-width: 1352px;
  /********* BLOG CONTENT *************/
}
#blog-container .blog-heading {
  padding: 10px 0 25px 0;
}
#blog-container .blog-heading h1 {
  font-size: 38px;
  width: 85%;
  line-height: 1.5;
}
#blog-container .blog-heading p {
  color: #0A0A0A;
  font-size: 16px;
}
#blog-container .blog-img {
  width: 100%;
}
#blog-container .blog-img img {
  width: 100%;
  max-width: 831px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 438px;
}
#blog-container .blog-section {
  padding: 50px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#blog-container .blog-section .blog-container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}
#blog-container .blog-section .blog-container .row {
  width: 100%;
}
#blog-container .blog-section .blog-container .row .col-1 .blog-head {
  padding: 35px 0 0px 0;
}
#blog-container .blog-section .blog-container .row .col-1 .blog-head:first-child {
  padding-top: 10px;
}
#blog-container .blog-section .blog-container .row .col-1 .blog-head h1 {
  font-size: 25px;
  font-weight: 700;
  color: #252939;
}
#blog-container .blog-section .blog-container .row .col-1 .blog-text {
  padding-top: 10px;
}
#blog-container .blog-section .blog-container .row .col-1 .blog-text P {
  font-size: 18px;
  color: #000;
  font-weight: 400;
}
#blog-container .blog-section .blog-container .row .col-1 .blog-text a {
  color: #0632AD;
  text-decoration: none;
}
#blog-container .blog-section .blog-container .row .col-1 .blog-text ul {
  margin: 14px 0 0 20px;
}
#blog-container .blog-section .blog-container .row .col-1 .blog-text ul li {
  padding: 4px 0;
  font-size: 18px;
  color: #000;
  font-weight: 400;
}

@media only screen and (max-width: 1300px) {
  #blog-container .blog-section {
    padding: 10px 5px;
  }
  #blog-container .blog-section .row {
    padding: 0 5px;
  }
  #blog-container .blog-section .row .col-1 .blog-heading h1 {
    font-size: 33px;
  }
  #blog-container .blog-section .row .col-1 .blog-heading p {
    font-size: 15px;
  }
  #blog-container .blog-section .row .col-1 .blog-text p {
    font-size: 16px !important;
  }
  #blog-container .blog-section .row .col-1 .blog-text ul li {
    font-size: 16px !important;
  }
  #blog-container .blog-section .row .col-1 .blog-head {
    padding: 20px 0 0px 0 !important;
  }
  #blog-container .blog-section .row .col-1 .blog-head h1 {
    font-size: 22px !important;
  }
  #blog-container .blog-section .row .col-1 .blog-img img {
    max-width: 700px;
    -o-object-fit: cover;
       object-fit: cover;
    height: 342px;
  }
  #blog-container .blog-section .col-2 {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 1100px) {
  #blog-container .blog-section {
    padding: 25px 5px;
  }
  #blog-container .blog-section .row {
    padding: 0 20px;
  }
  #blog-container .blog-section .row .col-1 .blog-heading h1 {
    font-size: 35px;
  }
  #blog-container .blog-section .row .col-1 .blog-heading p {
    font-size: 14px;
  }
  #blog-container .blog-section .row .col-1 .blog-head h1 {
    font-size: 22px;
  }
  #blog-container .blog-section .row .col-1 .blog-img img {
    max-width: 700px;
    -o-object-fit: cover;
       object-fit: cover;
    height: 342px;
  }
  #blog-container .col-2 {
    display: none;
  }
  /************** CAROUSAL SWIPER ****************/
  /****** RECENT POST SLIDER *******/
  .post-head {
    position: relative;
    margin: 0;
    display: block;
    padding-left: 20px;
    margin-top: 0px;
    display: block;
  }
  .post-head h1 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
  }
  #recentPost-slider {
    display: block;
  }
  .swiper {
    width: 100%;
    padding-bottom: 10px !important;
  }
  .swiper .swiper-wrapper {
    width: 100% !important;
  }
  .swiper .swiper-wrapper .post-silder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    margin: 20px 5px 0 5px;
    max-width: 32%;
  }
  .swiper .swiper-wrapper .post-silder .posts-card {
    border: 1px solid #E0E0E0;
    border-radius: 12px;
  }
  .swiper .swiper-wrapper .post-silder .posts-card .post-img img {
    width: 100%;
  }
  .swiper .swiper-wrapper .post-silder .posts-card .post-title {
    text-align: center;
    padding: 15px 0;
    color: #221E1E;
  }
  .swiper .swiper-wrapper .post-silder .posts-card a {
    text-decoration: none;
    color: #000;
  }
  .swiper .swiper-wrapper .post-silder .posts-card h3 {
    font-size: 16px;
    padding: 0 20px;
    text-align: left;
  }
}
@media only screen and (max-width: 1000px) {
  #blog-container .blog-section {
    padding: 25px 5px;
  }
  #blog-container .blog-section .row {
    padding: 0 20px;
  }
  #blog-container .blog-section .row .col-1 .blog-heading h1 {
    font-size: 35px;
  }
  #blog-container .blog-section .row .col-1 .blog-head {
    padding: 20px 0 0px 0 !important;
  }
  #blog-container .blog-section .row .col-1 .blog-head h1 {
    font-size: 20px !important;
  }
  #blog-container .blog-section .row .col-1 .blog-img img {
    max-width: 700px;
    -o-object-fit: cover;
       object-fit: cover;
    height: 342px;
  }
}
@media only screen and (max-width: 850px) {
  .swiper .swiper-wrapper .post-silder {
    max-width: 40%;
  }
}
@media only screen and (max-width: 700px) {
  #blog-container .blog-section {
    padding: 10px 5px;
  }
  #blog-container .blog-section .row {
    padding: 0 5px;
  }
  #blog-container .blog-section .row .col-1 .blog-heading h1 {
    font-size: 25px;
  }
  #blog-container .blog-section .row .col-1 .blog-head {
    padding: 20px 0 0px 0 !important;
  }
  #blog-container .blog-section .row .col-1 .blog-head h1 {
    font-size: 22px !important;
  }
  #blog-container .blog-section .row .col-1 .blog-img img {
    max-width: 100%;
    height: 100%;
  }
  .swiper .swiper-wrapper .post-silder {
    max-width: 90%;
  }
  .swiper .swiper-wrapper .post-silder .posts-card {
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  #blog-container .blog-section {
    padding: 10px 5px;
  }
  #blog-container .blog-section .row {
    padding: 0 5px;
  }
  #blog-container .blog-section .row .col-1 .blog-heading h1 {
    font-size: 22px;
    width: 100%;
  }
  #blog-container .blog-section .row .col-1 .blog-head {
    padding: 20px 0 0px 0 !important;
  }
  #blog-container .blog-section .row .col-1 .blog-head h1 {
    font-size: 20px !important;
  }
  #blog-container .blog-section .row .col-1 .blog-img img {
    max-width: 100%;
    height: 100%;
  }
}
.blog-posts-section {
  padding: 3em 0;
}
.blog-posts-section .blog-posts-container {
  padding: 0 1em;
}
.blog-posts-section .blog-posts-container .col {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr;
  justify-content: center;
  align-items: start;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
.blog-posts-section .blog-posts-container .col .blog-card a .blog-img {
  position: relative;
  overflow: hidden;
  height: 450px;
  border: 1px solid rgba(16, 1, 1, 0.05);
}
.blog-posts-section .blog-posts-container .col .blog-card a .blog-img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 300ms ease-in-out;
}
.blog-posts-section .blog-posts-container .col .blog-card a .blog-img img:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.blog-posts-section .blog-posts-container .col .blog-card a .blog-img p {
  position: absolute;
  top: 25px;
  left: 30px;
  background: #0632AD;
  border-radius: 49px;
  color: #fff;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 400;
}
.blog-posts-section .blog-posts-container .col .blog-card a .blog-text {
  padding: 1em 0;
}
.blog-posts-section .blog-posts-container .col .blog-card a .blog-text .small {
  color: #7B89A5;
  font-size: 13px;
  padding-bottom: 0.5em;
  display: flex;
  align-items: center;
}
.blog-posts-section .blog-posts-container .col .blog-card a .blog-text .small .date {
  color: #202020;
  margin-right: 10px;
}
.blog-posts-section .blog-posts-container .col .blog-card a .blog-text .small .history {
  font-size: 16px;
  color: #202020;
  margin-right: 8px;
}
.blog-posts-section .blog-posts-container .col .blog-card a .blog-text h1 {
  padding-bottom: 0.3em;
  color: #202020;
  font-size: 24px;
  font-weight: 600;
  transition: color 300ms ease;
}
.blog-posts-section .blog-posts-container .col .blog-card a .about-blog {
  color: #5A5A5A;
  font-size: 15px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-posts-section .blog-posts-container .col .blog-card a:hover h1 {
  color: #0632AD;
}
.blog-posts-section .blog-posts-container .col .blog-card:first-child .blog-text .about-blog {
  width: 90%;
}
.blog-posts-section .blog-posts-container .gen-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, auto));
  justify-content: center;
  align-items: start;
  -moz-column-gap: 25px;
       column-gap: 25px;
  padding-left: 0;
  row-gap: 30px;
  margin-top: 1.5em;
}
.blog-posts-section .blog-posts-container .gen-col .blog-img {
  position: relative;
  height: 300px !important;
}
.blog-posts-section .blog-posts-container .gen-col .blog-img img {
  width: 100%;
  max-width: 100%;
  height: 100% !important;
  min-height: 250px;
}

@media only screen and (max-width: 1100px) {
  .blog-posts-section .blog-posts-container .col {
    grid-template-columns: 1fr 0.6fr;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-img {
    position: relative;
    height: auto !important;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-img img {
    height: 350px;
    min-height: 250px;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-text {
    padding: 1em 0;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-text .small {
    color: #7B89A5;
    font-size: 13px;
    padding-bottom: 0.5em;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-text .small span {
    color: #202020;
    margin-right: 10px;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-text h1 a {
    font-size: 22px;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-text .about-blog {
    font-size: 14px;
  }
  .blog-posts-section .blog-posts-container .gen-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    justify-content: center;
    align-items: start;
    -moz-column-gap: 25px;
         column-gap: 25px;
    margin-top: 1.5em;
  }
  .blog-posts-section .blog-posts-container .gen-col .blog-img {
    position: relative;
  }
  .blog-posts-section .blog-posts-container .gen-col .blog-img img {
    width: 100%;
    max-width: 100%;
    height: 300px !important;
    min-height: 250px;
  }
}
@media only screen and (max-width: 1000px) {
  .blog-posts-section .blog-posts-container .col {
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-img {
    position: relative;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-img img {
    height: 350px;
    min-height: 250px;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-text {
    padding: 1em 0;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-text .small {
    color: #7B89A5;
    font-size: 13px;
    padding-bottom: 0.5em;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-text .small span {
    color: #202020;
    margin-right: 10px;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-text h1 a {
    font-size: 20px;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-text .about-blog {
    font-size: 14px;
  }
}
@media only screen and (max-width: 500px) {
  .blog-posts-section .blog-posts-container .col {
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-img {
    position: relative;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-img img {
    height: auto;
    min-height: 250px;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-text {
    padding: 1em 0;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-text .small {
    color: #7B89A5;
    font-size: 13px;
    padding-bottom: 0.5em;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-text .small span {
    color: #202020;
    margin-right: 10px;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-text h1 a {
    font-size: 20px;
  }
  .blog-posts-section .blog-posts-container .col .blog-card .blog-text .about-blog {
    font-size: 14px;
  }
  .blog-posts-section .blog-posts-container .gen-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    justify-content: center;
    align-items: start;
    -moz-column-gap: 25px;
         column-gap: 25px;
    margin-top: 1.5em;
  }
  .blog-posts-section .blog-posts-container .gen-col .blog-img {
    position: relative;
  }
  .blog-posts-section .blog-posts-container .gen-col .blog-img img {
    width: 100%;
    max-width: 100%;
    height: auto !important;
    min-height: 250px;
  }
}
/*********** Hero Section Styling ***************/
.hero-section {
  background-position: center;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: no-repeat;
  height: 45vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section .hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  flex-direction: column;
  height: 100%;
  color: #fff;
  text-align: center;
}
.hero-section .hero-container h1 {
  font-size: 50px;
  text-transform: uppercase;
}

/********* BLOG SECTION *************/
.procedure-container {
  width: 100%;
  max-width: 1300px;
}
.procedure-container .procedure-section {
  padding: 20px 0 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.procedure-container .procedure-section .procedure-inner-container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}
.procedure-container .procedure-section .procedure-inner-container .row {
  width: 100%;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 {
  padding-top: 20px;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .why-choose {
  background-color: #F1F2ED;
  padding: 30px 40px;
  border-radius: 12px;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .why-choose .head {
  display: flex;
  justify-content: start;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .why-choose .head svg {
  color: #FCD34D;
  font-size: 18px;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .why-choose .head h1 {
  font-size: 24px;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .why-choose .why-detail p {
  padding-top: 10px;
  font-size: 18px;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-head {
  padding: 20px 0 0px 0;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-head:first-child {
  padding-top: 20px;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-head h1 {
  font-size: 25px;
  font-weight: 700;
  color: #252939;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .pro-img {
  width: 100%;
  margin: 16px 0 8px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, auto));
  justify-items: center;
  align-items: center;
  height: 320px;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .pro-img img {
  width: 100%;
  height: inherit;
  border: 1px solid #d9d9d9;
  -o-object-fit: cover;
     object-fit: cover;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-text {
  padding-top: 10px;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-text P {
  font-size: 18px;
  color: #000000;
  font-weight: 400;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-text P span {
  font-weight: 500;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-text P a {
  color: #0632AD;
  text-decoration: none;
  font-weight: 400;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-text ul,
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-text ol {
  padding: 10px 15px 0px 12px;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-text ul li,
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-text ol li {
  padding: 5px 8px;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .video-container {
  display: flex;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .before-after {
  padding-top: 30px !important;
  display: flex;
  justify-content: center;
  padding-left: 10px !important;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .before-after img {
  width: 100%;
  max-width: 350px !important;
  margin-right: 20px;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-img {
  padding: 60px 0 20px 0;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.procedure-container .procedure-section .procedure-inner-container .row .col-1 .row-container {
  padding: 10px 0;
}

.expanded-review {
  background-color: #E7F6FF;
  border-radius: 12px;
  padding: 20px 26px;
  margin-top: 26px;
  cursor: pointer;
}
.expanded-review .ex-review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
}
.expanded-review .ex-review-head .name-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.expanded-review .ex-review-head .name-box h1 {
  font-size: 22px;
  font-weight: 600;
}
.expanded-review .ex-review-head .name-box img {
  width: 100%;
  max-width: 26px;
}
.expanded-review .ex-review-head .name-box .rev-stars {
  display: flex;
  align-items: center;
  justify-content: center;
}
.expanded-review .ex-review-head .name-box .rev-stars svg {
  color: #FF9C28;
  font-size: 20px;
}
.expanded-review .ex-review-head .goggle {
  cursor: pointer;
}
.expanded-review .ex-review-head .goggle img {
  width: 100%;
  max-width: 80px;
}
.expanded-review .review-description p {
  font-size: 18px;
}
.expanded-review .review-description p #more {
  display: none;
}
.expanded-review .review-description p .btn-more {
  padding-left: 4px;
  color: #0632AD;
  cursor: pointer;
}

.faq-container {
  margin-top: 40px;
  background-color: #F7F7F8;
  padding: 40px 30px;
  border-top: 2px solid #0632AD;
}
.faq-container .faq-head {
  padding-bottom: 20px;
}
.faq-container .faq-head h1 {
  font-size: 26px;
  font-weight: 700;
}
.faq-container .faq-outer-body {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  -moz-column-gap: 74px;
       column-gap: 74px;
  padding: 8px 0 10px 0;
}
.faq-container .faq-outer-body .faq-body {
  height: 100%;
}
.faq-container .faq-outer-body .faq-body .faq-question {
  padding-bottom: 4px;
}
.faq-container .faq-outer-body .faq-body .faq-question h1 {
  font-size: 20px;
  font-weight: 600;
}
.faq-container .faq-outer-body .faq-body .faq-answer p {
  font-size: 18px;
}

#mobile-review {
  display: none;
}

@media only screen and (max-width: 1300px) {
  .hero-section {
    height: 45vh;
  }
  .procedure-section .procedure-inner-container {
    padding: 0 25px;
  }
  .faq-container .faq-head h1 {
    font-size: 24px;
  }
  .faq-container .faq-outer-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, auto));
  }
  .faq-container .faq-outer-body .faq-body .faq-question h1 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1100px) {
  .hero-section {
    height: 35vh;
  }
  .hero-section .hero-container h1 {
    font-size: 40px;
    text-transform: uppercase;
    padding: 0 15px;
  }
  .procedure-section .procedure-inner-container .row .col-1 .procedure-text p {
    font-size: 16px !important;
  }
  .procedure-section .procedure-inner-container .row .col-1 .procedure-text ul,
  .procedure-section .procedure-inner-container .row .col-1 .procedure-text ol {
    padding: 10px 15px 10px 20px !important;
    font-size: 16px !important;
  }
  .procedure-section .procedure-inner-container .row .col-1 .procedure-head h1 {
    font-size: 22px !important;
  }
  .procedure-section .procedure-inner-container .row .col-1 .procedure-img {
    padding: 40px 0 !important;
  }
  .procedure-section .procedure-inner-container .row .col-1 .procedure-img img {
    max-width: 450px !important;
  }
}
@media only screen and (max-width: 1000px) {
  .hero-section {
    height: 28vh;
  }
  .hero-section .hero-container h1 {
    font-size: 35px;
    width: 100%;
  }
  .procedure-section .procedure-inner-container .row .col-1 .procedure-head:first-child {
    padding-top: 20px !important;
  }
  .procedure-section .procedure-inner-container .row .col-1 .procedure-text {
    padding-top: 8px !important;
  }
  .procedure-section .procedure-inner-container .row .col-1 .procedure-head {
    padding: 20px 0 0px 0 !important;
  }
  .procedure-section .procedure-inner-container .row .col-1 .procedure-head h1 {
    font-size: 20px !important;
  }
  .procedure-section .procedure-inner-container .row .col-1 .procedure-img {
    padding: 40px 0 25px 0 !important;
  }
  .procedure-section .procedure-inner-container .row .col-1 .procedure-img img {
    max-width: 450px !important;
    height: 100% !important;
  }
  .procedure-section .procedure-inner-container .row .col-1 .row-container {
    padding: 10px 0 !important;
  }
  .faq-container {
    padding: 30px 20px;
  }
  .faq-container .faq-head h1 {
    font-size: 24px;
  }
  .faq-container .faq-outer-body {
    padding-bottom: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, auto));
    row-gap: 20px;
  }
  .faq-container .faq-outer-body .faq-body .faq-question h1 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 700px) {
  #mobile-review {
    display: block;
  }
  .hero-section {
    height: 25vh;
  }
  .hero-section .hero-container {
    padding: 0 5px;
  }
  .hero-section .hero-container h1 {
    font-size: 30px;
  }
  .procedure-section {
    padding: 20px 0 0 0;
  }
  .procedure-section .procedure-inner-container {
    padding: 0 10px;
  }
  .procedure-section .procedure-inner-container .row .col-1 .why-choose {
    padding: 20px 30px;
  }
  .procedure-section .procedure-inner-container .row .col-1 .why-choose .head {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .procedure-section .procedure-inner-container .row .col-1 .why-choose .head svg {
    color: #FCD34D;
    font-size: 16px;
  }
  .procedure-section .procedure-inner-container .row .col-1 .why-choose .head h1 {
    font-size: 22px;
  }
  .procedure-section .procedure-inner-container .row .col-1 .video-container {
    flex-direction: column;
  }
  .procedure-section .procedure-inner-container .row .col-1 .video-container iframe {
    margin: 18px 0;
  }
  .faq-container {
    margin-top: 1.5em;
  }
  .faq-container .faq-head h1 {
    font-size: 24px;
  }
  .faq-container .faq-outer-body {
    row-gap: 20px !important;
    padding: 10px 0 50px 0;
  }
  .faq-container .faq-outer-body .faq-body {
    height: 100%;
    margin-bottom: 0;
  }
  .faq-container .faq-outer-body .faq-body .faq-question h1 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 500px) {
  .hero-section {
    height: 25vh;
  }
  .hero-section .hero-container {
    padding: 0 0px;
  }
  .hero-section .hero-container h1 {
    font-size: 24px;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
  iframe {
    height: 250px;
  }
  .procedure-container .procedure-section .procedure-inner-container .row .col-1 .why-choose {
    padding: 20px 16px;
  }
  .procedure-container .procedure-section .procedure-inner-container .row .col-1 .why-choose .head svg {
    color: #FCD34D;
    font-size: 20px;
  }
  .procedure-container .procedure-section .procedure-inner-container .row .col-1 .why-choose .head h1 {
    font-size: 20px;
  }
  .procedure-container .procedure-section .procedure-inner-container .row .col-1 .why-choose .why-detail p {
    padding-top: 10px;
    font-size: 16px;
  }
  .procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-text p {
    font-size: 16px !important;
  }
  .procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-text ul,
  .procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-text ol {
    padding: 10px 15px 10px 10px !important;
    font-size: 16px !important;
  }
  .procedure-container .procedure-section .procedure-inner-container .row .col-1 .pro-img {
    width: 100%;
    margin: 16px 0 8px 0;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .procedure-container .procedure-section .procedure-inner-container .row .col-1 .pro-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .procedure-container .procedure-section .procedure-inner-container .row .col-1 .before-after {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .procedure-container .procedure-section .procedure-inner-container .row .col-1 .before-after img {
    width: 100%;
    max-width: 300px !important;
    margin-bottom: 20px;
  }
  .procedure-container .procedure-section .procedure-inner-container .row .col-1 .procedure-head h1 {
    font-size: 20px !important;
  }
  .expanded-review {
    background-color: #E7F6FF;
    border-radius: 12px;
    padding: 20px 26px;
    margin-top: 26px;
    cursor: pointer;
  }
  .expanded-review .ex-review-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
  }
  .expanded-review .ex-review-head .name-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
  }
  .expanded-review .ex-review-head .name-box h1 {
    font-size: 20px;
    font-weight: 600;
  }
  .expanded-review .ex-review-head .name-box img {
    width: 100%;
    max-width: 22px;
  }
  .expanded-review .ex-review-head .name-box .rev-stars {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .expanded-review .ex-review-head .name-box .rev-stars svg {
    color: #FF9C28;
    font-size: 16px;
  }
  .expanded-review .ex-review-head .goggle {
    cursor: pointer;
    display: none;
  }
  .expanded-review .ex-review-head .goggle img {
    width: 100%;
    max-width: 60px;
  }
  .expanded-review .review-description p {
    font-size: 16px;
  }
  .faq-container .faq-head h1 {
    font-size: 24px;
  }
  .faq-container .faq-outer-body {
    padding-bottom: 0;
  }
  .faq-container .faq-outer-body .faq-body {
    width: 100%;
    max-width: 360px;
    padding-right: 40px;
  }
  .faq-container .faq-outer-body .faq-body .faq-question {
    padding-bottom: 6px;
  }
  .faq-container .faq-outer-body .faq-body .faq-answer p {
    font-size: 16px;
  }
}
.review-container .top-head {
  margin-bottom: 20px;
  text-align: center;
}
.review-container .top-head .review-head {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.review-container .top-head .review-head h1 {
  font-weight: 600;
  font-size: 45px;
  color: #000000;
}
.review-container .top-head .review-head svg {
  font-size: 30px;
  margin-right: 15px;
}
.review-container .top-head .review-para {
  margin-bottom: 15px;
}
.review-container .top-head .review-para p {
  font-size: 16px;
  width: 100%;
  max-width: 55%;
  margin: auto;
  font-weight: 400;
  font-size: 16px;
  color: #0A0A0A;
}
.review-container .review-box {
  width: 100%;
  max-width: 590px;
  margin: 30px auto;
}
.review-container .review-box .review-inner-box {
  text-align: center;
}
.review-container .review-box .review-inner-box .head {
  padding-bottom: 10px;
}
.review-container .review-box .review-inner-box .head h1 {
  font-weight: 500;
  font-size: 28px;
  color: #000000;
  margin-bottom: 8px;
  padding-top: 10px;
}
.review-container .review-box .review-inner-box .head p {
  font-size: 16px;
}
.review-container .review-box .review-inner-box .reviews {
  border-radius: 12px;
}
.review-container .review-box .review-inner-box .reviews:hover #losAngeles, .review-container .review-box .review-inner-box .reviews:hover #Encino {
  transform: scale(1.03);
}
.review-container .review-box .review-inner-box .reviews #losAngeles {
  background-image: url("/images/LosAngeles-review.jpg");
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  border-radius: 12px;
}
.review-container .review-box .review-inner-box .reviews #Encino {
  background-image: url("/images/Encino-review.jpg");
  background-position: center center;
  background-size: cover;
}
.review-container .review-box .review-inner-box .reviews .review-card {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 12px;
  width: 100%;
  padding: 25px 30px;
  margin: 20px auto;
  transition: all 0.5s;
}
.review-container .review-box .review-inner-box .reviews .review-card h1 {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  padding-bottom: 18px;
}
.review-container .review-box .review-inner-box .reviews .review-card .review-btn a button {
  width: 205px;
  height: 46px;
  cursor: pointer;
  border: 1px solid transparent;
  color: #0632AD;
  font-size: 14px;
  background-color: #fff;
  border-radius: 5px;
  text-transform: capitalize;
  font-weight: 500;
  transition: all 200ms ease-in-out;
}
.review-container .review-box .review-inner-box .reviews .review-card .review-btn a button:hover {
  background-color: #E8EEFF;
}
.review-container .review-box .review-inner-box .reviews .review-card .left-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
.review-container .review-box .review-inner-box .reviews .review-card .left-content .image {
  margin-right: 18px;
}
.review-container .review-box .review-inner-box .reviews .review-card .left-content .image img {
  width: 100%;
  max-width: 45px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.review-container .review-box .review-inner-box .reviews .review-card .left-content .descrip .office {
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}
.review-container .review-box .review-inner-box .reviews .review-card .left-content .descrip .total-reviews {
  font-weight: 400;
  font-size: 14px;
  color: #5B5B5B;
  padding: 2px 0;
}
.review-container .review-box .review-inner-box .reviews .review-card .left-content .descrip .more-review-btn a {
  font-weight: 400;
  font-size: 15px;
  color: #0632AD;
}
.review-container .review-box .review-inner-box .reviews .review-card .right-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.review-container .review-box .review-inner-box .reviews .review-card .right-content .rating p {
  font-size: 16px;
}
.review-container .review-box .review-inner-box .reviews .review-card .right-content .stars {
  margin: 0 18px;
}
.review-container .review-box .review-inner-box .reviews .review-card .right-content .stars svg {
  color: #DA7C25;
  font-size: 18px;
}
.review-container .review-box .review-inner-box .reviews .review-card .right-content .link img {
  width: 100%;
  max-width: 20px;
  cursor: pointer;
}
.review-container .review-box .further-review-links {
  text-align: center;
  width: 100%;
  max-width: 807px;
  margin: 0 auto;
  border: 1px solid #BDBDBD;
  border-radius: 12px;
  padding-top: 20px;
}
.review-container .review-box .further-review-links h1 {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 18px;
}
.review-container .review-box .further-review-links .images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
}
.review-container .review-box .further-review-links .images .webpage {
  background-color: #DCD1FE;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.review-container .review-box .further-review-links .images .webpage a {
  display: flex;
}
.review-container .review-box .further-review-links .images .webpage a img {
  width: 100%;
}
.review-container .review-box .further-review-links .images .webpage:first-child a img {
  max-width: 90px;
}
.review-container .review-box .further-review-links .images .webpage:last-child {
  background-color: #E8EEFF;
}
.review-container .review-box .further-review-links .images .webpage:last-child a img {
  max-width: 110px;
}

@media only screen and (max-width: 1300px) {
  .review-container .top-head .review-head h1 {
    font-size: 40px;
  }
  .review-container .top-head .review-para p {
    font-size: 15px;
    max-width: 70%;
  }
  .review-container .top-head .review-btn a button {
    height: 60px;
  }
}
@media only screen and (max-width: 1100px) {
  .review-container {
    padding: 30px 0 40px 0;
  }
  .review-container .top-head .review-head h1 {
    font-size: 35px;
  }
  .review-container .top-head .review-head svg {
    font-size: 28px;
  }
  .review-container .top-head .review-btn a button {
    width: 230px;
    height: 60px;
  }
}
@media only screen and (max-width: 600px) {
  .review-container .top-head .review-head h1 {
    font-size: 35px;
  }
  .review-container .top-head .review-head svg {
    font-size: 28px;
  }
  .review-container .top-head .review-para p {
    font-size: 14px;
    max-width: 90%;
  }
  .review-container .top-head .review-btn a button {
    width: 90%;
    height: 60px;
  }
  .review-container .review-box {
    border: none;
    margin: 0px auto;
  }
  .review-container .review-box .review-inner-box .head h1 {
    font-size: 26px;
  }
  .review-container .review-box .review-inner-box .head p {
    font-size: 15px;
  }
  .review-container .review-box .review-inner-box .reviews .review-card {
    width: 100%;
    padding: 25px 15px;
  }
  .review-container .review-box .review-inner-box .reviews .review-card .left-content .image {
    margin-right: 15px;
  }
  .review-container .review-box .review-inner-box .reviews .review-card .left-content .image img {
    max-width: 40px;
  }
  .review-container .review-box .review-inner-box .reviews .review-card .left-content .descrip .office {
    font-size: 15px;
  }
  .review-container .review-box .review-inner-box .reviews .review-card .left-content .descrip .total-reviews {
    font-size: 13px;
  }
  .review-container .review-box .review-inner-box .reviews .review-card .left-content .descrip .more-review-btn a {
    font-size: 14px;
  }
  .review-container .review-box .review-inner-box .reviews .review-card .right-content .rating p {
    font-size: 15px;
  }
  .review-container .review-box .review-inner-box .reviews .review-card .right-content .stars {
    margin: 0 18px;
  }
  .review-container .review-box .review-inner-box .reviews .review-card .right-content .stars svg {
    color: #DA7C25;
    font-size: 16px;
  }
  .review-container .review-box .review-inner-box .reviews .review-card .right-content .link img {
    max-width: 18px;
  }
}
@media only screen and (max-width: 460px) {
  .review-container .top-head .review-head h1 {
    font-size: 30px;
  }
  .review-container .top-head .review-head svg {
    font-size: 25px;
  }
  .review-container .top-head .review-para p {
    font-size: 14px;
    max-width: 100%;
  }
  .review-container .review-box .review-inner-box .reviews .review-card {
    padding: 20px;
    width: 96%;
  }
  .review-container .review-box .review-inner-box .reviews .review-card h1 {
    font-size: 26px;
    padding-bottom: 14px;
  }
  .review-container .review-box .review-inner-box .reviews .review-card .review-btn a button {
    width: 180px;
    height: 46px;
  }
  .review-container .review-box .review-inner-box .reviews .review-card .review-btn a button:hover {
    background-color: #E8EEFF;
  }
  .review-container .review-box .further-review-links {
    text-align: center;
    border: none;
    padding-top: 0;
  }
  .review-container .review-box .further-review-links h1 {
    font-size: 22px;
  }
  .review-container .review-box .further-review-links .images {
    flex-direction: column;
    padding-bottom: 20px;
  }
  .review-container .review-box .further-review-links .images .webpage {
    background-color: #DCD1FE;
    border-radius: 6px;
    padding: 12px;
    width: 96%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .review-container .review-box .further-review-links .images .webpage a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .review-container .review-box .further-review-links .images .webpage a img {
    width: 100%;
  }
  .review-container .review-box .further-review-links .images .webpage:first-child a img {
    max-width: 100px;
  }
  .review-container .review-box .further-review-links .images .webpage:last-child a img {
    max-width: 140px;
  }
}
.about-section {
  background-image: url(../images/about-hero.jpg);
  height: 40vh;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-section .about-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section .about-container .about-hero {
  background-color: #fff;
  padding: 10px 30px;
}
.about-section .about-container .about-hero h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  text-transform: uppercase;
  color: #0632AD;
}

.aboutus-section {
  padding: 2em 0;
}
.aboutus-section .aboutus-container .flex-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.aboutus-section .aboutus-container .flex-container .col .heading {
  margin: 20px 0 30px 0;
}
.aboutus-section .aboutus-container .flex-container .col .heading h1 {
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  color: #0B3E72;
}
.aboutus-section .aboutus-container .flex-container .col .info-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.aboutus-section .aboutus-container .flex-container .col .info-section .img img {
  width: 100%;
}
.aboutus-section .aboutus-container .flex-container .col .info-section .detail {
  padding: 10px 0 0 40px;
}
.aboutus-section .aboutus-container .flex-container .col .info-section .detail ul {
  font-weight: 400;
  font-size: 18px;
  color: #000;
  list-style-type: none;
}
.aboutus-section .aboutus-container .flex-container .col .info-section .detail ul li {
  position: relative;
  padding: 4px 0;
}
.aboutus-section .aboutus-container .flex-container .col .info-section .detail ul li::after {
  content: "";
  position: absolute;
  background-color: #000;
  width: 4px;
  height: 4px;
  border-radius: 50px;
  left: -12px;
  top: 15px;
}
.aboutus-section .aboutus-container .flex-container .col .lisa-section div {
  flex: 1;
}
.aboutus-section .aboutus-container .flex-container .col .lisa-section .lisa-img {
  width: 100%;
  padding-top: 20px;
  max-width: 380px;
}
.aboutus-section .aboutus-container .flex-container .col .lisa-section .lisa-img img {
  width: 100%;
}
.aboutus-section .aboutus-container .flex-container .col .lisa-section .lisa-detail h3 {
  padding-top: 10px;
  padding-bottom: 8px;
  font-weight: 600;
  font-size: 20px;
}
.aboutus-section .aboutus-container .flex-container .col .lisa-section .lisa-detail p {
  font-weight: 400;
  color: #000;
  font-size: 18px;
}
.aboutus-section .aboutus-container .flex-container .col .about-lisa {
  padding: 0 0;
}
.aboutus-section .aboutus-container .flex-container .col .about-lisa img {
  margin: 20px 0;
}
.aboutus-section .aboutus-container .flex-container .col .about-lisa .top-head {
  font-size: 28px;
  padding-top: 50px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
}
.aboutus-section .aboutus-container .flex-container .col .about-lisa .top-head::after {
  position: absolute;
  content: "";
  background-color: #0632AD;
  width: 100px;
  height: 2px;
  left: 0;
  bottom: 0;
}
.aboutus-section .aboutus-container .flex-container .col .about-lisa .sub-head {
  font-weight: 600;
  margin: 20px 0 10px 0;
}
.aboutus-section .aboutus-container .flex-container .col .about-lisa .head {
  padding-top: 30px;
  padding-bottom: 8px;
  font-weight: 700;
  font-size: 22px;
}
.aboutus-section .aboutus-container .flex-container .col .about-lisa ul {
  font-weight: 400;
  font-size: 18px;
  margin-left: 20px;
  padding: 10px 0;
  color: #000;
  list-style-type: none;
}
.aboutus-section .aboutus-container .flex-container .col .about-lisa ul li {
  position: relative;
  padding: 4px 0;
}
.aboutus-section .aboutus-container .flex-container .col .about-lisa ul li::after {
  content: "";
  position: absolute;
  background-color: #000;
  width: 5px;
  height: 5px;
  border-radius: 50px;
  left: -12px;
  top: 15px;
}
.aboutus-section .aboutus-container .flex-container .col .about-lisa .mob {
  display: none;
}
.aboutus-section .aboutus-container .more-details {
  padding: 40px 20px;
}
.aboutus-section .aboutus-container .more-details p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #000;
}
.aboutus-section .aboutus-container .more-details p span {
  font-weight: bold;
}

.experience-section {
  position: relative;
  padding-bottom: 40px;
}
.experience-section::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  top: -30px;
  left: 0;
}
.experience-section .head {
  padding-bottom: 20px;
  text-align: center;
}
.experience-section .head h1 {
  font-size: 30px;
  font-weight: 500;
}
.experience-section .experience-container {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, auto));
  row-gap: 40px;
}
.experience-section .experience-container .card {
  text-align: center;
}
.experience-section .experience-container .card h4 {
  font-weight: 500;
  padding: 8px 0;
}
.experience-section .experience-container .card img {
  max-width: 60px;
}

.container {
  position: relative;
}
.container::after {
  content: "";
  position: absolute;
  background-color: #BBBBBB;
  width: 98%;
  height: 1px;
  top: -30px;
  left: 5px;
}
.container h1 {
  font-size: 25px;
  font-weight: 500;
  padding: 0 0 20px 10px;
}
.container .inner-faq-container {
  width: 100%;
  max-width: 80rem;
  padding-left: 10px;
}
.container .inner-faq-container .accordian {
  width: 100%;
  max-width: 1200px;
  display: block;
}
.container .inner-faq-container .accordian .card {
  margin-bottom: 20px;
  background: #FFFFFF;
  border: 1px solid #CFCFCF;
}
.container .inner-faq-container .accordian .card .card-header {
  padding: 15px 25px;
}
.container .inner-faq-container .accordian .card .card-header h3 {
  cursor: pointer;
  color: #000;
  position: relative;
  font-weight: 500;
  font-size: 16px;
}
.container .inner-faq-container .accordian .card .card-header h3 span {
  position: absolute;
  right: 0;
  top: 0px;
  font-size: 15px;
}
.container .inner-faq-container .accordian .card .card-body {
  padding: 0 25px 15px 25px;
  display: none;
}
.container .inner-faq-container .accordian .card .card-body p {
  font-size: 16px;
  font-weight: 400;
}
.container .inner-faq-container .accordian .card:nth-child(1) .card-body {
  display: block;
}

@media only screen and (max-width: 1330px) {
  .about-section {
    height: 35vh;
  }
  .about-section .about-container .about-hero h1 {
    font-size: 50px;
  }
  .about-section .more-details {
    padding: auto 20px;
  }
  .aboutus-section {
    padding: 2em 20px;
  }
  .aboutus-section .aboutus-container .flex-container .col .heading {
    margin: 20px 0 30px 0;
  }
  .aboutus-section .aboutus-container .flex-container .col .heading h1 {
    font-size: 30px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .lisa-detail {
    margin-top: 0;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .lisa-img {
    width: 100%;
    padding-top: 0;
    padding-right: 20px;
    max-width: 280px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .lisa-img img {
    width: 100%;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .large {
    display: none;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa .head {
    font-size: 28px;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa img {
    width: 100%;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa ul {
    font-weight: 400;
    font-size: 16px;
    margin-left: 20px;
    padding: 10px 0;
    color: #000000;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa .mob {
    display: block;
  }
  .aboutus-section .aboutus-container .flex-container .info-section .img {
    width: 100%;
    display: inline-block;
  }
  .aboutus-section .aboutus-container .flex-container .info-section .img img {
    width: 100%;
    max-width: 100%;
  }
  .aboutus-section .aboutus-container .flex-container .info-section .detail {
    padding: 10px 0 0 30px;
  }
  .aboutus-section .aboutus-container .flex-container .info-section .detail ul {
    font-size: 16px;
  }
  .aboutus-section .aboutus-container .flex-container .info-section .detail ul li {
    padding: 2px 0;
  }
  .aboutus-section .aboutus-container .flex-container .info-section .lisa-detail {
    padding: 0 !important;
    margin-top: 20px;
  }
  .aboutus-section .aboutus-container .flex-container .info-section .lisa-detail p {
    font-size: 16px !important;
  }
  .aboutus-section .more-details {
    padding: 30px 0 !important;
  }
  .aboutus-section .more-details p {
    font-size: 18px !important;
  }
  .experience-section::after {
    width: 95%;
    top: -15px;
    left: 20px;
  }
  .experience-section .head {
    text-align: center;
  }
  .experience-section .head h1 {
    font-size: 28px;
  }
  .experience-section .experience-container {
    width: 100%;
    max-width: 100%;
  }
  .experience-section .experience-container .card {
    text-align: center;
  }
  .experience-section .experience-container .card img {
    max-width: 60px;
  }
}
@media only screen and (max-width: 1200px) {
  .aboutus-section {
    padding: 2em 20px;
  }
  .aboutus-section .aboutus-container .flex-container .col {
    width: 100%;
  }
  .aboutus-section .aboutus-container .flex-container .col .heading {
    margin: 20px 0 30px 0;
  }
  .aboutus-section .aboutus-container .flex-container .col .heading h1 {
    font-size: 30px;
  }
  .aboutus-section .aboutus-container .flex-container .col .lisa-section .lisa-img {
    width: 100%;
  }
  .aboutus-section .aboutus-container .flex-container .col .lisa-section .lisa-img img {
    width: 100%;
    max-width: 100% !important;
  }
  .aboutus-section .aboutus-container .flex-container .col .lisa-section .large {
    padding-top: 10px;
    display: block;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .img {
    width: auto;
    display: inline-block;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .img img {
    width: 100%;
    max-width: 320px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail {
    padding: 10px 0 0 30px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail ul {
    font-size: 18px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail ul li {
    padding: 4px 0;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .lisa-detail p {
    font-size: 16px;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa {
    padding: 0 !important;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa .head {
    font-size: 18px;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa ul {
    font-weight: 400;
    font-size: 16px;
    margin-left: 20px;
    padding: 10px 0;
    color: #000;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa .mob {
    display: none;
  }
  .aboutus-section .aboutus-container .flex-container #col-2 {
    display: none;
  }
  .experience-section::after {
    width: 95%;
    top: -15px;
    left: 20px;
  }
  .experience-section .head {
    text-align: center;
  }
  .experience-section .head h1 {
    font-size: 28px;
  }
  .experience-section .experience-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    width: 100%;
    max-width: 100%;
  }
  .experience-section .experience-container .card {
    text-align: center;
  }
  .experience-section .experience-container .card img {
    max-width: 60px;
  }
}
@media only screen and (max-width: 1100px) {
  .about-section {
    height: 30vh;
  }
  .about-section .about-container .about-hero h1 {
    font-size: 45px;
  }
  .aboutus-section {
    padding: 2em 20px;
  }
  .aboutus-section .aboutus-container .flex-container .col .heading {
    margin: 20px 0 30px 0;
  }
  .aboutus-section .aboutus-container .flex-container .col .heading h1 {
    font-size: 28px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .img {
    width: auto;
    display: inline-block;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .img img {
    width: 100%;
    max-width: 330px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail {
    padding: 10px 0 0 30px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail ul {
    font-size: 17px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail ul li {
    padding: 4px 0;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .lisa-detail p {
    font-size: 16px;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa .head {
    font-size: 18px;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa ul {
    font-weight: 400;
    font-size: 16px;
    margin-left: 20px;
    padding: 10px 0;
    color: #000;
  }
  .aboutus-section .aboutus-container .more-details p {
    font-size: 16px !important;
  }
}
@media only screen and (max-width: 1000px) {
  .about-section {
    height: 25vh;
  }
  .about-section .about-container .about-hero h1 {
    font-size: 40px;
  }
  .aboutus-section {
    padding: 2em 20px;
  }
  .aboutus-section .aboutus-container .flex-container .col .heading {
    margin: 20px 0 30px 0;
  }
  .aboutus-section .aboutus-container .flex-container .col .heading h1 {
    font-size: 28px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .img img {
    width: 100%;
    max-width: 100%;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .large {
    display: none;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail ul {
    font-size: 16px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail ul li {
    padding: 4px 0;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .lisa-detail p {
    font-size: 16px;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa .top-head {
    padding-top: 30px;
    font-size: 24px;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa .head {
    font-size: 18px;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa ul {
    font-weight: 400;
    font-size: 16px;
    margin-left: 20px;
    padding: 10px 0;
    color: #000;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa .mob {
    display: block;
  }
  .aboutus-section .aboutus-container .more-details p {
    font-size: 15px;
  }
  .experience-section::after {
    width: 95%;
    top: -15px;
    left: 20px;
  }
  .experience-section .head {
    text-align: center;
  }
  .experience-section .head h1 {
    font-size: 25px;
  }
  .experience-section .experience-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    width: 100%;
    max-width: 100%;
  }
  .experience-section .experience-container .card {
    text-align: center;
  }
  .experience-section .experience-container .card img {
    max-width: 60px;
  }
  .experience-section .experience-container .card h4 {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) {
  .aboutus-section {
    padding: 2em 20px;
  }
  .aboutus-section .aboutus-container .flex-container .col .heading {
    margin: 20px 0 30px 0;
  }
  .aboutus-section .aboutus-container .flex-container .col .heading h1 {
    font-size: 28px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .img {
    width: auto;
    display: inline-block;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .img img {
    width: 100%;
    max-width: 350px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail {
    padding: 0px 0 0 30px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail ul {
    font-size: 15px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail ul li {
    padding: 3px 0;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail ul li::after {
    content: "";
    position: absolute;
    background-color: #000;
    width: 3px;
    height: 3px;
    border-radius: 50px;
    left: -12px;
    top: 11px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .lisa-detail p {
    font-size: 16px;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa .head {
    font-size: 18px;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa ul {
    font-weight: 400;
    font-size: 16px;
    margin-left: 20px;
    padding: 10px 0;
    color: #000;
  }
  .aboutus-section .aboutus-container .more-details p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 800px) {
  .aboutus-section {
    padding: 1.5em 20px;
  }
  .aboutus-section .aboutus-container .flex-container .col .heading {
    margin: 20px 0 30px 0;
  }
  .aboutus-section .aboutus-container .flex-container .col .heading h1 {
    font-size: 25px;
  }
  .aboutus-section .aboutus-container .flex-container .col .lisa-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  .aboutus-section .aboutus-container .flex-container .col .lisa-section .lisa-detail {
    margin-top: 20px;
  }
  .aboutus-section .aboutus-container .flex-container .col .lisa-section .lisa-img {
    width: 100%;
    padding-top: 0;
    padding-right: 20px;
  }
  .aboutus-section .aboutus-container .flex-container .col .lisa-section .lisa-img img {
    width: 100%;
    max-width: 100%;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail {
    padding: 0px 0 0 30px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail ul {
    font-size: 14px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail ul li {
    padding: 2px 0;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .lisa-detail p {
    font-size: 16px;
  }
  .aboutus-section .aboutus-container .more-details p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 700px) {
  .about-section {
    background-position: left center;
  }
  .about-section .about-container .about-hero h1 {
    font-size: 42px;
  }
  .aboutus-section {
    padding: 1.5em 20px;
  }
  .aboutus-section .aboutus-container .flex-container .col .heading {
    margin: 20px 0 30px 0;
  }
  .aboutus-section .aboutus-container .flex-container .col .heading h1 {
    font-size: 22px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section {
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .img {
    width: auto;
    display: inline-block;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .img img {
    width: 100%;
    max-width: 300px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail {
    padding: 10px 0 0 10px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail ul {
    font-size: 16px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail ul li {
    padding: 3px 0;
  }
  .aboutus-section .aboutus-container .more-details p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 500px) {
  .about-section {
    height: 30vh;
    background-position: left center;
  }
  .about-section .about-container .about-hero {
    padding: 0;
  }
  .about-section .about-container .about-hero h1 {
    padding: 10px 20px;
    font-size: 26px;
  }
  .aboutus-section {
    padding: 1.5em 20px;
  }
  .aboutus-section .aboutus-container .flex-container .col .heading {
    margin: 10px 0 20px 0;
  }
  .aboutus-section .aboutus-container .flex-container .col .heading h1 {
    font-size: 22px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section {
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .img {
    width: auto;
    display: inline-block;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .img img {
    width: 100%;
    max-width: 300px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .lisa-detail p {
    color: #000;
    font-size: 16px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail {
    padding: 10px 0 0 10px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail ul {
    font-size: 16px;
  }
  .aboutus-section .aboutus-container .flex-container .col .info-section .detail ul li {
    padding: 2px 0;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa .head {
    font-size: 18px;
  }
  .aboutus-section .aboutus-container .flex-container .col .about-lisa ul {
    font-weight: 400;
    font-size: 16px;
    margin-left: 20px;
    padding: 10px 0;
    color: #000;
  }
  .aboutus-section .aboutus-container .more-details p {
    color: #000;
    font-size: 16px;
  }
  .experience-section::after {
    width: 95%;
    top: -20px;
    left: 10px;
  }
  .experience-section .head {
    text-align: center;
  }
  .experience-section .head h1 {
    font-size: 20px;
  }
  .experience-section .experience-container {
    row-gap: 40px;
  }
  .experience-section .experience-container .card {
    text-align: center;
  }
  .experience-section .experience-container .card img {
    max-width: 60px;
  }
  .experience-section .experience-container .card h4 {
    font-size: 15px;
  }
}
.pet-hero-container {
  height: 54vh;
  background-image: url("/images/pet-hero.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.pet-hero-container .pet-hero-section {
  height: 100%;
  display: flex;
  align-items: center;
}
.pet-hero-container .pet-hero-section h1 {
  border-radius: 25px;
  border: 1px solid #FFF;
  background: rgba(0, 0, 0, 0.37);
  padding: 16px 36px;
  color: #FFF;
  font-size: 48px;
  font-weight: 700;
  text-transform: capitalize;
}
.pet-hero-container .pet-hero-section h1 span {
  color: #82EFCE;
}

.pet-description {
  background-color: #F0F9FF;
  padding: 50px 0;
}
.pet-description .pet-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pet-description .pet-section .top-head {
  text-align: center;
}
.pet-description .pet-section .top-head h1 {
  color: #16171B;
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  padding-bottom: 8px;
}
.pet-description .pet-section .top-head h1 span {
  color: #0082F8;
}
.pet-description .pet-section .top-head p {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
}
.pet-description .pet-section img {
  width: 100%;
  text-align: center;
  padding: 32px 20px 0 20px;
  max-width: 1000px;
  margin: auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#appointment-form {
  background-color: #fff;
  border: 1px solid #FAFAFC;
  border-radius: 8px;
  width: 100%;
  z-index: 1;
  position: relative;
  margin: -80px auto 0 auto;
  box-shadow: 0px 2px 5px rgba(173, 173, 173, 0.3098039216);
}
#appointment-form .form-container {
  padding: 25px 30px;
}
#appointment-form .form-container .form-head {
  padding-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
}
#appointment-form .form-container form {
  display: flex;
  justify-content: start;
  align-items: center;
}
#appointment-form .form-container form .inputs {
  padding: 15px 10px;
  width: 100%;
}
#appointment-form .form-container form .inputs:first-child {
  padding-left: 0;
}
#appointment-form .form-container form .inputs input {
  width: 100%;
  height: 54px;
  border-radius: 7px;
  padding: 0 15px;
  background-color: transparent;
  outline: none;
  border: 1px solid #ADADAD;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}
#appointment-form .form-container form .inputs input::-moz-placeholder {
  font-size: 14px;
}
#appointment-form .form-container form .inputs input::placeholder {
  font-size: 14px;
}
#appointment-form .form-container form .inputs:focus-within input {
  border-color: #0632AD;
}
#appointment-form .form-container .btn-submit {
  display: flex;
  justify-content: center;
  margin-left: -30px;
}
#appointment-form .form-container .btn-submit button {
  width: 100%;
  max-width: 70%;
  height: 50px;
  background-color: #0632AD;
  border: none;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#appointment-form .form-container .btn-submit button:hover {
  background-color: #2350cd;
}

.flex-pet-container {
  background-color: #105A9E;
  padding: 50px 20px;
  color: #fff;
}
.flex-pet-container .inner-container {
  max-width: 1300px;
}
.flex-pet-container .inner-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-pet-container .inner-flex .pet-descrip h1 {
  font-size: 36px;
  font-weight: 700;
}
.flex-pet-container .inner-flex .pet-descrip p {
  font-size: 18px;
  padding-top: 10px;
  width: 100%;
  max-width: 800px;
}
.flex-pet-container .inner-flex .pet-images {
  width: 100%;
  max-width: 362px;
}
.flex-pet-container .inner-flex .pet-images img {
  width: 100%;
}

@media only screen and (max-width: 1300px) {
  .pet-hero-container {
    height: 48vh;
  }
  .pet-hero-container .pet-hero-section {
    padding: 0 20px;
  }
  .pet-hero-container .pet-hero-section h1 {
    padding: 16px 30px;
    font-size: 40px;
  }
  .pet-description {
    padding: 30px 0;
  }
  .pet-description .pet-section .top-head {
    text-align: center;
  }
  .pet-description .pet-section .top-head h1 {
    font-size: 32px;
    padding-bottom: 6px;
  }
  .pet-description .pet-section .top-head p {
    width: 100%;
    max-width: 800px;
    font-size: 16px;
  }
  .flex-pet-container {
    padding: 40px 20px;
  }
  .flex-pet-container .inner-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .flex-pet-container .inner-flex .pet-descrip h1 {
    font-size: 32px;
  }
  .flex-pet-container .inner-flex .pet-descrip p {
    font-size: 18px;
    padding-top: 10px;
    max-width: 750px;
  }
  .flex-pet-container .inner-flex .pet-images {
    width: 100%;
    max-width: 342px;
  }
}
@media only screen and (max-width: 840px) {
  .pet-hero-container {
    height: 32vh;
  }
  .pet-hero-container .pet-hero-section h1 {
    padding: 16px 26px;
    font-size: 34px;
  }
  .pet-description {
    padding: 26px 0;
  }
  .pet-description .pet-section .top-head p {
    width: 100%;
    max-width: 900px;
  }
  .flex-pet-container {
    padding: 30px 10px;
  }
  .flex-pet-container .inner-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .flex-pet-container .inner-flex .pet-descrip h1 {
    font-size: 32px;
  }
  .flex-pet-container .inner-flex .pet-descrip p {
    font-size: 16px;
    padding-top: 10px;
    max-width: 750px;
    padding-right: 10px;
  }
  .flex-pet-container .inner-flex .pet-images {
    width: 100%;
    max-width: 300px;
  }
}
@media only screen and (max-width: 600px) {
  .pet-hero-container {
    height: 32vh;
  }
  .pet-hero-container .pet-hero-section {
    padding: 0 10px;
  }
  .pet-hero-container .pet-hero-section h1 {
    padding: 12px 16px;
    font-size: 34px;
  }
  .pet-description {
    padding: 24px 0;
  }
  .pet-description .pet-section .top-head h1 {
    font-size: 28px;
  }
  .pet-description .pet-section .top-head p {
    width: 100%;
    padding: 0 10px;
    max-width: 100%;
  }
  .flex-pet-container {
    padding: 40px 10px;
  }
  .flex-pet-container .inner-flex {
    flex-direction: column;
  }
  .flex-pet-container .inner-flex .pet-descrip {
    margin-bottom: 22px;
  }
  .flex-pet-container .inner-flex .pet-descrip h1 {
    font-size: 28px;
  }
  .flex-pet-container .inner-flex .pet-descrip p {
    font-size: 16px;
    padding-top: 10px;
    max-width: 100%;
  }
  .flex-pet-container .inner-flex .pet-images {
    width: 100%;
    max-width: 300px;
  }
}
@media only screen and (max-width: 400px) {
  .pet-hero-container {
    height: 30vh;
  }
  .pet-hero-container .pet-hero-section {
    padding: 0 10px;
  }
  .pet-hero-container .pet-hero-section h1 {
    padding: 8px 14px;
    font-size: 32px;
  }
  .pet-description {
    padding: 24px 0;
  }
  .pet-description .pet-section .top-head h1 {
    font-size: 28px;
    padding-bottom: 4px;
  }
  .pet-description .pet-section .top-head p {
    width: 100%;
    padding: 0 10px;
    max-width: 100%;
  }
  .pet-description .pet-section img {
    padding: 20px 10px;
  }
  .flex-pet-container {
    padding: 40px 10px;
  }
  .flex-pet-container .inner-flex {
    flex-direction: column;
  }
  .flex-pet-container .inner-flex .pet-descrip {
    margin-bottom: 22px;
  }
  .flex-pet-container .inner-flex .pet-descrip h1 {
    font-size: 24px;
  }
  .flex-pet-container .inner-flex .pet-descrip p {
    font-size: 16px;
    padding-top: 10px;
    max-width: 100%;
  }
  .flex-pet-container .inner-flex .pet-images {
    width: 100%;
    max-width: 300px;
  }
}
.ba-head-container {
  width: 100%;
  background-color: #fff;
  padding: 20px 16px;
}
.ba-head-container .ba-hic {
  width: 100%;
  max-width: 1500px;
  height: 100%;
  margin: auto;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  position: relative;
}
.ba-head-container .ba-hic .bts {
  color: #000;
  font-size: 16px;
  display: flex;
  justify-content: start;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  padding: 12px;
  width: 50%;
}
.ba-head-container .ba-hic .bts svg {
  transform: rotate(90deg);
  width: 30px;
}
.ba-head-container .ba-hic .bts span {
  font-size: 18px;
  color: #000;
}
.ba-head-container .ba-hic .ba-hlc {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  flex: 1;
}
.ba-head-container .ba-hic .ba-hlc .logo {
  display: block;
  cursor: pointer;
  position: absolute;
  left: 47%;
  transform: translateX(-50%);
}
.ba-head-container .ba-hic .ba-hlc .logo img {
  width: 100%;
  max-width: 250px;
}
.ba-head-container .ba-hic .ba-hlc .nav-btn button {
  width: 170px;
  height: 50px;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 12px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.39, 0.575, 0.565, 1);
  font-size: 16px;
}
.ba-head-container .ba-hic .ba-hlc .nav-btn button svg {
  font-size: 16px;
  margin-right: 12px;
}
.ba-head-container .ba-hic .ba-hlc .nav-btn button:hover {
  background-color: #0632AD;
  color: #fff;
  border: 1px solid #0632AD;
}

.hero-section {
  height: 280px !important;
}
.hero-section .ba-hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  row-gap: 10px;
  padding: 0 14px;
}
.hero-section .ba-hero-container h1 {
  font-size: 48px;
  color: #142F6C;
}
.hero-section .ba-hero-container h1 span {
  color: #0C59DB;
}
.hero-section .ba-hero-container p {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  font-size: 18px;
  color: #170604;
  text-align: center;
}

.tabs {
  padding: 30px 10px 0;
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tabs::-webkit-scrollbar {
  display: none;
}
.tabs .tab {
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}
.tabs .tab button {
  padding: 6px 14px;
  font-size: 18px;
  border-radius: 8px;
  display: inline;
  outline: none;
  background: none;
  box-shadow: none;
  border: none;
  transition: all 150ms ease;
}
.tabs .tab button:hover {
  color: #0C59DB;
}
.tabs .tab:hover > button {
  color: #0C59DB;
  cursor: pointer;
}
.tabs .tab.active > button {
  color: #0C59DB;
}
.tabs .slider {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 90px;
  /* Default width, dynamically updated via JavaScript */
  height: 40px;
  background-color: rgba(115, 144, 227, 0.1882352941);
  border-radius: 5px;
  transition: all 0.3s ease;
  z-index: 2;
}

.tabs-content {
  position: relative;
}
.tabs-content #\32 ,
.tabs-content #\33 ,
.tabs-content #\35 ,
.tabs-content #\36  {
  width: 76% !important;
}
.tabs-content .tab-content {
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  display: none;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.tabs-content .tab-content.active {
  position: relative;
  display: block;
  opacity: 1;
  visibility: visible;
  animation: showTab 550ms ease normal;
}
.tabs-content .tab-content .head {
  padding: 40px 0 20px;
}
.tabs-content .tab-content .head h1 {
  font-size: 26px;
  color: #00174B;
  width: 100%;
  text-align: center;
}

@keyframes showTab {
  from {
    transform: translateX(-50%) translateY(60px);
    opacity: 0;
    visibility: hidden;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 470px));
  justify-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
  width: 100%;
  height: 100%;
}
.gallery-grid .wrapper {
  width: 440;
  height: 300px;
}
.gallery-grid .wrapper .slider .dragLine span {
  top: 40%;
}
.gallery-grid .wrapper .slider .dragLine::before {
  height: 136px;
}
.gallery-grid .wrapper .slider .dragLine::after {
  height: 215px;
}

.wrapper {
  overflow: hidden;
  position: relative;
  width: 480px;
  height: 400px;
  border-radius: 15px;
}
.wrapper .images {
  display: flex;
  height: 100%;
  width: 100%;
}
.wrapper .images .image .caption {
  background-color: rgba(10, 7, 6, 0.4039215686);
  color: #fff;
  padding: 8px 14px;
  font-size: 16px;
  position: absolute;
  bottom: 18px;
  border-radius: 7px;
}
.wrapper .images .image .caption.before {
  left: 16px;
}
.wrapper .images .image .caption.after {
  right: 16px;
}
.wrapper .images .image-after {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.wrapper .images .image-before {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-clip-path: inset(0 50% 0 0);
          clip-path: inset(0 50% 0 0);
  background-size: cover;
  transition: -webkit-clip-path 0.05s ease;
  transition: clip-path 0.05s ease;
  transition: clip-path 0.05s ease, -webkit-clip-path 0.05s ease;
}
.wrapper .slider {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
}
.wrapper .slider input[type=range] {
  width: 100%;
  height: 400px;
  cursor: e-resize;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  z-index: 80;
  position: absolute;
}
.wrapper .slider input[type=range]::-webkit-slider-thumb {
  height: 0;
  width: 0;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.wrapper .slider input[type=range]::-moz-range-thumb {
  height: 0;
  width: 0;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.wrapper .slider .dragLine {
  width: 2px;
  height: 25rem;
  position: absolute;
  left: 49.85%;
  cursor: e-resize;
  transition: all 0.05s ease;
}
.wrapper .slider .dragLine::before, .wrapper .slider .dragLine::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 175px;
  background-color: #fff;
}
.wrapper .slider .dragLine::before {
  top: 0;
}
.wrapper .slider .dragLine::after {
  bottom: 0;
}
.wrapper .slider .dragLine span {
  width: 3.2rem;
  height: 3.2rem;
  border: 3px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.wrapper .slider .dragLine span::before, .wrapper .slider .dragLine span::after {
  position: absolute;
  content: "";
  top: 50%;
  border: 0.8rem solid transparent;
  border-bottom-width: 0;
  border-right-width: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.wrapper .slider .dragLine span::before {
  border-left-color: #fff;
  left: 40%;
}
.wrapper .slider .dragLine span::after {
  border-top-color: #fff;
  left: 60%;
}

.ba-footer {
  background-color: #000;
  position: absolute;
  bottom: -120px;
  padding: 12px 8px;
  width: 100%;
  left: 0;
  text-align: center;
}
.ba-footer p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.533);
}

@media only screen and (max-width: 820px) {
  .ba-head-container {
    width: 100%;
    background-color: #fff;
    padding: 10px 16px 20px;
  }
  .ba-head-container .ba-hic {
    flex-direction: column;
    align-items: start;
    width: 100%;
    max-width: 100%;
  }
  .ba-head-container .ba-hic .bts {
    padding-left: 0;
  }
  .ba-head-container .ba-hic .ba-hlc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex: 1;
    padding-top: 8px;
  }
  .ba-head-container .ba-hic .ba-hlc .logo {
    position: static;
    transform: translateX(0);
  }
  .ba-head-container .ba-hic .ba-hlc .logo img {
    width: 100%;
    max-width: 220px;
  }
}
@media only screen and (max-width: 540px) {
  .ba-head-container {
    padding: 10px 14px 20px;
  }
  .ba-head-container .ba-hic {
    padding: 0;
  }
  .ba-head-container .ba-hic .bts {
    width: 100%;
    flex: 1;
  }
  .ba-head-container .ba-hic .bts svg {
    width: 22px;
  }
  .ba-head-container .ba-hic .bts span {
    font-size: 16px;
  }
  .ba-head-container .ba-hic .ba-hlc {
    -moz-column-gap: 12px;
         column-gap: 12px;
    padding-top: 0;
  }
  .ba-head-container .ba-hic .ba-hlc .logo {
    display: flex;
    align-items: center;
    margin-bottom: -6px;
  }
  .ba-head-container .ba-hic .ba-hlc .logo img {
    max-width: 180px;
  }
  .ba-head-container .ba-hic .ba-hlc .nav-btn button {
    padding: 0 10px;
    width: 140px;
    height: 50px;
  }
  .hero-section {
    height: 250px !important;
  }
  .hero-section .ba-hero-container h1 {
    font-size: 36px;
    text-align: center;
    line-height: 1.2;
  }
  .hero-section .ba-hero-container p {
    font-size: 16px;
  }
  #gradient {
    position: absolute;
    right: 0;
    top: 0;
    width: 120px;
    height: 80px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2666666667), #fff);
    z-index: 1;
    pointer-events: none;
  }
  .tabs-content .tab-content .head {
    padding: 30px 0 20px;
  }
  .wrapper {
    width: 300px;
    height: 250px;
  }
  .wrapper .images #brow-after {
    background-position-y: 0px !important;
  }
  .wrapper .slider .dragLine span {
    top: 34%;
  }
  .wrapper .slider .dragLine::before {
    height: 110px;
  }
  .wrapper .slider .dragLine::after {
    height: 240px;
  }
}
.inner-container .office-section {
  padding: 50px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inner-container .office-section .office-container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  /********** SIDE BAR CONTENT ****************/
}
.inner-container .office-section .office-container .row {
  width: 100%;
  max-width: 65%;
}
.inner-container .office-section .office-container .row h1 {
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 12px;
  color: #06154D;
}
.inner-container .office-section .office-container .row .col {
  overflow: hidden;
}
.inner-container .office-section .office-container .row .col a img {
  width: 100%;
  overflow: hidden;
  transition: all 250ms ease-in-out;
  transform: scale3d(1, 1, 1);
}
.inner-container .office-section .office-container .row .col a img:hover {
  transform: scale3d(1.06, 1.06, 1);
  transition: all 250ms ease-in-out;
}
.inner-container .office-section .office-container .row .inner-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  justify-items: space-between;
  align-items: center;
  margin: 8px 0;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.inner-container .office-section .office-container .row .inner-row .col a img {
  width: 100%;
}
.inner-container .office-section .office-container .col-2 {
  padding-left: 40px;
  padding-top: 20px;
  position: sticky;
  top: 130px;
}
.inner-container .office-section .office-container .col-2 .sidebar-content {
  padding-left: 20px;
  position: sticky;
  top: 0;
}
.inner-container .office-section .office-container .col-2 .sidebar-content .form-container {
  background-color: #FAFAFC;
  border: 1px solid #E0E0E0;
  outline: none;
  width: 380px;
}
.inner-container .office-section .office-container .col-2 .sidebar-content .form-container .form-body {
  width: 100%;
  padding: 15px 20px;
}
.inner-container .office-section .office-container .col-2 .sidebar-content .form-container .form-body .form-head {
  padding: 10px 0 15px 0;
  text-align: center;
}
.inner-container .office-section .office-container .col-2 .sidebar-content .form-container .form-body .form-head h2 {
  font-size: 18px;
  font-weight: 700;
}
.inner-container .office-section .office-container .col-2 .sidebar-content .form-container .form-body form {
  width: 100%;
}
.inner-container .office-section .office-container .col-2 .sidebar-content .form-container .form-body form .input-field {
  width: 100%;
  padding: 10px 0;
  overflow-x: hidden;
}
.inner-container .office-section .office-container .col-2 .sidebar-content .form-container .form-body form .input-field input,
.inner-container .office-section .office-container .col-2 .sidebar-content .form-container .form-body form .input-field textarea {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 7px;
  outline: none;
  transition: all 0.3s ease;
}
.inner-container .office-section .office-container .col-2 .sidebar-content .form-container .form-body form .input-field input:hover, .inner-container .office-section .office-container .col-2 .sidebar-content .form-container .form-body form .input-field input:focus,
.inner-container .office-section .office-container .col-2 .sidebar-content .form-container .form-body form .input-field textarea:hover,
.inner-container .office-section .office-container .col-2 .sidebar-content .form-container .form-body form .input-field textarea:focus {
  border-color: #0632AD;
}
.inner-container .office-section .office-container .col-2 .sidebar-content .form-container .form-body form .input-field textarea {
  padding-top: 14px;
  width: 100%;
  font-size: 14px;
  max-width: 100%;
  min-width: 100%;
}
.inner-container .office-section .office-container .col-2 .sidebar-content .form-container .form-body form .input-field button {
  width: 100%;
  height: 50px;
  background-color: #0632AD;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.inner-container .office-section .office-container .col-2 .sidebar-content .form-container .form-body form .input-field button:hover {
  background-color: #204ece;
}

.glightbox-mobile .goverlay {
  background: rgba(0, 0, 0, 0.9098039216) !important;
}

@media only screen and (max-width: 1300px) {
  .inner-container .office-section .office-container .row {
    width: 100%;
    max-width: 100%;
  }
  .inner-container .office-section .office-container .row h1 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1000px) {
  .inner-container .office-section .office-container {
    /********** SIDE BAR CONTENT ****************/
  }
  .inner-container .office-section .office-container .row h1 {
    font-size: 25px;
  }
  .inner-container .office-section .office-container .col-2 {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .inner-container .office-section .office-container .row {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .inner-container .office-section .office-container .row .col a img {
    max-width: 100%;
  }
  .inner-container .office-section .office-container .row .inner-row .col a img {
    max-width: 100%;
    height: 250px;
  }
}
.col-2 .sidebar-content .form-container {
  background-color: #FAFAFC;
  border: 1px solid #E0E0E0;
  outline: none;
  width: 380px;
  border-radius: 15px;
}
.col-2 .sidebar-content .form-container .form-body {
  width: 100%;
  padding: 15px 20px;
}
.col-2 .sidebar-content .form-container .form-body .form-head {
  padding: 10px 0 15px 0;
  text-align: center;
}
.col-2 .sidebar-content .form-container .form-body .form-head h2 {
  font-size: 18px;
  font-weight: 700;
}
.col-2 .sidebar-content .form-container .form-body form {
  width: 100%;
}
.col-2 .sidebar-content .form-container .form-body form .input-field {
  width: 100%;
  padding: 10px 0;
}
.col-2 .sidebar-content .form-container .form-body form .input-field input,
.col-2 .sidebar-content .form-container .form-body form .input-field textarea {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 7px;
  outline: none;
  font-size: 16px;
  transition: all 0.3s ease;
}
.col-2 .sidebar-content .form-container .form-body form .input-field input::-moz-placeholder, .col-2 .sidebar-content .form-container .form-body form .input-field textarea::-moz-placeholder {
  font-size: 15px;
}
.col-2 .sidebar-content .form-container .form-body form .input-field input::placeholder,
.col-2 .sidebar-content .form-container .form-body form .input-field textarea::placeholder {
  font-size: 15px;
}
.col-2 .sidebar-content .form-container .form-body form .input-field textarea {
  padding-top: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}
.col-2 .sidebar-content .form-container .form-body form .input-field input:hover,
.col-2 .sidebar-content .form-container .form-body form .input-field textarea:hover,
.col-2 .sidebar-content .form-container .form-body form .input-field input:focus,
.col-2 .sidebar-content .form-container .form-body form .input-field textarea:focus {
  border-color: #0632AD;
}
.col-2 .sidebar-content .form-container .form-body form .input-field button {
  width: 100%;
  height: 50px;
  background-color: #0632AD;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.col-2 .sidebar-content .form-container .form-body form .input-field button:hover {
  background-color: #2350cd;
}

.side-review .inner-container {
  padding: 0;
}
.side-review .reviews-head {
  padding-top: 3rem;
}
.side-review .reviews-head h2 {
  font-size: 24px;
  color: #0632AD;
  font-weight: 700;
}
.side-review .reviews-container {
  display: flex;
  justify-content: start;
  align-items: center;
  background-color: #FAFAFC;
  border: 1px solid #E7E7E7;
  border-radius: 15px;
  padding: 20px 25px;
  margin: 20px auto;
}
.side-review .reviews-container img {
  width: 100%;
  max-width: 47px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.side-review .reviews-container .review-text {
  display: flex;
  flex-direction: column;
  margin-left: 1.5rem;
}
.side-review .reviews-container .review-text h2 {
  font-weight: 600;
  font-size: 24px;
  color: #000000;
}
.side-review .reviews-container .review-text p {
  font-weight: 400;
  font-size: 14px;
  color: #5B5B5B;
  padding: 2px 0;
}
.side-review .reviews-container .review-text a {
  font-weight: 500;
  font-size: 15px;
  color: #0632AD;
}
.side-review .reviews-container .review-text .ratings {
  padding-top: 0.5rem;
  display: flex;
  justify-content: start;
  align-items: center;
}
.side-review .reviews-container .review-text .ratings p {
  font-size: 16px;
}
.side-review .reviews-container .review-text .ratings .stars {
  margin: 0 18px;
  display: flex;
  align-items: center;
}
.side-review .reviews-container .review-text .ratings .stars svg {
  color: #DA7C25;
  font-size: 18px;
}
.side-review .reviews-container .review-text .ratings .stars img {
  width: 100%;
  max-width: 20px;
  cursor: pointer;
  margin-left: 10px;
}

.hero-section #story-headline h1 {
  background-color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  color: #000;
  font-size: 50px;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: capitalize;
}

.counter-section .counter-head {
  text-align: center;
  margin: 10px 0 0 0;
  padding: 20px 0;
}
.counter-section .counter-head h1 {
  padding-bottom: 8px;
  font-size: 28px;
  text-transform: capitalize;
}
.counter-section .counter-head p {
  width: 100%;
  max-width: 860px;
  margin: auto;
  padding: 0 16px;
  font-size: 18px;
}
.counter-section .counter-container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 10px;
}
.counter-section .counter-container .card {
  text-align: center;
}
.counter-section .counter-container .card p {
  color: #0632AD;
  font-size: 32px;
  font-weight: 800;
}
.counter-section .counter-container .card h4 {
  font-size: 16px;
  font-weight: 400;
  margin-top: -4px;
}

.stories-container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding-top: 28px;
}
.stories-container .review-row {
  width: 100%;
  max-width: 760px;
}
.stories-container .review-row .review-cards {
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid #D3D3D3;
  background: #FFF;
  display: flex;
  padding: 27px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}
.stories-container .review-row .review-cards .reviews-head {
  display: flex;
  align-items: center;
  gap: 18px;
}
.stories-container .review-row .review-cards .reviews-head h2 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
.stories-container .review-row .review-cards .review-details p {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

#desktop-scard {
  display: none;
}

.reviews-btn {
  width: 100%;
  background-color: #E7F6FF;
  border-radius: 12px;
  padding: 26px 0;
  text-align: center;
  margin-top: 52px;
  border: 1px solid #c9dce9;
}
.reviews-btn h2 {
  font-size: 22px;
  color: #0632AD;
}

.pagination-container {
  padding: 30px 0 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
.pagination-container button {
  width: 50px;
  height: 50px;
  font-size: 18px;
  background: transparent;
  border: 1px solid #c1c1c1;
  cursor: pointer;
  transition: all 250ms ease;
  border-radius: 100%;
}
.pagination-container button.active {
  background-color: #0632AD;
  color: #fff;
  border: 1px solid transparent;
}
.pagination-container button:hover {
  background-color: #0632AD;
  color: #fff;
  border: 1px solid transparent;
}
.pagination-container button:first-child, .pagination-container button:last-child {
  font-size: 26px;
}

@media only screen and (max-width: 1300px) {
  .hero-section #story-headline h1 {
    padding: 16px 34px;
    font-size: 54px;
  }
}
@media only screen and (max-width: 900px) {
  .hero-section #story-headline h1 {
    padding: 16px 28px;
    font-size: 42px;
  }
  #desktop-scard {
    display: block;
  }
  .reviews-btn {
    margin-top: 20px;
  }
  .counter-section .counter-head h1 {
    font-size: 24px;
  }
  .counter-section .counter-head p {
    width: 100%;
    max-width: 100%;
    margin: auto;
  }
  .counter-section .counter-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    max-width: 400px;
    row-gap: 8px;
  }
  .stories-container .review-row .review-cards {
    padding: 27px 20px;
  }
}
@media only screen and (max-width: 750px) {
  .stories-container {
    flex-direction: column;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .stories-container .review-row .review-cards .reviews-head h2 {
    font-size: 18px;
  }
  .reviews-btn {
    padding: 20px 0;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 500px) {
  .hero-section #story-headline h1 {
    padding: 16px 14px;
    font-size: 34px;
  }
  .counter-section .counter-head {
    padding-bottom: 10px;
  }
  .counter-section .counter-head h1 {
    font-size: 24px;
  }
  .counter-section .counter-head p {
    font-size: 16px;
  }
  .counter-section .counter-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    max-width: 300px;
    row-gap: 8px;
  }
  .counter-section .counter-container .card {
    text-align: center;
  }
  .counter-section .counter-container .card p {
    color: #0632AD;
    font-size: 28px;
    font-weight: 800;
  }
  .counter-section .counter-container .card h4 {
    font-size: 14px;
    font-weight: 400;
    margin-top: -4px;
  }
  .stories-container .review-row {
    display: flex;
    row-gap: 20px;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .stories-container .review-row .review-cards {
    margin: 0 8px;
  }
  .pagination-container {
    padding: 20px 0 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 6px;
         column-gap: 6px;
  }
  .pagination-container button {
    width: 44px;
    height: 44px;
    font-size: 18px;
    background: transparent;
    border: 1px solid #c1c1c1;
    cursor: pointer;
    transition: all 250ms ease;
    border-radius: 100%;
  }
  .pagination-container button:first-child, .pagination-container button:last-child {
    font-size: 24px;
  }
}
.col-2 {
  padding-left: 40px;
  padding-top: 20px;
  position: sticky;
  top: 130px;
}
.col-2 .sidebar-content {
  padding-left: 20px;
  position: -webkit-sticky;
  top: 0;
}
.col-2 .sidebar-content #post {
  padding: 30px 0;
}
.col-2 .sidebar-content #post .post-container .post-head {
  padding-bottom: 30px;
  color: #0B3E72;
  display: block;
}
.col-2 .sidebar-content #post .post-container .post-head h1 {
  font-size: 24px;
  font-weight: 600;
}
.col-2 .sidebar-content #post .post-container .posts-card {
  border: 1px solid #E0E0E0;
  border-radius: 11px;
  width: 100%;
  max-width: 330px;
  margin-bottom: 30px;
}
.col-2 .sidebar-content #post .post-container .posts-card .post-img img {
  width: 100%;
  border-radius: 11px 11px 0 0;
}
.col-2 .sidebar-content #post .post-container .posts-card .post-title {
  text-align: center;
  padding: 15px 0;
  color: #000000;
}
.col-2 .sidebar-content #post .post-container .posts-card a {
  text-decoration: none;
  color: #000;
}
.col-2 .sidebar-content #post .post-container .posts-card h3 {
  font-size: 18px;
  padding: 0 20px;
  font-weight: 500;
  text-align: left;
}

#recentPost-slider {
  display: none;
}

.post-head {
  display: none;
}

@media only screen and (max-width: 1100px) {
  .col-2 {
    display: none;
  }
  /************** CAROUSAL SWIPER ****************/
  /****** RECENT POST SLIDER *******/
  .post-head {
    position: relative;
    margin: 0px 0 0px 0;
    display: block;
    padding-left: 20px;
    display: block;
  }
  .post-head h1 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
  }
  #recentPost-slider {
    display: block;
  }
  #mobile-review {
    position: relative;
    margin-bottom: 32px;
  }
  #mobile-review .reviews-head {
    padding-top: 12px !important;
    padding-bottom: 8px;
  }
  #mobile-review .reviews-head h2 {
    font-size: 20px !important;
    color: #000;
    padding-left: 10px;
    font-weight: 600;
  }
  #mobile-review .reviews-container {
    margin: 10px auto 20px auto !important;
    padding: 8px 10px !important;
  }
  #mobile-review .reviews-container .review-text h2 {
    font-size: 20px !important;
  }
  #mobile-review::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d7d7d7;
    top: -14px;
    left: 0;
  }
  .swiper {
    width: 100%;
    padding-bottom: 10px !important;
  }
  .swiper .swiper-wrapper {
    width: 100% !important;
  }
  .swiper .swiper-wrapper .post-silder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    margin: 20px 5px 0 5px;
    max-width: 32%;
  }
  .swiper .swiper-wrapper .post-silder .posts-card {
    border: 1px solid #E0E0E0;
    border-radius: 12px;
  }
  .swiper .swiper-wrapper .post-silder .posts-card .post-img {
    border-radius: 12px 12px 0 0;
  }
  .swiper .swiper-wrapper .post-silder .posts-card .post-img img {
    width: 100%;
    border-radius: 12px 12px 0 0;
  }
  .swiper .swiper-wrapper .post-silder .posts-card .post-title {
    text-align: center;
    padding: 15px 0;
    color: #221E1E;
  }
  .swiper .swiper-wrapper .post-silder .posts-card a {
    text-decoration: none;
    color: #000;
  }
  .swiper .swiper-wrapper .post-silder .posts-card h3 {
    font-size: 16px;
    padding: 0 20px;
    text-align: left;
  }
}
@media only screen and (max-width: 850px) {
  .swiper .swiper-wrapper .post-silder {
    max-width: 40%;
  }
}
@media only screen and (max-width: 700px) {
  .swiper .swiper-wrapper .post-silder {
    max-width: 90%;
  }
  .swiper .swiper-wrapper .post-silder .posts-card {
    width: 100%;
  }
}
/************ Footer Styling ***************/
#footer {
  background-color: #FAFAFC;
  overflow: hidden;
}
#footer .footer-container {
  padding: 50px 0;
}
#footer .footer-container .row {
  display: flex;
  justify-content: start;
  align-items: start;
}
#footer .footer-container .row .col-1 .footer-logo {
  display: inline-block;
  padding: 10px 0 40px 0;
}
#footer .footer-container .row .col-1 .footer-logo img {
  width: 250px;
  cursor: pointer;
}
#footer .footer-container .row .col-1 .social {
  padding-bottom: 30px;
  color: #0631AB;
}
#footer .footer-container .row .col-1 .social a {
  color: #0631AB;
}
#footer .footer-container .row .col-1 .social a svg {
  font-size: 20px;
  margin: 0 8px;
}
#footer .footer-container .row .col-1 .social a svg:first-child {
  padding-left: 0;
}
#footer .footer-container .row .col-1 p {
  line-height: 1.5em;
  font-size: 16px !important;
  color: #010101;
  opacity: 0.7;
  width: 70%;
}
#footer .footer-container .row .col {
  flex: 1;
}
#footer .footer-container .row .col .footer-head h2 {
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 30px;
}
#footer .footer-container .row .col .address {
  padding: 20px 0 0 0;
  line-height: 1.5em;
  width: 100%;
  font-size: 18px;
}
#footer .footer-container .row .col iframe {
  width: 100%;
}
#footer .footer-container .row .col-2 {
  padding-right: 50px;
  /* margin-left: -50px; */
}
#footer .footer-container .row .col-3 {
  margin-left: 50px;
  padding-right: 0;
}
#footer .footer-container .row .col-3 iframe {
  width: 100%;
}
#footer .copyright {
  background-color: #000;
  text-align: center;
}
#footer .copyright p {
  padding: 8px 0;
  font-size: 14px !important;
  color: #888888 !important;
}

@media only screen and (max-width: 1300px) {
  #footer {
    background-color: #FAFAFC;
    overflow: hidden;
  }
  #footer .footer-container {
    padding: 50px 0;
  }
  #footer .footer-container .row .col .footer-head h2 {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 15px;
  }
  #footer .footer-container .row .col-2 {
    margin-left: 0;
    padding-top: 20px;
  }
  #footer .footer-container .row .col-3 {
    margin-left: 0;
    padding-top: 20px;
  }
}
@media only screen and (max-width: 1100px) {
  #footer {
    background-color: #FAFAFC;
    overflow: hidden;
  }
  #footer .footer-container {
    padding: 50px 0;
  }
  #footer .footer-container .row .col .footer-head h2 {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 15px;
  }
  #footer .footer-container .row .col .address {
    padding: 10px 0 5px 0;
    font-size: 16px;
  }
  #footer .footer-container .row .col-1 p {
    padding-left: 0;
  }
  #footer .footer-container .row .col-2 iframe {
    max-width: 100%;
    width: 100%;
  }
}
@media only screen and (max-width: 1000px) {
  #footer .footer-container .row {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
  }
  #footer .footer-container .row .col-1 {
    width: 100%;
    text-align: center;
    padding-bottom: 18px;
  }
  #footer .footer-container .row .col-1 .footer-logo {
    padding: 10px 0 20px 0;
  }
  #footer .footer-container .row .col-1 .footer-logo img {
    width: 200px;
    cursor: pointer;
  }
  #footer .footer-container .row .col-1 .social {
    padding-bottom: 20px;
  }
  #footer .footer-container .row .col-1 p {
    padding-left: 0 !important;
    width: 100%;
    padding-right: 0 !important;
  }
  #footer .footer-container .row .col-2 {
    display: block;
    margin-left: 0;
    padding-left: 0;
    width: 80%;
    padding-right: 0;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 700px) {
  #footer .footer-container .row .col iframe {
    width: 100%;
    max-width: 100%;
  }
  #footer .footer-container .row .col .address {
    width: 100%;
  }
  #footer .footer-container .row .col-2 {
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  #footer .footer-container .row .col iframe {
    width: 100%;
    max-width: 100%;
  }
  #footer .footer-container .row .col-2 {
    width: 100%;
  }
  #footer .copyright p {
    padding-bottom: 76px;
  }
}/*# sourceMappingURL=main.css.map */