* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 15px;
}

h2 {
    font-family: Merriweather;
    font-weight: 700;
    font-size: 45px;
    line-height: 55px;
    color: #162E51;
}

p {
    font-family: Source Sans Pro;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #191717;
}

/* Hero Section */
.hero .hero-content {
    max-width: 900px;
    margin-left: 0;
}

.hero h1 {
    font-size: 45px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 20px;
    text-align: left;
}

.hero p {
    color: #FFFFFF;
    text-align: left;
}

.hero .hero-headline {
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    color: #00BDE3;
    margin: 40px 0 30px;
}

.hero-form {
    display: flex;
    text-align: left;
}

.hero-form input {
    width: 100%;
    max-width: 530px;
    height: 65px;
    font-family: Source Sans Pro;
    font-weight: 400;
    font-size: 18px;
    padding: 21px 20px;
    border-radius: 6px 0 0 6px;
    border: none;
}

.hero-form input:focus {
    outline: none;
}

.hero-form button {
    height: 65px;
    font-family: Source Sans Pro;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    padding: 19px 40px;
    border: none;
    background: #00BDE3;
    color: white;
    border-radius: 0 6px 6px 0;
    transition: all .3s;
    cursor: pointer;
}

.hero-form button:hover {
    background-color: #00d4fff5;
}

/* Trusted Antibodies */
.trusted-antibodies {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.trusted-antibodies .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.trusted-antibodies .antibodies-content {
    width: calc(55% - 19px);
}

.trusted-antibodies .antibodies-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.trusted-antibodies .antibodies-content p {
    text-align: left;
    margin-bottom: 20px;
}

.trusted-antibodies .antibodies-cards {
    flex: 1;
    padding-left: 85px;
}

.antibodies-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.antibodies-boxes .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(50% - 10px);
    border: 1px solid #162E51;
    background: #fff;
    border-color: #162E51;
    padding: 38px;
    transition: all .3s;
}

.antibodies-boxes .box:hover {
    border-color: #00BDE3;
    background-color: #00BDE3;
}

.antibodies-boxes .box svg {
    transition: all .3s;
    margin-bottom: 35px;
}

.antibodies-boxes .box p {
    font-family: Merriweather;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    color: #162E51;
    transition: all .3s;
}

.antibodies-boxes .box a {
    font-family: Source Sans Pro;
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    text-align: center;
    text-decoration: underline;
    color: #00BDE3;
    transition: all .3s;
}

.antibodies-boxes .box:hover svg,
.antibodies-boxes .box:hover svg path {
    stroke: #fff;
}

.antibodies-boxes .box:hover p,
.antibodies-boxes .box:hover a {
    color: #fff;
}

.antibodies-boxes .box:nth-last-of-type(1),
.antibodies-boxes .box:nth-last-of-type(4) {
    border-radius: 0;
}

.antibodies-boxes .box:nth-last-of-type(3) {
    border-radius: 0 50px 0 0;
}

.antibodies-boxes .box:nth-last-of-type(2) {
    border-radius: 0 0 0 50px;
}

/* Featured Products */
.featured-products {
    padding: 60px 0 70px;
    background-color: #E5EFF6;
    text-align: center;
}

.featured-products .container,
.you-may-like .container,
.latest-blogs .container {
    padding-left: 30px;
    padding-right: 30px;
}

.product-grid {
    position: relative;
    margin-top: 40px;
}

.product-card {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 0.48px solid #162E51;
    position: relative;
    padding-bottom: 68px;
}

.product-card .pc-image {
    background-color: #f4f4f4;
    height: 200px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.product-card .pc-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
}

.product-card .pc-content {
    padding: 20px 20px 30px;
    text-align: left;
}

.product-card h3 {
    font-family: Merriweather;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #191717;
    margin-bottom: 10px;
}

.product-card p {
    font-family: Source Sans Pro;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #191717;
}

.product-card p strong {
    font-weight: 600;
    margin-right: 5px;
}

button.card-btn {
    font-family: Source Sans Pro;
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    background-color: #162E51;
    border: 1px solid #162E51;
    color: #FFFFFF;
    padding: 10px 25px;
    border-radius: 6px;
    transition: all .3s;
    position: absolute;
    bottom: 25px;
}
button.card-btn a {
    font-family: Source Sans Pro;
    font-weight: 600;
    font-size: 18px;
    line-height: normal;   
    color: #FFFFFF !important;
    text-decoration: none;
}
button.card-btn a:hover {
    color: #162E51 !important;
}
button.card-btn:hover {
    background-color: #fff;
    color: #162E51;
}

/* Trusted Logos */
.trusted-logos {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.trusted-logos .container-fluid {
    max-width: 100%;
}

.trusted-logos h2 {
    margin-bottom: 10px;
}

.trusted-logos p {
    max-width: 1200px;
    margin: 0 auto;
}

.logo-marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background: #fff;
    padding: 30px 0 0;
}

.logo-track {
    display: inline-block;
    animation: scroll-marquee 40s linear infinite;
}

.logo-track img {
    margin: 0 10px;
    transition: filter 0.3s ease;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

/* Why Choose */
.why-choose {
    background-color: #162E51;
    background-image: linear-gradient(to right, #162E51 50%, transparent 50%),
        url("/assets/img/home/choose.png");
    background-repeat: no-repeat, no-repeat;
    background-size: 100% 100%, 50% 100%;
    background-position: left top, right top;
}

.why-choose .choose-content {
    max-width: calc(45% - 30px);
    padding: 100px 0;
    margin-right: 0;
}


.why-choose .choose-content h2 {
    color: #fff;
    margin-bottom: 20px;
}

.why-choose .choose-content p {
    color: #fff;
}

.why-choose ul {
    list-style: none;
    padding-left: 0;
    color: #fff;
    margin-top: 40px;
}

.why-choose li {
    position: relative;
    font-family: Source Sans Pro;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    padding-left: 20px;
    margin-bottom: 10px;
}

.why-choose li:before {
    content: "";
    background: url('/assets/img/home/list-arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 5px;
}

.why-choose .image img {
    max-width: 100%;
}

/* You May Like */
.you-may-like {
    background: #ffffff;
    padding: 60px 0 70px;
    text-align: center;
}

/* Blogs */
.latest-blogs {
    background: #E5EFF6;
    padding: 60px 0 70px;
    text-align: center;
}

.blog-grid {
    position: relative;
    margin-top: 40px;
}

.blog-card {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 0.48px solid #162E51;
    position: relative;
    padding-bottom: 68px;
}

.blog-card .blog-image {
    background-color: #f4f4f4;
    height: 200px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
}

.blog-card .blog-content {
    padding: 20px 20px 30px;
    text-align: left;
}

.blog-card h3 {
    font-family: Merriweather;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #191717;
    margin-bottom: 10px;
}

.blog-card p {
    font-family: Source Sans Pro;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #191717;
}

.blog-date {
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #fff;
    top: 10px;
    left: 10px;
    border-radius: 8px;
    padding: 9px;
}

.blog-date p {
    font-family: Merriweather;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    color: #162E51;
}

/* Newsletter */
.update-newsletter {
    background-image: url('/assets/img/home/newsletter-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    padding: 70px 0;
    text-align: center;
}
.update-newsletter .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.update-newsletter .newslette-content {
    width: calc(48% - 11px);
}

.update-newsletter .newslette-content h2 {
    color: #fff;
    text-align: left;
    margin-bottom: 10px;
}

.update-newsletter .newslette-content p {
    text-align: left;
    color: #fff;
}

.newsletter-form {
    display: flex;
    justify-content: end;
    flex: 1;
    padding-left: 50px;
}

.newsletter-form input {
    font-family: Source Sans Pro;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    padding: 20px;
    width: 100%;
    max-width: 395px;
    height: 65px;
    border-radius: 6px 0 0 6px;
    border: none;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    font-family: Source Sans Pro;
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    text-align: center;
    padding: 20px 25px;
    min-width: 173px;
    height: 65px;
    border: none;
    background: #00BDE3;
    color: #fff;
    border-radius: 0 6px 6px 0;
    transition: all .3s;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: #00d4fff5;
}

.swiper-wrapper {
    gap: 30px;
}

.swiper-slide {
    width: calc(33% - 16px) !important;
    height: auto !important;
    margin: 0 !important;
}

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

.swiper-button-prev,
.swiper-button-next {
    width: 42px !important;
    height: 42px !important;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid #162E51;
    transition: all .3s;
}

.swiper-button-next {
    right: -60px !important;
}

.swiper-button-prev {
    left: -60px !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #162E51;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 12px !important;
    height: 18px;
    transition: all .3s;
}

.swiper-button-next:hover svg,
.swiper-button-prev:hover svg {
    fill: #fff;
    stroke: #fff;
}

.swiper-button-next:hover svg path,
.swiper-button-prev:hover svg path {
    stroke: #fff;
    fill: #fff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: unset !important;
}



@media only screen and (min-width: 768px) {
    .hero {
        background: url('/assets/img/home/hero-banner.png') no-repeat center/cover;
        color: #fff;
        padding: 157px 20px;
        text-align: center;
        background-position: right;;
    }
    .swiper-pagination {
        display: none;
    }
}

@media only screen and (max-width: 1600px) {
    .swiper-button-prev {
        left: -15px !important;
    }

    .swiper-button-next {
        right: -15px !important;
    }
}


@media only screen and (max-width: 1299px) {
    .swiper-wrapper {
        gap: 20px;
    }
}

@media only screen and (max-width: 1024px) {

    h2,
    .hero h1 {
        font-size: 35px;
        line-height: 1.2;
    }

    p {
        font-size: 18px;
        line-height: 1.3;
    }

    .hero {
        padding: 100px 20px;
    }

    .trusted-antibodies {
        padding: 40px 0;
    }

    .featured-products {
        padding: 40px 0 50px;
    }

    .trusted-logos {
        padding: 40px 0;
    }

    .why-choose .choose-content {
        padding: 50px 0;
    }

    .you-may-like {
        padding: 40px 0 50px;
    }

    .latest-blogs {
        padding: 40px 0 50px;
    }

    .trusted-antibodies .antibodies-cards {
        padding-left: 50px;
    }

    .product-grid,
    .blog-grid {
        margin-top: 30px;
    }

    .logo-track img {
        max-width: 200px;
    }

    .why-choose {
        background-size: cover;
    }
}

@media only screen and (max-width: 991px) {
    .newsletter-form {
        padding-left: 20px;
    }

    .newsletter-form button {
        font-size: 18px;
        padding: 20px 18px;
        min-width: 150px;
    }

    .why-choose {
        background-image: linear-gradient(to right, #162E51 -7%, transparent 100%),
            url("/assets/img/home/choose.png  ");
        background-size: cover;
    }

    .why-choose .choose-content {
        max-width: 100%;
    }
}


@media only screen and (max-width: 767px) {
    .hero {
        background: url('/assets/img/home/mobile-banner.jpg') no-repeat center/cover;
        color: white;
        text-align: center;
        padding: 200px 0 50px;
    }

    h2,
    .hero h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .hero .hero-headline {
        font-size: 20px;
        line-height: 1.3;
        margin: 20px 0 20px;
    }

    .hero-form input {
        height: 50px;
        font-size: 16px;
        padding: 10px 20px;
    }

    .hero-form button {
        height: 50px;
        font-size: 16px;
        padding: 10px 25px;
    }

    .trusted-antibodies .antibodies-content p {
        margin-bottom: 10px;
    }

    .trusted-antibodies {
        padding: 25px 0 30px;
        background-color: #f9f9f9;
        text-align: center;
    }

    .antibodies-boxes {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
    }

    .antibodies-boxes .box:nth-last-of-type(3) {
        border-radius: 0px 25px 0px 0px;
    }

    .antibodies-boxes .box:nth-last-of-type(2) {
        border-radius: 0px 0px 0px 25px;
    }

    .why-choose ul {
        margin-top: 20px;
    }

    .why-choose li {
        font-size: 18px;
        line-height: 25px;
    }

    .antibodies-boxes .box svg {
        margin-bottom: 15px;
        width: 40px;
        height: 40px;
    }

    .antibodies-boxes .box a {
        font-size: 18px;
    }

    .antibodies-boxes .box {
        padding: 20px;
    }

    .trusted-antibodies .antibodies-content {
        width: 100%;
    }

    .trusted-antibodies .antibodies-cards {
        padding-left: 0;
    }

    .product-grid {
        margin-top: 25px;
    }

    .featured-products {
        padding: 20px 0 30px;
    }

    .trusted-logos {
        padding: 20px 0 30px;
    }

    .you-may-like {
        padding: 25px 0 30px;
    }

    .latest-blogs {
        padding: 25px 0 30px;
    }

    .blog-grid {
        margin-top: 25px;
    }

    .swiper-wrapper {
        gap: 0;
    }

    .swiper-slide {
        width: 100% !important;
    }

    .why-choose .choose-content {
        max-width: 100%;
        padding: 30px 0 30px;
    }

    .logo-track img {
        max-width: 150px;
    }

    .carousel-item {
        min-width: 50%;
    }

    .update-newsletter {
        padding: 30px 0;
    }

    .update-newsletter .newslette-content {
        width: 100%;
    }

    .newsletter-form {
        padding-left: 0;
        margin-top: 30px;
    }

    .newsletter-form input {
        height: 50px;
        font-size: 16px;
    }

    .newsletter-form button {
        height: 50px;
        font-size: 16px;
        padding: 10px 10px;
        min-width: 120px;
    }

    .newsletter-form {
        justify-content: left;
        padding-left: 0;
    }
}

@media only screen and (max-width: 480px) {
    .carousel-item {
        min-width: 100%;
    }
}