@font-face {
    font-family: 'Kanit-Light';
    src: url(../fonts/Kanit-Light.ttf);
}

@font-face {
    font-family: 'Kanit-Regular';
    src: url(../fonts/Kanit-Regular.ttf);
}


:root {
    --mehug-first-color: #2b88d7;
    --mehug-second-color: #054aaf;
    --mehug-third-color: #7B96C3;
    --mehug-light-color: #ffffff;
    --mehug-dark-color: #030303;
}

body {
    font-family: 'Kanit-Light';
}
a {
    font-family: 'Kanit-Light';
}
p {
    font-size: 16px;
    font-family: 'Kanit-Light';
}

h1 {
    font-size: 54px;
    font-family: 'Kanit-Regular';
}

h2 {
    font-size: 48px;
    font-family: 'Kanit-Regular';
}

h3 {
    font-size: 36px;
    font-family: 'Kanit-Regular';
}

h4 {
    font-size: 30px;
    font-family: 'Kanit-Regular';
}

h5 {
    font-size: 24px;
    font-family: 'Kanit-Regular';
}

h6 {
    font-size: 18px;
    font-family: 'Kanit-Regular';
}

.mehug-primary-btn {
    color: var(--mehug-light-color)!important;
    background-color: var(--mehug-first-color);
    padding: 8px 22px 8px 22px;
    border-style: none;
    border-radius: 22px;
    font-size: 18px;
    letter-spacing: 0.18px;
    font-family: 'Kanit-Regular';
    text-align: center;
    text-decoration: none!important;
}

.mehug-primary-btn:hover {
    background-color: var(--mehug-second-color);
    color: var(--mehug-light-color);
    cursor: pointer;
}

.mehug-primary-btn-disabled {
    color: var(--mehug-light-color);
    background-color: var(--mehug-third-color);
    padding: 8px 22px 8px 22px;
    border-style: none;
    border-radius: 22px;
    font-size: 18px;
    letter-spacing: 0.18px;
    font-family: 'Kanit-Regular';
    text-align: center;
    cursor: not-allowed;
}

.mehug-secondary-btn {
    color: var(--mehug-dark-color);
    background-color: transparent;
    padding: 8px 22px 8px 22px;
    border-style: solid;
    border-color: var(--mehug-dark-color);
    border-radius: 22px;
    font-size: 18px;
    letter-spacing: 0.18px;
    font-family: 'Kanit-Regular';
    text-align: center;
}

.mehug-secondary-btn:hover {
    color: var(--mehug-light-color);
    border-color: var(--mehug-first-color);
    background-color: var(--mehug-first-color);
    cursor: pointer;
}

.mehug-secondary-btn-disabled {
    color: var(--mehug-dark-color);
    background-color: transparent;
    padding: 8px 22px 8px 22px;
    border-style: solid;
    border-color: var(--mehug-dark-color);
    border-radius: 22px;
    font-size: 18px;
    letter-spacing: 0.18px;
    font-family: 'Kanit-Regular';
    text-align: center;
    opacity: 50%;
    cursor: not-allowed;
}

.mehug-thirdary-btn {
    color: var(--mehug-dark-color);
    display: inline-block;
    position: relative;
    background-color: transparent;
    font-family: 'Kanit-Regular';
    font-size: 24px;
    border-style: none;
}

.mehug-thirdary-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--mehug-dark-color);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.mehug-thirdary-btn:hover {
    cursor: pointer;
}

.mehug-thirdary-btn:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.small-btn {
    padding: 6px 15px 6px 15px;
    font-size: 14px;
    letter-spacing: 0.16px;
}

.mehug-link {
    color: #000000;
    display: inline-block;
    position: relative;
    background-color: transparent;
    font-family: 'Kanit-Regular';
    font-size: 16px;
    border-style: none;
}

.mehug-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--mehug-dark-color);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.mehug-link:hover {
    cursor: pointer;
}

.mehug-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.mehug-menu {
    display: fixed;
    z-index: 9999;
}

.mehug-menu-item {
    color: var(--mehug-dark-color);
    display: inline-block;
    position: relative;
    font-size: 16px !important;
    letter-spacing: 0.18px;
    font-family: 'Kanit-Regular';
    text-align: center;
}

.mehug-menu-item::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--mehug-first-color);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.mehug-menu-item:hover {
    color: var(--mehug-first-color);
}

.mehug-menu-item:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.active {
    color: var(--mehug-first-color);
    cursor: default;
}

.active::after {
    transform: scaleX(1);
}

.mehug-menu-btn {
    color: var(--mehug-dark-color);
    background-color: transparent;
    padding: 4px 22px 4px 22px;
    border-style: solid;
    border-width: 2px;
    border-color: var(--mehug-dark-color);
    border-radius: 22px;
    font-size: 18px;
    letter-spacing: 0.18px;
    font-family: 'Kanit-Regular';
    text-align: center;
}

.mehug-menu-btn:hover {
    color: var(--mehug-light-color);
    border-color: var(--mehug-first-color);
    background-color: var(--mehug-first-color);
    cursor: pointer;
}

.mehug-footer-menu {
    margin-top: 100px;
    margin-bottom: 20px;
}

.mehug-footer-menu-item {
    color: var(--mehug-dark-color);
    display: inline-block;
    position: relative;
    font-size: 16px !important;
    letter-spacing: 0.18px;
    font-family: 'Kanit-Regular';
    text-align: center;
}

.mehug-footer-menu-item:hover {
    color: var(--mehug-first-color);
}

.main-footer {
    display: flex;
}

.main-footer li {
    list-style: none;
    margin-right: 5%;
}

.main-footer li:first-child {
    margin-left: -5%;
}


.social-btn {
    color: var(--mehug-dark-color) !important;
    font-size: 16px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.title-banner-color {
    color: var(--mehug-first-color);
}

.servive-find {
    font-size: 16px;
    font-family: 'Kanit-Light';
    padding-bottom: 20px;
}

.btn-banner {
    display: inline-block;
    width: 370px;
}

.banner-pd {
    padding-top: 80px;
}

.img-baner {
    display: block;
}

.banner-img {
    border-radius: 150px;
    display: inline-block;
    width: 100%;
    padding: 40px;
}

.about-us-home {
    background-color: var(--mehug-first-color);
    border-radius: 25px;
    padding: 50px;
    margin: 25px;
}

.font-white {
    color: var(--mehug-light-color);
}

.font-blue {
    color: var(--mehug-first-color);
}

.word-spacing {
    letter-spacing: 2px;
}

.about-icon {
    margin-top: 25px;
    width: 50px;
}
.icon-card {
    display: inline-block;
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--mehug-second-color);
  }
.pd-50 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.IBMPlex {
    font-family: 'Kanit-Light';
}

.ul-whorwe li {
    color: #000;
    list-style-type: disc;
    padding-top: 20px;
    font-size: 16px;
    font-style: 'Kanit-Regular';
    font-weight: 900;
}

.section-blue {
    background-color: #eaf4f9;
}

.partner-box {
    padding-right: 50px;
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.partner-item {
    padding: 25px;
    filter: grayscale(1);
    transition: transform 0.25s ease-out;
}

.partner-item:hover {
    filter: grayscale(0);
    transform: scale(1.25);
}

.carrer-img {
    width: 105%;
    height: 650px;
    border-radius: 50px 0px 0px 50px;
}

.carrer-bg {
    background-color: var(--mehug-first-color);
    border-radius: 0px 50px 50px 0px;
}

.carrer-pd {
    padding: 50px;
}

.carrer-title {
    padding: 30% 5% 0px 5%;
    font-size: 55px;
    text-align: center;
    
}

.carrer-detail{
    padding: 0px 10% 50px 10%;
    text-align: center;
    color: var(--mehug-light-color);
}
.carrer-btn {
    background-color: var(--mehug-light-color);
    border-style: none;
}

.carrer-btn:hover {
    background-color: var(--mehug-second-color);
}
.service-img {
    width: 100%;
    height: 200px;
    border-radius: 25px 25px 0px 0px;
}

.service-content {
    background-color: #eaf4f9;
    padding: 30px;
    border-radius: 0px 0px 25px 25px;
}

.card-title{
    font-size: 20px!important;
}
.card-pd {

    padding-left: 50px;
    padding-right: 50px;
    transition: transform 0.25s ease-out;

}

.card-pd:hover {
    transform: scale(1.1);
}


.title-service {
    padding-top: 50px;
    padding-bottom: 25px;
}

.sub-title-service {
    color: #000;
    font-size: 24px;
    opacity: 0.5;
}

.ul-service li {
    color: #000;
    list-style-type: disc;
    padding-top: 20px;
    font-size: 16px;
    font-style: 'Kanit-Regular';
    font-weight: 900;
}

.contact-title {
    font-family: 'Kanit-Regular';
    font-size: 18px !important;
}

.contact-details {
    font-family: 'Kanit-Regular';
    font-size: 16px;
}

.contact-card {
    padding-bottom: 30px;
}

.contact-form-title {
    font-family: 'Kanit-Regular';
    font-size: 16px;
}

.bg-contact {
    background-color: var(--mehug-first-color) !important;
}

.about-titile-mehug {
    font-size: 15px;
    color: var(--mehug-light-color);
    background-color: var(--mehug-first-color);
    border: 1px solid var(--mehug-first-color);
    border-radius: 5px;
    padding: 12px 20px;
    display: inline-block;
    font-family: 'Kanit-Regular';
}

.about-titile-mehug:hover {
    color: var(--mehug-light-color);
}

.user-name {
    font-family: 'Kanit-Regular';
}

.user-location {
    font-family: 'Kanit-Regular';
}

.psychologist-name {
    font-family: 'Kanit-Regular';
}

.psychologist-img {
    border-radius: 50%;
}

.nav-item .active {
    color: var(--mehug-light-color);
    border-color: var(--mehug-first-color);
    background-color: var(--mehug-first-color);
}

.motto-card {
    padding-top: 70px;
    padding-bottom: 100px;
    text-align: center;
}

.motto-title {
    font-family: 'Kanit-Regular';
    color: var(--mehug-first-color) !important;
    font-size: 40px !important;
}

.motto {
    font-family: 'Kanit-Regular';
    color: var(--mehug-first-color) !important;
    font-size: 22px !important;
}

.specialities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.speicality-lang {
    width: 100%;
}

.speicality-item {
    padding: 20px 30px 20px 30px;
}

.speicality-img {
    display: inline-block;
}

.error-section {
    padding-top: 200px;
    text-align: center;
}

.error-icon {
    width: 200px;
}

.error-title {
    font-size: 150px;
    margin-top: 0px;
    margin-bottom: -50px;
}

.no-blog {
    margin-bottom: 40px;
    font-size: 40px;
}

.poster-name {
    font-family: 'Kanit-Regular';
}

.post-date {
    font-family: 'Kanit-Regular';
}

.term-career {
    padding-left: 20px;
}

.contact-icon {
    width: 80%;
    border-radius: 30px;
    border-color: #2b8bd7;
    border-style: solid;
}

.contact-pic {
    display: flex;
    justify-content: center;
    align-items: center;

}

.carrer-img {
    background-image: url("/assets/img/homepage/carrer-banner.jpg");
    background-position: center;
    background-size: cover;
}

.career-sec {
    padding: 50px;
}

.career-banner {

    border-radius: 50px;
}

.img-service {
    padding: 50px 50px 25px 50px;
}

.detail-service {
    text-align: center;
}

.img-service-item {
    width: 100%;
    border-radius: 50px;
}

.mehug-center-text {
    display: inline-block !important;
}

.hidden {
    display: none;
}

.title-baner {
    font-size: 45px;
}

.whorwe-title{
    padding: 20px 0px 20px 0px;
    font-size: 48px;
    margin: 30px 130px 30px 130px;
    background-color: var(--mehug-first-color);
    color: var(--mehug-light-color);
    border-radius: 30px;
}
.service-title-main {
    font-size: 40px;
}

.service-title{
    text-align: center;
}

.service-title-2{
    margin-top: 30px;
    text-align: center;
    color: var(--mehug-first-color);
}
.focus-label {
    font-family: 'Kanit-Regular';
}

.file-title {
    font-family: 'Kanit-Regular';
}

.carrer-policy {
    font-family: 'Kanit-Regular';
}

.btn-carrer {
    font-family: 'Kanit-Regular';
    background-color: var(--mehug-first-color);
}

.btn-carrer:hover {
    background-color: var(--mehug-second-color);
}

.change-photo-btn {
    background-color: var(--mehug-first-color);
}

.change-photo-btn:hover {
    background-color: var(--mehug-second-color);
}

.bg-contact {
    background-color: var(--mehug-first-color) !important;
}

.contact-title {
    font-size: 24px !important;
}

.login-btn {
    background-color: var(--mehug-first-color);
}

.login-btn:hover {
    background-color: var(--mehug-second-color);
}

.login-with-google-btn {
    transition: background-color 0.3s, box-shadow 0.3s;
    padding: 12px 16px 12px 42px;
    border: none;
    border-radius: 3px;
    box-shadow: 0 -1px 0 rgb(0 0 0 / 4%), 0 1px 1px rgb(0 0 0 / 25%);
    color: var(--mehug-dark-color);
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
    background-color: var(--mehug-light-color);
    background-repeat: no-repeat;
    background-position: 12px 11px;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.login-with-google-btn:hover {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25);
}

.login-with-google-btn:active {
    background-color: #000000;
}

.login-with-google-btn:focus {
    outline: none;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25), 0 0 0 3px #c8dafc;
}

.login-with-google-btn:disabled {
    filter: grayscale(100%);
    background-color: #ebebeb;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
    cursor: not-allowed;
}
.login-img{
    width: 90%;
    border-radius: 30px;
}
.acc-nav {
    padding-left: 50px;
}

.nav-admin {
    font-family: 'Kanit-Regular';
    background-color: var(--mehug-first-color);
}

.nav-admin.active {
    background-color: var(--mehug-first-color);
}

.mobile-admin-title {
    color: var(--mehug-light-color);
}

.feature-col-large {
    width: 1100px;
    margin: 0 15px;
}

.center-detail{
    color:#455a64;
}

.div-margin {
    margin-left: 50px;
    margin-right: 50px;
}

.center-img {
    width: 80%!important;
    max-height: 500px;
}
.whorwe-img{
    width: 80%;
    border-radius: 30px;
}
.whorwe-img-box{
    padding-top: 0px;
}
.whorwe-details{
    margin-right: 50px;
    margin-left: 50px;
}
.swiper-box {
    position: relative;
    height: 100%;
}

.swiper {
    width: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide:not(.swiper-slide-active) a {
    pointer-events: none;
}
.vision-details{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.vision-detail{
    color: #ffffff;
    font-size: 16px;
    font-family: 'Kanit-Light';
    margin-right: 50px;
    margin-left: 50px;
}


.p-card{
    width: 100%;
}
.doc-card{
    text-align: center;
    border-radius: 30px;
    box-shadow: 0px 4px 5px 5px #e5f1fb;
    overflow: hidden;
    width: 100px;
}

.admin-btn{
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.admin-card{
    margin-top: 25px;
}
.admin-card-button{
    text-align: right;
}
.service-btn{
    font-family: 'Kanit-Light';
    border-radius: 30px!important;
}

.service-price{
    color: var(--mehug-second-color);
    text-align: center;
}

.service-details{
    justify-content: center;
    align-items: center;
}

.service-detail{
    font-size: 18px;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
}
.doctors-section {
    background: #F2F6F6;
    margin: 0;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .doctors-section::after {
    content: "";
    background: url(../img/bg/doctor-shape-img1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    position: absolute;
    top: 0;
    left: 0;
    width: 213px;
    height: 335px;
    opacity: 0.5;
    z-index: -1;
  }
  .about-title{
    color: var(--mehug-light-color);
    font-size: 40px;
  }
  .about-title-2{
    color: var(--mehug-light-color);
    font-size: 35px;
  }
  .assessment-img{
    width: 240px;
    height: 100%;
  }
  @media (max-width: 991.98px) {
    .doctors-section::after {
      display: none;
    }
  }
  .doctors-section::before {
    content: "";
    background: url(../img/bg/doctor-shape-img2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    width: 213px;
    height: 335px;
    z-index: -1;
  }
  @media (max-width: 991.98px) {
    .doctors-section::before {
      display: none;
    }
  }
  @media (max-width: 991.98px) {
    .doctors-section {
      margin: 0;
      padding: 40px 0;
    }
  }
  @media (max-width: 767.98px) {
    .doctors-section .section-header-slider {
      margin-bottom: 20px;
    }
  }
  
  .doctor-shape-img {
    position: relative;
  }
  .doctor-shape-img .doctor-shape-left {
    position: absolute;
    top: 0;
    left: -35px;
  }
  .doctor-shape-img .doctor-shape-right {
    position: absolute;
    top: 230px;
    right: 0;
  }
  @media (max-width: 991.98px) {
    .doctor-shape-img {
      display: none;
    }
  }
  
  @-webkit-keyframes blinker {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  .doctor-profile-widget {
    background: #ffffff;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
  }
  
  .doc-pro-img {
    position: relative;
  }
  
  .doctor-profile-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0px 0px;
  }
  .doctor-profile-img img {
    position: relative;
    border-radius: 8px 8px 0px 0px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    width: 100%;
  }
  .doctor-profile-img:hover img {
    -webkit-transition: scale(1.15);
    -ms-transition: scale(1.15);
    transition: scale(1.15);
  }
  .doctor-profile-img:hover::before {
    -webkit-animation: circle 1s;
    animation: circle 1s;
  }
  .doctor-profile-img::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: "";
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 0;
  }

  @-webkit-keyframes circle {
    0% {
      opacity: 1;
    }
    40% {
      opacity: 1;
    }
    100% {
      width: 200%;
      height: 200%;
      opacity: 0;
    }
  }
  @keyframes circle {
    0% {
      opacity: 1;
    }
    40% {
      opacity: 1;
    }
    100% {
      width: 200%;
      height: 200%;
      opacity: 0;
    }
  }
  .doctor-amount {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .doctor-amount span {
    font-weight: 500;
    font-size: 15px;
    color: #2C2C2C;
    padding: 6px 12px;
    background: #ffffff;
    border-radius: 8px;
  }
  
  .doc-content {
    padding: 20px;
  }
  @media (max-width: 767.98px) {
    .doc-content {
      padding: 15px;
    }
  }
  
  .doc-pro-info {
    padding-bottom: 15px;
  }
  .doc-pro-info .doc-pro-name a {
    font-weight: 600;
    font-size: 20px;
  }
  .doc-pro-info .doc-pro-name a:hover {
    color: #0E82FD;
  }
  @media (max-width: 1399.98px) {
    .doc-pro-info .doc-pro-name a {
      font-size: 18px;
    }
  }
  .doc-pro-info .doc-pro-name p {
    color: #9CA3AF;
    font-size: 12px;
    margin-bottom: 0;
  }
  
  .reviews-ratings p {
    color: #9CA3AF;
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 0;
  }
  .reviews-ratings span {
    margin: 0 4px 0 0;
    padding: 2px 3px;
    min-width: 46px;
    color: #ffffff;
    font-size: 12px;
    background: #FFBC11;
    border-radius: 6px;
  }
  .reviews-ratings span i {
    margin-right: 6px;
  }
  
  .doc-pro-location p {
    margin-bottom: 0;
  }
  .doc-pro-location p i {
    margin-right: 8px;
    font-size: 20px;
    color: #D1D5DB;
  }
  .treatment-section-sixteen .item.item-sixteen .doctor-profile-widget {
    border: none;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.03);
    border-radius: 0;
  }
  .treatment-section-sixteen .item.item-sixteen .doctor-profile-widget .doc-pro-img .doctor-profile-img {
    border-radius: 6px;
  }
  .treatment-section-sixteen .item.item-sixteen .doctor-profile-widget .doc-pro-img .doctor-amount {
    position: absolute;
    top: 10px;
    left: 10px;
  }
  .treatment-section-sixteen .item.item-sixteen .doctor-profile-widget .doc-pro-img .doctor-amount span {
    padding: 5px 10px;
    border-radius: 0;
    color: #0E82FD;
    font-size: 14px;
    font-weight: 600;
  }
  .treatment-section-sixteen .item.item-sixteen .doctor-profile-widget .doc-content .doc-pro-info {
    align-items: start;
    padding-bottom: 10px;
  }
  .treatment-section-sixteen .item.item-sixteen .doctor-profile-widget .doc-content .doc-pro-info .doc-pro-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .treatment-section-sixteen .item.item-sixteen .doctor-profile-widget .doc-content .doc-pro-info .reviews-ratings p span {
    background: none;
    color: #FFBC11;
    font-size: 14px;
    margin: 0 5px 0 0;
  }
  .treatment-section-sixteen .item.item-sixteen .doctor-profile-widget .doc-content .doc-pro-info .reviews-ratings p span i {
    margin-right: 4px;
  }
  .treatment-section-sixteen .item.item-sixteen .doctor-profile-widget .doc-content .doc-pro-location p i {
    font-size: 17px;
  }
  .treatment-section-sixteen .item.item-sixteen .doctor-profile-widget .btn-primary {
    width: 100%;
    border-radius: 0;
    padding: 15px 20px;
    background: rgba(14, 130, 253, 0.1);
    color: #0E82FD;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
    border: none;
    box-shadow: inset 0 0 0 0 #ffffff;
  }

  .item.item-sixteen{
    margin-left: 30px;
    margin-right: 30px;
  }
  @media (max-width: 767.98px) {
    .treatment-section-sixteen .item.item-sixteen .doctor-profile-widget .btn-primary {
      padding: 10px 20px;
      font-size: 18px;
    }
    .treatment-sixteen-slider{
        flex-wrap: wrap;
    }
    .item.item-sixteen{
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 30px;
        margin-bottom: 30px;
      }
  }
  .treatment-section-sixteen .item.item-sixteen .doctor-profile-widget .btn-primary:hover {
    background: var(--mehug-second-color);
    box-shadow: inset 0 100px 0 0 var(--mehug-second-color);;
    color: #ffffff;
  }  

  .treatment-sixteen-slider{
    display: flex;
  }

  .whorwe-detail{
    font-size: 20px!important;
    
  }

  .vision-card {
    text-align: center;
    transition: transform 0.25s ease-out;
    }
    .vision-card:hover {
    transform : scale(1.08);
}
@media only screen and (max-width: 1415px) {
    .title-baner {
        font-size: 40px;;
    }

    .banner-img {
        margin-top: 15%;
    }
}

@media only screen and (max-width: 1200px) {
    .title-baner {
        font-size: 35px;
    }
    .whorwe-title{
        padding: 20px 0px 20px 0px;
        font-size: 35px;
        margin: 30px 100px 30px 100px;
    }
}
@media only screen and (max-width: 1163px) {
    .feature-col-large {
        width: 740px;
    }
}


@media only screen and (max-width: 991px) {
    .about-title{
        font-size: 30px;
      }
    .about-title-2{
    font-size: 25px;
    }
    .whorwe-title{
        padding: 20px 0px 20px 0px;
        font-size: 35px;
        margin: 30px 200px 30px 200px;
    }
    .vision-details{
        display: block;
    }
    .whorwe-details{
        margin-left: 80px;
        margin-right: 80px;
    }
    .whorwe-img-box{
        padding-top: 0px;
    }
    .title-baner {
        font-size: 45px;;
    }

    .career-sec {
        padding: 50px;
        width: 100%;
    }

    .contact-pic {
        display: none;
    }

    .img-baner {
        display: none;
    }

    .vision-card {
        text-align: center;
    }
    .whorwe-mobile {
        text-align: center;
    }

    .ul-whorwe li {
        list-style-type: none;
        margin-left: -20px;
    }

    .service-mobile {
        text-align: center;
    }

    .card-pd {
        padding: 50px 200px 50px 200px;
    }

    .service-btn {
        display: inline-block;
    }

    .ul-service li {
        list-style-type: none;
        margin-left: -20px;
    }

    .carrer-img {

        border-radius: 50px 50px 0px 0px;
        width: 100%;
        height: 300px;
    }

    .carrer-img-mobile {
        padding: 40px;
    }

    .carrer-bg {
        padding: 40px;
        margin: -5px 0px 0px 6px;
        border-radius: 0px 0px 50px 50px;
        transform: scale(0.985);
    }

    .carrer-title {
        font-size: 40px;
        padding: 25px;
    }


    .mehug-menu-item::after {
        background-color: var(--mehug-light-color);
    }

    .mehug-menu-item:hover {
        color: var(--mehug-first-color);
    }

    .policy-menu {
        text-align: center;
    }

    .main-footer {
        margin-left: 30px;
        justify-content: center;
    }

    .copyright-text {
        text-align: center;
    }

    .service-title {
        font-size: 20px;
    }

    .carrer-bg-head {
        padding-right: 0px;
    }

    .carrer-img-mobile {
        margin-right: 10px;
    }

    .carrer-bg {}

}

@media only screen and (max-width: 783px) {
    .feature-col-large {
        width: 350px;
    }
}

@media only screen and (max-width: 750px) {
    .about-title{
        font-size: 25px;
      }
    .about-title-2{
    font-size: 20px;
    }
    .whorwe-title{
        padding: 20px 0px 20px 0px;
        font-size: 35px;
        margin: 30px 120px 30px 120px;
    }
    .title-baner {
        font-size: 45px;;
    }

    .card-pd {
        padding: 50px 100px 50px 100px;
    }

    .carrer-bg {
        padding: 40px;
        margin: -5px 0px 0px 6px;
        border-radius: 0px 0px 50px 50px;
        transform: scale(0.98);
    }

    .no-blog {
        margin-bottom: 40px;
        font-size: 40px;
    }
}

@media only screen and (max-width: 575px) {
    .whorwe-title{
        padding: 20px 0px 20px 0px;
        font-size: 30px;
        margin: 30px 50px 30px 50px;
    }
    .employee-name{
        font-size: 32px;
    }
    .employee-role{
        font-size: 20px;
    }
    .title-baner {
        font-size: 30px;
    }

    .img-baner {
        display: none;
    }

    .btn-banner {
        width: 80%;
    }

    .whorwe-img {
        width: 80%;
    }

    .carrer-title {
        font-size: 32px;
    }

    .carrer-btn {
        display: inline-block;
    }

    .login-link {
        color: var(--mehug-dark-color);
        display: inline-block;
        position: relative;
        font-size: 18px !important;
        letter-spacing: 0.18px;
        font-family: 'Kanit-Regular';
        text-align: center;
    }

    .card-pd {
        padding: 50px 50px 50px 50px;
    }

    .login-link::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--mehug-light-color);
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    .login-link:hover {
        color: var(--mehug-first-color);
    }

    .login-link:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    .active {
        background-color: var(--mehug-first-color);
    }

    .active:hover {
        color: var(--mehug-light-color);
        cursor: default;
    }

    .active::after {
        transform: scaleX(0) !important;
    }

    .motto {
        font-size: 20px !important;
    }

    .psychologist-img {
        width: 100%;
    }

    .carrer-bg {
        padding: 40px;
        margin: -10px 0px 0px 6px;
        border-radius: 0px 0px 50px 50px;
        transform: scale(0.975);
    }
    .vision-detail{
        margin-right: 0px;
        margin-left: 0px;
    }
}