*{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
body{
    overflow-x: hidden;
}
a{
    text-decoration: none;
}

/*=============================================================================*/

:root{
    --light-color: #F2F1F0;
}

/*=============================================================================*/

body{
    font: normal 16px/1.5 'Gilroy', sans-serif;
    color: #333;
}

/*=============================================================================*/

header{
    padding: 15px 0;
    /*background: var(--light-color);*/
    background: #CECECE;
}
header .container{
    display: flex;
    max-width: 1440px;
    justify-content: center;
    margin: 0 auto;
}
header .brand{
    margin-right: 50px;
}
header .menu{
    display: flex;
    justify-content: center;
    align-items: center;
}
header .menu ul{
    display: flex;
}
header .menu ul li{
    position: relative;
    margin-left: 15px;
}
header .menu ul li a{
    color: #444;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.15em;
    display: inline-block;
    position: relative;
    font-weight: 500;
}
header .menu ul li a:hover{
    color: #5a4b34;
}
header .menu ul li a:after{
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #5a4b34;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
header .menu ul li a:hover:after{
    width: 100%;
    left: 0;
}



header .menu li a.active{
    color: #5a4b34;
}
header .menu li a.active:after{
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #5a4b34;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
header .menu li a.active:after{
    width: 100%;
    left: 0;
}






.mini-header{
    position: fixed;
    height: 50px;
    width: 100%;
    z-index: 9;
    box-shadow: -1px 1px 15px rgba(34, 34, 34, .1);
    transition: all 0.3s ease;
    top: 0;
}
.mini-header .menu{
    height: 50px;
}
@media (max-width: 1440px){
    header .container{
        padding: 0 15px;
    }
}
@media (max-width: 768px){
    header .container,
    header .menu ul{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    header .menu ul li{
        margin-bottom: 10px;
    }
}

/*=============================================================================*/

.hero{
    margin: 0 auto;
    width: calc(100% - 30%);
    margin-top: 30px;
}
.hero figure{
    display: flex;
}
.hero figure img{
    width: 100%;
    margin: 0;
}
.hero .hero-content{
    padding: 30px;
    text-align: center;
    background: #e7ac44;
}
.hero .hero-content h1{
    font-size: 2.5rem;
}
.hero .hero-content p{
    font-size: 1.2rem;
}
@media (max-width: 568px){
    .hero{
        width: 100%;
    }
}

/*=============================================================================*/

.container-products {
    margin: 0 auto;
    width: 50%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}
.related-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    margin-top: 100px;
}
.product {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    box-shadow: -1px 1px 15px rgba(34, 34, 34, .1);
    border-radius: 3px;
}

.product h3 {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

.product p{
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.product-item .images {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-item .images img {
    height: auto;
    width: 100%;
}

.product-item .images img:nth-child(2) {
    display: none;
    transition: .5s all;
}

.product-item .images:hover img:nth-child(2) {
    display: block;
    transition: .5s all;
}

.product-item .images:hover img:nth-child(1) {
    display: none;
    transition: .5s all;
}
.product:hover {
    box-shadow: -1px 1px 15px rgba(34, 34, 34, .3);
    transition: .5s all;
}

.product:hover h3 {
    color: #e7ac44;
    transition: .5s all;
}
@media (max-width: 1024px) {
    .container-products {
        width: 75%;
    }
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 568px) {
    .container-products {
        width: 100%;
    }

    .products {
        grid-template-columns: repeat(1, 1fr);
    }

    .product h3 {
        font-size: 16px;
    }

    .product p {
        font-size: 14px;
    }
}
/*=============================================================================*/

.contact{
    margin-top: 50px;
    margin-bottom: 50px;
}
.contact .container{
    margin: 0 auto;
    width: 30%;
}
.contact form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact form h2{
    font-size: 2.5rem;
}
.contact .form-group{
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    width: 100%;
}
.contact form input,
.contact form textarea{
    height: 50px;
    border: 0;
    font-size: 18px;
    border-bottom: 2px solid #9e8765;
    font-family: Gilroy, sans-serif;
    text-align: center;
}
.contact form textarea{
    resize: none;
}
.contact form input:focus,
.contact form textarea:focus{
    outline: none;
}
.contact button{
    margin: 30px 0;
    padding: 10px 20px;
    border-radius: 2px;
    background: #9e8765;
    border: 0;
    color: #fff;
    font: bold 18px/normal 'Gilroy', sans-serif;
    cursor: pointer;
}
.contact button:hover{
    background: #5a4b34;
    transition: .5s all;
}
.contact p{
    text-align: center;
}
.contact p a{
    color: #9e8765;
    font-weight: bold;
    text-decoration: underline;
}
.contact p a:hover{
    color: #5a4b34;
    transition: .5s all;
}
@media (max-width: 768px){
    .contact .container{
        width: 75%;
    }
}

/*=============================================================================*/

#product{
    margin: 0 auto;
    width: 30%;
}
#product .product-detail{
    padding: 30px 0;
    text-align: center;
}
#product .product-detail h3{
    font-size: 2.5rem;
}
#product .product-detail h4{
    font-size: 2rem;
}
#product .product-detail .content{
    padding: 15px 0;
}
.breadcrumb{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}
.breadcrumb li:after{
    content: '/';
    margin: 0 10px;
}
.breadcrumb li:last-child:after{
    content: '';
}
.breadcrumb li,
.breadcrumb li a{
    color: #9e8765;
    text-decoration: none;
}
.breadcrumb li:last-child{
    font-weight: 600;
}
.breadcrumb li a:hover{
    color: #5a4b34;
    transition: .5s all;
}
@media (max-width: 1200px){
    #product{
        width: 90%;
    }
    .breadcrumb{
        flex-direction: column;
    }
}
footer p{
    text-align: center;
    padding: 20px;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    width: 100%;
}
.alert h4 {
    margin-top: 0;
    color: inherit;
}
.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}

.alert-success hr {
    border-top-color: #c9e2b3;
}

.alert-success .alert-link {
    color: #2b542c;
}
/*=============================================================================*/

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/subset-Gilroy-Regular.woff2') format('woff2'),
    url('../fonts/subset-Gilroy-Regular.woff') format('woff'),
    url('../fonts/subset-Gilroy-Regular.svg#Gilroy-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/subset-Gilroy-Black.woff2') format('woff2'),
    url('../fonts/subset-Gilroy-Black.woff') format('woff'),
    url('../fonts/subset-Gilroy-Black.svg#Gilroy-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/subset-Gilroy-Bold.woff2') format('woff2'),
    url('../fonts/subset-Gilroy-Bold.woff') format('woff'),
    url('../fonts/subset-Gilroy-Bold.svg#Gilroy-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/subset-Gilroy-Heavy.woff2') format('woff2'),
    url('../fonts/subset-Gilroy-Heavy.woff') format('woff'),
    url('../fonts/subset-Gilroy-Heavy.svg#Gilroy-Heavy') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/subset-Gilroy-Semibold.woff2') format('woff2'),
    url('../fonts/subset-Gilroy-Semibold.woff') format('woff'),
    url('../fonts/subset-Gilroy-Semibold.svg#Gilroy-Semibold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/subset-Gilroy-Medium.woff2') format('woff2'),
    url('../fonts/subset-Gilroy-Medium.woff') format('woff'),
    url('../fonts/subset-Gilroy-Medium.svg#Gilroy-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/subset-Gilroy-Thin.woff2') format('woff2'),
    url('../fonts/subset-Gilroy-Thin.woff') format('woff'),
    url('../fonts/subset-Gilroy-Thin.svg#Gilroy-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/subset-Gilroy-UltraLight.woff2') format('woff2'),
    url('../fonts/subset-Gilroy-UltraLight.woff') format('woff'),
    url('../fonts/subset-Gilroy-UltraLight.svg#Gilroy-UltraLight') format('svg');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}





.bottom-content{
    /*
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
    text-align: center;

     */
}
.ribbon{
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #ffcd11;
    color: #000000;
    text-align: center;
    padding: 5px 10px;
    z-index: 9;
    font-size: 14px;
    font-weight: bold;
    max-width: 40%;
    margin: -8px auto 0 4%;
    position: absolute;


    /*
    max-width: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #ffcd11;
    text-align: center;
    margin: 0 10px;
    padding: 3px;
    z-index: 9;
    font-size: 12px;
    color: #000;

     */
}
.bottom-content small{
    color: #cf0000;
    /*font-size: 16px;*/
    font-weight: bold;
    text-decoration: line-through;
}
.product-content .ribbon{
    max-width: 17%;
    width: auto;
    margin: 10px 0;
    position: relative;
}
.bottom-content{
    justify-content: flex-start;

}
.bottom-content small{
    margin-right: 10px;
}
.bottom-content p{
    color: #333;
    font-size: 18px;
    font-weight: 600;
}



.product h5{
    color: #444;
    font-size: 18px;
    margin-bottom: 10px;
}
