@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Italiana&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none !important;
    font-family: "Lato", sans-serif;
    font-size: 17px;
}
body{
    background-color: #fff;
    color: #000;
    font-size: 17px;
    overflow-x: hidden;
    background-image: url(../images/bg-1.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    background-attachment: fixed;
    font-family: "Lato", sans-serif;
}
html{
    scroll-behavior: smooth;
}
h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    font-size: 17px;

}
p{
    margin: 0;
    padding: 0;
    line-height: 28px;
    font-size: 17px;
}
ul{
    margin: 0;
    padding: 0;
}

/* Header Css Start */

.header-main{
    width: 100%;
    display: flex;
     padding: 5px 0; 
    background-color: #000000;
    /* background-color: #00000073; */
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, .1);
}
.header-top-main{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* padding: 0 45px; */
}
.logo{
    width: 240px;
}
.logo a img{
    width: 100%;
}
nav{
    display: flex;
    position: relative;
    z-index: 99999;
}
nav>ul{
    display: flex;
}
nav>ul>li{
    padding: 0 16px;
}
nav>ul>li:first-child{
    padding-left: 0;
}
nav>ul>li:last-child{
    padding-right: 0;
}
nav>ul>li>a {
    font-size: 19px;
    padding: 29px 0;
    display: inline-block;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.drop-down-menu {
    position: relative;
}

.drop-down-nav {
    position: absolute;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    top: 93px;
    left: 0;
    width: 250px;
    background-color: #fff;
    z-index: 9;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.drop-down-nav>li{
    border-bottom: 1px solid #d8dadc;
}
.drop-down-nav>li:last-child{
    border-bottom: none;
}
.drop-down-nav>li>a {
    color: #000 !important;
    position: relative;
    padding: 13px 16px;
    display: inline-block;
    width: 100%;
    font-weight: 600;
    font-size: 18px;
}
nav>ul>li>a>i{
    transition: 0.2s ease-in-out;
}
nav>ul>li:hover>a>i {
    transform: rotate(180deg);
    
}
.drop-down-menu:hover .drop-down-nav {
    visibility: visible;
    overflow: visible;
    opacity: 1;
    top: 78px;
    transition: 0.5s;
}


/* .drop-down-nav>li {
    border-bottom: 1px solid #e9e9e9;
} */

.drop-down-nav>li:hover {
    background-color: #00000052;
    transition: 0.3s;
}

.drop-down-nav>li:hover>a {
    color: #ffffff !important;
}
.hamburger-menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 22px;
    display: none;
}
.hamburger{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 5px;
    position: relative;
    z-index: 9;
    cursor: pointer;
    height: 100%;
    width: 30px;
}
.bar{
    width: 30px;
    height: 2px;
    position: relative;
    background-color: #fff;
    transition: 0.3s;
}
.bar:nth-child(2){
    width: 15px;
}
.header-contact .bar:nth-child(2){
    transform: translateX(-40px);
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
    background-color: #fff;
}
.header-contact .bar:nth-child(1){
    transform: rotate(135deg);
    top: 8px;
    position: relative;
    background-color: #fff;
}
.header-contact .bar:nth-child(3){
    transform: rotate(225deg);
    top: -6px;
    background-color: #fff;
    position: relative;
}

/* Transparent Header */

header {
    display: flex;
    flex-direction: column;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}

.logo a img {
    width: 100%;
    position: relative;
}

.logo {
    position: relative;
}

.logo::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
}

.sticky .header-main {
    background-color: #000000e3;
    position: fixed;
    top: 0;
    left: 0;
    padding: 6px 0;
    z-index: 99;
    box-shadow: 0 0 40px #000;
    animation: sticky-header 1s;
}

@keyframes sticky-header {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}


/* banner */

.banner_slide .slick-prev{
    display: none !important; 
}
.banner_slide .slick-next{
    display: none !important; 
}


/* about-us */

.about-img {
    margin-bottom: 20px;
    overflow: hidden !important;
    border-radius: 35px 0px;
    box-shadow: 4px 6px 11px #b3b7ad9e;
}
.about-img img {
    width: 100%;
    border-radius: 35px 0px;
   
}
.about-img img:hover {
    transform: scale(1.2);
    cursor: pointer;
    transition: 3s;
}
.about-part {
     /* background-image: url(../images/background-img-2.jpeg);   */
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 70px;
    background-attachment: fixed !important;
}
.about-sec {
    padding-top: 60px;
}
.about-part h2 {
    text-align: center;
   padding-top: 52px;
    font-size: 32px;
    font-weight: 500;
    font-family: "Merriweather", serif;
}
.about-part h1 {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    background: linear-gradient(#919191, #060606);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 20px 0 0;
    font-family: "Montserrat", sans-serif;
}
.content-sec p {
    text-align: justify;
    line-height: 35px;
    margin-bottom: 10px;
}
.read-btn{
    padding: 12px 40px;
}
.read-btn:hover{
    color: #fff !important;
    background-color: #000;
}
.btn-box {
    padding-top: 55px;
    text-align: center;
}
.read-btn {
    padding: 14px 40px;
    border-radius: 33px;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    background-color: #878481;
}


/* Products */

section.product-part {
    /* background-image: url(../images/about-background.webp); */
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f5eee5 ;
    position: relative;
}
.product-part h2 {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    font-family: "Merriweather", serif;
    padding-top: 50px;
    background: linear-gradient(#919191, #060606);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
.product-part h2:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: -5px;
    width: 17%;
    height: 3px;
    display: inline-block;
    background-color: #706969;
    left: 41%;
    border-radius: 13px;
}
.box-wrap {
    /* width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center; */
    justify-content: center;
    margin-bottom: 20px;
}
.box {
    background: #000;
    position: relative;
    /* width: 400px; */
    /* height: 300px; */
    overflow: hidden;
    cursor: pointer;
    /* border: 7px solid #283593; */
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
}
.box h1 {
    font-size: 23px;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}
.box img {
    width: 100%; display: block;
}
.box img:nth-child(1) {
	position: absolute;
}
.box img:nth-child(2) {
	opacity: 0;
}
/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
} */
.product-sec {
    padding-top: 65px;
    padding-bottom: 45px;
}

/* enquiry*/

.enquiry-part {
    padding-top: 65px;
    background-image: url(../images/enquiry-background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 65px;
    position: relative;
}
.enquiry-sec h2 {
    font-size: 35px;
    font-weight: bold;
    position: relative;
    color: #fff;
}
.enquiry-sec p {
    text-align: justify;
    padding: 20px 0;
    /* color: #fff; */
    font-size: 19px;
    font-weight: 600;
    position: relative;
    color: #fff;
}
.enq-btn {
    text-align: center;
    position: relative;
    padding-top: 45px;
}
.enq-btn a{
    color: #fff;
    background-color: #000;
    padding: 10px 35px;
    display: inline-block;
    border-radius: 25px;
    transition: 0.3s ease;
    font-weight: 500;
}
.enq-btn a:hover{
    background-color: #000;
}



.gallery {
    text-align: center;
    margin-top: 65px;
}
.filter {
    margin-bottom: 20px;
    margin: 55px 0 55px 0;
    text-align: center;
}
.btn:hover {
    background-color: #8d796b;
    color: #fff;
    border-color: #fff;
}
.btn {
    display: inline-block;
    padding: 8px 31px;
    background: #fff;
    font-size: 22px;
    cursor: pointer;
    border: none;
    color: #1d184f;
    font-weight: 600;
    border-radius: 5px;
    margin: 11px;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
}
  .btn.active {
    background-color: #8d796b;
    outline: none;
    color: #fff;
  }
  
  .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
  }
  
  .item-1 {
    
    margin: 10px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s;
    background-color: transparent;
    display: block;
    /* float: left; */
    width: 30%;
    box-shadow: rgba(192, 192, 192, 0.25) 0px 0px 4px 4px;
    background-color: #fff;
    padding: 8px;
}
  .item-1 img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
  }
  .item-1:hover img {
    transform: scale(1.1);
  }
  .gallary-titles {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
  .gallary-titles h5 {
    /* background: linear-gradient(#727272, #060606); */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 35px;
    text-align: center;
    padding-bottom: 12px;
    font-weight: bold;
    position: relative;
    background-color: rgb(0 0 0 / 73%);
}
.gallary-titles h5:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: -5px;
    width: 61%;
    height: 3px;
    display: inline-block;
    background-color: #706969;
    left: 17%;
    border-radius: 13px;
}


/* footer */


footer {
    padding: 70px 0 30px 0;
    background-color: #bbafa5;
    background-image: url(../images/footer-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 60px;
}
.foot-logo{
    background-color: #00000099;
    display: inline-block;
    padding: 25px;
    border-radius: 25px;
    margin-bottom: 20px;
}
.foot-logo img{
    width: 240px;
}
.pro-foot h2{
    font-size: 41px;
    font-weight: bold;
    padding-bottom: 22px;
    color: #fff;
}
.pro-foot{
    padding-left: 40px;
}
.foot-first{
    padding-right: 20px;
}
.foot-first p {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    text-align: justify;
}
.cont-foot h2 {
    font-size: 41px;
    font-weight: bold;
    padding-bottom: 22px;
    color: #fff;
}
.foot-home a{
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    transition: 0.3s ease;
    font-size: 18px;
}
.foot-home img {
    padding-right: 12px;
}
.foot-home a:hover{
    color: #000000;
}
.foot-home{
    padding-bottom: 15px;
    
}
.final-contact {
    display: flex;
    padding-bottom: 20px;
}
.location-time {
    padding-right: 15px;
}
.location-time i {
    position: relative;
    top: 2px;
    color: #ffffff;
    font-size: 24px;
}
.third-foot address {
    margin-bottom: 0;
    line-height: 28px;
}
address{
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-size: 18px;
}
.final-contact a {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    transition: 0.3s ease;
    font-size: 18px;
}
.final-contact a:hover{
    color: #000000;
}
.cont-foot{
    padding-left: 30px;
}
.vinayak {
    text-align: justify;
    padding-top: 50px;
}
.vinayak a{
    color: #000;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-size: 18px;
}
.copyt{
    padding-top: 50px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-size: 18px;
}
.pro-head h2{
    text-align: center;
    font-family: "Cormorant", serif;
    font-size: 45px;
    font-weight: 800;
}
.pro-head img{
    filter: brightness(0);
}
.pro-head{
    text-align: center;
}
.pro-jewels{
    padding-top: 80px;
}
.hallmark h2{
    font-size: 45px;
    font-weight: 800;
    padding-bottom: 20px;
    text-align: center;
}
.hallmark p{
    text-align: center;
}
.hall-section{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: transparent;
    padding: 70px 0;
    margin-top: 100px;
}
.pro-jewels img{
    width: 100%;
}
.pro-jewel img{
    width: 100%;
}



/* breadcrumb */


.breadcrumb{
    background-image: url(../images/breadcrumb-img-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 17px;
    margin: 0;
}
.breadcrumb::before {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, #000000ad 0%, rgb(36 36 36 / 69%) 117.71%) !important;
    width: 100%;
    height: 100%;
}
.breadcrumb h2 {
    position: relative;
    color: #fff;
    font-size: 47px;
    text-align: center;
    line-height: 45px;
    font-weight: bold;
}
.bread-last {
    position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}
  .bread-last a{
    color: #fff;
    transition: 0.3s ease;
  }
  .bread-last a:hover{
    color: #1a62ac;
  }
  .breadcrumb-1 h2 {
    position: relative;
    color: #fff;
    font-size: 47px;
    text-align: center;
    line-height: 45px;
    font-weight: bold;
}
.breadcrumb-1{
    background-image: url(../images/breadcrumb-img-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 17px;
    margin: 0;
}
.breadcrumb-1::before {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, #000000ad 0%, rgb(36 36 36 / 69%) 117.71%) !important;
    width: 100%;
    height: 100%;
}



/* term -banner */

.breadcrumb-term{
    background-image: url(../images/terms-and-condition-background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 17px;
    margin: 0;
}
.breadcrumb-term::before {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, #3e3c3c00 0%, rgb(36 36 36 / 80%) 117.71%) !important;
    width: 100%;
    height: 100%;
}
.breadcrumb-term h2 {
    position: relative;
    color: #fff;
    font-size: 47px;
    text-align: center;
    line-height: 45px;
    font-weight: bold;
}
.bread-last {
    position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}
  .bread-last a{
    color: #fff;
    transition: 0.3s ease;
  }
  .bread-last a:hover{
    color: #1a62ac;
  }



  /* privacy-banner */

  .breadcrumb-privacy{
    background-image: url(../images/privacy-policy-background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 17px;
    margin: 0;
}
.breadcrumb-privacy::before {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, #3e3c3c94 0%, rgb(36 36 36 / 80%) 117.71%) !important;
    width: 100%;
    height: 100%;
}
.breadcrumb-privacy h2 {
    position: relative;
    color: #fff;
    font-size: 47px;
    text-align: center;
    line-height: 45px;
    font-weight: bold;
}
.bread-last {
    position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}
  .bread-last a{
    color: #fff;
    transition: 0.3s ease;
  }
  .bread-last a:hover{
    color: #1a62ac;
  }




  /* Gold Jewellery */

.gold-part h1 {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    position: relative;
}  
.gold-part h1:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: -11px;
    width: 24%;
    height: 3px;
    display: inline-block;
    background-color: #706969;
    left: 37%;
    border-radius: 13px;
}
section.gold-part {
    margin-top: 60px;
}
.gold-box h2 {
    text-align: center;
    font-size: 29px;
    font-weight: 600;
    padding: 15px 0 0;
    font-family: "Merriweather", serif;
}
.gold-img {
    box-shadow: 4px 6px 11px #b3b7ad;
    overflow: hidden;
}
.gold-img img:hover {
    transform: scale(1.2);
    cursor: pointer;
    transition: 3s;
}
.gold-img img {
    width: 100%;
}
.gold-box {
    margin-bottom: 25px;
}
.gold-sec {
    padding-top: 65px;
}
.gold-part-1 h1 {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    position: relative;
}  
.gold-part-1 h1:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: -11px;
    width: 24%;
    height: 3px;
    display: inline-block;
    background-color: #706969;
    left: 37%;
    border-radius: 13px;
}
section.gold-part-1 {
    margin-top: 60px;
}




/* Contact Us Page */


/* contact us */

.info-box {
    color: #444444;
    text-align: left;
    padding: 10px 7px 10px 30px;
    background: #ffffff;
    box-shadow: 0px 4px 11px 4px #d1d1d17d;
    border-radius: 4px;
    margin-bottom: 30px;
}
.info-box h3 {
    font-size: 24px;
    color: #000000;
    font-weight: bold;
    margin: 10px 0;
    font-family: "Poppins", sans-serif;
    text-align: left;
}
section.contact-more {
    margin: 50px 0;
}
iframe {
    width: 100%;
}
.info-box p {
    line-height: 43px;
    font-size: 19px;
    color: #000;
}
.info-box i {
    font-size: 24px;
    color: #726f6f;
}
.info-box a {
    color: #000;
    font-size: 20px;
}
.contact-more h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 600;
    color: #4a4a47;
}


/* mission and vision */


.box-part {
    box-shadow: 4px 6px 11px #b3b7ad9e;
    padding: 25px;
    height: 255px;
    border: 2px solid;
    border-radius: 25px;
}
.box-part h2 {
    text-align: center;
    font-size: 37px;
    font-weight: bold;
    padding-bottom: 20px;
    color: #525151;
}
.box-part p {
    text-align: justify;
    line-height: 30px;
}
.about-text {
    padding-top: 50px;
}


/* Enquiry Form Css */

.form-control-feedback {
    display: none;
  }
  
  .has-feedback label~.form-control-feedback {
    top: 0 !important;
  }
  
  .error {
    text-align: left !important;
    display: table !important;
  }
  
  .thnak4 {
    margin-top: 50px;
  }
  
  .has-feedback .form-control {
    padding: 20px;
  }
  
  .form-group {
    margin: 15px 0 !important;
  }
  
  .form-group input {
    font-size: 18px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #4c4c4c;
    color: #000;
  }
  .has-feedback .form-control::placeholder{
    color: #000000;
  }
  .has-feedback .form-control{
    color: #000000;
  }
  .form-group textarea {
    font-size: 18px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #4c4c4c;
  }
  
  .form-group select {
    font-size: 16px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #4c4c4c;
  }
  
  .input-group .form-control:last-child,
  .input-group-addon:last-child {
    font-size: 14px !important;
    line-height: 24px;
    width: 100% !important;
  }
  
  .input-group .form-control:last-child,
  .input-group-addon:last-child {
    font-size: 14px !important;
    line-height: 24px;
    border-radius: 2px;
    width: 100% !important;
    border-bottom: 2px solid #182852;
  }
  
  .input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    margin: 20px 0;
    width: 100% !important;
  }
  
  .Submit-box {
    /* background-color: #006db8; */
    color: #fff;
    padding: 10px 15px;
    border: 1px solid #ffffff;
    font-size: 17px;
    border-radius: 2px;
    transition: 0.3s ease;
    background-color: rgb(0 0 0 / 62%);
}
  
  .Submit-box:hover {
    background-color: #000;
    border: 1px solid #000;
  }
  
  .form-control:focus {
    box-shadow: none !important;
    border: 1px solid #000 !important;
    border-bottom: 2px solid #182852;
  }
  
  .input-group>.form-control,
  .input-group>.form-floating,
  .input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }
  .fill {
    font-size: 20px;
    font-weight: 600;
  }
  .get {
    font-size: 33px !important;
    color: #565454;
    padding-bottom: 20px;
    font-weight: bold;
}
.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 15px !important;
}
.checkbox input {
    margin-right: 10px;
    cursor: pointer;
}
.checkbox-1 {
    position: relative;
    top: 3px;
  }
  label {
    display: inline-block;
    font-size: 18px;
    padding-left: 6px;
  }
.terms a {
    color: #ff0000;
}

  /* Enquiry form css end */

section.page-part.about-section {
    margin-top: 70px;
}




/* Media Query Start */




/* terms-part */

section.term-sec {
    margin-top: 75px;
}
.term-sec h1 {
    font-size: 30px;
    font-weight: bold;
    color: #454545;
    /* text-transform: uppercase; */
}
.term-sec p {
    padding-top: 20px;
    text-align: justify;
}
section.term-sec-1 {
    padding-top: 25px;
}
.term-sec-1 h1 {
    font-size: 30px;
    font-weight: bold;
    color: #454545;
}
.term-sec-1 p {
    padding-top: 20px;
    text-align: justify;
}
.term-sec-1 li {
    padding: 10px 0px;
    display: flex;
}
.term-sec-1 ul {
    margin: 5px 0;
    padding: 0;
}
.term-sec-1 ul li i {
    padding-right: 14px;
    font-size: 18px;
    padding-top: 6px;
}
p.text {
    padding: 0;
}
.term-sec-1 a {
    color: #ff0000;
}


/* Privacy Policy */


section.privacy-sec {
    margin-top: 65px;
}
.privacy-sec h1 {
    font-size: 30px;
    font-weight: bold;
    color: #454545;
    /* text-transform: uppercase; */
}
.privacy-sec p {
    padding: 15px 0;
    text-align: justify;
}
p.text-1 {
    padding: 0;
}
.privacy-sec li {
    padding: 10px 0px;
    display: flex;
}
.privacy-sec  ul {
    margin: 5px 0;
    padding: 0;
}
.privacy-sec  ul li i {
    padding-right: 14px;
    font-size: 18px;
    padding-top: 6px;
}


.error {
    color: red;
    display: none ;
}



@media only screen and (max-width: 1199px) {

    .box h1 {
        font-size: 17px;
        padding: 15px 2px;
    }
    .pro-foot h2 {
        font-size: 42px;
        padding-bottom: 20px;
    }
    .cont-foot h2 {
        font-size: 42px;
        padding-bottom: 20px;
    }
    footer {
        padding: 50px 0 25px 0;
        margin-top: 40px;
    }
    .about-part {
        padding-bottom: 40px;
    }
    .logo {
        width: 245px;
    }
    section.gold-part {
        margin-top: 55px;
    }
    .copyt {
        padding-top: 35px;
    }
    .vinayak {
        text-align: justify;
        padding-top: 34px;
    }
    .gallery {
        text-align: center;
        margin-top: 55px;
    }
    .filter {
        margin: 55px 0 50px 0;
    }
    .enq-btn {
        padding-top: 30px;
    }
    section.mission-part {
        padding-bottom: 20px;
    } 
    section.contact-more {
        margin: 50px 0 0;
    }  
    .about-part h2 {
        padding-top: 40px;
    }
    .about-sec {
        padding-top: 55px;
    }
    .cont-foot {
        padding-left: 0px;
    }
    .pro-foot {
        padding-left: 20px;
    }
    .foot-first {
        padding-right: 6px;
    }
    .foot-logo {
        margin-bottom: 17px;
    }
    .enquiry-sec p {
        padding: 15px 0;
    }
    .btn-box {
        padding-top: 29px;
        text-align: center;
    }
    .product-part h2:before {
        width: 19%;
        left: 40%;
    }
    .box-part {
        height: 285px;
    }
    section.privacy-sec {
        margin-top: 45px;
    }
    section.term-sec {
        margin-top: 55px;
    }

}





@media only screen and (max-width: 991px) {

    .hamburger-menu{
        display: block;
        cursor: pointer;
    }
    nav{
        display: none;
    }
    nav>ul{
        position: fixed;
        top: 0;
        left: 0;
        width: 315px;
        background-color: #fff;
        height: 100vh;
        box-shadow: rgb(17 12 46 / .15) 0 48px 100px 0;
        transform: translateX(-100%);
        transition: 0.5s;
        overflow-y: auto;
        display: flex;
        justify-content: flex-start;
        z-index: 999999999999;
    }
    .header-contact nav>ul{
        transform: translateX(0);
    }
    nav{
        display: initial;
    }
    nav>ul{
        display: initial;
        flex-direction: column;
    }
    nav>ul>li>a {
        padding: 15px 0;
        display: block;
        color: #000000;
        padding-left: 20px;
    }
    nav>ul>li{
        border-bottom: 1px solid #d4d4d4;
        padding-left: 0;
    }
    nav>ul>li>a>i{
        display: none !important;
    }
    nav>ul>li.drop-down-menu{
        padding-right: 60px;
        position: relative;
        overflow: hidden;
    }
    nav>ul>li.drop-down-menu::after{
        position: absolute;
        top: 7px;
        right: 22px;
        content: "+";
        font-size: 27px;
        color: #3a3a3b;
    }
    nav>ul>li.drop-down-menu.responsive-header::after {
        content: "-" !important;
    }
    .drop-down-nav{
        position: initial;
        visibility: visible;
        opacity: 1;
        overflow: visible;
        top: 0;
        left: 0;
        background-color: rgb(0 0 0 / 62%);
        z-index: 9;
        height: 0;
        transition: none !important;
        padding: 0;
    }
    .responsive-header .drop-down-nav{
        height: 100%;
        overflow-y: scroll;
        width: 150%;
    }
    .drop-down-nav>li>a{
        color: #fff !important;
        font-size: 18px;
    }
    .logo {
        width: 265px;
    }
     .header-main {
        padding: 12px 0;
        box-shadow: 0 6px 30px 0 rgba(0, 0, 0, .1);
    }
    .sticky .header-main {
        padding: 12px 0;
    } 
    .about-sec {
        padding-top: 20px;
    }
    .content-sec {
        padding-bottom: 20px;
    }
    .box h1 {
        font-size: 26px;
        padding: 15px 2px;
    }
    .enquiry-sec h2 {
        font-size: 29px;
    }
    .copyt {
        padding-top: 28px;
    }
    .product-part h2:before {
        width: 26%;
        left: 37%;
    }
    .about-text {
        padding-top: 30px;
    }
    .box-part {
        padding: 17px 15px;
        height: 330px;
    }
    .about-part {
        padding-bottom: 60px;
    }
    .btn-box {
        padding-top: 40px;
        text-align: center;
    }
    .pro-foot {
        padding-left: 0px;
    }
    .cont-foot {
        padding-left: 0px;
    }
    .box-part h2 {
        font-size: 40px;
        padding-bottom: 10px;
    }
    .btn {
        padding: 7px 5px;
        font-size: 21px;
    }
    .gallary-titles h5 {
        font-size: 25px;
        text-align: center;
        padding-bottom: 12px;
        font-weight: bold;
        position: relative;
    }
    .filter {
        margin: 45px 0 40px 0;
    }
    .foot-first {
        padding-right: 0px;
        padding-bottom: 25px;
    }
    .pro-foot h2 {
        font-size: 40px;
    }
    .cont-foot h2 {
        font-size: 40px;
    }
    .vinayak {
        text-align: justify;
        padding-top: 15px;
    }
    .gold-box h2 {
        font-size: 33px;
    }
    .gold-part h1:before {
        width: 59%;
        left: 20%;
    }
    section.gold-part {
        margin-top: 40px;
    }
    .about-part h1 {
        font-size: 38px;
    }
    .item-1 {
        margin: 10px;
        overflow: hidden;
        opacity: 0;
        transition: opacity 0.5s;
        background-color: transparent;
        display: block;
        /* float: left; */
        width: 45%;
        box-shadow: rgba(192, 192, 192, 0.25) 0px 0px 4px 4px;
        background-color: #fff;
        padding: 8px;
    }
    .gold-part-1 h1 {
        text-align: center;
        font-size: 38px;
    }
    .gold-part-1 h1:before {
        width: 65%;
        left: 16%;
    }
    section.page-part.about-section {
        margin-top: 50px;
    }
    section.term-sec {
        margin-top: 40px;
    }
}



@media only screen and (max-width: 767px) {

    .gold-part h1 {
        font-size: 33px;
    }
    .gold-box h2 {
        font-size: 30px;
    }
    .logo {
        width: 250px;
    }
    .about-part h1 {
        font-size: 30px;
    }
    .enquiry-sec h2 {
        font-size: 25px;
    }
    .enquiry-sec p {
        padding: 13px 0;
        font-size: 19px;
        font-weight: normal;
    }
    .gallary-titles h5 {
        font-size: 27px;
        line-height: 33px;
    }
    .filter {
        margin: 40px 0 20px 0;
    }
    .box-part p {
        text-align: justify;
        line-height: 30px;
        font-size: 18px;
    }
    .box-part {
        padding: 17px 15px;
        height: 450px;
    }
    .contact-more h2 {
        margin-bottom: 47px;
    }
    .box h1 {
        font-size: 24px;
        padding: 15px 2px;
    }
    .gold-part-1 h1 {
        text-align: center;
        font-size: 31px;
    }
    .cont-foot {
        padding-left: 0px;
        padding-top: 13px;
    }
    section.term-sec-1 {
        padding-top: 21px;
    }
    .term-sec-1 p {
        padding-top: 15px;
        text-align: justify;
    }
}


@media only screen and (max-width: 576px) {
    
    .box h1 {
        font-size: 19px;
        padding: 15px 2px;
    }
    .logo {
        width: 248px;
    }
    .product-part h2 {
        font-size: 47px;
        padding-top: 45px;
    }
    .breadcrumb-1 h2 {
        font-size: 39px;
        line-height: 22px;
    }
    .gallery {
        text-align: center;
        margin-top: 44px;
    }
    .gold-part-1 h1 {
        text-align: center;
        font-size: 28px;
    }
    section.gold-part-1 {
        margin-top: 45px;
    }
    .gold-part h1 {
        font-size: 31px;
    }
    .about-part h1 {
        font-size: 25px;
    }
    .about-part {
        padding-bottom: 40px;
    }
    .term-sec-1 h1 {
        font-size: 28px;
        font-weight: bold;
        color: #454545;
    }
}


@media only screen and (max-width: 575px) {

    .box-part {
        padding: 17px 15px;
        height: auto;
        margin-bottom: 20px;
    }
    section.mission-part {
        padding-bottom: 0px;
    }

}




@media only screen and (max-width: 450px) {
    
    .about-part h1 {
        font-size: 22px;
    }
    .box h1 {
        font-size: 28px;
        padding: 15px 2px;
    }
    .gallary-titles h5 {
        font-size: 21px;
        line-height: 33px;
    }
    .gallery {
        text-align: center;
        margin-top: 30px;
    }
    .product-part h2:before {
        width: 49%;
        left: 24%;
    }
    .item-1 {
        margin: 0px;
        overflow: hidden;
        opacity: 0;
        transition: opacity 0.5s;
        background-color: transparent;
        display: block;
        /* float: left; */
        width: 100%;
        box-shadow: rgba(192, 192, 192, 0.25) 0px 0px 4px 4px;
        background-color: #fff;
        padding: 8px;
        margin-bottom: 20px;
    }
    .logo {
        width: 240px;
    }
    section.page-part.about-section {
        margin-top: 35px;
    }
    .breadcrumb {
        padding: 95px 0;    
    }
    .breadcrumb h2 {
        font-size: 44px;
    }
    .btn {
        padding: 7px 5px;
        font-size: 19px;
        margin: 9px;
    }
    .breadcrumb-1 h2 {
        font-size: 36px;
        line-height: 20px;
    }
    .gold-part h1 {
        font-size: 29px;
    }
    .gold-part h1:before {
        width: 60%;
        left: 18%;
    }
    .gold-sec {
        padding-top: 50px;
    }
    section.gold-part {
        margin-top: 35px;
    }
    .gold-box h2 {
        font-size: 37px;
    }
    .gold-part-1 h1 {
        font-size: 24px;
    }
    .gold-part-1 h1:before {
        width: 65%;
        left: 16%;
    }
    section.gold-part-1 {
        margin-top: 40px;
    }
    .cont-foot h2 {
        font-size: 40px;
        margin-top: 0px;
        padding-bottom: 20px;
    }
    .pro-foot h2 {
        padding-bottom: 20px;
    }
    .about-part h2 {
        font-size: 27px;
    }
    .copyt {
        padding-top: 14px;
    }
    .vinayak {
        text-align: justify;
        padding-top: 13px;
    }
    footer {
        padding: 50px 0 15px 0;
        margin-top: 10px;
    }
    .about-part {
        padding-bottom: 50px;
    }
    .get {
        font-size: 22px !important;
    }
    .mt-5 {
        margin-top: 2rem !important;
    }
    .box-part {
        padding: 17px 15px;
        height: auto;
        margin-bottom: 20px;
    }
    .foot-logo {
        background-color: #00000099;
        padding: 25px;
        border-radius: 25px;
    }
    footer {
        padding: 40px 0 15px 0;
        margin-top: 20px;

    }
    .foot-first p {
        text-align: justify;
    }
    .info-box h3 {
        font-size: 25px;
    }
    .product-sec {
        padding-top: 50px;
        padding-bottom: 45px;
    }
    .term-sec-1 h1 {
        font-size: 25px;
        font-weight: bold;
        color: #454545;
    }
    section.privacy-sec {
        margin-top: 35px;
    }

    

}



@media only screen and (max-width: 400px) {

    .about-part h1 {
        font-size: 19px;
    }
    .about-part h2 {
        padding-top: 30px;
    }
    .logo {
        width: 215px;
    }
    nav>ul {
        width: 270px;
    }
    .product-sec {
        padding-top: 45px;
        padding-bottom: 30px;
    }
    .enquiry-part {
        padding-top: 50px;
        padding-bottom: 50px;

    }
    .gallary-titles h5 {
        font-size: 24px;
        line-height: 33px;
    }
    .btn {
        padding: 15px 5px;
        font-size: 18px;
        margin: 0px;
    }
    .copyt {
        padding-top: 15px;
    }
    .vinayak {
        text-align: justify;
        padding-top: 10px;
    }
    footer {
        padding: 30px 0 15px 0;
        margin-top: 22px;
    }
    .box h1 {
        font-size: 23px;
        padding: 15px 2px;
    }
    .get {
        font-size: 19px !important;
        padding-bottom: 15px;
    }
    .fill {
        font-size: 19px;
        font-weight: 600;
        
    }
    .gold-part h1 {
        font-size: 25px;
    }
    .gold-part-1 h1 {
        font-size: 21px;
    }
    .breadcrumb-1 h2 {
        font-size: 31px;
        line-height: 20px;
    }
    section.gold-part-1 {
        margin-top: 30px;
    }
    .gold-box h2 {
        font-size: 33px;
    }
    .foot-logo img {
        width: 225px;
    }
    .foot-logo {
        margin-bottom: 12px;
    }
    .breadcrumb h2 {
        font-size: 36px;
        line-height: 26px;
    }
    .contact-more h2 {
        margin-bottom: 35px;
    }
    section.contact-more {
        margin: 38px 0 0;
    }
    .filter {
        margin: 32px 0 20px 0;
    }
    .gallary-titles h5:before {
        bottom: 0px;
    }
    .info-box {
        padding: 10px 7px 10px 20px;
    }
    .info-box a {
        color: #000;
        font-size: 19px;
    }
    

}


@media only screen and (max-width: 350px) {

    .box h1 {
        font-size: 23px;
        padding: 15px 2px;
    }
    .enquiry-sec h2 {
        font-size: 23px;
    }
    .breadcrumb {
        padding: 80px 0;
    }
    footer {
        padding: 35px 0 15px 0;
        margin-top: 40px;
    }
    .logo {
        width: 195px;
    }
    .breadcrumb-1 h2 {
        font-size: 28px;
        line-height: 17px;
    }
    .gold-part-1 h1 {
        font-size: 19px;
    }
    .gold-sec {
        padding-top: 45px;
    }
    .btn-box {
        padding-top: 40px;
        text-align: center;
    }
    .about-part {
        padding-bottom: 50px;
    }
    .btn {
        padding: 15px 5px;
        font-size: 17px;
        margin: 0px;
    }
    .gallary-titles h5 {
        font-size: 22px;
        line-height: 33px;
    }
    .hamburger-menu {
        padding-right: 10px;
    }
    nav>ul {
        width: 245px;
    }
    .about-part h1 {
        font-size: 17px;
        padding: 16px 0 0;
    }
    .about-part h2 {
        padding-top: 22px;
    }
    .about-part h2 {
        font-size: 25px;
    }
    .about-sec {
        padding-top: 13px;
    }
    nav>ul>li>a {
        font-size: 18px;
    }
    .gold-part h1 {
        font-size: 22px;
    }
    .breadcrumb h2 {
        font-size: 34px;
        line-height: 20px;
    }
    .product-part h2 {
        font-size: 44px;
        padding-top: 44px;
    }
    .location-time {
        padding-right: 10px;
    }
    .get {
        font-size: 17px !important;
        padding-bottom: 13px;
    }
    .fill {
        font-size: 17px;
        font-weight: 600;
    }
    .gold-box h2 {
        font-size: 30px;
    }
    .contact-more h2 {
        font-size: 39px;
    }
    section.contact-more {
        margin: 30px 0 0;
    }
    section.mission-part {
        padding-bottom: 0px;
    }
    .location-time i {
        font-size: 20px;
    }
    .vinayak {
        text-align: justify;
        padding-top: 6px;
    }
    .info-box {
        padding: 10px 7px 10px 15px;
    }
    .pro-foot h2 {
        font-size: 37px;
    }
    .cont-foot h2 {
        font-size: 37px;
        margin-top: 0px;
        padding-bottom: 20px;
    }
    .copyt {
        padding-top: 15px;
    }
    .info-box a {
        color: #000;
        font-size: 18px;
    }
    .final-contact a {
        font-size: 17px;
    }
    section.page-part.about-section {
        margin-top: 30px;
    }
    .privacy-sec h1 {
        font-size: 26px;
        font-weight: bold;
        color: #454545;
        /* text-transform: uppercase; */
    }

}