

/************************************/

/*** 	 Global Variables	  ***/

/************************************/

:root {
    --primary-color: #121820;
    --secondary-color: #80a941;
    --text-color: #575757;
    --accent-color: #007cc2;
    --bg-color: #007cc20d;
    --white-color: #ffffff;
    --divider-color: #1218201a;
    --dark-divider-color: #ffffff1a;
    --error-color: rgb(230, 87, 87);
    --default-font: "Exo", sans-serif;
    --accent-font: "Roboto", sans-serif;
}

/************************************/

/*** 	   General css		  ***/

/************************************/
.accent-color {
    background-color: var(--accent-color);
}

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

html,
body {
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--default-font);
    width: calc(100% - 30px);
    margin: 0 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
}

section {
    padding: 60px 0;
    border-radius: 50px;
}

::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

::selection {
    color: var(--primary-color);
    background-color: var(--accent-color);
    filter: invert(1);
}

p {
    line-height: 1.6em;
    margin-bottom: 1.5em;
    font-family: var(--accent-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.1em;
    color: var(--primary-color);
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
    border-radius: 50px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

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

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    border: 1px solid var(--accent-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25em;
    text-transform: capitalize;
    color: var(--accent-color);
    padding: 15px 30px 15px 30px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    border-radius: 50px;
    z-index: 0;
}

.btn-default:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.btn-default.btn-highlighted {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.btn-default.btn-highlighted-white {
    background-color: var(--white-color);
    color: var(--accent-color);
}

.readmore-btn {
    position: relative;
    display: inline-block;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 25px;
    transition: all 0.4s ease-in-out;
}

.readmore-btn::before {
    content: "";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url("../images/arrow-accent.svg") no-repeat;
    background-position: right center;
    background-size: cover;
    width: 12px;
    height: 12px;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
    filter: brightness(0) invert(0);
    transform: translateY(-50%) rotate(45deg);
}

.readmore-btn:hover {
    color: var(--primary-color);
}

.cb-cursor:before {
    background: var(--accent-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-title.section-title-center {
    width: 100%;
    max-width: 860px;
    text-align: center;
    margin: 0 auto;
}

.section-btn {
    text-align: right;
}

.section-content-btn .section-btn {
    margin-top: 30px;
    text-align: left;
}

.section-title-content p {
    margin-bottom: 20px;
}

.section-title-content p:last-child {
    margin-bottom: 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h3 {
    display: inline-block;
    font-family: var(--accent-font);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 8px;
}

.section-title h3::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../images/title/title.png);
    background-repeat: no-repeat;
    margin: 20px 0 0 0;
}

.section-title h1 {
    font-size: 46px;
    margin-bottom: 0;
}

.section-title h2 {
    font-size: 46px;
    margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
    font-family: var(--accent-font);
    font-weight: 400;
    font-style: italic;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.dark-section {
    background-color: var(--primary-color);
}

.dark-section .section-title-content p,
.dark-section .section-title p,
.dark-section .section-title h3,
.dark-section .section-title h2,
.dark-section .section-title h1 {
    color: var(--white-color);
}

.dark-section .section-title h3 {
    background-image: url("../images/icon-sparkle-white.svg");
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/

/**** 	   Header css		 ****/

/************************************/

header.main-header {
    position: relative;
    /* margin: 30px auto; */
    z-index: 100;
}

header.main-header .container-fluid {
    padding: 0;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    border: 1px solid var(--divider-color);
    border-top: none;
    border-radius: 0 0 20px 20px;
}

.navbar {
    padding: 15px 30px;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand a img {
    width: 120px;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    position: relative;
    margin: 0 5px;
}

.main-menu ul li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1em;
    padding: 15px 10px !important;
    color: var(--primary-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 235px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--accent-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 235px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: "\f105";
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--white-color);
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--primary-color);
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
}

.header-btn {
    text-align: end;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: var(--accent-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
    background-color: var(--white-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
    background-color: var(--white-color);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--accent-color);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 7px 20px;
    color: var(--white-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.slicknav_menu ul ul li a {
    padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--white-color);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: translateY(-50%) rotate(-180deg);
    color: var(--primary-color);
}

/************************************/

/***        04. Hero css	      ***/

/************************************/

.hero {
    background: transparent;
    border-radius: 0;
}

.hero .container-fluid {
    padding: 0;
}

.hero.hero-bg-image .hero-box {
    position: relative;
    display: block;
    background: url("../images/hero/hero.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 150px 15px;
    overflow: hidden;
}

.hero.hero-bg-image .hero-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 30%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-bg-image.hero-video .hero-box .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero.hero-bg-image.hero-video .hero-box .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-bg-image .hero-box .hero-content {
    position: relative;
    background: #ffffff1a;
    width: 100%;
    max-width: 615px;
    padding: 40px;
    backdrop-filter: blur(10px);
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.hero.hero-bg-image .hero-box .hero-content .hero-content-list ul,
.hero.hero-bg-image .hero-box .hero-content .hero-body {
    justify-content: center;
}

.hero-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-content,
.hero-image-box {
    width: calc(50% - 15px);
    border-radius: 20px;
}

.hero-content {
    padding: 5.208vw;
    align-content: center;
}

.hero-body {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 40px;
    margin-top: 40px;
}

.hero-image-box {
    position: relative;
}

.hero-image {
    height: 100%;
}

.hero-image figure {
    display: block;
    height: 100%;
    border-radius: 20px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.842;
    object-fit: cover;
    border-radius: 20px;
}

.hero-counter {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 310px;
    background: var(--bg-color);
    border: 20px solid var(--bg-color);
    border-right: none;
    border-bottom: none;
    border-radius: 20px 0 0 0;
    z-index: 1;
}

.hero-counter::before,
.hero-counter::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    mask: url("../images/hero-image-corner-shape.svg");
    -webkit-mask: url("../images/hero-image-corner-shape.svg");
    background-color: var(--bg-color);
    mask-repeat: no-repeat;
    mask-size: cover;
}

.hero-counter::before {
    top: -40px;
    right: 0;
}

.hero-counter::after {
    bottom: 0;
    left: -40px;
}

.hero-counter-box {
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px;
}

.hero-counter-content {
    margin-bottom: 20px;
}

.hero-counter-content h2 {
    font-family: var(--accent-font);
    font-size: 46px;
    margin-bottom: 50px;
}

.hero-counter-content p {
    margin-bottom: 0;
}

/************************************/

/***      About Us      ***/

/************************************/
.about-us-img-counter {
    position: relative;
}

.about-us-counter {
    position: absolute;
    content: "";
    right: 20px;
    bottom: 20px;
    background-color: #ffffff1a;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 30px;
}

.about-us-counter h1 {
    display: inline-block;
    color: var(--white-color);
}

.about-us-counter p {
    color: var(--white-color);
    margin-bottom: 0;
}

/************************************/

/***      Our Products css      ***/

/************************************/
.our-products {
    background-color: var(--accent-color);
}

.our-products .section-title h3 {
    display: inline-block;
    font-family: var(--accent-font);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 8px;
}

.our-products .section-title h3::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../images/title/white-line.png);
    background-repeat: no-repeat;
    margin: 20px 0 0 0;
}

.our-products-pharmaceutical {
    background-color: var(--bg-color);
}

.our-products-nutraceutical {
    background-color: var(--bg-color);
}

.our-products-items p {
    color: var(--white-color);
}

.our-products-item-pharmaceutical p {
    color: var(--accent-color);
}

.our-products-item-nutraceutical p {
    color: var(--accent-color);
}

.our-products-items-img img {
    width: 100%;
    aspect-ratio: 1/1.2;
    object-fit: cover;
    margin-bottom: 20px;
}

.our-products .section-title h3 {
    color: var(--white-color);
}

.our-products .section-title h2 {
    color: var(--white-color);
}

/* Tab Button Group */
.btn-group {
    display: inline-flex;
    gap: 10px;
    border-radius: 50px;
    background: var(--white-color);
    overflow: hidden;
    margin: 20px 0;
    padding: 10px;
}

/* Tab Buttons */
.btn-group button {
    background: transparent;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 50px !important;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.btn-group button:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

/* Active Tab */
.btn-group button.active {
    background: var(--accent-color);
    /* Blue Background */
    color: var(--white-color);
    border-radius: 50px;
}

/************************************/

/***  Research and Development css  ***/

/************************************/
.research-development-img img {
    width: 100%;
    aspect-ratio: 1/0.7;
    object-fit: cover;
}

/* Apply divider to every column except the last one */
.research-development .row.row-gap-4>.col-lg-3:not(:last-child) {
    position: relative;
}

.research-development .row.row-gap-4>.col-lg-3:not(:last-child)::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #26262680;
}


.footer-box-ti {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.footer-box-ti h4 {
    color: var(--accent-color);
}

.footer-box-ti img {
    width: 50px;
    border-radius: 0 !important;
}

/************************************/

/***  Quality Assurance css  ***/

/************************************/
.quality-assurance {
    background-color: var(--bg-color);
}

.quality-assurance-img img {
    width: 100%;
    aspect-ratio: 1/0.7;
    object-fit: cover;
}

/************************************/

/***  Global Presence css  ***/

/************************************/
.global-presence-content ul {
    list-style: none;
    padding: 0;
}

.global-presence-content ul li {
    color: var(--primary-color);
    font-weight: 400;
    background-image: url(../images/icon/right-arrow.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px auto;
    padding-left: 30px;
    margin: 15px 0;
}

/************************************/

/***      Why Choose Us css      ***/

/************************************/

.why-choose-us {
    background-color: var(--bg-color);
}

.why-choose-us-about {
    background-color: var(--white-color);
}

.why-choose-us-items {}

.why-choose-us-icon {
    margin-bottom: 15px;
}

.why-choose-us-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.why-choose-us-icon img {
    background-color: var(--white-color);
    padding: 10px;
    /* border-radius: 0 !important; */
}

.why-choose-us-items h5 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.why-choose-us-items p {
    margin: 0;
}

/************************************/

/***      Counter css      ***/

/************************************/
.counter-item h1 {
    color: var(--primary-color);
    display: inline-block;
    font-weight: 700;
    margin-bottom: 20px;
}

.counter-item-content h5 {
    border-top: 1px solid var(--text-color);
    padding-top: 20px;
    margin-bottom: 10px;
}

.counter-item-content p {
    margin: 0;
}

/************************************/

/***      Testimonial css      ***/

/************************************/
.testimonial {
    background-color: var(--bg-color);
}

.testimonial-item {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 50px;
}

.testimonial-item ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: start;
    align-content: center;
    gap: 4px;
    color: var(--accent-color);
}

.testimonial-item-footer h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-item-footer p {
    margin: 0;
}

/************************************/

/***      About Us css      ***/

/************************************/
.page-header {
    position: relative;
    padding: 150px 0px;
    background: url(../images/hero/hero.jpg) no-repeat center bottom;
    background-size: cover;
    border-radius: 50px;
    margin-bottom: 20px;
}

.page-header-box {
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: #FFFFFF1A;
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 50px;
}

.page-header-box h1 {
    color: var(--white-color);
    font-size: 52px;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.page-header-box ol {
    display: inline-flex;
    margin-bottom: 0;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item a {
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item {
    color: var(--white-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
}

/************************************/

/***      Mission and Vision css      ***/

/************************************/
.mission-vision {
    background-color: var(--bg-color);
}

.our-mission-vision h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.our-mission-vision p {
    margin-bottom: 0;
}

.mission-vision .col-lg-6 {
    position: relative;
    padding-right: 30px;
    padding-left: 30px;
}

.mission-vision .col-lg-6:first-child::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #26262680;
}


/************************************/

/***      Product Details css      ***/

/************************************/
.product-details {
    background-color: var(--bg-color);
}

.product-details-content h3 {
    color: var(--accent-color);
    margin-bottom: 40px;
}

.product-details-content ul {
    padding: 0;
    list-style: none;
    margin-bottom: 40px;
}

.product-details-content ul li {
    margin: 15px 0;
}

.all-details h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.all-details p {
    margin: 0;
}

.all-details ul {
    padding: 0;
    list-style: none;
}

.all-details ul li {
    color: var(--primary-color);
    font-weight: 400;
    background-image: url(../images/icon/right-arrow.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px auto;
    padding-left: 30px;
    margin: 15px 0;
}

/************************************/

/***      R&D css      ***/

/************************************/
.r-d {
    background-color: var(--bg-color);
}

.r-d-item {
    background-color: var(--white-color);
    border-radius: 50px;
    padding: 50px 40px;
    border: 1px solid var(--secondary-color);
    border-top: 5px solid var(--secondary-color);
    border-right: 5px solid var(--secondary-color);
}

.r-d-item h5 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.r-d-item p {
    margin: 0;
}

.r-d-item-icon {
    margin-top: 20px;
}

.r-d-item-icon img {
    border-radius: 0;
}

/************************************/

/***      Common css      ***/

/************************************/
.common-img img {
    width: 100%;
}

.common-body ul {
    padding: 0;
    list-style: none;
}

.common-body ul li {
    color: var(--primary-color);
    font-weight: 400;
    background-image: url(../images/icon/right-arrow.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px auto;
    padding-left: 30px;
    margin: 15px 0;
}

/************************************/

/***      Footer css      ***/

/************************************/
footer {
    background-color: var(--secondary-color);
    padding: 100px 0 0 0;
    border-radius: 50px;
    margin-top: 20px;
}

.footer-about img {
    width: 180px;
    border-radius: 0;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--white-color);
}

.footer-social-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social-links ul li i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--white-color);
    color: var(--white-color);
    border-radius: 50%;
}

.footer-links h2,
.footer-address h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h2::before,
.footer-address h2::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../images/title/white-line.png);
    background-repeat: no-repeat;
    margin: 24px 0 0 0;
}

.footer-links ul {
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    margin: 15px 0;
}

.footer-links ul li a {
    color: var(--white-color);
}

.footer-info-box {
    position: relative;
    padding-left: 35px;
    margin-bottom: 25px;
}

.footer-info-box .icon-box {
    position: absolute;
    top: 2px;
    left: 0;
}

.footer-info-box .icon-box i {
    color: var(--white-color);
    font-size: 20px;
}

.footer-info-box p {
    font-size: 16px;
    color: var(--white-color);
    margin: 0;
}

.footer-info-box a {
    font-size: 16px;
    color: var(--white-color);
    margin: 0;
}

.footer-copyright {
    margin-top: 50px;

}

.copyright p {
    color: var(--white-color);
    text-align: center;
    background-color: #749E34;
    padding: 20px 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin: 0;
}

/************************************/

/***      What We Do css      ***/

/************************************/
.what-we-do {
    position: relative;
}

.what-we-do-img {
    position: relative;
}

.what-we-do-img img {
    aspect-ratio: 1/.8;
    object-fit: cover;
    width: 100%;
}

.what-we-do-img::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 0.5;
    z-index: 1;
    border-radius: 50px;
}

.what-we-do-content {
    position: absolute;
    top: 20px;
    left: 0;
    padding: 45px;
    z-index: 2;
}

.what-we-do-content h2 {
    margin-bottom: 15px;
}

.what-we-do-content h2,
.what-we-do-content p {
    color: var(--white-color);
}


/************************************/

/***      careers css      ***/

/************************************/
.careers {
    background-color: var(--bg-color);
}

.careers-img img {
    width: 100%;
}

/************************************/

/***      Contact Us css      ***/

/************************************/
.contact-top-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-top-color {
    background-color: var(--accent-color);
    padding: 30px;
    border-radius: 20px;
}

.contact-top-items-icon i {
    color: var(--white-color);
}

.contact-top-items p {
    margin: 0;
    color: var(--white-color);
}

.contact-top-items a {
    margin: 0;
    color: var(--white-color);
}

.contact-form {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 40px;
    border-radius: 50px;
}

.contact-form .form-control {
    border: none;
    padding: 12px 10px;
    font-size: 16px;
    background-color: var(--bg-color);
    border-radius: 10px;
    box-shadow: none;
    outline: none;
}

/************************************/

/***      Responsive css      ***/

/************************************/

@media only screen and (max-width: 1760px) {
    header.main-header .header-sticky.active {
        border-top: none;
        border-right: none;
        border-left: none;
        border-radius: 0;
    }
}

@media only screen and (max-width: 1024px) {
    .main-menu ul li {
        margin: 0;
    }

    .hero-content,
    .hero-image-box {
        width: 100%;
    }

    .hero-content {
        padding: 30px;
    }

    .hero-image,
    .hero-image figure,
    .hero-image img {
        height: auto;
    }

    .hero-image img {
        aspect-ratio: 1 / 0.55;
    }

    .hero-counter-content h2 {
        margin-bottom: 30px;
    }

    .hero-video-tag-btn,
    .hero-rating-content {
        top: 30px;
        left: 30px;
        right: 30px;
    }

    .hero-info-video-content {
        bottom: 30px;
        right: 30px;
        left: 30px;
    }

    .hero-info-video-content h3,
    .hero-rating-content h3 {
        font-size: 18px;
    }

    .hero-image-rating-box .google-rating-box {
        right: 30px;
        bottom: 30px;
        padding: 15px;
    }

    .what-we-content {
        padding: 40px;
        margin-left: 0;
    }
}

@media only screen and (max-width: 991px) {
    body {
        width: 100%;
        margin: 0;
    }

    img {
        border-radius: 20px;
    }

    .btn-default {
        padding: 12px 40px 12px 20px;
    }

    .btn-default::before {
        right: 20px;
        width: 10px;
        height: 10px;
    }

    header.main-header {
        margin: 0;
    }

    .navbar {
        padding: 15px;
        border-radius: 0;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    section {
        border-radius: 0 !important;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-title.section-title-center {
        max-width: 100%;
    }

    .section-content-btn .section-btn {
        margin-top: 20px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-title h3 {
        font-size: 16px;
    }

    .section-title p {
        margin-top: 10px;
    }

    .section-title-content {
        margin-top: 10px;
    }

    .section-btn {
        text-align: left;
        margin-top: 15px;
    }

    .hero {
        margin: 30px auto;
    }

    .hero .container-fluid {
        padding: 0 15px;
    }

    .hero.hero-bg-image .hero-box {
        padding: 80px 15px;
    }

    .hero-body {
        gap: 20px 30px;
        margin-top: 30px;
    }

    footer {
        padding: 60px 0 0 0;
        border-radius: 0;
    }

    .footer-copyright {
        margin-top: 30px;
    }

    .copyright p {
        border-radius: 0;
    }

    .page-header {
        padding: 100px 0px;
        border-radius: 0;
    }

    .page-header-box h1 {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .mission-vision .col-lg-6:first-child::before {
        display: none;
    }

    .what-we-do-content {
        padding: 20px;
    }
    .what-we-do-img::before {
        border-radius: 20px;
    }

    .product-details-content h3 {
        margin-bottom: 20px;
    }

    .product-details-content ul {
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 40px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .section-row {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 26px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-body {
        gap: 20px;
        margin-top: 30px;
    }

    .hero.hero-bg-image .hero-box .hero-content {
        padding: 30px 10px;
    }

    .footer-box::before {
        display: none;
    }

    .page-header {
        padding: 60px 0px;
    }

    .page-header-box h1 {
        font-size: 36px;
    }

    .page-header-box {
        border-radius: 20px;
    }

    .contact-form {
        border-radius: 20px;
    }

    .testimonial-item {
        border-radius: 20px;
    }
}


@media only screen and (max-width: 576px) {
    .btn-group {
        flex-direction: column;
        border-radius: 20px;
    }

    .join-team-item-btn .btn-default {
        font-size: 10px;
    }
}