:root {
    --theme-primary-color: #307c70;
    --theme-secondary-color: #f2860a;
    --theme-tertiary-color: #fbb615;
    --font-primary: "Lato", sans-serif;
}

html {
    font-size: 62.5%;
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
}

*,
::after,
::before {
    box-sizing: border-box;
}

a {
    color: #0b57d0;
    line-height: normal;
}

a:visited {
    color: #673ab7;
}

a[href^="tel"] {
    white-space: nowrap;
}

.dvLayout {
    overflow: visible;
}

img {
    border: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

@keyframes leFadeInBottom {
    from {
        opacity: 0;
        transform: translateY(50%);
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.background-white {
    position: relative;
}

.background-white:before {
    content: "";
    position: absolute;
    background-color: #fff !important;
    z-index: -1;
}

.img-title {
    position: relative;
    padding-left: 42px;
    display: inline-block;
}

.img-title:before {
    background-image: url("./../../images/icons/couponb-icon.png");
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 34px;
    height: 32px;
}

.border-line-bottom {
    position: relative;
    padding-bottom: 1.5rem;
}

.border-line-bottom:after {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 117px;
    height: 3px;
    background: rgb(40 142 153 / 57%);
    border-radius: 2px;
}

.border-line-left {
    position: relative;
    padding-left: 42px;
}

.border-line-left:before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 16px;
    width: 2px;
    height: auto;
    background: rgb(40 142 153 / 30%);
    border-radius: 2px;
}

.border-line-left p:last-child {
    margin-bottom: 0;
}

.border-line-left.for-white:before {
    background: rgb(253 253 253 / 30%);
}

@media all and (min-width: 1200px) {

    .custom-container,
    .header-area .container {
        max-width: 1200px;
    }
}

@media all and (min-width: 1400px) {

    .custom-container,
    .header-area .container {
        max-width: 1500px;
    }
}

.shape-move {
    position: absolute;
    bottom: 9%;
}

.shape-move.left {
    left: 5%;
}

.shape-move.right {
    right: 5%;
}

.shape-move img {
    animation: treeMove 4s linear 0s infinite;
    width: 150px;
    opacity: 0.1;
}

@keyframes treeMove {

    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        -webkit-transform: rotate(5deg) translateX(15px);
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        -webkit-transform: rotate(10deg) translateX(30px);
        transform: rotate(10deg) translateX(30px);
    }
}

#return-to-top {
    bottom: 20px;
    cursor: pointer;
    display: none;
    height: 50px;
    right: 20px;
    position: fixed;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    width: 50px;
    z-index: 999;
}

#return-to-top:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 100%;
    background: #000;
    border: 4px rgb(255 255 255 / 70%);
    border-style: outset;
    animation-name: rotateme;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
    z-index: -1;
    transition: border-color 0.3s;
}

#return-to-top img {
    width: 25px;
    opacity: 0.4;
    transition: opacity 0.3s;
    margin-top: 12px;
}

#return-to-top:hover img {
    opacity: 1;
}

@-webkit-keyframes rotateme {
    0% {
        -webkit-transform: rotate(0deg);
        opacity: 1;
    }

    50% {
        -webkit-transform: rotate(180deg);
        opacity: 0.7;
    }

    100% {
        -webkit-transform: rotate(360deg);
        opacity: 1;
    }
}

@-moz-keyframes rotateme {
    0% {
        -moz-transform: rotate(0deg);
        opacity: 1;
    }

    50% {
        -moz-transform: rotate(180deg);
        opacity: 0.7;
    }

    100% {
        -moz-transform: rotate(360deg);
        opacity: 1;
    }
}

@-o-keyframes rotateme {
    0% {
        -o-transform: rotate(0deg);
        opacity: 1;
    }

    50% {
        -o-transform: rotate(180deg);
        opacity: 0.7;
    }

    100% {
        -o-transform: rotate(360deg);
        opacity: 1;
    }
}

@keyframes rotateme {
    0% {
        transform: rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
        opacity: 1;
    }
}

/* === common-heading, h1-h6 === */
.mega-heading,
.large-heading,
.medium-heading,
.small-heading,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1rem;
    color: var(--theme-primary-color);
}

h1,
.mega-heading {
    font-size: 36px;
}

h2,
.large-heading {
    font-size: 30px;
}

h3,
.medium-heading {
    font-size: 26px;
}

h4,
.small-heading {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

/* === common-sec === */
.py-70,
.common-sec {
    padding-top: 70px;
    padding-bottom: 70px;
}

.common-sec {
    position: relative;
    z-index: 0;
}

.common-sec:last-child {
    border-bottom: 1px solid #f6f6fd;
}

.common-sec:nth-child(even):before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f1f7f8;
    z-index: -1;
}

/* === image box === */

.img-box {
    border-radius: 3px;
    transition: 0.5s;
    margin-bottom: 15px;
    text-align: center;
}

.img-box img {
    border-radius: 3px;
}

.img-box:last-child {
    margin-bottom: 0;
}

figure.img-box img+figcaption {
    margin-top: 10px;
    text-align: left;
    padding: 10px;
    border-radius: 3px;
    box-shadow: -5px 5px 20px 0 rgb(0 0 0 / 5%);
}

.w-5 {
    width: 20px;
}

@media (min-width: 992px) {
    .img-box.float-lg-right {
        max-width: 50%;
        padding-left: 15px;
    }

    .img-box.float-lg-left {
        max-width: 50%;
        padding-right: 15px;
    }

    .count-lg-2 {
        -webkit-column-count: 2;
        column-count: 2;
    }

    .count-lg-3 {
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media (min-width: 768px) {
    .count-md-2 {
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media (max-width: 1199px) {

    .py-70,
    .common-sec {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    div[class*="col-lg"] .img-box {
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {

    h1,
    .mega-heading {
        font-size: 30px;
    }

    h2,
    .large-heading {
        font-size: 26px;
    }

    h3,
    .medium-heading {
        font-size: 24px;
    }

    h4,
    .small-heading {
        font-size: 20px;
    }
}

@media (max-width: 767px) {

    h1,
    .mega-heading {
        font-size: 26px;
    }

    h2,
    .large-heading {
        font-size: 24px;
    }

    h3,
    .medium-heading {
        font-size: 20px;
    }

    div[class*="col-md"] .img-box {
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    body {
        font-size: 1.5rem;
    }

    h1,
    .mega-heading {
        font-size: 24px;
    }

    h2,
    .large-heading {
        font-size: 22px;
    }
}

@media (max-width: 425px) {
    .count-2 {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }

    .count-3 {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}

/*======== Custom Btn =========*/
.custom-btn {
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    color: #fff !important;
    z-index: 1;
    transition: all 0.4s ease-in-out 0s;
    overflow: hidden;
    min-width: 150px;
    text-align: center;
}

.custom-btn.view-slide {
    position: relative;
    background-color: var(--theme-primary-color);
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.custom-btn.view-slide:after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    transition: 0.4s;
    z-index: -1;
    opacity: 1;
    width: 20px;
    height: 20px;
    background: var(--theme-secondary-color);
    border-radius: 20px 0 0;
}

.custom-btn.view-slide:hover {
    color: var(--theme-primary-color) !important;
}

.custom-btn.view-slide:hover:after {
    width: 100%;
    height: 100%;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .custom-btn.view-slide {
        padding: 9px 30px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .custom-btn.view-slide {
        padding: 9px 25px;
        font-size: 15px;
        line-height: 24px;
    }

    .custom-btn.view-slide:after {
        width: 17px;
        height: 17px;
    }
}

.theme-btn a {
    color: #fff;
    background: var(--theme-secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    padding: 6px 20px;
    text-decoration: none;
    min-width: 150px;
    line-height: 30px;
    border-radius: 30px;
    border: 2px solid #fff;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-out 0s;
    z-index: 1;
}

.theme-btn a:before {
    content: "";
    position: absolute;
    height: 400px;
    width: 430px;
    top: 50%;
    left: 50%;
    background: var(--theme-primary-color);
    border-radius: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: all 0.5s ease-out 0s;
    z-index: -1;
}

.theme-btn a:hover:before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn a:hover {
    color: #fff !important;
}

.theme-btn.normal a {
    background: transparent;
    border-color: var(--theme-secondary-color);
}

.theme-btn a svg path {
    transition: all 0.5s ease-out 0s;
}

.theme-btn a:hover svg path {
    fill: rgb(255 255 255);
}

@media all and (max-width: 1450px) {
    .theme-btn a {
        font-size: 14px;
        padding: 5px 15px;
        line-height: 28px;
    }
}

/*======== Contact from CSS =========*/
.contactUs-sec {
    padding: 40px 50px;
}

.contactUs .form-item:nth-child(1),
.contactUs .form-item:nth-child(2) {
    flex-basis: 49%;
}

.contactUs .form-item:nth-child(3) {
    flex-basis: 100%;
}

.contactUs {
    border: 1px solid #a8e7e700;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 20px 0 rgba(31, 38, 135, 0.37);
}

.contactUs-sec .contactUs .form-item:nth-child(4) {
    flex-basis: 100%;
}

#issue_type {
    width: 100%;
    border-radius: 2px;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 25px;
    padding: 12px 10px;
    border-radius: 5px;
    font-size: 1.7rem;
    border: 1px solid #ced4da;
}

.mailing-address i {
    color: var(--theme-primary-color);
}

.input-group:not(.has-validation)>.form-control:not(:last-child) {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.topCouponsH .dealerLogo {
    max-width: 270px;
    font-size: 16px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    margin: 10px 0;
    width: 100%;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.topCouponsH .get-code {
    max-width: 110px;
    padding-right: 10px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .topCouponsH .couponBody_grid {
        grid-template-columns: 70px 1fr;
        grid-gap: 5px;
    }

    .topCouponsH .dealerLogo {
        max-width: 250px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
    .topCouponsH .couponBody_grid {
        grid-template-columns: 50px 1fr;
        grid-gap: 5px;
    }

    .topCouponsH .dealInfo .discount {
        font-size: 14px;
    }

    .topCouponsH .dealInfo .discount span {
        font-size: 22px;
    }

    .topCouponsH .get-code {
        max-width: 70px;
        padding-right: 5px;
    }

    .topCouponsH .get-code .getBtn {
        font-size: 12px;
    }

    .topCouponsH .dealerLogo {
        max-width: 185px;
        font-size: 12px;
    }

    .couponBody {
        height: 70px;
    }
}

@media (max-width: 375px) {
    .company-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

    {}

/* Catagory-sec Section Start*/

.catagory-sec .accordion>.faq-box>.faq-title {
    background: #f1f5f9;
    cursor: pointer;
    padding: 15px 50px 15px 15px;
    position: relative;
    width: 100%;
    font-size: 20px;
    margin-bottom: 0;
    border-radius: 0;
    color: #000;
    font-weight: 600;
    border-bottom: 1px solid #e2e2e2;
}

.catagory-sec .accordion>.faq-box {
    box-shadow: none;
}

.catagory-sec .accordion>.faq-box:not(:last-child)>.faq-title {
    border-bottom: solid 1px #e2e2e2;
}

.catagory-sec .accordion>.faq-box>.faq-title:before {
    background: var(--theme-secondary-color);
    content: '';
    height: 2px;
    margin-right: 25px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 14px;
}

.catagory-sec .accordion>.faq-box>.faq-title:after {
    background: var(--theme-secondary-color);
    content: '';
    height: 2px;
    margin-right: 25px;
    position: absolute;
    right: 0;
    top: 50%;
    width: 14px;
}

.catagory-sec .accordion>.faq-box>.faq-title.open:before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.catagory-sec .accordion>.faq-box>.faq-body {
    display: none;
    overflow: hidden;
    padding: 5px;
    box-shadow: rgb(56 56 66 / 10%) 0px 0 15px;
    position: relative;
    z-index: 1;
    border-bottom: solid 1px #F2F2F2;
    background-color: #FFF;
    color: #000;
}

.catagory-sec .accordion>.faq-box>.faq-body>p {
    margin-bottom: 0;
}

.catagory-sec .accordion>.faq-box>.faq-title.open {
    background: var(--theme-primary-color);
    color: #fff;
}

.catagory-sec .accordion>.faq-box>.faq-title.open:before,
.catagory-sec .accordion>.faq-box>.faq-title.open:after {
    background: #fff;
}

.catagory-sec .accordion>.faq-box>.faq-body.active {
    display: block;
}

.catagory-sec .subCatagoryList ul.angle-right {
    padding: 0;
    margin-bottom: 0;
}

.catagory-sec .accordion>.faq-box:not(:last-child) {
    margin-bottom: 0;
}

.catagory-sec .subCatagoryList ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.catagory-sec .accordion>.faq-box>.faq-title:hover,
.accordion>.faq-box>.faq-title.open {
    background: var(--theme-primary-color);
    color: #fff;
}

/* Catagory-sec Section end*/

/* Search Wrapper Start*/


#search-wrapper {
    display: flex;
    border: 1px solid var(--theme-primary-color);
    align-items: stretch;
    border-radius: 50px;
    background-color: #fff;
    overflow: hidden;
    max-width: 400px;
}

#search {
    border: none;
    width: 350px;
    font-size: 15px;
}

#search:focus {
    outline: none;
}

.search-icon {
    margin: 10px;
    color: rgba(0, 0, 0, 0.564);
}

#search-button {
    border: none;
    cursor: pointer;
    color: #fff;
    background-color: var(--theme-primary-color);
    padding: 0px 10px;
}

/* Search Wrapper End*/



.team-list,
.team-member-list {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.team-list-item + .team-list-item {
  margin-top: 50px;
}

.team-list-item .department {
  font-size: 2.4rem;
}

.team-list-item .department + .team-member-list {
  margin-top: 15px;
}

.team-member-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}

.team-member-card {
  background-color: #fff;
  border: 1px solid #fff;
  height: 100%;
}

.team-member-card .team-member-card-thumb {
  position: relative;
  background-color: #eeeeee;
  text-align: center;
  padding: 5px;
  z-index: 0;
}

.team-member-list-item .team-member-card .team-member-card-thumb {
    height: 200px;
}

.team-member-list-item .team-member-card .team-member-card-thumb:before {
  content: "\f007";
  position: absolute;
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font: normal normal normal 75px/1 'Font Awesome 5 Free', 'FontAwesome';
  font-weight: 700;
  color: white;
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
}

.team-member-card .team-member-card-thumb a {
  height: 200px;
  max-height: 100%;
  overflow: hidden;
  padding: 10px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.team-member-card .team-member-card-thumb a:before {
  content: "Loading...";
  position: absolute;
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  z-index: 3;
}

.team-member-card .team-member-card-thumb img {
  object-fit: contain;
  width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 4;
}

.team-member-card .team-member-card-body {
  padding: 10px;
  border-top: 1px solid #afafaf;
}

.team-member-card .team-member-card-body .team-member-name {
  font-size: 1.6rem;
}

.team-member-card
  .team-member-card-body
  .team-member-name
  + .team-member-designation {
  margin-top: 5px;
}

.team-member-card .team-member-card-body .team-member-designation {
  font-size: 1.2rem;
}
/* === Meet the Team Listing Page Ends === */

/* === Meet the Team Profile Page Starts === */
@media (min-width: 768px) {
  .team-member-profile-details .team-member-card {
    border-radius: 5px;
  }

  .team-member-profile-details .team-member-card .team-member-card-thumb a {
    background-color: transparent;
  }

  .team-member-profile-details
    .team-member-card
    .team-member-card-body
    .team-member-name {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 500;
  }

  .team-member-profile-details
    .team-member-card
    .team-member-card-body
    .team-member-designation {
    font-size: 20px;
  }
}

.profile-page-personal-interest {
  padding-top: 15px;
  padding-bottom: 15px;
  border: 1px solid #e0dfdd;
  border-radius: 5px;
  position: relative;
  gap: 5px;
}

.profile-page-personal-interest > p,
.profile-page-personal-interest > div {
  padding-left: 15px;
  padding-right: 15px;
}

.profile-page-personal-interest > p ~ p,
.profile-page-personal-interest > p ~ div{
  margin-top: 10px;
}

.profile-page-personal-interest > p,
.hobbies-block > p,
.certifications-block > p {
  font-weight: bold;
  margin-bottom: 0;
}

.profile-page-personal-interest > p > span {
  font-weight: normal;
}

.hobbies-block > .hobbies-list,
.certifications-block > .certifications-list {
  padding-left: 40px;
  list-style: disc;
  margin-bottom: 0;
}

.profile-page-bio {
  border: 1px solid #e0dfdd;
  border-radius: 5px;
  padding: 15px;
}

.profile-page-gallery {
  padding: 5px;
  border: 1px solid #e0dfdd;
  border-radius: 5px;
}

.profile-page-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 5px;
  justify-items: center;
}

.profile-page-gallery .gallery-card {
  border: 1px solid #e0dfdd;
  border-radius: 5px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-page-gallery .gallery-card:has(iframe) {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.profile-page-gallery .gallery-card:has(iframe):before {
    padding-top: 56.25%;
    display: block;
    content: "";
  }

.profile-page-gallery .gallery-card iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.meet-the-team-section .container:has(.team-member-profile-details) {
  display: grid;
  grid-gap: 5px;
}

@media (min-width: 992px) {
    .meet-the-team-section .container:has(.team-member-profile-details, .profile-page-bio, .profile-page-gallery) {
        grid-template-columns: 1fr 300px;
        grid-template-areas:
            "pb pd"
            "pg pd";
    }

    .meet-the-team-section .container:has(.team-member-profile-details + .profile-page-bio:last-child) {
        grid-template-columns: 1fr 300px;
        grid-template-areas: "pb pd";
    }

    .meet-the-team-section .container:has(.team-member-profile-details + .profile-page-gallery:last-child) {
        grid-template-columns: 1fr;
        grid-template-areas: "pd" "pg";
        .team-member-profile-details .team-member-card {
            display: grid;
            grid-template-columns: 300px 1fr;
            .team-member-card-body {
                border-top: 0;
            }
        }
    }

    .meet-the-team-section .container:not(:has(.profile-page-bio, .profile-page-gallery)) {
        grid-template-columns: 1fr;
        grid-template-areas: "pd";
        .team-member-profile-details .team-member-card {
            display: grid;
            grid-template-columns: 300px 1fr;
            .team-member-profile-details .team-member-card-body {
            border-top: 0;
            }
        }
    }

    .meet-the-team-section .team-member-profile-details {
        grid-area: pd;

        .team-member-card .team-member-card-body {
          border-top: none;
        }
    }

    .meet-the-team-section .profile-page-bio {
        grid-area: pb;
    }

    .meet-the-team-section .profile-page-gallery {
        grid-area: pg;
    }
}

@media (max-width: 991px) {
  .meet-the-team-section hr {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .profile-page-short-details h1.profile-page-name {
    font-size: 26px;
  }

  .profile-page-short-details .profile-page-designation {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .team-member-profile-details .team-member-card .team-member-card-thumb {
    padding: 10px;
  }

  .profile-page-short-details {
    grid-column: 1/-1;
    grid-row: 2/-1;
    border-right: none;
    border-top: 1px solid #afafaf;
    padding: 15px;
  }

  .profile-page-personal-interest {
    grid-template-columns: 1fr;
  }

  .profile-page-personal-interest > p:nth-child(even),
  .profile-page-personal-interest > div:nth-child(even) {
    border-left: none;
  }
}

