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


:root {
    --header-height: 3.5rem;

    /* Industrial Color Palette */
    --first-color: #0F3D5E;
    --title-color: #0A2236;
    --text-color: #4A5568;
    --footer-color: #2D3748;

    --white-color: #FFFFFF;
    --body-color: #F8FAFC;
    --container-color: #FFFFFF;

    /* Main Brand Gradient */
    --gradient-primary: linear-gradient(135deg,
            #0F3D5E 0%,
            #145A8D 50%,
            #1E73BE 100%);

    /* CTA Gradient */
    --gradient-tech: linear-gradient(135deg,
            #F47C20 0%,
            #FF9A3D 100%);

    /* Additional Colors */
    --accent-color: #F47C20;
    --success-color: #22C55E;
    --border-color: #E2E8F0;

    /* Typography */
    --body-font: "Inter", sans-serif;
    --second-font: "Montserrat", sans-serif;

    --biggest-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /* Font Weight */
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;

    /* Z Index */
    --z-tooltip: 10;
    --z-fixed: 100;

    /* Border & Shadow */
    --border: 1px solid var(--border-color);
    --box-shadow: 0 8px 25px rgba(15, 61, 94, 0.12);
}

.btn,
.white-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0px 5px 10px #1e73bec0;
    font-size: 1.6rem;
    padding: 2px 5px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
}

.btn {
    background: linear-gradient(135deg,
            #F47C20 0%,
            #FF9A3D 100%);
    box-shadow: 0px 3px 15px #f47c2092;
    font-size: 2rem;
}

.btn:hover {
    background: linear-gradient(135deg,
            #f97816cb 0%,
            #ff9430cb 100%);
    box-shadow: 0px -3px 15px #f47c2098;
}

.btn:hover,
.option-btn:hover,
.delete-btn:hover {
    background: var(--gradient-tech);
    transform: translateY(-2px);
}


.white-btn:hover {
    background: linear-gradient(135deg,
            #F47C20 0%,
            #FF9A3D 100%);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0px -5px 10px #F47C20;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    color: var(--title-color);
    font-weight: 700;
}

header .header1 .flex {
    background: var(--gradient-primary);
}

section:nth-child(even) {
    background: #ffffff;
}

section:nth-child(odd) {
    background: #f8fafc;
}

body {
    font-family: var(--body-color);
    background: linear-gradient(180deg, #E7F3FF 0%, #CFE7FF 100%);
}



#toastBox {
    position: absolute;
    /* bottom: 30px; */
    top: 0;
    right: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
}

.toast {
    width: 250px;
    height: 30px;
    background-color: white;
    font-weight: 450;
    font-size: 1.6rem;
    margin: 5px;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.08);
    border: none;
    outline: none;
    border-radius: 30px;
    position: relative;
    transform: translateY(-150%);
    animation: slideRoast 3s linear forwards;
}

@keyframes slideRoast {

    0% {
        transform: translateY(-200%);
        opacity: 0;
    }

    40% {
        transform: translateY(0);
        opacity: 1;
    }

    70% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(40%);
        opacity: 0;
    }

}

.toast i {
    margin: 0 15px;
    font-size: 1.5rem;
    color: red;
}


.toast::after {
    content: '';
    position: absolute;
    left: 10px;
    bottom: 0;
    height: 3px;
    background-color: red;
    border-radius: 50px;
    width: 92%;
    animation: anim 3s linear forwards;

}

@keyframes anim {
    100% {
        width: 0;
    }
}

.toast.error::after {
    background-color: red;
}

.toast.Invalid::after {
    background-color: orange;
}

/* BASE  */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
}

* {
    font-family: var(--body-font);
    font-weight: 470;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all 0.2s linear;


}

/* Text Selection */
/* Global Scrollbar */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: #EAF1F7;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0F3D5E, #145A8D);
    border-radius: 20px;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: #F47C20;
}

/* HTML */
html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}

/* Body */
body {
    background: #F8FAFC;
    color: var(--text-color);
    line-height: 1.7;
}

/* Sections */
.section {
    /* Path is relative to this CSS file (css/), so go up one level */
    background-image: url("../assets/images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 200px;
    /* ensure the section is tall enough to show the image */
}

/* Alternate Section Backgrounds */


@keyframes fadeIn {
    0% {
        transform: translateY(1rem);
        opacity: 0.2s;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease-out;
    visibility: hidden;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.revea2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.revea2.active {
    opacity: 1;
    transform: translateY(0);
}

.revea3 {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.revea3.active {
    opacity: 1;
    transform: scale(1);
}

.revea4 {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: all 0.7s ease;
}

.revea4.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.7s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}


.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.7s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}



html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section {
    padding: 3rem 2rem;
}

header .header1 .flex {
    display: flex;
    justify-content: space-between;
    font-size: 1.8rem;
    padding: 5px 10px;
    background: var(--gradient-primary);
}

header .header1 .flex .details {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

header .header1 .flex .details a:hover {
    color: var(--white-color);
    text-shadow: 0 5px 10px #ff6f00;
}

header .header1 .flex .details a,
header .header1 .flex .social_media a {
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--white-color);
}

header .header1 .flex .social_media a i {
    text-decoration: none;
    font-size: 1.8rem;
    color: var(--white-color);
    padding: 2px;
    border-radius: 0.5rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

header .header1 .flex .social_media a i:hover {
    transform: scale(1.2);
}

header .header2 .flex {
    background-color: var(--container-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--box-shadow);
}

header .header2 .menu {
    display: none;
    cursor: pointer;
    font-size: 2.4rem;
    color: var(--first-color);
    margin-left: auto;
    margin-right: 1.5rem;
    z-index: 1000;
}

header .header2 .logo {
    width: 200px;
    height: 50px;
    margin-top: 5px;
}

header .header2 .logo img {
    width: 100;
    height: 100%;
    object-fit: cover;
}

header .header2 .logo img.brand-logo {
    display: none;
}

header .header2 .flex .navbar {
    display: flex;
    gap: 3rem;
    justify-content: center;
    position: relative;
    z-index: 999;
}



header .header2 .navbar span a,
header .header2 .navbar span .product-btn {
    position: relative;
    font-size: 1.8rem;
    color: var(--first-color);
    color: #ff6f00;
    font-weight: 650;
    font-family: var(--second-font);
    text-decoration: none;
}



header .header2 .navbar .product .pro-cat {
    position: absolute;
    top: 90%;
    right: 5%;
    background: linear-gradient(180deg,
            #ffffffe8 20%,
            #F8FAFC 50%,
            #FFFFFF 100%);
    /* border: 2px solid red; */
    border-left: 1px solid #317aba;
    border-bottom: 1px solid var(--title-color);
    border-right: 1px solid #317aba;
    border-radius: 20px;
    min-width: 150px;
    z-index: -1;
    padding: 10px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    opacity: 0;
    transition: all .5s ease;
}

header .header2 .navbar .product {
    cursor: pointer;
}

header .header2 .navbar .product .pro-cat .category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

header .header2 .navbar .product .pro-cat .category a {
    /* background-color: var(--container-color); */
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    padding: 2px 5px;
    width: 100%;
    font-size: 1.7rem;
    font-size: 500;
}

header .header2 .navbar .product .pro-cat .category a:hover {
    box-shadow: 0 -3px 15px #317aba;
    /* border-radius: 0; */
    border-end-end-radius: 0;
    border-end-start-radius: 0;
}

header .header2 .navbar .product .pro-cat.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
}

header .header2 .navbar .product:hover .pro-cat {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
}


header .header2 .navbar span a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #1E73BE;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

header .header2 .navbar span a:hover::after {
    transform: scaleX(1);
}

header .header2 .navbar span a:hover {
    color: var(--first-color);
}


.search-box {
    width: 250px;
    height: 30px;
    background: rgba(0, 0, 255, 0.305);
    border-radius: 5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    z-index: 999;
    margin-right: 30px;
}

.row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.row button {
    background: transparent;
    cursor: pointer;
    margin-top: 5px;
    padding: 2px;
    border-radius: 20px;
}

.row button:hover {
    background-color: #1e73bebf;
    color: #fff;
}

input {
    flex: 1;
    height: 20px;
    background: transparent;
    margin-top: 5px;
    width: 50px;
    border: 0;
    outline: 0;
    font-size: 18px;
    color: var(--primary-color);
    vertical-align: middle;
}

input::placeholder {
    color: var(--primary-color);
    font-weight: 500;
    opacity: 0.7;
    font-size: 1.2rem;
}

.result-box ul {
    border-top: 1px solid #999;
    padding: 10px 8px;
    background-color: white;
    border-radius: 3px;
    font-size: 1.5rem;
}

.result-box ul li {
    list-style: none;
    border-radius: 3px;
    padding: 2px;
    color: var(--primary-dark);
    text-shadow: none;
    cursor: pointer;

}

.result-box ul li:hover {
    color: var(--first-color);
    background-color: #e9f3ff;
}

.result-box.active {
    display: none;
}


.about .flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.about .flex .image {
    flex: 1 1 40rem;
    position: relative;
}

.about .flex .image video,
.about .flex .image img {
    width: 100%;
    border-radius: 10px;
}

.about .flex .image video {
    box-shadow: 0px 5px 15px #1e73be8b;
}


.about .flex .content {
    flex: 1 1 40rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.about .flex .content h3 {
    font-size: 1.8rem;
    color: #ff6f00;
    font-weight: 600;
    text-transform: capitalize;
    text-align: left;
}

.about .flex .content h2 {
    font-weight: 700;
    font-size: 3rem;
    color: var(--title-color);
    text-transform: capitalize;
    line-height: 1.2;
    /* text-align: justify; */
}

.about .flex .content .qualities {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.about.steps {
    background-color: var(--body-color);
}

.about .flex .content .trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    justify-content: space-around;
}

.about .flex .content .trust .box {
    display: flex;
    align-items: first baseline;
    gap: 1rem;
    padding: 5px;
    border-radius: 20px;
    box-shadow: 0px 5px 15px #1e73be45;
}

.about .flex .content .trust .box h3 {
    color: var(--title-color);
}

.about .flex .content .trust .box i {
    font-size: 1.8rem;
    color: #ff6f00;
}

.about .flex .content .trust .box:hover {
    background-color: #FF9A3D;

}

.about .flex .content .trust .box:hover i {
    color: white !important;
}

.about .flex .content .trust .box:hover h3 {
    color: white !important;
}

.about .flex .content .trust .box:hover p {
    color: rgb(238, 237, 237) !important;
}

.about .flex .content .qualities span {
    font-size: 1.5rem;
}

.about .flex .content .qualities span i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: #fff;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.2rem;
    margin-right: .8rem;
    box-shadow: 0 4px 12px rgba(15, 61, 94, 0.2);
}

.about .flex .content .qualities span:hover i {
    background: var(--gradient-tech);
}

.about .flex .content p {
    padding: 1rem 0;
    line-height: 1.5;
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}


.about .flex .content .card-button {
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    box-shadow: 0 8px 15px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    font-size: 1.6rem;
}

.about .flex .content .card-button:hover {
    background: white;
    color: #6366f1;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(90, 102, 241, 0.3);
}

.section {
    background: url("../assets/images/background.png") !important;
    width: 100%;
    min-height: 70px;

    width: 100%;
}

.section .content {
    max-width: 1200px;
    margin: 0 auto;
}

.section .flex .content {
    backdrop-filter: blur(5px);
}

.section h2 {
    font-size: 2rem;
    text-align: center;
    font-weight: 600;
    color: #ff6f00;
}

.section h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--title-color);
    text-align: center;
}

.section p {
    color: var(--text-color);
    text-align: center;
    font-size: 1.8rem;
}


.images .image-section {
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    height: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}


.images .gallery .box {
    position: relative;
    height: 200px;
    width: 300px;
    margin: 20px auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    box-shadow: 0px 5px 15px #1e73be45;
}

.images .gallery .box .tag {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    background: #f47c20b8;
    border-radius: 20px;
    padding: 0 5px;
    font-size: 1.5rem;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    opacity: 0;
    transition: all 0.3s ease-in;
    pointer-events: none;
}

.images .gallery .box:hover img {
    transform: scale(1.06);
}

.images .gallery .box:hover .tag {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
}



.gallery .box a img {
    height: 100%;
    width: 100%;
    object-fit: cover;

}

.faqs-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faqs-section .box {
    font-size: 1.5rem;
}

.faqs-section .box {
    width: 500px;
}

.faqs-section .box .question {
    font-weight: 700;
    color: var(--title-color);
    background-color: #FF9A3D;
    border-radius: 5px;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.faqs-section .box .question.active {
    background-color: #ff6f00;
    color: #fff;
    width: 500px;
}

.faqs-section .box .question i.active {
    transform: rotate(180deg);
}

.faqs-section .box .answer {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    display: none;
    opacity: 0;
    transition: all 0.3sec ease;
}

.faqs-section .box .answer.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    display: inline-block;
    width: 500px;
    opacity: 1;
}

.faqs-section .box .question:hover {
    background-color: #ff6f00;
}


.section2 {
    /* full-bleed background */
    background-image: url("../assets/images/background2.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    margin: 0 auto;
    min-height: 30vh;
    display: block;
}

/* keep the inner content centered and constrained */
.section2 .flex {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section2 .flex .content {
    background: transparent;
}

.section2 .flex .white-btn {
    font-size: 2rem;
}

.section2 .flex {
    padding: 0rem 2rem;
}

.section2 .flex .image {
    background: transparent;
}

.section2 .flex .content h2 {
    font-size: 3rem;
}








/*============== about ===================*/

.heading {
    background: url("../assets/images/cat1.jpg");
    width: 100%;
    height: 50vh;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.heading.printing-inks {
    background: url("../assets/images/product_page.png");
    background-position: 60% 50%;
}

.heading.retarders-inks {
    background: url("../assets/images/retarders.png");
    background-position: 60% 50%;
}

.heading.thinners-inks {
    background: url("../assets/images/thinners.png");
    background-position: 60% 50%;
}

.heading.speciality-inks {
    background: url("../assets/images/speciality.png");
    background-position: 60% 50%;
}

.heading.contact-page {
    background: url("../assets/images/contact_page.png");
    background-position: 60% 50%;
}

.heading h3 {
    font-size: 4.5rem;
    margin: 0 2rem;
}

.heading p {
    font-size: 1.5rem;
    margin: 0 2rem;
    font-weight: 700;
}

.heading p a {
    color: #ff6f00;
    font-weight: 600;
}

.heading p a:hover {
    text-decoration: underline;
    text-shadow: 0 -5px 10px #ff6f009d;
}

.heading p span {
    font-size: 600;
}

.about.bacground {
    background: url("../assets/images/background.png")
}

.about .content.vission h2 {
    font-size: 4rem;
}

.about .content.vission {
    align-items: start;
}

.about .content.mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    box-sizing: border-box;
}

.about .content.mission .box h2 {
    font-size: 2.5rem;
}

.about .content.mission .box {
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 5px 15px #145b8dc3;
}

.about .content.mission .box:first-child,
.about .content.mission .box:hover {
    background-color: #145A8D;
    color: #fff;
}

.about .content.mission .box:hover>* {
    color: #fff;
}

.about .content.mission .box:first-child>* {
    color: #fff;
}

.about .flex .content.trust3 h2 {
    margin-bottom: 2rem;
}

.about .flex .content .trust2 .box {
    flex-direction: column;

}

.about .flex .content .trust2 .box>* {
    padding: 0 5px;
}

.about .flex .content .trust2 .box h3 {
    color: #fff;

}

.about .flex .content .trust2 .box p {
    color: #ffffffcf;
}

.about.vission h2,
.about.vission p {
    text-align: center;
}

.about.vission h2 {
    color: #ff6f00;
    font-size: 2rem;
}

.about.vission p {
    color: var(--title-color);
    font-size: 3rem;
    font-weight: 700;
}

.about .flex .content .trust2 .box:nth-child(1) {
    background-color: #0F3D5E;
}

.about .flex .content .trust2 .box:nth-child(2) {
    background-color: #145A8D;
}

.about .flex .content .trust2 .box:nth-child(3) {
    background-color: #1E73BE;
}

.about .flex .content .trust2 .box:nth-child(4) {
    background-color: #0F3D5E;
}


.about .flex .content .trust2 .box i {
    border-radius: 50%;
    background-color: #427295b9;
    display: flex;
    color: #ffcfaa;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.about.steps {
    max-width: 1000px;
    margin: 0 auto;
}

.about.steps .heading2 {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.about.steps .heading2 h3 {
    color: #ff6f00;
    font-size: 1.3rem;
    font-weight: 600;
}

.about.steps .heading2 h2 {
    font-size: 4rem;
    color: var(--title-color);
    line-height: 1;
}

.about.steps .heading2 p {
    font-size: 2rem;
    color: var(--text-color);
}


.about.steps .content .box2 {
    background-color: var(--container-color);
    border-radius: 20px;
    box-shadow: 0 8px 15px rgba(99, 102, 241, 0.2);
    padding: 20px;
}

.about.steps .content .box2 h3 {
    color: var(--title-color);
    font-size: 2.5rem;
}

.about.steps .content .box2 P {
    color: var(--text-color);
}

.about.steps .content .box2 .numbers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
}

.about.steps .content .box2 .numbers span {
    color: rgb(186, 0, 0);
    font-weight: 600;
}

.about.steps .content .box2 .numbers i {
    color: var(--title-color);
}

.carousel {
    width: 100%;
    margin: 0 auto;
    background: #145A8D !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    gap: 1rem;
}


.carousel::-webkit-scrollbar {
    display: none;
}

.carousel .group {
    display: flex;
    gap: 1rem;
    animation: spin1 30s infinite linear;
    padding-right: 1rem;
    min-width: max-content;
    will-change: transform;
}

.carousel .group .card {
    flex: 0 0 auto;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid #1E73BE;
    box-shadow: 0 8px 25px rgba(15, 61, 94, 0.12);
    color: #fff;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    font-size: 1.8rem;
    border-radius: 50px;
    font-weight: 600;

    position: relative;
    z-index: 1;
}

/* Side overlay shadows that sit above the cards for a depth effect */
.carousel::before,
.carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8rem;
    pointer-events: none;
    z-index: 5;
}

.carousel::before {
    left: 0;
    background: linear-gradient(90deg, #0b2c44, rgba(0, 119, 255, 0));
}

.carousel::after {
    right: 0;
    background: linear-gradient(270deg, #0a2940, rgba(0, 119, 255, 0));
}


@keyframes spin1 {
    from {
        transform: translateX(0);
    }

    to {
        /* move by half so the duplicated group fills the gap for a seamless loop */
        transform: translateX(-50%);
    }
}


/*********end about*********/



/* ======== Products =========== */

.products .box-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    background-color: var(--body-color);
    align-items: center;
    justify-content: space-around;
}

.products .box-container .box {
    background-color: var(--container-color);
    padding: 5px;
    border: 1px solid #145b8dcf;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(99, 101, 241, 0.416);
    box-sizing: border-box;
    width: 310px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.products .box-container .box .images a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 200px;
    box-sizing: content-box;
    margin: 0 auto;
}


.products .box-container .box .images .content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.products .box-container .box .images h3 {
    font-size: 2rem;
    text-align: center;
}

.products .box-container .box .images p {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.8rem;
    box-sizing: border-box;
    padding: 0 15px;
    padding-bottom: 5px;
}

.products .box-container .box .images a img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.products .box-container .box .images a img:hover {
    transform: scale(0.98);

}

.products .box-container .details {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    box-sizing: border-box;
    justify-content: center;
    /* align-items: center; */
    width: 100%;
}

.products .box-container .details a.btn {
    background: linear-gradient(135deg, #25D366 0%, #20c659 40%, #1ebe57 60%, #0fb044 100%);
    box-shadow: none;
}

.products .box-container .details a.btn:hover {

    background: linear-gradient(135deg, #1eb756 0%, #199b46 40%, #179c46 60%, #0c9038 100%);
    box-shadow: 0 10px 25px rgba(37, 211, 102, .25);
}

.products .box-container .details a.white-btn {
    box-shadow: none;
    padding: 5px
}

.products .box-container .details a.white-btn:hover {
    box-shadow: 0 10px 25px rgba(37, 211, 102, .25);
    background: linear-gradient(135deg,
            #0d3551 0%,
            #104d78 50%,
            #195e9b 100%);
}

.products .box-container .details a.btn:nth-child(3) {
    background: linear-gradient(90deg,
            #7B4DFF 0%,
            #A13EEA 45%,
            #D92C8F 100%);
    box-shadow: none;
}

.products .box-container .details a.btn:nth-child(3) i {
    opacity: 0;
    transition: all 0.3s ease;
}

.products .box-container .details a.btn:nth-child(3):hover i {
    opacity: 1;
    padding-left: 15px;
}

.products .box-container .details a.btn:nth-child(3):hover {
    background: linear-gradient(90deg,
            #6E45FF 0%,
            #9B3DF3 50%,
            #E72B79 100%);

    box-shadow: 0 8px 25px rgba(160, 62, 234, 0.35);
}



/* ==============Product secition========== */


.heading1 {
    font-size: 1.5rem;

    max-width: 1200px;
    margin: 0 auto;
    margin-top: 2rem;


}

.heading1 i {
    font-size: 1.6rem;
    font-weight: 100;
    vertical-align: middle;
}


.heading1 a,
.heading1 span {
    color: var(--title-color);
    font-weight: 550;
}

.heading1 a:hover {
    color: #F47C20;
    text-decoration: underline;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.268);
}

.about.about-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.about .flex.product-group {
    align-items: start;
}

.center {
    flex: 1 1 500px;
    max-width: 500px;
}


.content {
    flex: 1.5 1 450px;
    min-width: 320px;
}

.content.product-section {
    max-height: 80vh;
    overflow-y: auto;
}

.content::-webkit-scrollbar {
    width: 8px;
}

.content::-webkit-scrollbar-track {
    background: var(--container-color);
}

.content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg,
            #0f3d5e60 0%,
            #145b8d53 50%,
            #1e73be53 100%);
}

.content::-webkit-scrollbar-thumb:hover {
    background: #ff9900a5;
}


.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    margin-bottom: 1rem;
    ;
}

.product-table td {
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 1.5rem;
    font-weight: 500;
}

.product-table tr:nth-child(even) {
    background: #f5f5f5;
}

.product-table tr td:nth-child(1) {
    font-weight: 700;
    color: var(--title-color);
}

.product-table td:first-child {
    font-weight: 600;
    width: 40%;
}

.content .product-overview {
    display: flex;
    flex-direction: column;
}

.content .product-overview h2 {
    font-size: 2rem !important;
    padding-top: 15px;
}

.content .product-overview p {
    border-bottom: 1px solid #0f3d5e8e;
}

.content .product-overview h3 {
    font-size: 2rem !important;

}

.content .product-overview ul {
    font-size: 1.5rem;
    margin-left: 2rem;
    border-bottom: 1px solid #0f3d5e8e;
    margin-bottom: 1rem;
}

a.btn.inquiry {
    margin: 0 auto;
}

.container {
    margin: 0 auto;
    margin-bottom: 1rem
}

.product-img {
    width: 100%;
    height: 40rem;
    position: relative;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    background: var(--white);
    overflow: hidden;
}

.product-img img {
    width: 55rem;
    height: 37rem;
    object-fit: contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 630px) {
    .product-img {
        height: 30rem;
    }

    .product-img img {
        width: 90%;
        height: 100%;
        padding: 1rem;
    }
}

@media (max-width: 375px) {
    .product-img {
        height: 25rem;
    }
}

.product-img img[data-index='2'],
.product-img img[data-index='4'] {
    transform: translateX(-50%);
}

.product-thumbnail-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 0.7rem;
}

.product-thumbnail {
    background: var(--white);
    border: 0.3rem solid var(--white);
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    border: 0.3rem solid transparent;

}

.product-thumbnail:hover {
    transform: translateY(-5%);
    box-shadow: var(--box-shadow);

}

.product-thumbnail.active {
    border: 0.3rem solid #1E73BE;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-down-animation {
    animation: down 0.5s ease;
}

@keyframes down {
    0% {
        top: -100%;
    }

    100% {
        top: 0%;
    }
}

.heading-seciton .btn {
    background: linear-gradient(135deg, #25D366 0%, #20c659 40%, #1ebe57 60%, #0fb044 100%);
    box-shadow: none;
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 5px;
    cursor: pointer;
}

.heading-seciton .btn:hover {

    background: linear-gradient(135deg, #1eb756 0%, #199b46 40%, #179c46 60%, #0c9038 100%);
    box-shadow: 0 10px 25px rgba(37, 211, 102, .25);
}







/* ==================  
     CONTACT 
======================= */


.detail-contact {
    max-width: 1200px;
    margin: 1rem auto;
    font-size: 2rem;
    text-align: justify;
    line-height: 1.3;
}

.detail-contact h1 {
    max-width: 1000px;
    font-weight: 650;
    font-size: 2.5rem;
    margin: 1rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid black;
}

.detail-contact p {
    margin: 1rem 0;
    color: var(--text-color);
    font-size: 1.8rem;
}

.detail-contact iframe {
    border-radius: 10px;
}

.formbold-main-wrapper .formbold-form-wrapper h2 {
    text-align: center;
    font-weight: 650;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.formbold-main-wrapper .formbold-form-wrapper p {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 5rem;
    color: var(--text-color);
}

.formbold-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem 1.5rem;
}

.formbold-form-wrapper {
    margin: 0 auto;
    max-width: 700px;
    width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    border: 1px solid rgba(15, 61, 94, 0.12);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(15, 61, 94, 0.08);
    padding: 1.75rem 1.5rem;
}

.formbold-main-wrapper .formbold-form-wrapper h2 {
    text-align: center;
    font-weight: 650;
    font-size: 2.3rem;
    margin-bottom: 0.35rem;
    color: var(--title-color);
}

.formbold-main-wrapper .formbold-form-wrapper p {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1.75rem;
    color: var(--text-color);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.formbold-input-flex {
    display: flex;
    gap: 18px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.formbold-input-flex>div {
    width: calc(50% - 9px);
    min-width: 220px;
}

.formbold-input-radio-wrapper {
    margin-bottom: 18px;
}

.formbold-radio-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.formbold-radio-label {
    font-size: 14px;
    line-height: 24px;
    color: #07074D;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    user-select: none;
}

.formbold-input-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.formbold-radio-checkmark {
    position: absolute;
    top: -1px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #FFFFFF;
    border: 1px solid #DDE3EC;
    border-radius: 50%;
}

.formbold-radio-label .formbold-input-radio:checked~.formbold-radio-checkmark {
    background-color: #6A64F1;
}

.formbold-radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.formbold-radio-label .formbold-input-radio:checked~.formbold-radio-checkmark:after {
    display: block;
}

.formbold-radio-label .formbold-radio-checkmark:after {
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFFFFF;
    transform: translate(-50%, -50%);
}

.formbold-form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid #DDE3EC;
    background: #FFFFFF;
    font-weight: 500;
    font-size: 1.2rem;
    color: #07074D;
    outline: none;
    resize: none;
    box-shadow: inset 0 1px 3px rgba(15, 61, 94, 0.06);
}

.formbold-form-input::placeholder {
    color: #7a8ba8;
}

.formbold-form-input:focus {
    border-color: #145A8D;
    box-shadow: 0 0 0 4px rgba(20, 90, 141, 0.12);
}

.formbold-form-label {
    color: #0F3D5E;
    font-size: 1.3rem;
    line-height: 1.4;
    display: block;
    margin-bottom: 0.55rem;
}

.send-btn {
    text-align: center;
    width: 100%;
    font-size: 1.3rem;
    border-radius: 12px;
    padding: 12px 20px;
    border: none;
    font-weight: 700;
    color: white;
    cursor: pointer;
    margin-top: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.send-btn#send {
    background: linear-gradient(135deg, #25D366 0%, #20c659 40%, #1ebe57 60%, #0fb044 100%);
}

.send-btn:not(#send) {
    background: var(--gradient-tech);
}

.send-btn:hover,
.send-btn#send:hover {
    box-shadow: 0 18px 36px rgba(15, 61, 94, 0.14);
    transform: translateY(-2px);
}

.formbold-button-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.formbold-button-group .send-btn {
    width: calc(50% - 6px);
}

.formbold-input-radio-wrapper select#sector:focus {
    border-color: #145A8D;
    box-shadow: 0 0 0 4px rgba(20, 90, 141, 0.12);
}

.formbold-input-radio-wrapper select#sector {
    width: 100%;
    padding: 10px 16px;
    border-radius: 14px;
    border: 1px solid #DDE3EC;
    background: #FFFFFF;
    font-weight: 500;
    font-size: 1.2rem;
    color: #07074D;
    outline: none;
}

.formbold-input-radio-wrapper select#sector option {
    color: #2b3449;
}

.checkbox {
    font-size: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-top: 12px;
}

.checkbox span {
    margin: 0;
}

.checkbox span input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.checkbox span label {
    cursor: pointer;
}

.checkbox span input {
    cursor: pointer;
}

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

    .formbold-input-flex>div,
    .formbold-button-group .send-btn {
        width: 100%;
    }

    .formbold-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

.checkbox span {
    margin: 0 5px;

}

.checkbox span label {
    cursor: pointer;
}

.checkbox span input {
    cursor: pointer;
}


.contact-sec {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../assets/images/contact-sec.jpg) no-repeat center/cover;
    min-height: 50vh;
}

.contact-sec .content-sec {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-sec .content-sec h3 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--white-color);
    padding: 2rem;
    text-transform: uppercase;
}

.contact-sec .content-sec p {
    font-size: 2rem;
    color: var(--white-color);
    padding: 0 2rem;
    text-align: justify;
    max-width: 50vw;
    margin: 10px 0;
}

.contact-sec .content-sec a {
    margin-left: 15rem;
    margin-bottom: 2rem;
}



/* ==================  
     FOOTER 
======================= */
footer {
    background-image: url("../assets/images/background.png");
    background-size: cover;
}

footer .box-container {
    padding-top: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 2rem;
}

footer .box-container .box .logo {
    width: 200px;
    height: 40px;
    margin-bottom: 15px;
}

footer .box-container .box p {
    text-align: justify;
}

footer .box-container .box .logo img {
    width: 100%;
    height: 100%;
}

footer .box-container .box h3 {
    text-transform: uppercase;
    color: var(--title-color);
    font-size: 1.8rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.2rem 2rem;
}

footer .box-container .box p,
footer .box-container .box a {
    display: flex;
    padding: .2rem 0;
    font-size: 1.4rem;
    color: var(--text-color);
    align-items: center;

}

footer .box-container .box p i,
footer .box-container .box a i {
    color: var(--first-color);
    margin-right: 10px;
}

footer .box-container .box p .phone {
    display: flex;
    font-size: 1.4rem;
}

footer .box-container .box p .phone a {
    font-size: 1.3rem;
}


footer .box-container .box p i:hover,
footer .box-container .box a i:hover {
    color: var(--first-color);
    margin-right: 50px;

}

footer .box-container .box p i:hover,
.phone {
    margin-right: 10px;
}

footer .box-container .box p .phone a:nth-child(1):hover {
    font-size: 1.35rem;
    color: var(--first-color);
}

footer .box-container .box p .phone a:nth-child(2):hover {
    font-size: 1.35rem;
    color: var(--first-color);
}

footer .box-container .box p span:hover,
footer .box-container .box a span:hover {
    text-decoration: underline;
    cursor: pointer;
    color: #ff6f00
}

footer .credit .social-box a:hover {
    text-decoration: none;
}

footer .credit .social-box a:hover i {
    transform: scale(1.1);
    text-decoration: none;
}

.social-box a i {
    padding: 2px 1.5px;
    margin: 0 5px;
    border-radius: 5px;
    color: white !important;
}

footer .credit {
    width: 100%;
    background-color: #ff6f00;
    text-align: center;
    font-size: 1.6rem;
    color: var(--white-color);
    border-top: var(--top-border);
    margin-top: 1rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

footer .credit {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

footer .credit span {
    color: var(--white-color);
}

footer .credit span a {
    color: rgba(204, 3, 204, 0.666);
    font-weight: 600;
}

footer .credit span a:hover {
    color: rgb(204, 3, 204);
    text-decoration: underline;
}

.arrow {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 20px;
    cursor: pointer;
    color: var(--accent-color);
    border: 3px solid #F47C20;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    z-index: var(--z-fixed);
    transition: all .3s ease;
}

.arrow i {
    font-size: 2.5rem;
    font-weight: 550;
}

.arrow.active {
    display: inline-block;
}


























































@media (max-width: 1000px) {
    .faqs-section .box {
        width: 450px;
    }

    .faqs-section .box .question.active {
        width: 450px;
    }

    .faqs-section .box .answer.active {
        width: 450px;
    }

    footer .box-container .box p,
    footer .box-container .box a {
        display: flex;
        padding: .2rem 2rem;
    }
}

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

    header .header2 .menu {
        display: block;
    }

    header .header2 .flex {
        position: relative;
        flex-wrap: wrap;
        gap: 1rem;
    }

    header .header2 .flex .navbar {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: 100%;
        /* display: none; */
        flex-direction: column;
        gap: 1.2rem;
        justify-content: center;
        padding: 1.5rem;
        background: var(--container-color);
        box-shadow: var(--box-shadow);
        border-radius: 15px;
        z-index: 999;
        transition: all .5s ease;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        opacity: 0;
    }

    header .header2 .flex .navbar.active {
        display: flex;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }

    header .header2 .navbar span a,
    header .header2 .navbar span .product-btn {
        position: relative;
        font-size: 1.6rem;
        color: var(--first-color);
        font-weight: 650;
        font-family: var(--second-font);
        text-decoration: none;
    }

    header .header2 .navbar .product .pro-cat {
        position: static;
        background: var(--container-color);
        border: none;
        min-width: 100%;
        z-index: 0;
        padding: 10px;
        display: none;
        opacity: 1;
        transition: all .5s ease;
        margin-top: 0.5rem;
        text-align: left;
        align-items: flex-end;
        box-shadow: none;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        opacity: 0;
    }

    header .header2 .navbar .product .pro-cat.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        display: block;
        opacity: 1;
    }

    header .header2 .navbar .product {
        cursor: pointer;
    }

    header .header2 .navbar .product .pro-cat .category {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: left;
        gap: 1rem;
    }

    header .header2 .navbar .product .pro-cat .category a {
        border-radius: none;
        box-shadow: none;
        text-align: left;
        padding: 2px 5px;
        width: 100%;
        font-size: 1.5rem;
    }

    .search-box {
        width: 200px;
    }
}

@media (max-width: 868px) {

    .about .flex .content h2 {
        font-weight: 700;
        font-size: 2rem;
    }

    .white-btn,
    .btn {
        font-size: 1.5rem;
        padding: 5px 10px;
        border-radius: 20px;
    }

    .section h3 {
        font-size: 2rem;
    }

    .section p {
        font-size: 1.5rem;
    }

    .about .content.mission .box h2 {
        font-size: 2rem;
    }

    .about.vission p {
        color: var(--title-color);
        font-size: 2.5rem;
    }

    .carousel .group .card {
        font-size: 1.5rem;
    }

    section {
        padding: 2rem 2rem;
    }

    .about.steps .heading2 h2 {
        font-size: 3rem;
    }

    .about.steps .heading2 p {
        font-size: 1.8rem;
    }

    .detail-contact h1 {
        font-size: 2rem;
    }

    .detail-contact p {

        font-size: 1.5rem;
    }

    .section2 .flex .white-btn {
        font-size: 1.5rem;
    }

    .heading h3 {
        font-size: 4rem;
        margin: 0 2rem;
    }

    .about.steps .content .box2 h3 {
        color: var(--title-color);
        font-size: 2rem;
    }



}


@media (max-width: 840px) {
    .faqs-section .box {
        min-width: 700px;
    }

    .faqs-section .box .question.active {
        width: auto;
    }

    .faqs-section .box .answer.active {
        width: auto;

    }
}

@media (max-width: 768px) {
    .about .flex .content .trust {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 740px) {
    .faqs-section .box {
        min-width: 600px;
    }

    .faqs-section .box .question.active {
        width: 600px;
    }

    .faqs-section .box .answer.active {
        width: 600px;

    }

    .heading {
        background: url("../assets/images/cat1.jpg");
        width: 100%;
        height: 30vh;
        background-position: 50% 70%;
        background-size: cover;
    }

    .heading.printing-inks , .heading.thinners-inks, .heading.retarders-inks, .heading.speciality-inks, .heading.contact-page {
        background-size: cover;
    }
}

@media (max-width: 660px) {
    .images .gallery .box {
        position: relative;
        height: 100px;
        width: 150px;
    }

    .faqs-section .box {
        min-width: 500px;
    }

    .faqs-section .box .question.active {
        width: 500px;
    }

    .faqs-section .box .answer.active {
        width: 500px;

    }

    .heading h3 {
        font-size: 3.5rem;
        margin: 0 2rem;
    }
}

@media (max-width: 620px) {
    header .header1 .flex .social_media {
        display: none
    }
}

@media (max-width: 530px) {

    .faqs-section .box {
        width: 400px;
    }

    .faqs-section .box .question.active {
        width: 400px;
    }

    .faqs-section .box .answer.active {
        width: 400px;

    }

    header .header2 .logo img.brand-logo {
        display: inline-block;
    }

    header .header2 .logo img.full-logo {
        display: none;
    }


    header .header2 .logo {
        width: 50px;
        height: 50px;
        margin-top: 5px;
        margin-right: 5px;
    }


}

@media (max-width: 500px) {

    .about .content.mission{
        grid-template-columns: 1fr;
    }

    #toastBox {
        right: 20%;
    }

    .search-box {
        width: 150px;
    }

    header .header1 .flex .details a {
        font-size: 1.2rem;
    }

    header .header2 .menu {
        font-size: 1.8rem;
    }

    .faqs-section .box {
        font-size: 1.3rem;
        min-width: 350px;
        margin: 0 auto;
    }

    .faqs-section .box .question {
        width: 350px;
    }

    .faqs-section .box .question.active {
        width: 350px;
    }

    .faqs-section .box .answer.active {
        width: 400px;

    }

    .about .flex .content p {
        font-size: 1.3rem;
    }

    .about .flex .content .qualities span {
        font-size: 1.3rem;
    }

    .about .flex .content h3 {
        font-size: 1.5rem;
    }

    .about .flex .content p {
        font-size: 1.3rem;
    }

    .about .flex .content p {
        font-size: 1.3rem;
    }

    .detail-contact h1 {
        font-size: 1.8rem;
    }

    .section2 .flex .white-btn {
        font-size: 1.3rem;
    }

    .heading h3 {
        font-size: 2.5rem;
        margin: 0 2rem;
    }

    .about.steps .content .box2 h3 {
        color: var(--title-color);
        font-size: 1.8rem;
    }

    .heading p {
        font-size: 1.3rem;
    }

}

@media (max-width: 390px) {

    .faqs-section .box {
        font-size: 1rem;
        min-width: 350px;
        margin: 0 auto;
    }

    .faqs-section .box .question {
        width: 300px;
        margin: 0 auto;
    }

    .faqs-section .box .question.active {
        width: 300px;
    }

    .faqs-section .box .answer.active {
        width: 300px;
        padding-left: 55px;
        box-sizing: border-box;

    }
}