/*Back To Top Button*/
#topBtn {
    position: fixed;
    bottom: 50px;
    right: 15px;
    text-align:center;
    font-size: 18px;
    border-radius: 25px;
    background-color:#c0a66b;
    border:solid 3px #202020;
    display:none;
    transition: 0.8s;
    transition: background-color 0.4s;
    outline:none;
    z-index:30;
    padding:7.5px 14px 7.5px 14px;
  }

#topBtn:hover{
    background-color:#505050;
}
/*===END TO TOP BUTTON===*/
/*Top Bar*/
.topdiv{
    position:fixed;
    top:0;
    width:100%;
    z-index:50;
}
.topBar{
    width:100%;
    height:30px;
    background-color: #202020;
    position:relative;
}
.topBarPlace{
    width:100%;
    height:30px;
}
.drop-btn{
    width:25px;
    margin:0;
    position:absolute;
    right:200px;
}
.drop-menu{
    background-color:#202020;
    border:solid 2px #c0a66b;
}
.btn-custom-drop{
    color:#c0a66b;
    background-color:#202020;
    border-left: solid 2px #c0a66b;
    border-right: solid 2px #c0a66b;
}
.btn-custom-drop:hover{
    color:#202020;
    background-color:#c0a66b;
}
.logInOutLink{
    text-decoration: none;
    color: #c0a66b;
}
#cart_icon{
    font-size:15px;
    color: white;
}
#cart_counter{
    color:white;
    text-decoration: none;
}
.login_cart_div{
    position:absolute;
    right:10px;
    margin:5px;
}
/*Nav Container*/
.nav-container{
    width:100%;
    z-index:20;
    transition:0.5s;
    transform-origin: top;
    transform-box: fill-box;
    -webkit-transform-origin: top;
    -webkit-transform-box: fill-box;
    -moz-transform-origin: top;
    -moz-transform-box: fill-box;
    -ms-transform-origin: top;
    -ms-transform-box: fill-box;
    -o-transform-origin: top;
    -o-transform-box: fill-box;
}
.nav-container-down{
    background-color: #303030;
}
#landing-nav{
    z-index:20 !important;
    position:relative;
}
#navbarToggler{
    transition:0.3s;
    transform-origin: left;
    transform-box: fill-box;
}
.landing-nav-up{
    background-color: transparent !important;
}
li.nav-item.landing{
    border: solid 1px #c0a66b;
    margin-right:5px;
    width:10vw;
    text-align:center;
}
li.nav-item.landing.landing-up{
    background-color:transparent;
    transition:0.3s;
}
li.nav-item.landing.landing-up:hover{
    background-color:#c0a66b !important;
}
li.nav-item.landing.landing-down{
    background-color:#202020;
}
.active{
    background-color:#c0a66b !important;
    border-radius:5px;
    transition:0.3s;
}
li.nav-item.landing.landing-down:hover{
    background-color:#c0a66b;
}
.progress-container{
    width: 100%;
    height: 5px;
    background: #202020;
    position:relative;
    visibility:hidden;
}
.progress-bar{
    height: 5px;
    background: #c0a66b;
    width: 0%;
    transition: 0s;
}
.progress-visible{
    visibility:visible;
}
/*======*/
/*Landing Container*/
body:before {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: black url(../resources/vip-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%; */
    
}
#landing-wrapper{
    position:relative;
    z-index:10;
    height:100vh;
}
#landing-page{
    height:100vh;
    width:100%;
    position:fixed;
    z-index:-20;
    /* background: black url(../resources/vip-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
}
#logo-container{
    width:100%;
    height:100vh;
    text-align: center;
}
#logo-div{
    z-index:10;
    text-align:center;
    margin-top:0;
    width:100%;
    height:auto;
    margin-left:auto;
    margin-right:auto;
    padding:3%;
}
.main-title{
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    color:#adadad;
    text-shadow: -3px 2px 2px #ffffff;
}
.main-slogan{
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color:#c0a66b;
    text-shadow: 2px 2px 3px #000000;
}
#logo{
    width:15%;
    height:15%;
}
#arrow-down-div{
    position:absolute;
    width:100%;
    bottom:0;
    text-align:center;
    padding:50px;
    opacity:1;
    z-index:20;
}
#arrow-down{
    width:50px;
    height:auto;
    animation: arrow-down-anim 1.5s infinite ease-in-out;
    -webkit-animation: arrow-down-anim 1.5s infinite ease-in-out;
    -moz-animation: arrow-down-anim 1.5s infinite ease-in-out;
    -ms-animation: arrow-down-anim 1.5s infinite ease-in-out;
    -o-animation: arrow-down-anim 1.5s infinite ease-in-out;
    z-index:20;
}

@keyframes arrow-down-anim {
    0% {
      transform: translateY(0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: translateY(20px);
      opacity: 0;
    }
}
@-webkit-keyframes arrow-down-anim {
    0% {
      -webkit-transform: translateY(0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      -webkit-transform: translateY(20px);
      opacity: 0;
    }
}
@-moz-keyframes arrow-down-anim {
    0% {
      -moz-transform: translateY(0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      -moz-transform: translateY(20px);
      opacity: 0;
    }
}
@-ms-keyframes arrow-down-anim {
    0% {
      -ms-transform: translateY(0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      -ms-transform: translateY(20px);
      opacity: 0;
    }
}
@-o-keyframes arrow-down-anim {
    0% {
      -o-transform: translateY(0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      -o-transform: translateY(20px);
      opacity: 0;
    }
}
/*======*/
/*Common*/
.js-loading {
    animation-play-state: paused !important;
}
.js-loading-spinner{
    display:none !important;
}
.spinner-div{
    height:100%;
}
.spinner-div-mobile{
    height:100vh;
    overflow-y:hidden;
}
.color-gold{
    color: #c0a66b;
}
.color-silver{
    color: #adadad;
}
.color-charcoal{
    color:#202020;
}
.page-heading-div{
    position:relative;
    width:100%;
    padding:25px 20px 15px 20px;
    font-family: 'libre baskerville', serif;
    border-bottom:solid 5px #c0a66b;
    background-color:#202020;
    margin-bottom:25px;
}
.heading{
    font-family:'libre baskerville', serif;
    color:#c0a66b;
    font-weight:bold;
}
.text{
    color:#505050;
    font-family:'lato', sans-serif;
    font-weight:400;
    font-style: italic;
}
.text-ul{
    color: #c0a66b;
    font-family:'lato', sans-serif;
    font-weight:400;
    font-style: italic;
}
.text2{
    color:#adadad;
    font-family:'lato', sans-serif;
    font-weight:400;
    font-style:italic;
}
.text-quote{
    color: #adadad;
    font-family:'libre baskerville', serif;
}
.img-box{
    text-align:center;
    width:100%;
    height:auto;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:25px;
}
.img-box2{
    text-align:center;
    width:100%;
    height:100%;
}
.image{
    height:auto;
    width:80%;
}
.image2{
    width:100%;
    height:100%;
}
.img-home{
    -webkit-box-shadow: 10px 10px 0px 0px #202020;
    -moz-box-shadow: 10px 10px 0px 0px #202020;
    box-shadow: 10px 10px 20px 0px #202020;
}
.img-home2{
    -webkit-box-shadow: 10px 10px 0px 0px #c0a66b;
    -moz-box-shadow: 10px 10px 0px 0px #c0a66b;
    box-shadow: 5px 5px 15px -5px #c0a66b;
}
/*======*/
/*Main Container*/
#main-wrapper{
    position:relative;
    z-index:10;
}
.register-container{
    background-image: url(../resources/register-bg.jpeg);
    background-repeat:no-repeat;
    background-size:cover;
    background-attachment: fixed;
    height:100%;
}
.row{
    margin:0;
}
.jumbotron{
    margin-left:5%;
    margin-right:5%;
    margin-top:5%;
    background-color:#202020;
    padding:15px;
}
.info-div{
    border-left: solid 1px #c0a66b;
}
#home{
    font-family: 'lato', sans-serif;
    font-size: 20px;
    background-color:#e7e7e7;
}
.vision-div{
    margin-left:auto;
    margin-right:auto;
    margin-top:25px;
    margin-bottom:50px;
    height:500px;
    background-image: url(../resources/diamond.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top:125px;
    position:relative;
}
.vision-box{
    width:50%;
    margin-left:auto;
    margin-right:auto;
    padding:30px;
    background-image: linear-gradient(to bottom, #c0a66b, #e7e7e7);
    position:absolute;
    bottom:0;
    left: 50%;
    text-align:center;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.vision-box-mobile{
    padding:30px;
    background-image: linear-gradient(to bottom, #e7e7e7, #c0a66b);
    text-align:center;
}
.quote-block{
    background-color:#202020;
    text-align:center;
    padding-top:100px;
    padding-left:30px;
    padding-right:30px;
}
.company-details{
    margin-top:25px;
    margin-left:15px;
}
#contact{
    background-color:#202020;
    border-top: solid 1px white;
}
#email-list{
    font-weight:bold;
    list-style:none;
    position:relative;
    padding:0;
    color:#c0a66b;
    font-size: 20px;
}
#email-list > li{
    padding:10px;
}
#email-link{
    color:#c0a66b;
    text-decoration:none;
    transition:0.3s;
}
#email-link:hover{
    color:#adadad;
}
#contact-link{
    color:#c0a66b;
}
.contact-form-div{
    padding:10px;
}
/*Forms*/
.form-heading{
    color:#adadad;
}
.form-label{
    color:#c0a66b;
    font-family: 'Libre baskerville', serif;
}
.form-label-alt{
    color:#202020;
    font-family: 'Libre baskerville', serif;
}
.btn-custom{
    border: solid 1px #c0a66b;
    background-color: #202020;
    color: #c0a66b;
    font-family: 'Libre baskerville', serif;
    transition:0.3s;
}
.btn-custom:hover{
    background-color: #c0a66b;
    color: #202020;
    font-weight:bold;
}
.btn-custom-alt{
    background-color: #c0a66b;
    color: #202020;
    font-family: 'Libre baskerville', serif;
    transition:0.3s;
}
.btn-custom-alt:hover{
    background-color: #202020;
    color: #c0a66b;
    font-weight:bold;
}
.small-input{
    width: 50%;
}
#contact-form-container{
    background-color:#c0a66b;
    padding:10px;
    border-radius:10px;
}
#contact-form{
    background-color:#d7d7d7;
    border-radius:15px;
    padding:15px;
    width:75%;
    margin-left:auto;
    margin-right:auto;
}
.contact-label{
    font-family:lato bold, arial, sans-serif;
    color:#103c58;
    font-weight:bold;
    font-size:22px;
}

.contact-input{
    width: 100%;
    padding: 15px;
    margin: 5px 0 12px 0;
    border: none;
    background: #f1f1f1;
  }

.contact-:focus{
    background-color: #ddd;
    outline: none;
  }

#query-box{
    height:150px;
    width: 100%;
    display: block;
    resize: vertical;
    margin-bottom: 25px;
}
/*======*/
/*Footer*/
#footer{
    position:relative;
    background-color:#202020;
    padding:10px 10px 1px 10px;
    border-top:solid 1px white;
    z-index:25;
}

#footer-copyright{
    margin-top:10px;
    text-align:center;
    color:rgb(170, 170, 170);
    width:100%;
}
/*======*/
/*Scalability*/
@media screen and (min-width:992px){
    .nav-container-down{
        transform: scaleY(0.75);
        -webkit-transform: scaleY(0.75);
        -moz-transform: scaleY(0.75);
        -ms-transform: scaleY(0.75);
        -o-transform: scaleY(0.75);
    }
    .landing-nav-down{
        transform: scaleX(0.75);
    }
    .logInOutLink{
        transform: scaleY(1.10);
    }
    #cart_icon{
        transform: scaleY(1.10)
    }
    #logo-container{
        margin-top:5%;
    }
    .main-title{
        font-size:6vw;
    }
    .main-slogan{
        font-size:4vw;
    }
    #logo-div{
        margin-top:0;
        width:30%;
    }
    #logo{
        width:60%;
        height:60%;
    }
    .home-heading{
        font-size:3vw;
    }
    .vision-box-mobile{
        display:none;
    }
    .quote-block{
        border-left: solid 1px white;
    }
    .contact-form-div{
        border-left: solid 1px white;
    }
    .reg-left-div{
        border-right: solid 1px #c0a66b;
    }
}

@media screen and (max-width: 991px){

    li.nav-item.landing{
        width:100%;
        margin:0 0 10px 0;
    }
    li.nav-item.landing.landing-up{
        background-color:#202020;
    }
    #logo-container{
        margin-top:5%;
    }
    .main-title{
        font-size:6vw;
    }
    .main-slogan{
        font-size:4vw;
    }
    #logo-div{
        margin-top:0;
        width:30%;
    }
    #logo{
        width:60%;
        height:60%;
    }
    .home-heading{
        font-size:3.5vw;
    }
    .vision-box-mobile{
        display:none;
    }
    .quote-block{
        border-left: solid 1px white;
    }
    .contact-form-div{
        border-left: solid 1px white;
    }
    .reg-left-div{
        border-right: solid 1px #c0a66b;
    }

}

@media screen and (max-width:920px){
    .main-title{
        font-size:6vw;
    }
    .main-slogan{
        font-size:4vw;
    }
    #logo-div{
        margin-top:3%;
        width:30%;
    }
    #logo{
        width:75%;
        height:75%;
    }

}

@media screen and (max-width: 900px){

    #logo-container{
        margin-top:10%;
    }

}

@media screen and (max-width: 800px){
    #logo-container{
        margin-top:10%;
    }
    .main-title{
        font-size:8vw;
    }
    .main-slogan{
        font-size:6vw;
    }
    #logo-div{
        margin-top:3%;
        width:30%;
    }
    #logo{
        width:75%;
        height:75%;
    }

}

@media screen and (max-width: 767px){

    .quote-block{
        border: none;
    }
    .contact-form-div{
        border: none;
    }
    .reg-left-div{
        border-right:none;
        border-bottom: solid 1px #c0a66b;
        margin-bottom:25px;
    }

}

@media screen and (max-width: 693px){

    #logo-container{
        margin-top:15%;
    }
    .main-title{
        font-size:10vw;
    }
    .main-slogan{
        font-size:8vw;
    }
    #logo-div{
        margin-top:3%;
        width:30%;
    }
    #logo{
        width:90%;
        height:90%;
    }
    .home-heading{
        font-size:4.5vw;
    }
    .vision-box-mobile{
        display:block;
    }
    .vision-box{
        display:none;
    }
    .btn-custom-alt{
        border:solid 2px #202020;
    }

}

@media screen and (max-width: 575px){

    #logo-container{
        margin-top:20%;
    }
    .home-heading{
        font-size:5vw;
    }

}

@media screen and (max-width: 516px){

    #logo-container{
        margin-top:25%;
    }
    .main-title{
        font-size:12vw;
    }
    .main-slogan{
        font-size:10vw;
    }
    #logo-div{
        margin-top:3%;
        width:35%;
    }
    #logo{
        width:100%;
        height:100%;
    }
    .home-heading{
        font-size:6vw;
    }

}

@media screen and (max-width: 420px){

    #logo-container{
        margin-top:40%;
    }
    .home-heading{
        font-size:5.5vw;
    }

}

@media screen and (max-width: 412px){
    #logo-container{
        margin-top:45%;
    }
    .main-title{
        font-size:14vw;
    }
    .main-slogan{
        font-size:12vw;
    }
    #logo-div{
        margin-top:3%;
        width:40%;
    }
    #logo{
        width:100%;
        height:100%;
    }

}