/* banner-section */
body {
    overflow-x: hidden;
}

.hero-section {
    position: relative;
}
.btn {
    text-transform: capitalize !important;
}
.hero-slide {
    height: 90vh;
    background-size: cover;
    background-position: inherit;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
}

.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.6); */
    background: rgb(49 43 43 / 2%);

}

.hero-section .common-sub-title {
    margin-bottom: 10px;
    display: block;
    color: var(--dark-gold);
    font-size: 18px;
    font-weight: 500;
}

.hero-slide .content {
    /* background: var(--white)47; */
    position: relative;
    z-index: 2;
    /* background: rgb(0 0 0 / 70%); */
    background: #00000094;
    border: 1px solid var(--white);
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgb(18 18 14 / 53%);
    min-height: 380px;
    transition: all 0.2s ease;
    position: relative;
}

.hero-slide h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 40px;
    font-family: "Gilda Display", serif;
    letter-spacing: 5px;
}

.hero-section .common-primary-btn {
    min-width: 220px;
    font-size: 16px;
    height: 48px;

}

.hero-section .common-primary-btn:hover {
    color: var(--white);
    border: 1px solid var(--white);
}

.hero-section .play-btn {
    animation: pulse-border 1500ms ease-out infinite;
}

.hero-section .play-btn a {
    height: 80px;
    max-width: 92px;
    padding: 15px;
    border-radius: 75px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0;
    margin-bottom: -38px;
    background-color: var(--white);
    animation: Address-icon-animation 2s infinite;
    display: flex;
    width: 80px;
    align-items: center;
    justify-content: center;
}

.hero-section .play-btn a {
    box-shadow: 0 0 0 var(--gold-color);
}

.hero-section .play-btn a i {
    font-size: 50px;
    color: var(--gold-color);
}

.video-play-button {
    position: relative;
    z-index: 9999;
    bottom: 0;
    left: 48%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--gold-color);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--gold-color);
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button:hover:after {
    background-color: darken(var(--gold-color), 10%);
}

.video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

.banner-service-section .services-card.noBorder::after {display:none;}
@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}



/* .video-overlay {
        position: fixed;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.80);
        opacity: 0;
        transition: all ease 500ms;
    }
    
    .video-overlay.open {
        position: fixed;
        z-index: 1000;
        opacity: 1;
    }
    
    .video-overlay-close {
        position: absolute;
        z-index: 1000;
        top: 15px;
        right: 20px;
        font-size: 36px;
        line-height: 1;
        font-weight: 400;
        color: var(--white);
        text-decoration: none;
        cursor: pointer;
        transition: all 200ms;
    } */

.video-overlay-close:hover {
    color: var(--gold-color);
}

.video-overlay iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* width: 90%; */
    /* height: auto; */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.hero-section .star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 20px;
    justify-content: center;
}

.hero-section .star-rating i {
    color: var(--dark-gold);
    position: relative;
    z-index: 9999;
    font-size: 12px;
}

/* new slider css */
.creative-fullpage--slider .common-sub-title {
    margin-bottom: 10px;
    display: block;
    color: var(--dark-gold);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.creative-fullpage--slider .common-main-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--white);
    font-family: "Gilda Display", serif;
    letter-spacing: 5px;
    text-align: center;
}

.creative-fullpage--slider .star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 20px;
    justify-content: center;
}

.creative-fullpage--slider .star-rating i {
    color: var(--dark-gold);
    position: relative;
    z-index: 9999;
    font-size: 12px;
}

.creative-fullpage--slider .video-play-button {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 112px;
}

.creative-fullpage--slider img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

/* ============ Full Page Slider ================= */
.creative-fullpage--slider {
    background-color: var(--white);
    z-index: 2;
    width: 100%;
    position: relative;
    flex-direction: column;
    height: 85vh;
    font-size: 16px;
    display: flex;
    clip-path: none !important;
}

.creative-fullpage--slider .slider-inner {
    background: #000;
    height: 85vh;
    position: relative;
}

.creative-fullpage--slider .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: left;
    flex-direction: column;
    overflow: hidden;
}

.creative-fullpage--slider .swiper-slide .slider-inner img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

.creative-fullpage--slider .swiper-slide .slider-inner video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
    /* position: absolute;
        top: 22%;
        left: 50px;
        z-index: 1; */
    background: #00000052;
    border: 0;
    padding: 60px 25px 0 25px;
    min-height: 100%;
    transition: all 0.2s ease;
    min-width: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.creative-fullpage--slider .banner-box {
    /* background: #00000094; */
    background: #1815157a;
    border: 1px solid var(--white);
    padding: 60px 25px 40px 25px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgb(18 18 14 / 53%);
    min-height: 380px;
    transition: all 0.2s ease;
    min-width: 800px;
    width: 1200px;
    position: relative;
    top: -79px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    max-width: 100%;
}

/* .creative-fullpage--slider .swiper-slide .slider-inner::after {
        content: "";
        position: absolute;
        width: 101%;
        height: 100%;
        top: 0;
        left: -1px;
        background-color: transparent;
        background-image: radial-gradient(at center right, var(--white)00 50%, #00000096 100%);
    } */

.swiper-slide .slider-inner .swiper-content .title-area .tag {
    color: var(--white);
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 0px;
}

.swiper-slide .slider-inner .swiper-content .title-area .title {
    margin-top: 50px;
    color: var(--white);
    font-size: 8vw;
    font-family: "Inter", sans-serif;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 50px;
    margin-left: -12px;
    text-decoration: none;
}

.swiper-slide .slider-inner .swiper-content p.disc {
    font-size: 20px;
    width: 100%;
    margin-top: 15px;
    margin: 20px 0px 40px 0px;
    font-weight: 400;
    line-height: 32px;
    color: var(--white)B0;
}

.creative-btn--wrap {
    text-align: center;
}

.creative-btn--wrap .creative-slide--btn {
    color: var(--white);
    margin-left: 18px;
    font-size: 18px;
    transition: margin-left 300ms cubic-bezier(0.49, 0, 0.01, 1);
    font-weight: 400;
    display: inline-flex;
    position: relative;
    white-space: nowrap;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    outline: none;
    outline-color: transparent;
    box-shadow: none;
    will-change: transform;
    backface-visibility: hidden;
}

.creative-btn--circle .circle {
    position: absolute;
    right: calc(100% - 10px);
    top: 0;
    bottom: 0;
    margin: auto;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    clip-path: circle(25% at 50% 50%);
    transition: clip-path 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle .circle-fill {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 100%;
    background-color: var(--white);
    will-change: transform;
    transform: scale(0);
    z-index: 1;
    transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1), background-color 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle-icon {
    transform: translate(-100%, 0%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 2;
    transition: all 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle-icon .icon-arrow {
    width: 20px;
    height: 20px;
    stroke: none;
    fill: #000;
}

.creative-btn--circle .circle-outline {
    fill: transparent;
    width: 10px;
    stroke: var(--white);
}

.creative-btn--wrap .creative-slide--btn .creative-btn--label {
    margin-left: 4pt;
    transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--wrap .creative-slide--btn .creative-btn__border {
    position: absolute;
    left: 4pt;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform-origin: right;
    transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--wrap .creative-slide--btn:hover .creative-btn--label {
    transform: translateX(18px);
}

.creative-btn--wrap .creative-slide--btn:hover .creative-btn__border {
    transform: scale(0, 1);
}

.creative-btn--wrap .creative-slide--btn:hover {
    margin-left: 38px !important;
}

.creative-btn--wrap .creative-slide--btn:hover .circle {
    clip-path: circle(50% at 50% 50%);
}

.creative-btn--wrap .creative-slide--btn:hover .circle-fill {
    transform: scale(1, 1);
}

.creative-btn--wrap .creative-slide--btn:hover .circle-icon {
    transform: translate(0%, 0%);
    opacity: 1;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-next,
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    bottom: 11%;
    top: unset;
    transform: scale(1);
    transition: all 0.4s;
    background-color: var(--white)00;
    backdrop-filter: blur(20px);
    height: 75px;
    width: 75px;
    line-height: 75px;
    border-radius: 50%;
    transition: all 0.4s;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-next {
    right: 0;
    right: -88px;
    margin: 0 auto;
    left: 0;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    left: -115px;
    right: 0;
    margin: 0 auto;
}

.swiper-container-h .slider-pagination-area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: unset;
    right: unset;
    bottom: 80px;
    left: 50% !important;
    transform: translateX(-50%);
    width: 500px;
    z-index: 1;
}

.swiper-container-h .slider-pagination-area .slide-range {
    font-size: 16px;
    font-weight: 500;
    margin: 0 15px;
    color: var(--white);
    line-height: 0;
    position: absolute;
    font-size: 20px;
    display: none;
}

.swiper-container-h .slider-pagination-area .slide-range.one {
    left: -50px;
}

.swiper-container-h .slider-pagination-area .slide-range.three {
    right: -50px;
}

.swiper-container-h .slider-pagination-area .swiper-pagination {
    bottom: 0 !important;
    width: 500px !important;
    display: none;
}

.swiper-container-h .slider-pagination-area .swiper-pagination .swiper-pagination-progressbar-fill {
    background: var(--white);
}


.swiper-container-h .swiper-button-next::after {
    content: "\f061";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    background: none;
    color: var(--white);
    font-size: 30px;
}
.contact-us-section .text {
  color: #000!important;
}
.swiper-container-h .swiper-button-prev::after {
    content: "\f060";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    background: none;
    color: var(--white);
    font-size: 30px;
}

.swiper-container-h .swiper-button-next:hover,
.swiper-container-h .swiper-button-prev:hover {
    background: var(--white)0D;
}

/* about us section */
.about-us-section {
    padding-bottom: 140px;
}

.about-us-section .about-row {
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: relative;
}

.about-us-section .about-row .about-section-img {
    flex: 1;
    width: 710px;
    height: auto;
}

.about-us-section .about-row .about-section-img img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.about-us-section .about-row .about-content-box .about-text {
    border: 1px solid var(--light-white);
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    max-width: 617px;
    padding: 50px 60px;
    display: flex;
    position: absolute;
    bottom: -56px;
    right: 77px;
    box-shadow: var(--shadow);
    border-radius: 10px;
}

.about-us-section .about-row .about-content-box .about-text p {
    font-size: 16px;
    text-align: justify;
    margin-bottom: 10px;
    font-weight: 400;
}

.about-us-section .about-row .about-content-box .about-text h5 {
    margin-bottom: 14px;
}

.about-us-section .about-row .common-primary-btn {
    height: 48px;
    max-width: 160px;
    min-width: 160px;
}


/* sell-new */

.sell-diamond-modern {
    background: var(--section-bg);
    padding: 80px 0;
    margin-top: 0;
    background: url(../assets/image/banner-13.png);
    background-repeat: no-repeat;
    background-size: cover;
    animation: rotateBg 10s linear infinite;
    position: relative;
}

@keyframes rotateBg {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 100%;
    }
}

.sell-diamond-modern .headline {
    font-size: 32px;
    font-weight: 400;
    color: var(--light-white);
    margin-bottom: 10px;
}

.sell-diamond-modern .gold-text {
    font-size: 70px;
    font-weight: 900;
    text-transform: uppercase;
    /* background: linear-gradient(90deg, #FFD700, #C4912F); */
    background: var(--medium-black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 30px 0;
}

.sell-diamond-modern .gold-img img {
    max-width: 20%;
    margin: 30px auto;
    display: block;
    border-radius: 50%;
    /* background: radial-gradient(circle at center, #002e55, #00000030 70%); */
    background: #7570709c;
    /* background: #0a0a0a40; */
    padding: 20px;
    border: 1px solid #00000040;
}

.sell-diamond-modern .stats {
    margin-top: 40px;
}

.customer-card {
    transition: transform 0.3s ease;
}

.customer-card:hover {
    transform: translateY(-8px);
}

.sell-diamond-modern .stat-box {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 0 15px var(--gold-color);


}

.sell-diamond-modern .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 5px;
}

.sell-diamond-modern .stat-label {
    font-size: 16px;
    font-weight: 400;
    color: var(--light-black);
}

/* .sell-diamond-modern {
      background-color: var(--light-black);
      margin-top: 80px;
      padding: 80px 0;
    } */

.sell-diamond-modern h4.common-title {
    position: relative;
    color: var(--gold-color);
}



.sell-diamond-modern .stat-box-shadow {
    height: 88px;
    max-width: 92px;
    padding: 15px;
    border-radius: 75px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -35px;
    animation: Address-icon-animation 2s infinite;
    text-align: center;
    padding: 0;
    margin-bottom: -38px;
    background-color: var(--gold-color);
    text-align: center;
}

.sell-diamond-modern .stat-box-shadow {
    box-shadow: 0 0 15px var(--gold-color);
}

.sell-diamond-modern .stat-box-shadow img {
    width: 30px;
    transform: translateY(13px);
    /* position: absolute;
        top: 14px;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto; */
}

@-webkit-keyframes Address-icon-animation-two {
    0% {
        -webkit-box-shadow: linear-gradient(180deg, rgba(73, 101, 204, 1) 0%, rgb(22 32 70) 100%);
    }

    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(215, 36, 25, 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0)
    }
}

@keyframes Address-icon-animation-two {
    0% {
        -moz-box-shadow: linear-gradient(180deg, rgba(73, 101, 204, 1) 0%, rgb(22 32 70) 100%);
        ;
        box-shadow: linear-gradient(180deg, rgba(73, 101, 204, 1) 0%, rgb(22 32 70) 100%);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(215, 36, 25, 0);
        box-shadow: 0 0 0 20px rgba(215, 36, 25, 0)
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0)
    }
}

/* location animation */
@-webkit-keyframes Address-icon-animation {
    0% {
        -webkit-box-shadow: linear-gradient(90deg, rgba(0, 255, 169, 1) 0%, rgba(13, 77, 255, 1) 100%);
    }

    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(215, 36, 25, 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0)
    }
}

@keyframes Address-icon-animation {
    0% {
        -moz-box-shadow: linear-gradient(90deg, rgba(0, 255, 169, 1) 0%, rgba(13, 77, 255, 1) 100%);
        ;
        box-shadow: linear-gradient(90deg, rgba(0, 255, 169, 1) 0%, rgba(13, 77, 255, 1) 100%);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(215, 36, 25, 0);
        box-shadow: 0 0 0 20px rgba(215, 36, 25, 0)
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0)
    }
}

.sell-diamond-modern .sell-btn {
    margin-top: 20px;
}


/* services-section */
.services-section .service-title {
    text-align: center;
}

.services-section .service-title .common-main-title {
    font-size: 48px;
    font-family: "Gilda Display", serif;
    letter-spacing: 4px;
}

.services-section .services-box {
    text-align: center;
    padding: 40px 0px 60px 0px;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
    -webkit-box-shadow: 0px 14px 38px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 14px 38px 0px rgba(0, 0, 0, 0.11);
    perspective: 1000px;
    min-height: 400px;
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;

}

.services-section .services-box:hover {
    -webkit-box-shadow: 0px 14px 38px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 14px 38px 0px rgba(0, 0, 0, 0.11);
    cursor: pointer;
}

.services-section .services-box:hover .service-inner {

    position: relative;
    width: 100%;
    height: 100%;
}




.services-section .services-box .service-icon {
    width: 80px;
    height: auto;
    margin: 0 auto;
}

.services-section .services-box .service-icon img {
    width: 100%;
    height: 100%;
}

.services-section .services-box h4 {
    color: var(--gold-color);
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    margin-top: 20px;
}

.services-section .services-box p {
    color: var(--footer-bg);
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    padding-top: 20px;
    max-width: 290px;
    margin: auto;
    min-height: 150px;
}

.services-section .services-box .service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    /* position: absolute; */
    /* left: 0; */
    /* right: 0; */
    /* bottom: 0; */
    position: relative;
    bottom: -80px;
}

.services-section .services-box .service-btn .common-primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    max-width: 200px;
    font-size: 16px;

}

/* service slider */
.shadow-effect {
    background: var(--white);
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ECECEC;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
}

#customers-service .owl-stage {
    margin-bottom: 40px;
}

#customers-service .shadow-effect p {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
}

#customers-service .item {
    text-align: center;
    padding: 40px;
    opacity: .2;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#customers-service .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}

#customers-service.owl-carousel .owl-dots .owl-dot.active span,
#customers-service.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--gold-color);
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-service.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#customers-service.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

#customers-service.owl-carousel .owl-dots .owl-dot span {
    background: var(--gold-color);
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}

/* what we buy */
/* =============================
       Base Styles
    ============================= */
.what-we-buy {
    padding: 80px 0;
    z-index: 99;
    position: relative;
}

.what-we-buy .what-we-buy-title {
    text-align: center;
}

.what-we-buy .what-we-buy-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.what-we-buy .what-we-buy-hero .what-we-buy-subtitle {
    color: #B4B4B4;
    text-align: center;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.what-we-buy .what-we-buy-hero .what-we-buy-title {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: linear-gradient(149deg, #FFE7B9 -8.31%, #CAA969 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.what-we-buy .what-we-buy-hero .what-we-buy-blurb {
    margin-top: 20px;
    color: #B4B4B4;
    text-align: center;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.what-we-buy .what-we-do-buy-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.what-we-buy .what-we-do-buy-cards .what-we-do-buy-cards-title-wrapper {
    width: 1113px;
}



.what-we-buy .what-we-do-buy-cards-title-wrapper {
    display: flex;
    position: relative;
    justify-content: center;
    margin-top: 30px;
}


.we-buy-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.we-buy-heading h2 {
    position: relative;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-left: 20px;
    padding-right: 20px;
    color: var(--black);
    z-index: 2;
    font-family: "Gilda Display", serif;
}

.what-we-buy-title .common-main-title {
    color: var(--black);
}

.we-buy-heading .line {
    flex: 1;
    height: 1px;
    background: var(--gold-color);
    position: relative;
}

.we-buy-heading .line.left::after {
    content: "";
    position: absolute;
    top: 100%;
    margin-left: -5px;
    border-left: 1px solid var(--gold-color);
    height: 69px;
    left: 5px;
}

.we-buy-heading .line.left::before {
    content: "";
    position: absolute;
    transform: rotate(135deg);
    height: 4px;
    width: 4px;
    bottom: 0;
    right: -2px;
    border: 1px solid var(--gold-color);
    border-bottom: none;
    border-left: none;
}

.we-buy-heading .line.left::before {
    content: "";
    position: absolute;
    transform: rotate(135deg);
    height: 6px;
    width: 6px;
    left: -2px;
    border: 1px solid var(--gold-color);
    border-bottom: none;
    border-left: none;
    top: 64px;
}

.we-buy-heading .line.right::after {
    content: "";
    position: absolute;
    transform: rotate(135deg);
    height: 6px;
    width: 6px;
    top: 63px;
    right: -3px;
    border: 1px solid var(--gold-color);
    border-bottom: none;
    border-left: none;
}

.we-buy-heading .line.right::before {
    content: "";
    position: absolute;
    top: 100%;
    margin-left: -5px;
    border-left: 1px solid var(--gold-color);
    height: 69px;
    right: 0;
}

.what-we-buy .what-we-do-buy-cards-row {
    width: 100%;
    position: relative;
    margin-top: 80px;
    justify-content: space-between;
    display: flex;
}

.what-we-buy .what-we-buy-card {
    width: 200px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 20px 14px;
    transition: transform 0.3s ease;
    background: var(--white);
}

.what-we-buy .what-we-buy-card:hover {
    transform: translateY(-10px);
}

.what-we-buy .what-we-buy-card .what-we-buy-card-icon {
    margin-bottom: 35px;
}

.what-we-buy .what-we-buy-card .what-we-buy-card-icon img {
    height: 50px;
    width: 50px;
}

.what-we-buy .what-we-buy-card .what-we-buy-card-title {
    text-align: center;
    position: relative;
    padding-top: 20px;

    overflow: hidden;
    width: 100%;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.69px;
    /* background: linear-gradient(149deg, #FFE7B9 -8.31%, #CAA969 50%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; */
    color: var(--black);
}

.what-we-buy .what-we-buy-card .what-we-buy-card-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--white) 0%, #CAA969 50%, var(--white) 100%);
}

.what-we-buy .what-we-buy-card .what-we-buy-card-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background: radial-gradient(40.85% 40.85% at 50% 50%, #D0B462 0%, rgba(208, 180, 98, 0) 100%);
    filter: blur(35px);
}

.what-we-buy .what-we-buy-card .what-we-buy-card-title p {
    font-size: 14px;
}

/* video_Section */
.video_section {
    padding: 100px 0;
    text-align: center;
}

.modal-header {
    border: none;
    padding: 10px;
}

.modal-content {
    background: transparent;
    border: none;
}

.modal-body {
    padding: 0;
    display: flex;
    justify-content: center;
}

video {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    outline: none;
}

.close {
    color: #fff;
    font-size: 30px;
    opacity: 1;
}

.video_section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    background: url('../assets/image/blog-1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    animation: rotateBg 20s linear infinite;

}

@keyframes rotateBg {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 100%;
    }
}

@keyframes zoomBg {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

.video_section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: #000000e8;
    opacity: 0.5;
    z-index: 999;

}

.video_section_content {
    /* display: flex; */
    /* flex-direction: column; */
    /* flex-grow: 1; */
}

.video_section .video-section-container .content {
    text-align: center;
    max-width: 100%;
    z-index: 1000;
    flex-direction: column;
    gap: 140px;
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 20%;
    bottom: 0;
}

.video_section .vidio-section-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.video_section .common-main-title {
    color: var(--white);
    letter-spacing: 5px;


}

.video_section .common-sub-title {
    color: var(--dark-gold);
}

.video_section .play-btn {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-color);
    border-radius: 50%;
    box-shadow: var(--shadow);
    border: 2px solid var(--white);
    margin: 0 auto;
    color: var(--white);
}

.video_section .play-btn i {
    font-size: 20px;
}

.video_section .star-rating i {
    color: var(--dark-gold);
}



/* video section end */
/* people-choose-us-section */
.people-choose-us-section {
    padding: 50px 0;
    width: 100%;
}

.people-choose-us-section .people-choose-us-title {
    text-align: center;
}

/* .people-choose-us-section .container .box::after {
        content: "SHOES";
        position: absolute;
        bottom: 20px;
        right: 20px;
        font-size: 4.5em;
        font-weight: 900;
        color: var(--card-bg-text);
        font-style: italic;
        opacity: 0;
        transition: 0.5s;
    } */
.people-choose-us-section .pepole-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: left;
    word-wrap: break-word;
    margin-top: 20px;
    padding:0 30px 0 40px;

}

.people-choose-us-section .pepole-card li {
    color: var(--footer-bg);
    font-size: 15px;width: 100%;list-style-type: disc;
    font-weight: 400
}

.people-choose-us-section .people-choose-us-title {
    text-align: center;
    margin-bottom: 80px;
}

.people-choose-us-title .common-main-title {
    color: var(--white);
}

.people-choose-us-section .container .box {
    border: 1px solid var(--gold-color);
    box-shadow: 3px 4px 20px #afafaf6f;
    background: var(--white);
}

.people-choose-us-section .container .box:hover::after,
.people-choose-us-section .container .box:hover::before {
    opacity: 0.04;
}

/* .people-choose-us-section .container .box .name {
    position: absolute;
    top: 80px;
    left: 0;
    text-align: center;
    width: 100%;
    width: 100%;
    font-size: 22px;
    color: var(--black);
} */
.people-choose-us-section .container .box .name {
    text-align: left;
    width: 100%;
    font-size: 20px;
    color: var(--black);
    margin-top: 100px;
    padding: 0 20px;
}

/* 
    .people-choose-us-section .container .box:hover .name {
        top: 40px;
        opacity: 1;
    } */

.people-choose-us-section .container .box .buy {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform-style: preserve-3d;
    transform: translate3d(0, 0, 75px);
    color: var(--white);
    background: #333;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.5s;
    opacity: 0;
    z-index: 10;
}

.people-choose-us-section .container .box:hover .buy {
    bottom: 30px;
    opacity: 1;
}

.people-choose-us-section .container .box .circle {
    position: absolute;
    top: 2%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transition: 0.5s;
    background: var(--white);
    transform-style: preserve-3d;
    z-index: 10;
    opacity: 1;
    transform: translate3d(-50%, -50%, 0px);
}

.people-choose-us-section .container .box:hover .circle {
    transform: translate3d(-50%, -50%, 35px);
}

/* .people-choose-us-section .container .box::before {
        content: "NIKE";
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 6em;
        font-weight: 900;
        color: var(--card-bg-text);
        font-style: italic;
        opacity: 0;
        transition: 0.5s;
    } */

/* .people-choose-us-section .container .box {
    position: relative;
    height: 400px;
 
    border-radius: 20px;
    transform-style: preserve-3d;
} */
.people-choose-us-section .container .box {
    border-radius: 20px;
    transform-style: preserve-3d;
    min-height: 520px;
    max-height: 600px;
    position: relative;
}

.people-choose-us-section .container .box .product {
    position: absolute;

    max-width: 280px;
    transition: 0.5s;
    z-index: 11;
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 251px;
    transition: 0.5s;
    z-index: 11;
    width: 50px;
    /* transform-style: preserve-3d;
      transform: translate3d(-50%, -50%, 0px) rotate(-15deg); */
}

.people-choose-us-section .container .box:hover .product {
    transform: translate3d(-50%, -50%, 100px) rotate(-15deg);
}

.people-choose-us-section .container .box:nth-child(1) .circle,
.people-choose-us-section .container .box:nth-child(1) .buy {
    background: var(--white);
    box-shadow: var(--shadow);
}

.people-choose-us-section container .box:nth-child(2) .circle,
.people-choose-us-section .container .box:nth-child(2) .buy {
    background: #1da3c3;
}

.people-choose-us-section .container .box:nth-child(3) .circle,
.people-choose-us-section .container .box:nth-child(3) .buy {
    background: #eb0e2f;
}

.people-choose-us-section .container .Green {
    transition: all 0.2s;
    /* box-shadow: 3px 4px 20px #adeb306f; */
    border: 1px solid var(--gold-color);
}

.people-choose-us-section .container .Blue {
    transition: all 0.2s;
    /* box-shadow: 3px 4px 20px #36cbe962; */
}

.people-choose-us-section .container .Red {
    transition: all 0.2s;
    /* box-shadow: 3px 4px 20px #eb0e2f5b; */
}

.people-choose-us-section .container .Green:hover {
    box-shadow: 3px 4px 20px var(--gold-color);
}

.people-choose-us-section .container .Blue:hover {
    box-shadow: 3px 4px 20px var(--gold-color);
}

.people-choose-us-section .container .Red:hover {
    box-shadow: 3px 4px 20px var(--gold-color);
}

/* how its work final */
.how-it-work-final-section {
    background: var(--section-bg);
    padding: 80px 0;

   /* background: url(../assets/image/how.png);*/
    background:#f2f2f2;
    background-repeat: no-repeat;
    background-size: cover;
    animation: rotateBg 20s linear infinite;
    position: relative;
}

.how-it-work-final-section:after {
    background: #00000047;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    top: 0;display:none;
}

.clr1 {color:#000!important}

.how-it-work-final-section .how-it-work-mainbox {
    position: relative;
    z-index: 1;
}

.how-it-work-final-section .how-its-info-title {
    text-align: center;
    margin-bottom: 40px;
}

.how-it-work-final-section .how-its-info-title .common-main-title {
    color: var(--white);
}

.how-it-work-final-section .how-its-info-title .common-sub-title {
    color: var(--white);
}

.how-it-work-final-section .how-it-services {
    box-shadow: var(--shadow);
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height:356px;
 
    padding: 25px 14px;
    border-radius: 10px;
}


.spanColor {color: var(--black);}

.how-it-work-final-section span.how-it-number {
    position: absolute;
    bottom: -14px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 15px;
    font-weight: 500;
    border: 1px solid vaR(--gold-color);
}

.button-1  {
  background-color: var(--gold-color)!important;
  border-color: var(--gold-color)!important;
}

.button-2 {
  background: #f8f5f0!important;
  border-color: #ab8a62!important;
}
.contact-us-section {
  background:#fff!important;
}
.contact-us-section::after {display:none!important}
.people-choose-us-title .common-main-title {
  color: var(--gold-color);
}

.button-1 span  { color:#fff!important; }
.butn-light a.button-1:hover span {
  color: #222!important;
}

.how-it-work-final-section .how-it-services img {
    width: 40px;
    height: 100%;
    margin-bottom: 18px;
    min-height: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


.what-we-buy .what-we-buy-card .what-we-buy-card-title .btnNew button {
  padding: 0 10px;
  font-size: 14px;
  height: 40px;
  line-height: 36px;
}

.how-it-work-final-section .how-it-services h6 {
    display: inline-block;
    font-size: 14px;
    line-height: normal;
    font-weight: 600;
    text-shadow: none;
    color: var(--black);
    margin-left: 12px;
    border-radius: 0 50px 50px 0;
    position: relative;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px 14px;
}

.how-it-work-final-section .how-it-services h6 span {
    box-shadow: 15px 15px 30px rgba(80, 80, 80, 0.2), 5px 0px 80px rgba(80, 80, 80, 0.15);
    padding: 10px 0;
    width: 36px;
    height: 36px;
    line-height: 20px;
    white-space: nowrap;
    position: absolute;
    top: 0px;
    left: -28px;
    border-radius: 50px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-work-final-section .how-it-services p {
    font-size: 14px;
    color: var(--black);
    font-weight: 400;
    margin: 14px 0 0;
    text-align: center;
   /* min-height: 260px;*/
}

.how-it-work-final-section .how-it-services .common-primary-btn {
    position: relative;
    max-width: 120px;
    min-width: 120px;
    height: 40px;
}

.how-it-work-final-section .col-lg-2.col-sm-12 {
    width: 20%;
}

/* how it works */

.how-it-work-section .how-it-work-title {
    text-align: center;

}

.how-it-work-section .how-it-work-title .common-main-title {
    letter-spacing: 4px;
}

.how-it-work-section .how-its-row {
    margin-bottom: 40px;
}

.how-it-work-section .step-card {
    background: var(--white);
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 550px;
}

.how-it-work-section .step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.how-it-work-section .step-card .step-card-content {
    padding: 50px 20px 30px 20px;
}

.how-it-work-section .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: absolute;
    top: 227px;
    left: 0;
    right: 0;
    box-shadow: var(--shadow);
    margin: 0 auto;
    z-index: 9;
}

.how-it-work-section .step-icon i {
    color: var(--gold-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-work-section .step-card h5 {
    display: inline-block;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    text-shadow: none;
    color: var(--black);
    margin-left: 25px;
    border-radius: 0 50px 50px 0;
    position: relative;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 11px 22px;
}

.how-it-work-section .step-card h5 span {
    box-shadow: 15px 15px 30px rgba(80, 80, 80, 0.2), 5px 0px 80px rgba(80, 80, 80, 0.15);
    padding: 10px 0;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 20px;
    white-space: nowrap;
    position: absolute;
    top: 0px;
    left: -27px;
    border-radius: 50px;
    background-color: var(--white);
}

.how-it-work-section .step-card p {
    font-size: 14px;
    font-weight: 400;
    padding-top: 20px;
    color: var(--black);
    min-height: 90px;
}

.how-it-work-section .step-card-img .step-image {
    margin-top: 0;
    border-radius: 12px 12px 0 0;
    width: 100%;
    height: 260px;
}

.how-it-work-section .step-card-img {
    position: relative;
}

.how-it-work-section .step-card-img:after {
    content: "";
    background: #00000014;
    position: absolute;
    height: 260px;
    width: 100%;
    left: 0;
    right: 0;
    border-radius: 12px 12px 0 0;
    margin: 0 auto;
}

.how-it-work-section .common-primary-btn {
    font-size: 16px;
    min-width: 120px;
    max-width: 120px;
    height: 42px;
    margin-top: 20px;
}

/* blog section */
.blog-slider {
    width: 100%;
    position: relative;
    max-width: 900px;
    margin: auto;
    background: var(--white);
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
    padding: 25px;
    border-radius: 25px;
    height: 400px;
    transition: all .3s;
}

.blog-slider__item {
    display: flex;
    align-items: center;
}

.blog-slider__item.swiper-slide-active .blog-slider__img img {
    opacity: 1;
    transition-delay: .3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>* {
    opacity: 1;
    transform: none;
}

.blog-slider__img {
    width: 300px;
    flex-shrink: 0;
    height: 300px;
    background-image: var(--gold-color);
    box-shadow: 4px 13px 30px 1px rgb(0 0 0 / 20%);
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;
    position: relative;
}

.blog-slider__img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(147deg, #ad9d93 0%, #ab8a62 74%);
    border-radius: 20px;
    opacity: 0.5;
}

.blog-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    border-radius: 20px;
    transition: all .3s;
}

.blog-slider__content {
    padding-right: 25px;
}

.blog-slider__content>* {
    opacity: 0;
    transform: translateY(25px);
    transition: all .4s;
}

.blog-slider__code {
    color: #7b7992;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}

.blog-slider__title {
    font-size: 24px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 20px;
}

.blog-slider__text {
    color: #4e4a67;
    margin-bottom: 30px;
    line-height: 1.5em;
}

.blog-slider__button {
    display: inline-flex;
    padding: 15px 35px;
    color: var(--white);
    box-shadow: var(--shadow);
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
    align-items: center;
}


/* blog section */
.blog-section {
    margin-top: 80px;
    padding: 80px 0;
    background: var(--section-bg);
}

.blog-section .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.blog-section .blog-title {
    text-align: center;
    margin-bottom: 40px;
}

.blog-section .blog-slider__pagination {
    position: absolute;
    z-index: 21;
    right: 20px;
    width: 11px !important;
    text-align: center;
    left: auto !important;
    top: 50%;
    bottom: auto !important;
    transform: translateY(-50%);
}

.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 8px 0;
}

.blog-slider__pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 10px;
    background: #062744;
    opacity: 0.2;
    transition: all .3s;
}

.blog-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold-color);
    height: 30px;
    box-shadow: 0px 0px 20px rgb(171 138 98 / 18%);
}

.faq-section {
    margin: 80px 0;
}

.faq-section .faq-title {
    text-align: center;
}

.faq-section .faq-title .common-sub-title {
    display: block;
}

.faq-section .card {
    margin-bottom: 10px;
    border-radius: 5px !important;
}

.faq-section .card .card-header {
    border-radius: 5px !important;
}

.faq-section .card .card-body {
    padding: 24px;
}

.faq-section .card .card-body p {
    font-size: 16px;
    color: var(--black);
    text-align: justify;
    font-weight: 400;
}

.faq-section .collapsible-link {
    width: 100%;
    position: relative;
    text-align: left;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    font-family: "Barlow", sans-serif;
    word-wrap: break-word;
    white-space: normal;
}

.faq-section .collapsible-link {
    text-decoration: none;
}

.faq-section .btn-link:focus {
    color: var(--gold-color);
}

.faq-section .collapsible-link::before {
    content: "\f107";
    position: absolute;
    top: 50%;
    right: 0.8rem;
    transform: translateY(-50%);
    display: block;
    font-family: "FontAwesome";
    font-size: 1.1rem;
}

.faq-section .collapsible-link[aria-expanded="true"]::before {
    content: "\f106";
}

/* Testimonial */
.testimonial-section {
    position: relative;
    padding-bottom: 80px;
    overflow: hidden;
    background: url('../assets/image/how-its-work.png');
    background-position: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    animation: rotateBg 20s linear infinite;
}

.testimonial-section .container {
    position: static;
    /* max-width: 1580px; */
    /* padding: 0px 30px; */
    margin: 0 auto;
}

.testimonial-section .common-main-title {
    margin-bottom: 0;
}

.testimonial-section .info-box .star-rating i {
    font-size: 15px;
}

.testimonial-section .star-rating i {
    font-size: 12px;
    color: #e4a853;
}

.testimonial-section .testimonial-title {
    text-align: center;
}

.testimonial-section .testimonial-title .google-review {
    background: #fff;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9;

}

.testimonial-section .testimonial-title .google-review img {
    width: 24px;
}

.testimonial-section:before {
    position: absolute;
    left: -240px;
    top: 16%;
    background-image: url(http://t.commonsupport.com/adro/images/icons/ring-circle.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 701px;
    height: 756px;
    content: "";
    -webkit-animation: fa-spin 25s infinite alternate;
    -moz-animation: fa-spin 25s infinite alternate;
    -ms-animation: fa-spin 25s infinite alternate;
    -o-animation: fa-spin 25s infinite alternate;
    animation: fa-spin 25s infinite alternate;
}

.testimonial-section .common-sub-title {
    margin-bottom: 14px;
    display: block;
    color: var(--white);

}

/* .testimonial-section .common-main-title {
    font-size: 48px;
} */

.testimonial-section .testimonial-carousel {
    position: relative;
    /* max-width: 1100px;
        margin: 0 -50px; */
}

.testimonial-block {
    position: relative;
    padding: 50px;
}

.testimonial-block .inner-box {
    padding: 80px 105px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(226, 222, 232, 0.75);
}

.testimonial-block .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 32px;
    color: var(--light-black);
    font-weight: 400;
    margin-bottom: 50px;
}

.testimonial-block .info-box {
    position: relative;
    padding-left: 115px;
    padding-top: 10px;
}

.testimonial-block .info-box .thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 100px;
    width: 100px;
}

.testimonial-block .google-review {
    background: var(--white);
    box-shadow: var(--shadow);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 23px
}

.testimonial-block .google-review img {
    width: 20px;

}

.testimonial-block .info-box .thumb img {
    border: 6px solid #ab8a625e;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 45px 45px rgba(147, 147, 147, 0.35);
}

.testimonial-block .info-box .name {
    position: relative;
    display: block;
    font-size: 21px;
    text-transform: uppercase;
    line-height: 1.2em;
    color: var(--footer-bg);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Barlow", sans-serif;
}

.testimonial-block .info-box .designation {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: var(--gold-color);
    font-weight: 400;
    font-family: "Muli", sans-serif;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    right: 75px;
    bottom: 70px;
}

.testimonial-carousel .owl-next,
.testimonial-carousel .owl-prev {
    position: relative;
    display: inline-block;
    height: 75px;
    width: 75px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    transition: all 300ms ease;
}

.testimonial-carousel .owl-next:hover,
.testimonial-carousel .owl-prev:hover {
    background-color: #00df97;
    box-shadow: 0 24px 24px rgba(187, 187, 187, 0.75);
}

.arrow-right,
.arrow-left {
    position: relative;
    display: inline-block;
    height: 9px;
    width: 43px;
    background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-left-2.png);
    background-repeat: no-repeat;
    background-position: center;
}

.arrow-right {
    background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-right-2.png);
}

.testimonial-section .thumb-layer {
    position: absolute;
    right: 30px;
    top: 120px;
}

.testimonial-section .thumb-layer .image {
    position: relative;
    margin-right: 0;
}

.testimonial-section .thumb-layer .image img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.testimonial-section .owl-theme .owl-dots .owl-dot.active span {
    background: var(--gold-color);
}

.testimonial-section .owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--gold-color);
    color: var(--white);
}

/*-----Testimonial-------*/
/* ------testimonial  close-------*/

.toll-free-button {
    position: fixed;
    z-index: 9;
    top: 185px;
    right: 20px;
    background-color: var(--gold-color);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.toll-free-button:hover {
    background-color: var(--black);
    color: var(--white);
}

.toll-free-button {
    font-size: 16px;
    line-height: 1;
}

/* service section */
/* services-section */
.banner-service-section {
    background-color: var(--section-bg);
    padding: 24px 0;
}

.banner-service-section .services-card {
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    gap: 18px;
    justify-content: flex-start;
    padding-right: 60px;
}

.banner-service-section .services-card img {
    max-width: 35px;
    height: auto;
    width: 100%;
}

.banner-service-section .services-card .service-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    color: var(--black);
}

.banner-service-section .services-card:after {
    position: absolute;
    content: '';
    border-right: 1px solid var(--gold-color);
    height: 61px;
    right: 40px;
    top: 0;
}

.banner-service-section .col-md-3.col-6:last-child .services-card:after {
    content: none;
}

.banner-service-section .services-card .service-content h6 {
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
}

.banner-service-section .services-card .service-content p {
    font-size: 12px;
    font-weight: 400;
}

/* inspire-section */
.inspire-section {}

.inspire-section h4.common-title {
    position: relative;
}

.inspire-section .sub-title {
    font-size: 24px;
    color: var(--light-black);
    font-weight: 700;
    text-transform: uppercase;
}

.inspire-section .our_legacy-section {
    text-align: center;
}

.inspire-section .our_legacy-section .section-heading {
    font-size: 36px;
    font-weight: 500;
    padding-left: 15px;
    padding-right: 15px;
}

.inspire-section .section-heading h2 {
    color: var(--white);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 65px;
    font-style: normal;
    font-weight: 500;
    line-height: 80px;
    max-width: 695px;
    margin: auto;
    width: 100%;
}

.inspire-section .our_legacy-section h3 {
    font-size: 230.45px;
    margin-top: 47px;
    margin-bottom: -99px;
    font-family: var(--font-Montserrat);
    letter-spacing: 0.66px;
    color: var(--light-black);
    font-weight: bold;
    line-height: 183.1px;
    background: linear-gradient(333deg, var(--light-black) -88.71%, var(--gold-color) 20%, var(--light-gray) 40%, rgba(255, 255, 255, 0) 85.84%);
    background-size: 100% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-transform: uppercase;
    animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.inspire-section .alternative-img {
    height: 373px;
    opacity: 0.6;
    object-fit: cover;
    cursor: pointer;
    filter: drop-shadow(-10px 10px 24px rgba(0, 0, 0, 0.25));
    transition: all 0.3s ease 0s;
}

.inspire-section .alternative-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.inspire-section .common-inspire-img {
    height: 454px;
    object-fit: cover;
    width: 100%;
    filter: grayscale(1);
}

.inspire-section .common-inspire-img:hover {
    filter: grayscale(0);
}

.inspire-section .discovermore-link {
    position: absolute;
    overflow: hidden;
    bottom: 30px;
    left: 45px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    flex-direction: column;
}

.inspire-section .discovermore-link a {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease 0s;
}

.inspire-section .discovermore-link img {
    height: auto;
    width: auto;
    margin-left: -35px;
}

.inspire-section .col-md.d-flex.align-items-center {
    position: relative;
}

.inspire-section .col-md.d-flex.align-items-center:hover .discovermore-link img {
    margin-left: 0px;
}

.inspire-section {
    max-width: 1920px;
    margin: auto;
    margin-top: 80px;
}

.ml-n195 {
    margin-left: 0px;
}

.mr-n195 {
    margin-right: 0px;
}

.inspire-section>div {
    overflow: hidden;
}


.inspire-section .crew-carousel {
    width: 100%;
    height: 450px;
    position: relative;
    perspective: 1000px;
    margin-top: 40px;
}

.inspire-section .crew-track {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.inspire-section .crew-card {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.8s ease;
  cursor: pointer;
  border: solid 1px #eee;
}


 
#happyCustomer.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;

  background: var(--secondary-color);
  cursor: pointer;
  border: none;

}



#happyCustomer.owl-theme .owl-dots .owl-dot.active span, #happyCustomer.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
  background: var(--gold-color);
  border: 1px solid #aa8453;
}


 

.inspire-section .crew-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inspire-section .crew-card.center {
    z-index: 10;
    transform: scale(1.1);
}

.inspire-section .crew-card.left-1 {
    transform: translateX(-260px) scale(0.9);
    opacity: 0.8;
    filter: grayscale(80%);
}

.inspire-section .crew-card.left-2 {
    transform: translateX(-450px) scale(0.8);
    opacity: 0.6;
    filter: grayscale(100%);
}

.inspire-section .crew-card.right-1 {
    transform: translateX(260px) scale(0.9);
    opacity: 0.8;
    filter: grayscale(80%);
}

.inspire-section .crew-card.right-2 {
    transform: translateX(450px) scale(0.8);
    opacity: 0.6;
    filter: grayscale(100%);
}

.inspire-section .crew-card.hidden {
    opacity: 0;
    pointer-events: none;
}

.inspire-section .crew-info {
    text-align: center;
    margin-top: 40px;
}

.inspire-section .buy-now-btn {
    margin-top: 20px;
}

.inspire-section .buy-now-btn .common-primary-btn:hover {
    color: var(--gold-color);
}

.inspire-section .crew-name {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.16px;
    margin-bottom: 10px;
    color: var(--light-black);
    /* deep orange */
    font-family: 'Gilda Display', serif;
}

.inspire-section .crew-role {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--light-black);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.inspire-section .crew-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.inspire-section .crew-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-color);
    /* orange tint */
    cursor: pointer;
}

.inspire-section .crew-dot.active {
    background: var(--gold-color);
}

.inspire-section .crew-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold-color);
    /* orange base */
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.inspire-section .crew-arrow:hover {
    background: var(--gold-color);
    /* deeper orange hover */
}

.inspire-section .crew-left {
    left: 20px;
    display: none;
}

.inspire-section .crew-right {
    right: 20px;
    display: none;
}



@media (max-width:1440px) {
    .hero-slide {
        height: 50vh;
    }

    .services-section .services-box {
        padding: 20px;
    }

    .video_section .content {
        position: absolute;
        z-index: 1000;
    }

    .video_section .section_ttl {
        font-size: 60px;
    }
}

@media (max-width:1400px) {
    .large-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .what-we-buy .what-we-buy-card {
        width: 170px;
    }

    .inspire-section .alternative-img {
        height: 350px;
    }
}

@media (max-width:1280px) {

    #customers-service .item {
        padding: 10px;
    }

    .hero-slide h1 {
        font-size: 38px;
    }

    .creative-fullpage--slider .banner-box {
        width: 1000px;
    }

    .what-we-buy .what-we-do-buy-cards .what-we-do-buy-cards-title-wrapper {
        width: 1050px;
    }
}

@media (max-width:1199px) {
    .banner-service-section .services-card .service-content p {
        font-size: 12px;
        min-height: 50px;
    }

    .banner-service-section .services-card {
        gap: 15px;
        padding-right: 50px;
    }

    .banner-service-section .services-card .service-content h6 {
        font-size: 16px;
    }

    .banner-service-section .services-card img {
        width: 28px;
    }

    .desktop-view-contact {
        display: none;
    }

    .mobile-view-contact {
        display: block;
    }

    .what-we-buy .what-we-buy-card {
        width: 138px;
        min-height: 360px;
    }

    .what-we-buy .what-we-do-buy-cards .what-we-do-buy-cards-title-wrapper {
        width: 900px;
    }

    .what-we-buy .what-we-buy-card .what-we-buy-card-icon img {
        height: 40px;
        width: 40px;
    }



    .how-it-work-final-section .how-it-services p {
        font-size: 12px;
        min-height: 244px;
    }

    .how-it-work-final-section .col-lg-2.col-sm-12 {
        width: 19.5%;
    }

    .how-it-work-final-section .how-it-services h6 {
        padding: 10px;
        margin-left: 16px;
    }

    .people-choose-us-section .pepole-card li {
        font-size: 14px;
    }

    .people-choose-us-section .container .box .name {
        font-size: 18px;
        margin-top: 70px;
    }

    .people-choose-us-section .container .box .circle {
        width: 70px;
        height: 70px;
    }

    .people-choose-us-section .container .box .product {
        top: -8px;
        width: 37px;
    }

    .people-choose-us-section .container .box {
        min-height: 560px;
    }

    .sell-diamond-modern .stat-number {
        font-size: 24px;
    }
}

@media (max-width:1024px) {

    .creative-fullpage--slider .banner-box {
        width: 950px;
    }

    .hero-slide h1 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .about-us-section .about-row .about-section-img {
        flex: 1;
        width: 711px;
    }

    .about-us-section {
        padding-bottom: 100px;
    }

    .about-us-section .about-row .about-content-box .about-text {
        bottom: -31px;
        max-width: 607px;
        padding: 40px 50px;
    }

    .sell-diamond-modern .gold-text {
        font-size: 40px;
    }

    .sell-diamond-modern {
        margin-top: 50px;
    }



    .sell-diamond-modern .gold-text {
        font-size: 40px;
    }

    .sell-diamond-modern .stat-number {
        font-size: 24px;
    }

    .faq-section {
        margin: 50px 0;
    }

    .faq-section .card .card-body p {
        font-size: 14px;
    }

    .testimonial-section {
        padding-bottom: 50px;
    }

    .inspire-section {
        margin-top: 50px;
    }


    .people-choose-us-section .container .box .circle {
        width: 80px;
        height: 80px;
    }

    .people-choose-us-section .container .box .product {
        width: 40px;
        top: -15px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .people-choose-us-section .pepole-card {
        left: 15%;
    }



    .people-choose-us-section .people-choose-us-title {
        margin-bottom: 50px;
    }

    .blog-slider {
        left: 4%;
        right: 0;
        margin: 0 auto;
        width: 800px;
    }

    .blog-section {
        margin-top: 50px;
        padding: 50px 0;
    }

    .blog-section .common-primary-btn {
        min-width: 170px;
        max-width: 170px;
    }

    .blog-slider__title {
        font-size: 22px;
    }

    .video_section .section_ttl {
        font-size: 50px;
    }

    .video_section {
        padding: 50px 0;
    }

    .video_section .play-btn {
        width: 60px;
        height: 60px;
    }

    .inspire-section .alternative-img {
        height: 240px;
    }

    .inspire-section .sub-title {
        font-size: 20px;
    }

    .inspire-section .our_legacy-section h3 {
        font-size: 140px;
        margin-top: 20px;
        margin-bottom: -55px;
    }

    .inspire-section .crew-card {
        width: 450px;
    }

    .inspire-section .crew-card.left-2,
    .inspire-section .crew-card.right-2 {
        display: none;
    }

    .how-it-work-final-section {
        padding: 50px 0;
    }

    .what-we-buy {
        padding: 50px 0;
    }

}

@media (max-width:992px) {
    .blog-slider {
        max-width: 680px;
        height: 400px;
    }

    .blog-slider__img {
        height: 270px;
    }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider {
        height: 350px;
    }

    .blog-slider {
        max-width: 680px;
        height: 400px;
    }

    .blog-slider__img {
        height: 270px;
    }
}

@media (max-width:991px) {
    .banner-service-section .services-card {
        gap: 10px;
        padding-right: 15px;
    }

    .banner-service-section .services-card .service-content h6 {
        font-size: 14px;
    }

    .banner-service-section .services-card {
        gap: 10px;
    }

    .banner-service-section .services-card:after {
        right: 26px;display:none;
    }
  .banner-service-section .services-card {
    gap: 9px!important;
  }
    .banner-service-section .services-card .service-content p {
        padding-right: 20px;
    }

    .banner-service-section .services-card img {
        width: 24px;
    }

    .creative-fullpage--slider .banner-box {
        max-width: 650px;
        min-width: 650px;
        text-align: center;
    }

    .creative-fullpage--slider .common-main-title {
        font-size: 28px;
    }

    .creative-fullpage--slider .swiper-container-h .swiper-button-next,
    .creative-fullpage--slider .swiper-container-h .swiper-button-prev {
        height: 50px;
        width: 50px;
        line-height: 50px;
    }

    .swiper-container-h .slider-pagination-area {
        width: 200px !important;
    }

    .swiper-container-h .swiper-button-next::after,
    .swiper-container-h .swiper-button-prev::after {
        font-size: 30px;
    }

    .creative-fullpage--slider .swiper-container-h .swiper-button-next,
    .creative-fullpage--slider .swiper-container-h .swiper-button-prev {
        background: var(--white)3b;
    }

    .swiper-container-h .slider-pagination-area .swiper-pagination {
        bottom: 0 !important;
        width: 200px !important;
    }

    .hero-slide h1 {
        font-size: 26px;
        margin-bottom: 30px;
        line-height: 35px;
    }

    .hero-slide .content {
        max-width: 680px;
    }

    .about-us-section {
        padding-bottom: 80px;
    }

    .about-us-section .about-row {
        flex-direction: column;
        box-shadow: var(--shadow);
        border-radius: 0 0 10px 10px;
    }

    .about-us-section .about-row .about-section-img {
        width: 100%;
    }

    .about-us-section .about-row .about-section-img img {
        width: 100%;
        border-radius: 10px 10px 0 0;
    }

    .about-us-section .about-row .about-content-box .about-text {
        position: unset;
        box-shadow: unset;
        width: 100%;
        max-width: 100%;
        border: 0;
        padding: 30px;
    }

    .sell-diamond-modern .diamond-img img {
        padding: 32px 40px;
        max-width: 26%;
    }

    .diamond-text {
        font-size: 50px;
    }


    .services-section .service-title .common-main-title {
        font-size: 28px;
    }

    .testimonial-section .common-main-title {
        font-size: 28px;
        margin-bottom: 0;
    }

    .testimonial-block .text p span {
        font-size: 12px;
        text-align: justify;
    }

    .testimonial-block .inner-box {
        padding: 50px;
        min-height: 500px;
    }

    .testimonial-block .info-box .thumb img {
        border: 3px solid #ab8a625e;
    }

    .testimonial-block .info-box .thumb {
        width: 70px;
        height: 70px;
    }

    .testimonial-block .info-box {
        padding-left: 89px;
        padding-top: 0;
    }

    .testimonial-block .info-box .name {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .testimonial-block {
        padding: 30px;
    }

    .testimonial-section .thumb-layer {
        right: -99px;
    }

    .people-choose-us-section .container .box {
        margin-bottom: 40px;
        min-height: 480px;
    }

    .people-choose-us-section .pepole-card {
        left: 0;
        align-items: center;
        right: 0;
        margin: 0 auto;
        padding-top: 30px;
    }

    .people-choose-us-section {
        padding: 20px 0;
    }

    .what-we-buy .what-we-do-buy-cards .what-we-do-buy-cards-title-wrapper {
        width: 665px;
    }

    .we-buy-heading .line {
        width: 260px;
    }

    .what-we-buy .what-we-buy-card {
        width: 280px;
        min-height: 220px;
    }

    .what-we-buy .what-we-do-buy-cards-row {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .what-we-buy .what-we-buy-card .what-we-buy-card-title {
        font-size: 14px;
        padding-top: 14px;
    }

    .what-we-buy .what-we-buy-card .what-we-buy-card-icon {
        margin-bottom: 20px;
    }

    .what-we-buy .what-we-buy-card .what-we-buy-card-icon img {
        width: 40px;
        height: 40px;
    }

    .we-buy-heading h2 {
        font-size: 22px;
    }

    .inspire-section .alternative-img {
        height: 250px;
    }

    .inspire-section .crew-card {
        width: 85%;
    }

    .inspire-section .crew-card.right-1,
    .inspire-section .crew-card.right-2,
    .inspire-section .crew-card.left-1,
    .inspire-section .crew-card.left-2 {
        display: none;
    }

    .how-it-work-final-section .col-lg-2.col-sm-12 {
        width: 50%;
    }

    .how-it-work-final-section .how-it-services p {
        min-height: 100px;
    }

    .how-it-work-final-section .how-it-services {
        max-height: 440px;
        min-height: 440px;
        margin-bottom: 40px;
    }

    .testimonial-block .google-review {
        bottom: 6px;
    }

    .blog-slider__title {
        font-size: 20px;
    }
}

@media (max-width:768px) {
    .banner-service-section .services-card {
        align-items: center;

    }
.banner-service-section .services-card .service-content p {
  white-space: inherit;
}
    .banner-service-section .services-card .service-content p {
        min-height: auto;
    }

    .banner-service-section .services-card {
        gap: 20px;
    }

    .banner-service-section .services-card img {
        gap: 26px;
    }

    .banner-service-section .services-card .service-content p {
        padding-right: 0;
    }

    .blog-slider {
        min-height: 500px;
        height: auto;
        margin: 120px auto;
        left: 0;
        right: 0;
        width: 800px
    }

    .blog-slider__item {
        flex-direction: column;
    }

    .blog-slider__img {
        transform: translateY(-50%);
        width: 90%;
        min-height: 350px;
    }

    .blog-slider__content {
        margin-top: -80px;
        text-align: center;
        padding: 0 30px;
    }

    .blog-section .common-primary-btn {
        min-width: 200px;
        max-width: 200px;
    }

    .blog-slider__title {
        margin-bottom: 14px;
    }

    .blog-slider__pagination {
        transform: translateX(-50%);
        left: 50% !important;
        top: 205px;
        width: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 5px;
    }

    .blog-slider__pagination .swiper-pagination-bullet-active {
        height: 11px;
        width: 30px;
    }

    .blog-section .blog-slider__pagination {
        width: 100% !important;

    }

    .toll-free-button {
        top: 258px;
    }
}

@media (max-width:767px) {

    .banner-service-section {
        padding: 20px 0;
    }

    .banner-service-section .services-card {
        padding: 0 15px;
    }

    .banner-service-section .services-card:after {
        display: none;
    }

    .creative-fullpage--slider .banner-box {
        max-width: 550px;
        min-width: 550px;
        top: -67px;
    }
.creative-fullpage--slider .common-main-title{
    font-size: 22px;
}
    .creative-fullpage--slider .video-play-button {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .creative-fullpage--slider .swiper-container-h .swiper-button-next,
    .creative-fullpage--slider .swiper-container-h .swiper-button-prev {
        bottom: 11%;
    }
.creative-fullpage--slider .video-play-button{
        bottom: 116px;
}
    .creative-fullpage--slider .swiper-container-h .swiper-button-prev {
        left: -10%;
    }

    .creative-fullpage--slider .slider-inner {
        min-height: 80vh;
    }


    .swiper-slide .slider-inner .swiper-content .title-area .title {
        font-size: 64px;
    }

    .swiper-slide .slider-inner .swiper-content .title-area .tag {
        margin-bottom: 0px;
    }

    .swiper-slide .slider-inner .swiper-content p.disc {
        margin: 20px auto 20px auto;
        font-size: 16px;
        width: 95%;
    }

    .swiper-container-h .slider-pagination-area {
        display: none;
    }

    .swiper-slide .slider-inner .swiper-content p.disc br {
        display: none;
    }

    .hero-section .common-primary-btn {
        min-width: 200px;
        font-size: 14px;
    }

    .hero-slide {
        height: 60vh;
    }

    .hero-slide .content {
        max-width: 400px;
        margin: 20px 20px;
        min-height: 360px;
    }

    .hero-slide h1 {
        font-size: 20px;
        margin-bottom: 16px;
        line-height: 34px;
    }

    .video-play-button {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .video-play-button span {
        border-left: 25px solid var(--white);
        border-top: 16px solid transparent;
        border-bottom: 16px solid transparent;
        top: 5px;
        left: 3px;

    }

    .video-play-button:after {
        width: 65px;
        height: 65px;
    }

    .how-it-work-section .col-lg-4.col-md-6.col-sm-12.how-its-row:last-child {
        margin-bottom: 0;
    }

    .how-it-work-section .step-card .step-card-content {
        padding: 50px 20px 30px 20px;
    }

    .how-it-work-section .step-card h5 {
        font-size: 14px;
    }

    .how-it-work-section .common-primary-btn {
        font-size: 14px;
    }

    .how-it-work-section .step-icon {
        width: 50px;
        height: 50px;
        top: 233px;
    }

    .how-it-work-section .step-icon i {
        font-size: 18px;
    }

    .how-it-work-final-section .how-it-services {
        max-height: 360px;
        min-height: 360px;
        margin-bottom: 40px;
    }

    .how-it-number i {
        transform: rotate(92deg);
    }

    .how-it-number i:last-child {
        transform: unset;
    }

    .about-us-section .about-row .about-content-box .about-text h5 {
        margin-bottom: 6px;
        font-size: 24px;
    }

    .about-us-section .about-row .about-content-box .about-text p {
        font-size: 14px;
    }

    .about-us-section {
        padding-bottom: 40px;
    }

    .sell-diamond-modern .sell-btn {
        margin-top: 0;
    }

    .sell-diamond-modern .diamond-img img {
        max-width: 29%;
        margin: 0 auto;
        padding: 24px 28px;
    }

    .sell-diamond-modern .stat-label {
        font-size: 14px;
    }

    .sell-diamond-modern .stat-box-shadow img {
        width: 25px;
    }

    .sell-diamond-modern {
        background-position: center;
    }

    .diamond-text {
        font-size: 32px;
    }

    .sell-diamond-modern .sell-btn {
        margin-top: 0;
    }

    .sell-diamond-modern .gold-img img {
        max-width: 52%;
    }

    .sell-diamond-modern .stat-label {
        font-size: 14px;
    }

    .sell-diamond-modern .stat-box-shadow img {
        width: 25px;
    }

    .sell-diamond-modern .gold-img img {
        margin: 0 auto;
    }

    .services-section .services-box p {
        font-size: 14px;
    }

    .services-section .services-box {
        padding: 20px;
    }

    .testimonial-block {
        padding: 0;
        min-height: 680px;
    }

    .faq-section {
        margin: 30px 0;
    }

    .faq-section .collapsible-link {
        padding-left: 10px;
        padding-right: 10px;
    }

    .faq-section .collapsible-link::before {
        right: -7px;
    }

    .testimonial-section .common-main-title {
        font-size: 24px;
    }

    .testimonial-block .inner-box {
        box-shadow: none;
        border: 2px solid #f1f1f1;
        margin-top: 40px;
        padding: 40px 20px;
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
    }

    .testimonial-carousel .owl-nav {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        text-align: center;
    }

    .testimonial-carousel .owl-next,
    .testimonial-carousel .owl-prev {
        border: 2px solid #f1f1f1;
    }

    .testimonial-section .thumb-layer {
        right: -164px;
    }

    .testimonial-section .testimonial-title {
        text-align: center;
    }

    .testimonial-section:before {
        top: 11%;
    }

    .people-choose-us-section .container .box {
        min-height: 450px;
    }

    .people-choose-us-section .container .box .product {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

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

    .people-choose-us-section .container .col-lg-3.col-md-6.col-sm-12:last-child .box {
        margin-bottom: 0;
    }

    .what-we-buy {
        padding: 30px 0;
    }

    .what-we-buy .what-we-do-buy-cards-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 60px;
    }

    .what-we-buy .what-we-buy-card {
        width:100%;
    }

    .what-we-buy .what-we-do-buy-cards .what-we-do-buy-cards-title-wrapper {
        width: 500px;
        margin-top: 14px;
    }

    .blog-slider {
        width: 100%;
        margin: 120px auto 20px;
    }

    .blog-section {
        margin-top: 30px
    }

    .inspire-section {
        margin-top: 30px;
    }

    .blog-slider__title {
        font-size: 20px;
    }

    .blog-slider__text {
        font-size: 14px;
    }


    .holderCircle {
        width: 360px;
        height: 360px;
    }

    .inspire-section .common-inspire-img {
        height: 350px;
    }

    .inspire-section .bought-title .common-main-title {
        margin-bottom: 0;
    }

    .inspire-section .crew-card {
        width: 89%;
    }

    .inspire-section .crew-carousel {
        margin-top: 0;
        min-height: 360px;
    }

    .inspire-section .our_legacy-section h3 {
        font-size: 128px;
    }

    .inspire-section .crew-name {
        font-size: 24px;
    }

    .inspire-section .crew-info {
        margin-top: 0;
    }

    .inspire-section .crew-dots {
        margin-top: 16px;
    }

    .how-it-work-final-section .col-lg-2.col-sm-12 {
        width: 100%;
    }

    .how-it-work-final-section .how-it-services h6 {
        padding: 10px 15px;
    }

    .how-it-work-final-section .how-it-services p {
        min-height: 80px;
    }

 

    .testimonial-block .google-review {
        bottom: 0;
        top: 90%;
        margin: 0 auto;
    }

    .testimonial-section .testimonial-title .google-review {
        width: 40px;
        height: 40px;
    }

    .testimonial-section .testimonial-title .google-review img {
        width: 20px;
    }

}

@media (max-width:575px) {
    /* .creative-fullpage--slider .swiper-container-h .swiper-button-prev {
            left: 34%;
        } */

    .creative-fullpage--slider .banner-box {
        max-width: 390px;
        min-width: 390px;
        width: 100%;
        left: 15px;
        right: 0;
        margin: 0 auto;
    }

    .creative-fullpage--slider .common-main-title {
        font-size: 16px;
    }

    .hero-slide {
        height: 70vh;
    }

    .about-us-section .about-row .common-primary-btn {
        height: 40px;
        max-width: 100px;
        min-width: 100px;
    }

    .sell-diamond-modern .diamond-img img {
        max-width: 45%;
        margin: 0 auto;
        padding: 18px 20px;
    }

    .testimonial-carousel .owl-next,
    .testimonial-carousel .owl-prev {
        height: 40px;
        width: 40px;
    }

    .video_section {
        min-height: 350px;
    }

}


@media (max-width:576px) {

    .blog-slider__img {
        width: 95%;
    }

    .blog-slider__content {
        padding: 0;
    }

    .blog-slider {
        min-height: 500px;
        height: auto;
        margin: 150px auto 10px;
        padding: 16px;
    }

    .blog-section .blog-slider__pagination {
        top: 44%;
    }

    .inspire-section .our_legacy-section h3 {
        font-size: 115px;
        margin-top: 0;
        margin-bottom: -109px;
        line-height: 143.1px;
    }

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

    .inspire-section .crew-card {
        width: 270px;
        height: 300px;
    }

    .faq-section .collapsible-link {
        font-size: 12px;
    }
        .creative-fullpage--slider .video-play-button {
        bottom: 102px;
    }
        .creative-fullpage--slider .banner-box {
top: -61px;
        }
          .creative-fullpage--slider .swiper-container-h .swiper-button-next,
    .creative-fullpage--slider .swiper-container-h .swiper-button-prev {
        bottom: 11%;
    }
}

@media (max-width:425px) {
    .video_section {
        padding: 30px 0 50px;
    }
	
	.button-1{
  width: 100%;
  margin: 0 0 14px!important;
}

	.button-2{
  width: 100%;
}



}

@media (max-width:480px) {
    .creative-fullpage--slider .banner-box {
        max-width: 270px;
        min-width: 270px;
        width: 100%;
        left: 8px;
    }

    .what-we-buy .what-we-do-buy-cards .what-we-do-buy-cards-title-wrapper {
        width: 365px;
    }
}

@media (max-width:375px) {
    .what-we-buy .what-we-do-buy-cards .what-we-do-buy-cards-title-wrapper {
        width: 300px;
    }

    .video_section {
        padding: 0 0 50px;
    }

}


.readyBg {
  background: url(http://www.webuydiamond.co.uk/img/slider/8.jpg) !important;
  background-repeat: no-repeat!important;
  background-size: cover!important;
}

.contact-us-section .info .information {
  background: var(--section-bg)!important;
}

.contact-us-section .info .information .common-main-title {
  color: #000 !important;
}

.contact-us-section .info .information.bottomBox p, .contact-us-section .info .information.bottomBox .contact-content span.contact-sub-title {
  color: #000!important;
}

.contact-us-section .info .information.bottomBox {min-height:150px!important;}



@media (max-width:990px) {
	
.banner-service-section {
  background-color: var(--section-bg);
  padding: 24px 0 10px;
}

  .banner-service-section .services-card {
    padding: 0;
  }


 #homeSlider-1 .col-md-12 {padding-right: 10px;
  padding-left: 10px;}	
	
}


@media (max-width:990px) {
.creative-fullpage--slider .slider-inner {
  background: #000;
  height: 54vh;
  position: relative;
}

.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
  padding: 0px 0 0 0;
}
 /*.creative-fullpage--slider .slider-inner {
    min-height: 57vh;
  }*/
  .creative-fullpage--slider .banner-box {
    max-width: 90%;
    min-width: 90%;
    width: 100%;
    left: 0;
  }
  
 .butn-light a  {
  width: 100%;
  margin: 0 0 10px;
  padding: 16px 10px;
}
.creative-fullpage--slider {
  height: auto;
}


}

@media (max-width:700px) {
  .what-we-buy .what-we-buy-card {
    min-height: inherit !important;
  }

.btnNew {
  display: inline-grid;
}


 .how-it-work-final-section .how-it-services {
    max-height: inherit;
    min-height: inherit;
    margin-bottom: 30px;
  }
  
 .marq-section .owl-item img {
  width: 100%;
  background: #fff;
  height: 110px;
  object-fit: contain;
  padding: 0;
}

 .how-it-work-final-section .how-it-services {
    height: 95%;
  }

 
  
}

.people-choose-us-title .common-main-title {
  color: #fff!important;
} 