.hero-container {
    align-items: flex-start;
    flex-direction: column;   
}
.hero-title {
    flex-direction: column;
    padding-left: 90px;
}
.gold-word {
    color: #DA9663;
}
.white-word {
    color: #FFFFFF;
}
.products-container {
    list-style-type: none;
    z-index: 8;
}
.products-container li {
    color: #919191;
    cursor: pointer;
    margin-bottom: 25px;
}
.products-container li, select, option {
    font-family: 'Termina Extra Light', sans-serif;
    font-size: 14px;
    position: relative;
}
.products-container li:hover, .products-container li.active {
    color: #212121;
    text-decoration: none;
}
.products-container li:hover:before, .products-container li.active:before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 14px;
    left: -30px;
    position: absolute;
    top: 25%;
    width: 14px;    
    z-index: 9;    
}
#second-section {
    margin-bottom: 100px;
    margin-top: 56px;
}
.product-container {  
    position: relative;
}
#item-box > .row {
    visibility: hidden;
    animation: fadeIn 1s;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
.product-description .blend, .product-description a {
   color: #DA9663;
   text-transform: uppercase; 
}
.product-description .product-name {
    color: #212121;
    font-family: 'Termina Demi', sans-serif;
    font-size: 32px;
}
.product-description .product-summary {
    color: #595959;
    font-family: 'Barlow Light', sans-serif;
    font-size: 16px;
}
.product-description .blend {
    font-family: 'Barlow Regular', sans-serif;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 80px;
    padding-top: 23px;    
}
.product-description a {
    display: inline-block;
    font-family: 'Termina Regular', sans-serif;
    font-size: 14px;
    margin-top: 24px;
}
.product-selector {
    background: #EDEDED;
    border: 1px solid #DA9663;
    border-radius: 30px;
    color: #DA9663;
    text-align: center;
}
select {
    -webkit-appearance: none;
    appearance: none;
    height: 48px;
    width: 300px;    
}
.select-container {
    margin-bottom: 45px;
    margin-left: auto;
    margin-right: auto;    
    position: relative;
}
.select-container:before {
    -webkit-text-stroke: 1px #EDEDED;
    color: #DA9663;
    content: "\f078";
    font-family: 'FontAwesome';
    font-size: 24px;
    left: 30px;
    position: absolute;
    top: 4px;
    z-index: 2;
}
.fa-arrow-right:before {
    content: '\f061';
}
.hero-container a i:before {
    -webkit-text-stroke: 1px #000000;
}
.product-description a i:before {
    -webkit-text-stroke: 1px #ffffff;
}

@media only screen and (max-width: 576px) {
    .hero-title {
        max-width: 352px;
        padding-left: 8px;
    }    
    .hero-container {
        justify-content: flex-end;
        padding-bottom: 148px;
    }
    .hero-title {
        margin-bottom: 0;
    }
    .product-selector {
        padding-left: 80px;
    }    
}
@media only screen and (min-width: 992px) {    
    .product-container:before {
        background: #DCDCDC;
        content: "";
        display: block;
        height: 2px;
        max-width: 400px;
        position: absolute;
        width: 100%;
    }
    .product-description .product-summary {
        max-width: 400px;
    }
    .products-container li {
        max-width: 130px;
    }
}
@media only screen and (max-width: 992px) {
    .d-sm-block {
        display: block !important;
    }
       
    .d-sm-none {
        display: none !important;
    }
}