#post-detail{
    margin-bottom: 30px;
}
#post-detail .mb-4{
    margin-bottom:15px;
}
#post-detail .post-header{
    padding: 60px 0;
    margin-bottom: 40px;
    background-position: center;
    background:var(--text-color);
}

#post-detail .post-header .post-title {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}

#post-detail .post-content p,
#post-detail .post-content ul,
#post-detail .post-content ol {
    margin: 25px 0;
    font-family: var(--custom-first-font);
    line-height: 1.4;
    font-weight: 400;
    color: #000;
}

#post-detail .post-content table {
    width: 100%;
}

#post-detail .post-content table tr td{
    border:2px solid #000;
    padding:10px;
}

#post-detail .post-content ul{
    list-style-type:disc;
    padding-left:20px;
}

#post-detail .post-content ul li{
    margin-bottom:10px;
}

#post-detail .post-content h1 {
    font-size: 28px;
}

#post-detail .post-content h2 {
    font-size: 24px;
}

#post-detail .post-content h3 {
    font-size: 20px;
}

#post-detail .post-content h4,
#post-detail .post-content h5 {
    font-size: 16px;
}

#post-detail .post-content h1,
#post-detail .post-content h2,
#post-detail .post-content h3,
#post-detail .post-content h4 {
    margin: 25px 0;
    line-height: 1.2;
    font-family: var(--custom-first-font);
    color: #000;
    font-weight: bold;
}

#detail-content .post-content ol {
    list-style: decimal !important;
    padding-left: 20px;
}

#post-detail.post-content ul {
    padding-left: 20px;
}

#post-detail.post-content ul li {
    list-style: disc;
}

#post-detail.post-content p img {
    margin-bottom: 20px;
}

#post-detail .post-content a {
    color: #000;
    font-weight: 600;
}

#post-detail .post-content img {
    max-width: 100%;
    height: auto;
}

#post-detail .post-header .contents{
    line-height: 1.2;
    width: 100%;
    text-align: center;
}

#post-detail .post-header .post-category {
    color: #fff;
    font-size: 26px;
    font-weight: 400;
}

#post-detail .post-header .post-title {
    color: #fff;
    font-size: 48px;
    font-weight: 900;
}

#post-detail .post-content figure {
    margin: 0px;
    border: 6px solid var(--color);
    border-radius: 25px;
    overflow: hidden;
}

#post-detail .sidebar-related-posts {
    margin-top: 30px;
    background-color: var(--text-color);
    box-shadow: -2.94px 4px 7px #121A0D00;
    border-radius: 17px;
    overflow: hidden;
}

#post-detail .sidebar-related-posts .sidebar-related-title {
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    padding: 25px 0;
}

#post-detail .sidebar-related-posts  .sidebar-related-item {
    padding: 7px 30px;
    color: #000000;
    font-size: 18px;
    transition: all 0.5s;
}

#post-detail .sidebar-related-posts  .sidebar-related-item a {
    color: #fff;
}

#post-detail .sidebar-related-posts  .sidebar-related-item:hover{
    color: #000;
    opacity: 0.5;
}

#post-detail .sidebar-related-posts .sidebar-related-item.one-bg {
    background-color: var(--color-2);
}

/* form */

#sidebar-area .sidebar-form {
  background: linear-gradient(343deg,#071f42,#488a91);
  padding: 45px 28px;
  position: relative;
  box-shadow: -2.94px 4px 7px #121A0D00;
  border-radius: 17px;
}

#sidebar-area .sidebar-form-title {
  color: #fff;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}

#sidebar-area .sidebar-form .input-area {
  margin-bottom: 15px;
}

#sidebar-area .sidebar-form #sidebar-form {
  position: relative;
  z-index: 1;
}

#sidebar-area .sidebar-form .input-area input {
  padding: 20px 30px;
  width: 100%;
  border-radius: 9px;
  color: #000;
}

#sidebar-area .sidebar-form .input-area input::placeholder {
  color: #000;
  font-size: 18px;
}

#sidebar-area .sidebar-form .input-area input#phoneNumber {
  color: #000;
  font-size: 18px;
  padding: 20px 50px!important;
}

#sidebar-area .sidebar-form .input-area label {
  width: 100%;
  border: 1px dashed #fff;
  padding: 15px 26px;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  border-radius: 9px;
  text-align: center;
  cursor: pointer;
}

#sidebar-area .sidebar-form .form-button {
    width: 100%;
    background-color:var(--color);
    padding: 15px;
    border-radius: 9px;
    color: #fff;
    font-size: 20px;
    border: 2px solid #fff;
    font-weight: 500;
    cursor: pointer;
}


/* pagination */

.pagination {
  margin-top: 30px;
  display: block;
  width: 100%;
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination ul li {
  color: #F1C130;
  margin-right: 8px;
}
.pagination ul li:last-child {
  margin-right: 0;
}
.pagination ul li:hover a {
  color: #1D719D;
}
.pagination ul li.active a {
  border-color: #F1C130;
  background-color: #F1C130;
  color: #fff;
  font-weight: 700;
}
.pagination ul li span,
.pagination ul li a {
  border: solid 1px #e4e4e4;
  background-color: #f4f4f4;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #939393;
  font-size: 16px;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}



#phoneNumber{
    padding: 15px 50px!important;
}

/* category */
#our-services {
    margin-bottom: 30px;
}
.our-services-list .col-sm-6 {
    margin-bottom: 25px;
}

#our-services .our-services-list .os-item {
    border-radius: 30px;
    background-color: #fff;
    box-shadow: -2.94px 4px 7px #121A0D21;
    min-height:100%;
    background: #f3f3f3;
    overflow: hidden;
}

#our-services .os-item .os-content-wrapper {
    padding: 25px 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

#our-services .os-item .os-thumb{
    margin: 0px;
}

#our-services .os-item .os-thumb img {
    aspect-ratio : 5/3;
    object-fit: cover;
}

#our-services .os-content-wrapper .os-thumb {
    margin: 0px;
}

#our-services .os-content-wrapper .os-title {
    color: #1a396d;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}



#our-services .os-content-wrapper .os-desc{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #000;
    font-size: 18px;
}

/* iletişim */
#post-detail.contact-page {
    margin-bottom: 30px;
}

#post-detail.contact-page .contact-content {
    padding: 30px;
    background: var(--bg-color);
    border-radius: 20px;
    height: 100%;
}

#post-detail.contact-page .contact-content .branch-name {
    color: #fff;
    font-size: 28px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}

#post-detail.contact-page .contact-content .contact-list {
    margin-top: 25px !important;
}

#post-detail.contact-page .contact-content .contact-list .contact-list-item{
    margin-bottom: 15px;
}

#post-detail.contact-page .contact-content .contact-list .contact-list-item .contact-list-link {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 10px;
}

#post-detail.contact-page .contact-content .branch-other-title {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

#post-detail.contact-page .contact-content iframe {
    width: 100%;
    height: 300px;
    border-radius: 15px;
}


#post-detail .contact-address-col iframe {
    border: 5px solid #000;
    border-radius: 30px;
    height: 410px;
}

#post-detail .contact-address-col .contact-address-title {
    color: #010101;
    font-size: 30px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 20px;
}

#post-detail .contact-address-col .contact-address-list-item {
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: bold;
}

.contact-address-list {
    padding: 30px 10px;
}
#post-detail .contact-address-col .contact-address-list-item a{
    gap: 15px;
    color: #000;
}

#post-detail .contact-address-col .contact-address-list-item svg {
    background-color: var(--text-color);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 8px;
}

#post-detail .contact-address-col .contact-address-button-cont {
    margin-top: 40px;
}

#post-detail .contact-address-col .contact-page-whatsapp-btn {
    width: 100%;
    display: flex;
    background: linear-gradient(93deg, #27A11A 0%, #34D923 100%) 0% 0% no-repeat padding-box;
    justify-content: center;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
    font-size: 26px;
    gap: 10px;
    align-items: center;
    font-weight: bold;
}

#post-detail .contact-address-col .contact-page-call-btn {
    width: 100%;
    display: flex;
    background: #F1C130;
    justify-content: center;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
    font-size: 26px;
    gap: 10px;
    align-items: center;
    font-weight: bold;
}


/* Hair Transplant Turkey Page */
#post-detail.ht-page .post-header{
    margin-bottom: 0px;
}
#post-detail .post-desc {
    color: #fff;
    margin-top: 15px;
    font-size: 15px;
}

#post-detail .post-link {
    background: #51B37F;
    padding: 10px 30px;
    display: inline-block;
    margin-top: 15px;
    border-radius: 10px;
    color: #fff;
	font-size: 20px;
}

#post-detail .post-header .post-desc {
	font-size: 15px;
    line-height: 1.3;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

#page-what-is-ht {
    padding: 60px 0;
    background: transparent linear-gradient(90deg, #E5F4F7 0%, #FFFFFF 0%, #E9EBF3 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    margin-bottom: 80px;
}
#page-what-is-ht .section-desc{
	font-size: 15px;
    line-height: 1.4;
	padding-top: 15px;
}

#page-what-is-ht .what-image {
    border-radius: 10px;
}

#page-ht-tech{
    margin-bottom: 80px;
}

#page-ht-tech .section-title-head {
    text-align: center;
    margin-bottom: 50px;
}

#page-ht-tech .section-title-head  .section-title{
    margin-bottom: 15px;
}

#page-ht-tech .section-link {
    background: #51B37F;
    padding: 10px 30px;
    display: inline-block;
    margin-top: 15px;
    border-radius: 10px;
    color: #fff;
	font-size: 18px;
}

.folicular-col {
    margin-bottom: 15px;
}

.page-folicular .folicular-box {
    padding: 50px;
    background: #142B4D;
    border-radius: 47px;
    color: #ffff;
	margin-bottom: 25px;
	height:100%;

}

.page-folicular .folicular-box.two-bg{
    background: #F4F5F9;
    color: #142B4D;
}

.page-folicular .folicular-box .subtitle {
    display: inline-block;
    background: #8995a7;
    padding: 10px 30px;
    border-radius: 9px;
    color: #fff;
    margin-bottom: 15px;
}

.page-folicular .folicular-box .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-folicular .folicular-box .desc {
    font-weight: 300;
}

/* Eligible */

#page-is-eligible{
    margin-bottom: 80px;
}

#page-is-eligible .section-title-head {
}

#page-is-eligible .section-title-head .section-title{
    margin-bottom: 15px;
}

#page-is-eligible .section-desc {
	font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

/* assesment */
#page-is-assesment{
    margin-bottom: 80px;
}
#page-is-assesment .post-link {
    background: #51B37F;
    padding: 10px 30px;
    display: inline-block;
    margin-top: 15px;
    border-radius: 10px;
    color: #fff;
}

#page-is-assesment .assesment-inner {
    gap: 15px;
    background: #F4F5F9;
    padding: 35px 45px;
    border-radius: 30px;
}

#page-is-assesment .section-title-head {
    width: 100%;
    flex: 0 0 75%;
}

#page-is-assesment .section-link {
    width: 100%;
    flex: 0 0 20%;
}

#page-is-assesment .section-link a{
    width: 100%;
    text-align: center;
}

#page-is-assesment .section-link-2 {
    width: 100%;
    flex: 0 0 20%;
}

#page-is-assesment .section-link-2 a{
    width: 100%;
    text-align: center;
}

#page-is-assesment .section-desc {
	font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

/* about */

/* about */

#page-about-us {
    padding: 120px 0;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #f3f3f3;
    margin-bottom: 80px;
}
#page-about-us .about-content-area .about-text-area span{
    color: #51B37F;
    font-size: 16px;
}
#page-about-us .about-content-area .about-text-area .about-top-title {
    margin-bottom: 5px;
}
#page-about-us .about-content-area .about-text-area .about-title {
    margin-bottom: 15px;
}



#page-about-us .about-content-area .about-text-area p,
#page-about-us .about-content-area .about-text-area ul,
#page-about-us .about-content-area .about-text-area ol {
    font-size: 18px;
    color: #3A3B3B;
    line-height: 1.2;
    margin-bottom: 5px;
}
#page-about-us .about-content-area .about-text-area h2 {
    font-size: 36px;
}
#page-about-us .about-content-area .about-text-area h3 {
    font-size: 30px;
}
#page-about-us .about-content-area .about-text-area h4,
#page-about-us .about-content-area .about-text-area h5 {
    font-size: 24px;
}
#page-about-us .about-content-area .about-text-area h6 {
    font-size: 20px;
}

#page-about-us .about-content-area .about-text-area h1,
#page-about-us .about-content-area .about-text-area h2,
#page-about-us .about-content-area .about-text-area h3,
#page-about-us .about-content-area .about-text-area h4,
#page-about-us .about-content-area .about-text-area h5 {
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--text-color);
}
#page-about-us .about-content-area .gen-btn {
    background: var(--text-color);
    color: #fff;
    padding: 10px 20px;
    min-width: 220px;
    text-align: center;
    border-radius: 20px;
}
#page-about-us .about-img {
    border-radius: 30px;
    width: 90%;
}

#page-about-us .about-content-area .about-list .list-item {
    display: inline-flex;
    color: #3A3B3B;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 5px;
}
#page-about-us .about-content-area .about-list .list-item svg {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    margin-right: 10px;
}
#page-about-us .about-content-area .about-btn-group {
    gap: 20px;
    margin-top: 15px;
}
#page-about-us .about-row {
    margin-bottom: 25px;
}
#page-about-us .about-row:last-child{
    margin-bottom: 0px;
}
#page-about-us .about-content-area .youtube-btn {
    margin-top: 30px;
    width: max-content;
    color: #fff;
    padding: 4px 20px;
    background-color: #0D1220;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    gap: 10px;
}
#page-about-us .about-content-area .youtube-btn svg {
    width: 30px;
    height: 30px;
    color: red;
}

/* consultation */

#page-is-consultation {
    background: transparent linear-gradient(90deg, #E5F4F7 0%, #FFFFFF 0%, #E9EBF3 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    padding: 60px 0;
}