/*-----------------------------------------
[Table Of Content]

    01. Typography CSS
    02. Color CSS
    03. Common Style CSS
        3.1 - Buttons Style
        3.2 - Section title Style
        3.3 - Section title With Arrows
        3.4 - Slick Slider Customization
        3.5 - Slick Slider Arrows
        3.6 - Slick Slider Gutters
        3.7 - Background Image
        3.8 - Overflow
        3.9 - Magnific Popup Customization
        3.10 - Form Style CSS
        3.11 - Nice Select Customization
        3.12 - Custom Checkbox & Radio Button
    04. Header Style CSS
        4.1 - Start Pre Header Area
        4.2 - Start Header Bottom Area
        4.3 - Main Navigation CSS
        4.4 - Header Info Style CSS
    05. Off Canvas Menu CSS
    06. Service Style CSS
        6.1 - Leave a Message CSS
    07. Latest Project Style CSS
    08. About Area Style CSS
    09. Testimonial Style CSS
    10. News Style CSS
    11. Why Choose Us Style CSS
    12. Our Clients Style CSS
    13. Call to Action Style CSS
    14. Team Member Style CSS
    15. Banner Style CSS
    16. Counter Up Style CSS
    17. Page Header Style CSS
    18. Project Details Style CSS
    19. Service Details Style CSS
    20. Sidebar Style CSS
    21. Blog Details Style CSS
    22. Contact Style CSS
    23. Product Style CSS
    24. Shop Page Style CSS
    25. Product Details Style CSS
    26. Cart Page Style CSS
    27. Checkout Page Style CSS
    28. Social Icons Style CSS
    29. Start Revolution Slider CSS
    30. Footer Area Style CSS
----------------------------------------*/
/*=====================================
   01. Typography CSS
===================================== */
body {
    color: #858585;
    font-size: 16px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
}

/* Remove text-shadow in selection highlight. */
::-moz-selection {
    background: #FA9A00;
    color: #FFFFFF;
    text-shadow: none;
}

::selection {
    background: #FA9A00;
    color: #FFFFFF;
    text-shadow: none;
}

/* A better looking default horizontal rule */
hr {
    border: 0;
    border-top: 1px solid #ddd;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;
    overflow: visible;
}

/* Remove the gap between audio, canvas, iframes,images, videos */
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/* Remove default fieldset styles. */
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

/* Allow only vertical resizing of textareas. */
textarea {
    resize: vertical;
}

/* Paragraph Last Child Margin Remove */
p {
    margin-bottom: 15px;
}

p:last-child {
    margin-bottom: 0;
}

/* Anchor Tag Default Style */
a {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    outline: none;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #FA9A00;
    outline: none;
    text-decoration: none;
}

textarea:focus,
textarea:active,
input:focus,
input:active {
    outline: none;
}

/* Heading Default Style */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 700;
    color: #333333;
    line-height: 1.3;
}

h1,
.h1 {
    font-size: 36px;
    margin-bottom: 14px;
}

@media only screen and (max-width: 767.98px) {

    h1,
    .h1 {
        font-size: 30px;
    }
}

h2,
.h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 767.98px) {

    h2,
    .h2 {
        font-size: 28px;
    }
}

h3,
.h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

@media only screen and (max-width: 767.98px) {

    h3,
    .h3 {
        font-size: 26px;
    }
}

h4,
.h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 17px;
}

h5,
.h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

h6,
.h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

strong,
b {
    font-weight: 700;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

button:active,
button:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*==========================
02. Color CSS
============================*/
.primary-color {
    color: #FA9A00;
}

.bg-brand {
    background-color: #FA9A00 !important;
}

/*============================
03. Common Style CSS
==============================*/
/*------------------
3.1 - Buttons Style
--------------------*/
.btn-group .btn {
    margin-right: 15px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

.btn {
    border-radius: 0;
    font-weight: 600;
    text-transform: capitalize;
    padding: 10px 25px;
    -webkit-transition: 0.4s ease-in;
    -o-transition: 0.4s ease-in;
    transition: 0.4s ease-in;
    outline: none;
}

@media only screen and (max-width: 575.98px) {
    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

.btn:focus,
.btn:active {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: inherit;
}

.btn-small {
    padding: 7px 15px;
}

.btn-brand {
    background-color: #FA9A00;
    color: #FFFFFF;
}

.btn-brand:hover {
    background-color: #222222;
    color: #FFFFFF;
}

.btn-bordered {
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.btn-bordered:hover {
    background-color: #FA9A00;
    border-color: #FA9A00;
}

.btn-transparent {
    border: 1px solid #FA9A00;
    color: #FA9A00;
}

.btn-transparent:hover {
    background-color: #FA9A00;
    border-color: #FA9A00;
}

.btn-black {
    background-color: #222222;
    color: #FFFFFF;
}

.btn-black:hover {
    background-color: #FA9A00;
}

.btn-close {
    background-color: #222222;
    color: #FFFFFF;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 40px;
}

.btn-close:hover {
    background-color: #FA9A00;
}

.btn-read-more {
    color: #FA9A00;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding: 3px 5px;
}

.btn-read-more:hover {
    color: #222222;
}

.btn-read-more:after,
.btn-read-more:before {
    background-color: #FA9A00;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
}

.btn-read-more:after {
    height: 2px;
    width: 100%;
}

.btn-read-more:before {
    height: 10px;
    width: 2px;
}

/*-------------------------
3.2 - Section title Style
--------------------------*/
.section-title-wrap {
    position: relative;
    overflow: hidden;
}

.section-title-wrap h2 {
    font-size: 26px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    margin-bottom: 0;
}

.section-title-wrap h2:before {
    background-color: #ddd;
    content: '';
    position: absolute;
    top: 16px;
    left: calc(100% + 20px);
    height: 1px;
    width: 1200px;
}

.section-title-wrap.layout--2 {
    text-align: center;
}

.section-title-wrap.layout--2:before {
    display: none;
}

.section-title-wrap.layout--2 h2 {
    background-color: inherit;
    margin-bottom: 0;
    padding-right: 0;
    position: relative;
}

.section-title-wrap.layout--2 h2:before,
.section-title-wrap.layout--2 h2:after {
    background-color: #ddd;
    content: '';
    position: absolute;
    top: 16px;
    left: calc(100% + 20px);
    height: 1px;
    width: 800px;
}

.section-title-wrap.layout--2 h2:after {
    left: auto;
    right: calc(100% + 20px);
}

.section-title-wrap.white h2 {
    color: #FFFFFF;
}

.section-title-wrap.white h2:before,
.section-title-wrap.white h2:after {
    background-color: rgba(255, 255, 255, 0.3);
}

/*--------------------------------
3.3 - Section title With Arrows
---------------------------------*/
.section-header-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.section-header-wrap .section-title-wrap {
    width: calc(100% - 100px);
}

.section-header-wrap .section-title-wrap h2 {
    margin-bottom: 0;
}

/*----------------------------------
3.4 - Slick Slider Customization
-----------------------------------*/
.slick-slider .slick-slide > div > div,
.slick-slider .slick-slide > div > figure {
    vertical-align: middle;
}

.slick-slider .slick-dots {
    margin-top: 20px;
    text-align: center;
    line-height: 1;
}

.slick-slider .slick-dots li {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    margin-right: 10px;
    height: 10px;
    width: 10px;
}

.slick-slider .slick-dots li:hover,
.slick-slider .slick-dots li.slick-active {
    background-color: #FA9A00;
}

.slick-slider .slick-dots li button {
    display: none;
}

/*-------------------------
3.5 - Slick Slider Arrows
--------------------------*/
.ht-slick-arrows button {
    background-color: #EEEEEE;
    color: #222222;
    font-size: 18px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-right: 5px;
    line-height: 40px;
    height: 40px;
    width: 40px;
}

.ht-slick-arrows button:last-child {
    margin-right: 0;
}

.ht-slick-arrows button.slick-disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.ht-slick-arrows button:hover {
    background-color: #FA9A00;
    color: #FFFFFF;
}

.ht-slick-arrows--two button {
    background-color: #FFFFFF;
    color: #aaaaaa;
}

.ht-slick-arrows.absolute-middle {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.ht-slick-arrows.absolute-middle button {
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
}

.ht-slick-arrows.absolute-middle button:nth-child(2n) {
    left: auto;
    right: 15px;
}

.ht-slick-wrapper {
    position: relative;
}

.ht-slick-wrapper:hover .ht-slick-arrows.absolute-middle {
    opacity: 1;
    visibility: visible;
}

/*--------------------------
3.6 - Slick Slider Gutters
---------------------------*/
.slick-row-0 .slick-list {
    margin: 0 0px;
}

.slick-row-0 .slick-list .slick-slide {
    margin: 0 0px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-0 .slick-list {
        margin: 0 0px !important;
    }

    .slick-sm-row-0 .slick-list .slick-slide {
        margin: 0 0px !important;
    }
}

.slick-row-2 .slick-list {
    margin: 0 -1px;
}

.slick-row-2 .slick-list .slick-slide {
    margin: 0 1px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-2 .slick-list {
        margin: 0 -1px !important;
    }

    .slick-sm-row-2 .slick-list .slick-slide {
        margin: 0 1px !important;
    }
}

.slick-row-4 .slick-list {
    margin: 0 -2px;
}

.slick-row-4 .slick-list .slick-slide {
    margin: 0 2px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-4 .slick-list {
        margin: 0 -2px !important;
    }

    .slick-sm-row-4 .slick-list .slick-slide {
        margin: 0 2px !important;
    }
}

.slick-row-6 .slick-list {
    margin: 0 -3px;
}

.slick-row-6 .slick-list .slick-slide {
    margin: 0 3px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-6 .slick-list {
        margin: 0 -3px !important;
    }

    .slick-sm-row-6 .slick-list .slick-slide {
        margin: 0 3px !important;
    }
}

.slick-row-8 .slick-list {
    margin: 0 -4px;
}

.slick-row-8 .slick-list .slick-slide {
    margin: 0 4px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-8 .slick-list {
        margin: 0 -4px !important;
    }

    .slick-sm-row-8 .slick-list .slick-slide {
        margin: 0 4px !important;
    }
}

.slick-row-10 .slick-list {
    margin: 0 -5px;
}

.slick-row-10 .slick-list .slick-slide {
    margin: 0 5px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-10 .slick-list {
        margin: 0 -5px !important;
    }

    .slick-sm-row-10 .slick-list .slick-slide {
        margin: 0 5px !important;
    }
}

.slick-row-12 .slick-list {
    margin: 0 -6px;
}

.slick-row-12 .slick-list .slick-slide {
    margin: 0 6px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-12 .slick-list {
        margin: 0 -6px !important;
    }

    .slick-sm-row-12 .slick-list .slick-slide {
        margin: 0 6px !important;
    }
}

.slick-row-14 .slick-list {
    margin: 0 -7px;
}

.slick-row-14 .slick-list .slick-slide {
    margin: 0 7px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-14 .slick-list {
        margin: 0 -7px !important;
    }

    .slick-sm-row-14 .slick-list .slick-slide {
        margin: 0 7px !important;
    }
}

.slick-row-16 .slick-list {
    margin: 0 -8px;
}

.slick-row-16 .slick-list .slick-slide {
    margin: 0 8px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-16 .slick-list {
        margin: 0 -8px !important;
    }

    .slick-sm-row-16 .slick-list .slick-slide {
        margin: 0 8px !important;
    }
}

.slick-row-18 .slick-list {
    margin: 0 -9px;
}

.slick-row-18 .slick-list .slick-slide {
    margin: 0 9px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-18 .slick-list {
        margin: 0 -9px !important;
    }

    .slick-sm-row-18 .slick-list .slick-slide {
        margin: 0 9px !important;
    }
}

.slick-row-20 .slick-list {
    margin: 0 -10px;
}

.slick-row-20 .slick-list .slick-slide {
    margin: 0 10px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-20 .slick-list {
        margin: 0 -10px !important;
    }

    .slick-sm-row-20 .slick-list .slick-slide {
        margin: 0 10px !important;
    }
}

.slick-row-22 .slick-list {
    margin: 0 -11px;
}

.slick-row-22 .slick-list .slick-slide {
    margin: 0 11px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-22 .slick-list {
        margin: 0 -11px !important;
    }

    .slick-sm-row-22 .slick-list .slick-slide {
        margin: 0 11px !important;
    }
}

.slick-row-24 .slick-list {
    margin: 0 -12px;
}

.slick-row-24 .slick-list .slick-slide {
    margin: 0 12px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-24 .slick-list {
        margin: 0 -12px !important;
    }

    .slick-sm-row-24 .slick-list .slick-slide {
        margin: 0 12px !important;
    }
}

.slick-row-26 .slick-list {
    margin: 0 -13px;
}

.slick-row-26 .slick-list .slick-slide {
    margin: 0 13px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-26 .slick-list {
        margin: 0 -13px !important;
    }

    .slick-sm-row-26 .slick-list .slick-slide {
        margin: 0 13px !important;
    }
}

.slick-row-28 .slick-list {
    margin: 0 -14px;
}

.slick-row-28 .slick-list .slick-slide {
    margin: 0 14px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-28 .slick-list {
        margin: 0 -14px !important;
    }

    .slick-sm-row-28 .slick-list .slick-slide {
        margin: 0 14px !important;
    }
}

.slick-row-30 .slick-list {
    margin: 0 -12px;
}

.slick-row-30 .slick-list .slick-slide {
    margin: 0 12px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-30 .slick-list {
        margin: 0 -12px !important;
    }

    .slick-sm-row-30 .slick-list .slick-slide {
        margin: 0 12px !important;
    }
}

.slick-row-32 .slick-list {
    margin: 0 -16px;
}

.slick-row-32 .slick-list .slick-slide {
    margin: 0 16px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-32 .slick-list {
        margin: 0 -16px !important;
    }

    .slick-sm-row-32 .slick-list .slick-slide {
        margin: 0 16px !important;
    }
}

.slick-row-34 .slick-list {
    margin: 0 -17px;
}

.slick-row-34 .slick-list .slick-slide {
    margin: 0 17px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-34 .slick-list {
        margin: 0 -17px !important;
    }

    .slick-sm-row-34 .slick-list .slick-slide {
        margin: 0 17px !important;
    }
}

.slick-row-36 .slick-list {
    margin: 0 -18px;
}

.slick-row-36 .slick-list .slick-slide {
    margin: 0 18px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-36 .slick-list {
        margin: 0 -18px !important;
    }

    .slick-sm-row-36 .slick-list .slick-slide {
        margin: 0 18px !important;
    }
}

.slick-row-38 .slick-list {
    margin: 0 -19px;
}

.slick-row-38 .slick-list .slick-slide {
    margin: 0 19px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-38 .slick-list {
        margin: 0 -19px !important;
    }

    .slick-sm-row-38 .slick-list .slick-slide {
        margin: 0 19px !important;
    }
}

.slick-row-40 .slick-list {
    margin: 0 -20px;
}

.slick-row-40 .slick-list .slick-slide {
    margin: 0 20px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-40 .slick-list {
        margin: 0 -20px !important;
    }

    .slick-sm-row-40 .slick-list .slick-slide {
        margin: 0 20px !important;
    }
}

.slick-row-42 .slick-list {
    margin: 0 -21px;
}

.slick-row-42 .slick-list .slick-slide {
    margin: 0 21px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-42 .slick-list {
        margin: 0 -21px !important;
    }

    .slick-sm-row-42 .slick-list .slick-slide {
        margin: 0 21px !important;
    }
}

.slick-row-44 .slick-list {
    margin: 0 -22px;
}

.slick-row-44 .slick-list .slick-slide {
    margin: 0 22px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-44 .slick-list {
        margin: 0 -22px !important;
    }

    .slick-sm-row-44 .slick-list .slick-slide {
        margin: 0 22px !important;
    }
}

.slick-row-46 .slick-list {
    margin: 0 -23px;
}

.slick-row-46 .slick-list .slick-slide {
    margin: 0 23px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-46 .slick-list {
        margin: 0 -23px !important;
    }

    .slick-sm-row-46 .slick-list .slick-slide {
        margin: 0 23px !important;
    }
}

.slick-row-48 .slick-list {
    margin: 0 -24px;
}

.slick-row-48 .slick-list .slick-slide {
    margin: 0 24px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-48 .slick-list {
        margin: 0 -24px !important;
    }

    .slick-sm-row-48 .slick-list .slick-slide {
        margin: 0 24px !important;
    }
}

.slick-row-50 .slick-list {
    margin: 0 -25px;
}

.slick-row-50 .slick-list .slick-slide {
    margin: 0 25px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-50 .slick-list {
        margin: 0 -25px !important;
    }

    .slick-sm-row-50 .slick-list .slick-slide {
        margin: 0 25px !important;
    }
}

.slick-row-52 .slick-list {
    margin: 0 -26px;
}

.slick-row-52 .slick-list .slick-slide {
    margin: 0 26px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-52 .slick-list {
        margin: 0 -26px !important;
    }

    .slick-sm-row-52 .slick-list .slick-slide {
        margin: 0 26px !important;
    }
}

.slick-row-54 .slick-list {
    margin: 0 -27px;
}

.slick-row-54 .slick-list .slick-slide {
    margin: 0 27px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-54 .slick-list {
        margin: 0 -27px !important;
    }

    .slick-sm-row-54 .slick-list .slick-slide {
        margin: 0 27px !important;
    }
}

.slick-row-56 .slick-list {
    margin: 0 -28px;
}

.slick-row-56 .slick-list .slick-slide {
    margin: 0 28px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-56 .slick-list {
        margin: 0 -28px !important;
    }

    .slick-sm-row-56 .slick-list .slick-slide {
        margin: 0 28px !important;
    }
}

.slick-row-58 .slick-list {
    margin: 0 -29px;
}

.slick-row-58 .slick-list .slick-slide {
    margin: 0 29px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-58 .slick-list {
        margin: 0 -29px !important;
    }

    .slick-sm-row-58 .slick-list .slick-slide {
        margin: 0 29px !important;
    }
}

.slick-row-60 .slick-list {
    margin: 0 -30px;
}

.slick-row-60 .slick-list .slick-slide {
    margin: 0 30px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-60 .slick-list {
        margin: 0 -30px !important;
    }

    .slick-sm-row-60 .slick-list .slick-slide {
        margin: 0 30px !important;
    }
}

/*----------------------
3.7 - Background Image
-----------------------*/
.bg-img {
    background: no-repeat center center;
    background-size: cover;
}

/*-----------------
3.8 - Overflow
-------------------*/
.fix {
    overflow: hidden;
}

.fix-x {
    overflow-x: hidden;
}

.fix-y {
    overflow-y: hidden;
}

.list-unordered {
    margin-top: -5px;
}

.list-unordered li {
    margin-bottom: 8px;
}

.list-unordered li:last-child {
    margin-bottom: 0;
}

.list-unordered li:before {
    content: '\f058';
    font-family: "FontAwesome";
    color: #FA9A00;
    vertical-align: middle;
    margin-right: 10px;
}

/*----------------------------------
3.9 - Magnific Popup Customization
------------------------------------*/
.mfp-wrap .mfp-container .mfp-close {
    display: none;
}

.mfp-wrap .mfp-arrow {
    opacity: 1;
    height: 65px;
}

.mfp-wrap .mfp-arrow:before {
    color: #FFFFFF;
    border: 1px solid #FA9A00;
    border-radius: 50%;
    font-family: "FontAwesome";
    font-size: 20px;
    text-align: center;
    opacity: 1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    line-height: 48px;
    height: 50px;
    width: 50px;
}

.mfp-wrap .mfp-arrow:after {
    display: none;
}

.mfp-wrap .mfp-arrow-left:before {
    content: '\f104';
}

.mfp-wrap .mfp-arrow-right {
    margin-right: 20px;
}

.mfp-wrap .mfp-arrow-right:before {
    content: '\f105';
}

.mfp-wrap .mfp-arrow:hover:before {
    background-color: #FA9A00;
}

.mfp-wrap .mfp-close {
    color: #FFFFFF;
    border: 1px solid #FA9A00;
    border-radius: 50%;
    font-family: "FontAwesome";
    font-size: 20px;
    text-align: center;
    opacity: 1;
    right: 30px;
    top: 30px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    line-height: 48px;
    height: 50px;
    width: 50px;
}

@media only screen and (max-width: 767.98px) {
    .mfp-wrap .mfp-close {
        line-height: 33px;
        height: 35px;
        width: 35px;
    }
}

.mfp-wrap .mfp-close:hover {
    background-color: #FA9A00;
}

.mfp-wrap .mfp-bottom-bar {
    background-color: #FA9A00;
    height: 30px;
    padding: 0 20px;
    margin-top: -40px;
}

.mfp-wrap .mfp-bottom-bar .mfp-counter {
    color: #222222;
    font-size: 16px;
    line-height: 2;
    padding: 0 10px;
    text-align: center;
    width: 100%;
}

.mfp-wrap.mfp-auto-cursor {
    cursor: url("../img/icons/cancel-white.png"), auto;
}

/*----------------------------------
3.10 - Form Style CSS
------------------------------------*/
.form-input-item {
    margin-bottom: 20px;
}

.form-input-item:last-child {
    margin-bottom: 0;
}

.form-input-item input,
.form-input-item textarea {
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    display: block;
    outline: none;
    padding: 12px 15px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    width: 100%;
}

.form-input-item input:focus,
.form-input-item textarea:focus {
    border-color: #FA9A00;
}

/*----------------------------------
3.11 - Nice Select Customization
------------------------------------*/
.nice-select {
    border-radius: 0;
    float: none;
    height: auto;
    text-transform: capitalize;
    line-height: inherit;
    padding: 8px 30px 8px 15px;
    width: 100%;
}

.nice-select span.current {
    font-weight: 600;
    font-size: 13px;
}

.nice-select .list {
    border-radius: 0;
}

.nice-select .list .option {
    line-height: 30px;
    min-height: 30px;
    margin-bottom: 5px;
}

/*-------------------------------------
3.12 - Custom Checkbox & Radio Button
--------------------------------------*/
.custom-checkbox label,
.custom-checkbox .custom-control-label,
.custom-radio label,
.custom-radio .custom-control-label {
    color: #222222;
    line-height: 1;
    padding-left: 5px;
    cursor: pointer;
}

.custom-checkbox label:before,
.custom-checkbox .custom-control-label:before,
.custom-radio label:before,
.custom-radio .custom-control-label:before {
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 0;
    height: 15px;
    top: 0;
    width: 15px;
}

.custom-checkbox label:after,
.custom-checkbox .custom-control-label:after,
.custom-radio label:after,
.custom-radio .custom-control-label:after {
    background-size: 10px 10px;
    height: 15px;
    top: 0;
    width: 15px;
}

.custom-checkbox label a,
.custom-checkbox .custom-control-label a,
.custom-radio label a,
.custom-radio .custom-control-label a {
    color: #222222;
    font-weight: 500;
}

.custom-checkbox label a:hover,
.custom-checkbox .custom-control-label a:hover,
.custom-radio label a:hover,
.custom-radio .custom-control-label a:hover {
    color: #FA9A00;
}

.custom-checkbox input,
.custom-checkbox .custom-control-input,
.custom-radio input,
.custom-radio .custom-control-input {
    outline: none;
}

.custom-checkbox input:focus ~ .custom-control-label:before,
.custom-checkbox input:focus label:before,
.custom-checkbox .custom-control-input:focus ~ .custom-control-label:before,
.custom-checkbox .custom-control-input:focus label:before,
.custom-radio input:focus ~ .custom-control-label:before,
.custom-radio input:focus label:before,
.custom-radio .custom-control-input:focus ~ .custom-control-label:before,
.custom-radio .custom-control-input:focus label:before {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #ddd;
}

.custom-checkbox input:checked ~ .custom-control-label:before,
.custom-checkbox input:checked label:before,
.custom-checkbox .custom-control-input:checked ~ .custom-control-label:before,
.custom-checkbox .custom-control-input:checked label:before,
.custom-radio input:checked ~ .custom-control-label:before,
.custom-radio input:checked label:before,
.custom-radio .custom-control-input:checked ~ .custom-control-label:before,
.custom-radio .custom-control-input:checked label:before {
    background-color: #FA9A00;
    border-color: #FA9A00;
}

.custom-radio label:before,
.custom-radio .custom-control-label:before {
    border-radius: 50%;
    height: 14px;
    width: 14px;
}

.custom-radio label:after,
.custom-radio .custom-control-label:after {
    background-position: 1px 1px;
    background-size: 9px 8px;
    left: -13px;
    top: 2px;
    height: 10px;
    width: 10px;
}

/*======================
04. Header Style CSS
========================*/
/* 4.1 - Start Pre Header Area */
.prehedaer-area-wrapper {
    background-color: #EEEEEE;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (max-width: 767.98px) {
    .prehedaer-area-wrapper {
        padding: 10px 0;
    }
}

@media only screen and (max-width: 575.98px) {
    .prehedaer-area-wrapper {
        padding: 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599.98px) {
    .prehedaer-area-wrapper .pre-header-left {
        margin-left: 50px;
    }
}

.pre-header-item {
    color: #222222;
    font-size: 15px;
    margin-right: 20px;
}

.pre-header-item:last-child {
    margin-right: 20px;
}

.pre-header-item a {
    color: #222222;
}

.pre-header-item i {
    color: #FA9A00;
    margin-right: 10px;
}

/* 4.2 - Start Header Bottom Area */
.header-bottom {
    padding: 25px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (max-width: 767.98px) {
    .header-bottom {
        padding: 15px 0;
    }
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
    .header-bottom--two {
        padding: 25px 0 20px;
    }
}

.header-bottom--two.header-shape:before {
    display: none;
}

.action-buttons li {
    position: relative;
}

.action-buttons li a,
.action-buttons li button {
    background-color: #EEEEEE;
    color: #000000;
    display: block;
    font-size: 20px;
    text-align: center;
    line-height: 50px;
    height: 50px;
    width: 50px;
}

@media only screen and (max-width: 575.98px) {

    .action-buttons li a,
    .action-buttons li button {
        line-height: 40px;
        height: 40px;
        width: 40px;
    }
}

.action-buttons li a.btn-cart,
.action-buttons li button.btn-cart {
    background-color: #FA9A00;
    color: #FFFFFF;
}

.action-buttons li a.btn-search,
.action-buttons li button.btn-search {
    position: relative;
    overflow: hidden;
}

.action-buttons li a.btn-search i,
.action-buttons li button.btn-search i {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.action-buttons li a.btn-search i[class*='close'],
.action-buttons li button.btn-search i[class*='close'] {
    top: 150%;
}

.action-buttons li a.btn-search.active i,
.action-buttons li button.btn-search.active i {
    top: -100%;
}

.action-buttons li a.btn-search.active i[class*='close'],
.action-buttons li button.btn-search.active i[class*='close'] {
    top: 50%;
}

.header-search-box {
    position: absolute;
    right: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-top: 5px;
    z-index: 9;
}

@media only screen and (max-width: 767.98px) {
    .header-search-box {
        right: 0px;
    }
}

.header-search-box.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.search-box-content {
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    padding: 15px;
    width: 300px;
}

.search-box-content input {
    background-color: #EEEEEE;
    border: none;
    font-weight: 600;
    padding: 15px 10px;
    outline: none;
    width: 100%;
}

.header-navigation-area {
    padding-bottom: 20px;
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
    .header-navigation-area {
        padding-bottom: 0;
    }
}

.logo-area {
    max-width: 120px;
}

/* 4.4 - Header Info Style CSS */
.header-info-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (max-width: 767.98px) {
    .header-info-area {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 479.98px) {
    .header-info-area {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.info-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 40px;
}

@media only screen and (max-width: 575.98px) {
    .info-item {
        margin-right: 25px;
    }
}

@media only screen and (max-width: 479.98px) {
    .info-item {
        margin-bottom: 15px;
    }

    .info-item:last-child {
        margin-bottom: 0;
    }
}

.info-item:last-child {
    margin-right: 0;
}

.info-item__icon {
    background-color: #FA9A00;
    color: #FFFFFF;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 40px;
    position: relative;
    margin-right: 15px;
}

.info-item__icon:before,
.info-item__icon:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
}

.info-item__icon:before {
    top: 0;
    left: 0;
    border-width: 13px 13px 0 0;
    border-color: #FFFFFF transparent transparent;
}

.info-item__icon:after {
    bottom: 0;
    right: 0;
    border-width: 0 0 13px 13px;
    border-color: transparent transparent #FFFFFF;
}

.info-item__txt {
    font-size: 15px;
    color: #444444;
}

.info-item__txt strong {
    color: #333333;
    display: block;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 5px;
    margin-top: -4px;
}

@media only screen and (max-width: 575.98px) {
    .info-item__txt strong {
        font-size: 16px;
    }
}

.sticky-header.headroom--not-top {
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.sticky-header.headroom--not-top.headroom {
    will-change: transform;
    -webkit-transition: -webkit-transform .5s linear;
    transition: -webkit-transform .5s linear;
    -o-transition: transform .5s linear;
    transition: transform .5s linear;
    transition: transform .5s linear, -webkit-transform .5s linear;
}

.sticky-header.headroom--not-top.headroom--pinned {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    padding: 20px 0;
}

.sticky-header.headroom--not-top.headroom--pinned:after,
.sticky-header.headroom--not-top.headroom--pinned:before {
    display: none;
}

.sticky-header.headroom--not-top.headroom--unpinned {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.sticky-header.headroom--not-top.headroom--unpinned:after,
.sticky-header.headroom--not-top.headroom--unpinned:before {
    display: none;
}

.header-shape {
    position: relative;
}

.header-shape:before,
.header-shape:after {
    background-color: #FFFFFF;
    content: '';
    position: absolute;
    height: 20px;
    width: 550px;
    z-index: 2;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (max-width: 767.98px) {

    .header-shape:before,
    .header-shape:after {
        display: none;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599.98px) {

    .header-shape:before,
    .header-shape:after {
        width: 350px;
    }
}

.header-shape:after {
    left: -10px;
    bottom: 100%;
    -webkit-transform: skew(50deg, 0deg);
    -ms-transform: skew(50deg, 0deg);
    transform: skew(50deg, 0deg);
}

.header-shape:before {
    left: -12px;
    top: 100%;
    -webkit-transform: skew(-50deg, 0deg);
    -ms-transform: skew(-50deg, 0deg);
    transform: skew(-50deg, 0deg);
}

/*=========================
30. Footer Area Style Css
===========================*/
.footer-widget-area {
    background-color: #343434;
    padding: 50px 0;
    position: relative;
}

.footer-widget-area:before,
.footer-widget-area:after {
    background-color: #343434;
    content: '';
    position: absolute;
    height: 30px;
    width: 750px;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (max-width: 767.98px) {

    .footer-widget-area:before,
    .footer-widget-area:after {
        display: none;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599.98px) {

    .footer-widget-area:before,
    .footer-widget-area:after {
        width: 600px;
    }
}

.footer-widget-area:after {
    left: -19px;
    bottom: 100%;
    -webkit-transform: skew(50deg, 0deg);
    -ms-transform: skew(50deg, 0deg);
    transform: skew(50deg, 0deg);
}

.footer-widget-area:before {
    left: -17px;
    top: 100%;
    -webkit-transform: skew(-50deg, 0deg);
    -ms-transform: skew(-50deg, 0deg);
    transform: skew(-50deg, 0deg);
}

.widget-item {
    color: #cccccc;
    margin-top: 30px;
}

.widget-title {
    overflow: hidden;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767.98px) {
    .widget-title {
        margin-bottom: 20px;
    }
}

.widget-title h3 {
    color: #FFFFFF;
    display: inline-block;
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0;
    position: relative;
}

.widget-title h3:before {
    background-color: rgba(0, 0, 0, 0.2);
    content: '';
    position: absolute;
    left: calc(100% + 20px);
    top: 15px;
    height: 1px;
    width: 500px;
}

.list li {
    line-height: 1;
    margin-bottom: 20px;
}

.list li:last-child {
    margin-bottom: 0;
}

.list li a {
    color: #cccccc;
    position: relative;
}

.list li a:hover {
    color: #FFFFFF;
}

.list li a:before {
    content: '\f105';
    font-family: "FontAwesome";
    font-size: 17px;
    margin-right: 10px;
}

.list-6 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -20px;
}

.list-6 li {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    margin-bottom: 0;
    margin-top: 20px;
}

@media only screen and (max-width: 575.98px) {
    .list-6 li {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        line-height: 1.3;
    }
}

.office-info p {
    line-height: 1;
    margin-bottom: 20px;
}

.office-info p:last-child {
    margin-bottom: 0;
}

.office-info p i {
    color: #FA9A00;
    vertical-align: middle;
    margin-right: 10px;
}

.footer-bottom-area {
    background-color: #222222;
    color: #cccccc;
    padding: 40px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (max-width: 767.98px) {
    .footer-bottom-area {
        padding: 20px 0;
    }
}

.copyright-text span {
    color: red;
}

.copyright-text a {
    color: #FFFFFF;
}

.copyright-text a:hover {
    color: #FA9A00;
}

/*===========================
4.3 - Main Navigation CSS
=============================*/
.main-menu > li {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    margin-right: 30px;
}

.main-menu > li:last-child {
    margin-right: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .main-menu > li {
        margin-right: 25px;
    }
}

.main-menu > li > a {
    color: #222222;
    display: block;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    padding: 10px 5px;
    position: relative;
}

.main-menu > li > a:after,
.main-menu > li > a:before {
    content: '';
    background-color: #FA9A00;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.main-menu > li > a:after {
    height: 0;
    width: 2px;
}

.main-menu > li > a:before {
    height: 2px;
    width: 0;
}

.main-menu > li:hover:after,
.main-menu > li.active:after {
    color: #FA9A00;
}

.main-menu > li:hover > a,
.main-menu > li.active > a {
    color: #FA9A00;
}

.main-menu > li:hover > a:after,
.main-menu > li.active > a:after {
    height: 10px;
}

.main-menu > li:hover > a:before,
.main-menu > li.active > a:before {
    width: 100%;
}

.dropdown-navbar {
    position: relative;
}

.dropdown-navbar:after {
    content: '\f107';
    color: #222222;
    font-family: "FontAwesome";
    font-size: 15px;
    position: absolute;
    right: -10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    line-height: 1;
    height: 15px;
}

.dropdown-navbar .dropdown-nav {
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding: 20px;
    min-width: 250px;
    width: 100%;
    z-index: 99;
}

.dropdown-navbar .dropdown-nav li {
    margin-bottom: 10px;
}

.dropdown-navbar .dropdown-nav li:last-child {
    margin-bottom: 0;
}

.dropdown-navbar .dropdown-nav li a {
    color: #333333;
    font-size: 16px;
}

.dropdown-navbar .dropdown-nav li a:hover {
    color: #FA9A00;
}

.dropdown-navbar:hover .dropdown-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.res-mobile-menu {
    margin: 0 -10px;
}

.res-mobile-menu .slicknav_btn {
    display: none;
}

.res-mobile-menu .slicknav_menu {
    padding: 0;
}

.res-mobile-menu .slicknav_nav {
    background-color: #FFFFFF;
    display: block !important;
}

.res-mobile-menu .slicknav_nav li {
    border-bottom: 1px solid #ddd;
    position: relative;
}

.res-mobile-menu .slicknav_nav li a {
    color: #858585;
    font-size: 16px;
    padding: 10px 15px;
    margin: 0;
    text-transform: capitalize;
}

.res-mobile-menu .slicknav_nav li a .slicknav_arrow {
    background-color: rgba(238, 238, 238, 0.8);
    color: #222222;
    font-size: 20px;
    display: block;
    text-align: center;
    margin: 0;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 42px;
    width: 50px;
}

.res-mobile-menu .slicknav_nav li a a {
    padding: 0;
}

.res-mobile-menu .slicknav_nav li a:hover {
    background-color: transparent;
}

.res-mobile-menu .slicknav_nav li ul {
    background-color: #f2f2f2;
    margin: 0;
}

.res-mobile-menu .slicknav_nav li ul li a {
    font-size: 15px;
}

.res-mobile-menu .slicknav_nav li ul li ul {
    background-color: #eeeeee;
}

.res-mobile-menu .slicknav_nav .slicknav_open > .slicknav_item {
    position: relative;
}

.res-mobile-menu .slicknav_nav .slicknav_open > .slicknav_item .slicknav_arrow {
    background-color: #FA9A00;
    color: #FFFFFF;
}

/*========================
05. Off Canvas Menu CSS
=========================*/
.off-canvas-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: 100vh;
    width: 100vw;
    z-index: 999;
}

.off-canvas-wrapper.active {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
}

.off-canvas-wrapper.active .off-canvas-inner {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.off-canvas-wrapper.active .btn-close {
    display: block;
}

.off-canvas-wrapper .off-canvas-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    cursor: url("../img/icons/cancel-white.png"), auto;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.off-canvas-wrapper .btn-close {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
}

.off-canvas-wrapper .off-canvas-inner {
    background-color: #FFFFFF;
    position: relative;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    height: 100vh;
    width: 300px;
    z-index: 3;
}

@media only screen and (max-width: 479.98px) {
    .off-canvas-wrapper .off-canvas-inner {
        width: 220px;
    }
}

.off-canvas-wrapper .off-canvas-inner .off-canvas-content {
    padding: 0 10px;
    height: 100%;
    overflow-y: auto;
}

.off-canvas-wrapper .off-canvas-inner .off-canvas-content .off-canvas-item {
    margin-bottom: 30px;
}

.off-canvas-wrapper .off-canvas-inner .off-canvas-content .off-canvas-item:last-child {
    margin-bottom: 0;
}

.off-canvas-footer .social-icons a {
    padding: 5px 10px;
}

.off-canvas-footer .copyright-text {
    line-height: 1.2;
    margin-top: 10px;
}

/*=======================
06. Service Style CSS
========================*/
.service-area-wrapper--2 {
    background-color: #4a443c;
    padding: 82px 0 84px;
}

@media only screen and (max-width: 767.98px) {
    .service-area-wrapper--2 {
        padding: 52px 0 55px;
    }
}

.service-page-grid {
    margin-top: -50px;
}

.service-page-grid .service-item--two {
    margin-top: 50px;
}

.service-item {
    margin-top: 30px;
}

.service-item__thumb {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

@media only screen and (max-width: 767.98px) {
    .service-item__thumb {
        margin-bottom: 23px;
    }
}

.service-item__thumb:before {
    background-color: rgba(34, 34, 34, 0.7);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.service-item__thumb img {
    width: 100%;
}

.service-item__thumb .read-more {
    background-color: rgba(0, 0, 0, 0.6);
    color: #FFFFFF;
    display: inline-block;
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scaleX(0);
    -ms-transform: translate(-50%, -50%) scaleX(0);
    transform: translate(-50%, -50%) scaleX(0);
}

.service-item__thumb .read-more:hover {
    color: #FA9A00;
}

.service-item__thumb .btn-link-icon {
    background-color: rgba(0, 0, 0, 0.6);
    color: #FFFFFF;
    text-align: center;
    display: block;
    position: absolute;
    left: -50px;
    bottom: 0;
    line-height: 45px;
    height: 45px;
    width: 45px;
}

.service-item__thumb .btn-link-icon:hover {
    background-color: #FA9A00;
}

.service-item__info h2 {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
}

.service-item__info h2 a {
    color: #333333;
}

.service-item:hover .service-item__thumb:before {
    opacity: 1;
    visibility: visible;
}

.service-item:hover .service-item__thumb .read-more {
    -webkit-transform: translate(-50%, -50%) scaleX(1);
    -ms-transform: translate(-50%, -50%) scaleX(1);
    transform: translate(-50%, -50%) scaleX(1);
}

.service-item:hover .service-item__thumb .btn-link-icon {
    left: 0;
}

.service-item--two {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 25px;
    margin-top: 0;
    padding-bottom: 25px;
}

@media only screen and (max-width: 479.98px) {
    .service-item--two {
        display: block;
    }
}

.service-item--two:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.service-item--two .service-item__thumb {
    max-width: 110px;
    -webkit-flex-basis: 110px;
    -ms-flex-preferred-size: 110px;
    flex-basis: 110px;
    margin-bottom: 0;
    margin-right: 30px;
}

@media only screen and (max-width: 479.98px) {
    .service-item--two .service-item__thumb {
        margin: 0 auto 20px;
    }
}

.service-item--two .service-item__thumb:before {
    display: none;
}

.service-item--two .service-item__info {
    max-width: calc(100% - 110px);
    -webkit-flex-basis: calc(100% - 110px);
    -ms-flex-preferred-size: calc(100% - 110px);
    flex-basis: calc(100% - 110px);
}

@media only screen and (max-width: 479.98px) {
    .service-item--two .service-item__info {
        text-align: center;
        max-width: calc(100% - 0px);
        -webkit-flex-basis: calc(100% - 0px);
        -ms-flex-preferred-size: calc(100% - 0px);
        flex-basis: calc(100% - 0px);
    }
}

.service-item--two .service-item__info h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-item--three .service-item__icon {
    color: #FA9A00;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 15px;
}

.service-item--three .service-item__info {
    color: rgba(255, 255, 255, 0.6);
}

.service-item--three .service-item__info h2 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
}

.service-item--three .service-item__info h2 a {
    color: #FFFFFF;
}

.service-item--three.white-bg .service-item__info {
    color: #858585;
}

.service-item--three.white-bg .service-item__info h2 {
    font-weight: 700;
}

.service-item--three.white-bg .service-item__info h2 a {
    color: #333333;
}

/*=============================
6.1 - Leave a Message CSS
==============================*/
.leave-message-area-wrapper {
    background: #f6f6f6 url(../img/icons/sms.png) no-repeat right bottom;
    border: 1px solid #dddddd;
    padding: 70px 30px 40px;
}

.leave-message-area-wrapper .section-title-wrap h2 {
    background-color: #f6f6f6;
}

.leave-message-form__inner__item {
    margin-bottom: 10px;
}

.leave-message-form__inner__item:last-child {
    margin-bottom: 0;
}

.leave-message-form__inner__item input,
.leave-message-form__inner__item textarea {
    background-color: #FFFFFF;
    border: 1px solid #dddddd;
    display: block;
    padding: 10px 15px;
    width: 100%;
}

/*===============================
07. Latest Project Style CSS
=================================*/
.latest-project-header {
    background-color: #EEEEEE;
    padding-top: 80px;
    padding-bottom: 40px;
}

@media only screen and (max-width: 767.98px) {
    .latest-project-header {
        padding-top: 52px;
        padding-bottom: 30px;
    }
}

.latest-project-header .section-title-wrap h2 {
    background-color: #EEEEEE;
}

.project-content__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.project-content__inner .project-item {
    max-width: 20%;
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1599.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .project-content__inner .project-item {
        max-width: 33.333%;
        -webkit-flex-basis: 33.333%;
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (max-width: 767.98px) {
    .project-content__inner .project-item {
        max-width: 50%;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
}

@media only screen and (max-width: 575.98px) {
    .project-content__inner .project-item {
        max-width: 100%;
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

.project-masonry {
    margin-top: -10px;
}

.project-masonry .project-item {
    margin-top: 10px;
}

.project-masonry .project-item__info .info-wrap {
    width: calc(100% - 50px);
}

.project-filter-menu li {
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    margin-right: 20px;
    padding: 5px 8px;
    position: relative;
}

.project-filter-menu li:last-child {
    margin-right: 0;
}

.project-filter-menu li:after,
.project-filter-menu li:before {
    content: '';
    background-color: #FA9A00;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.project-filter-menu li:after {
    height: 0;
    width: 2px;
}

.project-filter-menu li:before {
    height: 2px;
    width: 0;
}

.project-filter-menu li:hover:after,
.project-filter-menu li.active:after {
    height: 10px;
}

.project-filter-menu li:hover:before,
.project-filter-menu li.active:before {
    width: 100%;
}

.project-filter-menu.project-page {
    padding: 0 10px;
}

.project-item {
    position: relative;
}

.project-item__info {
    position: absolute;
    left: 0;
    top: 100%;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.project-item__info:before {
    background-color: rgba(0, 0, 0, 0.5);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.project-item__info a {
    color: #FFFFFF;
    position: relative;
}

.project-item__info a.cate-name {
    line-height: 1;
}

.project-item__info a.cate-name:before {
    background-color: #FFFFFF;
    content: '';
    position: absolute;
    left: calc(100% + 20px);
    top: 12px;
    height: 1px;
    width: 300px;
}

.project-item__info h3 {
    font-size: 22px;
    margin-top: 20px;
}

.project-item__info .btn-read-more:hover {
    color: #FA9A00;
}

.project-item__info .info-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
    width: calc(100% - 80px);
}

.project-item__thumb {
    position: relative;
}

.project-item__thumb img {
    width: 100%;
}

.project-item--2 {
    margin-top: 30px;
}

.project-item--2 .project-item__thumb:before {
    background-color: rgba(0, 0, 0, 0.5);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}

.project-item--2 .project-item__thumb .project-hvr .btn-popup-img {
    background-color: #FA9A00;
    border-radius: 50%;
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1.4);
    -ms-transform: translate(-50%, -50%) scale(1.4);
    transform: translate(-50%, -50%) scale(1.4);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    line-height: 45px;
    height: 45px;
    width: 45px;
}

.project-item--2 .project-item__thumb .project-hvr .btn-popup-img:hover {
    background-color: #FFFFFF;
    color: #FA9A00;
}

.project-item--2 .project-item__info {
    position: static;
    overflow: hidden;
    margin-top: 22px;
}

.project-item--2 .project-item__info:before {
    display: none;
}

.project-item--2 .project-item__info a {
    color: #333333;
}

.project-item--2 .project-item__info a:hover {
    color: #FA9A00;
}

.project-item--2 .project-item__info a.cate-name {
    font-size: 18px;
}

.project-item--2 .project-item__info a.cate-name:before {
    background-color: #ddd;
}

.project-item--2 .project-item__info h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 5px 0 0;
}

.project-item--2:hover .project-item__thumb:before {
    opacity: 1;
    visibility: visible;
}

.project-item--2:hover .project-item__thumb .project-hvr .btn-popup-img {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.our-project-wrapper {
    padding: 82px 0 90px;
}

@media only screen and (max-width: 767.98px) {
    .our-project-wrapper {
        padding: 52px 0 60px;
    }
}

.featured-project-area {
    margin-top: 50px;
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
    .featured-project-area {
        margin-top: 40px;
    }
}

.featured-project-area h2 {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 26px;
}

.featured-project-area .project-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.featured-project-area .project-item__thumb {
    max-width: 120px;
    -webkit-flex-basis: 120px;
    -ms-flex-preferred-size: 120px;
    flex-basis: 120px;
    margin-right: 15px;
}

.featured-project-area .project-item__thumb .project-hvr .btn-popup-img {
    font-size: 13px;
    line-height: 35px;
    height: 35px;
    width: 35px;
}

.featured-project-area .project-item__info {
    margin-top: 0;
    max-width: calc(100% - 135px);
    -webkit-flex-basis: calc(100% - 135px);
    -ms-flex-preferred-size: calc(100% - 135px);
    flex-basis: calc(100% - 135px);
}

.featured-project-area .project-item__info h3 {
    margin-bottom: 10px;
}

/*============================
08. About Area Style CSS
==============================*/
.about-image-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.about-image-area > * {
    width: calc(50% - 10px);
    margin: 5px;
    max-height: 200px;
    overflow: hidden;
}

.discover-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
}

.discover-item__thumb {
    max-width: 130px;
    -webkit-flex-basis: 130px;
    -ms-flex-preferred-size: 130px;
    flex-basis: 130px;
    margin-right: 15px;
}

@media only screen and (max-width: 479.98px) {
    .discover-item__thumb {
        max-width: 100px;
        -webkit-flex-basis: 100px;
        -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
        margin-right: 10px;
    }
}

.discover-item__info {
    max-width: calc(100% - 145px);
    -webkit-flex-basis: calc(100% - 145px);
    -ms-flex-preferred-size: calc(100% - 145px);
    flex-basis: calc(100% - 145px);
}

@media only screen and (max-width: 479.98px) {
    .discover-item__info {
        max-width: calc(100% - 110px);
        -webkit-flex-basis: calc(100% - 110px);
        -ms-flex-preferred-size: calc(100% - 110px);
        flex-basis: calc(100% - 110px);
    }
}

.discover-item__info h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.discover-item__info h3 a {
    color: #333333;
}

.discover-item__info h3 a:hover {
    color: #FA9A00;
}

.discover-item__info h5 {
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: -3px;
}

.discover-item--core {
    display: block;
}

.discover-item--core .discover-item__info {
    max-width: 100%;
}

.discover-item--core .discover-item__info h5 {
    margin-bottom: 10px;
}

.about-discover-head h2 {
    font-size: 30px;
    font-weight: 600;
    margin-top: -10px;
}

.map-area-wrap {
    height: 450px;
    margin-top: 50px;
}

@media only screen and (max-width: 767.98px) {
    .map-area-wrap {
        margin-top: 40px;
        height: 300px;
    }
}

#map_content {
    z-index: 1;
}

.awards-item img {
    width: 100%;
}

.history-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 575.98px) {
    .history-item {
        display: block;
    }
}

.history-item__thumb {
    max-width: 160px;
    -webkit-flex-basis: 160px;
    -ms-flex-preferred-size: 160px;
    flex-basis: 160px;
}

@media only screen and (max-width: 575.98px) {
    .history-item__thumb {
        max-width: 100%;
    }
}

.history-item__info {
    max-width: calc(100% - 160px);
    -webkit-flex-basis: calc(100% - 160px);
    -ms-flex-preferred-size: calc(100% - 160px);
    flex-basis: calc(100% - 160px);
    padding-left: 113px;
    padding-bottom: 45px;
    position: relative;
}

@media only screen and (max-width: 575.98px) {
    .history-item__info {
        max-width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }

    .history-item__info:after,
    .history-item__info:before {
        display: none;
    }
}

.history-item__info:after {
    background: #eee;
    content: '';
    position: absolute;
    top: 0;
    left: 55px;
    z-index: 1;
    width: 3px;
    height: 100%;
}

.history-item__info:before {
    background: #fa9a00;
    border-radius: 50%;
    border: 5px solid #eee;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    content: '';
    position: absolute;
    top: 0;
    left: 47px;
    height: 10px;
    width: 10px;
    z-index: 2;
}

.history-item__info .history-year {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 0;
    font-weight: 700;
    margin-top: -3px;
}

.history-item__info .history-title {
    color: #FA9A00;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    margin: 12px 0 5px;
}

.history-item:last-child .history-item__info {
    padding-bottom: 0;
}

/*============================
09. Testimonial Style CSS
=============================*/
.testimonial-area-wrapper {
    padding: 82px 0 89px;
}

@media only screen and (max-width: 767.98px) {
    .testimonial-area-wrapper {
        padding: 52px 0 60px;
    }
}

.testimonial-area-wrapper .slick-slider .slick-dots li {
    background-color: rgba(255, 255, 255, 0.8);
}

.testimonial-area-wrapper .slick-slider .slick-dots li:hover,
.testimonial-area-wrapper .slick-slider .slick-dots li.slick-active {
    background-color: #FA9A00;
}

.testimonial-item__quote {
    background-color: #FFFFFF;
    padding: 20px 30px;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-item__quote:before {
    border-color: #fff transparent transparent transparent;
    border-width: 18px 18px 0 0;
    border-style: solid;
    content: '';
    position: absolute;
    top: 100%;
    left: 51px;
    width: 0;
    height: 0;
    z-index: 2;
}

.testimonial-item__client {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.testimonial-item__client__thumb {
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
    height: 70px;
    width: 70px;
}

.testimonial-item__client__info h4 {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 0;
}

.testimonial-item__client__info h4 .client-title {
    color: #FA9A00;
    display: block;
    font-size: 15px;
    line-height: 1;
    margin-top: 10px;
}

.testimonial-item--2 {
    text-align: center;
}

.testimonial-item--2 .testimonial-item__quote {
    background-color: transparent;
    color: #FFFFFF;
    padding: 0;
}

.testimonial-item--2 .testimonial-item__quote:before {
    display: none;
}

.testimonial-item--2 .testimonial-item__client {
    display: inherit;
}

.testimonial-item--2 .testimonial-item__client__thumb {
    margin: 0 auto;
}

.testimonial-item--2 .testimonial-item__client__info {
    position: relative;
    padding-top: 20px;
    margin-top: 20px;
}

.testimonial-item--2 .testimonial-item__client__info:before {
    background-color: rgba(255, 255, 255, 0.5);
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 1px;
    width: 100px;
}

.testimonial-item--3 .testimonial-item__quote {
    border: 1px solid #ddd;
}

.testimonial-item--3 .testimonial-item__quote:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: #ddd transparent transparent;
    z-index: 1;
}

.testimonial-item--3 .testimonial-item__client__info h4 {
    color: #333333;
}

/*====================
10. News Style CSS
=====================*/
.news-item__thumb {
    position: relative;
    overflow: hidden;
}

.news-item__thumb img {
    width: 100%;
}

.news-item__thumb-hvr {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 0;
    top: 100%;
    height: 100%;
    width: 100%;
}

.news-item__thumb-hvr .btn-zoom {
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    color: #FFFFFF;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 50px;
    height: 50px;
    width: 50px;
}

.news-item__thumb-hvr .btn-zoom:hover {
    background-color: #FFFFFF;
    color: #FA9A00;
}

.news-item__info {
    background-color: #343434;
    color: #FFFFFF;
    padding: 25px 20px 40px;
    position: relative;
    margin-top: 10px;
    margin-bottom: 23px;
}

.news-item__info:before {
    border-color: transparent transparent transparent #343434;
    border-style: solid;
    border-width: 22px 0 0 22px;
    content: '';
    position: absolute;
    left: 20px;
    bottom: 100%;
    height: 0;
    width: 0;
    z-index: 2;
}

.news-item__info h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
}

.news-item__info h2 a {
    color: #FA9A00;
}

.news-item__info .post-meta {
    margin-bottom: 18px;
}

.news-item__info .post-meta a {
    color: #ababab;
    font-size: 15px;
    vertical-align: middle;
}

.news-item__info .post-meta a i {
    padding-right: 5px;
}

.news-item__info p {
    margin-bottom: 0;
}

.news-item__info .btn {
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

.news-item--list {
    margin-top: 50px;
}

@media only screen and (max-width: 767.98px) {
    .news-item--list {
        margin-top: 30px;
    }
}

.news-item--list .news-item__info {
    background-color: transparent;
    color: #858585;
    padding: 0;
    margin: 40px 0 0;
}

@media only screen and (max-width: 767.98px) {
    .news-item--list .news-item__info {
        margin: 30px 0 0;
    }
}

.news-item--list .news-item__info:before {
    display: none;
}

.news-item--list .news-item__info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: -5px;
}

@media only screen and (max-width: 767.98px) {
    .news-item--list .news-item__info h2 {
        font-size: 20px;
    }
}

.news-item--list .news-item__info h2 a {
    color: #333333;
}

.news-item--list .news-item__info h2 a:hover {
    color: #FA9A00;
}

.news-item--list .news-item__info .post-meta a {
    font-weight: 700;
    margin-right: 15px;
    color: #858585;
}

@media only screen and (max-width: 575.98px) {
    .news-item--list .news-item__info .post-meta a {
        margin-right: 10px;
    }
}

.news-item--list .news-item__info .post-meta a:last-child {
    margin-right: 0;
}

.news-item--list .news-item__info .btn {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-top: 22px;
}

.news-grid {
    margin-top: -30px;
}

.news-grid .news-item {
    margin-top: 30px;
}

/*===========================
11. Why Choose Us Style CSS
=============================*/
.accordion .accordion-item {
    border-color: #ddd;
    border-radius: 0;
    border-bottom: 0;
    margin: 10px;
}
.accordion .accordion-item:not(:first-of-type) {
    border-top: 1px solid #ddd;
}
.accordion ..accordion-item:last-child {
    margin-bottom: 0;
}

.accordion .accordion-header {
    border: 0;
    background-color: transparent;
    padding: 0;
}

.accordion .accordion-button {
    background-color: #FFFFFF;
    border-bottom: 1px solid #ddd;
    color: #333333;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0;
    padding: 15px 20px;
    border-radius: 0;
    border-radius: 0;
}
.accordion .accordion-item:first-of-type .accordion-button {
    border-radius: 0;
    border-radius: 0;
}
.accordion .accordion-button:focus {
    box-shadow: none;
}
.accordion .accordion-button:after {
    display: none;
}
.accordion .accordion-button[aria-expanded*="true"] {
    background-color: #FA9A00;
    color: #FFFFFF;
    border-bottom-color: #FA9A00;
}
.accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
}
.accordion .accordion-body {
    border-bottom: 1px solid #ddd;
}

/*============================
12. Our Clients Style CSS
=============================*/
.our-client-wrapper {
    background-color: #EEEEEE;
    padding: 90px 0;
}

@media only screen and (max-width: 767.98px) {
    .our-client-wrapper {
        padding: 60px 0;
    }
}

.client-item {
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.client-item img {
    max-width: 90%;
    margin: auto;
}

/*============================
13. Call to Action Style CSS
==============================*/
.call-to-action-wrapper {
    background-color: #573500;
    padding: 40px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (max-width: 767.98px) {
    .call-to-action-wrapper {
        padding: 33px 0 40px;
    }
}

.call-to-action-wrapper.layout--2 {
    background-color: #343434;
}

.call-action-inner h2 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0;
}

@media only screen and (max-width: 575.98px) {
    .call-action-inner h2 {
        font-size: 20px;
    }
}

/*=======================
Team Member Style CSS
=========================*/
.team-member {
    overflow: hidden;
    margin-top: 30px;
}

.team-member__thumb {
    position: relative;
}

.team-member__thumb img {
    width: 100%;
}

.team-member__thumb:before {
    background-color: rgba(0, 0, 0, 0.2);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.team-member__thumb:after {
    background: rgba(255, 255, 255, 0.25);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    opacity: 0;
}

.team-member__info {
    position: relative;
    z-index: 9;
}

.team-member__info h3 {
    font-size: 17px;
    line-height: 1;
    font-weight: 600;
    margin: 20px 0 10px;
}

.team-member__info .designation {
    color: #FA9A00;
}

.team-member__info .team-desc {
    margin-top: 10px;
}

.team-member__info .social-icons {
    margin-top: 20px;
}

.team-member__info .social-icons a {
    font-size: 18px;
    padding: 0;
    margin-right: 15px;
}

.team-member__info .social-icons a:after,
.team-member__info .social-icons a:before {
    display: none;
}

.team-member:hover .team-member__thumb:before {
    opacity: 1;
    visibility: visible;
}

.team-member:hover .team-member__thumb:after {
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    opacity: 1;
}

/*=========================
15. Banner Style CSS
==========================*/
@media only screen and (max-width: 767.98px) {
    .banner-text {
        margin-top: 25px;
    }
}

@media only screen and (max-width: 767.98px) {
    .banner-text h2 {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .banner-text h2 {
        font-size: 24px;
    }
}

/*===========================
16. Counter Up Style CSS
=============================*/
.counter-item {
    margin-right: 50px;
}

@media only screen and (max-width: 575.98px) {
    .counter-item {
        margin-right: 30px;
        text-align: center;
    }
}

.counter-item:last-child {
    margin-right: 0;
}

.counter-item__icon {
    color: #FA9A00;
    font-size: 40px;
    line-height: 1;
}

.counter-item__info .counter-no {
    color: #333333;
    display: block;
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
    margin: 15px 0 5px;
}

.counter-item__info .counter-title {
    color: #858585;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 0;
}

.counter-up-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/*==========================
17. Page Header Style CSS
============================*/
.page-header-area {
    background: #ddd url("../img/extra/page-title-bg.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 90px 0;
    isolation: isolate;
}

@media only screen and (max-width: 767.98px) {
    .page-header-area {
        padding: 45px 0 50px;
    }
}

.page-header-area:before {
    background-color: rgba(64, 32, 0, 0.5);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

@media only screen and (max-width: 767.98px) {
    .page-header-title {
        margin-bottom: 25px;
    }
}

.page-header-title h1 {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 0;
}

@media only screen and (max-width: 575.98px) {
    .page-header-title h1 {
        font-size: 30px;
    }
}

.breadcrumb {
    background-color: #FFFFFF;
    border-radius: 0;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0;
    padding: 10px 15px;
}

@media only screen and (max-width: 767.98px) {
    .breadcrumb {
        padding: 5px 10px;
    }
}

.breadcrumb li {
    position: relative;
}

.breadcrumb li:last-child:after {
    display: none;
}

.breadcrumb li:after {
    content: '\f105';
    font-family: "FontAwesome";
    vertical-align: middle;
    margin: 0 10px;
}

.breadcrumb li a {
    color: #FA9A00;
    display: inline-block;
    font-weight: 600;
}

@media only screen and (max-width: 575.98px) {
    .breadcrumb li a {
        font-size: 13px;
    }
}

.breadcrumb li a:hover {
    color: #222222;
}

.breadcrumb li.active a {
    color: #858585;
    pointer-events: none;
}

.pagination {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pagination li a {
    border: 1px solid #ddd;
    color: #858585;
    display: block;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    margin-right: 10px;
    line-height: 45px;
    height: 45px;
    width: 45px;
}

@media only screen and (max-width: 575.98px) {
    .pagination li a {
        line-height: 40px;
        height: 40px;
        width: 40px;
    }
}

.pagination li a:hover,
.pagination li a.current {
    background-color: #FA9A00;
    border-color: #FA9A00;
    color: #FFFFFF;
}

.pagination li:last-child a {
    margin-right: 0;
}

/*=============================
18. Project Details Style CSS
===============================*/
.project-info h2 {
    font-size: 28px;
    margin-top: -10px;
}

@media only screen and (max-width: 767.98px) {
    .project-info h2 {
        margin-bottom: 10px;
    }
}

.project-desc {
    margin-top: 35px;
}

.project-desc .section-title-wrap {
    margin-bottom: 10px;
}

.project-desc-list li {
    font-size: 18px;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.project-desc-list li strong {
    color: #222222;
    margin-right: 5px;
}

.project-desc .view-project {
    background-color: #EEEEEE;
    border: 1px solid #ddd;
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 20px;
    margin-top: 40px;
}

.project-desc .view-project:hover {
    background-color: #FA9A00;
    border-color: #FA9A00;
    color: #FFFFFF;
}

.project-pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.project-pagination li a {
    color: #222222;
    font-weight: 700;
}

@media only screen and (max-width: 575.98px) {
    .project-pagination li a {
        font-size: 13px;
    }
}

.project-pagination li a:hover {
    color: #FA9A00;
}

.project-pagination-wrap {
    margin-top: 60px;
}

@media only screen and (max-width: 767.98px) {
    .project-pagination-wrap {
        margin-top: 40px;
    }
}

.project-details-thumb .project-thumb-item {
    margin-bottom: 30px;
}

.project-details-thumb .project-thumb-item:last-child {
    margin-bottom: 0;
}

.project-details-thumb .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.project-details-thumb .slick-dots li {
    background-color: #FFFFFF;
}

.project-details-thumb .slick-dots li:hover,
.project-details-thumb .slick-dots li.slick-active {
    background-color: #FA9A00;
}

/*=========================
20. Sidebar Style CSS
===========================*/
.sidebar-item {
    overflow: hidden;
    margin-bottom: 38px;
}

.sidebar-item:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    font-weight: 700;
    font-size: 26px;
    display: inline-block;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}

.sidebar-title:before {
    background-color: #ddd;
    content: '';
    position: absolute;
    top: 21px;
    left: calc(100% + 10px);
    height: 1px;
    width: 200px;
}

.sidebar-title:after {
    background-color: #FA9A00;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 80px;
}

.sidebar-list {
    margin-top: -2px;
}

.sidebar-list li {
    border-bottom: 1px solid #ddd;
    line-height: 1;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.sidebar-list li:last-child {
    margin-bottom: 0;
}

.sidebar-list li a {
    color: #222222;
    font-weight: 600;
}

.sidebar-list li a:hover {
    color: #FA9A00;
}

.recent-news-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 25px;
}

.recent-news-item:last-child {
    margin-bottom: 0;
}

.recent-news-item__thumb {
    -webkit-flex-basis: 70px;
    -ms-flex-preferred-size: 70px;
    flex-basis: 70px;
    max-width: 70px;
    margin-right: 10px;
    height: 70px;
}

.recent-news-item__thumb img {
    height: 100%;
}

.recent-news-item__info {
    -webkit-flex-basis: calc(100% - 80px);
    -ms-flex-preferred-size: calc(100% - 80px);
    flex-basis: calc(100% - 80px);
    max-width: calc(100% - 80px);
}

.recent-news-item__info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: -3px;
}

.recent-news-item__info h3 a {
    color: #333333;
}

.recent-news-item__info h3 a:hover {
    color: #FA9A00;
}

.recent-news-item__info .post-date {
    font-size: 15px;
    margin-top: 5px;
    display: block;
}

.recent-news-item__info .post-date i {
    font-size: 13px;
    vertical-align: middle;
    margin-right: 3px;
}

.tags {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -2.5px;
}

.tags li {
    margin: 2.5px;
}

.tags li a {
    border: 1px solid #ddd;
    color: #858585;
    display: block;
    padding: 8px 20px;
}

.tags li a:hover {
    color: #FA9A00;
    border-color: #FA9A00;
}

.src-from-content input {
    background-color: #EEEEEE;
    border: 1px solid #EEEEEE;
    display: block;
    padding: 15px 10px;
    outline: none;
    max-width: calc(100% - 60px);
    -webkit-flex-basis: calc(100% - 60px);
    -ms-flex-preferred-size: calc(100% - 60px);
    flex-basis: calc(100% - 60px);
}

.src-from-content .btn-search {
    background-color: #FA9A00;
    color: #FFFFFF;
    max-width: 60px;
    -webkit-flex-basis: 60px;
    -ms-flex-preferred-size: 60px;
    flex-basis: 60px;
}

.price-range-wrap {
    padding-top: 10px;
}

.price-range-wrap .price-range.ui-widget-content {
    background-color: #eeeeee;
    border: none;
    border-radius: 0;
    margin-right: 12px;
    margin-left: 8px;
    height: 5px;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-range {
    background-color: #FA9A00;
    border-radius: 0;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
    background-color: #FA9A00;
    border: 5px solid #dddddd;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    outline: none;
    top: -7px;
    cursor: ew-resize;
    margin-left: -.5em;
}

.price-range-wrap .range-slider {
    line-height: 1;
    margin-top: 22px;
}

.price-range-wrap .range-slider * {
    margin: 0;
    line-height: 1;
}

.price-range-wrap .range-slider input#amount {
    background-color: transparent;
    border: none;
    outline: none;
    line-height: 1;
    pointer-events: none;
    margin-left: 10px;
}

.price-range-wrap .range-slider .range-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-recent-view-prod {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.single-recent-view-prod:nth-child(1n + 2) {
    margin-top: 10px;
}

.single-recent-view-prod .prod-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: -3px;
}

.single-recent-view-prod .prod-info h3 a {
    color: #222222;
}

.single-recent-view-prod .prod-info h3 a:hover {
    color: #FA9A00;
}

.single-recent-view-prod .prod-info .rating {
    line-height: 1;
    font-size: 14px;
    margin-bottom: 5px;
}

.single-recent-view-prod .prod-info .price-group {
    font-weight: 700;
    font-size: 15px;
}

.single-recent-view-prod .prod-info .price-group .price-old {
    opacity: 0.8;
    margin-right: 5px;
}

.single-recent-view-prod .prod-thumb {
    max-width: 80px;
    -webkit-flex-basis: 80px;
    -ms-flex-preferred-size: 80px;
    flex-basis: 80px;
}

/*==========================
23. Product Style CSS
===========================*/
.single-product-wrap {
    margin-top: 30px;
}

.single-product-wrap .product-thumb {
    position: relative;
    overflow: hidden;
}

.single-product-wrap .product-thumb img {
    width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.single-product-wrap .product-thumb .btn-quick-view {
    background-color: #000000;
    border-radius: 50%;
    color: #FFFFFF;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    margin: -25px 0 0 -25px;
    opacity: 0;
    visibility: hidden;
    line-height: 50px;
    height: 50px;
    width: 50px;
}

.single-product-wrap .product-thumb .btn-quick-view:hover {
    background-color: #FA9A00;
}

.single-product-wrap .product-thumb .btn-add-cart {
    background-color: #FA9A00;
    color: #FFFFFF;
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.single-product-wrap .product-thumb .btn-add-cart:hover {
    background-color: #222222;
}

.single-product-wrap .product-details {
    margin-top: 15px;
}

.single-product-wrap .product-details .product-title {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.single-product-wrap .product-details .product-title a {
    color: #222222;
}

.single-product-wrap .product-details .product-title a:hover {
    color: #FA9A00;
}

.single-product-wrap .product-details .price-group {
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
}

.single-product-wrap .product-details .price-group .old-price {
    color: #858585;
    margin-right: 5px;
    font-size: 16px;
}

.single-product-wrap .product-details .price-group .price {
    color: #e74c3c;
}

.single-product-wrap .product-details .btn-add-wishlist {
    color: #222222;
    padding-right: 2px;
}

.single-product-wrap:hover .btn-quick-view {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.single-product-wrap:hover .btn-add-cart {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.slick-slider .single-product-wrap {
    margin-top: 0;
}

/*===============================
19. Service Details Style CSS
=================================*/
.service-details-info {
    margin-top: 40px;
}

.service-details-info h2 {
    font-weight: 600;
    margin-top: -10px;
}

@media only screen and (max-width: 767.98px) {
    .service-details-info h2 {
        font-size: 22px;
    }
}

.service-feature {
    margin-top: 29px;
}

.sidebar-single {
    background-color: #EEEEEE;
    padding: 30px;
    margin-top: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (max-width: 767.98px) {
    .sidebar-single {
        margin-top: 30px;
    }
}

.sidebar-heading {
    font-size: 26px;
    margin-top: -8px;
    margin-bottom: 23px;
}

.service-list li {
    border-bottom: 1px solid #ddd;
    padding: 13px 0;
}

.service-list li:first-child {
    padding-top: 0;
}

.service-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.service-list li a {
    color: #858585;
    font-weight: 600;
    vertical-align: middle;
}

.service-list li a img,
.service-list li a i {
    margin-right: 15px;
    vertical-align: middle;
    font-size: 25px;
    height: 25px;
    width: 25px;
}

.service-list li a:hover {
    color: #333333;
}

/*=============================
18. Project Details Style CSS
===============================*/
.project-info h2 {
    font-size: 28px;
    margin-top: -10px;
}

@media only screen and (max-width: 767.98px) {
    .project-info h2 {
        margin-bottom: 10px;
    }
}

.project-desc {
    margin-top: 35px;
}

.project-desc .section-title-wrap {
    margin-bottom: 10px;
}

.project-desc-list li {
    font-size: 18px;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.project-desc-list li strong {
    color: #222222;
    margin-right: 5px;
}

.project-desc .view-project {
    background-color: #EEEEEE;
    border: 1px solid #ddd;
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 20px;
    margin-top: 40px;
}

.project-desc .view-project:hover {
    background-color: #FA9A00;
    border-color: #FA9A00;
    color: #FFFFFF;
}

.project-pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.project-pagination li a {
    color: #222222;
    font-weight: 700;
}

@media only screen and (max-width: 575.98px) {
    .project-pagination li a {
        font-size: 13px;
    }
}

.project-pagination li a:hover {
    color: #FA9A00;
}

.project-pagination-wrap {
    margin-top: 60px;
}

@media only screen and (max-width: 767.98px) {
    .project-pagination-wrap {
        margin-top: 40px;
    }
}

.project-details-thumb .project-thumb-item {
    margin-bottom: 30px;
}

.project-details-thumb .project-thumb-item:last-child {
    margin-bottom: 0;
}

.project-details-thumb .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.project-details-thumb .slick-dots li {
    background-color: #FFFFFF;
}

.project-details-thumb .slick-dots li:hover,
.project-details-thumb .slick-dots li.slick-active {
    background-color: #FA9A00;
}

/*=============================
21. Blog Details Style CSS
==============================*/
.blog-info {
    margin-top: 40px;
}

.blog-info h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    margin-top: -7px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767.98px) {
    .blog-info h2 {
        font-size: 24px;
    }
}

.blog-meta {
    margin-bottom: 20px;
}

.blog-meta a {
    font-weight: 700;
    margin-right: 15px;
    color: #858585;
}

@media only screen and (max-width: 575.98px) {
    .blog-meta a {
        margin-right: 10px;
        font-size: 14px;
    }
}

.blog-meta a:last-child {
    margin-right: 0;
}

.blog-meta a:hover {
    color: #FA9A00;
}

.blog-share {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 32px;
}

.blog-share h4 {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
    vertical-align: middle;
}

.blog-share h4 i {
    color: #fa9a00;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -2px;
}

.blog-share a {
    color: #858585;
    line-height: 1;
    margin-left: 15px;
    margin-top: 2px;
}

.blog-share a:hover {
    color: #FA9A00;
}

blockquote,
.blockquote {
    background-color: #EEEEEE;
    color: #222222;
    font-weight: 600;
    font-family: "Source Sans Pro", sans-serif;
    padding: 60px 35px 35px;
    margin-bottom: 15px;
    position: relative;
}

blockquote:after,
.blockquote:after {
    content: "\f10e";
    color: #dddddd;
    font-family: "FontAwesome";
    font-size: 30px;
    position: absolute;
    top: 15px;
    right: 25px;
}

blockquote:before,
.blockquote:before {
    background-color: #FA9A00;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
}

blockquote .blockquote-footer,
.blockquote .blockquote-footer {
    color: #858585;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
}

/*============================
Start Comment Area Wrapper
============================*/
.comment-area-wrapper {
    margin-top: 40px;
}

.comment-area-wrapper h3 {
    font-size: 26px;
    margin-bottom: 30px;
}

.single-comment-wrap {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.single-comment-wrap:last-child {
    margin-bottom: 0;
}

.single-comment-wrap.comment-reply {
    margin-left: 50px;
}

@media only screen and (max-width: 767.98px) {
    .single-comment-wrap.comment-reply {
        margin-left: 20px;
    }
}

.single-comment-wrap .author-thumb {
    border-radius: 3px;
    margin-right: 15px;
    height: 70px;
    max-width: 70px;
    -webkit-flex-basis: 70px;
    -ms-flex-preferred-size: 70px;
    flex-basis: 70px;
    overflow: hidden;
}

.single-comment-wrap .comments-info {
    margin-top: -4px;
    -webkit-flex-basis: calc(100% - 70px);
    -ms-flex-preferred-size: calc(100% - 70px);
    flex-basis: calc(100% - 70px);
}

.single-comment-wrap .comment-footer a {
    font-size: 14px;
    color: #858585;
}

.single-comment-wrap .comment-footer a strong {
    color: #222222;
}

.single-comment-wrap .comment-footer a.btn-reply {
    color: #222222;
}

.single-comment-wrap .comment-footer a.btn-reply:hover {
    color: #FA9A00;
}

/*=========================
22. Contact Style CSS
===========================*/
.contact-map {
    height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .contact-map {
        height: 500px;
    }
}

@media only screen and (max-width: 767.98px) {
    .contact-map {
        height: 300px;
    }
}

/*==========================
24. Shop Page Style CSS
============================*/
.product-filter-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 575.98px) {
    .product-filter-area {
        display: block;
    }
}

.product-sorting .nice-select {
    border: 1px solid #ddd;
    padding: 10px 35px 10px 15px;
    min-width: 250px;
}

.product-sorting .nice-select:after {
    right: 20px;
    border-color: #858585;
    width: 7px;
    height: 7px;
}

.product-sorting .nice-select .list {
    right: 0;
    left: auto;
    font-size: 16px;
    width: 100%;
}

.product-sorting .nice-select .current {
    color: #222222;
    font-weight: 400;
    font-size: 16px;
}

/*================================
25. Product Details Style CSS
==================================*/
.prod-details-info-content h2 {
    font-weight: 600;
    margin-top: -10px;
    margin-bottom: 7px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .prod-details-info-content h2 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 767.98px) {
    .prod-details-info-content h2 {
        font-size: 22px;
    }
}

.prod-details-info-content .price-group {
    color: #e74c3c;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
    .prod-details-info-content .price-group {
        font-size: 20px;
    }
}

.prod-details-info-content .price-group del {
    margin-right: 10px;
    color: #858585;
}

.prod-details-info-content p:last-child {
    margin-bottom: 0;
}

.config-item {
    margin-bottom: 20px;
}

.config-item:last-child {
    margin-bottom: 0;
}

.config-item .config-name {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 13px;
}

.config-item .config-name b {
    text-transform: capitalize;
    margin-left: 5px;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
}

.config-item .config-list li {
    border: 1px solid #D4D4D4;
    cursor: pointer;
    color: #8d8d8d;
    height: 40px;
    padding: 3px;
    font-size: 14px;
    line-height: 1;
    display: block;
    text-align: center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-right: 5px;
    overflow: hidden;
    outline: none;
    width: 40px;
}

.config-item .config-list li.active,
.config-item .config-list li:hover {
    border-color: #FA9A00;
    color: #222222;
    font-weight: 600;
}

.config-item .config-list li span {
    line-height: 30px;
    display: block;
}

.prod-details-footer__item {
    border-bottom: 1px solid #ddd;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 0;
}

.prod-details-footer__item:first-child {
    border-top: 1px solid #ddd;
}

.prod-details-footer__item h5 {
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

@media only screen and (max-width: 575.98px) {
    .prod-details-footer__item h5 {
        font-size: 12px;
    }
}

.prod-details-footer__item h5 i {
    color: #888888;
    margin-right: 10px;
}

@media only screen and (max-width: 575.98px) {
    .prod-details-footer__item h5 i {
        margin-right: 3px;
    }
}

.prod-details-footer__item .cate-list li {
    margin-right: 10px;
}

.prod-details-footer__item .cate-list li:last-child {
    margin-right: 0;
}

.prod-details-footer__item .cate-list li a {
    color: #222222;
    font-size: 15px;
    font-weight: 600;
}

.prod-details-footer__item .cate-list li a:hover {
    color: #FA9A00;
}

.prod-details-footer__item .share-item a {
    color: #222222;
    margin-right: 15px;
}

.prod-details-footer__item .share-item a:last-child {
    margin-right: 0;
}

.prod-details-footer__item .share-item a:hover {
    color: #FA9A00;
}

.product-description-review #myTabContent {
    border: 1px solid #ddd;
    padding: 33px 30px;
}

@media only screen and (max-width: 479.98px) {
    .product-description-review #myTabContent {
        padding: 30px 15px;
    }
}

.product-description-review .desc-review-tab-menu {
    border-bottom: 0;
}

.product-description-review .desc-review-tab-menu li button {
    background-color: #EEEEEE;
    color: #222222;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 45px;
    text-transform: capitalize;
}

@media only screen and (max-width: 479.98px) {
    .product-description-review .desc-review-tab-menu li button {
        font-size: 13px;
        padding: 10px 20px;
    }
}

.product-description-review .desc-review-tab-menu li button.active {
    background-color: #FA9A00;
    color: #FFFFFF;
}

.product-rating-wrap {
    /*-- rating Form Wrap --*/
    /*-- rating Form --*/
}

.product-rating-wrap .pro-avg-rating {
    margin-bottom: 30px;
    float: left;
    width: 100%;
    line-height: 1;
}

.product-rating-wrap .pro-avg-rating h4 {
    font-size: 24px;
    margin: 0 0 7px;
    font-weight: 600;
}

.product-rating-wrap .pro-avg-rating h4 span {
    color: #000000;
    font-size: 12px;
}

.product-rating-wrap .pro-avg-rating > span {
    display: block;
}

.product-rating-wrap .rating-list {
    margin-bottom: 30px;
    float: left;
    width: 100%;
}

.product-rating-wrap .rating-list .sin-list {
    margin-right: 30px;
}

.product-rating-wrap .rating-list .sin-list:last-child {
    margin-right: 0;
}

.product-rating-wrap .rating-list .sin-list i {
    color: #fbbf00;
}

.product-rating-wrap .rating-list .sin-list span {
    color: #666666;
}

.product-rating-wrap .sin-ratings {
    margin-bottom: 25px;
}

.product-rating-wrap .sin-ratings:last-child {
    margin-bottom: 0;
}

.product-rating-wrap .sin-ratings .rating-author {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.product-rating-wrap .sin-ratings .rating-author h3 {
    float: left;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 18px;
    margin-right: 15px;
}

.product-rating-wrap .sin-ratings .rating-author .rating-star {
    line-height: 1;
}

.product-rating-wrap .sin-ratings .rating-author .rating-star i {
    color: #fbbf00;
    font-size: 14px;
}

.product-rating-wrap .sin-ratings .rating-author .rating-star span {
    margin-left: 5px;
    font-weight: 600;
}

.product-rating-wrap .rating-form-wrapper {
    margin-top: 30px;
}

.product-rating-wrap .rating-form-wrapper h3 {
    font-size: 20px;
    margin: 0 0 20px;
    text-transform: capitalize;
}

.product-rating-wrap .rating-form h5 {
    float: left;
    font-size: 16px;
    line-height: 1;
    margin-right: 10px;
    font-weight: 600;
    margin-bottom: 0;
}

.product-rating-wrap .rating-form .rating-star {
    margin-bottom: 15px;
}

.product-rating-wrap .rating-form .rating-star i {
    color: #D4D4D4;
    float: left;
    display: block;
    margin-right: 3px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.product-rating-wrap .rating-form .rating-star i:hover {
    color: #fbbf00;
}

.product-rating-wrap .rating-form .rating-star i:last-child {
    margin: 0;
}

.product-rating-wrap .rating-form label {
    display: block;
    margin-bottom: 5px;
    color: #222222;
}

.product-rating-wrap .rating-form input {
    width: 100%;
    background-color: transparent;
    border: 1px solid #ddd;
    line-height: 24px;
    padding: 8px 15px;
    outline: none;
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
}

.product-rating-wrap .rating-form input:focus {
    border-color: #FA9A00;
}

.product-rating-wrap .rating-form textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid #ddd;
    line-height: 24px;
    padding: 8px 15px;
    height: 100px;
    outline: none;
    resize: none;
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
}

.product-rating-wrap .rating-form textarea:focus {
    border-color: #FA9A00;
}

.product-rating-wrap .rating-form .btn {
    padding: 10px 40px;
}

.pro-qty {
    display: inline-block;
    position: relative;
    width: 140px;
}

.pro-qty input {
    border: 1px solid #ddd;
    font-weight: 600;
    text-align: center;
    outline: none;
    height: 45px;
    width: 100%;
}

.pro-qty a {
    color: #000000;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    position: absolute;
    top: 0;
    line-height: 45px;
    height: 100%;
    width: 30px;
}

.pro-qty a:hover {
    background-color: #FA9A00;
    color: #FFFFFF;
}

.pro-qty a.inc {
    right: 0;
    border-left: 1px solid #ddd;
}

.pro-qty a.dec {
    border-right: 1px solid #ddd;
    left: 0;
}

/*===============================
26. Cart Page Style CSS
================================*/
.shopping-cart-table thead th {
    color: #222222;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    border-bottom: 0;
}

.shopping-cart-table tr td,
.shopping-cart-table tr th {
    vertical-align: middle;
    width: 15%;
    padding: 10px;
    border-color: #ddd;
    white-space: nowrap;
}

.shopping-cart-table tr td.product-list,
.shopping-cart-table tr th.product-list {
    width: 55%;
}

.shopping-cart-table .product-list .remove-icon {
    margin-right: 15px;
}

.shopping-cart-table .product-list .remove-icon button {
    color: #858585;
}

.shopping-cart-table .product-list .remove-icon button:hover {
    color: #FA9A00;
}

.shopping-cart-table .product-list .product-thumb {
    display: block;
    width: 70px;
    margin-right: 20px;
}

.shopping-cart-table .product-list .product-name {
    color: #222222;
    line-height: 1;
}

.shopping-cart-table .product-list .product-name:hover {
    color: #FA9A00;
}

.shopping-cart-table .pro-qty {
    width: 120px;
}

.shopping-cart-table .pro-qty input {
    padding: 10px 0;
    font-weight: 400;
}

.shopping-cart-table .pro-qty a {
    width: 30px;
    line-height: 44px;
    font-weight: 400;
    font-size: 16px;
}

.cart-coupon-update-area {
    margin-top: 20px;
}

.cart-coupon-update-area button {
    font-size: 14px;
    font-weight: 700;
}

.cart-coupon-update-area button:hover {
    color: #FA9A00;
}

.cart-coupon-update-area .coupon-form-wrap {
    width: 55%;
}

@media only screen and (max-width: 575.98px) {
    .cart-coupon-update-area .coupon-form-wrap {
        width: 100%;
    }
}

.cart-coupon-update-area .coupon-form-wrap form {
    position: relative;
}

.cart-coupon-update-area .coupon-form-wrap form input {
    border: none;
    border-bottom: 1px solid #ddd;
    display: block;
    outline: none;
    padding: 5px 100px 5px 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    width: 100%;
}

.cart-coupon-update-area .coupon-form-wrap form input:focus {
    border-color: #FA9A00;
}

.cart-coupon-update-area .coupon-form-wrap form .btn-apply {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.cart-coupon-update-area .cart-update-buttons button:nth-child(1n + 2) {
    margin-left: 10px;
}

.cart-calculate-area {
    background-color: #EEEEEE;
    padding: 30px 30px 0;
}

.cart-calculate-area h5 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 20px;
}

.cart-calculate-area .cart-cal-table {
    white-space: nowrap;
}

.cart-calculate-area .cart-cal-table table {
    margin-bottom: 0;
}

.cart-calculate-area .cart-cal-table td,
.cart-calculate-area .cart-cal-table th {
    font-size: 16px;
    font-weight: 400;
    padding: 5px 0 15px;
}

.cart-calculate-area .cart-cal-table .shipping-method li {
    margin-bottom: 15px;
}

.cart-calculate-area .cart-cal-table .shipping-method li:last-child {
    margin-bottom: 0;
}

.cart-calculate-area .cart-cal-table .shipping-method .custom-control-label:before {
    height: 16px;
    width: 16px;
}

.cart-calculate-area .cart-cal-table .shipping-method .custom-control-label:after {
    background-size: 8px 8px;
    left: -21px;
    top: 3px;
}

.cart-calculate-area .cart-cal-table .order-total {
    border-top: 1px solid #ddd;
}

.cart-calculate-area .cart-cal-table .order-total th,
.cart-calculate-area .cart-cal-table .order-total td {
    padding-top: 15px;
}

.cart-calculate-area .proceed-checkout-btn {
    margin: 15px -30px 0;
}

.table-responsive::-webkit-scrollbar-thumb,
.list::-webkit-scrollbar-thumb {
    border-radius: 0;
    border: 0;
    background-color: #FA9A00;
}

.table-responsive::-webkit-scrollbar,
.list::-webkit-scrollbar {
    background-color: rgba(250, 154, 0, 0.3);
    -webkit-appearance: none;
    width: 15px;
    height: 5px;
}

/*============================
27. Checkout Page Style CSS
===============================*/
.checkout-page-coupon-area .card {
    border: none;
    padding: 0;
}

.checkout-page-coupon-area .card h3 {
    background-color: #eeeff2;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 0;
    padding: 20px 30px;
}

@media only screen and (max-width: 575.98px) {
    .checkout-page-coupon-area .card h3 {
        font-size: 14px;
        padding: 10px 15px;
    }
}

.checkout-page-coupon-area .card h3 i {
    color: #008000;
    margin-right: 10px;
}

.checkout-page-coupon-area .card h3 span {
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.checkout-page-coupon-area .card h3 span:hover {
    color: #FA9A00;
}

.checkout-page-coupon-area .card .card-body {
    padding: 0;
    margin-top: 30px;
}

.checkout-page-coupon-area .card .card-body .apply-coupon-wrapper input {
    border: 1px solid #ddd;
    outline: none;
    padding: 16px 20px;
    max-width: 500px;
    width: 100%;
}

.checkout-page-coupon-area .card .card-body .apply-coupon-wrapper input:focus {
    border-color: #FA9A00;
}

.checkout-page-coupon-area .card .card-body .apply-coupon-wrapper button.btn {
    padding: 16px 30px;
    margin-left: 20px;
}

@media only screen and (max-width: 767.98px) {
    .checkout-page-coupon-area .card .card-body .apply-coupon-wrapper button.btn {
        margin-left: 0;
        margin-top: 10px;
        padding: 10px 20px;
    }
}

.checkout-billing-details-wrap {
    margin-top: 50px;
}

@media only screen and (max-width: 767.98px) {
    .checkout-billing-details-wrap {
        margin-top: 30px;
    }
}

.checkout-billing-details-wrap h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 46px;
}

@media only screen and (max-width: 767.98px) {
    .checkout-billing-details-wrap h2 {
        margin-bottom: 26px;
    }
}

.checkout-billing-details-wrap h2:before {
    background-color: #222222;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
}

.single-input-item {
    margin-bottom: 21px;
}

.single-input-item label,
.single-input-item .custom-control-label {
    color: #222222;
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    position: relative;
}

.single-input-item label.required:after,
.single-input-item .custom-control-label.required:after {
    content: '*';
    color: red;
    margin-left: 2px;
}

.single-input-item input:not([type="checkbox"]),
.single-input-item textarea {
    border: 1px solid #ddd;
    display: block;
    outline: none;
    padding: 12px 20px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    width: 100%;
}

.single-input-item input:focus,
.single-input-item textarea:focus {
    border-color: #FA9A00;
}

.single-input-item .nice-select {
    border-width: 1px;
    line-height: 35px;
    height: 51px;
    width: 100%;
}

.single-input-item .nice-select .current {
    font-weight: 400;
    font-size: 16px;
}

.single-input-item .nice-select .list {
    font-size: 15px;
    max-height: 200px;
    overflow: auto;
    width: 100%;
}

.single-input-item .nice-select .list::-webkit-scrollbar {
    width: 4px;
}

.checkout-box-wrap .account-create,
.checkout-box-wrap .ship-to-different {
    display: none;
}

.order-details-area-wrap {
    border: 2px solid #e7e7e7;
    padding: 50px;
    margin-top: 50px;
}

@media only screen and (max-width: 575.98px) {
    .order-details-area-wrap {
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
    .order-details-area-wrap {
        margin-top: 30px;
    }
}

.order-details-area-wrap h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 35px;
}

@media only screen and (max-width: 767.98px) {
    .order-details-area-wrap h2 {
        margin-bottom: 26px;
    }
}

.order-details-area-wrap h2:before {
    background-color: #222222;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
}

.order-details-area-wrap .order-details-table {
    line-height: 1;
    white-space: nowrap;
}

.order-details-area-wrap .order-details-table .custom-control-label,
.order-details-area-wrap .order-details-table th {
    font-weight: 400;
}

.order-details-area-wrap .order-details-table .table thead {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 27px;
}

.order-details-area-wrap .order-details-table .table thead th {
    margin-bottom: 27px;
}

.order-details-area-wrap .order-details-table .table tbody {
    border-bottom: 1px solid #e7e7e7;
}

.order-details-area-wrap .order-details-table .table tbody .cart-item:first-child td {
    padding-top: 30px;
}

.order-details-area-wrap .order-details-table .table tbody .cart-item:last-child td {
    padding-bottom: 30px;
}

.order-details-area-wrap .order-details-table .table tfoot .shipping .shipping-method li {
    margin-bottom: 15px;
}

.order-details-area-wrap .order-details-table .table tfoot .shipping .shipping-method li:last-child {
    margin-bottom: 0;
}

.order-details-area-wrap .order-details-table .table tfoot .shipping .shipping-method li .custom-radio .custom-control-label:before {
    background-color: #EEEEEE;
}

.order-details-area-wrap .order-details-table .table tfoot .shipping .shipping-method li .custom-radio .custom-control-input:checked ~ .custom-control-label:before,
.order-details-area-wrap .order-details-table .table tfoot .shipping .shipping-method li .custom-radio .custom-control-input:checked label:before {
    background-color: #FA9A00;
}

.order-details-area-wrap .order-details-table .table tfoot .total-amount {
    font-size: 20px;
    font-weight: 600;
}

.order-details-area-wrap .order-details-table .table tfoot tr {
    border-bottom: 1px solid #e7e7e7;
}

.order-details-area-wrap .order-details-table .table tr td,
.order-details-area-wrap .order-details-table .table tr th {
    padding: 15px 0;
    color: #000000;
}

.order-details-area-wrap .order-details-table .table tr td:last-child,
.order-details-area-wrap .order-details-table .table tr th:last-child {
    text-align: right;
}

.order-details-area-wrap .order-details-table .product-title .product-quantity {
    color: #8d8d8d;
    font-size: 14px;
}

.order-details-area-wrap .order-details-footer {
    margin-top: 16px;
    font-size: 14px;
}

.order-details-area-wrap .order-details-footer .custom-control .custom-control-label {
    font-size: 14px;
}

.order-details-area-wrap .order-details-footer .custom-control .custom-control-label:before {
    top: 4px;
}

.order-details-area-wrap .order-details-footer .custom-control .custom-control-label:after {
    top: 3px;
}

.shipping-method .custom-control .custom-control-label:after {
    left: -22px;
}

/*=====================
28. Social Icons Style
=======================*/
.social-icons a {
    color: #888888;
    display: inline-block;
    padding: 15px;
    position: relative;
}

.social-icons a:after {
    content: '';
    background-color: #FA9A00;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    height: 0;
    width: 2px;
}

.social-icons a:before {
    content: '';
    background-color: #FA9A00;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    height: 2px;
    width: 0;
}

.social-icons a:first-child {
    margin-left: 0;
}

.social-icons a:hover {
    color: #FA9A00;
}

.social-icons a:hover:after {
    height: 10px;
}

.social-icons a:hover:before {
    width: 40px;
}

.social-icons--two a {
    font-size: 18px;
    line-height: 1;
    padding: 0;
    margin-right: 20px;
}

.social-icons--two a:last-child {
    margin-right: 0;
}

.social-icons--two a:after,
.social-icons--two a:before {
    display: none;
}

/*==============================
29. Start Revolution Slider CSS
===============================*/
.slider-area-wrapper {
    overflow: hidden;
}

.hebe.tparrows {
    cursor: pointer;
    background: white;
    min-width: 70px;
    min-height: 70px;
    position: absolute;
    display: block;
    z-index: 100;
}

.hebe.tparrows:before {
    font-family: "revicons";
    font-size: 30px;
    color: rgba(0, 0, 0, 0.5);
    display: block;
    line-height: 70px;
    text-align: center;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    z-index: 2;
    position: relative;
    background: white;
    min-width: 70px;
    min-height: 70px;
}

.hebe.tparrows .tp-title-wrap {
    position: absolute;
    z-index: 0;
    display: inline-block;
    background: #000;
    background: rgba(0, 0, 0, 0.75);
    min-height: 60px;
    line-height: 60px;
    top: -10px;
    margin-left: 0;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: scalex(0);
    -ms-transform: scalex(0);
    transform: scalex(0);
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
}

.hebe.tparrows .tp-arr-titleholder {
    position: relative;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    font-size: 12px;
    line-height: 90px;
    white-space: nowrap;
    padding: 0 20px 0 90px;
}

.hebe.tparrows .tp-arr-imgholder {
    width: 90px;
    height: 90px;
    position: absolute;
    left: 100%;
    display: block;
    background-size: cover;
    background-position: center center;
    top: 0;
    right: -90px;
}

.hebe.tparrows.tp-leftarrow:before {
    content: "\e824";
}

.hebe.tparrows.tp-rightarrow:before {
    content: "\e825";
}

.hebe.tparrows.tp-rightarrow .tp-title-wrap {
    right: 0;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.hebe.tparrows.tp-rightarrow .tp-arr-titleholder {
    margin-left: 0;
    padding: 0 90px 0 20px;
}

.hebe.tparrows.tp-rightarrow .tp-arr-imgholder {
    right: auto;
    left: -90px;
}

.hebe.tparrows:hover:before {
    color: #000000;
}

.hebe.tparrows:hover .tp-title-wrap {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.hebe.tparrows:hover .tp-arr-titleholder {
    -webkit-transform: translatex(0px);
    -ms-transform: translatex(0px);
    transform: translatex(0px);
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
    opacity: 1;
}

#slide-1-layer-2 {
    color: white;
    font-weight: 400;
    font-size: 26px;
    line-height: 26px;
    letter-spacing: -0.02em;
    white-space: nowrap;
    z-index: 5;
}

#slide-1-layer-3 {
    color: white;
    font-size: 70px;
    font-weight: 600;
    line-height: 70px;
    letter-spacing: -0.04em;
    white-space: nowrap;
    z-index: 6;
}

#slide-1-layer-4 {
    color: white;
    font-size: 22px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    white-space: nowrap;
    z-index: 7;
}

#slide-1-layer-8 {
    background-color: #fa9a00;
    border: 2px solid #fa9a00;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: white;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    line-height: 16px;
    outline: none;
    white-space: nowrap;
    z-index: 8;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#slide-2-layer-1 {
    z-index: 9;
    white-space: nowrap;
    font-size: 80px;
    line-height: 90px;
    font-weight: 900;
    color: #fa9a00;
    letter-spacing: -0.04em;
}

#slide-2-layer-2 {
    z-index: 10;
    white-space: nowrap;
    font-size: 80px;
    line-height: 90px;
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
}

#slide-2-layer-3 {
    z-index: 12;
    white-space: nowrap;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

#slide-2-layer-4 {
    z-index: 13;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: white;
    border: 2px solid white;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    cursor: pointer;
}

#slide-3-layer-1 {
    z-index: 14;
    white-space: nowrap;
    font-size: 80px;
    line-height: 90px;
    font-weight: 900;
    color: #fa9a00;
    letter-spacing: -0.04em;
}

#slide-3-layer-2 {
    z-index: 15;
    white-space: nowrap;
    font-size: 80px;
    line-height: 90px;
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
}

#slide-3-layer-3 {
    z-index: 16;
    min-width: 470px;
    max-width: 470px;
    white-space: normal;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

#slide-3-layer-6 {
    z-index: 17;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: white;
    background-color: #fa9a00;
    border: 2px solid #fa9a00;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

#slide-6-layer-4 {
    white-space: nowrap !important;
}

.tp-bannertimer {
    height: 5px;
    background: rgba(0, 0, 0, 0.15);
}

#slide-6-layer-1 > span {
    font-weight: 400;
}

#rev_slider_2_1 {
    display: none;
}

#slide-4-layer-10 {
    z-index: 5;
    white-space: nowrap;
    font-size: 70px;
    line-height: 70px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.04em;
}

#slide-4-layer-16 {
    z-index: 6;
    white-space: nowrap;
    font-size: 22px;
    line-height: 22px;
    font-weight: 400;
    color: white;
}

#slide-4-layer-17 {
    z-index: 7;
    white-space: nowrap;
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    color: white;
}

#slide-4-layer-18 {
    z-index: 8;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: white;
    border: 2px solid white;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
}

#slide-5-layer-1 {
    z-index: 9;
    white-space: nowrap;
    font-size: 80px;
    line-height: 90px;
    font-weight: 900;
    color: #fa9a00;
    letter-spacing: -0.04em;
}

#slide-5-layer-2 {
    z-index: 10;
    white-space: nowrap;
    font-size: 80px;
    line-height: 90px;
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
}

#slide-5-layer-3 {
    z-index: 12;
    white-space: nowrap;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

#slide-5-layer-4 {
    z-index: 13;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: white;
    border: 2px solid white;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
}

#slide-6-layer-1 {
    z-index: 14;
    white-space: nowrap;
    font-size: 80px;
    line-height: 90px;
    font-weight: 900;
    color: #fa9a00;
    letter-spacing: -0.04em;
    cursor: pointer;
}

#slide-6-layer-2 {
    z-index: 15;
    min-width: 570px;
    max-width: 570px;
    white-space: normal;
    font-size: 40px;
    line-height: 46px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.04em;
    cursor: pointer;
}

#slide-6-layer-4 {
    z-index: 17;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: white;
    background-color: #fa9a00;
    border: 2px solid #fa9a00;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
}

.tp-bannertimer {
    height: 5px;
    background: rgba(0, 0, 0, 0.15);
}

#rev_slider_3_1_wrapper {
    margin: 0 auto;
    background: transparent;
    padding: 0;
}

#rev_slider_3_1 {
    display: none;
}

#slide-7-layer-10 {
    z-index: 5;
    white-space: nowrap;
    font-size: 80px;
    line-height: 60px;
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
}

#slide-7-layer-17 {
    z-index: 6;
    white-space: nowrap;
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    color: white;
}

#slide-7-layer-18 {
    z-index: 7;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: white;
    border: 2px solid white;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
}

#slide-7-layer-20 {
    z-index: 8;
    white-space: nowrap;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: white;
}

#slide-7-layer-21 {
    z-index: 9;
}

#slide-8-layer-10 {
    z-index: 10;
    white-space: nowrap;
    font-size: 80px;
    line-height: 90px;
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
}

#slide-8-layer-22 {
    z-index: 11;
    white-space: nowrap;
    font-size: 80px;
    line-height: 80px;
    font-weight: 900;
    color: #333333;
    background-color: #fa9a00;
    letter-spacing: -0.04em;
    cursor: pointer;
}

#slide-8-layer-18 {
    z-index: 12;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: white;
    border: 2px solid white;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
}

#slide-8-layer-20 {
    z-index: 13;
    white-space: nowrap;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

#slide-8-layer-21 {
    z-index: 14;
}

#slide-9-layer-10 {
    z-index: 15;
    white-space: nowrap;
    font-size: 80px;
    line-height: 90px;
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
}

#slide-9-layer-22 {
    z-index: 16;
    white-space: nowrap;
    font-size: 80px;
    line-height: 90px;
    font-weight: 900;
    color: #fa9a00;
    letter-spacing: -0.04em;
}

#slide-9-layer-18 {
    z-index: 17;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: white;
    border: 2px solid white;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
}

.tp-bannertimer {
    height: 5px;
    background: rgba(0, 0, 0, 0.15);
}

#rev_slider_4_1_wrapper {
    margin: 0 auto;
    background: transparent;
    padding: 0;
}

#rev_slider_4_1 {
    display: none;
}

#slide-10-layer-9 {
    z-index: 5;
}

#slide-10-layer-3 {
    z-index: 6;
    white-space: nowrap;
    font-size: 60px;
    line-height: 60px;
    font-weight: 600;
    color: #111111;
    letter-spacing: -0.04em;
}

#slide-10-layer-4 {
    z-index: 7;
    white-space: nowrap;
    font-size: 22px;
    line-height: 22px;
    font-weight: 400;
    color: #666666;
}

#slide-10-layer-8 {
    z-index: 8;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: #212121;
    border: 2px solid #444444;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

#slide-11-layer-1 {
    z-index: 9;
    white-space: nowrap;
    font-size: 80px;
    line-height: 90px;
    font-weight: 900;
    color: white;
}

#slide-11-layer-2 {
    z-index: 10;
    white-space: nowrap;
    font-size: 22px;
    line-height: 26px;
    font-weight: 400;
    color: white;
    cursor: pointer;
}

#slide-11-layer-3 {
    z-index: 11;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: white;
    border: 2px solid white;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

#slide-12-layer-9 {
    z-index: 12;
}

#slide-12-layer-3 {
    z-index: 13;
    white-space: nowrap;
    font-size: 60px;
    line-height: 60px;
    font-weight: 600;
    color: #111111;
    letter-spacing: -0.04em;
}

#slide-12-layer-4 {
    z-index: 14;
    white-space: nowrap;
    font-size: 22px;
    line-height: 22px;
    font-weight: 400;
    color: #666666;
}

#slide-12-layer-8 {
    z-index: 15;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: #212121;
    border: 2px solid #444444;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

#slide-10-layer-4 {
    color: #FFFFFF;
}

#rev_slider_5_1_wrapper {
    margin: 0 auto;
    background: transparent;
    padding: 0;
}

#rev_slider_5_1 {
    display: none;
}

#slide-13-layer-10 {
    z-index: 5;
    letter-spacing: 2px;
}

#slide-13-layer-11 {
    z-index: 6;
    white-space: nowrap;
    font-size: 80px;
    line-height: 90px;
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
}

#slide-13-layer-12 {
    z-index: 7;
    min-width: 670px;
    max-width: 670px;
    white-space: normal;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: white;
    cursor: pointer;
}

#slide-13-layer-14 {
    z-index: 8;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: white;
    border: 2px solid white;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

#slide-13-layer-15 {
    z-index: 9;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: white;
    background-color: #fa9a00;
    border: 2px solid #fa9a00;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

#slide-14-layer-10 {
    z-index: 10;
}

#slide-14-layer-11 {
    z-index: 11;
    white-space: nowrap;
    font-size: 80px;
    line-height: 90px;
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
}

#slide-14-layer-12 {
    z-index: 12;
    min-width: 670px;
    max-width: 670px;
    white-space: normal;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: white;
    cursor: pointer;
}

#slide-14-layer-14 {
    z-index: 13;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: white;
    border: 2px solid white;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

#slide-14-layer-15 {
    z-index: 14;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: white;
    background-color: #fa9a00;
    border: 2px solid #fa9a00;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

#slide-15-layer-10 {
    z-index: 15;
}

#slide-15-layer-11 {
    z-index: 16;
    white-space: nowrap;
    font-size: 80px;
    line-height: 90px;
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
}

#slide-15-layer-12 {
    z-index: 17;
    min-width: 670px;
    max-width: 670px;
    white-space: normal;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: white;
    cursor: pointer;
}

#slide-15-layer-14 {
    z-index: 18;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: white;
    border: 2px solid white;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

#slide-15-layer-15 {
    z-index: 19;
    white-space: nowrap;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: white;
    background-color: #fa9a00;
    border: 2px solid #fa9a00;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

/* Form Check */

.form-check-input {
    margin-right: 5px;
    width: 15px;
    height: 15px;
}

.form-check-input:checked{
    background-color: #FA9A00;
    border-color: #FA9A00;
}
.form-check-input:focus {
    box-shadow: none;
}
.form-check-input[type=checkbox] {
    border-radius: 0;
}