/* 
Theme Name: Truecare
Author: Truecare Technology
Version: 1.0
Description: A custom WordPress theme for Truecare Technology.
*/

/* Designed by HUMIVE */

:root {
    --Body: #f9f9f9;
    --Blue: #00AEEF;
    --DarkBlue: #0066B3;
    --Green: #00A651;
    --White: #ffffff;
    --Black: #262626;
    --LightColor: #eaeef4;
    --TextColor: #777777;
}

body {
    background: var(--Body);
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

p {
    padding: 0;
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
}

label,
.form-control,
li,
td,
th,
button {
    font-family: 'Roboto', sans-serif;
}

a {
    font-family: 'Roboto', sans-serif;
    transition: 0.33s;
}

a:hover {
    transition: 0.33s;
}

.clearfix {
    padding: 5px 0;
}

@media only screen and (max-width: 768px) {
    .container {
        padding-right: 2em !important;
        padding-left: 2em !important;
    }

    body {
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
        font-size: 1.7rem !important;
        line-height: 1.3em !important;
    }

    p {
        font-size: 17px !important;
    }
}


/* HEADER */
.header-first {
    background: var(--LightColor);
    padding: 1vh 0;
}

.contact-info {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
    gap: 20px;
}

.contact-info a {
    color: var(--DarkBlue);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.contact-info a i {
    padding-right: 10px;
}

.header-section {
    background: var(--White);
    box-shadow: 0 2px 13px -1px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    left: 0;
    transition: all .2s;
}

.header-section.header-shrink {
    box-shadow: 0 2px 13px -1px rgba(0, 0, 0, 0.2);
    transition: all .2s;
}

.header-section.header-shrink .navbar .navbar-brand {
    transition: all .2s;
}

.header-section.header-shrink .navbar .navbar-brand img {

    transition: all .2s;
}

.header-section .navbar .navbar-brand img {
    width: 100px;
}

.header-section .navbar-nav {
    display: flex;
    align-content: center;
    align-items: center;
}

.header-section .navbar .nav-item {
    margin-right: 1.3rem;
}

.header-section .navbar .nav-item:last-of-type {
    margin-right: 0;
}

.header-section .navbar .nav-link {
    color: var(--Black);
    font-size: 15px !important;
    text-transform: uppercase;
    font-weight: 400 !important;
    letter-spacing: 0.5px;
    color: var(--Black);
}

.header-section .navbar .nav-link:hover {
    color: var(--Blue);
}

.header-section .navbar .nav-cta {
    background: var(--DarkBlue) !important;
    color: var(--White) !important;
    padding: 10px 18px !important;
    color: var(--White);
    text-decoration: none;
    font-weight: 500 !important;
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
}

.header-section .navbar .nav-cta:hover {
    background: var(--DarkBlue) !important;
}

.megamenu .container {
    padding: 5vh 0;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    background: var(--White);
    border-top: 0 !important;
    position: relative !important;
    z-index: 1 !important;
}

.dropdown-menu[data-bs-popper] {
    margin-top: 0px !important;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: fixed !important;
    z-index: 1 !important;
    top: 145px;
}

.megamenu-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0px;
}

@media only screen and (max-width: 768px) {
    .megamenu-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }
}

.megamenu-grid .item h4 {
    font-weight: bold;
    color: var(--DarkBlue);
    padding-bottom: 10px;
}

.megamenu-grid .item p {
    color: var(--TextColor);
}

.megamenu-grid .item .btn-default {
    padding: 10px 15px !important;
}

.megamenu-link ul {

    margin: 0;
    padding: 0;
    list-style: none;
}

.three-cols {
    column-count: 3;
    column-gap: 30px;
}

.two-cols {
    column-count: 3;
    column-gap: 30px;
}

@media only screen and (max-width: 768px) {
    .three-cols {
        column-count: 1;
        column-gap: 30px;
    }

    .two-cols {
        column-count: 1;
        column-gap: 30px;
    }
}

.megamenu-link ul li {
    padding-bottom: 10px;
}

.megamenu-link ul li a {
    color: var(--Black);
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
}

.megamenu-link ul li a:hover {
    color: var(--DarkBlue);
    font-weight: 500 !important;
}

.navbar .megamenu {
    padding: 1rem;
}

@media all and (min-width: 992px) {

    .navbar .has-megamenu {
        position: static !important;
        z-index: 9999 !important;
    }

    .navbar .megamenu {
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0;
        z-index: 9999 !important;
    }

}

@media(max-width: 991px) {

    .navbar.fixed-top .navbar-collapse,
    .navbar.sticky-top .navbar-collapse {
        overflow-y: auto;
        max-height: 90vh;
        margin-top: 10px;
    }
}

.dropdown-menu {
    border-radius: 0 !important;
    border: 0 !important;
}


/* HERO SECTION */
.hero-section {
    background: url("../img/hero-img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 35rem;
    position: relative;
    z-index: -1 !important;
}

@media only screen and (max-width: 768px) {
    .hero-section {
        height: 25rem;
    }
}

.hero-section:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-section .hero-content {
    padding-top: 10rem;
    width: 50rem;
    position: relative;
    z-index: 9999 !important;
}

@media only screen and (max-width: 768px) {
    .hero-section .hero-content {
        padding-top: 5rem;
    }

}

.hero-section .hero-content h2 {
    color: var(--White);
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 4.5rem;
}

@media only screen and (max-width: 768px) {
    .hero-section .hero-content {
        width: auto;
    }

    .hero-section .hero-content h2 {
        font-size: 4rem;
    }
}

.hero-section .hero-content p {
    color: var(--White);
    font-size: 1.5rem;
    font-weight: 300;
    width: 30rem;
}

@media only screen and (max-width: 768px) {
    .hero-section .hero-content p {
        width: auto;
    }
}

.hero-section .hero-content .hero-cta {
    margin-top: 2.5rem;
}


/* Custom Solutions */
.custom-solutions-section {
    background: var(--LightColor);
    padding: 5rem 0;
}

.custom-solutions-section h6 {
    text-align: center;
    color: var(--Blue);
    margin-bottom: 1rem;
}

.custom-solutions-section h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--TextColor);
}

.custom-solutions-section p {
    letter-spacing: .08em;
    font-weight: 300;
    margin: 0 auto;
    font-size: 16px !important;
    text-align: center;
}

.curve-mask {
    width: 100%;
    float: left;
    overflow: hidden;
}

.curve-down {
    position: relative;
    z-index: 10;
    width: 120%;
    margin-left: -10%;
    margin-right: 10%;
    border-radius: 0 0 200vh 200vh / 0 0 20vh 20vh;
    -moz-border-radius: 0 0 200vh 200vh / 0 0 20vh 20vh;
    -webkit-border-radius: 0 0 200vh 200vh / 0 0 20vh 20vh;
    overflow: hidden;
}


.cta-wrap {
    margin-top: 2rem;
}

.btn-default {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    font-style: normal;
    letter-spacing: .087em;
    text-transform: uppercase;
    margin: 0;
    padding: 13px 23px;
    color: var(--White) !important;
    background: var(--DarkBlue);
    outline: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s ease-out;
}

.btn-default:hover {
    background: var(--Blue);

}

.btn-trnsprnt {
    color: var(--White) !important;
    background: transparent;
    border: 1px solid var(--White);
}

.btn-trnsprnt:hover {
    background: var(--White);
    color: var(--Black) !important;
}


/* solutions-by-industry-section */
.solutions-by-industry-section {
    padding: 5rem 0;
}

.solutions-by-industry-section h6 {
    text-align: center;
    color: var(--Blue);
    margin-bottom: 1rem;

}

.solutions-by-industry-section h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--TextColor);
    width: 50rem;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .solutions-by-industry-section h3 {
        width: auto;
    }
}

.solutions-by-industry-section p {
    text-align: center;
    letter-spacing: .08em;
    font-size: 16px !important;
}

.solutions-by-industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

@media only screen and (max-width: 768px) {
    .solutions-by-industry-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        margin: 0 auto;
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

.solutions-by-industry-grid .item {
    background: var(--LightColor);
    border-bottom: 3px solid var(--Blue);
}

.solutions-by-industry-grid .item .item-img {
    width: 100%;
    height: 200px;
}

.solutions-by-industry-grid .item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.solutions-by-industry-grid .item .item-content {
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    color: var(--Black);
}

.solutions-by-industry-grid .item .item-content h4 {
    font-size: 0.9rem;
    margin: 0 auto;
    text-transform: uppercase;
    color: var(--Black);
    padding: 0 2vh !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}


/* Products Solutions Section */
.products-solutions-section {
    padding: 5rem 0;
    background: var(--LightColor);

    .products-solutions-grid {
        display: flex;
        align-items: center;
        align-content: center;
    }

    @media only screen and (max-width: 768px) {
        .products-solutions-grid {
            gap: 30px;
        }
    }

    .products-solutions-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        padding-right: 20px;
    }

    .products-solutions-grid h6 {

        color: var(--Blue);
        margin-bottom: 1rem;
    }

    .products-solutions-grid h3 {
        font-size: 2.5rem;
        font-weight: 300;
        margin-bottom: 1rem;
        color: var(--TextColor);
    }

    .products-solutions-grid p {

        letter-spacing: .08em;
        font-weight: 300;
        width: 90%;
        font-size: 16px !important;
    }
}




/* About Section */
.home-about-section {
    background: var(--LightColor);
    padding: 5rem 0;
}

.home-about-section h6 {
    text-align: center;
    color: var(--Blue);
    margin-bottom: 1rem;
}

.home-about-section h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--TextColor);
}

.home-about-section p {
    letter-spacing: .08em;
    font-weight: 300;
    margin: 0 auto;
    font-size: 16px !important;
    text-align: center;
}

/* Footer */
.footer-section {
    background: var(--Black);
    padding: 3rem 0;
}

.footer-section .footer-grid {
    display: grid;
    grid-template-columns: 3fr 4fr 4fr 2fr 3fr;

}

@media only screen and (max-width: 768px) {
    .footer-section .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 30px;

    }
}

.footer-section .footer-grid .item {
    padding-right: 30px;
    padding-left: 30px;
}

.footer-section .footer-grid .item .address-grid p {
    color: var(--white) !important;
}


.footer-section .footer-logo {
    width: 150px;
    height: 120px;
    background: var(--White);
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 10px;
}

.footer-section .footer-logo img {
    width: 100px;

}

.footer-section .social-media {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

@media only screen and (max-width: 768px) {
    .footer-section .social-media {
        display: flex;
        align-items: center;
        align-content: center;
        gap: 20px;
        margin-top: 20px;
        justify-content: flex-start;
    }
}

.footer-section .social-media a {
    color: var(--Blue);
    font-size: 20px;
}

.footer-section .social-media a:hover {
    color: var(--DarkBlue);
}

.footer-section .address-grid {
    margin-left: -30px;
}

@media only screen and (max-width: 768px) {
    .footer-section .address-grid {
        margin-left: -30px;
    }
}

.footer-section .address-grid h5 {
    text-transform: uppercase;
    font-weight: 400 !important;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--Blue);
}

.footer-section .footer-link h5 {
    text-transform: uppercase;
    font-weight: 400 !important;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--Blue);
}


.footer-section .footer-link ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section .footer-link ul li {
    padding-bottom: 5px;
}

.footer-section .footer-link ul li:last-of-type {
    padding-bottom: 0;
}

.footer-section .footer-link ul li a {
    color: var(--White);
    font-weight: 300 !important;
    text-decoration: none;
    transition: 0.2s;
}

.footer-link ul li a:hover {
    text-decoration: underline;
}

/* End */
.footer-end-section {
    background: var(--LightColor);
    padding-top: 1rem;
    border-top: 1px solid #ccc;
}

.footer-end-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    align-content: center;
}

@media only screen and (max-width: 768px) {
    .footer-end-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: flex-start;

    }
}

.footer-end-grid .item:nth-child(1) p {
    font-size: 14px;
    color: var(--TextColor);
}

.footer-end-grid .item:nth-child(2) p {
    font-size: 14px;
    text-align: right !important;
}

.footer-end-grid .item:nth-child(2) p a {
    color: var(--TextColor);
}

.footer-end-grid .item:nth-child(2) p a:hover {
    color: var(--DarkBlue);
}

@media only screen and (max-width: 768px) {
    .footer-end-grid .item:nth-child(1) p {
        text-align: center !important;
    }

    .footer-end-grid .item:nth-child(2) p {
        text-align: center !important;
    }
}

/* Page header */
.page-header-section {
    padding: 10rem 0;
    position: relative;
    z-index: -1 !important;
}

@media only screen and (max-width: 768px) {
    .page-header-section {
        padding: 5rem 0;
    }
}

.page-header-section:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
}

.page-header-section h2 {

    color: var(--White) !important;
    font-weight: 300;
    font-size: 50px;
    position: relative;
    z-index: 9999;
}

.page-header-section p {
    color: var(--White);
    position: relative;
    z-index: 8888;
    font-size: 25px;
    width: 45%;
    font-weight: 300;
}

@media only screen and (max-width: 768px) {
    .page-header-section p {
        width: auto;
    }
}

.page-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.page-section h1,
h2,
h3,
h4 {

    font-weight: 400 !important;
}

.page-section h6 {

    font-weight: 500 !important;
}


.textColor {
    color: var(--TextColor) !important;
}

.text-only-section h6 {
    text-align: center;
    color: var(--Blue);
    margin-bottom: 16px;
    font-weight: 400;
}

.text-only-section h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--TextColor);
}

.text-only-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--TextColor);
}

.text-only-section p {
    letter-spacing: .08em;
    font-weight: 300;
    margin: 0 auto !important;
    font-size: 16px !important;
    text-align: center;
    margin-bottom: 10px !important;

}

.white-section {
    background: var(--White);
}

.color-section {
    background: var(--LightColor);
}

.missin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 50px;
}

@media only screen and (max-width: 768px) {
    .missin-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.missin-grid .item {
    background: var(--LightColor);
    padding: 5vh;
}

.missin-grid .item h4 {
    margin-bottom: 20px;
    color: var(--DarkBlue);
    font-weight: 500;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--Blue);
}

.missin-grid .item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.missin-grid .item ul li {
    margin-bottom: 10px;
    letter-spacing: .08em;
    font-weight: 300;
    font-size: 16px !important;
}

.missin-grid .item ul li strong {
    font-weight: 600;
    color: var(--DarkBlue);
}


.download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 50px;
}

@media only screen and (max-width: 768px) {
    .download-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
    }
}

.download-grid .item {
    border: 1px solid var(--TextColor);
    padding: 1rem;

}

.download-grid .item .item-cover {

    width: 100%;
    height: 300px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;


}

.download-grid .item .item-cover P {
    font-weight: 300;
    font-size: 30px;
    opacity: 0.3;
}

.download-grid .item .item-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;

}

.download-grid .item .item-content {
    padding: 1.5rem 1rem;
}

.download-grid .item .item-content h5 {
    font-size: 16px;
    text-align: center;
    color: var(--TextColor);
    font-weight: 400;
}

.download-grid .item .item-content .cta-wrap {
    text-align: center;
}

.image-block {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 80px;
}

@media only screen and (max-width: 768px) {
    .image-block {
        display: flex;
        align-items: center;
        align-content: center;
        flex-direction: column;
        gap: 50px;
    }
}

.image-block img {
    width: 100%;
}

.image-block .item {
    flex: 1 50%;
}

.image-block h6,
h3,
p {
    text-align: left !important;
}

.project-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-top: 60px;
}

@media only screen and (max-width: 768px) {
    .project-categories-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
        margin-top: 60px;
    }
}

.project-categories-grid .item {
    background: var(--LightColor);
    border-bottom: 3px solid var(--Blue);
}

.project-categories-grid .item a {
    text-decoration: none;
}

.project-categories-grid .item .item-img {
    width: 100%;
    height: 250px;

}

.project-categories-grid .item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-categories-grid .item .item-text {
    padding: 2vh 2.5vh !important;
}

.project-categories-grid .item .item-text h3 {
    font-size: 0.9rem;
    margin: 0 auto;
    text-transform: uppercase;
    color: var(--Black);
    font-weight: 600 !important;
    font-size: 14px !important;
    text-align: center !important;
}

.project-categories-grid .item .item-text p {

    font-weight: 300;
    color: var(--Black);
    margin: 0 auto !important;
    font-size: 16px !important;
    text-align: center !important;
}

.project-categories-grid .item:hover .item-text h3 {
    color: var(--Black) !important;
}

.model-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-top: 30px;
}

@media only screen and (max-width: 768px) {
    .model-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
        margin-top: 30px;
    }
}

.model-list .item {
    border-bottom: 3px solid var(--Blue) !important;
    padding: 2vh;
}

.model-list .item .item-img {
    width: 100%;
    height: 300px;
    padding: 3vh;
    background: #fff;
}

.model-list .item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.model-list .item .item-text {

    padding: 3vh 0vh !important;
}

.model-list .item .item-text h3 {
    font-size: 0.9rem;
    margin: 0 auto;
    text-transform: uppercase;
    color: var(--DarkBlue);
    font-weight: 600 !important;
    font-size: 17px !important;
    text-align: left !important;
    transition: 0.2s;
}

.model-list .item .item-text h3 a {
    text-decoration: none;
    color: var(--DarkBlue);
}

.model-list .item .item-text p {
    text-align: left !important
}

.model-list .item {
    border-bottom: 3px solid var(--DarkBlue);
}


.solutions-overview {
    display: flex;
    align-items: center;
    align-content: center;
}

.solutions-overview h2,
h6 {
    text-align: left !important;
}

.solutions-overview h3 a {
    text-decoration: none;
    color: var(--Black);
}

.solutions-banner {
    width: 300px;
    height: 300px;
}

.solutions-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.model-list .item .item-text p {
    text-align: left !important
}

@media only screen and (max-width: 768px) {
    .solutions-overview {
        flex-direction: column-reverse;
        gap: 30px;
    }
}


.category-overview {
    display: flex;
    align-items: center;
    align-content: center;
}

.category-overview h2,
h6 {
    text-align: left !important;
}

.category-overview p {
    margin-bottom: 12px !important;
}

.category-overview p:last-of-type {
    margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
    .category-overview {
        flex-direction: column-reverse;
        gap: 20px;
    }
}

.contact-form h3 {
    font-weight: 500 !important;
    color: var(--TextColor);
}

.contact-form form {

    margin-top: 30px;

}

.contact-form form .form-group {
    text-transform: uppercase;
    font-size: 13px;
    padding-bottom: 10px;
}

.contact-form form label {
    padding-bottom: 10px;
    color: var(--Black);
}

.contact-form form .form-control {
    padding: 10px;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.contact-form form .btn-submit {
    background: var(--DarkBlue) !important;
    color: var(--White) !important;
    padding: 10px 18px !important;
    color: var(--White);
    text-decoration: none;
    font-weight: 500 !important;
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    border: 0;
    text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
    .contact-us-container {
        margin-bottom: 30px;
    }
}

.contact-us-container h3 {
    font-weight: 500 !important;
    color: var(--TextColor);
}

.map-section iframe {
    width: 100% !important;
    height: 500px !important;
    border: 0 !important;

}

.address-grid .item {
    display: flex;
    gap: 20px;
}

.address-grid .item i {
    width: 30px;
    height: 30px;
    background: var(--Blue);
    line-height: 30px;
    text-align: center;
    border-radius: 100px;
    color: var(--White);
}

.address-grid .item p {
    font-size: 16px !important;
    font-weight: 300 !important;
}

.product-hero-section {
    padding-top: 2vh !important;
    padding-bottom: 2vh !important;
}

.products-hero {
    display: flex;
    align-items: center;
    align-content: center;
}

@media only screen and (max-width: 768px) {
    .products-hero {
        display: flex;
        align-items: center;
        align-content: center;
        flex-direction: column-reverse;
    }
}

.products-hero h2 {
    text-align: left !important;
}

.back-button {
    margin-top: 30px;
}

.back-button a {
    text-transform: uppercase;
    font-weight: 500;
    color: var(--Black);
    text-decoration: none;
}

.back-button a i {
    margin-right: 10px;
}

.back-button a:hover {
    color: var(--Blue);
}

.bottom-border {
    border-bottom: 3px solid var(--Blue);
}

.normal-text p {
    font-size: 19px !important;
    font-weight: 300 !important;
    color: var(--TextColor);
}


.products-view-grid {
    display: grid;
    grid-template-columns: 0.5fr 2fr;
    grid-gap: 10px;
}

@media only screen and (max-width: 768px) {
    .products-view-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
}

.products-view-grid .item:nth-child(1) {
    padding: 4vh 2vh;
    background: var(--Blue) !important;
    border: 0;
}

.products-view-grid .item {

    padding: 2vh 4vh;
}

@media only screen and (max-width: 768px) {
    .products-view-grid .item:nth-child(1) {
        padding: 4vh 2vh;
        background: var(--Blue) !important;
        border: 0;
    }

    .products-view-grid .item {

        padding: 3vh 0vh;
    }
}

.products-view-grid .item:nth-child(1) {
    background: #fff;
}

.products-view-grid .item .nav-link {
    text-align: left !important;
    font-size: 16px;
    color: var(--White);
    font-weight: 600;
    margin-bottom: 10px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: var(--DarkBlue) !important;
    border-radius: 0;
}

.products-view-grid .item .tab-content h3 {
    font-size: 30px;
    color: var(--Black);
    margin-bottom: 20px;
}

.products-view-grid .item .tab-content p {
    font-size: 16px !important;
    color: var(--Black);
}

.products-view-grid .item .tab-content ul {
    padding: 0;
    margin: 10px 20px;
}

.products-view-grid .item .tab-content ul li {
    font-size: 16px !important;
    color: var(--Black) !important;
    font-weight: 300 !important;
    margin-bottom: 5px;
}

.products-view-grid .item .tab-content p:last-of-type {
    margin-bottom: 0;
}

.products-view-grid .item .tab-content table {
    border-collapse: collapse;
    width: 100%;
}

.products-view-grid .item .tab-content table tbody tr {
    border: 1px solid #000;
}

.products-view-grid .item .tab-content table tbody th {
    border: 1px solid #000;
    padding: 10px;
    background: var(--White);
    vertical-align: top;
}

.products-view-grid .item .tab-content table tbody td {
    border: 1px solid #000;
    padding: 10px;
    vertical-align: top;
}


.solutions-nav {
    background: var(--Blue);
    padding: 2vh;
}

.solutions-nav .nav .nav-link {
    border-radius: 0;
    color: var(--White) !important;
}

.solutions-container {
    .tab-content {
        padding-left: 30px;
    }

    .textColor {
        color: var(--Black) !important;
        text-transform: uppercase;
        font-size: 16px;
        margin-bottom: 25px;
        font-weight: 600 !important;
    }

    @media only screen and (max-width: 768px) {
        .tab-content {
            padding-left: 0px;
            margin-top: 30px;
        }
    }
}


.solutions-wise-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

@media only screen and (max-width: 768px) {
    .solutions-wise-products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}

.solutions-wise-products .item {
    background: var(--White);
    border-bottom: 4px solid var(--Blue);
}

.solutions-wise-products .item a{
text-decoration: none;
}

.solutions-wise-products .item .item-img {
    width: 100%;
    height: 180px;
}

.solutions-wise-products .item .item-img img {
    padding: 1rem;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.solutions-wise-products .item .item-text {
    padding: 1.5vh;
}

.solutions-wise-products .item .item-text h3 {
    font-size: 16px !important;
    margin-bottom: 0;
    text-decoration: none;
    color: var(--TextColor);
}

[aria-current="page"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: black;
    z-index: -1;
}

