*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
}

.container-main {
    max-width: 1320px;
    margin: 0 auto;
}

html {
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x:hidden;
}

.top-bar-main {
    padding: 6px 0px;
    background-color: #002c42;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left ul,
.top-bar-right ul {
    display: flex;
    gap: 20px;
}

.top-bar-left ul li,
.top-bar-right ul li {
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    color: #fff;
    list-style-type: none;
}

.top-bar-left ul li a,
.top-bar-right ul li a {
    color: #fff;
    transition: .3s;
}

.top-bar-left ul li i {
    margin-right: 7px;
    transition: .3s;
}

.top-bar-right i {
    transition: .3s;
}

.main-header {
    padding: 10px 0px;
    width: 100%;
    z-index: 10;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background-color: #fff;
}

.mob-header {
    display: none;
}

.main-header.sticky {
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 10px 0px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    max-width: 150px;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-links ul {
    display: flex;
    align-items: center;
    /* gap: 30px; */
}

.header-links ul li {
    font-size: 16px;
    font-weight: 500;
    color: #002c42;
}

.header-links ul li a {
    color: #002c42;
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    width: max-content;
    height: 44px;
    padding: 0px 20px;
}

.top-bar-left ul li a:hover,
.top-bar-right i:hover {
    color: #3bb2c4;
}

.header-links ul li.active a,
.header-links ul li:hover a {
    background-color: #3bb2c4;
    color: #fff;
}

.header-btn a {
    color: #fff;
    background-color: #3bb2c4;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    width: max-content;
    height: 50px;
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.header-btn a:hover {
    background-color: #002c42;
}

.dropdown-link {
    position: relative;
}

.dropdown-link::before {
    position: absolute;
    content: "";
    background-image: url(../images/down_arrow.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 13px;
    height: 8px;
    right: 15px;
    top: 18px;
    filter: invert(1);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    width: max-content;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
    padding: 15px;
    border-radius: 10px;
}

.dropdown-content ul {
    display: block;
}

.dropdown-content ul li {
    padding: 3px 0px;
}

.dropdown-content ul li a {
    color: #000 !important;
}

li.dropdown-link a {
    padding-right: 30px !important;
}

.dropdown-link:hover::before{
    filter: invert(0);
}

.dropdown-link:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    background-color: unset !important;
    height: 30px !important;
    padding: 0 !important;
}

.dropdown-content a:hover{
    color: #3bb2c4 !important;
}

li.dropdown-link.active a {
    padding-right: 35px;
}

li.dropdown-link.active::before{
    filter: invert(0);
}

.home-banner-main {
    position: relative;
}

.home-banner-slider {
    position: relative;
}

.home-btn-flex {
    z-index: 1;
    padding: 0px 40px;
}

.home-btn-flex button {
    background-color: #3bb2c4 !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.home-btn-flex button:hover {
    background-color: #fff !important;
}

.home-btn-flex button:hover img {
    filter: invert(0);
}

.home-banner-slider .owl-item .home-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 10s;
}

.home-btn-flex {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.home-btn-flex button {
    background-color: #3bb2c4 !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: unset;
}

.home-btn-flex img {
    width: 20px;
    filter: invert(1);
}

.home-banner-bg {
    height: 84vh;
    position: relative;
    overflow: hidden;
}

.home-banner-bg::before,
.breadcrumbs-bg::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #002c42;
    opacity: 0.4;
    z-index: 1;
}

.home-banner-bg img,
.home-about-left img,
.products-bg img,
.industries-block img,
.brand-block img,
.breadcrumbs-bg img,
.contact-us-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner-info,
.breadcrumbs-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-banner-info .container-main,
.breadcrumbs-info .container-main {
    height: 100%;
}

.home-banner-content,
.breadcrumbs-content {
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 700px;
}

.home-banner-content span {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    color: #3bb2c4;
    display: block;
    border-width: 2px 0px 0px 5px;
    border-style: solid;
    border-color: #3bb2c4;
    background-color: #fff;
    padding: 0px 15px;
    width: max-content;
    margin-bottom: 25px;
}

.home-banner-content h1 {
    font-size: 64px;
    line-height: 70px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 35px;
}

.home-banner-content a,
.cta-content a,
.exp-btn a {
    color: #fff;
    background-color: #3bb2c4;
    font-size: 20px;
    font-weight: 500;
    border-radius: 30px;
    width: max-content;
    height: 60px;
    padding: 0px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.home-banner-content a img {
    width: unset !important;
}

.home-banner-content a:hover,
.cta-content a:hover {
    color: #002c42;
    background-color: #fff;
}

.home-heading-section-main {
    background-color: #3bb2c4;
    padding-top: 30px;
    padding-bottom: 30px;
}

.home-heading-section h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    text-align: center;
}

.home-about-main,
.home-services-main,
.brand-slider-main,
.contact-us-main,
.industries-and-applications-main,
.instrument-procurement-main {
    padding-top: 100px;
}

.home-about-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.home-about-left,
.home-about-right {
    width: 50%;
}

.home-about-left {
    height: 600px;
}

.home-about-left img,
.contact-us-right img {
    border-radius: 10px;
}

.home-about-right {
    padding-left: 70px;
}

.home-about-right h6,
.home-industries-heading h6 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #3bb2c4;
    margin-bottom: 0.5rem;
}

.home-about-right h2,
.home-products h2,
.cta-content h2,
.home-industries-heading h2,
.brand-slider-heading h2,
.contact-us-left h2,
.industries-and-applications h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #002c42;
    margin-bottom: 20px;
}

.home-about-right h2 span,
.home-products h2 span,
.home-industries-heading span,
.brand-slider-heading h2 span,
.contact-us-left h2 span {
    /* color: #3bb2c4; */
    display: inline-block;
    background: linear-gradient(90deg, rgba(43, 106, 138, 1) 0%, rgba(59, 178, 196, 1) 50%, rgb(82, 195, 212) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-about-right p,
.home-about-right ul li,
.home-services-block p,
.home-products p,
.cta-content p,
.home-industries-heading p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: #444444;
}

.home-about-right p {
    margin-bottom: 25px;
}

.home-about-right ul li i {
    background-color: #3bb2c4;
    color: #fff;
    border-radius: 50%;
    margin-right: 12px;
    padding: 3px 4px;
    font-size: 12px;
}

.exp-box {
    margin-top: 30px;
}

.exp-box h4 {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, rgba(43, 106, 138, 1) 0%, rgba(59, 178, 196, 1) 50%, rgba(102, 230, 250, 1) 100%);
    padding: 20px;
    border-radius: 10px;
}

.home-services-main,
.brand-slider-main,
.industries-and-applications-main,
.instrument-procurement-main {
    padding-bottom: 100px;
}

.home-services-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0px -15px;
}

.home-services-block {
    width: 50%;
    position: relative;
    padding: 0px 15px;
}

.home-services-block-inner {
    padding: 20px;
    background-color: #3bb2c4;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    box-shadow: 0px 0px 30px rgba(5, 5, 5, 0.2);
    height: 100%;
    position: relative;
    border-radius: 10px;
}

.home-services-block-inner::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    transition: all 500ms ease;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    -moz-transform-origin: top;
    transform-origin: top;
    border-radius: 10px;
}

.home-services-block-inner:hover::before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
}

.home-services-block-inner:hover .home-services-block-border {
    border: 2px solid #002c42;
}

.home-services-block-border {
    padding: 20px;
    border: 2px solid #f5f1ed;
    height: 100%;
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

.service-icon {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.service-icon img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.hide {
    display: none;
}

.home-services-block-inner:hover .hide {
    display: block;
}

.home-services-block-inner:hover .show {
    display: none;
}

.home-services-block-inner:hover h4,
.home-services-block-inner:hover p {
    color: #002c42;
}

.home-services-block h4 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.home-services-block h4,
.home-services-block p {
    position: relative;
    z-index: 2;
    color: #fff;
}

.home-products-main,
.home-industries-main {
    padding-top: 90px;
    padding-bottom: 100px;
    background-color: #f5f5f5;
}

.home-products h2,
.home-products p,
.cta-content h2,
.cta-content p {
    text-align: center;
}

.home-products h2,
.cta-content h2 {
    margin-bottom: 10px;
}

.home-products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -20px -15px;
    padding-top: 40px;
}

.home-products-block {
    width: 33.33%;
    padding: 20px 15px;
    position: relative;
    overflow: hidden;
}

.products-bg {
    overflow: hidden;
    position: relative;
    height: 300px;
    background-color: #fff;
    border-radius: 10px;
}

.products-bg::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    transition: .3s;
}

.home-products-block:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    filter: brightness(0.8);
}

.home-products-block:hover .products-bg::before {
    opacity: 0.4;
}

.home-products-block img {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border-radius: 10px;
}

.products-content {
    height: 100px;
}

.products-content,
.industries-block-content {
    position: relative;
    margin: -40px 10px 0;
    background: #fff;
    text-align: center;
    padding: 20px 15px 20px;
    -webkit-box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05);
    /* height: 100%; */
    border-radius: 10px;
    transition: .2s;
}

.products-content {
    background-color: #3bb2c4;
}

.home-products-block:hover .products-content {
    background-color: #3bb2c4;
}

.home-products-block:hover h4,
.home-products-block:hover h4 a {
    color: #fff;
}

.products-content h4,
.industries-block-content h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: #002c42;
}

.products-content h4,
.products-content h4 a {
    color: #fff;
}

.products-content h4 {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.industries-block-content h4 a {
    color: #002c42;
}

.cta-bg-main {
    padding-top: 50px;
    padding-bottom: 50px;
    background: linear-gradient(90deg, rgba(43, 106, 138, 1) 0%, rgba(59, 178, 196, 1) 50%, rgba(102, 230, 250, 1) 100%);
}

.cta-content h2,
.cta-content p {
    color: #fff;
}

.cta-content h2 {
    font-size: 36px;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 15px;
}

.cta-content a {
    background-color: #002c42;
    margin: 0 auto;
    margin-top: 20px;
}

.home-industries-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.home-industries-left {
    width: 30%;
    padding-right: 70px;
}

.home-industries-right {
    width: 70%;
}

.industries-block {
    position: relative;
    overflow: hidden;
}

.industries-block-bg {
    height: 350px;
    position: relative;
    overflow: hidden;
}

.industries-block-bg img {
    border-radius: 10px;
}

.industries-block-content {
    z-index: 2;
    background-color: unset;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0px 30px 30px 30px;
}

.industries-block::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, transparent 0, transparent 50%, #000);
    opacity: 0.8;
    pointer-events: none;
    z-index: 2;
    border-radius: 10px;
}

.industries-block-content h4 {
    font-size: 18px;
    color: #fff;
    text-align: left;
}

.industries-block-content h4 a {
    color: #fff;
}

.industries-block-bg::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(59, 178, 196, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 1;
    border-radius: 10px;
    pointer-events: none;
}

.industries-block:hover .industries-block-bg::before {
    width: 100%;
    height: 100%;
}

.exp-btn {
    margin-top: 50px;
}

.exp-btn a {
    margin: 0 auto;

}

.exp-btn a:hover {
    background-color: #002c42;
}

.home-industries-heading,
.brand-slider-heading {
    margin-bottom: 50px;
}

.home-industries-heading h6,
.home-industries-heading h2,
.home-industries-heading p,
.brand-slider-heading h2,
.home-products h6,
.industries-and-applications h2 {
    text-align: center;
}

.home-industries-heading p {
    max-width: 900px;
    margin: 0 auto;
}

.brand-block {
    height: 200px;
}

.brand-block img {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.16);
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
    object-fit: scale-down;
}

.brand-slider .owl-carousel .owl-stage-outer {
    padding: 5px;
}

.footer-main {
    padding-top: 70px;
    /* padding-bottom: 70px; */
    background: #050505;
    position: relative;
}

.footer-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/footer-bg.webp);
    pointer-events: none;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
}

.footer-logo {
    max-width: 200px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-block p {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-top: 15px;
    max-width: 350px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons i,
.footer-block.add ul li i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 36px;
    line-height: 36px;
    border-radius: 36px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.social-icons i:hover,
.footer-block.add ul li:hover i {
    background-color: #3bb2c4;
}

.footer-block h6 {
    font-weight: 700;
    font-size: 22px;
    color: #3bb2c4;
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
    border-bottom: 3px solid rgba(65, 65, 65, 0.6);
}

.footer-block h6::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 3px;
    background-color: #3bb2c4;
    left: 0;
    bottom: -3px;
}

.footer-block ul li {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #ffffff;
    transition: all 0.35s;
    padding-top: 17px;
    padding-left: 15px;
}

.footer-block.add ul li {
    padding-left: 0;
}

.footer-block ul li a::before {
    position: absolute;
    content: "";
    font-size: 14px;
    font-weight: 600;
    font-family: FontAwesome;
    left: -15px;
    top: 0px;
    color: #3bb2c4;
}

.footer-block.add ul li a::before {
    content: unset;
}

.footer-block ul li a {
    color: #ffffff;
    position: relative;
}

.footer-block ul li:hover a {
    color: #3bb2c4;
}

.footer-block.add ul li {
    display: flex;
    align-items: baseline;
}

.footer-block.add ul li i {
    margin-right: 10px;
}

.footer-copyright-main {
    /* background: #050505; */
    padding: 25px 0;
    border-top: 1px solid #565656;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
}

.footer-copyright .social-icons {
    margin-top: 0;
}

.home-overview-part {
    position: relative;
}

.home-overview-img {
    width: 50%;
    position: relative;
    z-index: 1;
}

.home-overview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-overview-info {
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    background-color: #3bb2c4;
}

.home-overview-info .container-main {
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.home-overview-content {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 50%;
    padding-left: 115px;
}

.home-overview-title h2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 25px;
}

.exp-flex {
    display: flex;
}

.exp-left img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    filter: invert(1);
}

.exp-right {
    padding-left: 15px;
}

.exp-right p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 13px;
}

.exp-right span {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.breadcrumbs-bg-main {
    position: relative;
}

.breadcrumbs-bg {
    height: 300px;
}

.breadcrumbs-content {
    max-width: unset;
}

.breadcrumbs-content h1 {
    font-weight: 700;
    font-size: 50px;
    color: #ffffff;
    text-align: center;
}

.home-about-right.about-page p {
    margin-bottom: 7px;
    text-align: justify;
}

.home-products-grid.products-page {
    padding-top: 0;
    justify-content: flex-start;
}

.contact-us-main {
    padding-bottom: 100px;
}

.contact-us-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact-us-left {
    width: 50%;
    padding-right: 70px;
}

.contact-form-flex {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

.contact-fields {
    width: 100%;
    padding: 8px;
}

.contact-fields.full {
    width: 100%;
}

.contact-fields input,
.contact-fields textarea {
    border: 1px solid #D2D2D2;
    border-radius: 4px;
    width: 100%;
    height: 50px;
    font-size: 16px;
    outline: none;
    color: #002c42;
    padding: 0px 15px;
}

.contact-fields textarea {
    padding: 15px;
    height: 150px;
}

.submit-btn {
    margin-top: 10px;
}

.submit-btn input {
    color: #fff;
    background-color: #3bb2c4;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    width: max-content;
    height: 50px;
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    border: unset;
}

.contact-us-right {
    width: 50%;
}

.contact-details-main {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f5f5f5;
}

.contact-details-flex {
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}

.contact-details-box {
    width: 100%;
    padding: 12px;
}

.contact-details-box-inner {
    background-color: #3bb2c4;
    padding: 20px;
    box-shadow: 0px 0px 30px rgba(5, 5, 5, 0.2);
    height: 100%;
    border-radius: 10px;
}

.contact-details-box h4 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.contact-details-box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 5px;
}

.contact-details-box p span {
    font-weight: 700;
    color: #002c42;
    font-size: 20px;
}

.contact-details-box p a {
    color: #fff;
    word-wrap: break-word;
}

.support-detail-main {
    padding-top: 40px;
    padding-bottom: 30px;
    background-color: #3bb2c4;
}

.support-detail h4 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
}

.support-detail p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 5px;
    text-align: center;
}

.support-detail p a {
    color: #fff;
}

.home-products h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    color: #002c42;
    margin-bottom: 40px;
    margin-top: 50px;
    text-align: center;
}

.home-products h3:first-child {
    margin-top: 0;
}

.home-industries-flex {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.home-industries-flex .industries-block {
    width: 33.33%;
    padding: 15px;
    overflow: hidden;
}

.home-industries-flex .industries-block::before {
    content: unset;
}

.industries-block-inner {
    position: relative;
}

.industries-block-inner::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, transparent 0, transparent 50%, #000);
    opacity: 0.8;
    pointer-events: none;
    z-index: 2;
    border-radius: 10px;
}

.home-about-left.about-page.applications {
    height: unset;
}

.industries-and-applications h2 {
    margin-bottom: 40px;
}

.home-about-main.about-page.applications {
    padding-bottom: 100px;
    background-color: #f5f5f5;
}

.instrument-procurement-main .container-main{
    max-width: 1070px;
}

.instrument-procurement-heading {
    margin-bottom: 30px;
}

.instrument-procurement-heading p{
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: #444444;
}

.instrument-procurement-info h2,
.instruments-examples h2{
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    font-weight: 700;
    color: #002c42;
    margin-bottom: 25px;
}

.instrument-procurement-block{
    margin-bottom: 20px;
}

.instrument-procurement-block h4{
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;
    color: #3bb2c4;
}

.instrument-procurement-block  p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #444444;
}

.instruments-examples h4{
    font-size: 18px;
}

.instruments-examples h4,
.instruments-examples p{
    color: #fff;
}

.instruments-examples {
    padding-top: 40px;
}

.instruments-examples-flex{
    display: flex;
    margin: 0px -12px;
}

.instruments-examples-flex .instrument-procurement-block {
    width: 33.33%;
    padding: 20px;
    background-color: #3bb2c4;
    margin: 0px 12px;
    border-radius: 10px;
}

.home-heading-section.instrument-procurement{
    padding-top: 50px;
}

.home-heading-section.instrument-procurement h2 {
    font-size: 20px;
    color: #002c42;
    text-align: unset;
    text-transform: uppercase;
}

.home-industries-main{
    padding-top: 0;
}

.product-pagination {
    margin-top: 60px;
}

.product-pagination .page-item.active .page-link{
    background-color: #3bb2c4;
    border: unset;
    color: #fff;
}

.product-pagination .pagination-lg .page-link{
    color: #002c42;
}

.page-link:focus{
    box-shadow: unset;
}