*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container-fluid{
    max-width: 1920px;
    margin: 0 auto;
}

section{
    padding: 50px 0;
}

/* plus */

:root{
    --color-blankstate: rgba(51, 50, 50, 0.35);
    --color-blankstate-background: rgba(51, 50, 50, 0.1);
    --color-blankstate-border: rgba(51, 50, 50, 0.2);
    --color-input-warning: red;
    --color-image-overlay: #685858;
    --opacity-image-overlay: 0.4;
    --white: #ffffff;
}

a{
    text-decoration: none;
    color: unset;
}

.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    color: #000;
}

.sec--footer{
    background-color: #f6f6f6;
}

.map{
    height: 450px;
}

/* overlay */

.overlay-img{
    position: relative;
}

.overlay-img::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-image-overlay);
    opacity: var(--opacity-image-overlay);
}

.overlay-img .card-img-overlay{
    z-index: 2;
}

/* end overlay */

/* navbar */

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar{
    min-height: 80px;
}

.nav-icons{
    min-width: 95px;
}

/* end navbar */

/* background image */

.bg-container{
    width: 100%;
    background-image: url('../images/bg-img.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sec--header-img .bg-container{
    height: 650px;
}

.sec--fw-img .bg-container{
    height: 475px;
}

.bg-container h1,
.bg-container h2{
    font-size: 70px;
}

.bg-container h1,
.bg-container h2,
.bg-container p{
    text-shadow: 0 0 4px rgb(0 0 0 / 40%);  
}

.bg-container .col-lg-6{
    z-index: 9;
}

/* end background image */

/* input */

.sec--cart tr td input{
    max-width: 65px !important;
    width: 65px !important;
}

.sec--contact-form input:not([type="checkbox"], [type="radio"]),
.sec--contact-form select,
.sec--contact-form textarea,
.sec--checkout input:not([type="checkbox"], [type="radio"]),
.sec--checkout select,
.sec--checkout textarea{
    border: none;
    border-bottom: 1px solid #ced4da;
    padding-left: 0;
    padding-right: 0;
    color: gray;
    border-radius: 0;
}

.sec--contact-form .form-check{
    padding-left: 2.5rem;
}

/* end input */

/* checkout */

.sec--checkout .step-form{
    display: none;
}

.sec--checkout .step-form.active{
    display: block;
}

.sec--checkout .psw {
    display: none;
}

/* checkout style */

.sec--checkout .check-nav-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid gray;
    position: relative;
    cursor: pointer;
}

.sec--checkout p.step-name {
    position: absolute;
    bottom: -40px;
}

.check-nav-item.active {
    background-color: gray;
    width: 50px;
    height: 50px;
}

.sec--checkout input.warning,
.sec--checkout select.warning{
    border-bottom: 1px solid var(--color-input-warning) !important;
}
    
/* end checkout */

/* swiper */

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/* end swiper */

/* video */

.video-img{
    position: relative;
    cursor: pointer;
    z-index: 9;
}

.video-player{
    width: 180px;
    height: 180px;
    border: 8px solid var(--white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-triangle {
    margin-left: 10%;
    width: 0; 
    height: 0; 
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 40px solid var(--white);
}

.video-img:hover .video-player{
    border-color: var(--color-blankstate);
}

.video-img:hover .video-triangle{
    border-left: 40px solid var(--color-blankstate);
}

#video-modal{
    cursor: pointer;
}

#video-modal .modal-content{
    height: 500px;
}

/* end video */

/* media query */

@media screen and (max-width: 992px) {
    .navbar{
        min-height: 56px;
    }

    section{
        padding: 30px 0;
    }

    .nav-icons{
        min-width: unset;
    }
}

@media screen and (max-width: 767px) {
    .sec--header-img .bg-container{
        height: 475px;
    }

    .map{
        height: 400px;
    }

    .bg-container h1,
    .bg-container h2{
        font-size: 35px;
    }

    .sec--cart .btn{
        width: 100%;
    }
}


@media screen and (max-width: 500px){
    .sec--footer form .input-group {
        flex-direction: column;
    }

    .sec--footer form .input-group input{
        width: 100%;
    }

    .sec--footer form .input-group button,
    .sec--footer form .input-group input {
        border-radius: 0.3rem !important;
    }

    .map{
        height: 300px;
    }
}