@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

a {
    text-decoration: none;
}

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

.justify-center {
    justify-content: center;
}

header {
    background-color: #fff;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
}

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

header .container .logo {
    display: flex;
    align-items: center;
}

header .container .logo img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

nav ul {
    margin: 0;
    padding: 0;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    transition: 0.5s;
}

nav ul li.active a,
nav ul li a:hover {
    color: #6EC1E4;
}

.common-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    background-repeat: no-repeat;
    transition: 0.5s;
    background-image: url('../images/right-icon.svg');
}

.black-button {
    background-color: #000;
}

.white-button {
    background-color: #fff;
    background-image: url('../images/right-icon-dark.svg');
    color: #000;
}

.blue-button {
    background-color: #11B1D0;
}

.mobile-menu {
    display: none;
    width: 40px;
    background-color: #fff;
}

.mobile-menu img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

.close-menu {
    display: none;
    position: fixed;
    top: 15px;
    right: 20px;
    width: 40px;
    z-index: 10001;
}

.close-menu img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

.main-banner {
    position: relative;
}

.main-banner::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url('../images/innerbanneroverlay.png');
    z-index: 2;
}

.homepage-main-banner::after {
    background-image: url('../images/homepagebanneroverlay.png');   
}

.main-banner img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    position: relative;
    z-index: 1;
}

.main-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
}

.main-banner-content h1 {
    color: #fff;
    text-align: center;
    font-weight: 700;
    margin: 0;
}

.main-banner-content h1 span {
    color: #11B1D0;
}

.main-banner-content h5 {
    text-transform: uppercase;
    color: #1ED975;
    text-align: center;
    font-weight: 600;
}

.main-banner-content p {
    font-weight: 500;
    text-align: center;
    color: #fff;
}

.main-banner-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brief-section {
    background-color: #F8F8F8;
    border-bottom: 1px solid #E3E3E3;
    color: #000;
    text-align: center;
}

.brief-section p {
    margin: 0;
}

.heading-h2 {
    color: #000;
    font-weight: 700;
}

.heading-h3 {
    color: #000;
    font-weight: 700;
}

.heading-h4 {
    color: #000;
    font-weight: 700;
}

.heading-tagline {
    font-weight: 500;
    color: #11B1D0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.heading-tagline img {
    height: auto;
    display: block;
}

.text-content h6 {
    font-weight: 700;
    color: #000;
}

.text-content p {
    font-weight: 400;
    color: #000;
}

.text-image-section .image-content img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

.text-content ul {
    margin: 0;
    padding: 0;
}

.text-content ul li {
    list-style: none;
    position: relative;
    background-image: url('../images/check-bullet-icn.svg');
    background-position: left 2px;
    background-repeat: no-repeat;
}

.text-content ul li strong {
    display: block;
}

.expertise-section {
    background-color: #F5FDFF;
}

.expertise-item {
    background-color: #fff;
    border: 1px solid #BAF4FF;
    box-sizing: border-box;
    position: relative;
}

.expertise-item h3 {
    color: #000;
    font-weight: 700;
}

.expertise-item h4 {
    color: #000;
    font-weight: 500;
}

.expertise-item p {
    color: #777;
    font-weight: 500;
    margin: 0;
}

.expertise-item a img {
    height: auto;
    display: block;
    border: none;
}

.testimonial-content {
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
}

.testimonial-item {
    position: relative;
    border: 1px solid #E9E9E9;
    background-color: #F8F8F8;
    box-sizing: border-box;
    margin: 0 auto;
}

.testimonial-content p {
    font-weight: 400;
    color: #000;
    text-align: center;
}

.testimonial-content h3 {
    margin: 0;
    color: #000;
    font-weight: 500;
    text-align: center;
}

.user-img {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

.user-img,
.quotes-icn {
    height: auto;
    margin: 0 auto;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    margin: 0 auto;
}

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copy span, 
.footer-copy a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-copy a {
    border-left: 1px solid rgba(255, 255, 255, 0.7);
}

.icn-img img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

.blue-bg {
    background-color: #F5FDFF;
}

.heading-img img {
    margin: 0 auto;
}

.value-item {
    background-color: #fff;
    border: 1px solid #ADF2FF;
    text-align: center;
    box-sizing: border-box;
}

.value-item h3 {
    font-weight: 600;
    color: #000;
    text-align: center;
}

.value-item p {
    margin: 0;
    font-weight: 400;
    color: #000;
    text-align: center;
}

.team-item img {
    height: auto;
    display: block;
    border: none;
}

.team-item .team-item-img {
    border: 1px solid #D5EFF5;
    box-sizing: border-box;
}

.team-item .team-item-img img {
    width: 100%;
}

.team-item .view-profile img {
    max-width: 100%;
}

.team-item-content {
    background-color: #F5FDFF;
    border: 1px solid #D5EFF5;
    border-top: none;
    position: relative;
}

.team-item-content h3 {
    font-weight: 700;
    color: #000;
    text-align: center;
}

.team-item-content p {
    margin: 0;
    color: #7A7A7A;
    text-align: center;
    font-weight: 400;
}

.view-profile {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    cursor: pointer;
}

.team-profile-content {
    display: none;
}

.blk-bg {
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
}

.team-profile-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    background-color: #fff;
    display: none;
}

.team-profile-popup-content .team-item-img {
    overflow: hidden;
}

.team-profile-popup-content .team-item-img img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

.close-popup {
    position: absolute;
    cursor: pointer;
    z-index: 2;
}

.close-popup img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

.team-profile-popup .team-profile-content {
    display: block;
}

.team-profile-popup-content .team-item-content h3 {
    text-align: left;
}

.team-profile-popup-content .team-item-content p {
    color: #7A7A7A;
    text-align: left;
    font-weight: 400;
}

.team-profile-popup-content .team-item-content .team-profile-content p {
    color: #000;
}

.team-profile-popup .view-profile {
    display: none;
}

.specialization-section .heading-text {
    color: #000;
    font-weight: 400;
    text-align: center;
}

.specialization-section .heading-text strong {
    font-weight: 700;
}

.contact-section .heading-text {
    font-weight: 400;
    text-align: center;
    color: #000;
}

.contact-content {
    background-color: #fff;
    margin: 0 auto;
}

.contact-content .left-content {
    background-color: #000;
    background-image: url('../images/contact-img01.svg');
    background-position: right bottom;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.contact-content .right-content {
    box-sizing: border-box;
}

.contact-content .left-content h3 {
    font-weight: 700;
    color: #fff;
}

.contact-content .left-content p {
    color: #fff;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.contact-content .left-content p a {
    text-decoration: none;
    color: #fff;
}

.form-field label {
    font-weight: 500;
    color: #8D8D8D;
    display: block;
}

.form-field label sup {
    color: #f00;
}

.form-field input:not(input[type="checkbox"]),
.form-field textarea {
    color: #000;
    width: 100%;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid #000;
    resize: none;
    outline: none;
    font-family: "Inter", sans-serif;
}

.form-button {
    display: flex;
    justify-content: end;
}

.form-button input,
.form-button button {
    background-color: #000;
    font-family: "Inter", sans-serif;
    color: #fff;
    box-sizing: border-box;
    outline: none;
    resize: none;
    cursor: pointer;
}
    
    .tnccheckbox {
        font-size: 11px !important;
        line-height: 16px !important;
        color: #5C5C5C !important;
        position: relative;
        padding-left: 24px;
    }
    
    .tnccheckbox input[type="checkbox"] {
        position: absolute;
        top: 2px;
        left: 0;
    }

.map-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.text-container {
    width: calc(100% - 32px);
    margin: 0 auto;
}

.text-container a {
    color: #11B1D0;
    text-decoration: none;
}

@media (min-width: 768px) {
    header {
        padding: .347vw 2.083vw;
    }

    header .container .logo {
        width: 11.458vw;
        margin-right: 5.208vw;
    }

    nav ul {
        display: flex;
        gap: 3.125vw;
    }

    nav ul li a {
        font-size: 1.111vw;
        line-height: 1.667vw;
    }

    .common-button {
        border-radius: .694vw;
        font-size: 1.111vw;
        line-height: 1.111vw;
        padding: 1.528vw 3.819vw 1.528vw 2.083vw;
        background-position: calc(100% - 2.083vw) center;
        background-size: 1.042vw;
    }

    .common-button:hover {
        background-position: calc(100% - 1.389vw) center;
    }

    .main-banner-content {
        width: 82.292vw;
    }

    .main-banner-content h5 {
        font-size: 1.528vw;
        line-height: 2.431vw;
        margin: 0 0 1.736vw;
    }

    .main-banner-content h1 {
        font-size: 4.167vw;
        line-height: 5vw;
    }

    .main-banner-content p {
        margin: 1.111vw 0 0;
        font-size: 1.528vw;
        line-height: 2.361vw;
    }

    .main-banner-buttons {
        margin-top: 3.472vw;
        gap: 1.597vw;
    }

    .brief-section {
        padding: 2.639vw 9.375vw;
    }

    .brief-section p {
        font-size: 1.667vw;
        line-height: 2.431vw;
    }

    .text-image-section {
        padding-top: 6.944vw;
    }

    .text-image-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        max-width: 81.25vw;
        margin: 0 auto;
    }

    .service-section .text-image-content {
        max-width: 83.333vw;
    }

    .align-top .text-image-content {
        align-items: start;
    }

    .text-image-section.reverse .text-image-content {
        flex-direction: row-reverse;
    }

    .text-image-section .text-content {
        width: 35.903vw;
        margin: 0 0 0 4.861vw;
    }

    .text-image-section.reverse .text-content {
        margin: 0 4.861vw 0 0;
    }

    .specialization-section .text-content {
        width: calc(100% - 47.222vw - 5.903vw);
        margin: 0;
    }
    .specialization-section.reverse .text-content {
        margin: 0;
    }

    .service-section .text-content {
        width: 39.583vw;
        margin: 0 0 0 4.861vw
    }

    .service-section.reverse .text-content {
        margin: 0 4.861vw 0 0;
    }

    .text-image-section .image-content {
        width: calc(100% - 35.903vw - 4.861vw);
    }

    .specialization-section .image-content {
        width: 47.222vw;
        margin: 0 5.903vw 0 0;
    }

    .specialization-section.reverse .image-content {
        margin: 0 0 0 5.903vw;
    }

    .service-section .image-content {
        width: calc(100% - 39.583vw - 4.861vw);
    }

    .heading-h2 {
        margin: 0 0 2.083vw;
        font-size: 3.472vw;
        line-height: 4.167vw;
    }

    .heading-h3 {
        margin: 0 0 1.875vw;
        font-size: 2.778vw;
        line-height: 2.778vw;
    }

    .heading-h4 {
        margin: 0 0 1.389vw;
        font-size: 2.083vw;
        line-height: 2.778vw;
    }

    .heading-tagline {
        margin: 0 0 1.389vw;
        font-size: 1.042vw;
        line-height: 1.597vw;
    }

    .heading-tagline img {
        width: 1.389vw;
        margin-right: .556vw;
    }

    .text-content h6 {
        font-size: 1.389vw;
        line-height: 2.083vw;
        margin: 0 0 1.389vw;
    }

    .text-content p {
        font-size: 1.25vw;
        line-height: 2.083vw;
        margin: 0 0 1.944vw;
    }

    .text-content ul li {
        margin: 0 0 1.389vw;
        font-size: 1.25vw;
        line-height: 1.806vw;
        padding-left: 2.5vw;
        background-size: 1.528vw;
    }

    .expertise-section {
        margin-top: 6.944vw;
        padding: 6.944vw 5.208vw;
    }

    .expertise-content {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -1.042vw;
    }

    .expertise-item {
        margin: 0 1.042vw;
        width: calc(25% - 2.084vw);
        padding: 2.083vw 2.083vw 6.25vw;
        border-radius: 1.389vw;
    }

    .expertise-item h3 {
        margin: 0 0 .694vw;
        font-size: 1.389vw;
        line-height: 2.014vw;
    }
    
    .expertise-item h4 {
        margin: 0 0 1.042vw;
        font-size: .972vw;
        line-height: 1.389vw;
    }
    
    .expertise-item p {
        font-size: .903vw;
        line-height: 1.25vw;
    }

    .expertise-item a {
        position: absolute;
        left: 2.083vw;
        bottom: 2.083vw;
    }

    .expertise-item a img {
        width: 2.431vw;
    }

    .testimonial-section {
        padding-top: 6.944vw;
    }

    .testimonial-content {
        max-width: 70.208vw;
    }

    .testimonial-item {
        padding: 2.083vw 4.167vw 0;
        border-radius: .694vw;
        margin-bottom: 2.5vw;
    }

    .testimonial-item {
        padding-bottom: 4.861vw;
    }

    .testimonial-content p {
        margin: 1.667vw 0;
        font-size: 1.25vw;
        line-height: 2.361vw;
    }

    .testimonial-content h3 {
        font-size: 1.528vw;
        line-height: 2.014vw;
    }

    .quotes-icn {
        width: 16.319vw;
    }

    .user-img {
        width: 5.972vw;
        bottom: -2.5vw;
    }

    footer {
        margin-top: 6.944vw;
        padding-top: 4.167vw;
    }

    .footer-logo {
        width: 11.458vw;
        margin: 0 auto;
    }

    .footer-line {
        margin: 1.389vw auto 1.736vw;
        font-size: 1.25vw;
        line-height: 2.083vw;
    }

    .footer-social {
        margin-bottom: 2.778vw;
    }

    .footer-copy {
        padding: 2.083vw 0;
    }

    .footer-copy span, 
    .footer-copy a {
        font-size: 1.25vw;
        line-height: 1.528vw;
    }

    .footer-copy a {
        padding-left: 1.597vw;
        margin-left: 1.597vw;
    }

    .icn-img {
        width: 4.167vw;
        margin-bottom: 1.736vw;
    }

    .blue-bg {
        padding-bottom: 6.944vw;
    }

    .value-section {
        margin-top: 6.944vw;
        padding-top: 5.556vw;
    }

    .heading-img {
        margin-bottom: .694vw;
    }

    .value-section .container {
        width: 81.944vw;
        margin: 0 auto;
    }

    .value-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 -0.694vw;
    }

    .value-item {
        width: calc(33.333% - 1.389vw);
        margin: 0 .694vw 1.389vw;
        padding: 1.667vw 1.042vw;
        border-radius: 1.042vw;
    }

    .value-item h3 {
        margin: .278vw 0 .694vw;
        font-size: 1.389vw;
        line-height: 1.944vw;
    }

    .value-item p {
        font-size: 1.111vw;
        line-height: 1.667vw;
    }

    .team-section {
        padding: 6.944vw 3.472vw 0;
    }

    .team-content {
        display: flex;
        gap: 1.389vw;
    }

    .team-item {
        width: 25%;
    }

    .team-item .team-item-img {
        border-radius: 1.389vw 1.389vw 0 0;
        height: 24.306vw;
        overflow: hidden;
    }

    .team-item .team-item-img img {
        border-radius: 1.389vw 1.389vw 0 0;
    }

    .team-item-content {
        border-radius: 0 0 1.389vw 1.389vw;
        padding: 1.389vw 1.736vw 4.861vw;
    }

    .team-item-content h3 {
        font-size: 1.528vw;
        line-height: 1.944vw;
        margin: 0 0 .694vw;
    }

    .team-item-content p {
        font-size: .972vw;
        line-height: 1.389vw;
        min-height: 2.778vw;
    }

    .view-profile {
        bottom: 1.389vw;
    }

    .team-item .view-profile img {
        width: 2.431vw;
        height: 2.431vw;
    }

    .team-profile-popup {
        width: 56.944vw;
        height: 34.722vw;
        border-radius: 1.389vw;
    }

    .team-profile-popup-content {
        display: flex;
        flex-wrap: wrap;
    }

    .team-profile-popup-content .team-item-img {
        width: 26.042vw;
        height: 34.722vw;
        border-radius: 1.389vw 0 0 1.389vw;
    }

    .team-profile-popup-content .team-item-content {
        width: calc(100% - 26.042vw);
        height: 34.722vw;
        padding: 2.083vw;
        box-sizing: border-box;
        overflow-y: auto;
        border-radius: 0 1.389vw 1.389vw 0;
    }

    .team-profile-popup-content .team-item-content .team-profile-content p {
        margin: 0 0 1.111vw
    }

    .close-popup {
        top: 1.042vw;
        right: 1.042vw;
        width: 2.431vw;
    }

    .specialization-section .heading-text {
        max-width: 73.611vw;
        margin: -0.694vw auto 4.861vw;
        font-size: 1.25vw;
        line-height: 2.083vw;
    }

    .no-space-bottom {
        margin-bottom: -6.944vw;
    }

    .contact-section {
        padding-top: 6.944vw;
    }

    .contact-section .heading-text {
        max-width: 55.556vw;
        margin: -0.694vw auto 3.472vw;
        font-size: .972vw;
        line-height: 1.597vw;
    }

    .contact-content {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row-reverse;
        padding: .694vw;
        border-radius: .694vw;
        max-width: 83.056vw;
    }

    .contact-content .left-content {
        width: 32.639vw;
        border-radius: .694vw;
        background-size: 14.931vw;
        padding: 2.778vw;
        position: relative;
    }

    .contact-content .left-content h3 {
        font-size: 1.944vw;
        line-height: 2.917vw;
        margin: 0 0 2.778vw;
    }

    .contact-content .left-content p {
        font-size: 1.111vw;
        line-height: 1.667vw;
        margin: 0 0 1.25vw;
    }

    .contact-content .left-content p img {
        width: 1.667vw;
        height: 1.667vw;
        margin-right: 1.736vw;
    }

    .contact-content .left-content .contact-social {
        position: absolute;
        left: 2.778vw;
        bottom: 1vw;
    }

    .contact-content .right-content {
        padding: 3.472vw;
        width: calc(100% - 32.639vw);
    }

    .form-field {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -1.389vw 3.125vw;
    }

.tnccheckbox-field {
    margin-top: -2vw;
}

    .form-field .half-field {
        width: calc(50% - 2.778vw);
        margin: 0 1.389vw;
    }

    .form-field .full-field {
        width: calc(100% - 2.778vw);
        margin: 0 1.389vw;
    }

    .form-field label {
        font-size: .833vw;
        line-height: 1.389vw;
    }

    .form-field input:not(input[type="checkbox"]),
.form-field textarea  {
        font-size: .972vw;
        line-height: 1.389vw;
        padding: .347vw 0 .694vw;
    }

    .form-field textarea {
        height: 4.861vw;
    }

    .form-button input,
    .form-button button {
        font-size: 1.111vw;
        line-height: 1.667vw;
        padding: 1.042vw 3.472vw;
        border-radius: .347vw;
    }

    .text-container {
        max-width: 83.333vw;
    }

    .text-container p {
        font-size: 1.111vw;
        line-height: 1.667vw;
        margin: 0 0 1.736vw;
    }

    .text-container ul li {
        font-size: 1.111vw;
        line-height: 1.667vw;
        margin: 0 0 .694vw;
    }
}

@media (max-width: 767px) {
    header {
        padding: 10px 15px 10px 15px;
    }

    .mobile-menu {
        display: block;
    }

    header .container .logo {
        margin: 0;
        width: 130px;
    }

    nav {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        background-color: #fff;
        z-index: 1000;
        padding-top: 60px;
        box-sizing: border-box;
        height: 100vh;
        display: none;
    }

    nav ul li a {
        padding: 15px 20px;
        display: block;
    }

    header .common-button {
        display: none;
    }

    .common-button {
        border-radius: 10px;
        font-size: 14px;
        line-height: 16px;
        padding: 12px 35px 12px 20px;
        background-position: calc(100% - 10px) center;
        background-size: 10px;
    }

    .main-banner-content {
        width: calc(100% - 32px);
        margin: 0 auto;
    }

    .main-banner-content h5 {
        font-size: 13px;
        line-height: 18px;
        margin: 0 0 7px;
    }

    .main-banner-content h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .main-banner-content p {
        margin: 10px 0 0;
        font-size: 13px;
        line-height: 20px;
    }

    .main-banner-buttons {
        margin-top: 30px;
        gap: 10px;
    }

    .main-banner {
        width: 100%;
        overflow-x: hidden;
    }

    .main-banner img {
        width: 250%;
        margin-left: -75%;
    }

    .main-banner::after {
        width: 250%;
        left: -75%;
    }

    .brief-section {
        padding: 20px;
    }

    .brief-section p {
        font-size: 15px;
        line-height: 22px;
    }

    .text-image-section {
        margin-top: 50px;
    }

    .text-image-content {
        width: calc(100% - 32px);
        margin: 0 auto;
    }

    .text-image-section .text-content {
        margin-top: 30px;
    }

    .heading-h2 {
        margin: 0 0 25px;
        font-size: 28px;
        line-height: 38px;
    }

    .heading-h3 {
        margin: 0 0 20px;
        font-size: 24px;
        line-height: 32px;
    }

    .heading-h4 {
        margin: 0 0 15px;
        font-size: 20px;
        line-height: 30px;
    }


    .heading-tagline {
        margin: 0 0 10px;
        font-size: 13px;
        line-height: 18px;
    }

    .heading-tagline img {
        width: 15px;
        margin-right: 7px;
    }

    .text-content h6 {
        font-size: 15px;
        line-height: 20px;
        margin: 0 0 10px;
    }

    .text-content p {
        font-size: 14px;
        line-height: 20px;
        margin: 0 0 20px;
    }

    .text-content ul li {
        margin: 0 0 10px;
        font-size: 13px;
        line-height: 18px;
        padding-left: 25px;
        background-size: 15px;
    }

    .expertise-section {
        margin-top: 50px;
        padding: 50px 16px;
    }

    .expertise-item {
        margin: 0 0 25px;
        padding: 20px 20px 60px;
        border-radius: 10px;
    }

    .expertise-item:last-child {
        margin-bottom: 0;
    }

    .expertise-item h3 {
        margin: 0 0 10px;
        font-size: 16px;
        line-height: 24px;
    }
    
    .expertise-item h4 {
        margin: 0 0 10px;
        font-size: 13px;
        line-height: 18px;
    }
    
    .expertise-item p {
        font-size: 13px;
        line-height: 18px;
    }

    .expertise-item a {
        position: absolute;
        left: 20px;
        bottom: 20px;
    }

    .expertise-item a img {
        width: 25px;
    }

    .testimonial-section {
        padding-top: 50px;
    }

    .testimonial-content {
        width: calc(100% - 32px);
        margin: 0 auto;
    }

    .testimonial-item {
        padding: 20px 40px 0;
        border-radius: 10px;
        margin-bottom: 36px;
    }

    .testimonial-item {
        padding-bottom: 50px;
    }

    .testimonial-content p {
        margin: 15px 0;
        font-size: 16px;
        line-height: 24px;
    }

    .testimonial-content h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .quotes-icn {
        width: 150px;
    }

    .user-img {
        width: 55px;
        bottom: -30px;
    }

    footer {
        margin-top: 50px;
        padding-top: 30px;
    }

    .footer-logo {
        width: 135px;
        margin: 0 auto;
    }

    .footer-line {
        margin: 15px auto 20px;
        font-size: 16px;
        line-height: 24px;
    }

    .footer-social {
        margin-bottom: 30px;
    }

    .footer-copy {
        padding: 20px 0;
    }

    .footer-copy span, 
    .footer-copy a {
        font-size: 13px;
        line-height: 18px;
    }

    .footer-copy a {
        padding-left: 5px;
        margin-left: 5px;
    }

    .icn-img {
        width: 40px;
        margin-bottom: 10px;
    }

    .blue-bg {
        padding-bottom: 50px;
    }

    .value-section {
        margin-top: 50px;
        padding-top: 30px;
    }

    .heading-img {
        margin-bottom: 10px;
    }

    .value-section .container {
        width: calc(100% - 32px);
        margin: 0 auto;
    }

    .value-item {
        margin: 0 0 20px;
        padding: 20px 15px;
        border-radius: 10px;
    }

    .value-item h3 {
        margin: 4px 0 10px;
        font-size: 16px;
        line-height: 24px;
    }

    .value-item p {
        font-size: 13px;
        line-height: 18px;
    }

    .team-section {
        padding: 50px 16px 0;;
    }

    .team-item {
        margin-bottom: 20px;
    }

    .team-item .team-item-img {
        border-radius: 15px 15px 0 0;
        height: 300px;
        overflow: hidden;
    }

    .team-item .team-item-img img {
        border-radius: 15px 15px 0 0;
    }

    .team-item-content {
        border-radius: 0 0 15px 15px;
        padding: 15px 15px 70px;
    }

    .team-item-content h3 {
        font-size: 18px;
        line-height: 25px;
        margin: 0 0 10px;
    }

    .team-item-content p {
        font-size: 13px;
        line-height: 18px;
    }

    .view-profile {
        bottom: 15px;
    }

    .team-item .view-profile img {
        width: 30px;
        height: 30px;
    }

    .team-profile-popup {
        width: 320px;
        height: 550px;
        border-radius: 10px;
    }

    .team-profile-popup-content .team-item-img {
        width: 320px;
        height: 250px;
        border-radius: 10px 10px 0 0;
    }

    .team-profile-popup-content .team-item-content {
        width: 100%;
        height: 300px;
        padding: 10px;
        box-sizing: border-box;
        overflow-y: auto;
        border-radius: 0 0 10px 10px;
    }

    .team-profile-popup-content .team-item-content .team-profile-content p {
        margin: 0 0 10px
    }

    .close-popup {
        top: 15px;
        right: 15px;
        width: 35px;
    }

    .specialization-section {
        margin: 0;
        padding: 50px 0;
    }

    .specialization-section .heading-text {
        margin: -5px 0 30px;
        font-size: 13px;
        line-height: 20px;
    }

    .no-space-bottom {
        margin-bottom: -50px;
    }

    .contact-section {
        padding-top: 50px;
    }

    .contact-section .heading-text {
        margin: -15px 10px 30px;
        font-size: 13px;
        line-height: 18px;
    }

    .contact-content {
        padding: 10px;
        border-radius: 10px;
        margin: 0 16px;
    }

    .contact-content .left-content {
        border-radius: 10px;
        background-size: 150px;
        padding: 20px;
        position: relative;
    }

    .contact-content .left-content h3 {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 30px;
    }

    .contact-content .left-content p {
        font-size: 14px;
        line-height: 18px;
        margin: 0 0 20px;
    }

    .contact-content .left-content p img {
        width: 24px;
        height: 24px;
        margin-right: 15px;
    }

    .contact-content .right-content {
        margin-bottom: 50px;
        padding: 20px;
    }

    .form-field .half-field {
        width: 100%;
        margin: 0 0 20px;
    }

    .form-field .full-field {
        width: 100%;
        margin: 0 0 20px;
    }

    .form-field label {
        font-size: 12px;
        line-height: 20px;
    }

    .form-field input:not(input[type="checkbox"]),
.form-field textarea  {
        font-size: 14px;
        line-height: 20px;
        padding: 5px 0 10px;
        box-sizing: border-box;
    }

    .form-field textarea {
        height: 70px;
    }

    .form-button input,
    .form-button button {
        font-size: 14px;
        line-height: 18px;
        padding: 10px 20px;
        border-radius: 5px;
    }
    
    .map-img {
        margin-bottom: 10px;
    }

    .text-container p {
        font-size: 13px;
        line-height: 20px;
        margin: 0 0 15px;
    }

    .text-container ul li {
        font-size: 13px;
        line-height: 20px;
        margin: 0 0 5px;
    }
}