@font-face {
  font-family: 'Moderat';
  src: url('../fonts/Moderat-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Moderat_Regular';
  src: url('../fonts/Moderat-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Moderat-Medium';
  src: url('../fonts/Moderat-Medium.ttf') format('truetype');
}
:root {
    --text-color: #24262E;
    --green: #04C6A3;
    --bg-grey: #F6F6F6;
    --grey-2: #9d9d9c;
    --white: #ffffff;
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    text-decoration: none;
    margin: 0;
    padding: 0;
}

/* ================= GLOBAL ================= */
body {
    /*font-family: 'Moderat', sans-serif;*/
    font-family: "Moderat-Regular", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bg-blue {
    background-color: var(--text-color);
}

section {
    margin-bottom: 60px;
}
.inner-sec {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}

.content-flex {
    display: flex;
    flex-direction: column;
    gap: 20px
}
.g-10 {
    gap: 10px
}
.g-15 {
    gap: 15px
}
.g-25 {
    gap: 25px
}
.g-30 {
    gap: 30px
}
.g-40 {
    gap: 40px
}
.g-60 {
    gap: 60px
}
.g-80 {
    gap: 80px
}

.top_tiny_line {
    display: block;
    width: 36px;
    height: 2px;
    background: #9d9d9c;
    margin-bottom: 15px;
}
.sub-heading {
    font-family: 'Moderat';
    font-size: 22px;
    line-height: 30px;
    color: var(--text-color);
    font-weight: 400;
}
.main-heading {
    font-family: 'Moderat';
    font-size: 31px;
    line-height: 40px;
    color: var(--text-color);
    font-weight: 400;
}
.content_wrap .parah {
    font-family: 'Moderat_Regular';
    font-size: 22px;
    line-height: 30px;
    color: var(--text-color);
    font-weight: 400;
}

.primary-btn {
    display: inline-block;
    font-family: 'Moderat_Regular';
    font-size: 22px;
    line-height: 30px;
    background: var(--white);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    padding: 12px 20px 16px;
    transition: all .35s ease;
    margin-top: 20px;
}
.primary-btn:hover {
    background: var(--green);
    color: var(--white);
}

.text_white * {
    color: var(--white);
}
.text_white .top_tiny_line {
    color: var(--white);
}

.title_align_center .main-heading,
.content_align_center .content_wrap {
    text-align: center;
}
.content_align_center .primary-btn {
	align-self: center;
}
.content_align_center .btns {
	justify-content: center;
}

/* ================= HEADER ================= */
.qa-header {
    padding: 45px 0 80px;
}

.qa-navbar .nav-link {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-color);
    margin-left: 25px;
    transition: 0.3s ease;
    padding: 0;
}

.navbar-brand {
    padding-bottom: 40px;
    display: block;
}

.qa-navbar .nav-link:hover {
    color: #000;
}

.nav-item a {
    position: relative;
}

.nav-item a i {
    color: var(--green);
    transform: rotate(320deg);
    opacity: 0;
    position: absolute;
    top: 5px;
    left: 20px;
    transition: all 0.3s ease;
}

.nav-item:hover a i {
    opacity: 1;
    transition: all 0.3s ease;
    left: -20px;
}

.qa-navbar .nav-item:first-child:hover a i {
    left: -25px;
}

.qa-navbar .nav-item:first-child .nav-link {
    margin: 0;
    padding-left: 0;
}

/* Parent */
.qa-mega-parent {
    position: relative;
}

/* Mega Menu Wrapper */
.qa-mega-menu {
    position: absolute;
    left: -85px;
    top: 25px;
    padding-top: 30px;
    width: max-content;
    display: none;
    /* z-index: 999; */
}

/* Align full width correctly */

/* List */
.qa-mega-list {
    list-style: none;
    display: flex;
    gap: 50px;
    padding: 0;
    margin: 0;
}

.qa-mega-list li a {
    text-decoration: none;
    font-size: 14px;
    color: var(--text-color);
    transition: 0.3s ease;
}

.qa-mega-list li a:hover {
    color: rgba(36, 38, 46, 0.5);
    transition: 0.3s ease;
}

/* Show on hover */
.qa-mega-parent:hover .qa-mega-menu {
    display: block;
}

/* ================= HERO SECTION ================= */
/* .qa-hero {
    padding-bottom: 60px;
} */

.qa-hero-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.qa-hero-image {
    width: 100%;
    height: 850px;
    object-fit: cover;
    filter: brightness(85%);
}

.qa-hero-wrapper::after {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.22);
}

.qa-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
    z-index: 5;
}

.qa-hero-subtitle {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 15px;
}

.qa-hero-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.2;
}


/* ================= CARD SECTION ================= */

.arch-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    max-height: 650px;
    cursor: pointer;
    padding-bottom: 100px;
}

.arch-image {
    width: 100%;
    height: 850px;
    object-fit: cover;
    filter: brightness(85%);
}

.arch-item::after {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.42);
    transition: all 0.3s ease;
}

.arch-content {
    position: absolute;
    top: 70px;
    left: 50px;
    color: #fff;
    width: calc(100% - 100px);
    z-index: 5;
}

.arch-number,
.arch-card-name,
.arch-serv {
    color: var(--white);
    font-size: 30px;
}

.arch-inner {
    display: flex;
    align-items: start;
    gap: 70px;
    padding-top: 45px;
}

.arch-con-header,
.arch-con-para {
    font-size: 22px;
    color: var(--white);
    font-weight: 500;
}

.arch-arrow i {
    color: var(--white);
    transform: rotate(320deg);
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 5;
    opacity: 0;
    transition: all 0.3s ease;
}

.arch-item:hover::after {
    background-color: rgba(0, 0, 0, 0.82);
    transition: all 0.3s ease;
}

.arch-item img {
    scale: 1.3;
    transition: all 0.3s ease;
}

.arch-item:hover img {
    scale: 1;
    transition: all 0.3s ease;
}

.arch-item:hover .arch-arrow i {
    opacity: 1;
    transition: all 0.3s ease;
}

.arch-item.bg-color {
    max-height: 100%;
    min-height: 650px;
    height: 100%;
}

.arch-item.bg-color .arch-serv {
    font-size: 22px;
}

.arch-item.bg-color .arch-arrow i {
    opacity: 1;
}

.arch-item.bg-color .arch-con-para {
    color: var(--grey-2);
}

/* ================= DISCOVER ================= */
.dis-con {
    background-color: var(--green);
    border-radius: 14px;
    padding: 50px 60px;
}

.dis-head h4 {
    color: var(--white);
    font-size: 52px;
    font-weight: 400;
}

.dis-image {
    display: flex;
    gap: 16px;
}

.dis-img-item img {
    width: 100%;
    height: auto;
}

.dis-image .dis-img-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #01bf9c;
    opacity: 0.95;
    mix-blend-mode: multiply;
}

.dis-image .dis-img-item {
    position: relative;
}

.dis-head {
    padding-bottom: 150px;
}

/* Filter Buttons */
.qa-project-section {
    margin-top: 160px;
    margin-bottom: 0;
}

.qa-filter-tabs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 50px 0 0;
}

.fil-image {
    overflow: hidden;
    position: relative;
}

.fil-image img {
    width: 100%;
}

.qa-project-card {
    padding: 50px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    margin-bottom: 100px;
}

.qa-project-card:hover {
    background-color: var(--white);
    transition: all 0.3s ease;
}

.qa-project-card:hover img {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.qa-filter-btn {
    border: 1px solid #707070;
    background: transparent;
    padding: 8px 13px;
    border-radius: 30px;
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
    transition: 0.3s ease;
}

.qa-filter-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.qa-team-section {
    padding-top: 100px;
}

.qa-team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 20px;
}

/* Animation */
.qa-project-item {
    transition: 0.3s ease;
}

.qa-project-item.hide {
    display: none;
}

.qa-project-section {
    background-color: var(--bg-grey);
    padding: 80px 0 130px 0;
}

.qa-filter-title {
    color: var(--text-color);
    font-size: 31px;
}

.fil-content {
    padding-top: 15px;
}

.fil-number,
.fil-card-name {
    color: var(--text-color);
    font-size: 22px;
}

.fil-serv {
    font-size: 22px;
    color: rgba(36, 38, 46, 0.5);
}

.fil-inner {
    display: flex;
    align-items: start;
    gap: 70px;
    padding-top: 20px;
}

.fil-con-header {
    font-size: 18px;
    color: var(--text-color);
}

.fil-con-para {
    font-size: 18px;
    color: rgba(36, 38, 46, 0.5);
}

.fil-arrow i {
    color: var(--green);
    transform: rotate(320deg);
    position: absolute;
    bottom: 55px;
    right: 55px;
    z-index: 5;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 20px;
}

.qa-project-card:hover .fil-arrow i {
    opacity: 1;
    transition: all 0.3s ease;
}

/* ================= TEAM SECTION ================= */

.qa-team-slider {
    position: relative;
}

.qa-team-card {
    text-align: left;
    padding: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.qa-team-card:hover {
    background-color: var(--white);
    transition: all 0.3s ease;
}

.qa-team-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 20px;
}

.qa-team-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-color);
}

.qa-team-role {
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-2);
    margin-bottom: 20px;
}

/* Navigation arrows */
.qa-team-prev {
    padding-right: 10px;
}
.qa-team-prev,
.qa-team-next {
    cursor: pointer;
    font-size: 30px;
    color: var(--grey-2);
    transition: 0.3s;
}

.qa-team-prev:hover,
.qa-team-next:hover,
.qa-team-prev.active,
.qa-team-next.active {
    color: var(--text-color);
}

.swiper-button-lock {
    display: block;
}

.qa-team-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
}

/* ================= FOOTER ================= */
.qa-footer {
    background: var(--text-color);
    /* dark navy tone */
    padding: 150px 0 150px;
}

.qa-footer-top {
    margin-bottom: 80px;
}

.qa-footer-col {
    position: relative;
}

/* Thin line above heading */
.qa-footer-heading {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    padding-top: 20px;
    position: relative;
    color: var(--white);
}

.qa-footer-heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;

    background: var(--bg-grey);
}

/* List styling */
.qa-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qa-footer ul li {
    margin-bottom: 12px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
    color: var(--grey-2);
}

.qa-footer ul li:hover {
    color: var(--white);
}

.qa-foot-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/* Office styling */
.qa-office-list li {
    margin-bottom: 18px;
}

.qa-office-list span {
    color: var(--white);
    font-weight: 500;
    padding-bottom: 5px;
    display: block;
}

.qa-footer-search i {
    color: #000;
    font-size: 14px;
}

/* Bottom Branding */
.qa-footer-bottom {
    margin-top: 40px;
}

.qa-footer-brand {
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
}

.qa-footer-brand span {
    font-size: 14px;
    font-weight: 300;
    color: #b5bcc8;
    margin-left: 8px;
}

.qa-footer-reg {
    font-size: 14px;
    margin-top: 25px;
    color: var(--white);
}

/* Responsive */
/* Desktop Mega */
@media (min-width: 992px) {

    .qa-mega-parent {
        position: relative;
    }

    .qa-mega-menu {
        position: absolute;
        left: -85px;
        top: 25px;
        padding-top: 30px;
        width: max-content;
        display: none;
        /* z-index: 999; */
    }

    .qa-mega-parent:hover .qa-mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .qa-mega-list {
        display: flex;
        gap: 50px;
        list-style: none;
        padding: 0;
        margin: 0;
    }


    .qa-mega-list li a {
        text-decoration: none;
        font-size: 14px;
        color: var(--text-color);
        transition: 0.3s ease;
    }

    .qa-mega-list li a:hover {
        color: rgba(36, 38, 46, 0.5);
        transition: 0.3s ease;
    }

    /* Show on hover */
    .qa-mega-parent:hover .qa-mega-menu {
        display: block;
    }
}

@media (max-width: 992px) {}

/* ================= RESPONSIVE ================= */
@media(min-width:1700px) {
    .container {
        max-width: 1600px;
    }
}

@media (max-width: 992px) {
    .qa-hero-title {
        font-size: 42px;
    }

    .qa-hero-image {
        height: 450px;
    }

    .qa-mega-menu {
        display: none;
        padding: 10px 0 10px 20px;
        background: transparent;
    }

    .qa-mega-list {
        display: block;
    }

    .qa-mega-list li {
        margin-bottom: 10px;
    }

    .qa-mega-parent.active .qa-mega-menu {
        display: block;
    }

    .qa-navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        padding: 50px 30px 40px;
        transition: 0.4s ease;
        overflow-y: auto;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .qa-navbar-collapse.show {
        left: 0;
    }

    .qa-menu {
        flex-direction: column;
    }

    .qa-navbar .nav-link {
        font-size: 18px;
        margin: 0 0 0px 0;
    }

    li.nav-item {
        padding-bottom: 15px;
    }

    .nav-item a i,
    .qa-navbar .nav-item:first-child:hover a i {
        opacity: 1;
        left: auto;
        right: 0;
        transform: rotate(0);
    }

    .nav-item:hover a i {
        left: auto;
    }

    /* Mobile Mega */
    .qa-mega-menu {
        position: static;
        display: none;
        padding: 0px 0 0 15px;
        box-shadow: none;
    }

    .qa-mega-parent.active .qa-mega-menu {
        display: block;
    }

    .qa-mega-list {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0 0;
    }

    .navbar-toggler {
        border: 0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: 0;
    }

    /* Smooth dropdown animation */
    .qa-mega-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        display: block;
    }

    .qa-mega-parent.active .qa-mega-menu {
        max-height: 500px;
        /* large enough */
    }

    .qa-header {
        padding: 45px 0 45px;
    }

    .qa-footer-top {
        row-gap: 50px;
    }

    .qa-footer-search {
        position: static;
        margin-top: 20px;
    }

    .dis-head {
        padding-bottom: 25px;
    }

    .qa-project-card {
        padding: 30px;
    }

    .qa-team-card {
        padding: 20px;
    }

    .navbar-brand {
        padding: 0;
    }

    .qa-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-toggler.collapsed i {
        color: var(--text-color);
        transition: all 0.4s ease;
    }

    .navbar-toggler i {
        color: var(--green);
        font-size: 25px;
        transition: all 0.4s ease;
    }
}

@media (max-width: 576px) {
    .qa-hero-title {
        font-size: 30px;
    }

    .qa-hero-subtitle {
        font-size: 16px;
    }

    .qa-hero-image {
        height: 350px;
    }

    .qa-foot-two-col {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}






/* Case study */

.project-hero {
    padding: 60px 0 30px;
    background: #f5f5f5;
}

/* Breadcrumb */
.project-breadcrumb {
    font-size: 14px;
    color: var(--grey-2);
    display: flex;
    gap: 6px;
    align-items: center;
    font-weight: 400;
}

.project-breadcrumb a {
    color: var(--grey-2);
    text-decoration: none;
}

.project-breadcrumb .active {
    color: var(--text-color);
}

/* Divider */
.project-divider {
    margin: 18px 0 40px;
    border-color: var(--grey-2);
    border-bottom: 1px solid #9d9d9c;
}

/* Title */
.project-title h1 {
    font-family: 'Moderat';
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 4px;
}

.project-title .subtitle {
    font-family: 'Moderat';
    color: var(--grey-2);
    font-size: 42px;
}

/* Info Items */
.project-info {
    padding-top: 90px;
}

.info-item span {
    display: block;
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 0px;
}

.info-item p {
    font-size: 22px;
    color: var(--grey-2);
    margin: 0 0 18px;
}

/* Description */
/*.project-description {
    margin-top: 10px;
}*/

.project-description p {
    font-family: 'Moderat';
    font-size: 27px;
    line-height: 34px;
    color: var(--text-color);
}

.case-carousel {
    padding-top: 90px;
}

.case-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    height: 100%;
    padding-top: 70px;
}

.qa-content-section {
    padding: 90px 0;
}

/* spacing between columns */
.qa-content-row {
    row-gap: 40px;
}

/* column */
.qa-content-col {
    padding-right: 60px;
}

/* divider line */
.qa-top-line {
    width: 30px;
    height: 2px;
    background: #707070;
    margin-bottom: 25px;
}

/* intro text */
.qa-intro-text {
    font-family: 'Moderat';
    font-size: 27px;
    line-height: 34px;
    color: var(--text-color);
    max-width: 350px;
}

/* numbering */
.qa-number {
    font-size: 22px;
    color: var(--grey-2);
    display: block;
    margin-bottom: 4px;
}

/* heading */
.qa-heading {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
}

/* paragraph */
.qa-text {
    font-size: 22px;
    line-height: 30px;
    color: var(--text-color);
    margin-bottom: 18px;
}

/* more link */
.qa-more {
    font-size: 22px;
    color: var(--grey-2);
    text-decoration: none;
}

.qa-more:hover {
    color: #000;
}

@media (max-width:991px) {

    .qa-content-col {
        padding-right: 20px;
    }

    .qa-intro-text {
        max-width: 100%;
    }

}

/* video section */

.qa-video-section {
    padding: 80px 0 60px;
}

/* Video */
.qa-video-wrapper {
    margin-bottom: 300px;
}

.qa-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Quote container */
.qa-quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Quote text */
.qa-quote-text {
    font-family: 'Moderat';
    font-size: 27px;
    line-height: 34px;
    color: var(--text-color);
    margin-bottom: 90px;
}

/* Footer layout */
.qa-quote-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* Author */
.qa-author p {
    display: block;
    font-family: 'Moderat-Medium';
    font-size: 22px;
    line-height: 26px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.qa-author span {
    display: block;
    font-family: 'Moderat-Medium';
    font-size: 22px;
    line-height: 26px;
    color: var(--grey-2);
}

/* Logo */
.qa-logo img {
    height: 100%;
}

@media (max-width:768px) {

    .qa-quote-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .qa-video-section {
        padding: 60px 0 80px;
    }

}


.qa-lead-content {
    padding-right: 70px;
    padding-left: 70px;
    width: 90%;
}

.qa-line {
    width: 30px;
    height: 2px;
    background: #777;
    margin-bottom: 20px;
}


/* OVERLAY */

.qa-overlay {
    padding-left: 70px;
}

.qa-name {
    margin: 0;
    font-size: 14px;
}

.qa-role {
    font-size: 13px;
    margin-bottom: 20px;
}

/* GREEN LINE */

.qa-line.green {
    background: var(--green);
}

.qa-image-card * {
    color: var(--white);
}

.qa-image-card .qa-text {
    margin-bottom: 3px;
}

/* BUTTON */

.qa-btn {
    display: inline-block;
    padding: 12px 20px 16px;
    background: var(--white);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all .35s ease;
    margin-top: 30px;
}
.qa-overlay .qa-btn {
    font-size: 22px;
    line-height: 30px;
}
/* BUTTON HOVER */

.qa-image-card:hover .qa-btn {
    background: var(--green);
    color: var(--white);
}





.qa-lead-section {
    background: var(--bg-grey);
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.qa-lead-left,
.qa-lead-right {
    display: flex;
    align-items: center;
    padding: 120px 0px 230px;
}

.qa-image-card {
    position: relative;
}

.qa-lead-right:hover .qa-right-image img {
    transform: scale(1.08);
}

.qa-right-image {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    padding: 0;
    overflow: hidden;
}

.qa-right-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.qa-right-image-mobile {
    display: none;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .qa-lead-left {
        padding: 80px 70px;
    }

    .qa-lead-right {
        padding: 80px 00px;
    }

    .qa-lead-content {
        padding: 0;
        width: 100%;
    }

    .qa-right-image {
        position: absolute;
        content: "";
        right: 0;
        top: unset;
        height: 52%;
        width: 100%;
        padding: 0;
        overflow: hidden;
        bottom: 0;
    }

    /* .qa-lead-right{
    position: relative;
}
.qa-right-image-mobile{
    display: block;
    width:100%;
height:100%;
object-fit:cover;
transition:transform 0.8s ease;
position: absolute;
top: 0;
right: 0;
content: "";
}
.qa-overlay{
left:40px;
top:40px;
} */

}




.qa-profile-section {
    padding: 100px 0;
}

/* IMAGE */

.qa-profile-image img {
    width: 100%;
    max-width: 360px;
    display: block;
}

/* CONTENT */
/* 
.qa-profile-content{
max-width:520px;
} */

.qa-name {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 4px;
}

.qa-role {
    font-size: 22px;
    color: var(--grey-2);
    margin-bottom: 25px;
    font-weight: 400;
}

/* META */


.qa-meta strong {
    font-weight: 500;
}

/* BIO TEXT */

.qa-bio p {
    font-size: 22px;
    line-height: 30px;
    color: var(--text-color);
    margin-bottom: 18px;
}

/* SPACING BETWEEN IMAGE AND TEXT */

.qa-profile-row {
    column-gap: 80px;
}

.qa-project-grid {
    padding-top: 50px;
}

@media(max-width:1300px) {
    .qa-team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width:1300px) {
    .qa-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:992px) {

    .qa-profile-section {
        padding: 70px 0;
    }

    .qa-profile-row {
        row-gap: 40px;
        column-gap: 0;
    }

    .qa-profile-image img {
        max-width: 280px;
    }

}

@media(max-width:767px) {
    .qa-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:575px) {
    .qa-team-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}