/*
    Theme Name: Artemas
    Author:  Artemas
    Author URL: https://artemasdigital.com/
    Description: ---- 2023.
    Document   : Framework
    Created on :  Jan 2 2023, 10.00 AM
*/

html {
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

body {
  animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s;
  -moz-animation: fadeIn ease 1s;
  -o-animation: fadeIn ease 1s;
  -ms-animation: fadeIn ease 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-size: 100%;
  color: var(--secondry-color);
  background: var(--main-color);
  font-family: var(--font-two);
  margin: 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-text-size-adjust: none;
  font-weight: 300;
}

::placeholder {
  color:  var(--secondry-color);
  font-family: var(--font-two);
font-weight: 500;
}

.clear {
  clear: both;
  font-size: 0px;
  line-height: 0px;
  height: 0px;
  margin: 0px;
  padding: 0px;
}

:focus {
  outline: 0;
}

a,
a:link,
a:visited {
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  color: #fff;
}

/* div {
    transition: all 0.3s ease-in-out;
} */

a:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

img {
  border: none;
  max-width: 100%;
}

ul,
li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.2;
  font-family: var(--font-one);
}

p {
  margin: 0;
  line-height: 1.5;
  font-size: 1.3em;
  color: var(--white-color);
  font-weight: 400;
  font-family: var(--font-one);
}

h1 {
  margin: 0;
  padding: 0;
  color: var(--bg-color);
  line-height: 0.9;
  font-size: 5.1em;
  font-weight: 700;
  font-family: var(--font-two);
}

h2 {
  margin: 0;
  padding: 0;
  color: var(--text-color);
  font-size: 3em;
  line-height: 1;
  font-weight: 700;
  font-family: var(--font-two);
}

h3 {
  margin: 0;
  padding: 0;
  color: var(--white-color);
  line-height: 0.9;
  font-size: 5em;
  font-weight: 700;
  font-family: var(--font-two);
}

h4 {
  margin: 0;
  padding: 0;
  color: var(--text-color);
  font-size: 1.3em;
  line-height: 1.3;
  font-weight: 700;
  font-family: var(--font-two);
}

.outer:before,
.outer:after,
.container:after,
.container:before,
.container-full:after,
.container-full:before,
.slider-area:after,
.slider-area:before {
  content: " ";
  display: table;
}

.outer:after,
.container:after,
.container-full:after,
.slider-area:after {
  clear: both;
}

.outer {
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  background: var(--main-color);
  overflow: hidden;
}

:root {
  --font-one: "Inter", sans-serif;
  --font-two: "Montserrat", sans-serif;
  --second-btn: #682c6b;
  --text-color: #111111;
  --primary-color: #EF7BA4;
  --btnradius: 80px;
  --radius: 80px;
  --small-radius: 50px;
  --secondry-color: #fff;
  --white-color: #fff;
  --main-color: #FFF4F3;
}
/*grid-system-start*/
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Responsive styles for 2 columns */
@media (min-width: 600px) {
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Responsive styles for 3 columns */
@media (min-width: 900px) {
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Responsive styles for 4 columns */
@media (min-width: 1200px) {
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/*grid-system-end*/
.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1600px;
}
.medium-container {
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
}
.small-container {
  margin: 0 auto;
  width: 90%;
  max-width: 900px;
}




.flex {
  display: flex;
}
.banner-text {

  margin: 0 0;
  padding: 120px 0 0 130px;
  max-width: 800px;
	position: relative;
    z-index: 2;
}
.banner-sec {
  width: 100%;
  position: relative;
  margin: 200px 0 0 0;
}
.banner-sec .carousel {
  width: 100%;
}
.banner-sec .carousel-cell {
  width: 100%;
}
.carousel-cell .banner   {
  width: 100%;
  height: 80vh;
  min-height: 600px;
  position: relative;
  text-align: left;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background: url(../img/banner-one.jpg) no-repeat top center/cover;
  border-radius: var(--radius);
}

a.btn {
  font-size: 1em;
  font-weight: 600;
  background-color: var(--primary-color);
  border-radius: var(--btnradius);
  text-align: center;
  padding: 15px 30px;
  color: var(--secondry-color);
  display: inline-block;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: var(--font-one);
}
a.btn:hover {
  background-color: var(--second-btn);
  color: var(--white-color);
 
}
a.btn.primary-btn {
  background-color: var(--primary-color);
}
a.btn.outline {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 15px 40px;
}
a.btn.outline:hover {
  background-color: var(--primary-color);
  color: var(--secondry-color)
}
a.btn.primary-btn:hover {
  background-color: var(--secondry-color);
  color: var(--bg-color);
}


.mt {
  margin: 50px 0 0 0;
}
.mb {
  margin: 0 0 50px 0;
}
.pt {
  padding: 50px 0 0 0;
}
.pb {
  padding: 0 0 50px 0;
}
.both-m {
  margin: 50px 0;
}
.both-p {
  padding: 50px 0;
}
.both-p-xl {
  padding: 100px 0;
}
.both-p-xl-t {
  padding: 100px 0 0 0;
}
.top-header ul {
  display: flex;
  justify-content: space-between;
}
.top-header ul li a {
  display: flex;
  align-items: center;
  font-size: 0.9em;
  font-weight: 400;
  font-family: var(--font-one);
}
.top-header ul li a span {
  margin: 0 10px 0 0;
}

.banner-text p {
  max-width: 500px;
  padding: 20px 0;
}
.banner-sec .flickity-page-dots {
bottom: 60px;
text-align: right;
right: 60px;
}
.banner-sec .flickity-page-dots .dot {
  width: 20px;
  height: 20px;
  background-color: var(--secondry-color);
  margin: 0 7px
} 
.text-sec p {
  color: var(--text-color);
  opacity: 0.9;
  font-family: var(--font-two);
  font-size: 1.4em;
  font-weight: 500;
  padding: 10px 0 0 0;
  line-height: 1.4;
}
.text-sec {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.solution {
  width: 100%;
  
}
.white-box-set {
  width: 23%;
  background-color: var(--white-color);
  color: var(--text-color);
  font-weight: 500;
  border-radius: var(--small-radius);
  display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.white-box-sec.flex {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.white-box-set a {
  color: var(--text-color);
  display: block;
  font-weight: 700;
  text-align: center;
 font-size: 1.1em;
 padding: 60px 40px;
  
}
.white-box-set a img {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  padding: 0 0 20px 0;
  object-fit: contain;
}
.white-box {
  width: 100%;
  margin: 40px 0 40px 0;
}
.btn.violet {
  background: var(--second-btn);
}
.btn.violet:hover {
  background-color: var(--primary-color);
}
a.btn.violet.text-large:hover {
  background-color: var(--text-color);
}
.btn-set {
  text-align: center;
}
.white-box-set:hover {

  box-shadow: 0px 0px 20px 20px rgba(0 , 0 , 0 , 0.05);
  -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.white-box-set:hover a {
  color: var(--primary-color);
}
.banner-half {
  width: 100%;
  position: relative;
}
.banner-half-sec {
  width: 100%;
  padding: 50px 0 250px 0;
  border-radius: var(--radius);
}
.banner-half-text {
  
  padding: 120px 0 0 130px;
  max-width: 600px;
}
.banner .banner-text p {
  line-height: 1.3;
  font-size: 1.5em;
  color: var(--white-color);
  font-weight: 400;
}
.banner-half-text p {
  padding: 20px 0 0 0;
}
.contact-banner {
  width: 100%;
  position: relative;
}
.contact-banner-sec {
  background-color: var(--primary-color);
  border-radius: var(--radius);

}
.contact-banner-content {
  padding: 80px 0 80px 130px;
  max-width: 800px;
}
.contact-banner-content h3 {
  font-size: 3.5em;
}
img.teeth-icon-set {
  position: absolute;
  right: 170px;
  top: -61px;
  max-width: 550px;
  width: 100%;
}
a.btn.violet.text-large {
  display: inline-flex;
  align-items: center;
  font-size: 2em;
  margin: 25px 0 0 0;
}
a.btn.violet.text-large span {
  font-size: 1.3em;
  margin: 0 8px 0 0;
}
img.white-teeth {
  position: absolute;
  right: 300px;
  bottom: 50px;
  max-width: 250px;
}
.google-rating  {
  width: 100%;
  text-align: center;
}
.review-sec .left {
  width: 60%;
}
.review-sec .right {
  width: 40%;
  text-align: center;
}
.review-img {
  position: relative;
}
.review-img img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 100%;
 
}
.review-desc strong {
  display: block;
  font-family: "Comforter", cursive;
  font-weight: 400;
  font-size: 1.8em;
  color: var(--text-color);
  padding: 20px 0;
}
.review-desc p {
  color: var(--text-color);
  line-height: 1.3;
  padding: 20px 30px;
	    font-size: 1em;
}
.review-sec .right {
  width: 30%;
  text-align: center;
  padding: 0 3% 0 0;
}
.review-sec .flex {
  align-items: center;
  justify-content: flex-start;
}
.quotes {
  position: absolute;
  left: -40%;
  background-color: #000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  top: 0;
  z-index: 1;
  
}
.review-sec .flickity-page-dots .dot {
  width: 20px;
  height: 20px;

  margin: 0 2px;
}
.insight-set {
  width: 33.3%;
    background-color: var(--white-color);
    color: var(--text-color);
    font-weight: 500;
    border-radius: var(--small-radius);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-align: left;
    padding: 50px;
    flex-wrap: wrap;
}
.insight-set p  {
 padding: 15px 0;
 color: var(--text-color);
 font-weight: 300;
 font-size: 1.1em;
}
.insight-box.flex {
  gap: 30px;
  margin: 50px 0;
}
.insight-content {
  max-width: 380px;
}
.insight-set img {
  width: 100%;
    height: 300px;
    object-fit: contain;
}
.insight-content h4 {
  padding: 40px 0 0 0;
}
.insight-content a {
  color: var(--text-color);
  font-weight: 600;
  font-family: var(--font-one)
}
.insight-set:hover a {
  color: var(--primary-color);
}
.banner-half-text.contact-sec {
  max-width: 900px;
  padding: 0 0 0 130px;
}
.banner-half-text.contact-sec h3 {
  font-size: 3.5em;
  padding: 0 0 40px 0;
}
.banner-half-sec.contact-half {
  padding: 100px 0;
}
.accordian-sec {
  text-align: left;
  margin: 50px 0 100px 0;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0;
}
.accordion-items {
	width: 100%;
	background: linear-gradient(to bottom right, #fff, #f7f7f7);
	background: transparent;
	margin: 0 auto;
	border-radius: 3px;
	
}

.accordion-heading.open::after {
    background-color: var(--text-color);
}
.accordion-heading.active::after {
     background-color: var(--text-color);
}
.accordion-heading h3 {
  color: var(--text-color);
    font-family: var(--font-two);
    font-size: 0.9em;
    font-weight: 600;
    line-height: 1.2;
    max-width: 750px;
}
.accordion-heading {
    
	color: var(--text-color);
  font-family: var(--font-two);
	font-size: 1.3em;
	letter-spacing: 0.8px;
	padding: 20px 20px 20px 40px;
	cursor: pointer;
    background-color: #fff;
    margin: 10px 0 0 0;
    font-weight: 600;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
      border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    position: relative;
}
.accordion-heading.open, .accordion-heading.active {
	
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
      border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
 
}
.accordion-heading:nth-last-child(2) {
	border-bottom: 0;
}

.accordion-heading.open::before {
    content: "-";
}

.accordion-heading::before {
	content: "+";
	vertical-align: middle;
	display: inline-block;
	float: right;
	transform: rotate(0);
	transition: all 0.5s;
	margin-top: 0;
  font-size: 1.1em;
  font-weight: 400;
}
.active.accordion-heading::before {
	content: "-";
}
.not-active.accordion-heading::before {
	transform: rotate(0deg);
}
.accordion-content {
	display: none;
	background: var(--secondry-color);
	padding: 0 40px 40px 40px;
	color:  var(--text-color);
  font-family: var(--font-inter);
	font-size: 1em;
	line-height: 1.5;
    font-weight: 500;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
   
}
.accordion-content.open {
    display: block;
}
.solution-sec {
  width: 100%;
  background-color: var(--text-color);
  border-radius: var(--radius);
  padding: 130px;
}
.solution-sec h3 {
  font-size: 3.5em;
  text-align: center;
}
.solution-set.flex {
  gap: 30px;
  margin: 50px 0 0 0;
}
.solution-block {
  width: 33.3%;
}
.solution-block b {
  color: var(--primary-color);
  font-size: 1.4em;
  font-weight: 500;
  display: block;
  padding: 0 0 10px 0;
  font-family: var(--font-one);
  opacity: 0.9;
}
.solution-content ul li a {
  font-weight: 500;
  padding: 6px 0;
  display: block;
	line-height: 0.7;
  font-size: 1em;
  font-family: var(--font-one);
}
.solution-content .time  strong {
	color:#fff;
}
.solution-content {
  padding: 0 0 15px 0;
}
ul.sub-solution {
 
  margin: 0 0 0 25px;
}
ul.sub-solution li {
  list-style: disc;
}
.schedule-img {
  background: linear-gradient(0deg, rgba(68,26,70,0.6895133053221288) 0%, rgba(68,26,70,0.22172619047619047) 50%, rgba(68,26,70,0) 100%), url(../img/footer-side.jpg) no-repeat center center/cover;
  padding: 250px 20px 20px 20px;
  text-align: center;
  border-radius: var(--small-radius);
  margin: 40px 0 0 0;
}
.schedule-img h4 {
  color: var(--secondry-color);
  font-size: 2em;
  padding: 0 0 20px 0;
}
.schedule-img a {
  display: flex;
  align-items: center;
  font-size: 1.7em;
  justify-content: center;
}
.schedule-img a span {
  font-size: 1.7em;
  margin: 0 20px 0 0;
}
.time {
  text-align: center;
  margin: 20px 0 0 0;
}
.time strong {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-family: var(--font-one);
}
.time strong span {
  margin: 0 10px 0 0;
}
.footer-set a {
  color: var(--text-color);
  font-weight: 500;
  font-family: var(--font-one);
  font-size: 1.3em;
  display: block;
  padding: 0 0 5px 0;
}
.ft-logo {
  width: 100%;
  text-align: center;
}
.footer-set b {
  display: block;
  font-weight: 600;
  font-family: var(--font-one);
  color: var(--primary-color);
  font-size: 1.4em;
  padding: 0 0 10px 0;
}

.footer-set {
  padding: 50px 0;
  margin: 50px 0;
  border-bottom: 1px solid var(--primary-color);
  border-top: 1px solid var(--primary-color);
}
.middle-set {
  width: 25%;
}
.middle-footer .container {
  max-width: 1300px;
}
.middle-set.address {
  width: 40%;
}
ul.social-links {
  display: flex;
  align-items: center;
  margin: 20px 0 0 0;
}
ul.social-links li {
  margin: 0 30px 0 0;
}
.middle-set.address a {
  line-height: 1.5;
}
.bottom-footer {
  width: 100%;
  text-align: center;
 padding: 0 0 50px 0;
}
.bottom-footer p {
  color: var(--text-color);
  text-transform: capitalize;
}
.inner .banner {
  width: 100%;
    height: 50vh;
    min-height: 600px;
    position: relative;
    text-align: left;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border-radius: var(--radius);
}
.detailed-about {
  text-align: center;
}
.text-block p {
  color: var(--text-color);
  padding: 20px 0;
}
.inner-half h3 {
  font-size: 3em;
}
.banner-half.inner-half .banner-half-text {
  max-width: 800px;
}
.three-set {
  width: 33.3%;
  padding: 30px 0 0 0;
}
.three-block.flex {
  gap: 40px;
}
.three-wrap b {
  color: var(--primary-color);
  font-size: 1.4em;
}
.three-wrap p {
  color: var(--text-color);
  font-size: 1em;
  padding: 0 0 15px 0;
}
.three-wrap {
  padding: 0 0 30px 0;
}
.three-set.middle-img {
  border-radius: var(--small-radius);
} 
.three-set.align-right {
  text-align: right;
}
.why-choose-left {
  background-color: var(--second-btn);
  border-radius: var(--small-radius);
  padding: 70px;
}
.why-choose-sec.flex {
  gap: 20px;
  margin: 0 0 20px 0;
 
}

.why-choose-left {
  width: 50%;
}
.why-choose-right {
  width: 50%;
}

.why-choose-left ul li {
  color: var(--secondry-color);
  font-weight: 400;
  font-size: 1.2em;
  padding: 0 0 15px 5px;
position: relative;
line-height: 1.5;
}
.why-choose-left ul {
  margin: 0 0 20px 18px;
}
.why-choose-left ul li::after {
  position: absolute;
    content: '';
    left: -14px;
    top: 6px;
    font-size: 24px;
    line-height: normal;
    width: 10px;
    height: 10px;
    background: var(--secondry-color);
    border-radius: 100px;
}
.reverse {
  flex-direction: row-reverse;
}
.why-choose-right img {
  width: 100%;
  height: 100%;
  border-radius: var(--small-radius);
  object-fit: cover;
}
.testimonial .review-sec .right {
  width: 100%;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial .carousel {
  width: 100%;
}
.testimonial .carousel-cell {
  width: 100%;
}
.testimonial .quotes {
  left: 38%;
}
.procedure .white-box-set {
display: block;
 padding: 50px;
}
.procedure .white-box-set:hover {
  box-shadow: none;
}
.procedure .white-box-set p {
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 0;
}
.procedure .white-box-set {
  width: 48%;
}
.procedure .white-box-set h4 {
  padding: 10px 0 0 0;
  font-size: 2em;
}
.two-gap.flex {
  gap: 30px;
	
}

.ft-logo img {
    max-width: 240px;
    width: 90%;
}

.team-sec .two-gap.flex {
  gap: 20px;
	flex-wrap:wrap;
	
}
.team-sec  .two-box-content b {
    font-size: 1em;
    color: var(--text-color);
    opacity: 0.9;
}

.team-sec .two-box-content h4 {
    font-size: 1.1em;
    padding: 15px 0 5px 0;
}
.team-sec .two-white {
  max-width: 23%;
	width:100%;
  text-align: center;
}


.two-white {
  width: 31.3%;
  text-align: center;
}
.two-white img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--small-radius);
}
.procedure .white-box-sec.flex {
  text-align: center;
}
.two-box-content h4 {
  font-size: 1.5em;
  padding: 15px 0 5px 0;
}
.two-box-content b {
  font-size: 1.2em;
  color: var(--text-color);
  opacity: 0.9;
}
.procedure .white-box-set img {
  width: 100px;
  height: 100px;
}
.testimonial .review-sec {
  padding: 50px 0;
}
.team-slider .carousel {
  width: 100%;
}
.team-slider {
  width: 100%;
}
.team-slider .carousel-cell {
  width: 100%;

}
.team-slider .banner-half-sec {
  height: 85vh;
  max-height: 650px;
}
.team-slider .banner-half-text {
  padding: 70px 0 0 130px;
  max-width: 600px;
}
.darkmode {
  background-color: var(--second-btn);

}
.darkmode p {
  color: var(--secondry-color);
  padding: 10px 0 0 0;
}
.darkmode .text-sec h2 {
  color: var(--secondry-color);
}
.team-slider .flickity-page-dots .dot {
  width: 20px;
  height: 20px;
  margin: 0 7px;
}
.team-slider .flickity-page-dots {
  bottom: 30px;
}
.why-choose-left p {
  padding: 0 0 25px 0;
}
.why-choose-left h2 {
  color: var(--secondry-color);
  padding: 0 0 10px 0;
}
.testimonial h2 {
  font-size: 2em;
}
.br .why-choose-left {
  border-radius: 0;
}
.br .why-choose-right img {
  border-radius: 0;
}
.why-choose-sec.flex.gap-none {
  gap: 0;
}
.two-white.three-white {
  background-color: var(--secondry-color);
  border-radius: var(--small-radius);
  padding: 20px;
}
.cmn-des p {
  color: var(--text-color);
  font-size: 1em;
  padding: 10px 0 0 0;
}
.cmn-des .two-white.three-white {
  text-align: left;

}
.cmn-des .two-box-content {
  padding: 10px 20px 20px 20px;
}
.star img {
  height: auto;
  max-width: 100px;
}
.cmn-des .two-box-content h4 {
  font-size: 1.5em;
  padding: 5px 0 0 0;
}
.cmn-des  .two-box-content b {
font-size: 0.9em;
}
.flex-wrap {
  flex-wrap: wrap;
}
.mt-top {
  margin: 200px 0 0 0;
}
.testimonial-des .two-white {
  width: 31.3%;
  display: flex;
}
.testimonial-des .two-white img.profile-pic {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 20px;
}
.blog-ln-set {
  color: var(--text-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.cmn-des a {
  color: var(--primary-color);
  font-weight: 600;
  font-family: var(--font-one);
  padding: 10px 0 5px 0;
  display: inline-block;
  border-bottom: 1px solid var(--primary-color);
}
.blog-ln-set strong {
  font-size: 0.8em;
}
.blog-links.flex {
  justify-content: space-between;
}
.blog-ln-set span {
  margin: 0 5px 0 0 ;
}
.insight-content a {
  color: var(--text-color);
  font-weight: 600;
  font-family: var(--font-one);
}
.blog-detail-sec {
  background-color: var(--secondry-color);
  border-radius: var(--small-radius);
  padding: 80px;
}
.blog-detail .container {
  max-width: 1200px;
}
.blog-detail-sec date {
  color: var(--text-color);
  font-weight: 500;
  display: block;
}
.blog-detail-sec h3 {
  color: var(--text-color);
  font-size: 2.5em;
  padding: 20px 0;
  max-width: 700px;
}
.blog-detail-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--small-radius);
}
.blog-detail-sec p {
  color: var(--text-color);
  padding: 20px 0;
}
.blog-detail-sec h4 {
  color:  var(--primary-color);
  font-size: 1.5em;


}
.blog-detail-sec li {
  color: var(--text-color);
  padding: 10px 0;
  font-weight: 400;
  font-family: var(--font-one);
  font-size: 1.3em;
  list-style: disc;
  margin: 0 0 0 20px;
}
.contact-us-page h2 {
  font-size: 2.5em;
  text-align: center;
}
.contact-us-page ul {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 50px 0;
}
.contact-us-page ul li {
  text-align: center;
  margin: 0 20px;
}
.contact-us-page b {
  display: block;
  color: var(--text-color);
  font-size: 1em;
  font-weight: 500;
  padding: 0 0 10px 0;
}
.call-action {
  padding: 20px 0;
}
.contact-us-page a {
  display: block;
  color: var(--text-color);
  text-align: center;
  font-weight: 600;
  font-size: 1.1em;
}
.contact-us-page img {
  width: 50px;
  height: 50px;
}
input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea, select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--secondry-color);
  font-size: 0.9em;

  height: auto;
  margin: 0;
  outline: 0;
  padding: 15px 0;
  width: 100%;
  color: var(--secondry-color);
  font-family: var(--font-one);
  margin-bottom: 10px;
 
}
.contact-form label {
  color: var(--secondry-color);
  font-weight: 500;
  padding: 0 0 10px 0;
  display: block;
}
.contact-form-wrap {
  background-color: var(--second-btn);
  padding: 70px;
  border-radius: var(--small-radius);
}
.contact-form .flex {
  gap: 50px;
}
.block {
  width: 100%;
  margin: 0 0 10px 0;
}
.contact-form-wrap h3 {
  font-size: 2.3em;
  padding: 0 0 20px 0;
}
.wrap-set {
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 0 0 40px 0;
}
.contact-form input[type="submit"] {
  font-size: 1.1em;
  font-weight: 500;
  background-color: var(--primary-color);
  text-align: center;
  padding: 15px 50px;
  color: var(--secondry-color);
  display: inline-block;
  margin: 5px 0 0 0;
  font-family: var(--font-one);
  border: 0;
  width: 25%;
  border-radius: var(--btnradius);
	margin: 30px 0 0 0;
}
textarea {
  resize: none;
	height: 80px;
}
.opening-descrition {
  text-align: left;
}
.opening-descrition {
  padding: 50px 0;
}
.opening-descrition strong {
  color: var(--text-color);
  font-size: 2em;
}
.opening-descrition ul {
 
  margin: 30px 0;
}
.opening-descrition ul li  b {
  color: var(--text-color);
  font-size: 1.8em;
}
.opening-descrition ul li a {
  color: var(--primary-color);
  font-size: 1.3em;
  font-weight: 600;
}
.opening-descrition ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(68, 26, 70, 0.432);
  padding: 20px 0;
  align-items: center;
}
.dental-treatment .solution-block {
  width: 100%;
}
.dental-treatment .solution-block ul {
  display: flex;
  gap: 20px;
  padding: 10px 0 0 0;
	flex-wrap: wrap;
}
.solution-set.flex.dental-treatment {
  flex-wrap: wrap;
}
.solution-set.flex.dental-treatment .solution-content {
  padding: 0 0 30px 0;
}

ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;

}

ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: ">";
}

ul.breadcrumb li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
}
.solution-sec.bg-none {
background-color: var(--main-color);
border-radius: 0;
padding: 0;
}
.bg-none .solution-block b {
  font-size: 1.6em;
  font-weight: 600;
}
.bg-none .solution-block li a{
  font-size: 1.3em;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    padding: 15px 30px;
    border-radius: 10px;
    white-space: nowrap;
}
.bg-none .solution-block li a:hover {
  background-color: var(--text-color);
  color: var(--secondry-color);
}
.carrer-form form .flex {
  gap: 20px;
}
.carrer-form form input[type="submit"] {
  font-size: 1.1em;
  font-weight: 500;
  background-color: var(--primary-color);
  text-align: center;
  padding: 15px 50px;
  color: var(--secondry-color);
  display: inline-block;
  margin: 5px 0 0 0;
  font-family: var(--font-one);
  border: 0;
  border-radius: var(--btnradius);
	margin: 30px 0 0 0;
}
.carrer-form form option {
	color: var(--text-color);
}
.contact-form-wrap.carrer-form {
  width: 50%;
}
.back-to-list {
  display: flex;
    justify-content: flex-end;
    margin: 20px 0 0 0;
}
.openings .text-sec  {
  position: relative;
}
.count-sec {
  background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 19%;
    top: -62%;
    font-weight: 500;
}
.img-size img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}
.img-size {
  display: flex;
  align-items: center;

}

.why-choose-sec.flex.reverse .why-choose-left {
  background:#ae7c8e;
     
  }
  .mobile-only {
    display: none;
  }
.solution-content strong {
    color: #000000;
    font-weight: 500;
    font-size: 13px;
}
.carousel-cell .banner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(86deg, rgba(68, 26, 70, 0.8603816526610644) 0%, rgba(68, 26, 70, 0) 50%, rgba(68, 26, 70, 0) 100%);
    overflow: hidden;
}
.carousel-cell .banner {
    position: relative;
    overflow: hidden;
}
.inner .banner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
      background: linear-gradient(86deg, rgba(68, 26, 70, 0.8603816526610644) 0%, rgba(68, 26, 70, 0) 50%, rgba(68, 26, 70, 0) 100%);
    overflow: hidden;
}
.inner .banner {
	    overflow: hidden;
}

.header header nav ul li a:hover {
    color: #682c6b;
}
img.mobile-img {
	display: none;
}
.banner-sec .flickity-page-dots {
	display: none;
}
/* File input styled like text field with underline */
.upload-section input[type="file"] {
 width: 100%;
    color: #fff;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 8px 0;
    font-size: 16px;
    cursor: pointer;
	margin: 30px 0 20px 0;
}

/* Hide the default file button (modern browsers) */
.upload-section input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
}

.upload-section input[type="file"]::before {
  content: 'Choose File';
  display: inline-block;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* Change underline on focus */
.upload-section input[type="file"]:focus {
  outline: none;

}
input[type="date"] {
  color: #fff;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 8px 0;
  font-size: 16px;
  width: 100%;
}

/* remove default icon and add custom white one */
input[type="date"]::-webkit-calendar-picker-indicator {
  background: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7 10h5v5H7z'/%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z'/%3E%3C/svg%3E")
    no-repeat center;
  filter: none;
  cursor: pointer;
}
option {
  color: black;
 
}