/*  ============== Common CSS ============= */
:root {
  --primary-color: #4f6bd6;
  --heading-color: #0e0c0a;
  --primary-black-color: #031b33;
  --black-dark-color: #0a0a0a;
  --gray-light-color: #f1fcf9;
  --white-color: #ffffff;
  --text-color: #2d4443;
  --border-color: #e5e5e5;

  --heading-font: "Albert Sans", sans-serif;
  --body-font: "Rubik", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body-font);
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

.container {
  max-width: 1314px;
  padding: 0 12px;
  margin: 0 auto;
}

.containerfluid {
  max-width: 100%;
  padding: 0 12px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.col-1 {
  width: 8.33%;
  padding: 0 12px;
}

.col-2 {
  width: 16.66%;
  padding: 0 12px;
}

.col-3 {
  width: 25%;
  padding: 0 12px;
}

.col-4 {
  width: 33.33%;
  padding: 0 12px;
}

.col-5 {
  width: 41.66%;
  padding: 0 12px;
}

.col-6 {
  width: 50%;
  padding: 0 12px;
}

.col-7 {
  width: 58.33%;
  padding: 0 12px;
}

.col-8 {
  width: 66.66%;
  padding: 0 12px;
}

.col-9 {
  width: 75%;
  padding: 0 12px;
}

.col-10 {
  width: 83.33%;
  padding: 0 12px;
}

.col-11 {
  width: 91.66%;
  padding: 0 12px;
}

.col-12 {
  width: 100%;
  padding: 0 12px;
}

/* ================ Component ============== */
.btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 18px;
  font-family: var(--heading-font);
  padding: 13px 21px;
  font-weight: 700;
  line-height: 20px;
  border-radius: 10px;
  transition: all 0.5s;
  display: inline-block;
  height: max-content;
}

.btn:hover {
  background-color: var(--primary-black-color);
}

.badge {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 500;
  line-height: 24px;
  font-family: var(--heading-font);
  padding: 5px 20px;
  margin-bottom: 12px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  display: inline-block;
}

.badge i {
  margin-right: 2px;
  color: var(--text-color);
}

.heading h2 {
  font-size: 48px;
  font-family: var(--heading-font);
  color: var(--heading-color);
  line-height: 65px;
  font-weight: 700;
}

.heading p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 30px;
  margin-bottom: 25px;
}

/* ================= Headrer ================ */
header {
  position: relative;
  z-index: 999;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  display: flex;
}

.menu li {
  padding: 0 17px;
  position: relative;
}

.menu li a {
  color: var(--heading-color);
  font-size: 18px;
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: 18px;
  transition: all 0.5s;
  padding: 36px 0;
  display: inline-block;
}

.menu li a:hover {
  color: var(--primary-color);
}

.menu li a i {
  font-size: 16px;
  /* width: initial; */
}

.menu li .sub-menu {
  position: absolute;
  width: 250px;
  box-shadow: 0px 30px 80px 15px rgba(0, 0, 0, 0.09);
  border-radius: 7px;
  padding: 10px 0;
  top: 120px;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}

.menu li:hover .sub-menu {
  top: 92px;
  opacity: 1;
  visibility: visible;
}

.menu li .sub-menu li a {
  padding: 15px;
  transition: all 0.4s;
}

.menu li .sub-menu li a:hover {
  transform: translateX(7px);
}

.menu li .sub-menu li.dropdown a {
  display: flex;
  justify-content: space-between;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu {
  position: absolute;
  width: 250px;
  box-shadow: 0px 30px 80px 15px rgba(0, 0, 0, 0.09);
  border-radius: 7px;
  padding: 10px 0;
  left: 250px;
  top: 0;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  background-color: var(--white-color);
}

/* ================= Hero Section ================ */
.hero {
  background-color: var(--gray-light-color);
  padding-top: 65px;
}

.hero-details {
  padding: 105px 0 0;
  margin-bottom: 40px;
}

.hero-details h1 {
  font-size: 85px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 100px;
  margin-bottom: 12px;
}

.hero-cta {
  display: flex;
  align-items: center;
  row-gap: 20px;
  justify-content: space-between;
}

.hero-details .sub-text {
  color: var(--text-color);
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 30px;
}

.hero-cta .btn {
  padding: 15px 44px;
}

.call-us {
  display: flex;
  /* margin-left: 40px; */
}

.call-us .call-text {
  margin-left: 20px;
}

.call-us .call-text p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 30px;
}

.call-us .call-text a {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  font-family: var(--heading-font);
}

.hero-image {
  margin-left: 50px;
  height: 100%;
}

.hero-image img {
  display: block;
  width: 100%;
  background-position: bottom center;
  height: 100%;
  object-fit: cover;
}

/* ================ About Us ============== */
.about {
  padding: 120px 0 130px;
}

.about-img {
  padding-right: 100px;
}

.about-row {
  row-gap: 20px;
}

.about-img img {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center center;
}


.about-data .data {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.data .data-icon {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 100%;
  background-color: #e7e0ff;
  text-align: center;
  margin-right: 20px;
}

.data-2 .data-icon {
  background-color: #ffd0cc;
}

.data .data-icon i {
  font-size: 22px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text-color);
}

.data .data-txt h3 {
  font-size: 24px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 34px;
}

.data .data-txt p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 30px;
}

.about .about-cta {
  display: flex;
  align-items: center;
  row-gap: 20px;
  column-gap: 20px;
}

.about-box {
  position: relative;
}

.about-box .box-1 {
  display: flex;
  align-items: center;
  background-color: var(--gray-light-color);
  padding: 15px;
  border-radius: 10px;
  /* margin: 30px 0 0 30px; */
  max-width: 190px;
  bottom: -105px;
  position: absolute;
  left: 0px;
}

.about-box .box-1 .count {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  background-color: var(--primary-color);
  border-radius: 100%;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--white-color);
  margin-right: 20px;
}

.about-box .box-1 h5 {
  font-size: 18px;
  color: var(--heading-color);
  line-height: 28px;
  font-family: var(--heading-font);
  flex-grow: 1;
}

.about-cta .call-text {
  font-style: 18px;
  line-height: 30px;
  text-align: left;
  display: block;
}

.about-cta .call-text span {
  font-style: 18px;
  line-height: 30px;
  text-align: left;
}

.about-cta .call-text h5 {
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
  display: block;
  font-size: 20px;
}

.schedule-box {
  position: absolute;
  bottom: 0;
  right: 80px;
  border: 1px solid #e1ebe8;
  background-color: var(--gray-light-color);
  padding: 30px 20px;
  max-width: 300px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.schedule-box .content {
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 30px;
  overflow-x: hidden;
}

.schedule-box .content h4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 34px;
  font-style: 24px;
  font-family: var(--heading-font);
}

.schedule-box .content {
  margin-bottom: 15px;
}

.schedule-box .content .schedule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
}

span {
  display: inline-block;
}

/* ================ Achive ============== */
.achievement {
  background-color: var(--primary-color);
  padding: 80px 0;
}

.achievement .achieve-row {
  align-items: center;
  padding-left: 20px;
}


.achievement .col-3 {
  border-left: 1px solid var(--white-color);
}

.achievement .col-3:first-child {
  border: none;
}

.appoint .ppl {
  display: flex;
}

.appoint .ppl div {
  margin-left: -10px;
  margin-bottom: 15px;
}

.appoint .ppl div:first-child {
  margin-left: 0;
}

.appoint .ppl img {
  border-radius: 50%;
  border: 2px solid var(--white-color);
}

.appoint h5 {
  color: var(--white-color);
  font-size: 24px;
  font-family: var(--heading-font);
  line-height: 34px;
}

.achiev h2 {
  font-size: 48px;
  color: var(--white-color);
  line-height: 65px;
  font-family: var(--heading-font);
}

.achiev h5 {
  font-size: 24px;
  color: var(--white-color);
  line-height: 34px;
  font-family: var(--heading-font);
}

/*******************services*****************************/
.services {
  padding: 130px 0 80px 0;
}


.serv-row {
  row-gap: 20px;
  justify-content: center;
}


.ourservices {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service-head .icons {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 35px;
  margin-bottom: 25px;
  color: white;
  -webkit-text-stroke: 2px var(--white-color);
}

.service-icon h2 {
  font-size: 48px;
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 65px;
  text-align: left;
}

.service-box {
  font-size: 18px;
  font-family: var(--body-font);
  line-height: 30px;
  /* margin-bottom: 40px; */
  padding: 30px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
}

.service-head .label {
  font-size: 18px;
  font-weight: 500;
  line-height: 1px;
  padding: 20px 25px;
  border-radius: 30px;
  font-family: var(--heading-font);
  background-color: #f1f3fc;
  color: var(--heading-color);
}

.header-dental h4 {
  font-size: 24px;
  font-family: var(--body-font);
  font-weight: 700;
  line-height: 34px;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.header-dental h4 a {
  color: var(--heading-color);
}

.header-dental p {
  font-size: 18px;
  font-family: var(--body-font);
  line-height: 30px;
  margin-bottom: 25px;
  color: #394f4e;
}

.header-dental .read a {
  font-size: 16px;
  font-family: var(--body-font);
  font-weight: 600;
  line-height: 30px;
  text-decoration: underline;
  color: var(--black-dark-color);
}

/******************treatment***************************/

.treatment-content {
  font-size: 18px;
  line-height: 30px;
  padding-left: 80px;
}

.treatment-content .treatment-head {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 40px;
}

.treatment-head .treatment-p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 40px;
}

.treatment-box {
  display: flex;
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 30px;
  row-gap: 10px;
}

.treatment-btn {
  font-size: 18px;
  line-height: 30px;
  /* margin-right: 40px; */
}

.treatment-btn a {
  display: inline-flex;
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 20px;
  padding: 15px 44px;
  justify-content: center;
  font-weight: 700;
  align-items: center;
  background-color: var(--primary-color);
}

.calltext .h5{
  padding-left: 15px;
}
.position{
  /* padding-left: 15px; */
}
 

.treatment {
  background-color: #f1fcf9;
}

.treatment-content {
  padding-left: 80px;
}

.treatment-box {
  margin-bottom: 30px;
}

.treatment-content .heading h2 {
  margin-bottom: 45px;
}

.containerfluid.col-6 {
  padding-left: 80px;
}

.treatment-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center center;
}


/* *********************Working Process *************** */

.Working-process {
  padding: 130px 0 0;
}

.Working-process .service-icon {
  width: 100%;
  text-align: center;
}

.Working-process .service-icon h2 {
  font-size: 48px;
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 65px;
  text-align: left;
  text-align: center;
  margin-bottom: 50px;
}

.Working-process .card {
  position: relative;
  border: 1px solid var(--border-color);
  padding: 30px 30px 50px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 40px;
}

.Working-process .sn {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  background-color: var(--white-color);
}

.Working-process .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 35px;
  margin-bottom: 25px;
}

.Working-process .content h4 {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 34px;
}

/* ============= Choose ============== */
.choose {
  padding: 115px 0 90px;
}

.choose-img {
  padding-left: 20px;
  margin-bottom: 70px;
  position: relative;
}

.choose-img img {
  border-radius: 10px;
}

.choose-img .play-btn {
  position: absolute;
  top: 50%;
  left: 65%;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
}

.choose-img .play-btn i {
  font-size: 22px;
  color: var(--white-color);
}

.choose .process {
  padding: 30px 30px 20px;
  margin-bottom: 40px;
  border-radius: 10px;
  text-align: center;
  background-color: #e7e0ff;
}

.choose .process-2 {
  background-color: #ffd0cc;
}

.choose .process-3 {
  background-color: #ffebc2;
}

.choose .process-4 {
  background-color: #d1f4c3;
}

.choose .process .process-icon {
  background-color: transparent;
  border: 1px solid rgba(5, 27, 46, 0.2);
}

.choose .process .process-icon i {
  -webkit-text-stroke-color: var(--text-color);
}

.choose .process h3 {
  margin-bottom: 10px;
}

.choose .process p {
  font-size: 18px;
}

.process-icon1 {
  /* width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid black;
  padding: 13px; */
  border: 1px solid rgba(5, 27, 46, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 35px;
  margin-bottom: 20px;
}




/***********************BOOKING**********************/

.booking {
  padding: 130px 0 80px;
  background-color: var(--gray-light-color);
}

.book-image img {
  border-radius: 10px;
}

.booking .appointment {
  border-radius: 10px;
  background-color: var(--white-color);
  padding: 50px;
}

.appointment h3 {
  line-height: 40px;
  margin-bottom: 25px;
  font-size: 32px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.appointment form input,
.appointment form select {
  line-height: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  padding: 9px 30px;
  margin-bottom: 10px;
  width: 100%;
  font-size: 18px;
  font-family: var(--body-font);
}

.appointment form .btn {
  margin-top: 20px;
}

.booking .heading h2 {
  margin-bottom: 20px;
}

.booking .heading {
  margin-bottom: 40px;
}

.appointment h3 {
  font-size: 32px;
  font-family: var(--heading-color);
  margin-bottom: 25px;
  line-height: 40px;
  color: var(--heading-color);
  font-weight: 700;
}

/*********footer********************************/
footer {
  background-image: url(../images/footer-bg.jpg);
  justify-content: space-between;
  background-size: cover;
  background-position: center center;
}

.bottom-footer .heading h2 {
  color: var(--white-color);
}

.footer-email {
  padding: 14px 20px;
  background-color: transparent;
  margin-right: 10px;
  border: 1px solid grey;
  border-radius: 10px;
  width: 300px;
  font-size: 18px;
  /* color: var(--white-color); */
}

.footer-email::placeholder {
  color: var(--white-color);
}

.footer-btn {
  padding: 19px 50px;
  font-size: 18px;
  text-align: center;
  line-height: 10px;
  border: none;
}

.footer-btn:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}


.heading .footer-para {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 30px;
  font-family: var(--heading-font);
  align-items: center;
  color: var(--white-color);
}

.footer-top {
  justify-content: space-between;
  font-size: 18px;
  font-family: var(--heading-font);
  padding: 50px 0 40px;
  line-height: 30px;
  border-bottom: 1px solid rgb(250, 249, 249);
}

.footer-bottom {
  font-size: 18px;
  font-family: var(--heading-font);
  padding: 100px 0 50px;
}

.footer-widget .widget-content img {
  line-height: 30px;
  margin-bottom: 25px;
  max-width: 100%;
  font-family: var(--heading-font);
}

.widget-content p {
  color: rgb(191, 188, 188);
  margin-bottom: 20px;
}

.widget-icon a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--white-color);
  border: 1px solid var(--border-color);
  font-size: 20px;
  display: inline-block;
  text-align: center;
}

.widget-icon a:hover {
  background-color: var(--primary-color);
  margin-right: 10px;
}

.footer-bottom h3 {
  display: inline-block;
  font-size: 24px;
  margin-bottom: 28px;
  color: var(--white-color);
}

.quick ul li a {
  display: inline-block;
  color: var(--white-color);
  font-size: 18px;
  font-family: var(--body-font);
  line-height: 30px;
  padding-bottom: 15px;
}

.quick {
  padding-left: 48px;
}

.timetable p {
  margin-bottom: 20px;
  color: var(--white-color);
}

.icon1 {
  display: flex;
  margin-bottom: 20px;
}


.icon1 a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--white-color);
  font-size: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  flex-shrink: 0;
  margin-right: 20px;
  text-align: center;
  padding-top: 10px;
}

.address .add-content p {
  color: var(--white-color);
}

/* ================== Team =================== */
.team {
  padding: 130px 0 85px;
}

.team .heading {
  text-align: center;
}

.team .heading h2 {
  font-size: 48px;
  line-height: 65px;
  max-width: 700px;
  margin: 0px auto;
}

.team .doctorimg {
  position: relative;
  overflow: hidden;
  /* border: 2px solid red; */
}

.doctorimg img {
  width: 100%;
  border-radius: 10px;
  /* border: 2px solid green; */
  display: block;
  height: 350px;
}

.link {

  position: absolute;
  bottom: -50%;
  left: 0;
  background-color: var(--primary-color);
  padding: 10px 17px;
  border-radius: 0 10px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.link a {
  display: block;
  color: white;
  margin-bottom: 12px;
}

.team .col-3:hover .link {
  bottom: 0;
}

.team .about-cta {
  text-align: center;
  margin-top: 25px;
}

.team .about-cta a {
  font-size: 24px;
  line-height: 34px;
}

.team .about-cta p {
  font-size: 16px;
  font-family: var(--body-font);
  font-weight: 400;
  line-height: 28px;
}



/* ================== Testimonial =================== */
.testimonial {
  padding: 130px 0 80px;
  background-color: var(--gray-light-color);
}

.testimonial .test-image {
  padding-left: 15px;
}

.testimonial .test-image img {
  border-radius: 10px;
}

.testimonial .test-slide {
  background-color: var(--white-color);
  padding: 25px 30px;
}

.test-slide .rating {
  display: flex;
  margin-bottom: 20px;
}

.test-slide .rating i {
  color: var(--primary-color);
  margin: 0 2px;
}

.test-slide .test-data {
  font-size: 24px;
  line-height: 34px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 30px;
}

.test-slide .person {
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.test-slide .person .call-us {
  margin-left: 0;
}

/* ============ FAQ ============== */
.faq {
  padding: 130px 0 130px;
}

.faq .faq-image {
  margin-bottom: 30px;
}

.faq-image img {
  border-radius: 10px;
}

.faq .sos-call {
  background-color: var(--gray-light-color);
  padding: 30px;
  border-radius: 10px;
}

.sos-call .call-text a {
  font-size: 24px;
  line-height: 34px;
}

.sos-call .call-icon {
  height: 60px;
  width: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sos-call .call-icon i {
  font-size: 24px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white-color);
}

.faq .faq-content {
  padding-left: 70px;
}

.faq .faq-content .heading {
  margin-bottom: 50px;
}

.faq-accordion .question {
  padding: 15px 30px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  height: 55px;
  overflow: hidden;
  transition: all 0.4s;
}

.faq-accordion .question.open {
  height: initial;
  transition: all 0.4s;
}

.faq-accordion .question.open .acc-header i {
  transform: rotate(180deg);
}

.question .acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
}

.question .acc-header:hover {
  cursor: pointer;
}

.question .acc-header h4 {
  font-size: 18px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 25px;
}

.question .acc-header i {
  font-size: 18px;
  color: var(--primary-color);
}

.question .acc-body p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 30px;
  padding-top: 20px;
}

/* ================= BLOG ================= */

.blog{
    padding:0px 0px 130px;
}

.blog-card{
    border:1px solid var(--border-color);
    border-radius:10px;
    overflow:hidden;
    transition:0.4s;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-img img{
    width:100%;
    height: 300px;
    display:block;
     margin-bottom: 20px;
}

.blog-content{
    padding:16px;
}

.blog-content h3{
    font-size:22px;
    font-family:var(--heading-font);
    color:var(--heading-color);
    margin-bottom:10px;
}

.blog-content p{
    font-size:18px;
    color:var(--text-color);
    line-height:28px;
    margin-bottom:15px;
}

.blog-content a{
    font-weight:600;
    text-decoration:underline;
    color:var(--primary-color);
}

.error{
  color: red;
}