/*CUSTOM SCROLL BAR*/
*,
html {
  scroll-behavior: smooth;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  scrollbar-color: rgb(210, 210, 210) rgb(46, 54, 69) !important;
  scrollbar-width: thin !important;
  --white: #fff;
  --black: #131417;
  --primary: #e31e24;
  --primarylite: #fd242d;
  --gray: #6d7175;
  --dark: #002866;
  --darklite: #364256;
  --lite: #FAFAFA;
  --primaryfont: 'Roboto Condensed', sans-serif;
  --secondaryfont: 'Source Sans Pro', sans-serif;
}

::-webkit-scrollbar {
  height: 12px;
  width: 8px;
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: gray;
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: var(--dark);
}

/*DEFAULT*/
body {
  margin: 0;
  overflow-x: hidden !important;
  font-family: var(--primaryfont);
  background-color: var(--lite);
}

.title,
.sub-title {
  font-family: var(--secondaryfont);
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.textpop {
  font-size: clamp(1.5rem, 2.5vw, 1.4rem);
  font-weight: bold;
  color: var(--black-dark);
  letter-spacing: 5px;
}

.bg-testi {
  background: #c2dfe3;
}

.textpop span {
  display: inline-block;
  animation: pop 5s ease-in-out infinite;
}

.textpop span:nth-child(1) {
  animation-delay: 0.4s;
}

.textpop span:nth-child(2) {
  animation-delay: 0.5s;
}

.textpop span:nth-child(3) {
  animation-delay: 0.6s;
}

.textpop span:nth-child(4) {
  animation-delay: 0.7s;
}

.textpop span:nth-child(5) {
  animation-delay: 0.8s;
}

.textpop span:nth-child(6) {
  animation-delay: 0.9s;
}

.textpop span:nth-child(7) {
  animation-delay: 1s;
}

@keyframes pop {
  0% {
    transform: scale(1);
    /* opacity: 0; */
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

p,
h1 {
  color: var(--black);
}

h1 {
  color: var(--black);
  font-weight: 700;
}

fieldset {
  border: 0;
}

p {
  font-size: 18px;
}

.aboutText {
  font-size: 22px;
  margin: 2em 0;
  /* padding-left: 1em; */
  /* background-image: url("../images/dots.png"); */
}


em {
  font-style: normal;
  color: var(--primary);
}

.btn1,
.btn2 {
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 20px;
        margin: 10px 10px 10px 0;
  text-align: center;
  display: inline-block;
  border: 0;
}

.btn1 {
  background-color: var(--primary);
  color: var(--white);
}

.btn1:hover {
  background-color: var(--primarylite);
}

.btn2 {
  background-color: var(--dark);
  color: var(--white);
}

.btn2:hover {
  background-color: var(--darklite);
}


.button-pulse {
  animation: pulse 3s infinite 5s cubic-bezier(0.25, 0, 0, 1);
  box-shadow: 0 0 0 0 white;
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

.title_header {
  width: 100%;
  margin: 2vh auto;
  text-align: center;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: left;
}

.title_header section {
  width: 100%;
  text-align: left;
}

.title_header section p {
  font-weight: 200;
}

.title_header .title {
  font-size: 2em;
  color: var(--dark);
}

.title_header .sub-title {
  font-size: 1.5em;
  color: var(--gray);
}

.border-shape {
  background: var(--primary) none repeat scroll 0 0;
  color: #fff;
  display: block;
  height: 3px;
  left: 0;
  margin: 20px auto;
  position: relative;
  right: 0;
  text-align: center;
  top: 0;
  width: 80px;
}

.border-shape::before {
  background: var(--primary) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 1px;
  left: 80px;
  margin: 0 auto;
  position: absolute;
  text-align: center;
  top: 1px;
  width: 100%;
}

.border-shape::after {
  background: var(--primary) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 1px;
  margin: 0 auto;
  position: absolute;
  right: 80px;
  text-align: center;
  top: 1px;
  width: 100%;
}

.bg_overlay {
  position: absolute;
  top: 0;
  z-index: 1;
  background-color: rgba(1, 1, 1, 0.7);
  width: 100%;
  height: 100%;
}

:-moz-placeholder {
  opacity: 1 !important;
}

::-moz-placeholder {
  opacity: 1 !important;
}

.half-column {
  display: flex;
  align-items: Center;
}

@media (max-width:1180px) {
  .half-column {
    display: block;
  }
}

@media (max-width:720px) {
.section-headingg h3 {
    text-align: center;
    font-size: 30px!important;
  }
  .section-headingg h3:after, .section-headingg h3:before
 {
   
    width: 0%;
   
}
.bottom-right {
    padding: 10px!important;}
    .right-grid {
    display: block!important;}
  .btn1,
  .btn2 {
    padding: 10px 15px;
    margin: 10px 10px 10px 0;
  }
.main-grid {
    display: block!important;
        margin-bottom: 5em!important;
  }
  .title_header {
    width: 100%;
    display: block;
    text-align: center;
  }

  .title_header .title {
    font-size: 1.3em;
  }

  .title_header section {
    padding: 0rem 0 !important;
    text-align: center;
    margin: 0 auto !important;
  }
}

/*HEADER*/
header {
  width: 100%;
}

.header {
  width: 100%;
  position: relative;
  display: flex;
  align-items: Center;
}

.header section {
  width: 100%;
  overflow: hidden;
}

.header section:nth-child(1) {
  width: 30%;
}

.cross {
  background: var(--primary);
  display: inline-block;
  font-size: 2em;
  padding: .5em 2em;
  text-decoration: none;
  position: absolute;
  left: -5%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
}

.parallelogram {
  transform: skew(-20deg);
}

.skew-fix {
  display: inline-block;
  transform: skew(20deg);
}

.header .logo {
  filter: brightness(0) invert(1);
  padding: 1rem 2rem;
}

.top-tab {
  width: 100%;
  background-color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: Center;
  padding: 0.6rem 1rem;
  padding-left: 10rem;
}

.top-tab span {
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.top-tab span a {
  margin: 0 10px;
  color: var(--white);
  white-space: nowrap;
}

.top-tab span:nth-child(1) a .fa {
  margin: 0 5px;
}

@media (max-width:1120px) {
  .header section:nth-child(1) {
    display: none;
  }

  .cross {
    position: static;
  }

  .header .logo {
    width: 100%;
  }

  .top-tab {
    padding-left: 0rem;
  }

  .top-tab span:nth-child(1) {
    display: none;
  }

  .top-tab span:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: Center;
  }
}

/*NAV*/
.topnav {
  overflow: hidden;
  background-color: var(--white);
  padding-left: 10rem;
}

.topnav a {
  float: left;
  display: block;
  color: var(--dark);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 18px;
  margin: 5px 20px;
}

.active {
  color: var(--primary);
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 18px;
  border: none;
  outline: none;
  color: var(--dark);
  padding: 14px 16px;
  background-color: inherit;
  font-family: 'Roboto Condensed', sans-serif;
  ;
  margin: 5px 20px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-top: 2px solid var(--primary);
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  margin: 0;
}

.topnav a:hover,
.dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

#res_logo {
  display: none;
}

@media screen and (max-width: 1120px) {
  #res_logo {
    display: inline-block;
    width: 200px;
  }

  .topnav a:not(:first-child),
  .dropdown .dropbtn {
    display: none;
  }

  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 1120px) {
  .topnav {
    padding-left: 0;
  }

  .topnav.responsive {
    position: relative;
  }

  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
    margin: 0px;
  }

  .topnav.responsive #res_logo {
    max-width: 200px;
    min-width: 200px;
  }

  .topnav.responsive .dropdown {
    float: none;
  }

  .topnav.responsive .dropdown-content {
    position: relative;
  }

  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
    margin: 0px;
  }
}

/*BANNER*/
.banner {
  width: 100%;
  height: 88vh;
  background-image: url("../images/bnr.jpg");
  /* background-color: #fd242d; */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: Center;
  justify-content: left;
  padding: 3rem 0;
}

.whatsapp-query {
  background: #25D366;
  font-size: 45px;
  padding: 8px 10px;
  right: 10px;
  bottom: 10px;
  position: fixed;
  z-index: 100;
  color: #fff;
  border-radius: 10px;
}

.banner section {
  width: 100%;
  color: var(--white);
  padding: 2rem;
}

.banner section h3 {
  font-weight: 400;
  line-height: 0;
}

.banner section .title {
  font-size: 3.5em;
}
.blogCard{
  border: 1px solid #ddd;
    border-radius: 5px
}
#Gallery{
  padding: 5em 0;
}
.btn-pos{
    float: right;
}
.w-100 {
    width: 100% !important;
}
#Testimonials{
  padding: 5em 0;
}
#blogs{  padding: 5em 0;}
.testi-width{
  width: 50%;
}
 @media (max-width:720px) {
  .testi-width{
  width: 100%;
}
  .btn-pos{
    float: none;
}.appText {
    font-size: 18px!important;}
  .banner {
    height: 100%;
    display: block;
    padding: 8rem 0;
  }
  .galleryyy {
    width: 100%;
    height: 282px!important;}
#profile {
    padding: 5em 0 0em!important;
}
  .banner section {
    padding: 1rem;
  }

  .banner section .title {
    font-size: 2em;
  }

#Specializations{
  padding: 5em 0;
}.appointmentsec {
    padding: 1em!important;
    margin: 4em 0 2em!important;}
.cards .card article .desc {
    padding: 10px!important;
    font-size: 16px!important;
}
.cards .card {
    margin-bottom: 3em!important;}
 }
/*SECTION1*/
.section1 {
  width: 100%;
  margin: auto;
  position: relative;
  background-color: var(--white);
  /* background-image: url(../images/abt-bg.jpg); */
  color: var(--white);
  overflow: hidden;
  padding: 7rem 0;
}

.section1 section {
  width: 100%;
  position: relative;
  padding: 0 5rem;
  /* display:flex; */
  align-items: center;
  justify-content: center;
}

.section1 section .card {
  width: 100%;
  margin: 10px;
  padding: 2rem;
  border: 1px solid var(--dark);
  color: var(--black);
  border-radius: 10px;
  display: inline-block;
  transition: 0.5s;
  display: flex;
  align-items: center;
}

.section1 section .card span {
  padding: 0 2rem;
}

.section1 section .card:hover {
  background-color: var(--primary);
  color: var(--white);
}

.section1 section .active {
  background-color: var(--primary);
  color: var(--white);
}

.section1 section .card .fa {
  font-size: 2.3em;
}

.section1 section .card .title {
  line-height: 0;
}

.section1 .title_header section {
  justify-content: left;
}

@media (max-width:920px) {
  .section1 section {
    display: block;
    padding: 0 1rem;
  }

  .section1 section .card {
    margin: 10px 0;
  }
}

.background-circles {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255, 224, 130, 0.3) 5%, transparent 30%),
    radial-gradient(circle, rgba(255, 224, 130, 0.2) 10%, transparent 50%),
    radial-gradient(circle, rgba(255, 224, 130, 0.15) 20%, transparent 60%),
    radial-gradient(circle, rgba(255, 224, 130, 0.1) 30%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;margin-bottom: 0;
  /* max-width: 1300px; */
  /* width: 100%; */
  /* padding: 4rem 0; */
  position: relative;
  z-index: 2;
}
#Specializations, #profile {
    padding: 5em 0;
}
.image-container {
  position: relative;
  background-color: #00286629;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  display: flex;
  border: 5px solid #e31e24;
  justify-content: center;
  align-items: flex-end;
  padding-top: 2rem;
}

.character-img {
  width: 100%;
  height: 440px;
  width: 280px;
  object-fit: cover;
  border-radius: 24px;
  transform: translateY(-0%);
}

.overlay-panel {
  position: absolute;
  bottom: 15px;
  /* left: 30px; */
  width: 90%;
  background: #9db4c0;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.overlay-panel p {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.types {
  display: flex;
  gap: 0.5rem;
}

.types button {
  background: white;
  border: none;
  padding: 10px 16px;
  font-weight: bold;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.types button:hover {
  transform: translateY(-2px);
}

.right-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 1.2rem;
}

.orange-box,
.ribbon-box {
  border-radius: 10px;
  padding: 10px;
  /* aspect-ratio: 1/1; */
  display: flex;
  justify-content: center;
  align-items: center;
}

h3.section-headingg {
  text-align: center;
  font-size: 35px;
  font-weight: 600;
}

section.profile {
  padding: 5em 0;
}

p#client-name {
  font-size: x-large;
}

.section-headingg h3 {
  text-align: center;
  font-size: 45px;
  padding-bottom: 2em;
  font-weight: 700;
  color: #222;
  /* letter-spacing: 1px; */
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-headingg h3:after,
.section-headingg h3:before {
  content: " ";
  display: block;
  border-bottom: 1px solid #c50000;
  border-top: 1px solid #c50000;
  height: 5px;
  background-color: #f8f8f8;
  width: 100px;
  margin: 0 20px;
}

.profileheadding {
  font-size: 25px;
  color: #e31e24;
  font-weight: 600;
}

.orange-box {
  background-color: #e31e24;
}

.ribbon-box {
  background-color: #002866;
}

.ribbon-box img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.bottom-right {
  grid-column: span 2;
  background-color: #9db4c0;
  display: flex;
  padding: 1rem;
  border-radius: 10px;
  align-items: center;
}

/* .vertical-line { */
  /* width: 7px; */
  /* height: 60%; */
  /* background-color: white; */
  /* margin-right: 1.5rem; */
  /* border-radius: 2px; */
/* } */

.text-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.white {
  color: white;
}

.orange {
  color: #F57C00;
}

.text-content p {
  font-size: 15px;
  color: white;
}

.text-content p strong {
  color: #ffffff;
  font-weight: 600;
}

.abouthnh {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  transition: all 0.2s ease;
}

.abouthnh .bg_linkshnh {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  backdrop-filter: blur(5px);
  position: absolute;
}

.abouthnh .cardlogohnh {
  width: 40px;
  height: 40px;
  z-index: 9;
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/cardlogohnh_white.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 10px 7px;
  opacity: 0.9;
  transition: all 1s 0.2s ease;
  bottom: 0;
  right: 0;
}

.abouthnh .cardsocialhnh {
  opacity: 0;
  right: 0;
  bottom: 0;
}

.abouthnh .cardsocialhnh .cardiconhnh {
  width: 100%;
  height: 100%;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  display: flex;
  transition: all 0.2s ease, background-color 0.4s ease;
  opacity: 0;
  border-radius: 100%;
}

.abouthnh .cardsocialhnh.portfolio {
  transition: all 0.8s ease;
}

.abouthnh .cardsocialhnh.portfolio .cardiconhnh {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/link.svg);
}

.abouthnh .cardsocialhnh.dribbble {
  transition: all 0.3s ease;
}

.abouthnh .cardsocialhnh.dribbble .cardiconhnh {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/dribbble.svg);
}

.abouthnh .cardsocialhnh.linkedin {
  transition: all 0.8s ease;
}

.abouthnh .cardsocialhnh.linkedin .cardiconhnh {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/linkedin.svg);
}

.abouthnh:hover {
  width: 105px;
  height: 105px;
  transition: all 0.6s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}

.abouthnh:hover .cardlogohnh {
  opacity: 1;
  transition: all 0.6s ease;
}

.abouthnh:hover .cardsocialhnh {
  opacity: 1;
}

.abouthnh:hover .cardsocialhnh .cardiconhnh {
  opacity: 0.9;
}

.abouthnh:hover .cardsocialhnh:hover {
  background-size: 28px;
}

.abouthnh:hover .cardsocialhnh:hover .cardiconhnh {
  background-size: 65%;
  opacity: 1;
}

.abouthnh:hover .cardsocialhnh.portfolio {
  right: 0;
  bottom: calc(100% - 40px);
  transition: all 0.3s 0s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}

.abouthnh:hover .cardsocialhnh.portfolio .cardiconhnh:hover {
  background-color: #698fb7;
}

.abouthnh:hover .cardsocialhnh.dribbble {
  bottom: 45%;
  right: 45%;
  transition: all 0.3s 0.15s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}

.abouthnh:hover .cardsocialhnh.dribbble .cardiconhnh:hover {
  background-color: #ea4c89;
}

.abouthnh:hover .cardsocialhnh.linkedin {
  bottom: 0;
  right: calc(100% - 40px);
  transition: all 0.3s 0.25s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}

.abouthnh:hover .cardsocialhnh.linkedin .cardiconhnh:hover {
  background-color: #0077b5;
}

.cards {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards .card {
  height: 440px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 20px 30px -10px rgba(0, 0, 0, 0.1);
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  position: relative;
  transition: all 0.4s ease;
  /* margin: 0 10px; */
}

.cards .card:before {
  height: 190px;
  width: calc(100% + 100px);
  content: "";
  position: absolute;
  background-image: linear-gradient(to top, #e31e24 0%, #fff 100%);
  border-radius: 4px 4px 100% 100%;
  transition: all 0.4s ease-out;
  top: 0;
}

.cards .card .close {
  width: 18px;
  height: 18px;
  position: absolute;
  z-index: 2;
  cursor: pointer;
  background-image: url("https://rafaelalvucas.github.io/assets/cardiconhnhs/misc/cross.svg");
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 0;
  margin: 10px;
  padding: 5px;
  transition: all 0.2s ease;
}

.cards .card .close:hover {
  background-size: 100%;
  opacity: 0.8;
}

.cards .card .arrow {
  display: none;
}

.cards .card article {
  z-index: 1;
  display: flex;
  border-radius: 10px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.cards .card article h2 {
  color: #002866;
  margin: 0;
  padding: 40px 20px 10px 20px;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.5px;
}

.cards .card article .title {
  color: white;
  padding: 10px 20px;
  letter-spacing: 0.8px;
  transition: all 0.4s ease;
}

.cards .card article .desc {
  padding: 10px 30px;
  font-size: 22px;
  text-align: center;
  line-height: 24px;
  color: #666;
  height: 90px;
  transition: all 0.4s ease-out;
}

.cards .card article .pic {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 100%;
  margin: 20px 0;
  box-shadow: 0px 0px 0px 0px #002866;
  transition: all 0.6s ease;
}

.abt-img {
  width: 100%;
  /* margin-top: -150px; */
}

.cards .card article .pic img {
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.cards .card .actions {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: white;
  z-index: 1;
}

.cards .card .actions .btn {
  border: 0;
  background-color: #002866;
  box-sizing: border-box;
  width: calc(100% - 1px);
  padding: 20px 40px;
  /* border-radius: 40px; */
  margin: 0;
  text-transform: uppercase;
  font-size: 17px;
  transition: all 0.6s ease-in-out;
  cursor: pointer;
  color: #FFF;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 0.5px;
}

.cards .card .actions .btn span {
  z-index: 1;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.cards .card .actions .btn .cardiconhnh {
  width: 10px;
  opacity: 0;
  position: absolute;
  transition: all 0.2s ease-in-out;
}

.cards .card .actions .btn:before {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  background: #4481eb;
  transition: all 0.4s ease;
  bottom: 0;
  opacity: 0.2;
}

.cards .card .actions .btn:focus {
  outline: 0;
}

.cards .card .actions .btn:hover span {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.cards .card .actions .btn:hover .cardiconhnh {
  width: 22px;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.cards .card .actions .btn:hover:nth-child(3) .cardiconhnh {
  width: 18px;
}

.cards .card .actions .btn:hover:before {
  height: 100%;
}

.cards .card .actions .btn.clicked span {
  display: none;
}

.cards .card .actions .btn.clicked .cardiconhnh {
  width: 22px;
  opacity: 1;
  animation: cardiconhnh 0.5s ease forwards;
}

@keyframes cardiconhnh {
  0% {
    width: 22px;
  }

  50% {
    width: 40px;
  }

  100% {
    width: 22px;
  }
}

.cards .card .actions .btn.clicked:before {
  opacity: 0.3;
  height: 100%;
}

.cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.3);
}

.cards .card:hover:before {
  height: 100%;
  border-radius: 4px;
}

.cards .card:hover .desc {
  color: white;
}

.cards .card:hover .pic {
  box-shadow: 0px 0px 0px 8px #00286691;
}

.cards .card:hover .pic img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.cards .card.closed {
  min-width: 120px;
  max-width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s ease;
  cursor: pointer;
}

.cards .card.closed .title,
.cards .card.closed .desc,
.cards .card.closed .actions,
.cards .card.closed .close {
  display: none;
}

.cards .card.closed h2 {
  padding: 0;
  height: 100%;
  transform: rotate(-90deg);
  width: 440px;
  z-index: 2;
  transition: all 0.6s ease;
}

.cards .card.closed .pic {
  border-radius: 100%;
  height: 400px;
  width: 400px;
  position: absolute;
  top: -20px;
  margin: 0;
  box-shadow: 0;
  transition: all 0.6s ease;
}

.cards .card.closed .pic img {
  object-fit: cover;
  height: 100%;
  transform: translateY(20px);
}

.cards .card.closed .pic:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
  transition: all 0.4s ease;
  transform: translateY(20px);
}

.cards .card.closed:before {
  height: 100%;
  border-radius: 4px;
}

.cards .card.closed .arrow {
  width: 18px;
  height: 18px;
  position: absolute;
  z-index: 2;
  cursor: pointer;
  bottom: 15px;
  padding: 5px;
  display: flex;
  justify-content: center;
  background-image: url("https://rafaelavlucas.github.io/assets/cardiconhnhs/misc/expand.svg");
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s ease;
}

.cards .card.closed:hover .arrow {
  background-size: 100%;
  opacity: 0.6;
}




.bg {
  animation: slide 5s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #7c807a1c 50%, #475b6e1f 50%);
  bottom: 0;
  left: -50%;
  opacity: .3;
  position: fixed;
  right: -50%;
  top: 0;
  z-index: -1;
}

.bg2 {
  animation-direction: alternate-reverse;
  animation-duration: 4s;
}

.bg3 {
  animation-duration: 5s;
}

.content {
  background-color: rgba(255, 255, 255, .8);
  border-radius: .25em;
  box-shadow: 0 0 .25em rgba(0, 0, 0, .25);
  box-sizing: border-box;
  left: 50%;
  padding: 10vmin;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
}

.appText {
  font-size: 2em;
    padding-left: 15px;
  color: #fff;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1430px;
  }
}

.customicon {
  color: #fff;
  font-size: 3em;
  border-radius: 50%;
  width: 80px;
  margin: 10px;
  height: 80px;
  text-align: center;
  border: 2px solid #fff;
}

.appointmentsec {
  background-color: #e31e24;
  padding: 3em;
  margin: 7em 0 2em;
  border-radius: 10px;
}

h1 {
  font-family: 'Roboto Condensed', sans-serif;
}

@keyframes slide {
  0% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(25%);
  }
}

.digitalsoull-footer {
  display: flex;
  flex-direction: column;
  margin: auto;
  margin-bottom: 0px;
  width: 100%;
  height: 500px;
  background: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin:auto;background:rgba(221, 221, 221, 0);display:block;z-index:1;position:relative' width='3000' height='588' preserveAspectRatio='xMidYMid' viewBox='0 0 3000 588'><g transform='translate(1500,294) scale(-1,-1) translate(-1500,-294)'><linearGradient id='lg-0.9997820734103322' x1='0' x2='1' y1='0' y2='0'><stop stop-color='%23ffffff' offset='0'></stop><stop stop-color='%23ffffff' offset='1'></stop></linearGradient><path d='' fill='url(%23lg-0.9997820734103322)' opacity='0.37'><animate attributeName='d' dur='10s' repeatCount='indefinite' keyTimes='0;0.333;0.667;1' calcMode='spline' keySplines='0.5 0 0.5 1;0.5 0 0.5 1;0.5 0 0.5 1' begin='0s' values='M0 0L 0 558.9888918874962Q 300 557.9557135224538  600 520.7201791558826T 1200 493.0888623871913T 1800 448.04775521801616T 2400 442.32786157869174T 3000 400.5000938220193L 3000 0 Z;M0 0L 0 531.8219503412562Q 300 581.2367793971861  600 536.6456794845121T 1200 526.1199153747991T 1800 453.6567543549444T 2400 426.5449945053999T 3000 429.5661867072931L 3000 0 Z;M0 0L 0 572.7600127243211Q 300 599.6891402698932  600 560.6693012791557T 1200 514.6895687962055T 1800 485.3535117451038T 2400 447.8902433799051T 3000 454.9458231426154L 3000 0 Z;M0 0L 0 558.9888918874962Q 300 557.9557135224538  600 520.7201791558826T 1200 493.0888623871913T 1800 448.04775521801616T 2400 442.32786157869174T 3000 400.5000938220193L 3000 0 Z'></animate></path></g></svg>") no-repeat center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;


}

.digitalsoull-footer-heading {
  height: fit-content;
  margin: auto;
  color: #FFF;
  font-size: 2vw;
}

.digitalsoull-footer-content {
  width: 100%;
  height: 80%;
  display: flex;
  margin: auto;
}

.digitalsoull-footer-bottom {
  /* margin: auto; */
  width: 100%;
  height: 10%;
  display: flex;
}

.digitalsoull-footer-bottom-sec {
  margin: auto;
}

.digitalsoull-footer-bottom-sec a {
  text-decoration: none;

  color: #0a0a0a;
}

.digitalsoull-footer-bottom-sec a:hover {
  font-weight: 700;
}

.digitalsoull-footer-section {
  margin: auto;
  margin-bottom: 0;
}

.d-footer-ul {
  padding: 0;
  list-style: none;
}

.d-footer-li {
  margin-bottom: 5px;
}

.d-footer-li:hover {
  cursor: pointer;
  transform: translateX(10px);
  transition: all 0.4s;
  font-weight: 700;
}

.d-footer-li-h {
  margin-bottom: 10px;
}

.logo {
  max-width: 100%;
  max-height: 120px;
  display: flex;
  margin: auto;
  margin-top: 10px;
}

.logo-head {
  margin: auto;
  display: flex;
}

.logo a {
  margin: auto;
  max-width: 100%;
}

@media only screen and (max-width: 900px) {
  .digitalsoull-footer {
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-bottom: 0px;
    width: 100%;
    height: fit-content;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    background: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin:auto;background:rgba(221, 221, 221, 0);display:block;z-index:1;position:relative' width='3000' height='588' preserveAspectRatio='xMidYMid' viewBox='0 0 3000 588'><g transform='translate(1500,294) scale(-1,-1) translate(-1500,-294)'><linearGradient id='lg-0.9997820734103322' x1='0' x2='1' y1='0' y2='0'><stop stop-color='%23ffffff' offset='0'></stop><stop stop-color='%23ffffff' offset='1'></stop></linearGradient><path d='' fill='url(%23lg-0.9997820734103322)' opacity='0.37'><animate attributeName='d' dur='10s' repeatCount='indefinite' keyTimes='0;0.333;0.667;1' calcMode='spline' keySplines='0.5 0 0.5 1;0.5 0 0.5 1;0.5 0 0.5 1' begin='0s' values='M0 0L 0 558.9888918874962Q 300 557.9557135224538  600 520.7201791558826T 1200 493.0888623871913T 1800 448.04775521801616T 2400 442.32786157869174T 3000 400.5000938220193L 3000 0 Z;M0 0L 0 531.8219503412562Q 300 581.2367793971861  600 536.6456794845121T 1200 526.1199153747991T 1800 453.6567543549444T 2400 426.5449945053999T 3000 429.5661867072931L 3000 0 Z;M0 0L 0 572.7600127243211Q 300 599.6891402698932  600 560.6693012791557T 1200 514.6895687962055T 1800 485.3535117451038T 2400 447.8902433799051T 3000 454.9458231426154L 3000 0 Z;M0 0L 0 558.9888918874962Q 300 557.9557135224538  600 520.7201791558826T 1200 493.0888623871913T 1800 448.04775521801616T 2400 442.32786157869174T 3000 400.5000938220193L 3000 0 Z'></animate></path></g></svg>") no-repeat center center;

  }
.banner {
    width: 100%;
    height: 60vh;
  }
  .digitalsoull-footer-heading {
    height: fit-content;
    font-family: 'Roboto Condensed', sans-serif;
    margin: auto;
    font-size: 5vw;
  }

  .digitalsoull-footer-content {
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
  }

  .digitalsoull-footer-bottom {
    margin: auto;
    margin-bottom: 0px;
    height: 20%;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto Condensed', sans-serif;
  }

  .logo-head b {
    font-family: 'Roboto Condensed', sans-serif;
    margin: auto;
    text-align: center;
  }

  .d-footer-ul {
    list-style: none;
    font-family: 'Roboto Condensed', sans-serif;
  }

  .d-footer-li {
    margin-bottom: 5px;
    margin-left: -40px;
    text-align: center;
  }

  .d-footer-li-h {
    margin-bottom: 10px;
    margin-left: -40px;
    text-align: center;
  }
}

.progress-barr1r {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;

  height: 150px;
  background: linear-gradient(180deg, transparent, #002866);
  transform-origin: left;
  pointer-events: none;
}

.waver1h {
  position: absolute;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #e31e24;
  stroke-width: 2;
  /* filter: drop-shadow(0 0 8px #e31e24); */
  /* opacity: 0.8; */
  mix-blend-mode: screen;
}

.waver1h-path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: ekg 10s linear infinite;
}

.handler1r {
  position: relative;
  /* top: 0;
  left: 0; */
  width: 80px;
  height: 10%;
  background: #fff;
  /* border-radius: 40px; */
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  cursor: grab;
  z-index: 10;
}

.handler1r:active {
  cursor: grabbing;
  background: #f0f0f0;
}

.percentager1r {
  color: #fff;
  font-size: 100px;
  font-weight: bold;
  min-width: 80px;
}

@keyframes ekg {
  0% {
    stroke-dashoffset: 800;
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -800;
  }
}


.galleryyy {
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.galleryyy img {
  width: 12%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: 2px solid #fff;
  transition: all ease-out 0.5s;
  cursor: pointer;
  overflow: hidden;
}

.galleryyy img:hover {
  width: 50%;
}

.bannerContainer {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    width: 100%;
}

#imgBannerGallery {
    width: 100%;
    height: 25em;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.overlay .text {
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overlay h2 {
    font-family: "Nunito";
    text-transform: uppercase;
}

.overlay p {
    font-size: large;
}

.bannerContainer .overlay {
    opacity: 1;
}

.bannerContainer .overlay .text {
    opacity: 1;
}


#main-hnhgrid h1{
  font-size: 45px;
    color: #bac0e3;
    text-align: center;
}
.CardHH-grids-list-hnhgrid {
    z-index: 0;
    width: 71%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: auto;
}
.CardHH-grid{
margin: 30px auto;
    width: 300px;
    height: 260px;
    border-radius: 50px 0;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 30%);
    cursor: pointer;
    transition: 0.4s;
    justify-content: flex-start !important;
  background-color: #97A9BD;
}
.CardHH-grid_image{
    background: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 10px auto;
}
.CardHH-grid_image i{ 
    margin: 17px;
    font-size: 37px;
  
-webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}
 .CardHnH_Grid_title_HnH .heading--HnH {
    font-size: 1.2rem;
    font-weight: 700;
       margin: auto;
    text-align: center;
       color: #fff;
}
.CardHnH_Grid_title_HnH p {
    margin: 10px auto;
    line-height: normal;
  text-align: center;
      color: #fff;
}
.CardHH-grids-list-hnhgrid .CardHH-grid:nth-child(1) {
  background-color: #97A9BD;
}
.CardHH-grids-list-hnhgrid .CardHH-grid:nth-child(1):hover {
 background-color: #5e6e80;
}
.CardHH-grids-list-hnhgrid .CardHH-grid1 .CardHH-grid_image a i{
  color: #97A9BD;
 
}
.CardHH-grids-list-hnhgrid .CardHH-grid:nth-child(2) {
    background-color: #A197BD;
}
.CardHH-grids-list-hnhgrid .CardHH-grid:nth-child(2):hover {
 background-color: #625682;
}
.CardHH-grids-list-hnhgrid .CardHH-grid2 .CardHH-grid_image a i{
  color: #A197BD;
 
}
.CardHH-grids-list-hnhgrid .CardHH-grid:nth-child(3) {
    background-color: #BDA697;
}
.CardHH-grids-list-hnhgrid .CardHH-grid:nth-child(3):hover {
 background-color: #826552;
}
.CardHH-grids-list-hnhgrid .CardHH-grid3 .CardHH-grid_image a i{
  color:#BDA697;
 
}
.btn-read-HHnH{
  justify-content: center;
    align-content: center;
    display: flex;
  margin: 31px;
}
.right_conatct_hnh_social_icon{
     background: linear-gradient(to top right, #1325e8 -5%, #8f10b7 100%);
}
.contact_us_hnh{
    background-color: #f1f1f1;
    padding: 120px 0px;
}

.contact_inner_hnh{
    background-color: #fff;
    position: relative;
    box-shadow: 20px 22px 44px #cccc;
    border-radius: 10px;
}
.contact_field123_hnh{
    padding: 60px 340px 90px 100px;
}
.right_conatct_hnh_social_icon{
    height: 100%;
}

.contact_field123_hnh h3{
   color: #000;
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px
}
.contact_field123_hnh p{
    color: #000;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 35px;
}
.contact_field123_hnh .form-control{
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #ccc;
}
.contact_field123_hnh .form-control:focus{
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #1325e8;
}
.contact_field123_hnh .form-control::placeholder{
    font-size: 13px;
    letter-spacing: 1px;
}

.contact_info_sec123_hnh {
    position: absolute;
    background-color: #2d2d2d;
    right: 1px;
    top: 18%;
    height: 340px;
    color:#fff;
    width: 340px;
    padding: 40px;
    border-radius: 25px 0 0 25px;
}
.contact_info_sec123_hnh h4{
    letter-spacing: 1px;
    padding-bottom: 15px;
}

.info_single_123_hnh{
    margin: 30px 0px;
}
.info_single_123_hnh i{
    margin-right: 15px;
}
.info_single_123_hnh span{
    font-size: 14px;
    letter-spacing: 1px;
}

button.contact_form_submit_123_hnh {
    background: linear-gradient(to top right, #1325e8 -5%, #8f10b7 100%);
    border: none;
    color: #fff;
    padding: 10px 15px;
    width: 100%;
    margin-top: 25px;
    border-radius: 35px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 2px;
}
.social_item_inner_123_hnh li{
    list-style: none;
}
.social_item_inner_123_hnh li a{
    color: #fff;
    margin: 0px 15px;
    font-size: 14px;
}
.social_item_inner_123_hnh{
    padding-bottom: 10px;
}

.map_sec_123_hnh{
    padding: 50px 0px;
}
.map_inner_123_hnh h4, .map_inner_123_hnh p{
    color: #000;
    text-align: center
}
.map_inner_123_hnh p{
    font-size: 13px;
}
.map_bind_123_hnh{
   margin-top: 50px;
    border-radius: 30px;
    overflow: hidden;
}