@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
*{ padding:0px; margin: 0px;}
body{
    font-family: 'Open Sans', sans-serif;
}
ul{
    margin-bottom: 0;
}
.container_70{
    width: 70%;
    margin: 0 auto;
}
nav{
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 0.2s;
}
.nav_scrolled{
    background-color: #F2F2F2;
    color: #1B181A;
    transition-duration: 0.2s;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 1);
    z-index: 1000;
}
.nav_scrolled .menu_list li a{
    color: #1B181A;
    text-shadow: none;
}
header{
    top: 0;
    height: 70vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; 
    color: white;
    text-align: center;
}
.menu_list{
    list-style-type: none;
    color: white;
    padding-top: 2%;
    padding-bottom: 2%;
    display: flex;
    justify-content: end;
    gap: 25px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
}
.menu_list li{
    font-weight: 300;
}
.menu_list li a{
    color: white;
    text-decoration: none;
}
.menu_list--contact{
    font-weight: 500;
}
.header_title{
    width: 100%;
    padding-top: 25vh;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
}
.header_title--top{
    width: 100%;
    text-align: left;
    font-size: 62px;
    border-bottom: 1px solid white;
    font-weight: 100;
}
.header_title--bottom{
    text-align: right;
    font-weight: 100;
    padding-top: 1%;
}
.aboutus_section{
    background-color: #F2F2F2;
    padding: 8vh 0 8vh 0;
}
.aboutus_title{
    width: 100%;
    color: #1B181A;
}
.aboutus_title--top{
    width: 100%;
    text-align: left;
    font-size: 32px;
    border-bottom: 1px solid #1B181A;
    font-weight: 100;
}
.aboutus_title--bottom{
    text-align: right;
    font-weight: 100;
    padding-top: 1%;
}
.aboutus_content{
    font-weight: 100;
    margin-top: 5vh;
    margin-bottom: 5vh;
}
.dark_button{
    padding: 0.8% 2% 0.8% 2%;
    background-color: #1B181A;
    color: #F2F2F2;
    text-decoration: none;
    float: right;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 1);
    font-size: 14px;
}

.goingdark_section{
    padding: 8vh 0 8vh 0;
    background-color: #1B181A;
}
.goingdark_section .container_70{
    position: relative;
}
.goingdark_title{
    width: 100%;
    color: #f2f2f2;
    position: relative;
    z-index: 10;
}
.goingdark_title--top{
    width: 100%;
    text-align: left;
    font-size: 62px;
    border-bottom: 1px solid #f2f2f2;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    font-weight: 100;
}
.goingdark_title--bottom{
    font-weight: 100;
    padding-top: 2%;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
}
.goingdark_section img{
    width: 400px;
    height: 480px;
    display: block;
    position: absolute;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 1);
    right: 0;
    top: 0;
}
.goingdark_button{
    width: 50%;
    display: block;
    text-align: center;
    height:100%;
}
.goingdark_button-text{
    color: #F2f2f2;
    margin-top: 5%;
    margin-bottom: 2%;
    font-weight: 100;
}
.white_button{
    padding: 1.5% 3% 1.5% 3%;
    background-color: #F2F2F2;
    color: #1B181A;
    text-decoration: none;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 1);
    font-size: 14px;
}
.recommended_section{
    background-color: #f2f2f2;
    padding-top: 8vh;
    padding-bottom: 8vh;
}
.recommended_title{
    width: 100%;
    color: #1B181A;
}
.recommended_title--top{
    width: 100%;
    text-align: left;
    font-size: 32px;
    border-bottom: 1px solid #1B181A;
    font-weight: 100;
}
.recommended_title--bottom{
    text-align: right;
    font-weight: 100;
    padding-top: 1%;
}
.recommended_row{
    display: flex;
    flex-direction: row;
    gap:50px;
    margin-top: 5vh;
}
.recommended_tile{
    background-color: #fff;
    box-shadow: 1px 1px 4px 0px rgb(128 128 128);
    padding: 20px;
    width: 30%;
}
.recommended_image img{
    object-fit: contain;
    width: 100%;
}
.recommended_title{
    font-weight: 700;
}
.recommended_content{
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.recommended_button{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: end;
    align-items: center;
}
.recommended_button-price{
    font-size: 14px;
    font-weight: 300;
}
.recommended_button-button{
    color: white;
    width: 30px;
    height: 30px;
    background-color: #1B181A;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    font-size: 12px;
    text-decoration: none;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 1);
    transition-duration: 0.2s;
}
.recommended_button-more{
    width: 100%;
    text-align: center;
    margin-top: 3vh;
}
.recommended_button-text{
    margin-bottom: 3vh;
}
.recommended_dark_button{
    padding: 0.8% 2% 0.8% 2%;
    background-color: #1B181A;
    color: #F2F2F2;
    text-decoration: none;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 1);
    font-size: 14px;
}
.recommended_button-button:hover{
    color: #f2f2f2;
    transform: scale(1.1);
    transition-duration: 0.2s;
}
.white_button:hover{
    color: #1b1b1b;
}
.dark_button:hover{
    color: #F2f2f2;
}
.recommended_dark_button:hover{
    color: #F2f2f2;
}
footer{
    background-color: #1B181A;
    padding-top: 5vh;
    padding-bottom: 5vh;
}
.footer_title{
    width: 100%;
    color: #f2f2f2;
    position: relative;
    z-index: 10;
}
.footer_title--top{
    width: 100%;
    text-align: left;
    font-size: 62px;
    border-bottom: 1px solid #f2f2f2;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    font-weight: 100;
    margin-bottom: 3vh;
}
.footer_title--bottom{
    font-weight: 100;
    padding-top: 2%;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
}
.footer_info{
    display: flex;
    flex-direction: row;
    gap: 50px;
}
.footer_info-tile{
    width: 50%;
}
.footer_info-tile-buttons a{
    color: #f2f2f2;
    text-decoration: none;
}
.footer_info-tile-text{
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    color: #f2f2f2;
    font-weight: 300;
}
.footer_info-tile-buttons{
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 10px;
}
.footer_info-tile-buttons a{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 1);
    font-size: 20px;
}
.instagram{
    background: rgb(229,80,57);
    background: linear-gradient(130deg, rgba(229,80,57,1) 0%, rgba(12,19,193,1) 100%);
}
.facebook{
    background: rgb(59,89,152);
    background: linear-gradient(130deg, rgba(59,89,152,1) 0%, rgba(12,30,66,1) 100%);
}
.footer_info-tile-mail{
    margin-top: 1vh;
    margin-bottom: 1vh;
}
.footer_info-tile-mail a{
    color: #F2f2f2;
    text-decoration: none;
    font-size: 28px;
}
.footer_info-tile-phone{
    font-size: 28px;
    color: #F2F2F2;
}
.section_title{
    width: 100%;
    color: #1B181A;
}
.section_title--top{
    width: 100%;
    text-align: left;
    font-size: 32px;
    border-bottom: 1px solid #1B181A;
    font-weight: 100;
}
.productlist_section{
    background-color: #F2F2F2;
    padding-top: 8vh;
    padding-bottom: 8vh;
}
.section_title--bottom{
    text-align: right;
    font-weight: 100;
    padding-top: 1%;
}
.productlist_grid{
    display: inline-grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 5vh;
}
.productlist_tile{
    background-color: #fff;
    box-shadow: 1px 1px 4px 0px rgb(128 128 128);
    padding: 20px;
}
.productlist_image{
    text-align: center;
}
.productlist_image img{
    object-fit: contain;
    width: 350px;
}
.productlist_title{
    font-weight: 700;
}
.productlist_content{
    font-weight: 300;
    display: -webkit-box;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    -webkit-line-clamp: 2;
}
.productlist_button{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: end;
    align-items: center;
}
.productlist_button-price{
    font-size: 14px;
    font-weight: 300;
}
.productlist_button-button{
    color: white;
    width: 30px;
    height: 30px;
    background-color: #1B181A;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    font-size: 12px;
    text-decoration: none;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 1);
    transition-duration: 0.2s;
}
.productlist_button-button:hover{
    color: #f2f2f2;
    transition-duration: 0.2s;
    transform: scale(1.1);
}
.recommended-im2{
    display: none;
}
.productlist-im2{
    display: none;
}
.singleitemsection{
    background-color: #F2F2F2;
    padding-top: 5vh;
    padding-bottom: 5vh;
}
.singleitemsection_images{
    display: flex;
    flex-direction: row;
    margin-top: 3vh;
    gap: 20px;
}
.singleitemsection_mainimage{
    background-color: white;
    padding: 5px;
    object-fit: contain;
    width: 50%;
}
.singleitemsection_mainimage img{
    width: 100%;
}
.carousel-control-next-icon{
    background-color: black;
    border-radius: 100%;
    padding: 5px;
    background-size: 60%;
}
.carousel-control-prev-icon{
    background-color: black;
    border-radius: 100%;
    padding: 5px;
    background-size: 60%;
}
.singleitemsection_images-about{
    width: 50%;
}
.singleitemsection_content{
    margin-top: 3vh;
    font-weight: 300;
}
.section_title-price{
    background-color: #1B181A;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #f2f2f2;
    font-size: 24px;
}
.topbar_content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    position: fixed;
    z-index: 1000;
    margin: 0 auto;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 1);
    padding: 5px 15px 5px 15px;
    background-color: #1B181A;
    top: 15px;
    left: 15px;
    border-radius: 15px;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 100;
}
.topbar_content a{
    color: white;
}
.contactsection{
    margin: 3% 0% 3% 0%;
}
.contactsection .form_container{
    width: 600px;
    margin: 0 auto;
}
.contactsection .form_container input{
    width: 100%;
    margin: 5px;
    padding: 5px 2px 5px 2px;
    text-align: center;
    border: 1px solid #1B181A;
    font-weight: 100;
}
.contactsection .form_container textarea{
    width: 100%;
    resize: none;
    margin: 5px;
    padding: 5px 2px 5px 2px;
    text-align: center;
    border: 1px solid #1B181A;
    font-weight: 100;
}
.contactsection .productlist_button-button{
    width: 20% !important;
    display: block;
    margin: 0 auto !important;
    border-radius: 0px;
}
.global_product_link{
    color: #1B181A;;
    text-decoration: none;;
}
.adminLoginForm{
    width: 70%;
    margin: 0 auto;
    padding: 2% 0% 2% 0%;
}
@media (max-width: 1740px){
    .productlist_grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1140px){
    .productlist_grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .productlist_title{
        font-size: 28px;
    }
    .productlist_content{
        font-size: 24px;
    }
    .menu_list li a{
        font-size: 24px;
    }
    .header_title--bottom{
        font-size: 24px;
    }
    .aboutus_title--top{
        font-size: 52px;
    }
    .aboutus_title--bottom{
        font-size: 24px;
    }
    .aboutus_content{
        font-size: 24px;
    }
    .dark_button{
        font-size: 28px;
        padding: 1% 2.2% 1% 2.2%;
    }
    .goingdark_title--top{
        font-size: 52px;
    }
    .goingdark_title--bottom{
        font-size: 24px;
    }
    .goingdark_button-text{
        font-size: 24px;
    }
    .white_button{
        font-size: 28px;
        padding: 1.5% 3% 1.5% 3%;
    }
    .recommended_title--top{
        font-size: 52px;
    }
    .recommended_title--bottom{
        font-size: 24px;
    }
    .recommended_button-text{
        font-size: 24px;
    }
    .recommended_dark_button{
        font-size: 28px;
        padding: 1% 2.2% 1% 2.2%;
    }
    .section_title--top{
        font-size: 40px;
    }
    .section_title--bottom{
        font-size: 24px;
    }
    .singleitemsection_content{
        font-size: 28px;
    }
    .singleitemsection_images{
        flex-direction: column;
    }
    .singleitemsection_mainimage{
        width: 100%;
    }
    .singleitemsection_images-about{
        width: 100%;
    }
    .section_title-price{
        font-size: 32px;
    }
    .productlist_button-price{
        font-size: 24px;
    }
    .productlist_button-button{
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    .topbar_content{
        top: 75px;
    }
    .recommended_row{
        overflow-y: scroll;
        width: 100%;
    }
    .recommended_tile{
        width: 450px;
    }
    .recommended_image{
        width: 400px;
        display: block;
        margin: 0 auto;
    }
    .recommended_title {
        font-size: 28px;
    }
    .recommended_content {
        font-size: 24px;
    }
    .recommended_button-price{
        font-size: 28px;
    }
    .recommended_button-button{
        font-size: 18px;
        width: 50px; 
        height: 50px;
    }
    .contactsection .section_title--top{
        font-size: 52px;
    }
    .contactsection .section_title--bottom{
        font-size: 32px;
    }
    .contactsection .form_container{
        margin-top: 3%;
    }
    .contactsection .form_container input{
        padding: 10px 4px 10px 4px;
        font-size: 28px;
    }
    .contactsection .form_container textarea{
        padding: 10px 4px 10px 4px;
        font-size: 28px;
    }
    .contactsection .productlist_button-button{
        padding: 2px 4px 10px 4px !important;
    }
    .footer_info-tile-text{
        font-size: 24px;
    }
    .footer_info-tile-buttons a{
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
    .adminLoginForm label{
        font-size: 28px;
    }
    .adminLoginForm input{
        padding: 1.375rem 1.75rem;
        font-size: 28px;
    }
    .adminLoginForm button{
        margin-top: 2%;
        padding: 1rem 1rem;
        font-size: 28px;
    }
    .goingdark_button {
        width: 40%;
    }
    .productlist_content{
        font-weight: 300;
        display: -webkit-box;
        -webkit-box-orient: vertical;  
        overflow: hidden;
        text-overflow: ellipsis;
        height: 80px;
    }
    .recommended_content{
        font-weight: 300;
        display: -webkit-box;
        height: 80px;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;  
        overflow: hidden;
    }
}
