@font-face {
    font-family: "Roobert";
    src: url("../assets/fonts/Roobert-SemiBold.otf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "SF-Compact";
    src: url("../assets/fonts/SF-Compact.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "nevis";
    src: url("../assets/fonts/nevis-bold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    height: 100vh;
    font-family: 'SF-Compact';
    font-weight: 400;
}

html{
    scroll-behaviour: smooth;
}

a {
    color: unset;
    text-decoration: none;
}

h2 {
    color: #000;
    -webkit-text-fill-color: white;
    /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #666;
    font-size: 7rem;
    font-weight: 700;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 2rem 0;
    z-index: 99;
    width: 100%;
    transition: all 0.6s ease;
}

header.active {
    padding: 0.7rem 0;
    background-color: #606160;
}

header.active .header-logo {
    width: 200px;
}

.custom-container {
    width: 90%;
    margin: auto;
}

header .custom-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 90%;
}

.header-logo {
    width: 270px;
    transition: all 0.6s ease;
}

.header-logo img {
    width: 180px;
}

.header-links {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
}

.header-links a {
    color: #fff;
    font-size: 1.1rem;
}



.header-links-head {
    position: relative;
    padding: 1rem 0;
}

.header-links-head > a {
    position: relative;
}

.header-links-head:hover .header-links-body {
    pointer-events: all;
    opacity: 1;
    top: 100%;
}

.header-links-head > a::after {
    content: "";
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    height: 2px;
    width: 0;
    transition: all 0.4s ease;
    background-color: #FFA500;
}

.header-links-head:hover > a::after {
    width: 100%;
}

.header-links-body {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 110%;
    opacity: 0;
    pointer-events: none;
    left: 0;
    background-color: #0008;
    transition: all 0.3s ease;
    min-width: 200px;
}

.header-links-body a {
    padding: 0.5rem 1rem;
    position: relative;
    color: #fff;
    z-index: 3;
}

.header-links-body a::before{
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFA500;
    transition: all 0.3s ease;
    z-index: -1;
}

.header-links-body a:hover::before {
    width: 100%;
}

.header-links-contact {
    padding: 0.7rem 1.1rem;
    border-radius: 20px;
    background-color: #EB6F2B;
    transition: all 0.3s ease;
}

.header-links-contact:hover{
    background-color: #FFCB04;
    color: #606160;
}

.hamburger-btn {
    outline: unset;
    border: unset;
    background-color: unset;
    position: relative;
    z-index: 4;
}

.hamburger-btn img:nth-child(2) {
    display: none;
    filter: invert(1);
}

.hamburger-btn.active img:nth-child(1) {
    display: none;
}

.hamburger-btn.active img:nth-child(2) {
    display: initial;
}

.hamburger-menu {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 400px;
    width: 100%;
    background-color: #000a;
    padding: 2rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: all 0.6s ease;
    background-color: #fff;
}

.hamburger-menu > img {
    width: 160px;
    padding-bottom: 2rem;
}

.hamburger-shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff4;
    z-index: 2;
    transform: translateX(100%);
    transition: all 0.6s ease;
}

.hamburger-shadow.active {
    transform: translateX(0%);
}

/* .hamburger-menu.scrollHeight {
    height: calc(100vh - 112px);
} */

.hamburger-menu.active {
    transform: translateX(0%);
}

.hamburger-close {
    outline: unset;
    border: unset;
    background-color: unset;
    align-self: flex-end;
}

.hamburger-links {
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.hamburger-links a, .hamburger-links p {
    color: #606160;
    font-size: 1.1rem;
    border-bottom: 1px solid #aaa;
    padding: 1rem 0;
}

.hamburger-links-head>a, .hamburger-links-head>p {
    padding: 1rem 0.5rem;
}

.hamburger-links-head {
    display: flex;
    flex-direction: column;
}

.hamburger-links-head.mobile-menu-set {
    /*display: none;*/
}

.hamburger-links-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    padding: 0 0;
}

.hamburger-links-head:hover .hamburger-links-body {
    max-height: 100%;
    padding: 1rem 0;
}

.hamburger-links-body a {
    padding: 0.3rem 2rem;
    border-bottom: unset;
    position: relative;
    z-index: 2;
}

.hamburger-links-body a::after {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #FFCB04;
    transition: all 0.3s ease;
    z-index: -1;
}

.hamburger-links-body a:hover::after {
    width: 100%;
}


/*floaters*/


.icon-open-popup img {
    width: 20px;
}

.icon-open-popup {
    position: fixed;
    right: 0%;
    border: unset;
    border-radius: 25px;
    pointer-events: none;
    width: 50px;
    height: 50px;
    z-index: 999;
    background-color: #F29325;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: unset;
    cursor: pointer;
}

.icon-open-popup:nth-child(1){
    top:70%;
}

.icon-open-popup:nth-child(2){
    top:80%;
}

.icon-open-popup img {
    position: relative;
    z-index: 2;
    pointer-events: all;
}

.icon-open-popup div{
    width: max-content;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 45%;
    z-index: 1;
    pointer-events: none;
}

.icon-open-popup div p {
    background-color: #F29325;
    padding: 15px 40px 15px 15px;
    border-radius: 25px 0 0 25px;
    transition: all 0.3s ease;
    pointer-events: none;
    color: #fff;
    position: relative;
    left: 100%;
}

.icon-open-popup:hover p {
    left:  0%;
    pointer-events: all;
}

#formPreloader1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(165, 206, 58, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
}

.formPreloader2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(165, 206, 58, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
}


.spinner {
    width: 25px;
    height: 25px;
    border: 4px solid #fff0;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
    border-radius: 50%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-section{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow-y: scroll;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.brochure-form-section{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow-y: scroll;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    background-color: rgba(0, 0, 0, 0.4); 
}

.empty-div{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
}

.form-container{
    background: #fff;
    padding: 2rem;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    position: relative;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-container h3{
    text-transform: unset;
    font-size: 1.5rem;
}

.form-container .form-head{
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.form-container form{
    gap: 1.8rem;
    display: flex;
    flex-direction: column;
}

.form-field{
    position: relative
}

.form-field p{
    position: absolute;
    top: 100%;
    font-size: 14px;
}

.form-container form input{
    width: 100%;
    padding: 0.7rem;
    outline: unset;
    border: 1px solid #666;
}

.form-field #submitbtn{
    background-color: #F29325;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    outline: unset;
}

#submitbtn2{
     background-color: #F29325;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    outline: unset;
}

.form-section .close{
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.brochure-form-section .close{
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.preloader-holder {
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffffba;
    z-index: 99;
}

#preloader-holder {
    display: none;
}


#preloader-holder2 {
    display: none;
}

#preloader-holder1 {
    display: none;
}

.preloader {
    border: 10px solid lightgray;
    width: 80px;
    height: 80px;
    border-top: 10px solid green;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-top: -60px;
    margin-left: -60px;
}

#response-message{
    color: 18px;
    color: green;
}

#response-message1{
    color: 18px;
    color: green;
}

#response-message2{
    color: 18px;
    color: green;
}

.home-banner {
    position: relative;
    width: 100%;
    /*height: 100vh;*/
    overflow: hidden;
}

.bannerImg {
    width: 100%;
    /*height: 100%;*/
    /*object-fit: cover;*/
    /*object-position: center;*/
}

.mob-banner{
    display: none;
}

.banner-animation {
    position: absolute;
    top: 27%;
    left: 70%;
    width: 430px;
    border-radius: 50%;
    border: 1px solid #fff;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.home-banner h1 {
    color: #fff;
    font-size: 1.7VW;
    position: absolute;
    top: 20%;
    left: 60%;
    width: 13.9VW;
    font-weight: 100;
}

.home-banner h1 span {
    font-weight: 800;
}

.home-banner p {
    line-height: 0.8;
    text-align: right;
    position: absolute;
    color: #fff;
    font-size: 4.7VW;
    top: 38%;
    left: 75.3%;
    font-weight: 700;
}

.home-about {
    padding: 2rem 0 4rem;
    overflow: hidden;
}

.home-about .custom-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    justify-content: space-around;
}

.home-about-lft {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 777px;
}

.home-about-lft h3 {
    position: relative;
    font-size: 2rem;
    line-height: 1.1;
    color: #606160;
    max-width: 540px;
}

.home-about-lft h3::after {
    position: absolute;
    content: '';
    bottom: 113%;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #FECB09;
}

.home-about-lft h3 span {
    color: #FECB09;
}

.home-about-lft>p {
    font-size: 1.2rem;
    max-width: 520px;
    color: #777;
    /* font-family: 'nevis'; */
}

.home-about-list {
    display: flex;
    flex-direction: row;
    gap: 3.5rem;
    align-items: flex-end;
    margin-top: 1rem;
}

.home-about-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home-about-list ul li {
    font-size: 1.1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    color: #777;
    width: max-content;
}

.home-about-list ul li img {
    padding: 4px;
    border-radius: 50%;
    width: 20px;
}

.home-about-list ul li:nth-child(1) img {
    background-color: #EB6F2B;
}

.home-about-list ul li:nth-child(2) img {
    background-color: #F29325;
}

.home-about-list ul li:nth-child(3) img {
    background-color: #FECB09;
}

.home-about-list>img {
    width: 100px;
}

.home-about-list>p {
    width: 310px;
    font-size: 1.2rem;
    color: #EB6F2B;
    font-weight: 700;
}

.home-about-ryt {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 400px;
    width: 100%;
}

.home-about-ryt img:nth-child(1) {
    width: 405px;
    opacity: 0.4;
    position: absolute;
    animation: rotate 20s linear infinite;
}

.home-about-ryt img:nth-child(2) {
    width: 420px;
    position: absolute;
}

.home-about-ryt img:nth-child(3) {
    width: 235px;
    position: relative;
}


.home-products {
    padding: 4rem 0;
    background-color: #EDEFF0;
}

.home-products .custom-container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.home-products .custom-container>h3 {
    font-size: 2.5rem;
    color: #444;
    font-weight: 700;
}

.home-products .custom-container>h2 {
    margin-bottom: 4rem;
    -webkit-text-stroke-color: #F29325;
    -webkit-text-fill-color: #EDEFF0;
    line-height: 1;
}

.home-products-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem;
}

.home-products-card {
    width: calc(33.33% - 2.7rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-products-card div {
    width: 100%;
    position: relative;
    line-height: 0;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.home-products-card div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s ease;
}

.home-products-card div:hover img {
    transform: scale(1.05);
}

.home-products-card div h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    line-height: 1.3;
    width: 100%;
    padding: 0.8rem 3rem;
    color: #fff;
    font-size: 1.5rem;
    background-color: #616060c2;
}

.home-products-card a {
    display: flex;
}

.home-products-card a:hover span {
    background-color: #F29325;
}

.home-products-card a span {
    padding: 0.8rem 3rem;
    color: #fff;
    background-color: #606160;
    transition: all 0.3s ease;
}

.home-products-card a img {
    padding: 0.8rem;
    width: 44px;
    background-color: #F29325;
    transition: all 0.3s ease;
}

.home-products-card a:hover img {
    background-color: #606160;
}


.home-colors {
    padding: 3rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.home-color-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0004;
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: all 0.4s ease;
}

.home-color-popup.active {
    display: flex;
    opacity: 1;
}

.home-color-popup-content {
    width: 650px;
    max-width: 650px;
    display: flex;
    position: relative;
    z-index: 3;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.home-color-popup-content>img:nth-child(2) {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    object-position: center;
}

.home-color-popup-content>img:nth-child(1) {
    width: 20px;
    position: absolute;
    bottom: 101%;
    left: 100%;
    cursor: pointer;
}

.home-color-popup-shadow {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.home-colors>img:nth-child(1) {
    position: absolute;
    width: 125%;
    bottom: 5%;
    left: 0;
    min-width: 2381px;
}

.home-colors>img:nth-child(2) {
    position: absolute;
    width: 120%;
    bottom: 0%;
    left: 0;
    min-width: 2250px;
}

.home-colors>img:nth-child(3) {
    position: absolute;
    width: 25%;
    left: -1%;
    bottom: 0rem;
    z-index: 4;
}

.home-colors>img:nth-child(4) {
    width: 400px;
    position: absolute;
    left: -6%;
    border: 2px solid #F2932588;
    border-radius: 50%;
    bottom: -7%;
    animation: rotate 20s linear infinite;
}

.home-colors .custom-container {
    display: flex;
    flex-direction: column;
    position: relative;
}

.home-colors .custom-container h2 {
    -webkit-text-stroke-color: #EB6F2B;
    position: relative;
}

.home-colors .custom-container h2 span {
    position: absolute;
    top: 70%;
    font-size: 6rem;
    left: 300px;
}

.home-colors .custom-container h3 {
    position: relative;
    font-size: 3rem;
    line-height: 1.1;
    color: #EB6F2B;
    max-width: 400px;
    margin-top: 1rem;
}

.home-colors .custom-container h3::after {
    position: absolute;
    content: '';
    bottom: 103%;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #EB6F2B;
}

.home-colors .custom-container h4 {
    position: relative;
    font-size: 3rem;
    line-height: 1.1;
    color: #2C436B;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.home-colors-list {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 4rem;
}



.home-colors-card {
    width: calc(33.33% - 2.7rem);
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 1.5rem;
    cursor: pointer;
}

.home-colors-card div {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.home-colors-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.home-colors-card:hover img {
    transform: scale(1.05);
}

.home-colors-card h5 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2C436B;
}

.home-colors-card::after {
    position: absolute;
    content: '';
    top: calc(100% + 1rem);
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #F29325;
}

.home-colors-card.unset-after::after{
    background-color: #fff;
}
/*.home-colors-card:nth-child(1):after,*/
/*.home-colors-card:nth-child(2):after,*/
/*.home-colors-card:nth-child(3):after {*/
/*    width: 60px;*/
/*}*/

.home-colors-detail {
    padding: 6rem 0 0;
    width: 50%;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home-colors-detail p {
    max-width: 700px;
    line-height: 1.4;
    font-size: 1.7rem;
    color: #fff;
}

.home-colors-link {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

.home-color-explore {
    display: flex;
    flex-direction: row;
}

.home-color-explore span {
    font-size: 1.1rem;
    font-weight: 400;
    padding: 0.8rem 4rem;
    color: #fff;
    background-color: #606160;
    transition: all 0.3s ease
}

.home-color-explore:hover span {
    background-color: #FECB09;
}

.home-color-explore img {
    width: 44px;
    padding: 0.8rem;
    background-color: #FECB09;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.home-color-explore:hover img {
    background-color: #606160;
}

.home-colors-link a {
    padding: 0.8rem 2rem;
    background-color: #FECB09;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    color: #606060;
}


/*color page*/

 .home-colors-list {
            gap: 3rem;
        }
        .home-colors-card {
            width: calc(25% - 2.25rem);
        }
        .home-colors {
            padding: 0;
        }
        .home-colors.colors-top {
            padding: 6rem 0 3rem;
        }
        .home-colors.colors-btm {
            padding: 3rem 0 15rem;
        }
        .home-colors>img:nth-child(1) {
            width: 115%;
            bottom: -5%;
            min-width: unset;
        }
        .home-colors>img:nth-child(2) {
            width: 100%;
            bottom: -4%;
            min-width: unset;
        }
        .home-colors>img:nth-child(3) {
            left: unset;
            right: -1%;
        }
        .home-colors>img:nth-child(4) {
            left: unset;
            right: -3%;
            bottom: -6%;
        }
        .explore-colors-des {
            background-color: #606160;
            padding: 3rem 0;
            color: #fff;
        }
        .colors-container {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        .colors-container p {
            font-size: 1.2rem;
            line-height: 1.5;
        }
        .colors-container div {
            display: flex;
            flex-direction: row;
            gap: 3rem;
            align-items: center;
        }
        .colors-container div a {
            color: #606160;
            width: max-content;
            font-weight: 600;
        }
        .colors-container div a:nth-child(2) {
            background-color: #FECB09;
            padding: 0.8rem 2rem;
        }
        .home-color-explore span {
            background-color: #fff;
            color: #606160;
        }


.home-craft {
    padding: 3rem 0;
    background-color: #EDEFF0;
}

.home-craft .custom-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.home-craft .custom-container>h3 {
    font-size: 4rem;
    font-weight: 700;
    color: #606160;
    position: relative;
}

.home-craft .custom-container>h3::after {
    position: absolute;
    content: '';
    top: 103%;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    background-color: #FECB09;
}

.home-craft .custom-container>p {
    font-size: 1.8rem;
    font-weight: 500;
    color: #EB6F2B;
    text-align: center;
    max-width: 530px;
}

.home-craft-list {
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
}

.home-craft-list div {
    width: 300px;
    border-radius: 10px;
    border: 1px solid;
    padding-left: 2rem;
}

.home-craft-list div h4 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    padding: 2rem 0 1rem;
    border-bottom: 2px solid;
}

.home-craft-list div:nth-child(1) h4 {
    border-color: #EB6F2B;
    color: #EB6F2B;
}

.home-craft-list div:nth-child(1) {
    border-color: #EB6F2B;
}

.home-craft-list div:nth-child(3) h4 {
    border-color: #F29325;
    color: #F29325;
}

.home-craft-list div:nth-child(3) {
    border-color: #F29325;
}

.home-craft-list div:nth-child(5) h4 {
    border-color: #FECB09;
    color: #FECB09;
}

.home-craft-list div:nth-child(5) {
    border-color: #FECB09;
}

.home-craft-list div p {
    padding: 1rem 2rem 0 0;
    font-size: 1.3rem;
}

.home-craft-list img {
    border-radius: 10px;
    width: 300px;
    line-height: 1.4;
    aspect-ratio: 1/1.2;
    object-fit: cover;
    object-position: center;
}






.home-why {
    padding: 3rem 0 12rem;
    background-color: #606160;
    position: relative;
    overflow: hidden;
}

.home-why>img:nth-child(1) {
    position: absolute;
    width: 110%;
    bottom: -4rem;
    left: 0;
}

.home-why>img:nth-child(2) {
    position: absolute;
    width: 110%;
    bottom: 0;
    left: -8;
    bottom: -3rem;
}

.home-why>img:nth-child(3) {
    position: absolute;
    width: 13%;
    right: 4%;
    bottom: 13%;
    z-index: 5;
}

.home-why>img:nth-child(4) {
    width: 30%;
    position: absolute;
    right: -3%;
    border: 2px solid #F2932588;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    bottom: 28%;
}

.home-why .custom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.home-why .custom-container>h2 {
    -webkit-text-stroke-color: #fff;
    -webkit-text-fill-color: #606160;
    position: relative;
}

.home-why .custom-container>h2::after {
    position: absolute;
    content: '';
    top: 106%;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    background-color: #FECB09;
}

.home-why-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 75%;
    align-self: flex-start;
    gap: 4rem calc(33.33% - 307px);
}

.home-why-card {
    width: 230px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    border-top-right-radius: 80px;
    position: relative;
    padding: 0 2rem 1rem 0;
}

.home-why-card::before {
    content: '';
    position: absolute;
    right: -2px;
    top: -2px;
    border-bottom: 30px solid transparent;
    border-right: 30px solid #fff;
    /* Blue color */
}

.home-why-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    object-position: center;
    background-color: #606160;
    padding: 10px;
    transform: translateY(-10px);
}

.home-why-card h3 {
    color: #F29325;
    margin-bottom: 1rem;
}

.home-why-card p {
    color: #fff;
    line-height: 1.3;
}



.home-slider .swiper {
    width: 80%;
    margin: unset;
    position: relative;
}

.home-slide-card {
    width: 25%;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.home-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-slide-card div {
    position: absolute;
    top: 16%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    text-align: center;
    background-color: #0005;
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.home-slide-card:hover div {
    opacity: 1;
    top: 0;
}

.home-slide-card div h3 {
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    position: relative;
}

.home-slide-card div h3::after {
    position: absolute;
    content: '';
    top: 103%;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    background-color: #fff;
}

.home-slider {
    padding: 4rem 0 0;
    background-image: linear-gradient(180deg, #edeff0 60%, #FAF4F0 60%);
    display: flex;
    flex-direction: row;
}

.home-slider .swiper-slide img {
    width: 100%;
    aspect-ratio: 8 / 6.5;
    object-fit: cover;
    object-position: center;
}

.home-slider .swiper-slide.swiper-slide-next {
    opacity: 0;
}

.home-slider .swiper-button-prev, .home-slider .swiper-button-next {
    padding: 2rem;
    background-color: #fff;
}

.home-slider .swiper-button-prev:after, .home-slider .swiper-button-next:after {
    color: #606060;
}

.home-slider .swiper-button-prev:after {
    transform: translateX(-1px);
}

.home-slider .swiper-button-prev {
    bottom: 0;
    top: unset;
    left: unset;
    right: 77.8%;
}

.home-slider .swiper-button-next {
    bottom: 0;
    top: unset;
    left: 22.2%;
}

.home-slider .swiper-button-next:after {
    transform: translateX(1px);
}

.slider-content {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateX(50%);
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    padding: 2rem;
    background-color: #fff;
    color: #606160;
    min-height: 350px;
    opacity: 0;
    transition: all 0.3s ease;
}

.home-slider .swiper-slide.swiper-slide-active .slider-content {
    opacity: 1;
}

.slider-content h3 {
    font-size: 3rem;
    position: relative;
}

.slider-content h3::after {
    content: "";
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 40px;
    height: 3px;
    background-color: orange;
}

.slider-content p {
    font-size: 1.1rem;
}


.home-client {
    padding: 6rem 0 0;
    background-color: #606160;
}

.home-client .custom-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.home-client-content {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    width: 100%;
}

.home-client-content-lft {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: calc(50% - 2rem);
}

.home-client-content-lft h2 {
    font-size: 4rem;
    -webkit-text-stroke-width: 0px;
    -webkit-text-fill-color: #fff;
    font-family: 'Roobert';
    line-height: 1;
}

.home-client-content-lft p {
    color: #F29325;
    font-size: 1.2rem;
}

.home-client-content-ryt {
    width: calc(50% - 2rem);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 5rem 5rem 5rem 8rem;
    background-color: #fff;
}

.home-client-content-ryt img {
    width: 30px;
    position: absolute;
    top: 5.1rem;
    left: 5rem;
}

.home-client-content-ryt p:nth-child(2) {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.5;
}

.home-client-content-ryt h4 {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #EB6F2B;
}

.home-client-content-ryt p:nth-child(4) {
    font-size: 1.1rem;
    color: #606160;
}

.home-client .custom-container>img {
    width: 100%;
}


.home-connect {
    display: flex;
    flex-direction: row;
}

.home-connect-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    background-image: url('/assets/images/home/0.webp');
    background-color: #0003;
    background-blend-mode: color;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: max-content;
    padding: 5rem;
    width: 100%;
}

.home-connect-frame {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.home-connect-frame h2 {
    color: #FECB09;
    -webkit-text-stroke: 0px;
    -webkit-text-fill-color: #FECB09;
    font-size: 3rem;
}

.home-connect-frame p {
    font-size: 1.5rem;
    color: #fff;
    max-width: 500px;
}

.home-connect-container>a {
    display: flex;
    flex-direction: row;
}

.home-connect-container>a span {
    padding: 0.7rem 2rem;
    font-size: 1.3rem;
    font-family: 'Roobert';
    color: #fff;
    background-color: #FECB09;
}

.home-connect-container>a img {
    padding: 1rem;
    aspect-ratio: 1/1;
    width: 50px;
    background-color: #606160;
}

.home-connect-news {
    width: 100%;
    max-width: 430px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    background-color: #FECB09;
}

.home-connect-news h3 {
    font-size: 2rem;
    color: #606160;
}

.home-connect-news p {
    color: #606160;
}

.home-connect-news form {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1.5rem;
}

.home-connect-news input[type="email"] {
    background-color: #fff;
    border: unset;
    outline: unset;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
}

.home-connect-news input[type="submit"] {
    background-color: #606160;
    color: #fff;
    border: unset;
    outline: unset;
    border-radius: 4px;
    cursor: pointer;
    padding: 0.8rem 1.2rem;
}


.home-blog {
    background-color: #FAF4F0;
    padding: 3rem 0;
}

.home-blog .custom-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.home-blog .custom-container>h3 {
    font-size: 4rem;
    font-weight: 700;
    color: #606160;
    position: relative;
}

.home-blog .custom-container>h3::after {
    position: absolute;
    content: '';
    top: 103%;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    background-color: #FECB09;
}

.home-blog-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
}

.home-blog-container>.home-blog-card {
    position: relative;
    overflow: hidden;
    width: calc(33.3% - 1.33rem);
}

.home-blog-card:hover>img {
    transform: scale(1.05);
}

.home-blog-split {
    width: calc(33.3% - 1.33rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.home-blog-split>.home-blog-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.home-blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
}

.home-blog-content {
    padding: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.home-blog-content h4 {
    font-size: 1.5rem;
}


footer {
    padding: 3rem 0;
    background-color: #fff;
}

.footer .custom-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-section1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
}

.footer-section1>img {
    width: 200px;
}

.footer-section1>div {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.footer-section1>div a {
    width: 30px;
    padding: 6px;
    line-height: 0;
    border-radius: 50%;
    background-color: #EB6F2B;
}

/*.footer-section1>div a:nth-child(1) {*/
/*    background-color: #EB6F2B;*/
/*}*/

/*.footer-section1>div a:nth-child(2) {*/
/*    background-color: #F29325;*/
/*}*/

/*.footer-section1>div a:nth-child(3) {*/
/*    background-color: #FECB09;*/
/*}*/

/*.footer-section1>div a:nth-child(4) {*/
/*    background-color: #EB6F2B;*/
/*}*/

.footer-section1>div a img {
    width: 100%;
}

.footer-section2 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
    justify-content: space-between;
}

.footer-section2-address {
    width: 100%;
    border-top: 2px solid #EB6F2B;
    display: flex;
    align-items: flex-end;
}

.footer-section2-address p {
    font-size: 1rem;
    color: #444;
}

.footer-section2-links {
    display: flex;
    flex-direction: row;
    gap: 4rem;
}

.footer-section2-links>div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section2-links>div h2 {
    font-size: 1.1rem;
    -webkit-text-stroke: 0px;
    -webkit-text-fill-color: #EB6F2B;
    font-family: 'SF-Compact';
    color: #EB6F2B;
    transform: translateY(-50%);
}

.footer-section2-links>div div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-section2-links>div div a {
    width: max-content;
    font-size: 15px;
}

.site-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #606160;
    width: 100%;
    padding: 0.5rem;
}

.site-details p {
    font-size: 0.9rem;
    color: #fff;
    text-align: center;
}



/* common btn  */

.dark-button {
    display: flex;
    cursor: pointer;
}

.dark-button:hover span {
    background-color: #F29325;
}

.dark-button span {
    padding: 0.8rem 3rem;
    color: #fff;
    background-color: #606160;
    transition: all 0.3s ease;
}

.dark-button img {
    padding: 0.8rem;
    width: 44px;
    background-color: #F29325;
    transition: all 0.3s ease;
}

.dark-button:hover img {
    background-color: #606160;
}



/* products page  */

.product-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.product-banner h1 {
    font-size: 4.5vw;
    font-weight: 800;
    color: #fff;
    position: absolute;
    bottom: 5%;
    left: 5%;
    z-index: 5;
}

.product-banner .product-banner-img {
    width: 100%;
    position: relative;
    z-index: 1;
    aspect-ratio: 670 / 225;
    object-fit: cover;
    object-position: center;
}

.position-imgs {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 3;
}

.why-img1 {
    width: 150%;
    position: absolute;
    bottom: -11rem;
    left: 0;
}

.why-img2 {
    width: 110%;
    position: absolute;
    bottom: -6rem;
    left: -6rem;
}

.granite-block-content {
    width: 100%;
    padding: 2.5rem 0;
    position: relative;
    background-color: #444;
    z-index: 10;
}

.granite-block-content .custom-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.granite-block-content p {
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.4;
    width: calc(70% - 2rem);
}

.granite-block-content .img-pos {
    width: 30%;
}

.why-img3 {
    width: 12%;
    position: absolute;
    bottom: 4rem;
    right: 12rem;
    z-index: 4;
}

.why-img4 {
    width: 27%;
    position: absolute;
    bottom: 13rem;
    right: 6rem;
    z-index: 3;
    animation: rotate 20s linear infinite;
}



.products-page-section {
    width: 100%;
    padding: 6rem 0;
    background-color: #EDEFF0;
}

.all-products-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem 3rem;
}

.product {
    width: calc(33.3% - 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product > a:nth-child(1){
    width: 100%;
    display: flex;
    overflow: hidden;
}

.product img {
    width: 100%;
    position: relative;
    transition: all 0.5s ease;
}

.product img:hover{
    transform: scale(1.10);
}

.product > a:nth-child(2) img{
    width: 44px;
    aspect-ratio: 1 / 1;
}

.product-signin {
    width: 100%;
    padding: 3rem 0;
    display: flex;
    background-color: #FECB09;
}

.product-signin .custom-container {
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: space-between; 
    align-items: flex-end;
    gap: 4rem;
}

.product-signin p {
    color: #606160;
    font-size: 16px;
    letter-spacing: 1px;
    /*max-width: 600px;*/
}

.product-signin form {
    display: flex;
    gap: 2rem;
}

.product-signin form input[type="email"] {
    background-color: #EDEFF0;
    border: unset;
    outline: unset;
    padding: 0.8rem 3rem 0.8rem 1rem;
    border-radius: 4px;
    width: 325px;
}

.product-signin form input[type="submit"] {
    background-color: #606160;
    color: #fff;
    border: unset;
    outline: unset;
    border-radius: 4px;
    cursor: pointer;
    padding: 0.8rem 1.2rem;
}




/*prroduct inner page*/

.product-detail-content h3 {
            font-size: 3rem;
            font-weight: 700;
            color: #606160;
            position: relative;
        }
        .product-signin h3{
            font-size: 2.2rem;
            font-weight: 600;
            color: #606160;
            margin-bottom: 0.5rem;
        }

        .dark-button {
            display: flex;
        }

        .dark-button:hover span {
            background-color: #F29325;
        }

        .dark-button span {
            padding: 0.8rem 1rem;
            color: #fff;
            background-color: #606160;
            transition: all 0.3s ease;
            width: 240px;
            text-align: center;
        }

        .dark-button img {
            padding: 0.8rem;
            width: 44px;
            background-color: #F29325;
            transition: all 0.3s ease;
        }

        .dark-button:hover img {
            background-color: #606160;
        }

        .orange-btn {
            padding: 0.8rem 2rem;
            background-color: #FECB09;
            color: #fff;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
        }
        
         .orange-btn:hover{
             background-color: #EB6F2B;
         }

        .white-btn {
            display: flex;
        }

        .white-btn:hover span {
            background-color: #F29325;
        }

        .white-btn span {
            padding: 0.8rem 3rem;
            color: #606160;
            background-color: #fff;
            transition: all 0.3s ease;
        }

        .white-btn img {
            padding: 0.8rem;
            width: 44px;
            background-color: #F29325;
            transition: all 0.3s ease;
        }

        .white-btn:hover img {
            background-color: #606160;
        }

        .btn-pos{
            position: absolute;
            bottom: -1.5rem;
            right: 7.5%;
            display: flex;
        }
        
        
        /*product inner page*/
        

        .inner-banners {
            width: 100%;
            /*height: 60vh;*/
        }

        .inner-banners img {
            width: 100%;
            /*object-fit: cover;*/
            object-position: center;
        }

        .product-inner-section {
            width: 100%;
            padding: 6rem 0;
            background-color: #EDEFF0;
        }

        .product-detail-flex {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: space-between;
            gap: 4rem;
        }

        .product-left {
            width: calc(40% - 2rem);
            display: flex;
            flex-direction: column;
            align-items: center;
            /*justify-content: center;*/
        }

        .product-left div {
            display: flex;
        }

        .product-left div img {
            width: 100%;
        }

        .product-right {
            width: calc(60% - 2rem);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .product-detail-table {
            background-color: #fff;
        }

        .product-detail-table table {
            width: 100%;
        }

        .product-detail-table tr {
            padding: 0.8rem;
            width: 100%;
            display: flex;
            gap: 1rem;
            border-bottom: 1px solid #00000014;
        }

        .product-detail-table tr td:nth-child(1) {
            width: calc(40% - 0.5rem);
        }

        .product-detail-table tr td:nth-child(2) {
            width: calc(60% - 0.5rem);
        }


        .product-button-flex {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            align-items: center;
        }
        
        .product-button-flex .orange-btn {
            font-size: 1rem;
        }
        
        .product-button-flex a:nth-child(2){
            border-bottom: 2px solid #FECB09;
        }

        .products-swiper {
            width: 100%;
            padding: 6rem 0 3rem;
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .products-swiper .swiper {
            width: 100%;
            height: 100%;
        }

        .products-swiper .swiper-slide {
            text-align: center;
            font-size: 18px;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 20px;
            overflow: hidden;
        }

        .products-swiper .swiper-slide div {
            width: 100%;
            height: 300px;
            /* background-color: cadetblue; */
        }

        .products-swiper .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .products-swiper .swiper-button-next {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #fff;
        }

        .products-swiper .swiper-button-prev {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #fff;
        }

        .swiper-button-next:after,
        .swiper-rtl .swiper-button-prev:after {
            font-size: 22px;
            font-weight: 600;
            color: #EB6F2B;
        }

        .swiper-button-prev:after,
        .swiper-rtl .swiper-button-next:after {
            font-size: 22px;
            font-weight: 600;
            color: #EB6F2B;
        }

        .product-detail-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .product-detail-content div {
            padding: 3rem 0;
            background-color: #e5e5e5;
        }

        .product-detail-content p{
            color: #606060;
            font-size: 1.5rem;
        }
        
        
/*csr page*/

.inner-page-banner {
    width: 100%;
    height: 50vh;
    position: relative;
}

.inner-page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.inner-page-banner h1 {
    position: absolute;
    bottom: 3rem;
    left: 5%;
    font-size: 4vw;
    font-weight: 700;
    color: white;
}

.csr-des {
    padding: 0 0 6rem;
}

.csr-des .custom-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    justify-content: space-around;
}

.csr-des-lft {
    width: calc(50% - 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    padding: 2rem 0;
}

.csr-des-lft h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #606060;
    text-align: justify;
    line-height: 1.3;
}

.csr-des-lft p {
    color: #606060;
    font-size: 1.1rem;
    line-height: 1.4;
}

.csr-des-lft h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #606060;
}

.csr-des .custom-container > img {
    max-width: 500px;
    object-fit: cover;
    object-position: center;
}

.csr-slider {
    overflow: hidden;
}

.csr-slider .swiper-slide {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #EAD6D5;
    margin-bottom: 3rem;
    height: unset;
}

.csr-slider .swiper-slide > img{
    width: 35%;
    align-self: stretch;
    object-fit: cover;
    object-position: center;
}

.csr-slider .swiper-slide > div {
    width: 65%;
    padding: 3rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.csr-slider .swiper-slide > div ul {
    padding-left: 1rem;
}

.csr-slider .swiper-slide > div h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #606060;
}

.csr-slider .swiper-slide > div p:nth-child(2) {
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: justify;
}

.csr-slider .swiper-slide > div p:nth-child(3) {
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: justify;
}

.csr-slider span.swiper-pagination-bullet {
    width: 50px;
    border-radius: unset;
    height: 6px;
}

.csr-slider span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #f29325;
}

.certificate-list {
    padding: 4rem 0;
    background-color: #F9F6E4;
}

.certificate-list .custom-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 2rem;
}

.horiz-certificate {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.horiz-certificate div:nth-child(1){
    width: calc(30% - 1.33rem);
    display: flex;
}
.horiz-certificate div:nth-child(2){
    width: calc(30% - 1.33rem);
    display: flex;
}
.horiz-certificate div:nth-child(3){
    width: calc(40% - 1.33rem);
    display: flex;
}
.horiz-certificate div img{
    width: 100%;
}

.verti-certificate {
    width: 100%;
    display: flex;
    justify-content: center;
}

.verti-certificate div{
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}

.verti-certificate div img{
    width: 100%;
}

.certificate-des {
    padding: 3rem 0;
    background-color: #E5E5E5;
}

.certificate-des .custom-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.certificate-des .custom-container h3{
    font-size: 1.8rem;
    font-weight: 600;
    color: #606060;
}

.certificate-des h2{
    font-size: 2rem;
    font-weight: 600;
    color: #606060;
    -webkit-text-fill-color: unset; 
    -webkit-text-stroke-width: 0px;
}

.certificate-des .custom-container p{
    font-size: 1.2rem;
    color: #606060;
    line-height: 1.4;
}

.certificate-des .custom-container div{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.certificate-des .custom-container ol{
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.certificate-des .custom-container ol li{
    font-size: 1.2rem;
    line-height: 1.3;
    color: #606060;
}



/*quality, packaging, export page*/

    .packaging-section{
            width: 100%;
            background-color: lightgrey;
        }
        
        
        .packaging-flex{
            display: flex;
            flex-direction: column;
        }
        
        .packaging-row{
            padding: 4rem 0;
            width: 100%;
            display: flex;
            justify-content: center;
        }
        
         .packaging-row:nth-child(2){
             background-color: #fff;
         }
         
     #packaging-row-bg{
             background-color: orange;
            background-image: url('../assets/images/white-bg.png');
            background-repeat: no-repeat;
            background-size: 57% 100%;
            background-position: top right;
         }
         
         .packaging-row-bg ul{
                list-style: none;
                display: flex;
                flex-direction: column;
                gap: 1rem;
                margin-top: 1rem;
                padding-left: 3rem;
         }

        .packaging-row-bg ul li {
            font-size: 1rem;
            font-weight: 500;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.5rem;
            color: #EB6F2B;
            width: max-content;
        }

         .packaging-row-bg ul li img{
            padding: 4px;
            border-radius: 50%;
            width: 20px;
            background-color: #EB6F2B;
         }
         .packaging-row-flex{
            width: 88%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
         }
        
        .packaging-col{
            width: calc(50% - 2rem);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .packaging-col p{
            padding: 0 1rem;
        }
        
        .packaging-col strong{
            font-size: 32px;
            font-weight: 600;
            color: #606160;
            width: 100%;
            text-align: center;
        }
        
        .manu-left{
            text-align: start;
        }
        
        .packaging-col img{
            width: 100%;
        }
        
        .packaging-row-bg .packaging-col:nth-child(1) img{
            width: 425px;
        }
        
        .packaging-col p{
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 1px;
            color: #606160;
            text-align: justify;
            line-height: 1.4;
            max-width: 550px;
        }
        
         .export-section{
                width: 100%;
                padding: 8rem 0;
                background-image: url('../assets/images/export-bg.jpg');
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
            }
            
            .export-col{
                width: 50%;
                display: flex;
                flex-direction: column;
                gap: 1.2rem;
            }
            
            .export-col p{
                color: #fff;
                font-size: 18px;
                text-align: justify;
                padding: 4rem 0;
            }
            
            .export-bottom-content{
                width: 100%;
                padding: 3rem 0;
            }
            
            .export-bottom-content p{
                color: #31466E;
                font-size: 20px;
                font-weight: 300;
            }
            
            
            /*careers page*/
            
            .jobportal-section{
                width: 100%;
                padding: 4rem 0;
                background-color: lightgrey;
            }
            
            .jobportal-flex{
                width: 100%;
                display: flex;
                flex-wrap: wrap;
                gap: 4rem;
            }
            
            .job-card{
                width: calc(33.3% - 2.66rem);
                display: flex;
                flex-direction: column;
                gap: 2rem;
                padding: 1.5rem;
                border: 1px solid #606160;
                border-top: 10px solid orange;
            }
            
            .job-card .dark-button{
                width: max-content;
            }
            
            .job-card div{
                display: flex;
                flex-direction: column;
                gap: 4px;
            }
            
            .job-card div h4{
                font-size: 22px;
                color: #1a1919;
            }
            
            .job-card div p{
            }
            
            .career-page{
                position: relative;
                padding: 4rem 0;
            }
            
            .career-page .custom-container{
                display: flex;
                flex-direction: column;
                gap: 1rem;
                align-items: center;
                justify-content: center;
            }
            
            .career-page .custom-container div{
                display: flex;
                flex-direction: column;
                gap: 1rem;
                align-items: center;
                justify-content: center;
            }
            
            .career-page h2{
                font-size: 55px;
                text-align: center;
            }
            
             .career-page p{
                text-align: center;
                width: 100%;
                font-size: 30px;
            }
            
            .career-page .orange-btn{
                    position: absolute;
                    top: 92%;
                    font-size: 22px;
                    color: #1a1919;
            }
            
         @media only screen and (max-width: 1080px)  {
             #packaging-row-bg{
                background-image: none;
            }
        
         }  
            
        @media only screen and (max-width: 840px){
            
            .packaging-row-flex{
                gap: 2rem;
                align-items: center;
            }
            
            .packaging-flex{
                gap: 2rem;
            }
            
            .packaging-row{
                gap: 2rem;
                padding: 3rem 0;
            }
            
            .packaging-row:nth-child(2){
                flex-direction: column-reverse;
            }
            
            .packaging-row-bg .packaging-col:nth-child(1) img{
                width: 300px;
            }
            
             .packaging-col{
                 width: 100%;
             }
             
             .packaging-col p{
                 font-size: 18px;
                 font-weight: 400;
             }
        }
        
          @media only screen and (max-width: 600px){
              
            .packaging-flex{
                gap: 0rem;
            }
            
            .packaging-row{
                gap: 1rem;
            }
          }
          
          
          .home-product-swiper{
              padding: 3rem 0;
          }
          
          .home-product-swiper .swiper-slide {
                padding: 0 4rem;
                border-right: 1px solid #000;
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: center;
                height: unset;
            }
            
            .product-des-swipe {
                width: 43%;
                gap: 1.5rem;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }
            
            .home-product-swiper h3{
                font-size: 24px;
                margin-bottom: 1rem;
            }
            
            .product-img-swipe {
                width: 50%;
            }
            
            .product-img-swipe img {
                width: 100%;
            }
            
            .read-more-btn{
                border-bottom: 2px solid orange;
                padding-bottom: 5px;
            }
            
            .banner-stones img:nth-child(1){
                position: absolute;
                bottom: 0;
                right: 1%;
                width: 25%;
            }
            .banner-stones img:nth-child(2){
                position: absolute;
                bottom: 0;
                right: 0;
                width: 25%;
            }
            
            .packaging-col{
                position: relative;
            }
            .packaging-col strong::after {
                position: absolute;
                content: '';
                top: 100%;
                left: 45%;
                width: 60px;
                height: 3px;
                background-color: #F29325;
            }
            
           .packaging-col .manu-left::after{
                background-color: #fff;
           }
    