@font-face {
    font-family: 'ArialBlack';
    src: url('../fonts/ArialBlack/ARIBLK.TTF') format(.TTF);
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}
section {
    background: #000;
    overflow: hidden;
}

/* HEADER 
=============================== */

.header {
    position: relative;
    width: 100%;
    height: auto;
    background: #000;
}
.shoppingmodal {

}
.header__item {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.header__item select {
    font-family: 'ArialBlack';
    font-weight: 700;
    letter-spacing: .4px;
    -webkit-appearance: none;
    background: #000;
    color: #fff;
    border: none;
    outline: none;
    
}
.header__item select:focus {
    background: #000;
    border: none;
    outline: none;
}
.header__item option {
    font-family: 'ArialBlack';
    font-weight: 700;
    color: #fff;
    border: none;
    outline: none;
}
.logo {
    position: relative;
}
.logo a {
    text-decoration: none;
}
.logo span img {
    position: absolute;
    /* width: auto;
    height: 80px; */
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.logo h1 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    font-size: 66px;
    color: #fff;
    letter-spacing: 1.2px;
    word-spacing: 60px;
}
.home-bar {
    display: none;
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    z-index: 1;
}
.home-bar i {
    font-size: 18px;
    color: #fff;
}
.shopping img:hover {
    opacity: 0.8;
}
.header__menu {
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.header__menu::before {
    content: '';
    position: absolute;
    width: 100%;
    height: .1px;
    top: 0;
    left: 0;
    background: #ccc;
    opacity: .2;
}
.header__menu a {
    margin: 0 2rem;
    padding: 2px 4px;
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: all .2s ease;
    letter-spacing: .1rem;
}
.header__menu a:hover {
    opacity: 0.8;
}

/* Section First Block 
======================================*/

.section-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.section-slider img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}
.section-slider p {
    font-size: 18px;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    color: #fff;
    margin: 10px 0;
}
.btnSearch {
    width: 150px;
    height: 30px;
    margin: 1rem 0;
    background: linear-gradient(45deg, rgb(205, 168, 88), rgb(227, 216, 111), rgb(227, 216, 111), rgb(223, 201, 99));
    border: 1px solid rgb(227, 216, 111);
    opacity: 1;
    transition: all 0.4s ease-in;
}
.btnSearch:hover {
    opacity: 0.8;
}
.btnSearch a {
    text-decoration: none;
    color: #000;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: .4px;
}
/* Card Block */
.card-field {
    position: relative;
    width: 1200px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}
.card-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 1;
}
.card-icon i {
    color: #fff;
    font-size: 36px;
}
.card-icon:hover i {
    opacity: 0.7;
}
.left {
    transition: all .2s ease-in;
    left: -40px;
}
.right {
    transition: all .2s ease-in;
    right: -40px;
}
.card-item {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    cursor: pointer;
    transition: all .8s ease;
}
.card {
    width: 200px;
    height: auto;
    text-align: center;
    background: #000;
}
.card i {
    margin: 4px 0;
    font-size: 18px;
    color: #fff;
    transition: all 0.4s ease;
}
.card i:hover {
    opacity: 0.8;
}
.card img {
    width: 100%;
    object-fit: cover;
    margin: 8px 0;
}
.card a {
    text-decoration: none;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .2px;
    transition: all 0.4s ease;
}
.card a:hover {
    color: #ccc;
}
.card p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
    color: #fff;
}
/* Section text */

.section-text {
    width: 600px;
    height: auto;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
}
.section-text h4 {
    padding: 10px 0;
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
}
.section-text p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}
.section-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
}
.bar-video {
    width: 660px;
    height: 390px;

}
#bgvideo {
    width: 100%;
    pointer-events: none;
}
/* slider width 100% over flow  */

.bar-slider {
    position: relative;
    width: 600px;
    height: auto;
    overflow: hidden;
}
.slider-icon {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: all .4s ease-out;
    z-index: 1;
}
.prev {
    left: -20px;
}
.next {
    right: -20px;
}
.slider-icon i {
    color: #fff;
    font-size: 18px;
    transition: all 0.4s ease;
}
.slider-icon i:hover {
   opacity: 0.7;
}
.slider-item {
    display: flex;
    justify-content: center;
    align-items: baseline;
    transition: all 0.4s ease;
}
.slider-item .items {
    width: 200px;
    height: auto;
    padding: 4px 0;
    text-align: center;
}
.items img {
    width: 100%;
}
.items a {
    text-decoration: none;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .2px;
    transition: all 0.4s ease;
}
.items a:hover {
    color: #ccc;
}
.items p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
    color: #fff;
}
/* Section btn */
.collectbtn {
    padding: 10px 0;
}
.collection {
    width: 200px;
    height: 40px;
    line-height: 38px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: all .2s ease;
}
.collection:hover {
    border: 1px solid rgba(255, 255, 255, 1)
}
.collection a {
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}
/* backgroundelement */

.backgroundelement {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 382px;
    background: url('../img/jpg/background.jpg') no-repeat center;
    background-size: cover;
}
.backgroundelement img {
    position: absolute;
    width: 340px;
    height: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.backgroundelement .btnSearch {
    position: absolute;
    width: 250px;
    bottom: 10px;
    right: 0;
}
/*  Background Element */
.wrapper {
    width: 100%;
    height: auto;
    margin: 0 auto;
    background: url('../img/jpg/pexels-takeshi-arai-4107337\ 1.png') no-repeat;
    background-size: cover;
}
.wrapperitems {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.wrapper .items {
    width: 250px;
    height: 448px;
    text-align: center;
}
.wrapper .items img {
    width: 242px;
    height: 400px;
}
.wrapper .items a {
    font-size: 18px;
}
.wrapper .items p {
    font-size: 14px;
}
.wrapper .text {
    text-align: center;
    margin-top: 150px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    color: #fff;

}
.wrapper .text h3 {
    font-size: 24px;
}   
.wrapper .text p {
    margin: 10px 0;
    font-size: 14px;
}
.watchbtn {
    width: 200px;
    height: 30px;
    margin-top: 140px;
    padding: 4px 0;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background: #000;
    border: 1px solid #000;
    transition: all 0.4s ease;
    letter-spacing: 0.2px;
}
.watchbtn:hover {
    background: rgb(17, 17, 17);
}

/* Contact 
===============================================*/
.contact {
    width: 100%;
    height: auto;
    padding-top: 10px;
    text-align: center;
}
.contact-items {
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    flex-wrap: wrap;
}
.contact-item {
    width: 500px;
    height: auto;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    
}
.contact-item  h2 {
    font-size: 24px;
    color: #fff;
}
.contact-item  h5 {
    font-size: 14px;
    padding-top: 4px;
    color: #fff;
}
.contact-item p {
    text-align: start;
    font-size: 15px;
    color: #fff;
}
.contact-item span  {
    margin-right: 1rem;
}
.contact-item  form  {
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    flex-wrap: wrap;
}
.contact-item  form label {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    color: #fff;
}
.contact-item  form input {
    width: 313px;
    height: 30px;
    border: 1px solid #000;
    outline: none;
    text-indent: 4px;
    text-transform: capitalize;
}
.contact-item form button {
    width: 60px;
}
.contact-menu {
    margin: 10px 0;
}
.contact-menu ul{
    display: flex;
    justify-content: space-evenly;
    align-items: baseline;
}
.contact-menu ul li a{
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 2px 4px;
}
.contact-menu ul li a:hover {
    color: #ccc;
}

/* Footer  */
.footer {
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
}
.footer p {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}