html{
    scroll-behavior: smooth;
}
body{
    background-color: #f5f5f5;
    color: #373737;
    font-family:'Montserrat', sans-serif;
    font-size: 14px;
    overflow-x: hidden!important;
}
.red{
    color: red;
}
.page-title{
    font-weight: 700;
}

/*
** Navigation
 */
.navigation{
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 11;
}
.mnavigation{
    display: none;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    top: 0;
    padding: 5px 25px;
    background-color: #373737;
    z-index: 99;
    box-shadow: 0 0 10px #343a40;
}
.mobile-menu{
    height: 35px;
    float: right;
    cursor: pointer;
}
.mnavigation .mlogo{
    height: 40px;
}
.nav-black{
    background-color: #373737;
}
.navigation .nav-links{
    padding-top: 25px;
}
.navigation .nav-links a{
    color: #fff;
    margin-right: 25px;
    padding-bottom: 5px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.navigation .nav-links a:hover{
    border-bottom: 1px solid #fff;
    -webkit-animation: activeNav ease 0.5s;
    -moz-animation: activeNav ease 0.5s;
    -o-animation: activeNav ease 0.5s;
    -ms-animation: activeNav ease 0.5s;
    animation: activeNav ease 0.5s;
}
@keyframes activeNav {
    0%{
        border-bottom: 1px solid transparent;
    }
    100% {
        border-bottom: 1px solid #fff;
    }
}
.navigation .nav-links .active-link{
    border-bottom: 1px solid #fff!important;
}
.navigation .nav-contacts{
    text-align: right;
    padding-top: 25px;
}
.navigation .nav-contacts a{
    color: #fff;
    padding-left: 25px;
    text-decoration: none;
}
.navigation .nav-contacts .nemail-img{
    width: 29px;
}
.navigation .nav-contacts .nphone-img{
    width: 22px;
}
.navigation .nav-logo{
    padding: 0;
    padding-bottom: 10px;
    text-align: center;
}
.navigation .nav-logo .logo-block{
    width: 300px;
    height: 300px;
    border-radius:40px;
    background-color: #fff;
    position: absolute;
    top: -270px;
    left: -55px;
    transform: rotate(45deg);
    z-index: -1;
}
.navigation .nav-logo .logo{
    z-index: 9;
    width: 70px;
    margin-top: 15px;
}
.nav-black .nav-logo .logo-block{
    animation: logoBlockScrolled 0.2s;
    animation-timing-function: linear;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    -webkit-animation: logoBlockScrolled 0.2s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0.2s;
    -webkit-animation-fill-mode: forwards;
}
@keyframes logoBlockScrolled {
    0% {
        top: -270px;
    }
    100% {
        top: -295px;
    }
}
.nav-black .nav-logo{
    padding-bottom: 0px;
}
.nav-black .nav-links {
    animation: navScrolled 0.2s;
    animation-timing-function: linear;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    -webkit-animation: navScrolled 0.2s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0.2s;
    -webkit-animation-fill-mode: forwards;
}
.nav-black .nav-contacts {
    animation: navScrolled 0.2s;
    animation-timing-function: linear;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    -webkit-animation: navScrolled 0.2s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0.2s;
    -webkit-animation-fill-mode: forwards;
}
@keyframes navScrolled {
    0% {
        padding-top: 25px;
    }
    100% {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
.nav-black .nav-logo .logo {
    animation: logoScrolled 0.2s;
    animation-timing-function: linear;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    -webkit-animation: logoScrolled 0.2s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0.2s;
    -webkit-animation-fill-mode: forwards;
}
@keyframes logoScrolled {
    0% {
        width: 92px;
    }
    100% {
        width: 65px;
        margin-top: 3px;
        margin-right: 3px;
    }
}
.nav-black .nav-links a {
    padding-bottom: 16px;
}



/*
** Slider
 */
.slider{
    background-color: #373737;
    height: 100vh;
    padding-top: 150px;
}
.slider-bg{
    width: 100%;
    position: absolute;
    top: 0px;
}
.slider-bg .bg-item{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: none;
}
#sbg1{
    display: flex;
}
.slider-text{
    color: #d1b473;
    padding-top: 100px;
    display: none;
}
.slider-text h1{
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 50px;
}
.slider-text h5{
    font-weight: 900;
    margin-bottom: 0;
}
.slider-text p{
    margin-bottom: 50px;
    font-size: 21px;
}
#stext1{
    display: block;
}
.btn-gold{
    color: #d1b473;
    border-color: #d1b473;
    border-radius: 40px;
    padding-left: 50px;
    padding-right: 50px;
}
.btn-gold:hover{
    background-color: #d1b473;
    border-color: #d1b473;
}
.slider-img .simg-item{
    display: none;
    width: 100%;
    margin-top: 50px;
}
#simg1{
    display: flex;
}
.slider-img .simg-border{
    position: absolute;
    border: 2px dashed #d1b473;
    width: 1200px;
    height: 1100px;
    border-radius: 40px;
    top: 200px;
    left: -133px;
    transform: rotate(45deg);
    z-index: 1;
}
.scroll-down{
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 10px;
    z-index: 2;
}
.scroll-down .scroll-block{
    background-color: #1e1e1e;
    width: 250px;
    height: 250px;
    border-radius: 40px;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(45deg);
    cursor: pointer!important;
}
.scroll-down .scroll-block img{
    transform: rotate(-45deg);
    margin-left: 22px;
    margin-top: 22px;
}
.slider-controlls{
    position: absolute;
    width: 100%;
    bottom: 0px;
    font-size: 24px;
    color: #d1b473;
    text-align: right;
    z-index: 2;
}
.slider-controlls .arrows-controlls {
    margin-bottom: 10px;
}
.slider-controlls .arrows-controlls a{
    padding-left: 30px;
    text-decoration: none!important;
}
.slider-controlls .arrows-controlls a:hover{
    opacity: 0.8;
}
.slider-controlls .num-controlls {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: right;
    float: right;
}
.slider-controlls .line {
    display: inline-block;
    width: 100px;
    background-color: #d1b473;
    height: 1px;
    margin-left: 10px;
    margin-right: 10px;
}
.slider-controlls .curent {
    color: #868686;
}
.slider-contact{
    position: absolute;
    top: 200px;
    transform: rotate(45deg);
    right: -200px;
    border: 2px dashed #868686;
    border-radius: 40px;
    width: 300px;
    height: 300px;
    overflow: hidden;
    padding: 15px;
}
.slider-contact .sbg-contact{
    position: relative;
    background-color: #1e1e1e;
    width: 100%;
    height: 100%;
    border-radius: 40px;
}
.slider-contact .scontact-text{
    position: absolute;
    bottom: 30px;
    left: 13px;
    text-align: center;
    transform: rotate(45deg);
}
.slider-contact .scontact-text a{
    text-decoration: none;
    color: #fff;
}


/*
** About
 */
.about{
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f5f5f5;
    z-index: 10;
}
.about a{
    background-color: #373737;
    border-color: #373737;
    color: #d1b473;
    border-radius: 40px;
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 50px;
}
.about a:hover{
    background-color: #d1b473;
    border-color: #d1b473;
    color: #373737;
}
.about .about-img{
    position: absolute;
    top: 150px;
    right: 0;
    z-index: -1;
    width: 49%;
}
.about .about-img img{
    width: 100%;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.about .about-overimg{
    text-align: center;
    position: relative;
}
.about .about-overimg img{
    border-radius: 40px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.about .about-btitle{
    position: absolute;
    top: 10px;
    right: -30px;
    color: rgba(209, 180, 115, 0.1);
    z-index: -2;
    font-size: 128px;
    font-weight: 700;
    width: 49%;
    text-align: justify;
}


/*
** Products
 */
.products{
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
}
.products .page-title{
    text-align: right;
}
.products .products-btitle{
    position: absolute;
    top: 13px;
    left: 0;
    color: rgba(209, 180, 115, 0.1);
    z-index: -2;
    font-size: 128px;
    font-weight: 700;
    width: 49%;
    text-align: justify;
}
.products .product-item{
    background-color: #373737;
    color: #fff;
    border: none;
    margin-top: 40px;
    border-radius: 40px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    padding: 25px;
    position: relative;
    height: 285px;
}
.products .product-item p{
    padding-right: 40%;
}
.products .product-item h4{
    font-weight: 700;
    color: #d1b473;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.products .product-item a{
    border-color: #d1b473;
    color: #d1b473;
    border-radius: 40px;
    width: 200px;
    text-decoration: none;
    position: absolute;
    bottom: 25px;
    left: 15px;
}
.products .product-item a:hover{
    background-color: #d1b473;
    border-color: #d1b473;
    color: #373737;
}
.products .product-img{
    width: 350px;
    position: absolute;
    right: 0;
}
.gold-item{
    top: 30px;
}
.diamond-item{
    width: 300px;
    top: 25px;
}
.jewerly-item{
    width: 300px;
    top: 10px;
}
/*
** Contacts
 */
.contacts{
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #373737;
    color: #fff;
}
.contacts .page-title{
    margin-bottom: 25px;
}
.contacts .contacts-btitle{
    position: absolute;
    top: 10px;
    right: 0;
    color: rgba(209, 180, 115, 0.1);
    font-size: 128px;
    font-weight: 700;
    width: 100%;
    text-align: right;
}
#map{
    width: 100%;
    height: 500px;
}
.contacts input{
    border: none!important;
    border-bottom: 1px solid #fff!important;
    border-radius: 0;
    background-color: transparent!important;
    outline: none!important;
    box-shadow: 0 0 0 transparent!important;
    color: #fff!important;
    margin-top: 35px;
}
.contacts textarea{
    border: none!important;
    border-radius: 0;
    border-bottom: 1px solid #fff!important;
    background-color: transparent!important;
    outline: none!important;
    box-shadow: 0 0 0 transparent!important;
    color: #fff!important;
    margin-top: 35px;
    height: 150px;
}
.contacts input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #fff;
}
.contacts input::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
}
.contacts input:-ms-input-placeholder { /* IE 10+ */
    color: #fff;
}
.contacts input:-moz-placeholder { /* Firefox 18- */
    color: #fff;
}
.contacts textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #fff;
}
.contacts textarea::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
}
.contacts textarea:-ms-input-placeholder { /* IE 10+ */
    color: #fff;
}
.contacts textarea:-moz-placeholder { /* Firefox 18- */
    color: #fff;
}
.contacts button{
    border-color: #d1b473;
    color: #d1b473;
    border-radius: 40px;
    margin-top: 10px;
    width: 200px;
}
.contacts button:hover{
    background-color: #d1b473;
    border-color: #d1b473;
    color: #373737;
}

/*
** Footer
 */
.footer{
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #1e1e1e;
    color: #fff;
}
.footer .container{
    max-width: 1350px;
    width: 1350px;
}
.footer a{
    color: #fff;
}
.footer h1{
    font-weight: 700;
    margin-bottom: 50px;
}
.footer .footer-products .line{
    width: 50px;
    height: 1px;
    background-color: #fff;
}
.footer .footer-products ul{
    margin: 0;
    margin-top: 50px;
    padding: 0;
}
.footer .footer-products li{
    list-style-type: none;
    padding-bottom: 20px;
}
.footer .footer-products a{
    text-decoration: none;
}
.footer .footer-contacts ul{
    margin: 0;
    margin-top: 50px;
    padding: 0;
}
.footer .footer-contacts .line{
    width: 50px;
    height: 1px;
    background-color: #fff;
}
.footer .footer-contacts li{
    list-style-type: none;
    padding-bottom: 15px;
}
.footer .footer-contacts a{
    text-decoration: none;
}
.copyrights{
    margin-top: 100px;
    text-align: center;
}
.copyrights a{
    text-decoration: none;
    font-weight: 700;
}
.title{
    background-image: url(/assets/images/title.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 400px;
    display: flex;
    align-items: center;
}
.title h1{
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 0;
    color: #d1b473;
    text-transform: uppercase;
}

.contacts-page{
    padding-top: 90px;
    padding-bottom: 90px;
}
.contacts-page #map{
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    height: 600px;
}
.contacts-page .contacts-form{
    background-color: #fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    padding: 20px;
    height: 600px;
    overflow: hidden;
}
.contacts-page .contacts-form label{
    margin-bottom: 0;
}
.contacts-page .contacts-form span{
    color: #d1b473;
}
.contacts-page .contacts-form button{
    border-color: #d1b473;
    color: #d1b473;
    width: 100%;
    margin-top: 15px;
}
.contacts-page .contacts-form button:hover{
    background-color: #d1b473;
    border-color: #d1b473;
    color: #373737;
}
.contacts-page .contacts-info{
    margin-bottom: 50px;
}
.contacts-page .contacts-info .col-md-5{
    line-height: 1.2;
}
.contacts-page .contacts-info .col-md-7{
    line-height: 1.2;
}
.contacts-page .contacts-info img{
    margin-top: 5px;
    float: left;
    margin-right: 10px;
}
.contacts-page .contacts-info a{
    color: #373737;
    font-weight: 700;
}
.about-page{
    padding-top: 90px;
    padding-bottom: 90px;
}
.about-page img{
    width: 100%;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    border-radius: 30px;
}
.products-page{
    padding-top: 90px;
    padding-bottom: 90px;
}
.products-page .product-item{
    background-color: #373737;
    color: #fff;
    border: none;
    margin-top: 40px;
    border-radius: 40px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    padding: 25px;
    padding-right: 40%;
    position: relative;
    height: 285px;
}
.products-page .product-item h4{
    font-weight: 700;
    color: #d1b473;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.products-page .product-item a{
    border-color: #d1b473;
    color: #d1b473;
    border-radius: 40px;
    width: 200px;
    text-decoration: none;
    position: absolute;
    bottom: 25px;
    left: 15px;
}
.products-page .product-item a:hover{
    background-color: #d1b473;
    border-color: #d1b473;
    color: #373737;
}
.products-page .product-img{
    width: 250px;
    position: absolute;
    bottom: 0;
    right: 0;
}


#mobileNav .modal-dialog {
    max-width: 500px;
    margin: 0;
    margin-left: auto;
}
#mobileNav .modal-content {
    border-radius: 0;
    border: none;
    height: 100vh;
}
#mobileNav .modal-body {
    padding: 0;
}
#mobileNav .nav-title {
    background-color: #373737;
    color: #fff;
    padding: 10px 25px;
    font-size: 34px;
    font-weight: 700;
    cursor: pointer;
}
#mobileNav .nav-title span{
    float: right;
}
#mobileNav .mobile-links ul{
    padding: 0;
    margin: 0;
}
#mobileNav .mobile-links li{
    list-style-type: none;
    padding: 15px 25px;
    border-bottom: 1px solid #ebebeb;
}
#mobileNav .mobile-links li a{
    color: #373737;
    font-weight: 700;
}
#mobileNav .mobile-contacts{
    margin-top: 50px;
    font-weight: 700;
    font-size: 21px;
}
#mobileNav .mobile-contacts a{
    color: #373737;
    text-decoration: none;
}
#mobileNav .mobile-contacts img{
    margin-right: 10px;
    width: 50px;
}
#mobileNav .mobile-contacts .mobmap-icon{
    float: left;
    margin-bottom: 10px;
}
#mobileNav .mobile-contacts ul{
    padding: 0;
    margin: 0;
}
#mobileNav .mobile-contacts ul li{
    list-style-type: none;
    padding: 15px 25px;
}
.mscroll-down{
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}
.mscroll-down img{
    width: 40px;
}



.footer-social{
    position: absolute;
    top: 200px;
    transform: rotate(45deg);
    left: -200px;
    border: 2px dashed #868686;
    border-radius: 40px;
    width: 300px;
    height: 300px;
    overflow: hidden;
    padding: 15px;
    z-index: 998;
}
.footer-social .social-black{
    position: relative;
    background-color: #1e1e1e;
    width: 100%;
    height: 100%;
    border-radius: 40px;
}
.footer-social .social-links{
    position: absolute;
    top: 16px;
    right: 38px;
    text-align: right;
    transform: rotate(-45deg);
}
.footer-social .social-links a{
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #fff;
}
