/***Terms & Conditions Start***/
.page-title-area {
    height: 200px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
    background: url(../images/bredcrum.jpg);
    background-attachment: fixed;
    padding: 180px 0 120px;
}
.page-title-area::after {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	content: '';
	background: rgba(0, 0, 0, 0.6);
	z-index: 1;
}

.page-title {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.277;
	color: #fff;
}

.breadcrumb-menu ul {
	display: flex;
	justify-content: center;
	gap: 25px;
}

.page-title-wrapper {
	position: relative;
	z-index: 999;
}

.trail-item {
	position: relative;
}

.trail-item span {
	color: #fff;
}

.trail-item a span {
	color: #68a47d;
	font-weight: 600;
}

.trail-items li:not(:last-child)::after {
	display: inline-block;
	color: #fff;
	content: "";
	position: absolute;
	right: -16px;
	top: 0px;
	font-family: "Font Awesome 6 free";
	font-weight: 900;
}

.terms-content h3 {
	margin-bottom: 10px;
	position: relative;
	color: #000;
	font-weight: 600;
	font-size: 22px;
}

.terms-content p {
	color: #5e5e5e;
	line-height: 30px;
}

.terms-list li:not(:last-child) {
	margin-bottom: 16px;
}
.terms-list{
  margin-bottom: 25px;
}

/***Terms & Conditions End***/


/***Contact Us Start***/
.contact-content {
  width: 100%;
  height: auto;
  min-height: 160px;
  background: var(--white-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 15px 0;
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s;
}

.contact-content .icon {
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	border-radius: 6px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.contact-content .icon svg {
  color: #fff;
}

.contact-content .title {
  font-size: 22px;
  line-height: 32px;
  color: var(--black-color);
  font-weight: 700;
  margin: 0;
}

.contact-content p,
.contact-content a {
  color: var(--primary-color);
  margin: 0;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
}

.contact-content .social-links a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  line-height: 1;
  padding: 16px 0;
  margin-right: 4px;
  text-align: center;
  width: 42px;
  height: 42px;
  transition: 0.3s;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 0.6s;
}

.contact-form-box {
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 15px 0;
  background-color: var(--white-color);
  padding: 30px 40px;
  border-radius: 0;
  border-radius: 10px;
  height: 100%;
}

.contact-img {
	margin-top: 30px;
	height: 260px;
	border-radius: 8px;
	overflow: hidden;
}
.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/***Contact Us End***/



/*****About Us Start*****/
.site-title-tagline {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.site-title {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 45px;
  color: #000;
  margin-bottom: 0;
}

.about-list-wrapper {
  position: relative;
  display: block;
  margin-top: 20px;
  margin-bottom: 10px;
}

.about-img {
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid var(--primary-color);
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	height: 470px;
	min-height: 470px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-list {
  position: relative;
  display: block;
}
.about-list li {
  position: relative;
  padding-left: 25px;
  margin-top: 12px;
}
.about-list li .list-arrow {
  position: absolute;
  left: 0;
  color: var(--primary-color);
}
.about-list li b{
  color: var(--primary-color);
}

.team-item {
  padding: 15px;
  text-align: center;
  position: relative;
  background: #fff;
  border-radius: 15px;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}

.team-img img {
  border-radius: 15px;
  margin-top: -50px;
}

.team-social {
  position: absolute;
  margin-bottom: 10px;
  text-align: center;
  top: 20px;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.team-social a {
  display: block;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 10px;
  border-radius: 50px;
  background: var(--primary-color);
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}

.team-item:hover .team-social {
  opacity: 1;
  right: 30px;
}

.team-item:hover {
  transform: translateY(-10px);
}

.team-img img {
  border-radius: 15px;
  margin-top: -50px;
  width: 100%;
}

.team-content {
  padding: 10px 0 5px;
}

.team-bio h5 {
  font-size: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.team-bio span {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-transform: capitalize;
}

.team-bio h5 a {
  font-size: 22px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-transform: capitalize;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 700;
}

.team-area {
  background: #f4f4f4;
}

/*****About Us Start*****/

/****Faq Page Start****/
.choose-right .accordion-button:focus {
	z-index: 3;
	border: none;
	outline: 0;
	box-shadow: none;
}

.choose-right .accordion-item {
	border: 1px solid #eaebee;
	margin-bottom: 20px;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.choose-right .accordion-collapse {
	border: 0;
}

.choose-right .accordion-button {
	padding: 25px;
	font-size: 16px;
	color: #242629;
	font-weight: 600;
	padding-right: 35px;
	border: 0;
}

.choose-right .accordion-button:not(.collapsed) {
	color: var(--clr-common-heading);
	background-color: #fff;
	box-shadow: none;
	border: 0;
}

.choose-right .accordion-body {
	padding: 0px 25px 20px 25px;
	margin-top: -10px;
}

.choose-right .accordion-body p {
	line-height: 30px;
	margin-bottom: 0;
}

.choose-right .accordion-button:not(.collapsed)::after {
	background: none;
	transform: rotate(180deg);
	content: "";
	position: absolute;
	right: 25px;
	top: 25px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}

@media (max-width: 767px) {
	.choose-right .accordion-button:not(.collapsed)::after {
		right: 20px;
	}
}

.choose-right .accordion-button::after {
	background: none;
	color: var(--clr-common-heading);
	content: "";
	position: absolute;
	right: 20px;
	top: 25px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}

@media (max-width: 767px) {
	.choose-right .accordion-button::after {
		right: 15px;
	}
}

/****Faq Page End****/


.services-single-content{
	margin-right: 20px;
}

.service-video{
	position: relative;
	margin-bottom: 30px;
}

.services-single-image img {
    width: 100%;
    border-radius: 20px;
}

.services-video-icon a{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	z-index: 2;
}

.services-video-icon a i{
    font-size: 20px;
    background-color: var(--secondary-color);
    color: var(--secondary-color);
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.services-single-image img{
	filter: brightness(60%);
} 

.services-video-content p{
	color: var(--transparent-secondry-color);
	margin-bottom: 20px;
}

.services-video-content p:last-child{
	margin-bottom: 0;
}

.service-featured-image,
.health-care-plans{
	margin-bottom: 50px;
}

.health-care-plan-content ul{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.health-care-plan-content ul li{
	width: 48%;
	margin-right: 2%;
	font-size: 18px;
	font-weight: 500;
	color: var(--text-color);
	position: relative;
	padding-left: 30px;
	margin-bottom: 20px;
	text-transform: capitalize;
}

.health-care-plan-content ul li:last-child{
	margin-bottom: 0;
}

.health-care-plan-content ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--secondary-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.health-caring-btn{
	margin-top: 30px;
}

.services-sidebar{
	position: sticky;
    top: 120px;
}

.medical-service{
	background: var(--theme-color);
	padding: 40px 30px;
}

.medical-service-title{
	margin-bottom: 30px;
}

.medical-service-title h2{
	font-size: 32px;
	text-align: start;
	color: #fff;
}

.medical-service-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.medical-service-list ul li{
	margin-bottom: 20px;
}

.medical-service-list .service-item{
	display: flex;
	align-items: center;
	padding: 15px 20px;
	background: var(--secondary-color);
}

.service-item .service-icon{
	margin-right: 15px;
}

.service-item .service-icon img{
	width: 40px;
}

.service-item .service-title h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
    margin: 0;
}

.service-item .service-title h3 a{
	color: inherit;
}

.medical-service .service-btn{
	margin-top: 40px;
}

.medical-service .service-btn a{
	display: block;
}

.medical-service .service-btn a::after{
    background: var(--secondary-color);
}

.working-step{
	background-color: #f3f8f8;
}

.working-process-item{
	background: var(--secondary-color);
	padding: 60px;
	position: relative;
	height: 100%;
}

.working-process-item.bg-color{
	background-color: var(--theme-color);
}

.working-process-item .icon-box{
	margin-bottom: 25px;
}

.working-process-item .icon-box img{
	width: 40px;
}

.working-process-content h3 {
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 700;
}

.working-process-content p {
    color: #fff;
    margin: 0;
    font-size: 18px;
    line-height: 30px;
}

.working-process-step{
	position: absolute;
	right: 30px;
	bottom: 30px;
	z-index: 1;
}

.working-process-step h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.blog-area,
.blog-detail-area{
	width: 100%;
	height: auto;
	background: linear-gradient(to right, rgba(41, 205, 120, 0.08) 0%, rgba(49, 61, 247, 0.08) 100%);
}

.blog-box{
	display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    background: #ffffff;
    margin-bottom: 32px;
    z-index: 3;
    box-shadow: 3px 3px 25px rgb(0 0 0 / 7%);
    width: 100%;
    border-radius: 10px;
}
.blog-box img,
.blog-box .post-item-wrap iframe {
	width: 100%;
	min-height: 260px;
    height: 260px;
	border-top-left-radius: 10px;
    border-top-right-radius: 10px;
	object-fit: cover;
}

.blog-box .lower-portion {
	display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
    border-bottom: 1px solid rgb(122 122 122);
}

.blog-box .lower-portion i {
    font-size: 13px;
    color: var(--secondary-color);
    margin-right: 2px;
    margin-bottom: 10px;
}

.blog-box .lower-portion .text-mr {
    margin-right: 20px;
    color: rgb(122 122 122);
}

.blog-box .text-size-14, 
.blog-detail-area .text-size-14 {
    font-size: 14px;
}

.blog-box .lower-portion a {
    display: inline-block;
	text-decoration: none !important;
}

.blog-box .lower-portion h5 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 0;
    color: #000;
    position: relative;
    transition: ease-in-out 0.6s;
    letter-spacing: 0;
    word-spacing: 0;
    font-weight: 500;
    margin-top: 5px;
}

.blog-box .button-portion {
    position: relative;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin-top: auto;
    display: flex;
    flex-direction: row;
}

.blog-box .button-portion .date {
    display: inline-block;
}

.blog-box .button-portion .calendar-ml {
    font-size: 18px;
    color: var(--secondary-color);
    margin-right: 5px;
    margin-bottom: 28px;
}

.blog-box .button-portion span {
    color: #7a7a7a;
}

.blog-box .button-portion .button {
    display: inline-block;
}

.blog-box .button-portion .read_more {
    font-size: 14px;
    line-height: 24px;
    padding: 10px 16px;
    transition: all 0.3s ease-in-out;
    border: none;
    overflow: visible;
    outline: none;
    height: 44px;
}

.blog-detail-area .main-box {
    border-radius: 10px;
    position: relative;
    background: #fff;
    transition: all 0.3s ease-in-out;
    padding: 10px 15px 40px;
    width: 104%;
    margin-left: -45px;
    box-shadow: 3px 3px 25px rgb(0 0 0 / 7%);
}

.blog-detail-area .main-box .image1 img {
	width: 100%;
	min-height: 500px;
	height: 500px;
	object-fit: cover;
    border-radius: 10px;
}

.blog-detail-area .main-box .content1 {
    margin-left: 10px;
}

.blog-detail-area .main-box .content1 h4 {
    margin-bottom: 18px;
	    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #000;
}

.span-fa-outer-con {
    margin-bottom: 10px;
}

.blog-detail-area .main-box .content1 p {
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 27px;
}

.blog-detail-area p {
    color: #7a7a7a !important;
}

.blog-detail-area .main-box .content2 {
    background: var(--primary-color);
    color: #fff;
    padding: 20px 32px 32px;
    border-radius: 10px;
    margin-bottom: 34px;
}

.blog-detail-area .main-box .content2 .singleblog-quoteimage {
    margin-bottom: 22px;
}

.blog-detail-area .main-box .content2 p {
    font-style: italic;
    color:#fff !important;
	font-size: 18px;
    line-height: 30px;
}

.blog-detail-area .main-box .text {
    font-weight: 400;
    margin-bottom: 20px;
    margin-left: 0;
    font-size: 16px;
    line-height: 27px;
}

.blog-detail-area  .main-box .image1 img {
    border-radius: 10px;
}

.blog-detail-area  .content4 {
    padding: 0 14px;
    margin-bottom: 50px;
}


.blog-detail-area .content4 h5 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 14px;
    color: #000;
    font-weight: 600;
}

.blog-detail-area .content4 .tag li {
    display: contents;
}

.blog-detail-area .content4 .tag .button {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 10px;
    padding: 10px 18px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-right: 4px;
    border: 1px solid transparent;
}

.blog-detail-area .content4 .tag .button2 {
    padding: 10px 24px;
}

.blog-detail-area .content4 .icon {
    position: relative;
}

.blog-detail-area .content4 .icon h5 {
    float: right;
}

.blog-detail-area .content4 .icon .social-icons {
    top: 48px;
    right: 0;
}

.blog-detail-area .content4 .icon .social-icons ul {
    display: flex;
}

.blog-detail-area .content4 .icon .social-icons ul li:first-child {
    margin-left: 0;
}

.blog-detail-area .content4 .icon .social-icons ul li {
    margin: 0 8px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 10px;
    transition: .3s ease-in-out;
    border: 1px solid transparent;
}

.blog-detail-area .content4 .icon .social-icons ul li a {
    padding: 0;
    border-radius: 10px;
    color: #fff;
}

.blog-detail-area .content6 {
    padding: 0 15px;
    margin-bottom: 58px;
}

.blog-detail-area .content6:after {
	content: "";
	border-bottom: 1px solid var(--primary-color);
	position: absolute;
	width: 92%;
	height: 6px;
	left: 26px;
}

.blog-detail-area .content6 h4 {
	margin-bottom: 34px;
	font-weight: bold;
	color: var(--primary-color);
}

.blog-detail-area .content6 h4:after {
	content: "";
	border-bottom: 1px solid var(--primary-color);
	position: absolute;
	width: 23%;
	height: 45px;
	left: 23px;
}

.blog-detail-area .content6 .comment {
	display: flex;
	margin: 0 0 24px 6px;
}

.blog-detail-area .content6 .comment .image img {
	border-radius: 10px;
}

.blog-detail-area .content6 .comment .content {
	padding: 0 0 0 19px
}

.blog-detail-area .content6 .comment h5 {
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 2px;
	color: #000;
}

.blog-detail-area .content6 .comment span {
	margin-bottom: -38px;
	display: block;
	color: #000;
}

.blog-detail-area .content6 .comment .reply {
    font-size: 17px;
    line-height: 36px;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    float: right;
    right: 0;
    top: -28px;
    height: 40px;
}

.blog-detail-area .content6 .comment .text_holder p {
	display: inline-block;
	line-height: 24px;
	margin: 0 40px 12px 0;
	word-spacing: 1.6px;
}

.blog-detail-area .content7 {
	padding: 0 15px;
}

.blog-detail-area .content7 h4 {
	margin-bottom: 28px;
	color: #fff;
}

.blog-detail-area .content7 textarea {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: var(--text--color);
	padding: 18px 30px 20px 0;
	width: 100%;
	height: 120px;
	margin-bottom: 15px;
	resize: none;
	outline: none;
	overflow-y: auto;
	border: none;
	border-bottom: 1px solid var(--primary-color);
}

.blog-detail-area .content7 input {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: var(--text--color);
	padding: 14px 30px 14px 0;
	margin-bottom: 16px;
	width: 100%;
	overflow: visible;
	outline: none;
	border: none;
	border-bottom: 1px solid var(--primary-color);
}

.blog-detail-area .content7 .text-mb {
	margin-bottom: 26px;
}

.blog-detail-area .content7 .post_comment {
	font-size: 16px;
	line-height: 20px;
	padding: 20px 38px;
	border-radius: 100px;
	color: #ffffff;
	background-color: var(--primary-color);
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	display: block;
	text-align: center;
	outline: none;
	border-style: none;
	cursor: pointer;
}

.blog-detail-area .content7 button.post_comment {
	margin-top: 20px;
}

.blog-detail-area .content7 .post_comment:hover {
	background-color: var(--accent--color);
	color: var(--secondary--color);
	transition: ease-in-out 0.6s;
}

.blog-detail-area .column .sticky{
    position: sticky;
    top: 120px;
}

.blog-detail-area .box1 {
	border-radius: 10px;
	background: #fff;
	padding: 34px 30px;
	margin-bottom: 43px;
	width: 110%;
	box-shadow: 3px 3px 25px rgb(0 0 0 / 7%);
}

.blog-detail-area .box1 h5 {
	text-align: center;
	margin-bottom: 42px;
		color: #000;
	font-weight: 600;
	border-bottom: 1px solid var(--primary-color);
	padding-bottom: 22px;
}

.blog-detail-area .box1 input {
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	color: var(--text--color);
	background: var(--secondary--color);
	border: 1px solid var(--primary-color);
	border-radius: 10px;
	padding: 0 75px 0 18px;
	width: 100%;
	height: 58px;
	overflow: visible;
	outline: none;
}

.blog-detail-area .box1 input:focus {
	box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(35 119 216 / 100%);
	outline: none;
	border-color: var(--primary-color);
}

.blog-detail-area .box1 .search {
	position: absolute;
	font-size: 18px;
	right: 0px;
	top: 1px;
	width: 60px;
	height: 56px;
	color: #fff;
	border: 1px solid transparent;
	background: var(--primary-color);
	border-radius: 10px;
	outline: none;
	box-shadow: none;
	transition: all 0.3s ease-in-out;
}

.blog-detail-area .box2 {
	text-align: center;
}

.blog-detail-area .box2 h5 {
	margin-bottom: 22px;
	border-bottom: 1px solid var(--primary-color);
	padding-bottom: 22px;

}

.blog-detail-area .box2 ul li {
	margin-bottom: 15px;
}

.blog-detail-area .box2 ul li a {
	color: var(--primary-color);
}

.blog-detail-area .box2 ul li a:hover {
	color: var(--accent--color);
}

.blog-detail-area .box3 {
	text-align: center;
	padding: 30px 30px;
}

.blog-detail-area .box3 h5 {
	margin-bottom: 22px;
	border-bottom: 1px solid var(--primary-color);
	padding-bottom: 22px;
	color: #000;
}

.blog-detail-area .box3 .social-icons ul {
	display: flex;
	justify-content: center;
}

.blog-detail-area .box3 .social-icons ul li a {
	padding: 0;
	color: var(--secondary--color);
}

.blog-detail-area .box3 .social-icons ul li {
	margin: 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 40px;
	border-radius: 10px;
	background: var(--primary-color);
	transition: .3s ease-in-out;
	border: 1px solid transparent;
}

.blog-detail-area .box3 .social-icons ul li i {
	transition: .3s ease-in-out;
}

.blog-detail-area .box3 .social-icons ul li:hover {
	transform: translateY(-4px);
	background-color: transparent;
	color: var(--primary-color);
	transition: ease-in-out 0.6s;
	border: 1px solid var(--primary-color);
}

.blog-detail-area .box3 .social-icons ul li:hover i {
	color: var(--primary-color);
}

.blog-detail-area .box3 .social-icons ul li:first-child {
	margin-left: 0;
}

.blog-detail-area .box3 .social-icons ul li:last-child {
	margin-right: 0;
}

.blog-detail-area .box3 .social-icons ul li .social-networks {
	font-size: 20px;
	background: transparent;
	border-radius: 10px;
	text-align: center;
	transition: all ease-in-out 0.3s;
	width: 45px;
	height: 45px;
	line-height: 45px;
	transition: all 0.3s ease-in-out;
	color: #fff;
}

.blog-detail-area .box4 h5 {
	margin-bottom: 36px;
	border-bottom: 1px solid var(--primary-color);
	padding-bottom: 22px;
	color: #000;
}

.blog-detail-area .box4 .tag li {
	margin-right: 8px;
	display: contents;
}

.blog-detail-area .box4 .tag .button {
	font-size: 15px;
	line-height: 24px;
	font-weight: 400;
	background: var(--primary-color);
	color: #ffffff;
	border-radius: 10px;
	padding: 10px 18px;
	display: inline-block;
	text-align: center;
	transition: all 0.3s ease-in-out;
	margin-bottom: 4px;
	letter-spacing: 0.6px;
	/* border: 1px solid transparent; */
}

.blog-detail-area .box4 .tag .button2 {
	padding: 10px 18px;
}

.blog-detail-area .box4 .tag .button:focus {
	outline: none;
}

.blog-detail-area .box4 .tag .button:hover {
	background-color: var(--accent--color);
	color: var(--secondary--color);
	transition: ease-in-out 0.6s;
	/* border: 1px solid var(--primary-color); */
}

.blog-detail-area .box5 {
	margin-bottom: 0 !important;
}

.blog-detail-area .box5 h5 {
	margin-bottom: 30px;
	border-bottom: 1px solid var(--primary-color);
	padding-bottom: 25px;
	color: #000;
}

.blog-detail-area .box5 .feed {
	display: flex;
	margin-bottom: 22px;
	border-bottom: 1px solid var(--primary-color);
	padding-bottom: 22px;
	align-items: center;
}

.blog-detail-area .box5 .feed4 {
	margin-bottom: 0 !important;
	border-bottom: none;
}

.blog-detail-area .box5 .feed .feed-image {
	width: 34%;
}

.blog-detail-area .box5 .feed .feed-image img {
	border-radius: 10px;
}

.blog-detail-area .box5 .feed a {
	font-size: 15px;
	line-height: 24px;
	font-weight: 400;
	text-decoration: none;
	width: 66%;
	padding: 0 0 0 16px;
	transition: all 0.3s ease-in-out;
	position: relative;
	z-index: 1;
	color: var(--primary-color);
}

.blog-detail-area .box5 .feed a:hover {
	color: var(--accent--color);
}