* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Mulish", sans-serif;
    scroll-behavior: smooth;
}

:root {
    --black-bg: #000;
    /* --theme-color: #023254; */
    --theme-color: #054077;
}
section {
    overflow: hidden;
}

body {
    padding: 0px !important;
}
section {
    scroll-margin-top: 110px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.scrollable-element {
    scroll-behavior: smooth;
}

ul {
    list-style-position: inside;
}

html,
body {
    margin: 0;
    padding: 0px !important;
    height: 100%;
    width: 100%;

}
main,
footer,
header
section {
    overflow: hidden;
}

.py-100 {
    padding: 100px 0px;
}

.py-70 {
    padding: 70px 0px;
}


.py-50 {
    padding: 50px 0px;
}

.text-theme-color {
    color: var(--theme-color);
}

.para {
    color: #858585;
    font-size: 16px;
}

/* =================================== */
/* Header start */
/* ================================== */
header {
    background: #000;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.logo {
    width: 210px;
}

.offcanvas.fullscreen {
    min-width: 100%;
    --bs-offcanvas-transition: transform 1s ease-in-out !important;
    padding: 50px;
    background-color: #02325469;
    backdrop-filter: blur(10px);
}

.navbar-toggler .menu-icon {
    width: 30px;
}

.offcanvas.fullscreen .offcanvas-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas.fullscreen .offcanvas-body ul {
    list-style: none;
}

.offcanvas.fullscreen .offcanvas-body .nav-link {
    color: #FFF;
    font-family: "Cinzel", serif;
    font-size: 70px;
    text-align: center;
    font-weight: 400;
    margin: 20px 0px;
    transition: 0.4s all ease-in-out;
    position: relative;
}

.offcanvas.fullscreen .offcanvas-body .nav-link::before {
    content: "";
    position: absolute;
    width: 0%;
    margin: 0 auto;
    height: 1px;
    background-color: #FFF;
    left: 0;
    right: 0;
    bottom: 0px;
    transition: 0.4s all ease-in-out;
}

.offcanvas.fullscreen .offcanvas-body .nav-link:hover::before {
    width: 70%;
    opacity: 1;
}

.offcanvas-header .btn-close {
    color: #FFF;
    font-size: 20px;
    background: url('../images/icons/menu-close.svg') no-repeat center;
    opacity: 1;
    background-size: 40px;
}


/* ================================== */
/* Home Page Starts */
/* ================================== */

/* ================================== */
/* Banner section Starts */
/* ================================== */

.bg-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}


.hero {
    position: relative;
    background: url('../images/banner-bg.jpg') no-repeat top center;
    backdrop-filter: blur(10px);
    min-height: 100vh;
    height: 100%;
    padding: 200px 0px;
    background-size: cover;
}


.main-heading {
    color: #FFF;
    font-family: "Cinzel", serif;
    font-size: 70px;
    text-align: center;
    padding: 100px 0px;
}

.custom-shape-divider-bottom-1729766281 {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1729766281 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom-1729766281 .shape-fill {
    fill: #FFFFFF;
}

/* ================================== */
/* About Section */
/* ================================== */

.about-wrapper {
    position: relative;
    background-color: #fafafa;
    z-index: 1;
}

.about-wrapper::after {
    content: "";
    position: absolute;
    width: 30%;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #023254;
    z-index: -1;
}

.second-heading {
    font-family: "Cinzel", serif;
    font-size: 55px;
}

.diamond-floating {
    position: absolute;
    width: 160px;
    height: auto;
    top: auto;
    bottom: 0;
    left: 0px;
    transition: transform 0.5s ease-out;
}

.small-heading {
    font-family: "Cinzel", serif;
    font-size: 38px;
}

.about-wrapper p {
    color: #858585;
    font-size: 16px;
}

.extra-small-heading {
    font-family: "Mulish", sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.about-wrapper .ab-image {
    min-height: 450px;
    object-fit: cover;
    width: 100%;
    filter: grayscale(1);
    transition: 0.3s all ease;
}

.about-wrapper .ab-image:hover {
    filter: grayscale(0);
}

.theme-btn {
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: #FFF !important;
    padding: 12px 24px;
    text-decoration: none;
    transition-duration: 0.4s;
    transition-property: transform;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.theme-btn::before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    transition-duration: 0.4s;
    transition-property: transform opacity background;
}

.theme-btn:hover {
    background-color: #000;
    transform: translateY(-6px);
    animation-name: hover;
    animation-duration: 1.5s;
    animation-delay: 0.3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.theme-btn:hover::before {
    opacity: 0.4;
    transform: translateY(6px);
    animation-name: hover-shadow;
    animation-duration: 1.5s;
    animation-delay: 0.3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

/* ================================== */
/* Whys choose section starts */
/* ================================== */

.why-choose-us-wrapper {
    position: relative;
}

.iconbox-top-content .title {
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 28px;
}

.iconbox-top .iconbox-top-content {
    display: inline-block;
    max-width: 700px;
}

.iconbox-top .icon-holder {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 15px;
    height: 100px;
    width: 100px;
}

.iconbox-top .svg-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    display: block;
    z-index: 0;
}

.iconbox-top .description {
    margin-right: auto;
    margin-left: auto;
    font-weight: normal;
    max-width: 85%;
    color: rgba(94, 94, 94, 0.7);
}

.iconbox-top .svg-circle {
    opacity: 0;
}

.iconbox-top .svg-circle circle {
    stroke-dasharray: 360;
    stroke-dashoffset: 360px;
}

.iconbox-top .hover-holder:hover .svg-circle circle {
    animation: dashIn 0.6s linear forwards;
    stroke: var(--theme-color);
}

.iconbox-top .hover-holder:hover .svg-circle {
    opacity: 1;
}

.iconbox-top .hover-holder:not(:hover) .svg-circle circle {
    animation: dashOut 0.6s ease;
}

.iconbox-top .hover-holder:not(:hover) .svg-circle {
    opacity: 0.3;
}

.iconbox-top .hover-holder:hover .icon {
    animation: iconIn 0.3s linear forwards;
}

.iconbox-top .hover-holder:not(:hover) .icon {
    animation: iconOut 0.3s ease;
}

@keyframes dashIn {
    from {
        stroke-dashoffset: 360;
    }

    to {
        stroke-dashoffset: 1;
    }
}

@keyframes dashOut {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: 360;
    }
}

@keyframes iconIn {
    0% {
        font-size: 42px;
    }

    100% {
        font-size: 38px;
    }
}

@keyframes iconOut {
    0% {
        font-size: 38px;
    }

    100% {
        font-size: 42px;
    }
}

.iconbox-top .icon {
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translateY(-50%) translateX(50%);
    font-size: 42px;
    z-index: 1;
    -webkit-backface-visibility: hidden;
}



/* ================================== */
/* mission vision section starts */
/* ================================== */

.vision-wrapper {
    position: relative;
    /* background: url('../images/still-with-expensive-cut-diamonds-front-white-background-reflections-ground.png') no-repeat; */
    background-size: cover;
    background-position: center;
    /* backdrop-filter: blur(10px); */
}

.vision-wrapper .sticky-image {
    position: sticky;
    top: 150px;
    filter: grayscale(1);
    transition: 0.3s all ease;
}

.vision-wrapper .sticky-image:hover {
    filter: grayscale(0);
}


.vision-wrapper .icon-wrapper {
    width: 70px;
    height: 70px;
    padding: 18px;
    background-color: #FFF;
    border-radius: 50px;
    box-shadow: 0px 4px 30px 0px #02325414;
    margin-bottom: 20px;
}

.vision-wrapper .icon-wrapper img {
    width: 100%;
    height: auto;
}

.vision-wrapper .extra-small-heading {
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    font-size: 26px;
}

.vision-wrapper .description {
    color: #858585;
    font-size: 16px;
}

/* ================================== */
/* Product section starts */
/* ================================== */
.our-products-wrapper {
    position: relative;
    z-index: 1;
}

.our-products-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    background-color: var(--theme-color);
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
}

.pro-outer-wrapper {
    margin: 12px 0px;
}

.product-box {
    border: 1px solid #e0e0e0;
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #FFF;
}

.product-box .top {
    width: 100%;
}

.product-box .img-wrapper {
    height: 350px;
    width: 100%;
    overflow: hidden;
}

.product-box .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: 0.8s all ease;
}

.product-box .img-wrapper img:hover {
    transform: scale(1.2);
    filter: grayscale(0);
}

.product-box .pro-title {
    margin: 24px 0px;
    font-weight: 600;
    font-size: 24px;
    text-transform: capitalize;
    line-height: normal;
}

/* ================================== */
/* Testimonial section starts */
/* ================================== */

.testimonial-wrapper {
    background: url('../images/diamond-bg.png') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.testimonial-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #023254;
    opacity: 0.8;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.testimonial-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.testimonial-box .quote-icon {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
}

.testimonial-box .title {
    color: #FFF;
    font-family: "Cinzel", serif;
    font-size: 28px;
    text-transform: lowercase;
}

.testimonial-box .description {
    color: #FFF;
    font-family: "Mulish", sans-serif;
    font-weight: 300;
    text-transform: capitalize;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-box .review-icon {
    width: 100%;
    height: 24px;
    object-fit: contain;
    margin-top: 10px;
    text-align: center;
}

.testimonial-wrapper .swiper-pagination {
    position: unset;
}

.testimonial-wrapper .swiper-pagination .swiper-pagination-bullet {
    background-color: #FFF;
    margin: 0px 10px;
}

.testimonial-wrapper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transform: scale(1.8);
}

/* ================================== */
/* Contact section starts */
/* ================================== */

.contact-wrapper {
    position: relative;
}

.form-control {
    border: 1px solid #02325483;
    border-radius: 0;
    padding: 12px 24px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}


.contact-wrapper form .theme-btn {
    border: 1px solid var(--theme-color) !important;
}


/* ================================== */
/* Footer starts */
/* ================================== */

footer {
    background: #000;
}

.footer-list-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 20px 0px 0px 0px;
    list-style: none;
}

.footer-list-widget a {
    text-align: center;
    color: #FFF;
    font-family: "Mulish", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 16px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: 0.4s all ease-in-out;
    position: relative;
}

.footer-list-widget a:hover {
    color: #FFF;
    opacity: 0.8;
}

.footer-list-widget a::before,
.ft-footer-text::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: #FFF;
    left: 0;
    right: 0;
    bottom: -8px;
    transition: 0.4s all ease-in-out;
}

.footer-list-widget a:hover::before {
    width: 100%;
    opacity: 0.8;
}

.ft-footer-text {
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.4s all ease-in-out;
    position: relative;
}

.ft-footer-text:hover::before {
    width: 100%;
    opacity: 0.8;
}

.custom-shape-divider-top-1729766708 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-top-1729766708 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-top-1729766708 .shape-fill {
    fill: #FFFFFF;
}

/* ================================== */
/* Home page End */
/* ================================== */



/* ================================== */
/* About Page Starts */
/* ================================== */

.small-banner {
    margin-top: 100px;
    background-image: url('../images/diamond-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.small-banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.9;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


/* Crafing section starts */

.our-crafting-wrapper {
    position: relative;
}

.our-crafting-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    background-color: var(--theme-color);
    z-index: -1;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
}

.craft-description {
    color: #858585;
    font-size: 16px;
}

.crafting_swiper {
    box-shadow: 0px 0px 38px 3px #00000036;
}

.crafting_swiper .swiper-slide {
    height: 550px;
    overflow: hidden;
}

.crafting_swiper .craft-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craft-img {
    animation: zoomInOut 10s infinite;
}

.craft-img:hover {
    animation-play-state: paused;
}


@keyframes zoomInOut {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* ================================== */
/* About page End */
/* ================================== */




/* ================================== */
/* Products page Starts */
/* ================================== */

.bg-none.our-products-wrapper::before {
    display: none;
}

/* ================================== */
/* Products page Starts */
/* ================================== */




/* ================================== */
/* Product-view page Starts */
/* ================================== */

.product-title {
    font-size: 42px;
    font-weight: 700;
}


.product-images img {
    width: 100%;
    min-height: 340px;
    max-height: 340px;
    height: auto;
    object-fit: cover;
}

.product-content-wrapper {
    padding: 30px 12px;
}

.product-content-wrapper .product-description {
    color: #858585;
    font-size: 16px;
    margin: 14px 0px;
}

.product-content-wrapper .features-list {
    padding: 0;
}

.product-content-wrapper .features-list li {
    font-size: 16px;
    color: #000;
    padding: 3px 0px;
}

.product-content-wrapper .features-list li span {
    color: #5f5f5f;
}

/* ================================== */
/* Product-view page Starts */
/* ================================== */




/* ================================== */
/* Contact Page Starts */
/* ================================== */

.contact-info-box {
    background-color: #FFF;
    border: 1px solid #f5f5f5;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.contact-info-box .icon-wrapper {
    width: 50px;
    margin: 0 auto;
    height: 50px;
    padding: 5px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.contact-info-box .icon-wrapper .info-icon {
    width: 100%;
    height: auto;
}

.contact-info-box .title {
    color: var(--theme-color);
    font-size: 28px;
    font-weight: 500;
}

.contact-info-box .link {
    color: #000;
    opacity: 0.7;
    text-align: center;
    text-decoration: none;
    position: relative;
    font-size: 18px;
}


.contact-info-box .link::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    margin: 0 auto;
    background-color: #000;
    opacity: 0.7;
    left: 0;
    right: 0;
    bottom: -5px;
    transition: 0.4s all;
}

.contact-info-box .link:hover:before {
    width: 100%;
    opacity: 1;
}

.contact-info-box .link:hover {
    opacity: 1;
}

/* ================================== */
/* Contact Page Starts */
/* ================================== */




/* ================================== */
/* Responsive Starts */
/* ================================== */
@media (max-width: 1600px) {
    .diamond-floating {
        width: 110px;
        top: auto;
        bottom: -40%;
    }
}

@media (max-width: 1200px) {
    .main-heading {
        font-size: 60px;
        padding: 70px 0px 0px;
    }
}

@media (max-width: 992px) {

    .hero {
        padding: 140px 0px;
    }

    .py-100 {
        padding: 70px 0px;
    }

    .py-70 {
        padding: 50px 0px;
    }

    .second-heading {
        font-size: 45px;
    }

    .small-heading {
        font-size: 32px;
    }

    .vision-wrapper .icon-wrapper {
        margin-left: auto;
        margin-right: auto;
    }

    .our-products-wrapper::before {
        height: 25%;
    }

    .about-wrapper::after {
        height: 30%;
        width: 100%;
        bottom: auto;
        top: 0;
    }

    .about-wrapper .second-heading,
    .our-crafting-wrapper .second-heading {
        color: #FFF !important;
    }


    .craft-description {
        color: #FFF;
        opacity: 0.8;
    }

    .our-crafting-wrapper::before {
        height: 70%;
    }

    .product-content-wrapper {
        padding: 20px 10px;
    }

}

@media (max-width: 767px) {
    .offcanvas-header .btn-close {
        color: #FFF;
        font-size: 20px;
        background-size: 30px;
    }

    .offcanvas.fullscreen .offcanvas-body .nav-link {
        font-size: 50px;
    }

    .hero {
        padding: 100px 0px;
        min-height: 800px;
        height: 100vh;
    }

    .main-heading {
        font-size: 50px;
    }

    .py-100 {
        padding: 50px 0px;
    }

    .second-heading {
        font-size: 40px;
    }

    .iconbox-top-content .title {
        font-size: 22px;
    }

    .testimonial-box .description {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .testimonial-box .quote-icon {
        height: 70px;
    }

    .product-box .pro-title {
        margin: 20px 0px;
        font-size: 22px;
    }

    .custom-shape-divider-bottom-1729766281 svg,
    .custom-shape-divider-top-1729766708 svg {
        height: 100px;
    }

    .crafting_swiper .swiper-slide {
        height: 400px;
    }


    .product-title {
        font-size: 36px;
    }


    .py-50 {
        padding: 30px 0px;
    }
}

@media (max-width: 576px) {
    .diamond-floating {
        display: none;
    }

    .offcanvas.fullscreen .offcanvas-body .nav-link {
        font-size: 40px;
        margin: 15px 0px;
    }

    .logo {
        width: 150px;
    }

    .main-heading {
        font-size: 42px;
    }

    .hero {
        padding: 100px 0px;
        min-height: 520px;
        height: 80vh;
    }

    .second-heading {
        font-size: 36px;
    }

    .small-heading {
        font-size: 28px;
    }

    .about-wrapper .ab-image {
        min-height: 100%;
    }

    .vision-wrapper .extra-small-heading {
        font-size: 22px;
    }

    .testimonial-box .title {
        font-size: 24px;
    }

    .copy-text {
        font-size: 14px;
    }

    .product-box .pro-title {
        margin: 12px 0px;
        font-size: 20px;
    }

    .custom-shape-divider-bottom-1729766281 svg,
    .custom-shape-divider-top-1729766708 svg {
        height: 50px;
    }

    .crafting_swiper .swiper-slide {
        height: 300px;
    }

    .small-banner {
        margin-top: 80px;
    }

    .product-images img {
        height: auto;
        min-height: 100%;
        max-height: 100%;
    }

    .product-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    p {
        font-size: 14px;
    }

    .py-100 {
        padding: 40px 0px;
    }

    .testimonial-box .review-icon {
        height: 18px;
    }

    .py-70 {
        padding: 40px 0px;
    }

    .about-wrapper p,
    .vision-wrapper .description {
        font-size: 14px;
    }

    .about-wrapper::after {
        height: 20%;
    }

    .footer-list-widget a {
        font-size: 14px;
    }

    .footer-list-widget {
        flex-direction: column;
    }

    .product-box {
        padding: 10px;
    }

    .product-box .theme-btn {
        font-size: 14px;
    }

    .product-box .img-wrapper {
        height: auto;
    }

    .product-content-wrapper .product-description,
    .product-content-wrapper .features-list li {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .main-heading {
        padding: 30px 0px 0px;
    }

    .offcanvas.fullscreen .offcanvas-body .nav-link {
        font-size: 36px;
        margin: 11px 0px;
    }
}
