.title {
    display: inline-block;
    position: relative;
    color: rgb(251, 100, 12);
    text-transform: uppercase
}

.title::before,
.title::after {
    content: '';
    width: 10px;
    position: absolute;
    height: 100%;
    background: rgb(251, 100, 12);
    left: -35px;
    z-index: -1;
    transform: skewX(-20deg)
}

.title::before {
    background: #ccc;
    left: -25px;
}

.h-title {
    color: #FB6C18;
    text-align: left;
    margin: 0;
    font-size: 18px;
}

.btn {
    color: #fff;
    padding: 9px 19px;
    background: #fb6c18;
    border: none;
    border-radius: 4px;
}


.input {
    width: 100%;
    padding: 10px 12px;
    border: #bbb 1px solid;
    border-radius: 5px;
    margin-bottom: 15px;
}

textarea.input {
    min-height: 150px;
    resize: vertical;
}

.main-nav {
    background: rgb(34, 34, 34);
    background: -moz-linear-gradient(-45deg, rgba(34, 34, 34, 1) 0%, rgba(34, 34, 34, 1) 50%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(34, 34, 34, 1) 0%, rgba(34, 34, 34, 1) 50%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(135deg, rgba(34, 34, 34, 1) 0%, rgba(34, 34, 34, 1) 50%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#222222', endColorstr='#ffffff', GradientType=1);
}

.top-nav {
    padding: 0 3%;
    background: rgba(34, 34, 34, 0.95);
}

.top-nav a {
    padding: 5px 10px;
    display: inline-block;
    color: #fff;
    font-size: 13px;
    border-top: 2px solid rgba(0, 0, 0, 0);
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    transition: 0.3s all;
}

.top-nav a:hover {
    border-bottom-color: rgb(251, 100, 12);
}

.middle-nav {
    padding: 10px 3%;
    align-items: center;
    background: rgba(250, 250, 250, 0.95);
}

.main-nav .nav-logo {
    width: 250px;
}

.search-parent {
    width: 350px;
    display: flex;
    border-radius: 5px;
    border: rgb(251, 100, 12) 1px solid;
    overflow: hidden;

}

.search-parent input {
    flex-grow: 1;
    background: none;
    border: none;
    padding: 10px 16px;
}

.search-parent button {
    background: none;
    border: none;
    font-size: 17px;
    padding: 0 15px;
    background: rgb(251, 100, 12);
    color: #fff;
    cursor: pointer;
}

.bottom-nav {
    padding: 0 3%;
    background: rgba(251, 100, 12, 0.95);
}

nav .links {
    display: flex;
    width: 100%;
    justify-content: center
}

nav .links>li>a {
    color: #fff;
    padding: 18px 20px;
    display: inline-block;
    transition: 0.3s all;
}

nav .links>li>a:hover {
    background: rgba(0, 0, 0, 0.1);
}

nav .links li ul {
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 3px;
    background: #fff;
}

nav .links li ul a {
    color: #111;
    transition: 0.3s all;
}

nav .links li ul a:hover {
    background: rgba(251, 100, 12, 0.2);
}

nav .links .wide {
    padding: 0 3%;
}



.main-nav .links li ul.wide-drop {
    width: 100%;
    right: 0;
    padding: 0 5%;
}

.main-nav .links li ul.wide-drop li {
    display: inline-block;
    width: 24%;
}

.main-nav .links li ul.wide-drop li span {
    margin-right: 10px;
}


/*  */

.boxes-parent {
    padding: 25px 3%;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.box-group {
    width: 32%;
    border-radius: 10px;
    overflow: hidden;
}

.box-slider {
    width: 65%;
    margin: 0 !important;
}

.box-item {
    width: 100%;
    background-size: cover;
    height: 480px;
}

.box-item .box-content {
    text-align: center;
    padding-top: 10px;
}

.box-item .box-content p:last-child {
    margin: 0;
    font-size: 60px;
    color: #fff;
}

.box-item .box-content p:first-child {
    margin: 0;
    color: #FB6C18;
    font-size: 38px;
    line-height: 0.8;
    text-shadow: #fff 0px 0px 2px;
    margin-top: 20px;
    transition: 0.3s all;
}

.box-item:hover .box-content p:first-child {
    margin-top: 10px;
}

.box-slider .slick-dots {
    text-align: right;
    bottom: 25px;
    padding-right: 25px;
}

.box-slider .slick-dots li button:before {
    font-size: 20px;
    color: #fff;
    transition: 0.3s all;
    opacity: 0.5;
}

.box-slider .slick-dots li.slick-active button:before {
    opacity: 0.9;
}

.box-group.box-3 {
    width: 23%;
}

.box-group.box-3 .box-item {
    height: 280px;
}

.p-card {
    width: 300px;
    display: inline-block;
    background: #fff;
    border: #bbb 1px solid;
    border-radius: 5px;
    text-align: center;
}

.p-card .p-img {
    width: 100%;
    height: 300px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.p-card h2 {
    padding: 10px;
    color: #222;
    margin: 0;
    width: 100%;
    text-align: left;
    font-size: 20px;
    min-height: 75px;
}

.p-card .p-price {
    text-align: right;
    padding: 0 10px;
    color: #FB6C18;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 35px;
}

.p-card .p-brand {
    color: #FB6C18;
    margin: 0;
    padding: 0 10px;
    text-align: left;
}

.p-card .p-weight,
.p-card .p-code {
    display: none
}

.p-btns {
    display: flex;
    padding: 0 10px;
    cursor: pointer;
}

.p-card .p-big-btn {
    background: rgb(251, 100, 12);
    color: #fff;
    padding: 5px;
    width: 70%;
    border-radius: 10px 0 0 0;
}

.p-card .p-small-btn {
    background: #eee;
    color: rgb(251, 100, 12);
    padding: 5px;
    width: 30%;
    border-radius: 0 10px 0 0;
}

.cards-slider-parent {
    padding: 0 4%;
}

.cards-slider .slick-next::before,
.cards-slider .slick-prev::before {
    color: rgb(251, 100, 12)
}


#prevModal {
    max-width: 650px;
}

#prevModal img {
    max-width: 580px;
    display: block;
    margin: auto;

}

#prevModal .ms {
    background: #FB6C18;
    border-radius: 60px;
    padding: 5px 15px;
    color: #fff;
    display: inline-block;
    margin-bottom: 0;

}

#prevModal .v-brand {
    color: #FB6C18;
    margin-bottom: 0;
}

#prevModal .v-title {
    font-size: 22px;
    margin: 5px;
}


#prevModal .v-code,
#prevModal .v-size,
#prevModal .v-price {
    font-size: 17px;
    padding-left: 25px;
}

#prevModal .btn span:first-child {
    display: block;
    font-size: 20px;
}

/* #prevModal .btn span:last-child {
    display: block;
    font-size: 13px;
} */

.nav-btn {
    background: none;
    color: #fb6c18;
    font-size: 30px;
    border: none;
    display: none;
}

.cards {
    text-align: center;
}

.cards .p-card {
    margin: 5px;
}

.about-text {
    padding: 0 15%;
    text-align: left;
    line-height: 1.8;
    font-size: 18px;
}

footer {
    background: #fff;
    padding-top: 20px;
    margin-top: 20px;
    border-top: #FB6C18 1px solid;
}

footer .footer-logo {
    width: 80%;
    display: block;
    margin: auto;
}

footer h3 {
    color: #FB6C18;
}

footer a {
    color: #222;
    padding: 5px;
    padding-left: 10px;
}

footer span {
    width: 25px;
    text-align: center;
}

footer .copy {
    background: rgba(0, 0, 0, 0.1)
}

@media(max-width:768px) {

    body{
        padding-top: 50px;
    }

    body .bottom-nav {
        display: none;
    }

    body .top-nav {
        display: none;
    }

    body .middle-nav .search-parent{
        display: none;
    }

    body .nav-btn{
        display: block;
    }

    body .main-nav .nav-logo{
        width: auto;
        height: 35px;
    }

    body .middle-nav{
        padding: 8px 3%;
        z-index: 5;
        position: fixed;
        width: 100%;
        background: #fff;
        top: 0;
        box-shadow: rgba(0,0,0,0.3) 0 0 9px;
    }

    body .boxes-parent{
        display: block;
        padding: 0

    }

    body .boxes-parent .box-slider{
        width: 100%;
        border-radius: 0;
    }

    body .box-item .box-content p:last-child{
        font-size: 35px;
    }

    .box-item .box-content p:first-child{
        font-size: 22px;
    }

    body .box-group {
        width: 90%;
        display: block;
        margin: auto;
        margin-top: 26px;
    }

    body .box-group.box-3{
        width: 90%;
    }

    body .box-item{
        height: 315px;
    }

    body #prevModal img{
        width: 100%;
        max-width: 100%;
    }
}