* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color: #c367a7;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;

}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    overflow: hidden;
    position: relative;
}

.img:hover::after {
    transition: all 400ms linear;
    visibility: visible;
    animation: fadeInUp 1s;
}

.img:after {
    background: rgba(255, 255, 255, 0.369);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    z-index: 9;
}

@keyframes fadeInUp {
    from {
        opacity: 1;
        height: 0;
    }

    to {
        opacity: 0;
        height: 100%;
    }
}

@keyframes mymove {
    from {
        width: 0%;
    }

    to {
        width: 100%;
        opacity: 0;
    }
}

p {
    font-size: 15px;
    line-height: 28px;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

.my {
    margin: 70px 0;
}

.toggle {
    display: none;
}

.nav_close {
    display: none;
}

nav {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 99;
    padding: 0 4%;
}

.toggle .line {
    width: 33px;
    height: 4px;
    background-color: #000;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: ease-in-out .4s;
}

/* .toggle.toggle_active .line:nth-child(1){
    transform: rotate(45deg);
        margin-top: 8px;
}
.toggle.toggle_active .line:nth-child(2){
    display: none;
}
.toggle.toggle_active .line:nth-child(3){
        transform: rotate(-45deg);
            margin-top: -8px;
} */

#myHeader.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    animation: slideDown 1s ease-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    background-color: #fff;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#myHeader.sticky .logo img {
    width: 100px;
}

#myHeader.sticky .navbar_nav ul a {
    color: var(--bg_color);
}

#myHeader.sticky .contact a {
    color: var(--bg_color);
}

.logo img {
    width: 140px;
}

.logo {
    position: relative;
}

.nav_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar_nav .nab_flex {
    display: flex;
}

.navbar_nav ul li {
    position: relative;
    padding: 20px 20px;
}

.navbar_nav ul a {
    color: var(--black);
}

.navbar_nav ul li:hover>.dropdown {
    display: block;
    transition: ease-in-out .5s;
}

.dropdown {
    position: absolute;
    width: 250px;
    top: 100%;
    left: 0;
    background-color: var(--white);
    transition: ease-in-out .5s;
    display: none;
}


.navbar_nav ul .dropdown li {
    padding: 8px 20px;
}

.navbar_nav ul .dropdown li:hover {
    background-color: var(--bg_color);
}

.navbar_nav ul .dropdown li:hover a {
    color: var(--white);
}

#myHeader.sticky .navbar_nav .dropdown li:hover a {
    color: var(--white);
}

.dropdown .dropdown {
    left: 100%;
    top: 0;
}

.dropdown_btn {
    position: absolute;
    right: 0;
    top: 35%;
    color: var(--white);
    cursor: pointer;
}

.show_dropdown {
    display: block;
}

.search_btn {
    background-color: var(--bg_color);
    border-radius: 50%;
    padding: 0px 10px;
    cursor: pointer;
    color: var(--white);
}


.search {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #000000e2;
    padding: 6% 10% 0% 9%;
    transition: ease-in-out .5s;
    visibility: hidden;
    z-index: 999;
}

.show {
    top: 0%;
    visibility: visible;
}

.search input {
    width: 96%;
    border: none;
    outline: none;
    padding: 10px 15px;
}

.cancal {
    color: var(--white);
    position: absolute;
    right: 3%;
    top: 5%;
    font-size: 30px;
    cursor: pointer;
}

.banner_item img {
    width: 100%;
    height: 100%;
}

.banner_item {
    position: relative;
}

/* .banner_item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #0000007b;
} */

.nav_right {
    display: flex;
    align-items: center;
    gap: 0 20px;
}


.banner_contant {
    position: absolute;
    top: 30%;
    width: 100%;
    z-index: 9;
    width: 50%;
    left: 7%;
    color: var(--white);
}



.banner_tittle {
    font-size: 50px;
    font-weight: 600;
    color: var(--white);
    display: block;
    transition: ease-in-out .9s;
    margin-bottom: 15px;
}

.banner_contant p {
    font-size: 16px;
}

.nextarrow {
    position: absolute;
    right: 2%;
    top: 50%;
    color: var(--white);
    font-size: 25px;
    cursor: pointer;
}

.prevarrow {
    position: absolute;
    left: 2%;
    top: 50%;
    color: var(--white);
    font-size: 25px;
    z-index: 9;
    cursor: pointer;
}

.slick-vertical .slick-slide {
    border: none
}

.banner_item.slick-slide.slick-current.slick-active .banner_tittle {
    animation: stickySlideDown 1.5s ease-in-out;
    transform: translateY(0px);
    transition: ease-in-out .9s;
}

@keyframes stickySlideDown {
    0% {

        transform: translateY(200px);

        opacity: 0;
    }

    100% {

        transform: translateY(0);

        position: 1;
    }
}

.top_head {
    background-color: var(--bg_color);
    padding-bottom: 2px;
}

.top_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top_tittle p {
    margin-bottom: 0;
    color: var(--white);
}

.top_num a {
    color: var(--white);
}

.top_contact_details {
    color: var(--white);
    display: block;
    border: 2px solid #fff;
    border-top: none;
    padding: 0 10px 3px;
    border-radius: 0 0 10px 10px;
    cursor: pointer;
    font-weight: 600;
}

.contact_details_top img {
    width: 50px;
}

.top_head_tittle {
    display: block;
    font-size: 25px;
    margin: 15px 0;
    font-family: "Playfair Display", serif;
}

.contact_details_top {
    position: relative;
}

.contact_details_top {
    position: relative;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    border-bottom: 1px solid #c1c1c1;
}

.contact_details_top.text-center.show_details {
    max-height: 300px;
    opacity: 1;

}

.top_contact_details i {
    transition: ease-in-out .3s;
    margin-left: 5px;
}

.btn_toggle i {
    transform: rotate(180deg);

}

.top_details a {
    display: block;
    color: var(--black);
    margin: 10px 0;
}

.top_details {
    padding: 40px;
}

.details_cancal_btn {
    position: absolute;
    top: 2%;
    right: 5%;
    border: 1px solid #000;
    border-radius: 50%;
    padding: 3px 9px;
    cursor: pointer;
}

.all_btn {
    background: linear-gradient(0deg, #c367a7 -28.51%, rgb(240 197 201 / 48%) 142.24%);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 3px;
    border: none;
    position: relative;
    z-index: 9;
}
.all_btn::after{
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(0deg, rgb(240 197 201 / 48%) -28.51%, #c367a7 142.24%);
    z-index: -1;
    transition: ease-in-out .5s;
}
.all_btn:hover::after{
    width: 100%;
}

.banner_right img {
    width: 100%;
}

.right_padding {
    padding-left: 0;
}
.products {
    overflow: hidden;
}

.collection {
    margin: 30px 0;
    overflow: hidden;
}

.collection img {
    border-radius: 5px;
}

.collection_btn a {
    display: inline-block;
    font-size: 25px;
    margin-top: 15px;
    padding: 12px 40px;
}

.small_head {
    color: var(--bg_color);
    display: block;
    font-size: 20px;
    font-weight: 600;
    font-family: "Playfair Display", serif;
}

.small_head {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
}

.main_head .small_head {
    padding: 45px 0 44px;
}

.big_head {
    font-family: "Playfair Display", serif;
    font-size: 60px;
    line-height: 80px;
    margin-bottom: 10px;
    display: block;
}

.ab_home {
    display: flex;
}

.main_head {
    position: relative;
    padding: 0 15%;
    color: #30373e;
    display: block;
}

.about_bg {
    color: #99999917;
    font-size: 160px;
    text-transform: capitalize;
    line-height: 260px;
    font-family: "Playfair Display", serif;
    position: absolute;
    left: 0;
    top: -50px;
}

.jewelry_bg {
    color: #99999917;
    font-size: 160px;
    text-transform: capitalize;
    line-height: 260px;
    font-family: "Playfair Display", serif;
    position: absolute;
    right: 0;
    top: 60%;
}

.ab_img {
    width: 45%;
    float: left;
    margin-right: 60px;
}

.banner_right {
    position: relative;
}

.banner_right::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.73) 100%);
}

.goldsmith-banner-title {
    display: block;
    font-size: 35px;
    font-family: "Playfair Display", serif;
}

.goldsmith-banner-content {
    position: absolute;
    bottom: 0;
    color: var(--white);
    z-index: 9;
    width: 100%;
    text-align: center;
    padding: 24px;
    bottom: 4%;
}

.banner_right_r {
    border-radius: 10px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.pro_btn {
    position: absolute;
    bottom: -100%;
    z-index: 9;
    left: 0;
    background-color: #000;
    width: 100%;
    padding: 7px;
    color: var(--white);
    text-align: center;
    transition: ease-in-out .4s;
}

.item_box {
    margin-bottom: 20px;
}

.item_box:hover .pro_btn {
    bottom: 0;
}

.pro_tittle {
    display: block;
    margin: 10px 0 0;
    font-size: 18px;
}

.stars {
    width: 70px;
}

.item_box a {
    display: block;
}

.popular {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: right;
    background-color: #f9f9f9;
    position: relative;
    z-index: 9;
}

.popular_contant {
    padding: 150px 0;
}

.popular_contant .big_head {
    font-size: 80px;
    line-height: 90px;
    margin: 20px 0 30px;
}

.popular_bg_line {
    position: absolute;
    z-index: -1;
}

.popular_btn {
    margin-top: 40px;
}

.video_item {
    margin: 10px;
}

.video_item video {
    width: 100%;
}

.pro_item {
    margin: 8px;
}

.client_item img {
    height: 100px;
    object-fit: contain;
}

.client_item {
    padding: 30px;
}

.stretched_contant {
    padding: 0 50px;
}

.stretched_contant .big_head {
    font-size: 45px;
    line-height: 62px;
}

.malti_star {
    margin-top: 150px;
}

.video_banner {
    position: relative;
}

.video_banner::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #00000049;
}

.video_contant {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    z-index: 9;
    text-align: center;
}

.video_contant span {
    font-size: 100px;
    font-weight: 800;
    font-family: "Playfair Display", serif;
}

.video_banner video {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.testmoinal {
    padding: 80px 0;
}

.test_star {
    width: 100px;
    margin: 20px auto;
}

.name_box img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 10px auto;
}

.test_item {
    padding: 0 3.5%;
}

.name_box .name {
    font-size: 18px;
    margin-top: 10px;
    display: block;
}

.contact input,
textarea,
select {
    width: 100%;
    padding: 12px;
    margin: 13px 0;
    border: 1px solid #c2c2c2;
    border-radius: 5px;
    outline: none;
}

.contact form {
    padding: 40px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
}

.contact_details li i {
    color: var(--bg_color);
    margin-right: 8px;
}

.contact_details li {
    margin: 20px 0;
}

.contact_details li a {
    color: var(--black);
}

.socal_media {
    display: flex;
    gap: 20px;
}

.socal_media a {
    color: var(--black);
    display: block;
}

.socal_media a:hover {
    color: var(--bg_color);
}

footer {
    background-color: var(--black);
    color: var(--white);
    padding-top: 80px;
}

.foot_head {
    display: block;
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--bg_color);
}

.foot_nav ul li a {
    color: #fff;
    display: block;
    padding: 6px 0;
}

.foot_contact li a {
    color: #fff;
}

.foot_contact li {
    margin: 20px 0;
}

.foot_contact li i {
    color: var(--bg_color);
    margin-right: 8px;
}

.foot_nav ul {
    max-height: 230px;
    overflow: auto;
}

.foot_contact .socal_media a {
    color: var(--white);
}



.copy_right {
    padding: 18px 0;
    border-top: 1px solid #343434;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
    color: var(--white);
}

.copy_right p a {
    color: var(--white);
}









.inner_text {
    position: absolute;
    bottom: 20%;
    width: 100%;
    z-index: 9;
    color: var(--white);
    text-align: center;
    padding: 0 10px;
}

.ab_item {
    width: 47%;
    float: left;
    padding-right: 30px;
}

.share-btn-box ul {
    display: flex;
    gap: 8px;
}

.share-btn-box ul button {
    border: none;
    background-color: var(--bg_color);
    color: var(--white);
    padding: 7px 10px;
    border-radius: 3px;
}


.inner_header img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.inner_header {
    position: relative;
}

.inner_header::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000000a8;
}

.brade_crom a {
    color: #fff;
}

.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
}

.back-to-top {
    background: #fff;
    position: fixed;
    right: 1%;
    bottom: 3%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: ease-in-out .5s;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(0);
}

.back-to-top.scroll_show {
    transform: scale(1);
    bottom: 3%;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.what-app i {
    font-size: 38px;
    color: #fff;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


@media only screen and (max-width: 992px) {
    .big_head {
        font-size: 45px;
        line-height: normal;
    }

    .popular_bg_line {
        background-color: #e4e4e4;
        height: 100%;
    }

    .popular_contant .big_head {
        font-size: 50px;
        line-height: normal;
    }

    .popular_contant {
        padding: 66px 0;
    }

    .stretched_contant {
        padding: 0 6px;
    }

    .stretched_contant .big_head {
        font-size: 27px;
        line-height: normal;
    }

    .video_contant span {
        font-size: 54px;
    }

    .test_item {
        padding: 0 0;
    }

    .navbar_nav ul li {
        padding: 20px 11px;
    }

    .about_bg,
    .jewelry_bg {
        font-size: 106px;
    }
}



@media only screen and (max-width: 780px) {
    .navbar_nav {
        position: absolute;
        left: -100%;
        top: 0;
        background-color: #000;
        width: 70%;
        height: 100vh;
        overflow: auto;
        transition: ease-in-out 0.5s;
        padding-top: 20px;
    }

    .navbar_nav.show_nav {
        left: 0;
    }

    .navbar_nav .nab_flex {
        flex-direction: column;
    }

    .nav_close {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background-color: #fff;
        padding: 5px 11px;
        font-weight: 900;
        z-index: 99;
    }

    .toggle {
        display: block;
    }

    .dropdown {
        position: absolute;
        width: 100%;
        top: 100%;
        left: -100%;
        background-color: #000;
        z-index: 99;
        padding-top: 20px;
        display: block;
        background-color: #fff;
        overflow: auto;
    }

    .navbar_nav .dropdown a {
        color: #000;
    }

    .dropdown_btn {
        background-color: #fff;
        color: #000;
        padding: 4px 8px;
    }

    .dropdown_btn_show i {
        transform: rotate(180deg);
        transition: ease-in-out .5s;
    }

    .show_dropdown {
        left: 0;
    }

    .navbar_nav ul li {
        padding: 12px 20px;
        border-bottom: 1px solid #2e2d2d;
    }

    .navbar_nav ul a {
        color: var(--white);
    }

    .inner_header img {
        height: 200px;
    }

    .ab_item {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 15px;
    }
}


@media only screen and (max-width: 768px) {
    .banner_contant {
        width: 70%;
    }

    .ab_img {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .big_head {
        font-size: 35px;
    }

    .banner_right img {
        height: 400px;
        object-fit: cover;
        background-position: center center;
    }

    .banner_right {
        display: none;
    }

    .my {
        margin: 40px 0;
    }

    .malti_star {
        margin-top: 5px;
    }

    .contact form {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .main_head {
        padding: 0 0%;
    }

    .big_head {
        font-size: 24px;
    }

    .main_head .small_head {
        padding: 19px 0 19px;
    }

    .about_bg,
    .jewelry_bg {
        font-size: 52px;
    }

    .jewelry_bg {
        top: 19%;
    }

    .small_head {
        font-size: 17px;
    }

    .popular_contant .big_head {
        font-size: 27px;
        margin: 12px 0 8px;
    }
    .video_contant{
        display: none;
    }
    .video_banner::after{
        display: none;
    }
    .top_num{
        display: none;
    }
    .nab_btn{
        display: none;
    }
    .logo img {
    width: 118px;
}
.banner_tittle{
    font-size: 35px;
}
.banner_contant{
    top: 20%;
    width: 80%;
}
.banner_contant p{
    font-size: 13px;
    line-height: 20px;
}
}

@media only screen and (max-width: 500px) {
    .banner_tittle{
    font-size: 25px;
    margin-bottom: 0;
}
.nextarrow, .prevarrow{
    font-size: 18px;
}
}