/*-----------------------------------------------------------------------------------

    
    CSS INDEX
    =========================================
    01. header css here
    02. slider area css here
    03. product section css here
    04. banner section css here 
    05. blog area css here
    06. newsletter area css here
    07. footer area css here
    08. shop page css here
    09. error page css heer 
    10. about page css here
    11. blog page css here 
    12. blog details css here
    13. cart page css here
    14. checkout page css here
    15. contact page css here
    16. faq page css here
    17. login page css here
    18. my account css here
    19. portfolio page css here
    20. services page css here
    21. shipping css here
    22. wishlist css here
    23. newsletter popup css here
    24. modal css here
    
    

-----------------------------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css?family=Poppins:100,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");
* {
    box-sizing: border-box;
}


/* transition */


/* flex */


/* transform */


/* opacity */


/*----------------------------------------*/


/*  01. Theme default CSS
/*----------------------------------------*/


/*-- Google Font --*/


/*-- Common Style --*/

*,
*::after,
*::before {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    line-height: 24px;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    visibility: visible;
    font-family: poppins;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    margin-top: 0;
}

h1 {
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
}

h2 {
    font-size: 36px;
    line-height: 36px;
}

h3 {
    font-size: 30px;
    line-height: 30px;
}

h4 {
    font-size: 16px;
    line-height: 19px;
    font-weight: 700;
}

h5 {
    font-size: 14px;
    line-height: 18px;
}

h6 {
    font-size: 12px;
    line-height: 14px;
}

p:last-child {
    margin-bottom: 0;
}

a,
button {
    color: inherit;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}

a,
button,
img,
input,
span {
    transition: all 0.3s ease 0s;
}

*:focus {
    outline: none !important;
}

a:focus {
    color: inherit;
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

button,
input[type="submit"] {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}


/*-- 
    - Common Classes
-----------------------------------------*/

.fix {
    overflow: hidden;
}

.hidden {
    display: none;
}

.clear {
    clear: both;
}

.container {
    max-width: 1200px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 970px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 750px;
    }
}

@media only screen and (max-width: 767px) {
    .container {
        width: 450px;
    }
}

@media only screen and (max-width: 479px) {
    .container {
        width: 100%;
    }
}

.capitalize {
    text-transform: capitalize;
}

.uppercase {
    text-transform: uppercase;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
}


/*-- 
    - Background color
-----------------------------------------*/

.bg-white {
    background-color: #ffffff;
}

.bg-light-grey {
    background-color: #f6fafb;
}

.bg-grey {
    background-color: #f8f8f8;
}

.bluewood-bg {
    background: #354b65;
}


/*- Overlay Color BG -*/

.bluewood-bg-overlay {
    position: relative;
}

.bluewood-bg-overlay::before {
    background: rgba(70, 90, 112, 0.9);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.overly-bg-black {
    position: relative;
}

.overly-bg-black::after {
    background: rgba(0, 0, 0, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


/*-- 
    - color
-----------------------------------------*/


/*-- 
    - Input Placeholder
-----------------------------------------*/

input:-moz-placeholder,
textarea:-moz-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}


/*-- 
    Scroll Up 
-----------------------------------------*/

#scrollUp {
    background: #002f80 none repeat scroll 0 0;
    bottom: 85px;
    color: #ffffff;
    cursor: pointer;
    display: none;
    font-size: 20px;
    height: 45px;
    line-height: 39px;
    position: fixed;
    right: 12px;
    text-align: center;
    width: 45px;
    z-index: 9999;
    border-radius: 50%;
    border: 2px solid #fff;
    -webkit-transition: .3s;
    transition: .3s;
}

#scrollUp:hover i {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}


/*-- 
    - Main Wrapper
-----------------------------------------*/

.main-wrapper.header-transparent {
    padding: 0 !important;
    margin: 0 !important;
}


/*-- 
    - Section Padding
-------------------------------------*/

.section-ptb {
    padding: 100px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-ptb {
        padding: 90px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-ptb {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 767px) {
    .section-ptb {
        padding: 70px 0;
    }
}

@media only screen and (max-width: 479px) {
    .section-ptb {
        padding: 60px 0;
    }
}

.section-pt {
    padding-top: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-pt {
        padding-top: 90px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-pt {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .section-pt {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 479px) {
    .section-pt {
        padding-top: 60px;
    }
}

.section-pt-70 {
    padding-top: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-pt-70 {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-pt-70 {
        padding-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .section-pt-70 {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 479px) {
    .section-pt-70 {
        padding-top: 30px;
    }
}

.section-pb-70 {
    padding-bottom: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-pb-70 {
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-pb-70 {
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .section-pb-70 {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 479px) {
    .section-pb-70 {
        padding-bottom: 30px;
    }
}

.section-pb {
    padding-bottom: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-pb {
        padding-bottom: 90px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-pb {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .section-pb {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 479px) {
    .section-pb {
        padding-bottom: 60px;
    }
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-17 {
    margin-top: 17px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-23 {
    margin-top: 23px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-57 {
    margin-top: 57px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-42 {
    margin-bottom: 42px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-53 {
    margin-bottom: 53px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-57 {
    margin-bottom: 57px;
}

.mb-60 {
    margin-bottom: 60px;
}


/* 02. Element */

.button {
    background: #002f80;
    box-shadow: none;
    color: #ffffff;
    display: inline-block;
    height: 45px;
    line-height: 45px;
    padding: 0 22px;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 3px;
}


/* 2. Home 1 Header css here */


/* 01. header css here */

.off_canvars_overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    cursor: crosshair;
    background: #333;
    top: 0;
}

.off_canvars_overlay.active {
    opacity: 0.5;
    visibility: visible;
}

.Offcanvas_menu {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .Offcanvas_menu {
        display: block;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .Offcanvas_menu {
        display: block;
        margin-bottom: 25px;
    }
}

.Offcanvas_menu_wrapper {
    width: 290px;
    position: fixed;
    background: #fff;
    z-index: 99;
    top: 0;
    height: 100vh;
    transition: .5s;
    left: 0;
    margin-left: -300px;
    padding: 35px 20px 30px;
    overflow-y: auto;
}

.Offcanvas_menu_wrapper.active {
    margin-left: 0;
}

.Offcanvas_menu_wrapper .slinky-theme-default {
    background: inherit;
    min-height: 300px;
    overflow-y: auto;
}

.Offcanvas_menu_wrapper .top_left {
    display: block;
    padding-left: 0;
    text-align: center;
}

.Offcanvas_menu_wrapper .top_left>ul>li {
    padding-right: 0;
    margin-right: 10px;
}

.Offcanvas_menu_wrapper .top_left>ul>li::before {
    display: none;
}

.Offcanvas_menu_wrapper .top_left>ul>li>a {
    line-height: 25px;
    font-size: 13px;
}

.Offcanvas_menu_wrapper .top_right {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.Offcanvas_menu_wrapper .search_switcher {
    border: 0;
}

.Offcanvas_menu_wrapper .top_links {
    border: 0;
}

.Offcanvas_menu_wrapper .mini_cart_wrapper {
    border: 0;
}

.Offcanvas_menu_wrapper .canvas_phone {
    text-align: center;
    margin-bottom: 8px;
}

.Offcanvas_menu_wrapper .canvas_phone a {
    font-size: 13px;
    text-transform: capitalize;
}

.Offcanvas_menu_wrapper .canvas_phone a:hover {
    color: #002f80;
}

.offcanvas_main_menu>li {
    position: relative;
}

.offcanvas_main_menu>li.menu-open::before {
    position: absolute;
    content: "\f106";
    font-family: fontawesome;
    right: 0;
}

.offcanvas_main_menu>li.menu-open span i.fa-angle-down {
    display: none;
}

.offcanvas_main_menu li {
    position: relative;
}

.offcanvas_main_menu li:last-child {
    margin: 0;
}

.offcanvas_main_menu li span.menu-expand {
    position: absolute;
    right: 0;
}

.offcanvas_main_menu li a {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.offcanvas_main_menu li a:hover {
    color: #002f80;
}

.offcanvas_main_menu li ul.sub-menu {
    padding-left: 20px;
}

.Offcanvas_footer {
    margin-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.Offcanvas_footer span a {
    font-size: 14px;
}

.Offcanvas_footer span a:hover {
    color: #002f80;
}

.Offcanvas_footer ul {
    margin-top: 20px;
}

.Offcanvas_footer ul li {
    display: inline-block;
    margin-right: 4px;
}

.Offcanvas_footer ul li:last-child {
    margin-right: 0;
}

.Offcanvas_footer ul li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    font-size: 13px;
    color: #ffffff;
}

.Offcanvas_footer ul li.facebook a {
    background: #3c5b9b;
}

.Offcanvas_footer ul li.facebook a:hover {
    background: #002f80;
}

.Offcanvas_footer ul li.twitter a {
    background: #1DA1F2;
}

.Offcanvas_footer ul li.twitter a:hover {
    background: #002f80;
}

.Offcanvas_footer ul li.pinterest a {
    background: #BD081B;
}

.Offcanvas_footer ul li.pinterest a:hover {
    background: #002f80;
}

.Offcanvas_footer ul li.google-plus a {
    background: #DD4D42;
}

.Offcanvas_footer ul li.google-plus a:hover {
    background: #002f80;
}

.Offcanvas_footer ul li.linkedin a {
    background: #010103;
}

.Offcanvas_footer ul li.linkedin a:hover {
    background: #002f80;
}

.slinky-theme-default a:not(.back) {
    padding: 10px 0;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
}

.slinky-theme-default a:not(.back):hover {
    background: inherit;
    color: #002f80;
}

.canvas_close {
    position: absolute;
    top: 10px;
    right: 13px;
}

.canvas_close a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    width: 32px;
    height: 32px;
    display: block;
    text-align: center;
    line-height: 31px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
}

.canvas_close a:hover {
    background: #002f80;
    border-color: #002f80;
    color: #fff;
}

.canvas_open {
    display: flex;
    justify-content: space-between;
    border: 1px solid #e5e5e5;
    padding: 7px 20px 6px;
}

.canvas_open span {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.canvas_open a {
    font-size: 28px;
    color: #333;
}

.Offcanvas_two {
    margin-bottom: 0;
    margin-top: 30px;
}

@media only screen and (max-width: 767px) {
    .Offcanvas_two {
        margin-top: 25px;
    }
}

.Offcanvas_three {
    margin-top: 30px;
}

@media only screen and (max-width: 767px) {
    .Offcanvas_three {
        margin-top: 25px;
    }
}

.sticky-header.sticky {
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 900ms;
    animation-duration: 900ms;
    -webkit-animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
    animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    border-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sticky-header.sticky {
        position: inherit;
        -webkit-box-shadow: inherit;
        box-shadow: inherit;
        -webkit-animation-name: inherit;
        animation-name: inherit;
        padding: 0;
        background: inherit;
        opacity: inherit;
    }
}

@media only screen and (max-width: 767px) {
    .sticky-header.sticky {
        position: inherit;
        -webkit-box-shadow: inherit;
        box-shadow: inherit;
        -webkit-animation-name: inherit;
        animation-name: inherit;
        padding: 0;
        background: inherit;
        opacity: inherit;
    }
}

.header_top {
    border-bottom: 1px solid #e5e5e5;
    background: #2a2a2a;
    color: #fff;
}

.header_middle {
    background: #002f80;
    color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_top {
        border-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .header_top {
        border-bottom: 0;
    }
}

.top_inner {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 767px) {
    .top_inner {
        border: 0;
    }
}

.top_left {
    padding-left: 307px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .top_left {
        padding-left: 287px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .top_left {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .top_left {
        display: none;
    }
}

.top_left>ul>li {
    display: inline-block;
    position: relative;
    padding-right: 20px;
    margin-right: 20px;
}

.top_left>ul>li span {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.top_left>ul>li:hover ul.dropdown_currency,
.top_left>ul>li:hover ul.dropdown_language {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.top_left>ul>li:hover ul.dropdown_language {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.top_left>ul>li:hover ul.dropdown_links {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.top_left>ul>li:hover>a {
    color: #002f80;
}

@media only screen and (max-width: 767px) {
    .top_left>ul>li {
        padding-right: 15px;
        margin-right: 15px;
    }
}

.top_left>ul>li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.top_left>ul>li::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #e5e5e5;
    top: 50%;
    right: 0px;
    transform: translatey(-50%);
}

.top_left>ul>li:last-child::before {
    display: none;
}

.top_left>ul>li>a {
    text-transform: capitalize;
    line-height: 52px;
    font-size: 13px;
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    letter-spacing: 0.3px;
}

@media only screen and (max-width: 767px) {
    .top_left>ul>li>a {
        line-height: 22px;
    }
}

.top_left>ul>li>a i.ion-ios-arrow-down {
    margin-left: 6px;
    font-size: 11px;
}

.top_left>ul>li:hover a:not([href]):not([tabindex]) {
    color: #002f80;
}

.dropdown_currency,
.dropdown_language {
    position: absolute;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    min-width: 130px;
    text-align: left;
    top: 125%;
    left: -9px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    overflow: hidden;
    z-index: 9999;
    padding: 9px 18px 8px;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #e5e5e5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dropdown_currency,
    .dropdown_language {
        left: 0;
        min-width: 115px;
    }
}

@media only screen and (max-width: 767px) {
    .dropdown_currency,
    .dropdown_language {
        left: 0;
        min-width: 142px;
        padding: 0 6px;
        min-width: 115px;
    }
}

.dropdown_currency li,
.dropdown_language li {
    border-bottom: 1px solid #e5e5e5;
}

.dropdown_currency li:last-child,
.dropdown_language li:last-child {
    border-bottom: 0;
}

.dropdown_currency li a,
.dropdown_language li a {
    text-transform: capitalize;
    display: block;
    font-size: 13px;
    white-space: nowrap;
    padding: 7px 0;
    line-height: 20px;
}

.dropdown_currency li a:hover,
.dropdown_language li a:hover {
    color: #002f80;
}

.dropdown_language {
    right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dropdown_language {
        left: -20px;
        right: auto;
    }
}

@media only screen and (max-width: 767px) {
    .dropdown_language {
        left: -20px;
        right: auto;
    }
}

.dropdown_language li a img {
    margin-right: 4px;
}

.top_right {
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .top_right {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .top_right {
        display: none;
    }
}

.header_top_inner {
    display: flex;
    justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_top_inner {
        flex-direction: column;
    }
}

@media only screen and (max-width: 767px) {
    .header_top_inner {
        flex-direction: column;
    }
}


/*header top css end*/


/* 2.2 header middel css here */

.logo {
    position: absolute;
    left: 15px;
    top: 0;
    background: #fff;
    z-index: 9;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    padding: 0 27px;
}
.logo_two img{
    width:150px;
	margin-top:14px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .logo {
        padding: 0 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .logo {
        position: inherit;
        margin: 0 auto;
        padding: 0 10px;
        border: 0;
    }
}

@media only screen and (max-width: 767px) {
    .logo {
        position: inherit;
        margin: 0 auto;
        padding: 0;
        border: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .logo a img {
        max-width: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .logo a img {
        max-width: 180px;
    }
}

.search-container {
    margin-right: 82px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search-container {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .search-container {
        display: none;
    }
}

.search_box {
    position: relative;
    width: 540px;
    background: #fff;
    border-radius: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .search_box {
        width: 360px;
    }
}

.search_box input {
    border: 0;
    background: none;
    width: 100%;
    height: 47px;
    color: #9e9e9e;
    font-size: 13px;
    font-weight: 400;
    padding: 0 80px 0 20px;
}

@media only screen and (max-width: 767px) {
    .search_box input {
        height: 40px;
        padding: 0 100px 0 20px;
    }
}

.search_box button {
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
    background: #444444;
    width: 60px;
    height: 100%;
    color: #fff;
    font-weight: 500;
    font-size: 25px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.search_box button:hover {
    background: #2b3137;
}

@media only screen and (max-width: 767px) {
    .search_box button {
        padding: 0 20px;
        border-radius: 0 3px 3px 0;
    }
}

.search_switcher {
    width: 55px;
    text-align: center;
    border-right: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    position: relative;
}

.search_switcher:hover .dropdown_search {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.search_switcher>a {
    font-size: 16px;
    color: #333;
    line-height: 53px;
    display: block;
}

.search_switcher>a:hover {
    color: #002f80;
}

.dropdown_search {
    position: absolute;
    right: 0;
    z-index: 9;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    border-top: 1px solid #eee;
    padding: 20px;
    background: #fff;
    top: 120%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dropdown_search {
        padding: 15px;
        z-index: 99;
        left: -40px;
        right: auto;
    }
}

@media only screen and (max-width: 767px) {
    .dropdown_search {
        padding: 10px;
        z-index: 99;
        left: -40px;
        right: auto;
    }
}

.dropdown_search form {
    position: relative;
    width: 235px;
    border: 1px solid #f1f1f1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dropdown_search form {
        width: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .dropdown_search form {
        width: 200px;
    }
}

.dropdown_search form input {
    width: 100%;
    font-size: 13px;
    height: 32px;
    border: 0;
    color: #777777;
    padding: 0 45px 0 10px;
    opacity: 0.7;
}

.dropdown_search form button {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    color: #222;
    width: 41px;
    height: 100%;
    border: 0;
    background: inherit;
    opacity: 0.7;
}

.dropdown_search form button:hover {
    color: #002f80;
}

.top_links {
    /*width: 55px;*/
    text-align: center;
    border-right: 1px solid #e5e5e5;
    position: relative;
    padding: 0px 10px;
    ;
}

.top_links:hover .dropdown_links {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.top_links>a {
    font-size: 14px;
    text-transform: lowercase;
    line-height: 53px;
    display: block;
}

.top_links>a:hover {
    color: #002f80;
}

.dropdown_links {
    position: absolute;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    min-width: 130px;
    text-align: left;
    top: 125%;
    right: 0;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    overflow: hidden;
    z-index: 9999;
    padding: 9px 18px 8px;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #e5e5e5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dropdown_links {
        right: -32px;
        left: auto;
        min-width: 120px;
    }
}

@media only screen and (max-width: 767px) {
    .dropdown_links {
        right: -32px;
        left: auto;
        min-width: 120px;
        padding: 0 6px;
    }
}

.dropdown_links li {
    border-bottom: 1px solid #e5e5e5;
}

.dropdown_links li:last-child {
    border-bottom: 0;
}

.dropdown_links li a {
    text-transform: capitalize;
    display: block;
    font-size: 13px;
    white-space: nowrap;
    padding: 7px 0;
    line-height: 20px;
}

.dropdown_links li a:hover {
    color: #002f80;
}

.mini_cart_wrapper {
    position: relative;
    width: 55px;
    text-align: center;
    border-right: 1px solid #e5e5e5;
}

.mini_cart_wrapper:hover>a {
    color: #dd3531;
}

.mini_cart_wrapper span.cart_quantity {
    position: absolute;
    right: 4px;
    width: 19px;
    height: 19px;
    line-height: 19px;
    text-align: center;
    background: #dd3531;
    color: #fff;
    border-radius: 50%;
    top: 10px;
    font-size: 11px;
}

.mini_cart_wrapper>a {
    font-size: 24px;
    font-weight: 400;
    text-transform: capitalize;
    display: block;
    line-height: 53px;
}

.mini_cart_wrapper:hover .mini_cart {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.mini_cart {
    position: absolute;
    min-width: 355px;
    padding: 18px 28px 33px;
    background: #fff;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e5e5;
    z-index: 999;
    right: 0;
    text-align: left;
    top: 130%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mini_cart {
        display: none;
        opacity: inherit;
        visibility: inherit;
        top: 100%;
        transition: unset;
        min-width: 270px;
        right: -49px;
        padding: 18px 8px 33px;
    }
}

@media only screen and (max-width: 767px) {
    .mini_cart {
        min-width: 260px;
        right: -45px;
        display: none;
        opacity: inherit;
        visibility: inherit;
        top: 100%;
        padding: 18px 8px 33px;
        transition: unset;
    }
}

.cart_img {
    width: 32%;
    margin-right: 10px;
}

.cart_info {
    width: 52%;
}

.cart_info a {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 20px;
    display: block;
    margin-bottom: 6px;
}

.cart_info a:hover {
    color: #002f80;
}

.cart_info span {
    display: block;
}

.cart_info span.quantity {
    margin-bottom: 5px;
    font-size: 12px;
}

.cart_info span.price_cart {
    font-weight: 600;
}

.cart_remove {
    width: 10%;
    text-align: right;
}

.cart_remove a {
    font-size: 18px;
}

.cart_remove a:hover {
    color: #002f80;
}

.cart_item {
    overflow: hidden;
    padding: 11px 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
}

.mini_cart_table {
    padding: 23px 0;
}

.cart_total {
    display: flex;
    justify-content: space-between;
}

.cart_total span {
    font-size: 14px;
    font-weight: 400;
}

.cart_total span.price {
    font-weight: 700;
}

.cart_button:first-child {
    margin-bottom: 15px;
}

.cart_button a {
    text-transform: uppercase;
    border-radius: 3px;
    font-weight: 600;
    background: #eef0f1;
    display: block;
    text-align: center;
    line-height: 20px;
    margin-bottom: 0;
    padding: 15px 0px 13px;
}

.cart_button a:hover {
    background: #002f80;
    color: #fff;
}


/*header middel css end*/


/* 2.4 main menu css here */

.header_position {
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main_menu {
        margin-left: 32px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main_menu {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .main_menu {
        display: none;
    }
}

.main_menu nav>ul>li {
    display: inline-block;
    position: relative;
}

.main_menu nav>ul>li:hover ul.sub_menu {
    visibility: visible;
    height: auto;
}
.main_menu nav>ul>li ul.sub_menu li{
 padding:10px;   
 border-bottom:1px solid #294b79;
}
.main_menu nav>ul>li ul.sub_menu li i{
    right: 5px;
    position: absolute;
    top: 24px;
}

.main_menu nav>ul>li:hover ul.sub_menu li:hover{
    background:#002f80;
}
.main_menu nav>ul>li:hover ul.sub_menu li:last-child{
 border-bottom:none;   
}
.main_menu nav>ul>li ul.sub_menu li ul.second_level {
    display:none;
    position: absolute;
    left: 100%;
    background: #013e8f;
    z-index: 9;
    width: 200px;
    top:0;
    color:#fff;
}
.main_menu nav>ul>li ul.sub_menu li ul.second_level li{
 padding:10px;   
 border-bottom:1px solid #294b79;
}
.main_menu nav>ul>li ul.sub_menu li ul.second_level li:hover{
        background:#002f80;
}
.main_menu nav>ul>li ul.sub_menu li ul.second_level li:last-child{
  border-bottom:none;   
}
.main_menu nav>ul>li ul.sub_menu li:hover ul.second_level {
    
    display: block;
}

.main_menu nav>ul>li:hover .mega_menu {
    visibility: visible;
    max-height: 300px;
    padding: 25px 30px 30px 30px;
}

.main_menu nav>ul>li:hover>a {
    color: #fff;
    font-weight: 700;
}

.main_menu nav>ul>li>a {
    display: block;
    padding: 0 20px;
    font-size: 13px;
    line-height: 65px;
    text-transform: uppercase;
    font-weight: 500;
}

.main_menu nav>ul>li>a i {
    margin-left: 3px;
}

.main_menu nav>ul>li.active>a {
    color: #fff;
    font-weight: 700;
}

.main_menu nav>ul>li ul.sub_menu {
    position: absolute;
    min-width: 260px;
    background: #013e8f;
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    left: 0;
    right: auto;
    visibility: hidden;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    z-index: 99;
    top: 100%;
    text-align: left;
    /*max-height: 0;
    overflow: hidden;*/
    color: #fff;
}

.main_menu nav>ul>li ul.sub_menu li a {
    font-weight: 400;
    display: block;
    line-height: 30px;
    text-transform: capitalize;
    font-size: 13px;
    padding-top: 5px;
}

.main_menu nav>ul>li ul.sub_menu li a:hover {
    color: #ddd;
}

.main_menu nav>ul>li.mega_items {
    position: static;
}

.main_menu nav>ul>li .mega_menu {
    position: absolute;
    min-width: 100%;
    padding: 0 30px 0 30px;
    background: #fff;
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    left: 0;
    right: auto;
    visibility: hidden;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    z-index: 99;
    top: 100%;
    text-align: left;
    max-height: 0;
    overflow: hidden;
}

.mega_menu_inner {
    display: flex;
    justify-content: space-between;
}

.mega_menu_inner>li>a {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 8px;
}

.mega_menu_inner>li>a:hover {
    color: #002f80;
}

.mega_menu_inner>li ul li {
    display: block;
}

.mega_menu_inner>li ul li a {
    font-weight: 400;
    display: block;
    line-height: 28px;
    text-transform: capitalize;
}

.mega_menu_inner>li ul li a:hover {
    color: #002f80;
}


/*main menu css end*/


/*mobaile menu css here*/

.mean-container .mean-bar {
    background: inherit;
    position: absolute;
    z-index: 9;
    top: 43px;
    left: 0;
    width: 100%;
}

.mean-container .mean-bar::after {
    top: -33px;
    left: 22px;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .mean-container .mean-bar::after {
        left: 22px;
        font-size: 15px;
    }
}

.mean-container .mean-nav {
    max-height: 300px;
    overflow: auto;
}

.mean-container .mean-nav ul li a {
    font-weight: 400;
}

.mean-container a.meanmenu-reveal {
    float: left;
    right: 17px;
    top: -34px;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .mean-container a.meanmenu-reveal {
        right: 15px;
        top: -34px;
    }
}

.mean-container a.meanmenu-reveal span {
    background: #fff;
}

.mobile-menu {
    border: 1px solid #ddd;
    height: 45px;
    top: -31px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .mobile-menu {
        top: 19px;
    }
}


/*home two css here*/

.header_bg {
    background: #000000;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_bg {
        background: none;
    }
}

@media only screen and (max-width: 767px) {
    .header_bg {
        background: none;
    }
}

.logo_two {
    background: #002f80;
    border-left: 0;
    border-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .logo_two {
        margin: 0;
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .logo_two {
        margin: 0;
        text-align: center;
    }
}

.header_top_two {
    background: #013e8f;
    border-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_top_two {
        background: inherit;
    }
}

@media only screen and (max-width: 767px) {
    .header_top_two {
        background: inherit;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_top_two .top_right {
        border-bottom: 0;
        background: #333;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .header_top_two .top_right {
        border-bottom: 0;
        background: #333;
        margin-bottom: 25px;
    }
}

.header_top_two .top_left>ul>li::before {
    background: #434343;
}

.header_top_two .top_left>ul>li span {
    color: #bbbbbb;
}

.header_top_two .top_left>ul>li>a {
    color: #bbbbbb;
}

.header_top_two .top_left>ul>li:hover>a {
    color: #ddd;
}

.header_top_two .search_switcher {
    border-right: 1px solid #434343;
    border-left: 1px solid #434343;
}

.header_top_two .search_switcher>a {
    color: #ffffff;
}

.header_top_two .search_switcher>a:hover {
    color: #002f80;
}

.header_top_two .top_links {
    border-right: 1px solid #434343;
}

.header_top_two .top_links>a {
    color: #ffffff;
}

.header_top_two .top_links>a:hover {
    color: #ddd;
}

.header_top_two .mini_cart_wrapper {
    border-right: 1px solid #434343;
}

.header_top_two .mini_cart_wrapper>a {
    color: #ffffff;
}

.header_top_two .mini_cart_wrapper>a:hover {
    color: #002f80;
}

.menu_two nav>ul>li>a {
    color: #ffffff;
}

.menu_two nav>ul>li>a:hover {
    color: #002f80;
}


/*home three css here*/

.beader_bg3 {
    background: #002f80;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .beader_bg3 {
        background: inherit;
    }
}

@media only screen and (max-width: 767px) {
    .beader_bg3 {
        background: inherit;
    }
}

.header_top_three {
    background: #333;
    border-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_top_three {
        background: inherit;
        border-bottom: 1px solid #e5e5e5;
    }
}

@media only screen and (max-width: 767px) {
    .header_top_three {
        background: inherit;
        border-bottom: 1px solid #e5e5e5;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_top_three .top_right {
        border-bottom: 0;
        background: #333;
    }
}

@media only screen and (max-width: 767px) {
    .header_top_three .top_right {
        border-bottom: 0;
        background: #333;
    }
}

.header_top_three .top_left>ul>li::before {
    background: #434343;
}

.header_top_three .top_left>ul>li span {
    color: #bbbbbb;
}

.header_top_three .top_left>ul>li>a {
    color: #bbbbbb;
}

.header_top_three .top_left>ul>li:hover>a {
    color: #002f80;
}

.header_top_three .search_switcher {
    border-right: 1px solid #434343;
    border-left: 1px solid #434343;
}

.header_top_three .search_switcher>a {
    color: #ffffff;
}

.header_top_three .search_switcher>a:hover {
    color: #002f80;
}

.header_top_three .top_links {
    border-right: 1px solid #434343;
}

.header_top_three .top_links>a {
    color: #ffffff;
}

.header_top_three .top_links>a:hover {
    color: #002f80;
}

.header_top_three .mini_cart_wrapper {
    border-right: 1px solid #434343;
}

.header_top_three .mini_cart_wrapper>a {
    color: #ffffff;
}

.header_top_three .mini_cart_wrapper>a:hover {
    color: #002f80;
}

.menu_three nav>ul>li:hover>a {
    color: #333;
}

.menu_three nav>ul>li>a {
    color: #ffffff;
}

.menu_three nav>ul>li.active>a {
    color: #333;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .logo_three {
        margin: 0;
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .logo_three {
        margin: 0;
        text-align: center;
    }
}


/*home four css here*/

.header_bottom {
    background: #002f80;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_bottom {
        background: inherit;
    }
}

@media only screen and (max-width: 767px) {
    .header_bottom {
        background: inherit;
    }
}

.header_center_inner {
    display: flex;
    justify-content: flex-end;
    padding: 17px 0 13px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_center_inner {
        justify-content: center;
        padding: 30px 0 0;
    }
}

@media only screen and (max-width: 767px) {
    .header_center_inner {
        justify-content: center;
        padding: 25px 0 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search_field {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .search_field {
        width: 100%;
    }
}

.search_field form {
    position: relative;
    float: left;
    width: 680px;
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    background: #ffffff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .search_field form {
        width: 500px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search_field form {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .search_field form {
        width: 100%;
    }
}

.search_field form input {
    width: 100%;
    border: 0;
    height: 45px;
    border-radius: 30px;
    padding: 0 80px 0 20px;
    opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search_field form input {
        height: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .search_field form input {
        height: 40px;
        padding: 0 66px 0 20px;
    }
}

.search_field form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 100%;
    border: 0;
    border-radius: 0px 30px 30px 0px;
    background: #1975d2;
    font-size: 16px;
    color: #ffffff;
}

.search_field form button:hover {
    background: #002f80;
}

@media only screen and (max-width: 767px) {
    .search_field form button {
        width: 52px;
    }
}

.mini_cart_four {
    border: 0;
    margin-left: 45px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mini_cart_four {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .mini_cart_four {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mini_cart_four>a {
        line-height: 42px;
    }
}

@media only screen and (max-width: 767px) {
    .mini_cart_four>a {
        line-height: 42px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_links {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .header_links {
        display: none;
    }
}

.header_links ul li {
    display: inline-block;
    padding-right: 15px;
}

.header_links ul li:last-child {
    padding-right: 0;
}

.header_links ul li a {
    color: #bbbbbb;
    font-size: 12px;
    text-transform: capitalize;
    line-height: 34px;
    display: block;
}

.header_links ul li a:hover {
    color: #002f80;
}

.header_top_four {
    background: #333;
    border-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_top_four {
        background: inherit;
        border-bottom: 1px solid #e5e5e5;
    }
}

@media only screen and (max-width: 767px) {
    .header_top_four {
        background: inherit;
        border-bottom: 1px solid #e5e5e5;
    }
}

.header_top_four .top_left>ul>li::before {
    background: #434343;
}

.header_top_four .top_left>ul>li span {
    color: #bbbbbb;
}

.header_top_four .top_left>ul>li>a {
    color: #bbbbbb;
    line-height: 34px;
}

.header_top_four .top_left>ul>li:hover>a {
    color: #002f80;
}

.logo_four {
    padding: 0;
}


/*-- 2.3 Categories menu css here --*/

.categories_menu {
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu {
        margin-bottom: 25px;
    }
}

.categories_title {
    background: #333;
    padding-left: 30px;
    position: relative;
    cursor: pointer;
    height: 54px;
    line-height: 56px;
}

@media only screen and (max-width: 767px) {
    .categories_title {
        height: 48px;
        line-height: 48px;
    }
}

.categories_title::after {
    content: "\f3d0";
    color: #fff;
    display: inline-block;
    font-family: Ionicons;
    position: absolute;
    font-size: 14px;
    line-height: 0px;
    right: 20px;
    top: 50%;
    transform: translatey(-50%);
}

.categories_title.active::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.categories_title h2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    color: #fff;
    cursor: pointer;
    margin-bottom: 0;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1px;
}

.categories_menu_toggle {
    padding: 15px 0 9px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #fff;
    position: absolute;
    width: 100%;
    top: 100%;
    z-index: 9;
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle {
        display: none;
        max-height: 350px;
        overflow: auto;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu_toggle {
        display: none;
        max-height: 350px;
        overflow: auto;
    }
}

.categories_menu_toggle>ul>li {
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle>ul>li.menu_item_children>a {
        position: relative;
    }
    .categories_menu_toggle>ul>li.menu_item_children>a::before {
        position: absolute;
        content: "+";
        right: 15px;
        top: 50%;
        transform: translatey(-50%);
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu_toggle>ul>li.menu_item_children>a {
        position: relative;
    }
    .categories_menu_toggle>ul>li.menu_item_children>a::before {
        position: absolute;
        content: "+";
        right: 15px;
        top: 50%;
        transform: translatey(-50%);
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle>ul>li.menu_item_children.open>a::before {
        display: none;
    }
    .categories_menu_toggle>ul>li.menu_item_children.open>a::after {
        position: absolute;
        content: "-";
        right: 15px;
        top: 50%;
        transform: translatey(-50%);
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu_toggle>ul>li.menu_item_children.open>a::before {
        display: none;
    }
    .categories_menu_toggle>ul>li.menu_item_children.open>a::after {
        position: absolute;
        content: "-";
        right: 15px;
        top: 50%;
        transform: translatey(-50%);
        font-size: 30px;
    }
}

.categories_menu_toggle>ul>li>a {
    font-size: 14px;
    line-height: 43px;
    text-transform: capitalize;
    font-weight: 400;
    display: block;
    cursor: pointer;
    padding: 0 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .categories_menu_toggle>ul>li>a {
        line-height: 38px;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu_toggle>ul>li>a {
        line-height: 35px;
    }
}

.categories_menu_toggle>ul>li>a i.fa-angle-right {
    float: right;
    color: #333;
    font-size: 15px;
    line-height: 35px;
    transition: .3s;
    -webkit-transition: .3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle>ul>li>a i.fa-angle-right {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu_toggle>ul>li>a i.fa-angle-right {
        display: none;
    }
}

.categories_menu_toggle>ul>li:last-child>a {
    border-bottom: 0;
}

.categories_menu_toggle>ul>li:hover ul.categories_mega_menu {
    opacity: 1;
    visibility: visible;
    left: 100%;
}

.categories_menu_toggle>ul>li:hover>a {
    background: #002f80;
    color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle>ul>li:hover>a {
        background: inherit;
        color: #002f80;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu_toggle>ul>li:hover>a {
        background: inherit;
        color: #002f80;
    }
}

.categories_menu_toggle>ul>li ul.categories_mega_menu {
    position: absolute;
    left: 120%;
    width: 630px;
    -webkit-box-shadow: 1px 0 6px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 1px 0 6px 0 rgba(0, 0, 0, 0.3);
    background: #fff;
    padding: 20px 20px 16px;
    overflow: hidden;
    top: 0;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .categories_menu_toggle>ul>li ul.categories_mega_menu {
        width: 680px;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu_toggle>ul>li ul.categories_mega_menu {
        display: none;
        opacity: inherit !important;
        visibility: inherit !important;
        left: inherit !important;
        width: 100%;
        top: 100%;
        max-height: 350px;
        overflow: auto;
        transition: unset;
        box-shadow: inherit;
        position: inherit;
        padding: 6px 20px 0px 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle>ul>li ul.categories_mega_menu {
        display: none;
        opacity: inherit !important;
        visibility: inherit !important;
        left: inherit !important;
        width: 100%;
        top: 100%;
        max-height: 350px;
        overflow: auto;
        transition: unset;
        box-shadow: inherit;
        position: inherit;
        padding: 6px 20px 0px 40px;
    }
}

.categories_menu_toggle>ul>li ul.categories_mega_menu.open {
    display: block;
    left: 0;
}

.categories_menu_toggle>ul>li ul.categories_mega_menu>li {
    padding: 0 15px;
    width: 33%;
    float: left;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle>ul>li ul.categories_mega_menu>li {
        width: 100%;
        padding: 0;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu_toggle>ul>li ul.categories_mega_menu>li {
        width: 100%;
        padding: 0;
    }
}

.categories_menu_toggle>ul>li ul.categories_mega_menu>li>a {
    line-height: 30px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.categories_menu_toggle>ul>li ul.categories_mega_menu>li>a:hover {
    color: #002f80;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle>ul>li ul.categories_mega_menu>li.menu_item_children>a {
        text-transform: capitalize;
        font-weight: 400;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu_toggle>ul>li ul.categories_mega_menu>li.menu_item_children>a {
        text-transform: capitalize;
        font-weight: 400;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle ul li.categorie_list ul.categories_mega_menu>li.menu_item_children>a {
        position: relative;
    }
    .categories_menu_toggle ul li.categorie_list ul.categories_mega_menu>li.menu_item_children>a::before {
        position: absolute;
        content: "+";
        right: 15px;
        top: 50%;
        transform: translatey(-50%);
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu_toggle ul li.categorie_list ul.categories_mega_menu>li.menu_item_children>a {
        position: relative;
    }
    .categories_menu_toggle ul li.categorie_list ul.categories_mega_menu>li.menu_item_children>a::before {
        position: absolute;
        content: "+";
        right: 15px;
        top: 50%;
        transform: translatey(-50%);
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle ul li.categorie_list ul.categories_mega_menu>li.menu_item_children.open>a::before {
        display: none;
    }
    .categories_menu_toggle ul li.categorie_list ul.categories_mega_menu>li.menu_item_children.open>a::after {
        position: absolute;
        content: "-";
        right: 15px;
        top: 50%;
        transform: translatey(-50%);
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu_toggle ul li.categorie_list ul.categories_mega_menu>li.menu_item_children.open>a::before {
        display: none;
    }
    .categories_menu_toggle ul li.categorie_list ul.categories_mega_menu>li.menu_item_children.open>a::after {
        position: absolute;
        content: "-";
        right: 15px;
        top: 50%;
        transform: translatey(-50%);
        font-size: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categorie_sub_menu {
        display: none;
        padding: 1px 0 9px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .categorie_sub_menu {
        display: none;
        padding: 1px 0 9px 30px;
    }
}

.categorie_sub_menu li a {
    text-transform: capitalize;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 38px;
}

.categorie_sub_menu li a:hover {
    color: #002f80;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categorie_sub_menu li a {
        line-height: 33px;
    }
}

@media only screen and (max-width: 767px) {
    .categorie_sub_menu li a {
        line-height: 33px;
    }
}

.categories_menu_toggle ul li ul.categories_mega_menu.column_3 {
    width: 550px;
}

@media only screen and (max-width: 767px) {
    .categories_menu_toggle ul li ul.categories_mega_menu.column_3 {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle ul li ul.categories_mega_menu.column_3 {
        width: 100%;
    }
}

.categories_menu_toggle ul li ul.categories_mega_menu.column_3>li {
    width: 33.33%;
}

@media only screen and (max-width: 767px) {
    .categories_menu_toggle ul li ul.categories_mega_menu.column_3>li {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle ul li ul.categories_mega_menu.column_3>li {
        width: 100%;
    }
}

.categories_menu_toggle ul li ul.categories_mega_menu.column_2 {
    width: 400px;
}

.categories_menu_toggle ul li ul.categories_mega_menu.column_2>li {
    width: 50%;
}

@media only screen and (max-width: 767px) {
    .categories_menu_toggle ul li ul.categories_mega_menu.column_2>li {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle ul li ul.categories_mega_menu.column_2>li {
        width: 100%;
    }
}

.categorie_sub {
    opacity: 0;
    z-index: 999;
    position: absolute;
    width: 101%;
    left: -1px;
    border: lef;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    top: 65%;
    visibility: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categorie_sub {
        width: 100%;
        left: 0px;
    }
}

.categorie_sub.open {
    top: 95%;
    opacity: 1;
    visibility: visible;
}

.categories_menu_toggle ul li.has-sub>a::before {
    position: absolute;
    content: "\f055";
    font-family: FontAwesome;
    top: 0;
    right: 20px;
    font-size: 18px;
    pointer-events: none;
}

.categories_menu_toggle ul li.has-sub>a.open::before {
    content: "\f056";
}

.categories_menu_toggle ul li.has-sub ul.categorie_sub li a {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
    padding-left: 15px;
    line-height: 43px;
    display: block;
}

.categories_menu_toggle ul li.has-sub ul.categorie_sub li {
    padding-bottom: 16px;
}

.categories_menu_toggle ul li.has-sub ul.categorie_sub li a:hover {
    background: #002f80;
    color: #fff;
}

.categories_menu_toggle ul li.has-sub {
    padding-bottom: 10px;
}

.categories_menu_toggle ul li ul.categories_mega_menu>li:first-child {
    padding-left: 0;
}

.categories_menu_toggle ul li ul.categories_mega_menu>li:last-child {
    padding-right: 0;
}

.categorie_banner {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 500px;
}

@media only screen and (max-width: 767px) {
    .categorie_banner {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categorie_banner {
        display: none;
    }
}

.categorie_banner a img:hover {
    opacity: 0.8;
}


/*-- 2.7 Categories menu css end --*/

.menu_four nav>ul>li.active>a {
    color: #333;
}

.menu_four nav>ul>li:hover>a {
    color: #333;
}

.menu_four nav>ul>li>a {
    color: #fff;
    line-height: 54px;
}

.header_center {
    background: #F5F5F5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_center {
        margin-bottom: 30px;
        background: none;
    }
}

@media only screen and (max-width: 767px) {
    .header_center {
        margin-bottom: 25px;
        background: none;
    }
}

.header_border {
    border-bottom: 1px solid #e5e5e5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_border {
        border-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .header_border {
        border-bottom: 0;
    }
}


/* 02. slider area css here */

.single_slider {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    height: 747px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .single_slider {
        height: 530px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single_slider {
        height: 470px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_slider {
        height: 420px;
    }
}

@media only screen and (max-width: 767px) {
    .single_slider {
        background-position: 10%;
        height: 350px;
    }
}

@media only screen and (max-width: 767px) {
    .single_slider.slider_bottom {
        background-position: 52%;
    }
}

.slider_area:hover .owl-nav>div {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

.slider_area .owl-nav>div {
    position: absolute;
    top: 60%;
    transform: translatey(-50%);
    line-height: 64px;
    width: 68px;
    height: 68px;
    text-align: center;
    left: 30px;
    font-size: 24px;
    border: 2px solid #fff;
    border-radius: 100%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #fff;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (max-width: 767px) {
    .slider_area .owl-nav>div {
        line-height: 36px;
        width: 40px;
        height: 40px;
        left: 12px;
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider_area .owl-nav>div {
        line-height: 44px;
        width: 50px;
        height: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider_area .owl-nav>div {
        line-height: 52px;
        width: 55px;
        height: 55px;
        left: 20px;
        font-size: 20px;
    }
}

.slider_area .owl-nav>div:hover {
    background: #002f80;
    border-color: #002f80;
}

.slider_area .owl-nav>div.owl-next {
    right: 30px;
    left: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider_area .owl-nav>div.owl-next {
        right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_area .owl-nav>div.owl-next {
        right: 12px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .content_position_left {
        padding-left: 130px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .content_position_left {
        padding-left: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .content_position_left {
        padding-left: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .content_position_left {
        text-align: center;
    }
}

.content_position_left h2 {
    font-size: 80px;
    line-height: 80px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .content_position_left h2 {
        font-size: 60px;
        line-height: 60px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .content_position_left h2 {
        font-size: 50px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .content_position_left h2 {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .content_position_left h2 {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 14px;
    }
}

.content_position_left h2 span {
    font-weight: 700;
    color: #002f80;
}

.content_position_left p {
    font-size: 26px;
    line-height: 26px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .content_position_left p {
        font-size: 20px;
        line-height: 24px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .content_position_left p {
        font-size: 20px;
        line-height: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .content_position_left p {
        font-size: 18px;
        margin-bottom: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .content_position_left p {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 13px;
    }
}

.content_position_left p span {
    font-weight: 600;
}

.content_position_left h1 {
    font-size: 170px;
    line-height: 130px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .content_position_left h1 {
        font-size: 130px;
        line-height: 100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .content_position_left h1 {
        font-size: 100px;
        line-height: 80px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .content_position_left h1 {
        font-size: 80px;
        line-height: 80px;
        line-height: 65px;
    }
}

@media only screen and (max-width: 767px) {
    .content_position_left h1 {
        font-size: 50px;
        line-height: 50px;
    }
}

.content_position_left h1 span {
    font-size: 80px;
    line-height: 38px;
    position: relative;
    top: -58px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .content_position_left h1 span {
        font-size: 60px;
        top: -44px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .content_position_left h1 span {
        font-size: 50px;
        top: -35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .content_position_left h1 span {
        font-size: 50px;
        top: -19px;
    }
}

@media only screen and (max-width: 767px) {
    .content_position_left h1 span {
        font-size: 24px;
        line-height: 27px;
        top: -15px;
    }
}

.content_position_left a {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    display: inline-block;
    border: 2px solid #c7c0ba;
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 30px;
    margin-top: 27px;
    background: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .content_position_left a {
        margin-top: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .content_position_left a {
        margin-top: 9px;
        padding: 7px 13px;
        font-size: 12px;
        line-height: 20px;
    }
}

.content_position_left a:hover {
    background: #002f80;
    border-color: #002f80;
    color: #fff;
}

.content_position_center {
    text-align: center;
    display: inline-block;
    border-top: 6px solid #B6BEC0;
    border-bottom: 6px solid #B6BEC0;
    position: relative;
}

.content_position_center h2 {
    font-size: 24px;
    line-height: 26px;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .content_position_center h2 {
        font-size: 24px;
        line-height: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .content_position_center h2 {
        font-size: 20px;
        line-height: 20px;
    }
}

.content_position_center h2 span {
    font-weight: 700;
    font-size: 32px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .content_position_center h2 span {
        font-size: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .content_position_center h2 span {
        font-size: 26px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .content_position_center h2 {
        font-size: 20px;
        line-height: 20px;
    }
}

.content_position_center h1 {
    font-size: 50px;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .content_position_center h1 {
        font-size: 40px;
        line-height: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .content_position_center h1 {
        font-size: 40px;
        line-height: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .content_position_center h1 {
        font-size: 35px;
        line-height: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .content_position_center h1 {
        font-size: 30px;
        line-height: 30px;
    }
}

.content_position_center a {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 600;
    background: #fff;
    color: #fff;
    padding: 13px 22px;
    display: inline-block;
    margin-top: 43px;
}

.content_position_center a:hover {
    background: #002f80;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .content_position_center a {
        margin-top: 25px;
        padding: 10px 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .content_position_center a {
        font-size: 13px;
        margin-top: 20px;
        padding: 9px 16px;
    }
}

@media only screen and (max-width: 767px) {
    .content_position_center a {
        font-size: 13px;
        padding: 8px 16px;
        margin-top: 18px;
    }
}

.content_position_center::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 20%;
    background: #B6BEC0;
    top: 0;
    left: 0;
}

.content_position_center::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 20%;
    background: #B6BEC0;
    top: 0;
    right: 0;
}

.content_position_center .slider_before {
    position: relative;
    padding: 20px 0;
}

@media only screen and (max-width: 767px) {
    .content_position_center .slider_before {
        padding: 15px 0;
    }
}

.content_position_center .slider_before::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 46%;
    background: #B6BEC0;
    bottom: 0;
    left: 0;
}

.content_position_center .slider_before::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 46%;
    background: #B6BEC0;
    bottom: 0;
    right: 0;
}

.active .slider_content h1,
.active .slider_content h2,
.active .slider_content h3,
.active .slider_content p,
.active .slider_content a {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    color: #fff;
}

.active .slider_content p {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.active .slider_content h1 {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.active .slider_content a {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    color: #2a2a2a;
}

.active .slider_content h3 {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}


/*home two css here*/

.slider_two .single_slider {
    height: 450px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider_two .single_slider {
        height: 330px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_two .single_slider {
        height: 300px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_two .single_slider.slider_bottom {
        background-position: 0%;
    }
}

.slider_two .content_position_left {
    padding-left: 100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .slider_two .content_position_left {
        padding-left: 130px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider_two .content_position_left {
        padding-left: 72px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_two .content_position_left {
        padding-left: 0;
        width: 100%;
    }
}

.slider_two .content_position_left h2 {
    color: #ffffff;
}

.slider_two .content_position_left h2 span {
    color: #FFF701;
}

.slider_two .content_position_left p {
    color: #ffffff;
    margin-bottom: 18px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider_two .content_position_left p {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_two .content_position_left p {
        margin-bottom: 14px;
    }
}

.slider_two .content_position_left h3 {
    font-size: 60px;
    color: #FFF701;
    font-weight: 600;
    line-height: 60px;
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider_two .content_position_left h3 {
        font-size: 53px;
        line-height: 55px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_two .content_position_left h3 {
        font-size: 35px;
        line-height: 36px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider_two .content_position_left a {
        margin-top: 22px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_two .content_position_left a {
        margin-top: 18px;
    }
}

.slider_two .content_position_center {
    margin-left: 130px;
    border-top: 6px solid #6CC7E4;
    border-bottom: 6px solid #6CC7E4;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider_two .content_position_center {
        margin-left: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider_two .content_position_center {
        margin-left: 86px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_two .content_position_center {
        margin: 0 auto;
    }
}

.slider_two .content_position_center::before {
    background: #6CC7E4;
}

.slider_two .content_position_center:after {
    background: #6CC7E4;
}

.slider_two .content_position_center h2 {
    color: #ffffff;
}

.slider_two .content_position_center h1 {
    color: #ffffff;
    font-size: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider_two .content_position_center h1 {
        font-size: 45px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider_two .content_position_center h1 {
        font-size: 36px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_two .content_position_center h1 {
        font-size: 30px;
    }
}

.slider_two .content_position_center .slider_before::before {
    background: #6CC7E4;
}

.slider_two .content_position_center .slider_before:after {
    background: #6CC7E4;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider_two .content_position_center .slider_before {
        padding: 15px 0;
    }
}


/*home three css here*/

@media only screen and (max-width: 767px) {
    .slider_banner_section {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_banner_section.mt-30 {
        margin-top: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_three {
        margin-bottom: 30px;
    }
}

.slider_three .single_slider {
    height: 546px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider_three .single_slider {
        height: 436px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider_three .single_slider {
        height: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_three .single_slider {
        height: 330px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_three .single_slider.slider_bottom {
        background-position: 0%;
    }
}

.slider_three .content_position_center {
    border-top: 6px solid #6CC7E4;
    border-bottom: 6px solid #6CC7E4;
    margin-left: 70px;
}

.slider_three .content_position_center::before {
    background: #6CC7E4;
}

.slider_three .content_position_center::after {
    background: #6CC7E4;
}

@media only screen and (max-width: 767px) {
    .slider_three .content_position_center {
        margin: 0 auto;
    }
}

.slider_three .content_position_center h2 {
    color: #ffffff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider_three .content_position_center h2 {
        font-size: 21px;
        line-height: 22px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_three .content_position_center h2 {
        font-size: 18px;
        line-height: 19px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider_three .content_position_center h2 span {
        font-size: 27px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_three .content_position_center h2 span {
        font-size: 22px;
    }
}

.slider_three .content_position_center h1 {
    color: #ffffff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider_three .content_position_center h1 {
        font-size: 30px;
        line-height: 34px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_three .content_position_center h1 {
        font-size: 24px;
        line-height: 22px;
    }
}

.slider_three .content_position_center a {
    margin-top: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider_three .content_position_center a {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .slider_three .content_position_center a {
        margin-top: 15px;
        padding: 6px 16px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider_three .slider_before {
        padding: 15px 0;
    }
}

.slider_three .slider_before::before {
    background: #6CC7E4;
}

.slider_three .slider_before::after {
    background: #6CC7E4;
}

.slider_three .content_position_left {
    padding-left: 70px;
}

@media only screen and (max-width: 767px) {
    .slider_three .content_position_left {
        padding-left: 0;
    }
}

.slider_three .content_position_left h2 {
    background: #94908F;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-block;
    line-height: 26px;
    padding: 0 14px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 2px;
    word-spacing: 3px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    .slider_three .content_position_left h2 {
        letter-spacing: 1px;
        word-spacing: 1px;
        font-size: 16px;
    }
}

.slider_three .content_position_left p {
    font-size: 15px;
    line-height: 24px;
    text-transform: capitalize;
    font-weight: 600;
    max-width: 331px;
}

@media only screen and (max-width: 767px) {
    .slider_three .content_position_left p {
        line-height: 22px;
        padding: 0 20px;
        font-size: 14px;
    }
}

.slider_three .content_position_left h1 {
    color: #987053;
    font-size: 54px;
    line-height: 55px;
    text-transform: capitalize;
    font-weight: 300;
    margin-bottom: 6px;
}

@media only screen and (max-width: 767px) {
    .slider_three .content_position_left h1 {
        font-size: 30px;
        line-height: 30px;
    }
}

.slider_three .content_position_left h1 span {
    position: inherit;
    font-weight: 700;
    font-size: 70px;
    line-height: 70px;
}

.slider_three .content_position_left h3 {
    font-size: 34px;
    line-height: 35px;
    font-weight: 600;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .slider_three .content_position_left h3 {
        font-size: 28px;
        line-height: 28px;
    }
}


/*  04. banner section css here  */

@media only screen and (max-width: 767px) {
    .banner_area {
        margin-bottom: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .banner_area_one {
        margin-bottom: 23px;
    }
}

@media only screen and (max-width: 767px) {
    .single_banner {
        margin-bottom: 30px;
    }
}

.banner_thumb {
    position: relative;
}

.banner_text {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translatey(-50%);
    text-align: right;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner_text {
        right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .banner_text {
        right: 30px;
    }
}

.banner_text h2 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .banner_text h2 {
        font-size: 23px;
        line-height: 25px;
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner_text h2 {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 7px;
    }
}

@media only screen and (max-width: 767px) {
    .banner_text h2 {
        font-size: 15px;
        line-height: 21px;
        margin-bottom: 6px;
    }
}

.banner_text h3 {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 12px;
}

@media only screen and (max-width: 767px) {
    .banner_text h3 {
        margin-bottom: 8px;
    }
}

.banner_text a {
    font-size: 14px;
    color: #002f80;
    font-weight: 500;
    line-height: 21px;
    text-transform: uppercase;
    display: inline-block;
    pointer-events: visible;
    margin-top: 42px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .banner_text a {
        margin-top: 12px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner_text a {
        font-size: 12px;
        line-height: 28px;
        padding: 0 11px;
        margin-top: 6px;
    }
}

.banner_text a:hover {
    color: #333;
}

@media only screen and (max-width: 767px) {
    .banner_text a {
        font-size: 12px;
        margin-top: 0;
    }
}

.sidebar_banner_thumb {
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .sidebar_banner_thumb {
        text-align: center;
        margin-bottom: 30px;
    }
}

.sidebar_banner_thumb a:hover img {
    -moz-transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -o-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

@media only screen and (max-width: 767px) {
    .sidebar_banner_thumb a {
        width: 100%;
    }
}

.sidebar_banner_thumb a img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media only screen and (max-width: 767px) {
    .sidebar_banner_thumb a img {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .home_banner_area {
        margin-bottom: 27px;
    }
}

.home_banner_thumb {
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .home_banner_thumb {
        text-align: center;
        margin-bottom: 30px;
    }
}

.home_banner_thumb a:hover img {
    -moz-transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -o-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

@media only screen and (max-width: 767px) {
    .home_banner_thumb a {
        width: 100%;
    }
}

.home_banner_thumb a img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media only screen and (max-width: 767px) {
    .home_banner_thumb a img {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home_banner_container {
        display: flex;
        margin-top: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home_banner_container .home_banner_thumb {
        margin-bottom: 0;
        margin-right: 30px;
        width: 50%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home_banner_container .home_banner_thumb:last-child {
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home_banner_container .home_banner_thumb a {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home_banner_container .home_banner_thumb a img {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .banner_two_top {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .banner_two_bottom {
        margin-bottom: 23px;
    }
}

@media only screen and (max-width: 767px) {
    .home_banner_three {
        margin-bottom: 23px;
    }
}

@media only screen and (max-width: 767px) {
    .banner_area_four {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .home_banner_four {
        margin-bottom: 23px;
    }
}


/* 03. product section css here */

.tab-content>.tab-pane.active {
    display: block;
    height: auto;
    opacity: 1;
    overflow: visible;
}

.tab-content>.tab-pane {
    display: block;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.product_tab_button {
    margin-bottom: 23px;
}

@media only screen and (max-width: 767px) {
    .product_tab_button {
        justify-content: center;
        margin-bottom: 20px;
    }
}

.product_tab_button li a {
    font-size: 16px;
    color: #444444;
    line-height: 25px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    display: block;
    padding-right: 35px;
}

@media only screen and (max-width: 767px) {
    .product_tab_button li a {
        padding-right: 25px;
        font-size: 14px;
    }
}

.product_tab_button li a:hover {
    color: #333;
}

.product_tab_button li a::before {
    position: absolute;
    content: "";
    right: 0;
    background: url(../img/icon/bg_tab.png) 50% 50% no-repeat;
    top: 49%;
    transform: translatey(-50%);
    width: 10px;
    height: 10px;
    padding-right: 32px;
}

@media only screen and (max-width: 767px) {
    .product_tab_button li a::before {
        padding-right: 25px;
    }
}

.product_tab_button li a.active {
    color: #333;
}

.product_tab_button li:last-child a {
    padding-right: 0;
}

.product_tab_button li:last-child a::before {
    display: none;
}

.product_thumb {
    position: relative;
}

.product_thumb a.secondary_img {
    position: absolute;
    /* top: 0; */
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.product_carousel {
    border: 1px solid #e5e5e5;
}

.product_carousel:hover .owl-nav>div {
    opacity: 1;
    visibility: visible;
}

.product_carousel .owl-nav>div {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.product_carousel .owl-nav>div:hover {
    background: #002f80;
    border-color: #002f80;
    color: #fff;
}

.product_carousel .owl-nav>div.owl-next {
    right: 0;
    left: auto;
}

.product_carousel .owl-item.last .single_product {
    border-right: 0;
}

.single_product {
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 10px;
    box-shadow: 0px 5px 5px 0px rgba(204, 204, 204, 0.75);
}

.single_product:last-child {
    border-bottom: 0;
}

.single_product:hover {
    box-shadow: 0px 5px 25px 0px rgba(204, 204, 204, 0.75) !important;
}

.single_product:hover .product_thumb a.secondary_img {
    opacity: 1;
    visibility: visible;
}

.single_product:hover .action_links {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
}

.product_content {
    margin-bottom: 15px;
    text-align: center;
    background: #fff;
    padding: 20px 5px;
}

.action_links {
    transition: all 0.5s ease;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    text-align: center;
}

.action_links ul {
    display: flex;
}

.action_links ul li {
    border-left: 1px solid #fff;
}

.action_links ul li:first-child {
    border: 0;
}

.action_links ul li.add_to_cart {
    width: 51%;
}

.action_links ul li.wishlist {
    width: 25%;
}

.action_links ul li.compare {
    width: 25%;
}

.action_links ul li a {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    display: block;
    height: 45px;
    line-height: 45px;
    background: #002f80;
}

.action_links ul li a:hover {
    background: #31a2e2;
}

.label_product {
    position: absolute;
    top: 20px;
    right: 20px;
}

.label_product span {
    color: #fff;
    min-width: 52px;
    min-height: 52px;
    line-height: 52px;
    border-radius: 0px 50px 50px;
    font-weight: 500;
    text-align: center;
    font-size: 14px;
    text-transform: capitalize;
    display: inline-block;
}

.label_product span.label_sale {
    background: #f82e56;
}

.label_product span.label_new {
    background: #31a2e2;
}

.product_name h3 {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-family: 'Open Sans', sans-serif;
}

.product_name h3 a {
    line-height: 20px;
    display: block;
    font-size: 16px;
}

.product_name h3 a:hover {
    color: #002f80;
}

.price_box span {
    font-weight: 500;
    font-size: 14px;
}

.price_box span.current_price {
    color: #dd3531;
    margin-right: 5px;
}

.price_box span.old_price {
    text-decoration: line-through;
}


/*deals section css here*/

.deals_title {
    border-top: 1px solid #002f80;
    margin-bottom: 25px;
}

.deals_title h2 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    line-height: 41px;
    margin-bottom: 0;
    padding-left: 50px;
}

.deals_title h2::before {
    content: "\f1da";
    display: block;
    position: absolute;
    font-family: "FontAwesome";
    font-size: 24px;
    width: 41px;
    height: 41px;
    background: #d9121f;
    color: #fff;
    text-align: center;
    line-height: 41px;
    left: 0;
}

@media only screen and (max-width: 767px) {
    .deals_carousel {
        margin-bottom: 40px;
    }
}

.deals_carousel .single_product {
    border: 1px solid transparent;
}

.deals_carousel .single_product:hover {
    border: 1px solid #999;
}

@media only screen and (max-width: 767px) {
    .deals_carousel .single_product .row {
        flex-direction: column-reverse;
    }
}

.deals_carousel:hover .owl-nav>div {
    opacity: 1;
    visibility: visible;
}

.deals_carousel .owl-nav>div {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.deals_carousel .owl-nav>div:hover {
    background: #002f80;
    border-color: #002f80;
    color: #fff;
}

.deals_carousel .owl-nav>div.owl-next {
    right: 0;
    left: auto;
}

.deals_carousel .product_content {
    padding: 20px;
    text-align: left;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .deals_carousel .product_content {
        padding: 10px;
    }
}

.deals_carousel .product_name h3 {
    margin-bottom: 10px;
    font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .deals_carousel .product_name h3 {
        margin-bottom: 5px;
    }
}

.deals_carousel .price_box {
    margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .deals_carousel .price_box {
        margin-bottom: 10px;
    }
}

.deals_carousel .add_to_cart a {
    background-color: #e3e3e3;
    border: 1px solid #e3e3e3;
    border-radius: 30px;
    font-size: 14px;
    line-height: 37px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0 21px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .deals_carousel .add_to_cart a {
        font-size: 13px;
    }
}

.deals_carousel .add_to_cart a:hover {
    background: #002f80;
    border-color: #002f80;
    color: #fff;
}

.deals_carousel .add_to_cart a i {
    font-size: 18px;
    margin-right: 10px;
}

.deals_carousel .product_thumb a img {
    width: inherit;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .deals_carousel .product_thumb a img {
        max-width: 355px;
    }
}

.product_timing {
    position: relative;
    background: #002f80;
    border-radius: 30px;
    max-width: 225px;
    margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product_timing {
        margin-bottom: 10px;
    }
}

.product_timing::before {
    content: "\f017";
    display: block;
    position: absolute;
    font-family: FontAwesome;
    font-size: 20px;
    width: 41px;
    height: 39px;
    left: 0;
    color: #fff;
    text-align: center;
    line-height: 39px;
}

.countdown_area {
    display: flex;
    padding-left: 40px;
}

.single_countdown {
    display: flex;
    height: 39px;
    line-height: 39px;
    margin-right: 8px;
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
}

.single_countdown:last-child {
    margin-right: 0;
}

.countdown_number {
    margin-right: 5px;
}

.product_rating {
    margin-bottom: 7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product_rating {
        margin-bottom: 4px;
    }
}

.product_rating ul li {
    display: inline-block;
}

.product_rating ul li a {
    color: #FFC000;
    font-size: 14px;
}

.product_rating ul li.rating_color a {
    color: #b6b6b6;
}

.product_desc {
    /* padding-top: 15px; */
    /*border-top: 1px solid #e5e5e5;*/
    margin-bottom: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product_desc {
        padding-top: 8px;
        margin-bottom: 14px;
    }
}

.product_desc p {
    font-weight: 400;
    line-height: 20px;
}

.smallproduct_container {
    border: 1px solid #e5e5e5;
}

@media only screen and (max-width: 767px) {
    .smallproduct_container .countdown_area {
        padding-left: 34px;
    }
}

@media only screen and (max-width: 767px) {
    .smallproduct_container .countdown_number {
        margin-right: 3px;
    }
}

.smallproduct_container .product_timing {
    margin-bottom: 0;
}

.deals_smallproduct {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
}

@media only screen and (max-width: 767px) {
    .deals_smallproduct {
        flex-direction: column;
    }
}

.deals_smallproduct:last-child {
    border-bottom: 0;
}

.deals_smallproduct .smallproduct_items {
    display: flex;
    border-right: 1px solid #e5e5e5;
}

@media only screen and (max-width: 767px) {
    .deals_smallproduct .smallproduct_items {
        border-right: 0;
    }
}

@media only screen and (max-width: 479px) {
    .deals_smallproduct .smallproduct_items {
        flex-direction: column;
    }
}

.deals_smallproduct .smallproduct_items:last-child {
    border-right: 0;
}

.deals_smallproduct .product_thumb {
    width: 40%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .deals_smallproduct .product_thumb {
        width: 35%;
    }
}

@media only screen and (max-width: 479px) {
    .deals_smallproduct .product_thumb {
        width: 100%;
        text-align: center;
    }
}

.deals_smallproduct .product_content {
    width: 60%;
    padding: 20px;
    text-align: left;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .deals_smallproduct .product_content {
        width: 66%;
        padding: 10px;
    }
}

@media only screen and (max-width: 479px) {
    .deals_smallproduct .product_content {
        width: 100%;
    }
}

.deals_smallproduct .product_desc {
    padding-top: 0;
    border-top: 0;
    margin-bottom: 13px;
}

.deals_smallproduct .price_box {
    margin-bottom: 18px;
}


/*category css here*/

.section_title {
    margin-bottom: 30px;
}

@media only screen and (max-width: 479px) {
    .section_title {
        margin-bottom: 20px;
    }
}

.section_title h2 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 0;
}

.category_grid {
    border: 1px solid #e5e5e5;
}

.single_category {
    padding: 20px 15px;
    border-right: 1px solid #e5e5e5;
}

.single_category:hover .category_thumb {
    border: 1px solid #002f80;
}

.category_content {
    text-align: center;
    margin-top: 15px;
}

.category_content h2 {
    font-size: 14px;
    line-height: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.category_content span {
    line-height: 20px;
}

.category_thumb {
    border: 1px solid transparent;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.product_padding .product_content {
    padding-bottom: 19px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_padding .product_content {
        padding-bottom: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_padding .product_name h3 {
        margin-bottom: 5px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_padding .action_links ul li.add_to_cart {
        width: 54%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_padding .action_links ul li.wishlist {
        width: 23%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_padding .action_links ul li.compare {
        width: 23%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_padding .action_links ul li a {
        font-size: 13px;
        height: 42px;
        line-height: 42px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product_padding .home_banner_thumb {
        text-align: center;
        margin-bottom: 30px;
    }
}


/*home two css here*/

.deals_product_list .smallproduct_items {
    display: flex;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.deals_product_list .smallproduct_items:last-child {
    border-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .deals_product_list .smallproduct_items {
        flex-direction: column;
    }
}

.deals_product_list .product_thumb {
    width: 40%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .deals_product_list .product_thumb {
        width: 33%;
    }
}

@media only screen and (max-width: 767px) {
    .deals_product_list .product_thumb {
        width: 100%;
    }
}

.deals_product_list .product_thumb a img {
    max-width: 185px;
    margin: 0 auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .deals_product_list .product_thumb a img {
        max-width: 100%;
    }
}

.deals_product_list .product_content {
    width: 60%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .deals_product_list .product_content {
        width: 67%;
    }
}

@media only screen and (max-width: 767px) {
    .deals_product_list .product_content {
        width: 100%;
    }
}

.deals_product_list .product_desc {
    border-top: 0;
    padding-top: 0;
    margin-bottom: 12px;
}

.deals_product_list .product_name h3 {
    margin-bottom: 14px;
}

.deals_product_list .price_box {
    margin-bottom: 15px;
}

.deals_product_list .add_to_cart {
    margin-bottom: 22px;
}

.deals_p_two .deals_carousel {
    border: 1px solid #e5e5e5;
}

@media only screen and (max-width: 767px) {
    .deals_p_two .deals_carousel {
        margin-bottom: 0;
    }
}

.deals_p_two .deals_title {
    margin-bottom: 0;
}

.deals_p_two .product_timing {
    margin-bottom: 0;
}

.deals_column2 .last .smallproduct_items {
    border-right: 0;
}


/*home three css here*/

.deals_p_three .deals_title {
    margin-bottom: 0;
}

.deals_p_three .product_name h3 {
    margin-bottom: 14px;
}

.deals_p_three .product_desc {
    padding-top: 0;
    border-top: 0;
    margin-bottom: 14px;
}

.deals_p_three .product_timing {
    margin: 0 auto;
    margin-top: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .deals_p_three .product_timing {
        max-width: 211px;
    }
}

@media only screen and (max-width: 767px) {
    .deals_p_three .product_timing {
        max-width: 192px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .deals_p_three .product_timing::before {
        width: 36px;
    }
}

@media only screen and (max-width: 767px) {
    .deals_p_three .product_timing::before {
        width: 35px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .deals_p_three .countdown_area {
        padding-left: 34px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .deals_p_three .countdown_area {
        padding-left: 36px;
    }
}

@media only screen and (max-width: 767px) {
    .deals_p_three .countdown_area {
        padding-left: 31px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .deals_p_three .single_countdown {
        margin-right: 6px;
    }
}

@media only screen and (max-width: 767px) {
    .deals_p_three .single_countdown {
        margin-right: 4px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .deals_p_three .countdown_number {
        margin-right: 6px;
    }
}

@media only screen and (max-width: 767px) {
    .deals_p_three .countdown_number {
        margin-right: 3px;
    }
}

.category_tab_product {
    border-left: 1px solid #e5e5e5;
}

@media only screen and (max-width: 767px) {
    .category_tab_product {
        margin-bottom: 30px;
    }
}

.category_tab_product .single_category {
    display: flex;
    align-items: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding: 15px 10px;
    cursor: pointer;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .category_tab_product .single_category {
        padding: 8px 10px;
        margin-bottom: 2px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .category_tab_product .single_category {
        padding: 16px 10px;
        margin-bottom: 9px;
    }
}

.category_tab_product .single_category:last-child {
    margin-bottom: 0;
}

.category_tab_product .single_category:hover {
    background: #777777;
}

.category_tab_product .single_category:hover .category_thumb {
    border: 0;
}

.category_tab_product .single_category:hover .category_content h2 {
    color: #ffffff;
}

.category_tab_product .single_category:hover .category_content span {
    color: #ffffff;
}

.category_tab_product .single_category.active {
    background: #777777;
}

.category_tab_product .single_category.active .category_content h2 {
    color: #ffffff;
}

.category_tab_product .single_category.active .category_content span {
    color: #ffffff;
}

.category_tab_product .category_content {
    text-align: left;
    margin-bottom: 0;
    margin-left: 10px;
}

.category_tab_product .category_thumb {
    border: 0;
}

.product_column3 .product_content {
    padding-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_column3 .product_content {
        padding-bottom: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_column3 .product_name h3 {
        margin-bottom: 6px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_column3 .product_name h3 a {
        line-height: 18px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .category_product_container .home_banner_thumb a {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .category_product_container .home_banner_thumb a img {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .category_product_container .product_carousel {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .category_product_container .product_content {
        padding-bottom: 6px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .category_product_container .product_name h3 {
        margin-bottom: 5px;
    }
}


/*home four css here*/

.group_one {
    border-top: 2px solid #da3e6a;
}

.group_two {
    border-top: 2px solid #34495e;
}

.group_two .group_title {
    background: #34495e;
}

.group_three {
    border-top: 2px solid #1abc9c;
}

.group_three .group_title {
    background: #1abc9c;
}

.group_four {
    border-top: 2px solid #fc6a21;
}

.group_four .group_title {
    background: #fc6a21;
}

.group_title {
    display: inline-block;
    background: #da3e6a;
    width: 100%;
    padding-left: 20px;
}

.group_title h2 {
    color: #fff;
    text-align: left;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 0;
    height: 60px;
    line-height: 56px;
}

.categorytab_inner {
    background: #f5f5f5;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .categorytab_inner {
        margin-bottom: 30px;
        height: inherit;
    }
}

.categorytab_inner ul {
    padding-top: 16px;
}

.categorytab_inner ul li a {
    padding: 10px 0 10px 20px;
    font-size: 14px;
    text-transform: capitalize;
    display: block;
}

.categorytab_inner ul li a:hover {
    color: #002f80;
}


/* 05. blog area css here */

.blog_section {
    background: #f7f7f7;
    padding: 56px 0 60px;
}

.blog_section .section_title {
    margin-bottom: 20px;
}

.blog_carousel:hover .owl-nav>div {
    opacity: 1;
    visibility: visible;
}

.blog_carousel .owl-nav>div {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.blog_carousel .owl-nav>div:hover {
    background: #002f80;
    border-color: #002f80;
    color: #fff;
}

.blog_carousel .owl-nav>div.owl-next {
    right: 0;
    left: auto;
}

.single_blog {
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single_blog:hover {
    border: 1px solid #999;
}

@media only screen and (max-width: 479px) {
    .single_blog {
        flex-direction: column;
        border: 1px solid #e5e5e5;
    }
    .single_blog:hover {
        border-color: #999;
    }
}

.blog_thumb {
    width: 48%;
}

@media only screen and (max-width: 479px) {
    .blog_thumb {
        width: 100%;
    }
}

.blog_content {
    width: 50%;
    padding-left: 20px;
}

@media only screen and (max-width: 767px) {
    .blog_content {
        padding: 15px 0 16px;
    }
}

@media only screen and (max-width: 479px) {
    .blog_content {
        padding-left: 0;
        width: 100%;
        text-align: center;
    }
}

.blog_content>h3 {
    font-size: 15px;
    text-transform: capitalize;
    line-height: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog_content>h3 {
        margin-bottom: 3px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 479px) {
    .blog_content>h3 {
        font-size: 14px;
    }
}

.blog_content>h3 a:hover {
    color: #002f80;
}

.blog_content .read_more a {
    font-size: 13px;
    font-weight: 500;
}

.blog_content .read_more a:hover {
    color: #002f80;
}

.blog_content .read_more a i {
    font-size: 18px;
    margin-left: 5px;
    position: relative;
    top: 2px;
}

.date_post h3 {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .date_post h3 {
        font-size: 40px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .date_post h3 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 7px;
    }
}

.date_post h3 span {
    font-size: 20px;
}

@media only screen and (max-width: 767px) {
    .date_post h3 span {
        font-size: 16px;
    }
}


/*home two css here*/

.blog_two {
    background: inherit;
    padding: 0;
}


/*06. newsletter area css here*/

.newsletter_area {
    background: #002f80;
}

.newsletter_inner {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .newsletter_inner {
        flex-direction: column;
        padding: 25px 0 16px;
    }
}

.newsletter_content {
    position: relative;
    padding-left: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .newsletter_content {
        padding-left: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter_content {
        padding-left: 40px;
        margin: 0 auto;
    }
}

.newsletter_content::before {
    content: "\f1d9";
    display: block;
    position: absolute;
    left: 0;
    font-family: "FontAwesome";
    font-size: 40px;
    color: #fff;
    top: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .newsletter_content::before {
        font-size: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter_content::before {
        font-size: 30px;
        top: 8px;
    }
}

.newsletter_content h2 {
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .newsletter_content h2 {
        font-size: 14px;
        line-height: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter_content h2 {
        font-size: 13px;
        line-height: 20px;
    }
}

.newsletter_content p {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .newsletter_content p {
        font-size: 13px;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter_content p {
        font-size: 12px;
    }
}

.mailchimp-success {
    text-align: center;
    color: green;
    max-width: 300px;
    margin: 15px auto 0;
}

.mailchimp-error {
    color: green;
    text-align: center;
}

.newsletter_form {
    margin-top: 15px;
}

@media only screen and (max-width: 767px) {
    .newsletter_form {
        margin-top: 22px;
    }
}

.newsletter_form form {
    display: flex;
    justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
    .newsletter_form form {
        justify-content: center;
    }
}

.newsletter_form form input {
    height: 45px;
    width: 388px;
    font-size: 14px;
    background: #fff;
    padding: 0 20px;
    border: 0;
    border-radius: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .newsletter_form form input {
        width: 270px;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter_form form input {
        height: 40px;
        width: 192px;
        font-size: 13px;
    }
}

.newsletter_form form button {
    width: 100px;
    height: 45px;
    border: 0;
    font-size: 14px;
    line-height: 24px;
    background: #222222;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-left: 8px;
}

.newsletter_form form button:hover {
    background: #444444;
}

@media only screen and (max-width: 767px) {
    .newsletter_form form button {
        height: 40px;
        font-size: 13px;
        width: 90px;
    }
}

.newsletter_form form input[type="text"]::placeholder {
    color: #444444;
    opacity: 0.8;
}


/* 21. shipping css here */

.shipping_area {
    border-bottom: 1px solid #e5e5e5;
    padding: 23px 0;
}

@media only screen and (max-width: 767px) {
    .shipping_area {
        padding: 30px 0 0;
    }
}

.single_shipping {
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
}

.single_shipping::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #e5e5e5;
    right: 0;
    top: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_shipping::before {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .single_shipping::before {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .single_shipping {
        margin-bottom: 30px;
    }
}

.single_shipping.last_child::before {
    display: none;
}

.shipping_icone {
    margin-right: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shipping_icone {
        margin-right: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shipping_icone img {
        max-width: 38px;
    }
}

@media only screen and (max-width: 767px) {
    .shipping_icone img {
        max-width: 38px;
    }
}

.shipping_content h2 {
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 4px;
}

.shipping_content p {
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shipping_content p {
        font-size: 12px;
    }
}


/*home two css here*/

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shipping_two {
        padding: 30px 0;
    }
}


/*home three css here*/

.shipping_three {
    background: #f2f2f2;
}


/*home four css here*/

.shipping_four {
    border: 0;
    padding: 0;
}

@media only screen and (max-width: 767px) {
    .shipping_four .single_shipping.last_child {
        margin-bottom: 0;
    }
}

.shipping_four_container {
    border: 1px solid #e5e5e5;
    padding: 23px 0;
}


/*testimonial css here*/

.testimonial_container {
    padding: 22px 30px 20px;
}

.testimonial_container .testimonial_images {
    width: 84px;
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.testimonial_container .testimonial_images img {
    width: inherit;
    border-radius: 50%;
}

.testimonial_container .testimonial_content {
    margin-top: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial_container .testimonial_content {
        margin-top: 50px;
    }
}

.testimonial_container .testimonial_content p {
    padding: 0;
    margin-bottom: 14px;
    color: #3E444A;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial_container .testimonial_content p {
        margin-bottom: 12px;
    }
}

.testimonial_container .testimonial_content a {
    color: #002f80;
    font-weight: 600;
    font-size: 16px;
}

.testimonial_container .testimonial_content a:hover {
    color: #3E444A;
}

.testimonial_container:hover .owl-nav>div {
    opacity: 1;
    visibility: visible;
}

.testimonial_container .owl-nav>div {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    width: 30px;
    background: #eaeaea;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    color: #313131;
    font-size: 18px;
    z-index: 1;
    height: 80px;
    border-radius: 0 3px 3px 0;
    line-height: 80px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    left: 0px;
}

.testimonial_container .owl-nav>div:hover {
    background: #002f80;
    color: #fff;
}

.testimonial_container .owl-nav>div.owl-next {
    right: 0;
    left: auto;
    border-radius: 3px 0 0 3px;
}

.testimonial_banner {
    background: url(../img/about/testimonial.jpg) no-repeat 0 0;
    height: 155px;
    width: 100%;
}

.testimonial_section {
    border: 1px solid #e5e5e5;
    background: #fff;
}

.testimonial_are {
    margin-bottom: 68px;
}

@media only screen and (max-width: 767px) {
    .testimonial_are {
        margin-bottom: 63px;
    }
}

.testimonial_titile {
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .testimonial_titile {
        margin-bottom: 15px;
    }
}

.testimonial_titile h1 {
    display: inline-block;
    font-size: 24px;
    line-height: 24px;
    text-transform: capitalize;
    font-weight: 600;
    color: #3E444A;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .testimonial_titile h1 {
        font-size: 20px;
    }
}

.testimonial_active.owl-carousel .single_testimonial img {
    width: inherit;
    margin: 0 auto;
    margin-bottom: 15px;
}

.testimonial_active.owl-carousel .owl-dots {
    position: relative;
    width: 100%;
    text-align: center;
    top: 15px;
}

@media only screen and (max-width: 767px) {
    .testimonial_active.owl-carousel .owl-dots {
        top: 10px;
    }
}

.testimonial_active.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: #ebebeb;
    border-radius: 100%;
    margin: 0 4px;
    display: inline-block;
}

.testimonial_active.owl-carousel .owl-dots .owl-dot.active {
    background: #002f80;
}

.single_testimonial {
    text-align: center;
}

.single_testimonial p {
    padding: 0 145px;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_testimonial p {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 767px) {
    .single_testimonial p {
        padding: 0;
        font-size: 15px;
        margin-bottom: 20px;
    }
}

.single_testimonial span {
    display: block;
    margin-bottom: 20px;
    line-height: 16px;
}

@media only screen and (max-width: 767px) {
    .single_testimonial span {
        margin-bottom: 12px;
    }
}

.single_testimonial span.name {
    font-weight: 700;
    color: #3E444A;
    text-transform: uppercase;
}


/*brand css here*/

.brand_area {
    padding: 60px 0;
}

@media only screen and (max-width: 767px) {
    .brand_area {
        padding: 52px 0;
    }
}

@media only screen and (max-width: 767px) {
    .brand_area.mb-42 {
        margin-bottom: 50px;
    }
}

.brand_container .single_brand img {
    width: inherit;
    margin: 0 auto;
}


/*  07. footer area css here */

.footer_widgets {
    background: #0f2741;
}

.footer_top {
    padding: 56px 0 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer_top {
        padding: 44px 0 12px;
    }
}

@media only screen and (max-width: 767px) {
    .footer_top {
        padding: 46px 0 6px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .widgets_container {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .widgets_container {
        margin-bottom: 38px;
        text-align: center;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .widgets_container {
        text-align: left;
    }
}

@media only screen and (max-width: 767px) {
    .widgets_container.contact_us {
        margin-bottom: 44px;
    }
}

.widgets_container h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    line-height: 17px;
    color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .widgets_container h3 {
        padding-bottom: 10px;
        margin-bottom: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .widgets_container h3 {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
}

.widgets_container h3::before {
    display: block;
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    background: #fff;
    bottom: 0px;
    left: 0;
}

.footer_contact ul li {
    font-size: 13px;
    line-height: 27px;
    color: #bbbbbb;
    margin-bottom: 10px;
}

.footer_contact ul li:last-child {
    margin-bottom: 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer_contact ul li {
        line-height: 25px;
    }
    .footer_contact ul li:last-child {
        margin-bottom: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .footer_contact ul li {
        line-height: 26px;
        margin-bottom: 5px;
    }
    .footer_contact ul li:last-child {
        margin-bottom: 14px;
    }
}

.footer_contact ul li i {
    color: #fff;
    font-size: 15px;
    margin-right: 10px;
}

.footer_contact ul li span {
    color: #fff;
}

.social_icone ul li {
    display: inline-block;
    margin-right: 5px;
}

.social_icone ul li:last-child {
    margin-right: 0;
}

@media only screen and (max-width: 767px) {
    .social_icone ul li {
        margin-right: 4px;
    }
}

.social_icone ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 13px;
    color: #fff;
    background: #383838;
    border-radius: 5px;
    display: block;
}

.social_icone ul li a:hover {
    background: #002f80;
}

.footer_menu ul li a {
    font-size: 13px;
    line-height: 30px;
    color: #bbbbbb;
}

@media only screen and (max-width: 767px) {
    .footer_menu ul li a {
        line-height: 27px;
    }
}

.footer_menu ul li a:hover {
    color: #002f80;
}

.footer_menu ul li a i {
    margin-right: 6px;
}

.footer_bottom {
    padding: 20px 0;
    border-top: 1px solid #0b2037;
    background: #0b2037;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer_bottom {
        padding: 30px 0 28px;
    }
}

.footer_logo {
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer_logo {
        flex-direction: column;
        align-items: inherit;
    }
}

@media only screen and (max-width: 767px) {
    .footer_logo {
        flex-direction: column;
        text-align: center;
        margin-bottom: 24px;
        border-bottom: 1px solid #393939;
        padding-bottom: 26px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer_logo a {
        margin-bottom: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .footer_logo a {
        margin-bottom: 22px;
    }
}

.footer_logo p {
    width: 60%;
    padding-left: 25px;
    font-size: 14px;
    line-height: 21px;
    color: #bbbbbb;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer_logo p {
        width: 100%;
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer_logo p {
        width: 100%;
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .copyright_area {
        text-align: center !important;
    }
}

.copyright_area p {
    color: #bbbbbb;
    line-height: 20px;
    margin-bottom: 0;
}

.copyright_area p a {
    color: #bbbbbb;
    text-transform: capitalize;
}

.copyright_area p a:hover {
    color: #002f80;
    text-decoration: underline;
}

.copyright_area p.footer-payment {
    margin-bottom: 0;
}


/*collection area css here*/

.collection_area {
    margin-bottom: 94px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .collection_area {
        margin-bottom: 74px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .collection_area {
        margin-bottom: 74px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .collection_area {
        margin-bottom: 55px;
    }
}

@media only screen and (max-width: 767px) {
    .collection_area {
        margin-bottom: 53px;
    }
}

@media only screen and (max-width: 767px) {
    .collection_img {
        margin-bottom: 21px;
    }
}

.collection_img img:hover {
    opacity: 0.7;
}

@media only screen and (max-width: 767px) {
    .collection_content {
        text-align: center;
    }
}

.collection_content h1 {
    font-size: 120px;
    color: #a4a4a4;
    font-weight: 700;
    line-height: 100px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .collection_content h1 {
        font-size: 90px;
        line-height: 80px;
        margin-bottom: 13px;
    }
}

@media only screen and (max-width: 767px) {
    .collection_content h1 {
        font-size: 90px;
        line-height: 80px;
        margin-bottom: 13px;
    }
}

.collection_content h4 {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 23px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .collection_content h4 {
        margin-bottom: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .collection_content h4 {
        margin-bottom: 12px;
    }
}

.collection_content h2 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 20px;
    color: #bbbbbb;
    font-weight: 700;
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .collection_content h2 {
        margin-bottom: 10px;
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .collection_content h2 {
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 28px;
    }
}

.collection_content p {
    line-height: 24px;
    font-size: 16px;
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .collection_content p {
        font-size: 15px;
    }
}

.collection_content a {
    font-size: 16px;
    color: #bbbbbb;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 2px solid #bbbbbb;
    display: inline-block;
    margin-top: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .collection_content a {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .collection_content a {
        margin-top: 15px;
        font-size: 16px;
    }
}

.collection_content a:hover {
    color: #002f80;
    border-color: #002f80;
}

@media only screen and (max-width: 767px) {
    .collection_2 {
        margin-bottom: 29px;
    }
}

@media only screen and (max-width: 767px) {
    .collection_2 .collection_content {
        margin-bottom: 29px;
    }
}

@media only screen and (max-width: 767px) {
    .collection_4 {
        margin-bottom: 32px;
    }
}

@media only screen and (max-width: 767px) {
    .collection_4 .collection_content {
        margin-bottom: 29px;
    }
}


/*categories section css here*/

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_area {
        margin-top: 68px;
    }
}

.categories_thumb {
    position: relative;
}

@media only screen and (max-width: 767px) {
    .categories_thumb {
        height: 100vh;
    }
}

@media only screen and (max-width: 767px) {
    .categories_thumb a {
        height: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .categories_thumb img {
        height: 100%;
        object-fit: cover;
    }
}

.categories_content {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translatey(-50%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .categories_content {
        right: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_content {
        right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .categories_content {
        right: 15px;
    }
}

.categories_content h4 {
    color: #bbbbbb;
    font-size: 18px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .categories_content h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.categories_content h2 {
    color: #bbbbbb;
    font-size: 35px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    .categories_content h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
}

.categories_content p {
    color: #bbbbbb;
    font-size: 17px;
    width: 440px;
    font-weight: 500;
    margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_content p {
        width: 310px;
    }
}

@media only screen and (max-width: 767px) {
    .categories_content p {
        font-size: 14px;
        width: 210px;
        line-height: 20px;
        margin-bottom: 5px;
        margin-top: 0;
    }
}

.categories_content a {
    text-transform: capitalize;
    font-size: 16px;
    color: #bbbbbb;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 2px solid #bbbbbb;
}

.categories_content a:hover {
    color: #002f80;
    border-color: #002f80;
}

#fp-nav {
    right: 31px;
}

.categories_area .col-12 {
    padding: 0;
}

.categories_content.content_left {
    left: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_content.content_left {
        left: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .categories_content.content_left {
        left: 30px;
    }
}


/* 10. shop page css here */

.breadcrumbs_area {
    background: #333;
}

.breadcrumb_content {
    padding: 13px 0;
}

.breadcrumb_content ul li {
    display: inline-block;
    text-transform: capitalize;
    font-size: 14px;
    margin-right: 3px;
    padding-right: 13px;
    position: relative;
    color: #fff;
}

.breadcrumb_content ul li::before {
    position: absolute;
    content: "/";
    right: 0;
    top: 50%;
    transform: translatey(-50%);
}

.breadcrumb_content ul li:last-child {
    margin-right: 0;
}

.breadcrumb_content ul li:last-child::before {
    display: none;
}

.breadcrumb_content ul li a {
    color: #ffffff;
}

.breadcrumb_content ul li a:hover {
    text-decoration: underline;
}

.sidebar_widget .single_banner {
    border: 0;
}

@media only screen and (max-width: 767px) {
    .sidebar_widget .single_banner {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .sidebar_widget .single_banner a {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .sidebar_widget .single_banner a img {
        width: 100%;
    }
}

.widget_list {
    margin-bottom: 29px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 35px;
}

.widget_list:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.widget_list h2 {
    font-size: 16px;
    margin: 0 0 15px;
    padding: 0 0 5px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 24px;
}

.widget_list>ul>li {
    margin-bottom: 8px;
    position: relative;
}

.widget_list>ul>li:last-child {
    margin-bottom: 0;
}

.widget_list>ul>li input {
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translatey(-50%);
    opacity: 0;
    cursor: pointer;
    z-index: 999;
}

.widget_list>ul>li input:checked~.checkmark {
    background-color: #002f80;
    border: 1px solid #002f80;
}

.widget_list>ul>li input:checked~.checkmark::before {
    display: block;
}

.widget_list>ul>li>a {
    font-size: 14px;
    display: block;
    line-height: 27px;
    margin-left: 30px;
}

.widget_list>ul>li>a:hover {
    color: #002f80;
}

.widget_list>ul>li span.checkmark {
    height: 17px;
    width: 17px;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    display: block;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    background: #f4f4f4;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.widget_list>ul>li span.checkmark::before {
    left: 5px;
    top: 3px;
    width: 5px;
    height: 8px;
    border: solid white;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    position: absolute;
    display: none;
}

.ui-slider-horizontal .ui-slider-range {
    background: #002f80;
    height: 5px;
}

.ui-slider-horizontal {
    height: 3px;
    background: #dbdbdb;
    border: none;
    width: 92%;
    margin: 0 auto;
    margin-bottom: 22px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    background: #fff;
    border: 0;
    border-radius: 0;
    width: 19px;
    height: 19px;
    top: -7px;
    cursor: pointer;
    border-radius: 50%;
    border: 5px solid #002f80;
}

.widget_list.widget_filter form {
    padding-top: 10px;
}

.widget_list.widget_filter form input {
    background: none;
    border: none;
    font-size: 12px;
    float: right;
    text-align: right;
    line-height: 31px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .widget_list.widget_filter form input {
        width: 65px;
    }
}

.widget_list.widget_filter form button {
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    text-transform: capitalize;
    color: #ffffff;
    background: #333;
    border: 0;
    border-radius: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.widget_list.widget_filter form button:hover {
    background: #002f80;
}

.recent_product {
    border: 0;
    padding-bottom: 0;
    margin-bottom: 35px;
}

.recent_product>h2 {
    border-bottom: 1px solid #e5e5e5;
    padding: 0 0 10px;
}

.recent_product_container:hover button {
    opacity: 1;
    visibility: visible;
}

.recent_product_container button {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
}

.recent_product_container button:hover {
    background: #002f80;
    border-color: #002f80;
    color: #ffffff;
}

.recent_product_container button.next_arrow {
    right: 0;
    left: auto;
}

.recent_product_list {
    display: flex !important;
    margin-bottom: 20px;
}

.recent_product_thumb {
    width: 35%;
}

.recent_product_content {
    width: 60%;
    margin-left: 15px;
}

.recent_product_content h3 {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 5px;
}

.recent_product_content h3 a:hover {
    color: #002f80;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop_sidebar_banner {
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .shop_sidebar_banner {
        text-align: center;
    }
}

.shop_sidebar_banner a img:hover {
    opacity: 0.7;
}

.shop_toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e5e5e5;
    padding: 8px 10px;
    margin: 0 0 40px;
}

@media only screen and (max-width: 767px) {
    .shop_toolbar {
        flex-direction: column-reverse;
        padding: 10px 10px 18px;
    }
}

.select_option {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .select_option {
        flex-direction: column;
    }
}

.select_option .nice-select {
    border: 0;
    height: 30px;
    line-height: 29px;
}

.select_option .nice-select ul.list {
    top: 114%;
    right: 0;
    width: 200px;
    max-height: 200px;
    overflow: auto;
}

.shop_title {
    margin-bottom: 20px;
}

.shop_title h1 {
    font-size: 33px;
    text-transform: capitalize;
    margin-bottom: 0;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .shop_title h1 {
        font-size: 27px;
    }
}

@media only screen and (max-width: 767px) {
    .niceselect_option {
        margin-bottom: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .page_amount {
        margin-bottom: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .page_amount p {
        padding-left: 0;
        margin-left: 0;
        border-left: 0;
    }
}

.product_ratting ul li {
    display: inline-block;
}

.product_ratting ul li a {
    color: #002f80;
}

@media only screen and (max-width: 767px) {
    .product_list_item .product_thumb {
        margin-bottom: 18px;
    }
}

.product_list_item .product_content h3 {
    margin-bottom: 10px;
}

.product_list_item .product_ratting {
    margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    .pagination {
        margin-top: 19px;
    }
}

.pagination ul li {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #f1f1f1;
    border-radius: 3px;
    margin-left: 3px;
}

.pagination ul li:first-child {
    margin-left: 0;
}

.pagination ul li a {
    display: block;
    border-radius: 3px;
}

.pagination ul li a:hover {
    background: #002f80;
    color: #ffffff;
}

.pagination ul li.current {
    background: #002f80;
    color: #ffffff;
}

.pagination ul li.next {
    width: 40px;
}

.shop_toolbar.t_bottom {
    justify-content: center;
    margin-bottom: 0;
    margin-top: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop_toolbar.t_bottom {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .shop_toolbar.t_bottom {
        padding: 15px 10px 15px;
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .shop_toolbar.t_bottom .pagination {
        margin-top: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop_reverse .tab-content .row {
        flex-direction: row;
    }
}

@media only screen and (max-width: 767px) {
    .shop_reverse .tab-content .row {
        flex-direction: row;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .grid_view .quick_button {
        bottom: 5px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .grid_view .quick_button a {
        line-height: 37px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .grid_view .action_button ul li a {
        width: 43px;
        height: 40px;
        line-height: 38px;
    }
}

.grid_view .hover_action a {
    width: 43px;
    height: 40px;
    line-height: 38px;
}


/* shop page css here*/

.shop_banner {
    margin-bottom: 54px;
}

@media only screen and (max-width: 767px) {
    .shop_banner {
        margin-bottom: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop_reverse .row {
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 767px) {
    .shop_reverse .row {
        flex-direction: column-reverse;
    }
}

.shop_wrapper .product_thumb {
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .shop_wrapper .product_thumb {
        text-align: center;
    }
}

.row.shop_wrapper {
    flex-direction: row;
}

.shop_toolbar_btn>button {
    margin-right: 10px;
    border: 0;
    background: inherit;
}

.shop_toolbar_btn>button.btn-grid-3 {
    background: url(../img/icon/bkg_grid.png) no-repeat scroll center center;
    width: 20px;
    height: 20px;
}

.shop_toolbar_btn>button.btn-grid-3.active {
    background: url(../img/icon/bkg_grid_hover.png) no-repeat scroll center center !important;
}

.shop_toolbar_btn>button.btn-grid-4 {
    background: url(../img/icon/bkg_grid4.png) no-repeat scroll center center;
    width: 26px;
    height: 22px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .shop_toolbar_btn>button.btn-grid-4 {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop_toolbar_btn>button.btn-grid-4 {
        display: none;
    }
}

.shop_toolbar_btn>button.btn-grid-4.active {
    background: url(../img/icon/bkg_grid4_hover.png) no-repeat scroll center center !important;
}

.shop_toolbar_btn>button.btn-list {
    background: url(../img/icon/bkg_list.png) no-repeat scroll center center;
    width: 20px;
    height: 20px;
}

.shop_toolbar_btn>button.btn-list.active {
    background: url(../img/icon/bkg_list_hover.png) no-repeat scroll center center !important;
}

.product_content.list_content {
    display: none;
}

.grid_list .product_content.grid_content {
    display: none;
}

.grid_list .product_content.list_content {
    display: block;
    width: 60%;
    margin-left: 30px;
    text-align: left;
}

@media only screen and (max-width: 767px) {
    .grid_list .product_content.list_content {
        flex: 0 0 100%;
        min-width: 100%;
        margin-left: 0;
    }
}

.grid_list .product_content.list_content .product_name h3 {
    margin: 0 0 12px;
}

.grid_list .product_content.list_content .product_ratings {
    margin-bottom: 8px;
}

.grid_list .product_content.list_content .price_box {
    margin-bottom: 15px;
}

.grid_list .single_product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 20px;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .grid_list .single_product {
        flex-direction: column;
        padding: 10px 18px 18px 18px;
    }
}

.grid_list .product_thumb {
    margin-bottom: 0;
    width: 32%;
    overflow: hidden;
    height: 300px;
    align-items: center;
    display: flex;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .grid_list .product_thumb {
        flex: 0 0 41.666667%;
        min-width: 41.666667%;
    }
}

@media only screen and (max-width: 767px) {
    .grid_list .product_thumb {
        flex: 0 0 100%;
        min-width: 100%;
        margin-bottom: 25px;
    }
}

.col-cust-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: max-width;
    padding-right: 15px;
    padding-left: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .col-cust-5 {
        -ms-flex: 0 0 33%;
        flex: 0 0 33%;
    }
}

@media only screen and (max-width: 767px) {
    .col-cust-5 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media only screen and (max-width: 479px) {
    .col-cust-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.shop_wrapper>div {
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

.shop_toolbar_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    padding: 8px 10px;
    margin: 0 0 30px;
}

@media only screen and (max-width: 767px) {
    .shop_toolbar_wrapper {
        flex-direction: column;
        padding: 15px 10px 5px;
    }
}

@media only screen and (max-width: 767px) {
    .shop_toolbar_btn {
        margin-bottom: 20px;
    }
}

.shop_wrapper .single_product {
    position: relative;
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.shop_wrapper .single_product:hover {
    box-shadow: inherit;
}

.shop_wrapper .label_product {
    bottom: 40px;
}

.shop_wrapper.grid_4 .price_box span.current_price {
    font-size: 15px;
    margin-right: 3px;
}

.shop_wrapper.grid_4 .price_box span.old_price {
    font-size: 14px;
}

.widget_inner {
    background: #f4f4f4;
    border: 1px solid #e1e1e1;
    padding: 20px;
    margin-bottom: 55px;
}


/* shop page css end*/


/*shop fullwidth css here*/

.shop_fullwidth {
    margin-top: 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop_fullwidth {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .shop_fullwidth {
        margin-bottom: 0;
    }
}


/* 15. product details css here */

#img-1 {
    border: 1px solid #e5e5e5;
}

.product_details {
    margin-bottom: 60px;
}

.header_product {
    border-bottom: 1px solid #e5e5e5;
}

.product_d_right h1 {
    text-transform: capitalize;
    line-height: 20px;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 22px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product_d_right h1 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .product_d_right h1 {
        margin-bottom: 17px;
        font-size: 16px;
    }
}

.product_d_right .product_ratting {
    margin-bottom: 17px;
}

@media only screen and (max-width: 767px) {
    .product_d_right .product_ratting {
        margin-bottom: 12px;
    }
}

.product_d_right .product_ratting ul li.review a {
    margin-left: 10px;
    color: #333;
}

.product_d_right .product_ratting ul li.review a:hover {
    color: #002f80;
}

.product_d_right .price_box {
    margin-bottom: 14px;
}

@media only screen and (max-width: 767px) {
    .product_d_right .price_box {
        margin-bottom: 9px;
    }
}

.product_d_right .price_box span.current_price {
    font-size: 23px;
}

@media only screen and (max-width: 767px) {
    .product_d_right .price_box span.current_price {
        font-size: 16px;
    }
}

.product_d_right .price_box span.old_price {
    font-size: 20px;
}

@media only screen and (max-width: 767px) {
    .product_d_right .price_box span.old_price {
        font-size: 15px;
    }
}

.product_d_right .product_desc {
    margin-bottom: 19px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
}

@media only screen and (max-width: 767px) {
    .product_d_right .product_desc {
        margin-bottom: 15px;
        padding-bottom: 18px;
    }
}

.product_d_right .product_desc::before {
    display: none;
}

.product_d_right .product_desc p {
    font-size: 14px;
    line-height: 26px;
}

.product_d_right .priduct_social ul li {
    display: inline-block;
    margin-right: 7px;
}

@media only screen and (max-width: 767px) {
    .product_d_right .priduct_social ul li {
        margin-right: 1px;
    }
}

.product_d_right .priduct_social ul li:last-child {
    margin-right: 0;
}

.product_d_right .priduct_social ul li a {
    color: #fff;
    font-size: 12px;
    line-height: 24px;
    padding: 0 8px;
    border-radius: 3px;
    text-transform: capitalize;
    display: block;
}

@media only screen and (max-width: 767px) {
    .product_d_right .priduct_social ul li a {
        padding: 0 4px;
    }
}

.product_d_right .priduct_social ul li a:hover {
    opacity: 0.8;
}

.product_d_right .priduct_social ul li a.facebook {
    background: #3B5999;
}

.product_d_right .priduct_social ul li a.twitter {
    background: #1DA1F2;
}

.product_d_right .priduct_social ul li a.pinterest {
    background: #CB2028;
}

.product_d_right .priduct_social ul li a.google-plus {
    background: #fe6d4c;
}

.product_d_right .priduct_social ul li a.linkedin {
    background: #010103;
}

.product_nav {
    float: right;
    position: relative;
    top: -46px;
}

@media only screen and (max-width: 767px) {
    .product_nav {
        display: none;
    }
}

.product_nav ul li {
    display: inline-block;
    margin-left: 3px;
}

.product_nav ul li:first-child {
    margin-left: 0;
}

.product_nav ul li a {
    background: #002f80;
    border-radius: 3px;
    color: #ffffff;
    display: block;
    font-size: 15px;
    height: 30px;
    width: 30px;
    line-height: 28px;
    text-align: center;
}

.product_nav ul li a:hover {
    background: #3E444A;
}

.product_variant.quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .product_variant.quantity {
        margin-bottom: 16px;
    }
}

.product_variant.quantity label {
    color: #3E444A;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 14px;
    margin-bottom: 0;
}

.product_variant.quantity input {
    width: 130px;
    border: 1px solid #ebebeb;
    background: none;
    height: 42px;
    padding: 0 12px;
    border-radius: 5px;
    margin-left: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_variant.quantity input {
        width: 110px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product_variant.quantity input {
        width: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .product_variant.quantity input {
        width: 65px;
        margin-left: 10px;
        height: 38px;
    }
}

.product_variant.quantity button {
    border: 0;
    font-size: 16px;
    margin-left: 20px;
    background: #002f80;
    height: 42px;
    line-height: 42px;
    text-transform: capitalize;
    min-width: 270px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_variant.quantity button {
        min-width: 240px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product_variant.quantity button {
        min-width: 170px;
    }
}

@media only screen and (max-width: 767px) {
    .product_variant.quantity button {
        min-width: inherit;
        margin-left: 10px;
        font-size: 15px;
        padding: 0 14px;
        height: 38px;
        line-height: 38px;
    }
}

.product_variant.quantity button:hover {
    background: #3E444A;
}

.product_variant.color {
    margin-bottom: 26px;
}

@media only screen and (max-width: 767px) {
    .product_variant.color {
        margin-bottom: 18px;
    }
}

.product_variant.color h3 {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 18px;
    margin-bottom: 0;
    margin-right: 40px;
}

@media only screen and (max-width: 767px) {
    .product_variant.color h3 {
        font-size: 16px;
    }
}

.product_variant.color label {
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
}

.product_variant.color ul li {
    display: inline-block;
    padding: 2px;
    border: 1px solid #ccc;
    margin-right: 5px;
}

.product_variant.color ul li:hover {
    border-color: #E88888;
}

.product_variant.color ul li:last-child {
    margin-right: 0;
}

.product_variant.color ul li a {
    width: 30px;
    height: 30px;
    display: block;
}

.product_variant.color ul li.color1 a {
    background: #000000;
}

.product_variant.color ul li.color2 a {
    background: #BEBEBE;
}

.product_variant.color ul li.color3 a {
    background: #FE0000;
}

.product_variant.color ul li.color4 a {
    background: #FFFF01;
}

.product_variant.size {
    margin-bottom: 30px;
}

.product_variant.size label {
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
}

.product_variant.size .niceselect_option {
    float: inherit;
    max-width: 200px;
}

.product_d_action {
    margin-bottom: 14px;
}

.product_d_action ul li a {
    font-size: 14px;
    line-height: 28px;
}

.product_d_action ul li a:hover {
    color: #002f80;
}

.product_meta {
    margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
    .product_meta {
        margin-bottom: 15px;
    }
}

.product_meta span {
    font-weight: 500;
    color: #242424;
}

.product_meta span a {
    color: #333;
    margin-left: 10px;
    font-weight: 400;
}

.product_info_button {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .product_info_button {
        margin-bottom: 30px;
    }
}

.product_info_button ul li a {
    display: block;
    float: left;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
    margin-right: 35px;
    line-height: 26px;
    position: relative;
    padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    .product_info_button ul li a {
        margin-right: 25px;
        font-size: 18px;
    }
}

.product_info_button ul li a::before {
    content: "";
    width: 0;
    left: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    bottom: 0;
    height: 2px;
    background: #002f80;
    position: absolute;
}

.product_info_button ul li a.active {
    color: #002f80;
}

@media only screen and (max-width: 479px) {
    .product_info_button ul li a.active {
        margin-bottom: 12px;
    }
}

.product_info_button ul li a.active::before {
    width: 100%;
}

.product_info_button ul li a:hover {
    color: #002f80;
}

.product_info_button ul li:last-child a {
    margin-right: 0;
}

.product_review_form button {
    border: none;
    background: #333;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 15px;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
}

.product_review_form button:hover {
    background: #002f80;
    color: #ffffff;
}

.product_info_content p {
    line-height: 28px;
    font-size: 14px;
}

.product_d_table {
    padding: 10px 0 22px;
}

.product_d_table table {
    border-top: 1px solid #ddd;
    width: 100%;
}

.product_d_table table tbody tr {
    border-bottom: 1px solid #ddd;
}

.product_d_table table tbody tr td {
    padding: 7px 17px;
}

.product_d_table table tbody tr td:first-child {
    border-right: 1px solid #ddd;
    width: 30%;
    font-weight: 700;
}

.product_d_inner {
    padding: 20px 30px 50px;
    border: 1px solid #e5e5e5;
}

@media only screen and (max-width: 767px) {
    .product_d_inner {
        padding: 20px 17px 40px;
    }
}

.product_info_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 15px;
}

.product_info_inner .product_ratting {
    margin-bottom: 10px;
}

.product_info_inner .product_ratting p {
    margin-bottom: 5px;
}

.product_info_inner .product_ratting strong {
    margin-top: 10px;
    display: block;
    margin-bottom: 8px;
}

.reviews_wrapper h2 {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}

@media only screen and (max-width: 767px) {
    .reviews_wrapper h2 {
        font-size: 16px;
    }
}

.reviews_wrapper .product_ratting {
    margin-bottom: 20px;
}

.reviews_wrapper .product_ratting h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
}

.comment_title {
    margin-bottom: 20px;
}

.product_review_form input {
    border: 1px solid #ddd;
    background: none;
    width: 100%;
    height: 40px;
    padding: 0 20px;
}

.product_review_form textarea {
    border: 1px solid #ddd;
    background: none;
    height: 120px;
    resize: none;
    width: 100%;
    margin-bottom: 14px;
    padding: 0 20px;
}

.product_review_form p {
    margin-bottom: 7px;
}

.star_rating {
    float: right;
}

.star_rating ul li {
    display: inline-block;
}

.star_rating ul li a {
    color: #002f80;
}

.product_d_info {
    margin-bottom: 60px;
}

.reviews_comment_box {
    display: flex;
    margin-bottom: 22px;
}

.reviews_comment_box .comment_text {
    width: 100%;
    border: 1px solid #e5e5e5;
    position: relative;
    margin-left: 21px;
    padding: 12px;
    border-radius: 3px;
}

.reviews_comment_box .comment_text::before {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    content: '';
    display: block;
    height: 10px;
    left: -6px;
    position: absolute;
    top: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 10px;
}

.reviews_meta p {
    font-size: 15px;
    margin-bottom: 15px;
}

.reviews_meta p strong {
    text-transform: uppercase;
    font-weight: 500;
}

.s-tab-zoom.owl-carousel .owl-nav {
    display: block;
}

.s-tab-zoom.owl-carousel .owl-nav div {
    position: absolute;
    background: #f2f2f2;
    border-radius: 3px;
    color: #333;
    height: 32px;
    top: 50%;
    transform: translatey(-50%);
    width: 32px;
    text-align: center;
    line-height: 32px;
    left: -7px;
    font-size: 18px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.s-tab-zoom.owl-carousel .owl-nav div:hover {
    background: #002f80;
    color: #ffffff;
}

.s-tab-zoom.owl-carousel .owl-nav div.owl-next {
    right: -7px;
    left: auto;
}

@media only screen and (max-width: 767px) {
    .product-details-tab {
        margin-bottom: 56px;
    }
}

.product-details-tab:hover .s-tab-zoom.owl-carousel .owl-nav div {
    opacity: 1;
    visibility: visible;
}

.single-zoom-thumb {
    margin-top: 20px !important;
    width: 80%;
    margin: 0 auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-zoom-thumb {
        width: 85%;
    }
}

@media only screen and (max-width: 767px) {
    .single-zoom-thumb {
        width: 101%;
    }
}

.single-zoom-thumb ul li {
    border: 1px solid #ddd;
}

.single-zoom-thumb ul li a {
    width: 100%;
}


/* 12. product grouped css here */

.grouped_form {
    border: 1px solid #e5e5e5;
    margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .grouped_form {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .grouped_form {
        margin-bottom: 17px;
    }
}

.grouped_form table {
    width: 100%;
}

.grouped_form table tbody tr {
    border-bottom: 1px solid #e5e5e5;
}

.grouped_form table tbody tr td {
    border-right: 1px solid #ddd;
    padding: 11px 5px;
    text-align: center;
}

.grouped_form table tbody tr td input[type="checkbox"] {
    width: 20px;
    height: 21px;
}

.grouped_form table tbody tr td input[type="number"] {
    width: 50px;
    background: inherit;
    border: 1px solid #e5e5e5;
    padding: 0 5px;
    height: 40px;
}

.grouped_form table tbody tr td.grouped-product-list.quantity {
    min-width: 80px;
    text-align: center;
    line-height: 12px;
}

.grouped_form table tbody tr td.grouped-product-list.label {
    min-width: 188px;
    font-weight: 600;
    font-size: 14px;
}

.grouped_form table tbody tr td.grouped-product-list.label a:hover {
    color: #002f80;
}

.grouped_form table tbody tr td.grouped-product-list.price {
    font-size: 14px;
    font-weight: 600;
    min-width: 190px;
}

.grouped_form table tbody tr td.grouped-product-list.price p {
    font-size: 12px;
    font-weight: 600;
    position: relative;
}

.grouped_form table tbody tr td.grouped-product-list.price p::before {
    color: #dd3531;
    content: '\f058';
    display: inline-block;
    font-family: FontAwesome;
    font-size: 1em;
    position: absolute;
    top: 0;
    left: 40px;
}

.grouped_form table tbody tr td:last-child {
    border-right: 0;
}

.grouped_form table tbody tr:last-child {
    border-bottom: 0;
}

.box_quantity.group button {
    margin-left: 0;
}


/*product grouped css end*/


/*variabla product css here*/

.p_section1.related_product .slick-list {
    padding-bottom: 144px !important;
    margin-bottom: -135px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .variable_product {
        margin-bottom: 56px;
    }
}

@media only screen and (max-width: 767px) {
    .variable_product {
        margin-bottom: 58px;
    }
}

@media only screen and (max-width: 767px) {
    .variable_product .product-details-tab {
        margin-bottom: 49px;
    }
}

.variable_product .niceselect_option .list {
    width: 100%;
}

.product_d_meta {
    margin-bottom: 20px;
}

.product_d_meta span {
    display: block;
    line-height: 18px;
    margin-bottom: 17px;
    font-size: 14px;
    font-weight: 400;
}

.product_d_meta span:last-child {
    margin-bottom: 0;
}

.product_d_meta span a:hover {
    color: #002f80;
}


/*product sidebar css here*/

.product_sidebar {
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product_sidebar {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .product_sidebar {
        margin-bottom: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product_sidebar .row {
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 767px) {
    .product_sidebar .row {
        flex-direction: column-reverse;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product_sidebar .product_section .row {
        flex-direction: row;
    }
}

@media only screen and (max-width: 767px) {
    .product_sidebar .product_section .row {
        flex-direction: row;
    }
}

.product_sidebar .product_desc p {
    width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_sidebar .action_button ul li a {
        width: 40px;
        height: 35px;
        line-height: 35px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_sidebar .quick_button {
        bottom: 12px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_sidebar .quick_button a {
        line-height: 35px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_sidebar .hover_action a {
        width: 40px;
        height: 35px;
        line-height: 35px;
    }
}

.product_sidebar .product_variant.quantity input {
    width: 90px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_sidebar .product_variant.quantity input {
        width: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product_sidebar .product_variant.quantity input {
        width: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .product_sidebar .product_variant.quantity input {
        width: 60px;
    }
}

.product_sidebar .product_variant.quantity button {
    min-width: 200px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_sidebar .product_variant.quantity button {
        min-width: 140px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product_sidebar .product_variant.quantity button {
        min-width: inherit;
    }
}

@media only screen and (max-width: 767px) {
    .product_sidebar .product_variant.quantity button {
        min-width: inherit;
    }
}

@media only screen and (max-width: 767px) {
    .product_sidebar .product-details-tab {
        margin-bottom: 0;
    }
}

.product_sidebar .price_box span.current_price {
    font-size: 16px;
}

.product_sidebar .price_box span.old_price {
    font-size: 15px;
}

.product_sidebar .price_box span.regular_price {
    font-size: 16px;
}

.footer_widgets.sidebar_widgets .footer_top {
    padding-bottom: 0;
    border-bottom: 0;
}

.footer_widgets.sidebar_widgets .footer_top_inner {
    padding: 56px 0 52px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer_widgets.sidebar_widgets .footer_top_inner {
        padding: 56px 0 40px;
    }
}

@media only screen and (max-width: 767px) {
    .footer_widgets.sidebar_widgets .footer_top_inner {
        padding: 56px 0 35px;
    }
}

.product_right_sidebar {
    margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    .product_right_sidebar .product-details-tab {
        margin-bottom: 54px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product_right_sidebar .row {
        flex-direction: row;
    }
}

@media only screen and (max-width: 767px) {
    .product_right_sidebar .row {
        flex-direction: row;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_right_sidebar .product_d_right h1 {
        font-size: 18px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product_right_sidebar .priduct_social ul li {
        margin-right: 4px;
    }
}


/* 13. cart page css here */

.header_cart_page {
    border-bottom: 1px solid #e5e5e5;
}

.other_bread {
    padding-top: 41px;
    padding-bottom: 41px;
}

.table_desc {
    border: 1px solid #e5e5e5;
    margin-bottom: 60px;
    margin-top: 2px;
}

.table_desc .cart_page table {
    width: 100%;
}

.table_desc .cart_page table thead tr th {
    border-bottom: 3px solid #002f80;
    border-right: 1px solid #e5e5e5;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 10px;
    text-align: center;
}

.table_desc .cart_page table tbody tr td {
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    text-align: center;
    padding: 10px;
}

.table_desc .cart_page table tbody tr td.product_remove {
    min-width: 100px;
}

.table_desc .cart_page table tbody tr td.product_remove a {
    font-size: 20px;
    color: #002f80;
}

.table_desc .cart_page table tbody tr td.product_remove a:hover {
    color: #333;
}

.table_desc .cart_page table tbody tr td.product_thumb {
    max-width: 180px;
}

.table_desc .cart_page table tbody tr td.product_name {
    min-width: 180px;
}

.table_desc .cart_page table tbody tr td.product_name a {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
}

.table_desc .cart_page table tbody tr td.product_name a:hover {
    color: #002f80;
}

.table_desc .cart_page table tbody tr td.product-price {
    min-width: 130px;
    font-size: 16px;
    font-weight: 500;
}

.table_desc .cart_page table tbody tr td.product_quantity {
    min-width: 180px;
}

.table_desc .cart_page table tbody tr td.product_quantity label {
    font-weight: 600;
    margin-right: 5px;
}

.table_desc .cart_page table tbody tr td.product_quantity input {
    width: 60px;
    height: 40px;
    padding: 0 5px 0 10px;
    background: none;
    border: 1px solid #e5e5e5;
}

.table_desc .cart_page table tbody tr td .product_total {
    min-width: 120px;
}

.cart_page table thead tr:last-child th,
.table_desc table tbody tr td:last-child {
    border-right: 0;
}

.cart_submit {
    text-align: right;
    padding: 12px;
}

@media only screen and (max-width: 767px) {
    .cart_submit {
        text-align: center;
    }
}

.cart_submit button {
    background: #333;
    border: 0;
    color: #ffffff;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    height: 38px;
    line-height: 18px;
    padding: 11px 15px 10px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 3px;
}

.cart_submit button:hover {
    background: #002f80;
}

.coupon_inner {
    padding: 10px 20px 25px;
}

.coupon_inner p {
    font-size: 13px;
    margin-bottom: 20px;
}

.coupon_inner button {
    background: #333;
    border: 0;
    color: #ffffff;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    height: 38px;
    line-height: 18px;
    padding: 10px 15px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 3px;
}

.coupon_inner button:hover {
    background: #002f80;
}

.coupon_inner input {
    border: 1px solid #e5e5e5;
    height: 42px;
    background: none;
    padding: 0 20px;
    margin-right: 20px;
    font-size: 12px;
    color: #333;
}

@media only screen and (max-width: 767px) {
    .coupon_inner input {
        margin-bottom: 24px;
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .coupon_inner input {
        margin-bottom: 24px;
        width: 100%;
    }
}

.coupon_inner a {
    display: block;
    text-align: right;
    color: #002f80;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    border-radius: 3px;
}

.coupon_code {
    border: 1px solid #e5e5e5;
}

@media only screen and (max-width: 767px) {
    .coupon_code.left {
        margin-bottom: 59px;
    }
}

.coupon_code h3 {
    color: #ffffff;
    line-height: 36px;
    padding: 5px 15px;
    background: #333;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .coupon_code h3 {
        line-height: 28px;
        padding: 5px 15px;
        font-size: 15px;
    }
}

.cart_subtotal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cart_subtotal p {
    font-weight: 600;
    font-size: 14px;
}

.cart_subtotal p.cart_amount {
    font-size: 18px;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .cart_subtotal p.cart_amount {
        font-size: 14px;
    }
}

.cart_subtotal p span {
    margin-right: 30px;
}

.checkout_btn {
    text-align: right;
}

.checkout_btn a {
    background: #002f80;
    color: #ffffff;
    font-size: 16px;
    padding: 3px 14px;
    line-height: 30px;
    font-weight: 500;
    display: inline-block;
    text-transform: capitalize;
    margin-bottom: 0;
}

.checkout_btn a:hover {
    background: #333;
}

.coupon_area {
    margin-bottom: 60px;
}

.footer_widgets.other_widgets .footer_top {
    padding-bottom: 0;
    border-bottom: 0;
}

.footer_widgets.other_widgets .footer_top_inner {
    padding: 55px 0 53px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer_widgets.other_widgets .footer_top_inner {
        padding: 55px 0 59px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer_widgets.other_widgets .footer_top_inner {
        padding: 55px 0 40px;
    }
}

@media only screen and (max-width: 767px) {
    .footer_widgets.other_widgets .footer_top_inner {
        padding: 55px 0 35px;
    }
}


/*cart page css end*/


/* 14. checkout page css here */

.user-actions {
    margin-bottom: 20px;
}

.user-actions h3 {
    font-size: 13px;
    font-weight: 400;
    background-color: #f7f6f7;
    padding: 15px 10px;
    border-top: 3px solid #002f80;
    margin-bottom: 0;
}

.user-actions h3 a {
    color: #002f80;
}

.checkout_info {
    border: 1px solid #e5e5e5;
    margin-top: 25px;
    padding: 20px 30px;
}

.checkout_info p {
    margin-bottom: 15px;
}

.checkout_info a {
    color: #002f80;
    margin-top: 15px;
    display: block;
}

.form_group {
    margin-bottom: 20px;
}

.form_group label {
    font-size: 14px;
    display: block;
    line-height: 18px;
}

.form_group input {
    border: 1px solid #e5e5e5;
    background: none;
    height: 45px;
    width: 350px;
    padding: 0 20px;
}

@media only screen and (max-width: 767px) {
    .form_group input {
        width: 100%;
    }
}

.form_group button {
    display: inline-block;
    width: 80px;
    background: #333;
    border: 0;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-right: 20px;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    border-radius: 3px;
}

.form_group button:hover {
    background: #002f80;
}

.form_group input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    position: relative;
    top: 3px;
}

.form_group.group_3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form_group.group_3 label {
    margin-bottom: 0;
    line-height: 34px;
    cursor: pointer;
}

.form_group.group_3 label:hover {
    color: #002f80;
}

#checkout_coupon input {
    background: none;
    border: 1px solid #e5e5e5;
    width: 200px;
    height: 45px;
    font-size: 12px;
    padding: 0 20px;
    color: #333;
}

#checkout_coupon button {
    width: 130px;
    background: #333;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 0;
    height: 45px;
    line-height: 45px;
    border-radius: 3px;
    margin-left: 5px;
}

@media only screen and (max-width: 767px) {
    #checkout_coupon button {
        margin-top: 20px;
    }
}

#checkout_coupon button:hover {
    background: #002f80;
}

.mb-20 {
    margin-bottom: 20px;
}

.checkout_form h3 {
    font-size: 16px;
    line-height: 30px;
    padding: 5px 10px;
    text-transform: uppercase;
    color: #ffffff;
    background: #333;
    font-weight: 500;
}

.checkout_form input {
    border: 1px solid #e5e5e5;
    background: none;
    height: 40px;
    width: 100%;
    padding: 0 20px;
    color: #333;
}

.checkout_form .nice-select {
    width: 100%;
}

.checkout_form .nice-select ul.list {
    width: 100%;
    height: 180px;
    overflow: auto;
}

.checkout_form .nice-select::after {
    top: 56%;
}

.checkout_form label {
    font-weight: 600;
}

.checkout_form label span {
    color: #002f80;
}

.checkout_form label.righ_0 {
    cursor: pointer;
    font-size: 15px;
    line-height: 27px;
    padding: 5px 10px;
    text-transform: capitalize;
    color: #ffffff;
    background: #333;
    font-weight: 500;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 0;
    border-radius: 5px;
}

@media only screen and (max-width: 767px) {
    .checkout_form label.righ_0 {
        font-size: 13px;
        line-height: 25px;
        padding: 3px 10px;
    }
}

.checkout_form label.righ_0:hover {
    background: #002f80;
}

.checkout_form input[type="checkbox"] {
    width: 15px;
    height: 15px;
    position: relative;
    top: 2px;
    margin-right: 10px;
}

.order_button button {
    cursor: pointer;
    font-size: 16px;
    line-height: 30px;
    padding: 5px 10px;
    text-transform: capitalize;
    color: #ffffff;
    background: #002f80;
    font-weight: 500;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 0;
    border-radius: 5px;
}

.order_button button:hover {
    background: #333;
}

@media only screen and (max-width: 767px) {
    .order-notes {
        margin-bottom: 58px;
    }
}

.order-notes textarea {
    border: 1px solid #e5e5e5;
    border-radius: 0;
    height: 45px;
    max-width: 100%;
    padding: 0 30px 0 20px;
    background: none;
    font-size: 13px;
    resize: none;
    line-height: 45px;
    width: 100%;
    color: #333;
}

.order-notes label {
    line-height: 13px;
}

.Checkout_section {
    margin-bottom: 56px;
}

@media only screen and (max-width: 767px) {
    .Checkout_section {
        margin-bottom: 60px;
    }
}

.order_table {
    margin-bottom: 35px;
}

.order_table table {
    width: 100%;
}

.order_table table thead tr th {
    min-width: 50%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.order_table table tbody tr td {
    min-width: 50%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.order_table table tfoot tr th {
    min-width: 50%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.order_table table tfoot tr td {
    min-width: 50%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.panel-default input[type="radio"] {
    width: 15px;
    height: 15px;
    position: relative;
    top: 2px;
    margin-right: 10px;
}

.panel-default img {
    width: 160px;
}

.order_button button {
    border: 0;
}

.card-body1 {
    margin-bottom: 15px;
}


/*checkout page css end*/


/* 22. wishlist css here */

.table_desc.wishlist table tbody tr:last-child td {
    border-bottom: 0;
}

.table_desc.wishlist table tbody tr td.product_total a {
    background: #002f80;
    font-size: 12px;
    font-weight: 700;
    height: 38px;
    line-height: 18px;
    padding: 10px 20px;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 3px;
}

.table_desc.wishlist table tbody tr td.product_total a:hover {
    background: #333;
}

.wishlist_share {
    text-align: center;
    padding: 20px 0;
    border: 1px solid #e5e5e5;
}

.wishlist_share h4 {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.wishlist_share ul li {
    display: inline-block;
}

.wishlist_share ul li a {
    padding: 0 10px;
    display: block;
}

.wishlist_share ul li a:hover {
    color: #002f80;
}

.wishlist_area {
    padding-bottom: 60px;
}


/*wishlist css end*/


/* 15. contact page css here */

.contact_area {
    margin-bottom: 60px;
}

.contact_message h3 {
    font-size: 21px;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact_message h3 {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .contact_message h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.contact_message p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
}

.contact_message ul li {
    padding: 13px 0;
    border-top: 1px solid #e5e5e5;
}

.contact_message ul li:last-child {
    padding-bottom: 0;
}

.contact_message ul li i {
    margin-right: 10px;
}

.contact_message ul li a {
    color: #002f80;
}

.contact_message ul li a:hover {
    color: #333;
}

.contact_message label {
    line-height: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact_message input {
    border: 1px solid #e5e5e5;
    height: 45px;
    background: #ffffff;
    width: 100%;
    padding: 0 20px;
    color: #333;
}

.contact_message textarea {
    height: 170px;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    resize: none;
    margin-bottom: 20px;
    width: 100%;
    padding: 10px 20px;
    color: #333;
}

.contact_message button {
    font-weight: 400;
    height: 42px;
    line-height: 42px;
    padding: 0 30px;
    text-transform: capitalize;
    border: none;
    background: #333;
    color: #ffffff;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 4px;
}

.contact_message button:hover {
    background: #002f80;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact_message.content {
        margin-bottom: 52px;
    }
}

@media only screen and (max-width: 767px) {
    .contact_message.content {
        margin-bottom: 52px;
    }
}

.contact_message.form p.form-messege {
    margin-bottom: 0;
}

.contact_map {
    margin-bottom: 57px;
}

.map-area #googleMap {
    height: 460px;
    width: 100%;
}


/*contact page css end*/


/* 17. login page css here */

.account_form h2 {
    font-size: 28px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .account_form h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

.account_form form {
    border: 1px solid #e5e5e5;
    padding: 20px 20px 25px;
    border-radius: 5px;
}

.account_form label {
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    line-height: 12px;
    margin-bottom: 12px;
}

.account_form label:hover {
    color: #002f80;
}

.account_form input {
    border: 1px solid #e5e5e5;
    height: 40px;
    max-width: 100%;
    padding: 0 20px;
    background: none;
    width: 100%;
}

.account_form button {
    background: #002f80;
    border: 0;
    color: #ffffff;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    height: 34px;
    line-height: 21px;
    padding: 5px 20px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-left: 20px;
    border-radius: 20px;
}

.account_form button:hover {
    background: #333;
}

.login_submit label input[type="checkbox"] {
    width: 15px;
    height: 13px;
    margin-right: 3px;
}

.login_submit {
    text-align: right;
}

.login_submit a {
    font-size: 13px;
    float: left;
    line-height: 34px;
}

.login_submit a:hover {
    color: #002f80;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .login_submit a {
        float: none;
        line-height: 18px;
        display: block;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .login_submit a {
        float: none;
        line-height: 18px;
        display: block;
        margin-bottom: 20px;
    }
}

.customer_login {
    padding-bottom: 60px;
}

.account_form p {
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .account_form.register {
        margin-top: 57px;
    }
}


/*login page css end */


/* 16. faq page css here */

.faq_content_area {
    padding-bottom: 56px;
}

@media only screen and (max-width: 767px) {
    .faq_content_area {
        margin-top: 53px;
    }
}

.accordion_area {
    padding-bottom: 60px;
}

.card.card_dipult {
    border: none;
    margin-bottom: 10px;
}

.card.card_dipult:last-child {
    margin-bottom: 0;
}

.card-header.card_accor {
    padding: 0;
    border: none;
}

.card-header.card_accor button {
    height: 45px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    white-space: initial;
}

@media only screen and (max-width: 767px) {
    .card-header.card_accor button {
        height: 60px;
    }
}

.card-header.card_accor button i {
    position: absolute;
    top: 50%;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
    right: 20px;
}

@media only screen and (max-width: 767px) {
    .card-header.card_accor button i {
        right: 10px;
    }
}

.card-header.card_accor button.btn-link {
    width: 100%;
    text-align: left;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e5e5e5;
}

.card-header.card_accor button.btn-link.collapsed {
    background: #f2f2f2;
    width: 100%;
    text-align: left;
}

.card-header.card_accor button.btn-link i.fa-plus {
    display: none;
}

.card-header.card_accor button.btn-link.collapsed i.fa-plus {
    display: block;
}

.card-header.card_accor button.btn-link.collapsed i.fa-minus {
    display: none;
}

.faq_content_wrapper h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 18px;
}

@media only screen and (max-width: 767px) {
    .faq_content_wrapper h4 {
        font-size: 14px;
        line-height: 24px;
    }
}


/*faq page css end*/


/*  18. my account css here */

@media only screen and (max-width: 767px) {
    .dashboard_tab_button {
        margin-bottom: 20px;
    }
}

.dashboard_tab_button ul li {
    margin-bottom: 5px;
}

.dashboard_tab_button ul li a {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    text-transform: capitalize;
    background: #333;
    border-radius: 3px;
}

.dashboard_tab_button ul li a:hover {
    background: #002f80;
    color: #ffffff;
}

.dashboard_tab_button ul li a.active {
    background: #002f80;
}

.main_content_area {
    padding: 60px 0 55px;
}

.dashboard_content h3 {
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 15px;
}

.dashboard_content h4 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 10px;
}

.dashboard_content a {
    color: #002f80;
    font-weight: 500;
}

.dashboard_content p a {
    color: #002f80;
    font-weight: 500;
}

.save_button button {
    color: #002f80;
    font-weight: 500;
    border: 0;
    background: none;
}

.save_button button:hover {
    color: #333;
}

.table-responsive table thead {
    background: #f2f2f2;
}

.table-responsive table thead tr th {
    text-align: center;
}

.table-responsive table tbody tr td {
    border-right: 1px solid #e5e5e5;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 14px;
    text-align: center;
    min-width: 150px;
}

.table-responsive table tbody tr td:last-child a {
    color: #002f80;
}

.table-responsive table tbody tr td:last-child a:hover {
    color: #333;
}

.table-responsive .table {
    border-left: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}

.dashboard_content address {
    font-weight: 500;
}

.input-radio span input[type="radio"],
.account_login_form form span input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-right: 2px;
    position: relative;
    top: 2px;
}

.input-radio span {
    font-weight: 500;
    padding-right: 10px;
}

.account_login_form form input {
    border: 1px solid #ddd;
    background: none;
    height: 40px;
    margin-bottom: 20px;
    width: 100%;
    padding: 0 20px;
    color: #333;
}


/*my account css end*/


/* 10. about page css here */

.about_section {
    padding-bottom: 60px;
}

.about_section.section_two {
    padding: 0 194px;
}

.about_section.section_two .about_thumb {
    text-align: center;
}

.about_section.section_two .about_content {
    margin-bottom: 25px;
}

.about_thumb:hover {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
}


}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about_thumb {
        margin-bottom: 26px;
    }
}
@media only screen and (max-width: 767px) {
    .about_thumb {
        margin-bottom: 21px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about_content {
        text-align: center;
    }
}
@media only screen and (max-width: 767px) {
    .about_content {
        text-align: center;
    }
}
.about_content h1 {
    font-weight: 500;
    line-height: 30px;
    text-transform: capitalize;
    font-size: 30px;
    margin-bottom: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about_content h1 {
        font-size: 27px;
        line-height: 25px;
        margin-bottom: 17px;
    }
}
@media only screen and (max-width: 767px) {
    .about_content h1 {
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 12px;
    }
}
.about_content p {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about_content p {
        line-height: 28px;
    }
}
@media only screen and (max-width: 767px) {
    .about_content p {
        font-size: 13px;
        line-height: 24px;
    }
}
.view__work {
    margin-top: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .view__work {
        margin-top: 22px;
    }
}
@media only screen and (max-width: 767px) {
    .view__work {
        margin-top: 20px;
    }
}
.view__work a {
    border: 1px solid #bbbbbb;
    height: 40px;
    font-size: 13px;
    font-weight: 500;
    line-height: 38px;
    padding: 0 25px;
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
}
.view__work a:hover {
    background: #002f80;
    color: #fff;
    border-color: #002f80;
}
@media only screen and (max-width: 767px) {
    .view__work a {
        height: 37px;
        line-height: 35px;
        font-size: 12px;
        padding: 0 20px;
    }
}
.counterup_section {
    padding-bottom: 30px;
}
@media only screen and (max-width: 767px) {
    .counterup_section {
        padding-bottom: 28px;
    }
}
.counter_img {
    margin-right: 20px;
}
@media only screen and (max-width: 767px) {
    .counter_img {
        margin-right: 10px;
    }
}
.single_counterup {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #f3f3f3;
    padding: 88px 0 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}
.about_section.section_two {
    padding: 25px 20px 18px;
}
.counter_info h2 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 33px;
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    .counter_info h2 {
        font-size: 22px;
        line-height: 30px;
    }
}
.counter_info p {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 24px;
}
@media only screen and (max-width: 767px) {
    .counter_info p {
        font-size: 11px;
    }
}
.about_progressbar {
    padding-bottom: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about_progressbar {
        padding-bottom: 70px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about_progressbar {
        padding-bottom: 70px;
    }
}
.about_progressbar.about_prog {
    background-color: #002f80;
    border-radius: 3px;
}
.about_progressbar.about_prog span.progress_persent {
    position: absolute;
    left: 50px;
    text-transform: uppercase;
}
.about_progressbar.porgress_two {
    padding: 5px 20px 35px;
}
@media only screen and (max-width: 767px) {
    .progressbar_inner {
        margin-bottom: 40px;
    }
}
.progressbar_inner h2 {
    font-size: 25px;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .progressbar_inner h2 {
        font-size: 21px;
        margin-bottom: 27px;
    }
}
@media only screen and (max-width: 767px) {
    .progressbar_inner h2 {
        font-size: 20px;
        margin-bottom: 30px;
    }
}
.progress_skill {
    position: relative;
    margin-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .progress_skill {
        margin-bottom: 33px;
    }
}
.progress_skill:last-child {
    margin-bottom: 0;
}
.progress_skill span.progress_discount {
    position: absolute;
    left: -2px;
    background: #333;
    border-radius: 100%;
    border: 3px solid #002f80;
    color: #fff;
    width: 40px;
    height: 40px;
    top: 50%;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
    text-align: center;
    line-height: 35px;
    z-index: 9;
}
.progress_skill .progress-bar {
    background: #002f80;
}
.progress_skill.one .progress-bar {
    width: 60%;
}
.progress_skill.two .progress-bar {
    width: 90%;
}
.progress_skill.three .progress-bar {
    width: 70%;
}
.progress_skill.four .progress-bar {
    width: 80%;
}

/*about page css end*/

/* 20. services page css here */
.services_gallery {
    padding-bottom: 28px;
}
.services_content h3 {
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 11px;
    line-height: 14px;
}
.services_content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}
.services_thumb {
    margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
    .services_thumb img {
        width: 100%;
    }
}
.single_services {
    margin-bottom: 25px;
}
.our_services {
    padding: 50px 0 25px;
    background: #ECECEC;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .our_services {
        margin-bottom: 60px;
    }
}
@media only screen and (max-width: 767px) {
    .our_services {
        margin-bottom: 60px;
    }
}
.services_item {
    margin-bottom: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.services_title {
    text-align: center;
    margin-bottom: 35px;
}
.services_title h2 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 11px;
}
@media only screen and (max-width: 767px) {
    .services_title h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
}
.services_title p {
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .services_title p {
        max-width: 660px;
    }
}
@media only screen and (max-width: 767px) {
    .services_title p {
        font-size: 13px;
    }
}
.services_icone {
    margin-right: 15px;
}
.services_icone i {
    font-size: 35px;
    line-height: 35px;
    color: #002f80;
}
.services_desc h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.services_desc p {
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .services_section_thumb {
        margin-bottom: 26px;
    }
}
@media only screen and (max-width: 767px) {
    .services_section_thumb {
        margin-bottom: 21px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .unlimited_services {
        padding: 60px 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .unlimited_services {
        margin-bottom: 59px;
    }
}
@media only screen and (max-width: 767px) {
    .unlimited_services {
        margin-bottom: 59px;
    }
}
.unlimited_services_content {
    text-align: center;
}
.unlimited_services_content h1 {
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
    font-size: 25px;
    margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .unlimited_services_content h1 {
        line-height: 25px;
        font-size: 20px;
        margin-bottom: 12px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .unlimited_services_content h1 {
        line-height: 21px;
        font-size: 20px;
        margin-bottom: 16px;
    }
}
@media only screen and (max-width: 767px) {
    .unlimited_services_content h1 {
        line-height: 20px;
        font-size: 18px;
        margin-bottom: 13px;
    }
}
.unlimited_services_content p {
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    .unlimited_services_content p {
        line-height: 28px;
    }
}
.priceing_table {
    background: #ECECEC;
    padding: 60px 0 30px;
}
.single_priceing {
    background: #fff;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px #FFFFFF inset, 0 1px 3px rgba(34, 25, 25, 0.4);
    box-shadow: 0 1px #FFFFFF inset, 0 1px 3px rgba(34, 25, 25, 0.4);
    text-align: center;
    margin-bottom: 30px;
}
.priceing_title {
    padding: 20px;
    background: #002f80;
}
.priceing_title h1 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}
.priceing_list {
    padding: 0 20px 30px;
}
.priceing_list h1 {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 36px 0 24px;
    margin: 0;
    line-height: 20px;
}
.priceing_list h1 span {
    font-size: 40px;
}
.priceing_list ul li {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    line-height: 24px;
}
.priceing_list ul li:first-child {
    border-top: 1px solid #e5e5e5;
}
.priceing_list a {
    margin: 30px 0 0;
    line-height: 38px;
    padding: 0 20px;
    border: 1px solid #333;
    color: #333;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
}
.priceing_list a.list_button,
.priceing_list a:hover {
    background: #002f80;
    border-color: #002f80;
    color: #fff;
}
.advantages_ecommerce {
    padding: 54px 0;
}
@media only screen and (max-width: 767px) {
    .advantages_ecommerce {
        padding: 55px 0 60px;
    }
}
.advantages_content h3 {
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .advantages_content h3 {
        font-size: 20px;
        line-height: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .advantages_content h3 {
        font-size: 16px;
        line-height: 20px;
    }
}
.advantages_content p {
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .advantages_content p {
        font-size: 13px;
    }
}
.advantages_button {
    text-align: center;
}
.advantages_button a {
    font-size: 14px;
    padding: 6px 20px;
    display: inline-block;
    border-radius: 30px;
    border: 1px solid #333;
}
.advantages_button a:hover {
    background: #002f80;
    color: #fff;
    border-color: #002f80;
}
@media only screen and (max-width: 767px) {
    .advantages_button a {
        padding: 5px 11px;
        font-size: 13px;
        margin-top: 20px;
    }
}

/*services page css end*/

/* 11. blog page css here */
.blog_page_section {
    margin-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog_page_section {
        margin-bottom: 53px;
    }
}
@media only screen and (max-width: 767px) {
    .blog_page_section {
        margin-bottom: 52px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog_page_section.blog_padding {
        margin-bottom: 52px;
    }
}
@media only screen and (max-width: 767px) {
    .blog_page_section.blog_padding {
        margin-bottom: 52px;
    }
}
.blog_wrapper .single_blog {
    margin-bottom: 60px;
    border: 0;
    display: flex;
}
.blog_wrapper .single_blog:last-child {
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    .blog_wrapper .single_blog {
        flex-direction: column;
    }
}
.blog_wrapper .blog_thumb {
    width: 40%;
}
@media only screen and (max-width: 767px) {
    .blog_wrapper .blog_thumb a {
        width: 100%;
    }
}
@media only screen and (max-width: 767px) {
    .blog_wrapper .blog_thumb a img {
        width: 100%;
    }
}
@media only screen and (max-width: 767px) {
    .blog_wrapper .blog_thumb {
        margin-bottom: 21px;
        width: 100%;
    }
}
.blog_wrapper .blog_content {
    padding-left: 30px;
    width: 60%;
}
@media only screen and (max-width: 767px) {
    .blog_wrapper .blog_content {
        padding-left: 0;
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }
}
.blog_wrapper .blog_content h3 {
    font-size: 21px;
    line-height: 27px;
    font-weight: 500;
    padding: 0;
    margin-bottom: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog_wrapper .blog_content h3 {
        font-size: 18px;
        line-height: 24px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog_wrapper .blog_content h3 {
        font-size: 15px;
        margin-bottom: 5px;
        line-height: 24px;
    }
}
@media only screen and (max-width: 767px) {
    .blog_wrapper .blog_content h3 {
        font-size: 15px;
        margin-bottom: 5px;
        line-height: 18px;
    }
}
.blog_wrapper .blog_content h3::before {
    display: none;
}
.blog_wrapper .blog_content span:last-child {
    margin-right: 0;
}
.blog_wrapper .blog_content span a:hover {
    color: #002f80;
}
.blog_wrapper .blog_meta {
    margin-bottom: 17px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog_wrapper .blog_meta {
        margin-bottom: 8px;
    }
}
.blog_wrapper .blog_meta span {
    font-size: 13px;
    line-height: 24px;
    margin-right: 12px;
}
.blog_wrapper .blog_meta span i {
    margin-right: 3px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog_wrapper .blog_meta {
        margin-bottom: 7px;
    }
}
@media only screen and (max-width: 767px) {
    .blog_wrapper .blog_meta {
        margin-bottom: 12px;
    }
}
.blog_wrapper .blog_desc {
    margin-bottom: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog_wrapper .blog_desc {
        margin-bottom: 16px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog_wrapper .blog_desc {
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 767px) {
    .blog_wrapper .blog_desc {
        margin-bottom: 20px;
    }
}
.blog_wrapper .blog_desc p {
    font-size: 14px;
    line-height: 24px;
}
@media only screen and (max-width: 767px) {
    .blog_wrapper .blog_desc p {
        font-size: 13px;
    }
}
.readmore_button a {
    height: 38px;
    line-height: 38px;
    background: #333;
    border: 0;
    color: #fff;
    display: inline-block;
    padding: 0 25px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    font-style: normal;
    border-radius: 3px;
}
.readmore_button a:hover {
    background: #002f80;
}
.blog_sidebar_widget .widget_list>h3 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}
.blog_sidebar_widget .widget_categories ul li a {
    margin-left: 0;
}
.widget_search input {
    height: 35px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #333;
    width: 100%;
    margin-bottom: 20px;
    padding: 0 15px;
}
.widget_search button {
    color: #fff;
    display: inline-block;
    background: #242424;
    border: none;
    padding: 0 20px;
    height: 34px;
    line-height: 35px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: 3px;
}
.widget_search button:hover {
    background: #002f80;
}
.tag_widget ul li {
    display: inline-block;
}
.tag_widget ul li a {
    margin: 0 6px 5px 0;
    display: block;
    font-size: 13px;
    font-weight: 400;
    border: 1px solid #e5e5e5;
    background: #fff;
    padding: 0 15px;
    line-height: 29px;
    border-radius: 3px;
}
.tag_widget ul li a:hover {
    background: #002f80;
    border-color: #002f80;
    color: #fff;
}
.post_thumb {
    width: 55px;
    float: left;
    margin-right: 10px;
}
.post_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}
.post_wrapper:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.post_info h3 {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 14px;
    margin-bottom: 5px;
}
.post_info h3 a:hover {
    color: #002f80;
}
.post_info span {
    font-size: 13px;
}
.blog_categories ul li {
    border-top: 1px solid #ddd;
}
.blog_categories ul li a {
    padding: 10px 0;
    text-transform: capitalize;
    display: inline-block;
    margin-left: 0;
}
.blog_categories ul li a:hover {
    color: #002f80;
}
.blog_categories ul li:last-child a {
    padding-bottom: 0;
}
.comments_post .post_thumb {
    width: 52px;
}
.comments_post .post_info span {
    font-size: 14px;
    display: block;
    line-height: 12px;
    margin-bottom: 8px;
}
.comments_post .post_info a:hover {
    color: #002f80;
}
.shipping_area.shipping_contact.blog_shipping {
    margin-top: 94px;
}
.widget_list.widget_search,
.widget_list.widget_post {
    margin-bottom: 30px;
}
.widget_list.widget_tag {
    margin-bottom: 30px;
}
.widget_list.comments_post {
    margin-bottom: 35px;
}
.blog_pagination {
    margin-bottom: 60px;
}
.blog_pagination .pagination {
    border: 1px solid #e5e5e5;
    justify-content: center;
    padding: 10px 0;
}
@media only screen and (max-width: 767px) {
    .blog_pagination .pagination {
        margin-top: 0;
    }
}

/*blog page css end*/

/*blog fullwidth css here*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog_fullwidth {
        margin-bottom: 56px;
    }
}
@media only screen and (max-width: 767px) {
    .blog_fullwidth {
        margin-bottom: 57px;
    }
}
.blog_fullwidth .single_blog {
    display: inherit;
}
.blog_fullwidth .blog_thumb {
    width: 100%;
    margin-bottom: 24px;
}
.blog_fullwidth .blog_content {
    width: 100%;
    padding-left: 0;
    text-align: center;
}
.blog_thumb_active {
    margin-bottom: 22px;
}
.blog_thumb_active:hover .owl-nav>div {
    left: 20px;
    opacity: 1;
    visibility: visible;
}
.blog_thumb_active:hover .owl-nav>div.owl-next {
    right: 20px;
}
.blog_thumb_active .owl-nav>div {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    background: rgba(237, 63, 70, 0.6);
    width: 30px;
    height: 30px;
    line-height: 32px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    left: 40px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}
.blog_thumb_active .owl-nav>div.owl-next {
    right: 40px;
    left: auto;
}
.blog_aduio_icone {
    margin-bottom: 16px;
    margin-top: 30px;
}
.blog_aduio_icone audio {
    width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog_reverse .row {
        flex-direction: column-reverse;
    }
}
@media only screen and (max-width: 767px) {
    .blog_reverse .row {
        flex-direction: column-reverse;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog_wrapper {
        margin-bottom: 57px;
    }
}
@media only screen and (max-width: 767px) {
    .blog_wrapper {
        margin-bottom: 57px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog_sidebar {
        margin-bottom: 53px;
    }
}
@media only screen and (max-width: 767px) {
    .blog_sidebar {
        margin-bottom: 51px;
    }
}

/* 12. blog details css here */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog_details_wrapper {
        margin-bottom: 38px;
    }
}
@media only screen and (max-width: 767px) {
    .blog_details_wrapper {
        margin-bottom: 56px;
    }
}
.blog_details_wrapper .blog_thumb {
    margin-bottom: 21px;
    width: inherit;
}
.blog_details_wrapper .blog_thumb::before {
    display: none;
}
.blog_details_wrapper .blog_content {
    padding: 0;
    width: inherit;
}
@media only screen and (max-width: 767px) {
    .blog_details_wrapper .blog_content {
        text-align: left;
    }
}
.blog_details_wrapper .blog_content h3 {
    font-size: 24px;
    text-transform: inherit;
    font-weight: 500;
    margin-bottom: 19px;
    line-height: 26px;
    padding-bottom: 0;
}
.blog_details_wrapper .blog_content h3::before {
    display: none;
}
.blog_details_wrapper .post_meta {
    margin-bottom: 14px;
}
.blog_details_wrapper .post_meta span {
    margin-right: 5px;
    font-weight: 500;
}
.blog_details_wrapper .post_meta span:last-child {
    margin-right: 0;
}
.blog_details_wrapper .post_meta span a:hover {
    color: #002f80;
}
.blog_details_wrapper .post_content>p {
    line-height: 26px;
    margin-bottom: 17px;
    font-size: 15px;
}
@media only screen and (max-width: 767px) {
    .blog_details_wrapper .post_content>p {
        font-size: 14px;
    }
}
.blog_details_wrapper .post_content blockquote {
    border-left: 4px solid #002f80;
    margin: 20px 0 20px 0;
    padding: 0 20px;
    font-style: italic;
    font-size: 15px;
    font-weight: 600;
}
.blog_details_wrapper .social_sharing {
    display: flex;
}
.blog_details_wrapper .social_sharing p {
    font-size: 14px;
    text-transform: capitalize;
    margin-right: 20px;
    margin-bottom: 0;
    font-weight: 700;
}
@media only screen and (max-width: 767px) {
    .blog_details_wrapper .social_sharing p {
        margin-right: 10px;
    }
}
.blog_details_wrapper .social_sharing ul li {
    display: inline-block;
}
.blog_details_wrapper .social_sharing ul li a {
    background: #e6e6e6;
    border-radius: 100%;
    display: inline-block;
    font-size: 12px;
    height: 26px;
    line-height: 26px;
    margin-right: 5px;
    text-align: center;
    width: 26px;
}
@media only screen and (max-width: 767px) {
    .blog_details_wrapper .social_sharing ul li a {
        margin-right: 3px;
    }
}
.blog_details_wrapper .social_sharing ul li a:hover {
    color: #ffffff;
    background: #002f80;
}
.blog_details_wrapper .social_sharing ul li:first-child a {
    padding-left: 0;
    border-left: 0;
}
.entry_content {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 26px;
    margin-bottom: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media only screen and (max-width: 767px) {
    .entry_content {
        flex-direction: column;
        text-align: left;
        align-items: inherit;
    }
}
.entry_content .post_meta {
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    .entry_content .post_meta {
        margin-bottom: 10px;
    }
}
.entry_content .post_meta span {
    font-weight: 700;
}
.entry_content .post_meta span:hover {
    color: #002f80;
}
.comments_box {
    margin-bottom: 52px;
    border-top: 1px solid #e5e5e5;
    padding-top: 17px;
}
.comments_box h3 {
    font-size: 20px;
    margin: 0 0 20px;
    font-weight: 500;
    line-height: 28px;
}
.comment_list {
    overflow: hidden;
    margin-bottom: 30px;
}
.comment_list:last-child {
    margin-bottom: 0;
}
.comment_list .comment_thumb {
    display: inline-block;
    float: left;
}
@media only screen and (max-width: 767px) {
    .comment_list .comment_thumb {
        width: 40px;
    }
}
.comment_list .comment_content {
    margin-left: 70px;
    position: relative;
    border: 1px solid #ebebeb;
    border-radius: 3px;
    padding: 15px;
}
@media only screen and (max-width: 767px) {
    .comment_list .comment_content {
        margin-left: 55px;
    }
}
.comment_list .comment_content h5 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.comment_list .comment_content h5 a:hover {
    color: #002f80;
}
.comment_list .comment_content span {
    line-height: 18px;
    margin-bottom: 8px;
    font-size: 13px;
    font-style: italic;
    display: inline-block;
}
.comment_list .comment_content p {
    margin-bottom: 0;
    font-size: 14px;
}
.comment_reply {
    position: absolute;
    top: 20px;
    right: 12px;
}
@media only screen and (max-width: 767px) {
    .comment_reply {
        top: 15px;
    }
}
.comment_reply a {
    padding: 2px 10px;
    border-radius: 3px;
    color: #fff;
    background: #3E444A;
    display: block;
}
.comment_reply a:hover {
    background: #002f80;
}
@media only screen and (max-width: 767px) {
    .comment_reply a {
        font-size: 12px;
        line-height: 20px;
    }
}
.comments_form h3 {
    font-size: 20px;
    margin: 0 0 20px;
    font-weight: 500;
    line-height: 28px;
}
.comments_form p {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .comments_form form .row {
        flex-direction: row;
    }
}
.comments_form form label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.comments_form form textarea {
    width: 100%;
    height: 200px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    margin-bottom: 10px;
    resize: none;
    padding: 10px;
}
.comments_form form input {
    width: 100%;
    height: 40px;
    border: 1px solid #e5e5e5;
    margin-bottom: 15px;
    padding: 0 20px;
}
.comments_form form button {
    border: 0;
    line-height: 36px;
    background: #333;
    font-weight: 500;
}
.comments_form form button:hover {
    background: #002f80;
}
@media only screen and (max-width: 767px) {
    .comments_form form button {
        height: 38px;
        padding: 0 15px;
        font-size: 12px;
    }
}
.comment_list.list_two {
    padding-left: 50px;
}
@media only screen and (max-width: 767px) {
    .comment_list.list_two {
        padding-left: 0;
    }
}
.related_posts {
    margin-bottom: 54px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .related_posts .row {
        flex-direction: row !important;
    }
}
.related_posts h3 {
    font-size: 20px;
    margin: 0 0 20px;
    font-weight: 500;
    line-height: 28px;
}
.related_thumb {
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .related_thumb img {
        width: 100%;
    }
}
@media only screen and (max-width: 767px) {
    .related_thumb img {
        width: 100%;
    }
}
.related_content h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    margin-bottom: 5px;
}
.related_content h4 a:hover {
    color: #002f80;
}
.related_content span {
    font-size: 13px;
    line-height: 17px;
}
.related_content span i {
    margin-right: 3px;
}
.blog_details {
    margin-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog_details.blog_padding {
        margin-bottom: 52px;
    }
}
@media only screen and (max-width: 767px) {
    .blog_details.blog_padding {
        margin-bottom: 52px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog_details .blog_sidebar {
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 767px) {
    .blog_details .blog_sidebar {
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 767px) {
    .single_related {
        margin-bottom: 24px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_related.column_3 {
        margin-top: 24px;
    }
}
@media only screen and (max-width: 767px) {
    .single_related.column_3 {
        margin-bottom: 0;
    }
}

/*blog details css end*/

/*  24. modal css here */
.modal-dialog.modal-dialog-centered {
    min-width: 1100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .modal-dialog.modal-dialog-centered {
        min-width: 1000px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .modal-dialog.modal-dialog-centered {
        min-width: 950px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .modal-dialog.modal-dialog-centered {
        min-width: 730px;
    }
}
@media only screen and (max-width: 767px) {
    .modal-dialog.modal-dialog-centered {
        min-width: 90%;
    }
}
.modal_tab_img {
    text-align: center;
    margin-bottom: 10px;
}
.modal_tab_img img {
    margin: 0 auto;
}
.modal_tab_button ul li a {
    padding: 0;
    border: 1px solid #e5e5e5;
    margin: 0 2px;
}
.modal_tab_button ul li a img {
    width: 100%;
}
.modal_title h2 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
    color: #444444;
    line-height: 26px;
}
.modal_social h2 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    color: #444444;
    line-height: 20px;
}
.modal_social ul li {
    display: inline-block;
    margin-right: 3px;
}
.modal_social ul li a {
    text-transform: uppercase;
    display: inline-block;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
}
.modal_social ul li.facebook a {
    background: #3c5b9b;
}
.modal_social ul li.facebook a:hover {
    background: #002f80;
}
.modal_social ul li.twitter a {
    background: #1DA1F2;
}
.modal_social ul li.twitter a:hover {
    background: #002f80;
}
.modal_social ul li.pinterest a {
    background: #BD081B;
}
.modal_social ul li.pinterest a:hover {
    background: #002f80;
}
.modal_social ul li.google-plus a {
    background: #DC5043;
}
.modal_social ul li.google-plus a:hover {
    background: #002f80;
}
.modal_social ul li.linkedin a {
    background: #010103;
}
.modal_social ul li.linkedin a:hover {
    background: #002f80;
}
.modal_price {
    margin-bottom: 12px;
}
.modal_price span {
    font-weight: 600;
    color: #002f80;
    font-size: 16px;
}
.modal_price span.old_price {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 5px;
}
.modal_description p {
    line-height: 24px;
    font-size: 15px;
    color: #333;
    margin: 0;
}
.variants_size h2,
.variants_color h2 {
    font-size: 16px;
    color: #444444;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 7px;
    line-height: 20px;
}
.variants_size.mb-15,
.mb-15.variants_color {
    margin-bottom: 24px;
}
.variants_size .select_option,
.variants_color .select_option {
    width: 100%;
    border-radius: 0;
    margin-bottom: 25px;
}
.variants_size .select_option .list,
.variants_color .select_option .list {
    width: 100%;
    border-radius: 0;
}
.modal_add_to_cart {
    margin-bottom: 25px;
}
.modal_add_to_cart form input {
    width: 95px;
    border: 1px solid #e5e5e5;
    background: none;
    padding: 0 10px;
    height: 45px;
}
@media only screen and (max-width: 767px) {
    .modal_add_to_cart form input {
        width: 75px;
    }
}
.modal_add_to_cart form button {
    background: none;
    border: 1px solid #bbbbbb;
    margin-left: 10px;
    font-size: 12px;
    font-weight: 700;
    height: 45px;
    width: 230px;
    line-height: 18px;
    padding: 10px 15px;
    text-transform: uppercase;
    background: #3E444A;
    color: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}
@media only screen and (max-width: 767px) {
    .modal_add_to_cart form button {
        width: 130px;
    }
}
.modal_add_to_cart form button:hover {
    background: #002f80;
    color: #ffffff;
    border-color: #002f80;
}
.modal_body {
    padding: 29px 6px 38px;
}
@media only screen and (max-width: 767px) {
    .modal_body .modal_tab {
        margin-bottom: 60px;
    }
}
.modal-content {
    border-radius: 0;
}
.modal-content button.close {
    position: absolute;
    left: 94%;
    width: 35px;
    height: 35px;
    display: block;
    border: 1px solid #e5e5e5;
    top: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 9;
}
@media only screen and (max-width: 767px) {
    .modal-content button.close {
        left: 83%;
        width: 29px;
        height: 32px;
        top: 4px;
        margin-bottom: 14px;
    }
}
.modal-content button.close:hover {
    color: #002f80;
}
.modal_add_to_cart.mb-15 {
    margin-bottom: 23px;
}
.modal_description.mb-15 {
    margin-bottom: 20px;
}
.product_navactive.owl-carousel:hover .owl-nav div {
    opacity: 1;
    visibility: visible;
}
.product_navactive.owl-carousel .owl-nav {
    display: block;
}
.product_navactive.owl-carousel .owl-nav div {
    position: absolute;
    background: #f2f2f2;
    border-radius: 3px;
    color: #333;
    height: 32px;
    top: 50%;
    transform: translatey(-50%);
    width: 32px;
    text-align: center;
    line-height: 32px;
    left: -7px;
    font-size: 18px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}
.product_navactive.owl-carousel .owl-nav div:hover {
    background: #002f80;
    color: #ffffff;
}
.product_navactive.owl-carousel .owl-nav div.owl-next {
    right: -7px;
    left: auto;
}

/*modal css end*/

/*  23. newsletter popup css here */
.newletter-popup {
    background: #fff;
    top: 50% !important;
    margin-top: -179px;
    position: fixed !important;
    padding: 50px;
    text-align: center;
    display: none;
}
@media only screen and (max-width: 767px) {
    .newletter-popup {
        padding: 30px 20px;
        width: 95%;
    }
}
#boxes .newletter-title h2 {
    font-size: 30px;
    text-transform: uppercase;
    margin: 0 0 30px;
}
@media only screen and (max-width: 767px) {
    #boxes .newletter-title h2 {
        font-size: 22px;
        margin: 0 0 10px;
    }
}
#boxes .box-content label {
    font-weight: 400;
    font-size: 14px;
}
#boxes .box-content .newletter-label {
    width: 70%;
    margin-bottom: 36px;
}
@media only screen and (max-width: 767px) {
    #boxes .box-content .newletter-label {
        width: 100%;
    }
}
#frm_subscribe form {
    width: 340px;
    margin: 0 auto;
    position: relative;
}
@media only screen and (max-width: 767px) {
    #frm_subscribe form {
        width: 100%;
    }
}
#frm_subscribe form input {
    background: #EBEBEB;
    padding: 0 122px 0 20px;
    height: 45px;
    border: 0;
    width: 100%;
    color: #747474;
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    #frm_subscribe form input {
        padding: 0 104px 0 20px;
    }
}
#frm_subscribe form a.theme-btn-outlined {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 110px;
    background: #333;
    cursor: pointer;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    line-height: 45px;
}
#frm_subscribe form a.theme-btn-outlined:hover {
    background: #002f80;
}
@media only screen and (max-width: 767px) {
    #frm_subscribe form a.theme-btn-outlined {
        width: 90px;
    }
}
#boxes .box-content .subscribe-bottom {
    margin-top: 20px;
}
#boxes .box-content .subscribe-bottom label {
    margin: 0;
    font-size: 13px;
}
#boxes .box-content .subscribe-bottom #newsletter_popup_dont_show_again {
    display: inline-block;
    margin: 0;
}
#boxes #frm_subscribe #notification {
    color: #f00;
}
#boxes #frm_subscribe #notification .success {
    color: #67D7BB;
}
#popup2 {
    position: absolute;
    right: 1px;
    top: 1px;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    text-transform: capitalize;
    padding: 6px 12px;
    background: #333;
    font-weight: 600;
    line-height: 17px;
    color: #ffffff;
    display: block;
    transition: 0.3s;
}
#popup2:hover {
    background: #002f80;
}

/*newsletter popup css end*/

/* 09. error page css heer   */
.header_error {
    border-bottom: 1px solid #e5e5e5;
}
.error_form {
    text-align: center;
}
.error_form h1 {
    font-size: 200px;
    font-weight: 700;
    color: #002f80;
    letter-spacing: 10px;
    line-height: 160px;
    margin: 0 0 53px;
}
@media only screen and (max-width: 767px) {
    .error_form h1 {
        font-size: 130px;
        line-height: 120px;
        letter-spacing: 4px;
        margin: 0 0 18px;
    }
}
.error_form h2 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 17px;
}
@media only screen and (max-width: 767px) {
    .error_form h2 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 23px;
    }
}
.error_form p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 28px;
}
@media only screen and (max-width: 767px) {
    .error_form p {
        font-size: 15px;
        margin-bottom: 28px;
        line-height: 23px;
    }
}
.error_form form {
    width: 450px;
    margin: 0 auto;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .error_form form {
        width: 100%;
    }
}
.error_form form input {
    padding: 0 60px 0 30px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    color: #333;
    height: 40px;
    width: 100%;
    border-radius: 3px;
}
.error_form form button {
    position: absolute;
    right: 0;
    height: 100%;
    border: none;
    background: no-repeat;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
    top: 0;
    text-transform: uppercase;
    padding: 0 15px;
    font-weight: 600;
}
.error_form form button:hover {
    color: #002f80;
}
.error_form a {
    color: #fff;
    display: inline-block;
    background: #002f80;
    font-size: 12px;
    font-weight: bold;
    height: 40px;
    line-height: 41px;
    padding: 0 30px;
    text-transform: uppercase;
    margin-top: 30px;
    border-radius: 3px;
}
.error_form a:hover {
    background: #333;
}
.error_section {
    padding-bottom: 70px;
    padding-top: 62px;
}
@media only screen and (max-width: 767px) {
    .error_section {
        padding-bottom: 60px;
        padding-top: 25px;
    }
}
.text-right {
    text-align: right !important;
}
.category_thumb img {
    width: 260px;
    height: 260px;
}
.category_grid:hover .owl-nav>div {
    opacity: 1;
    visibility: visible;
}
.category_grid .owl-nav>div {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}
.category_grid .owl-nav>div:hover {
    background: #002f80;
    border-color: #002f80;
    color: #fff;
}
.category_grid .owl-nav>div.owl-next {
    right: 0;
    left: auto;
}
.single_product img {
    width: 100%;
    height: 100%;
}
.single_brand {
    border: 1px solid #ddd;
}
.single_brand img {
    width: 184px;
    height: 92px;
    padding: 5px;
}
.brand_container:hover .owl-nav>div {
    opacity: 1;
    visibility: visible;
}
.brand_container .owl-nav>div {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}
.brand_container .owl-nav>div:hover {
    background: #002f80;
    border-color: #002f80;
    color: #fff;
}
.brand_container .owl-nav>div.owl-next {
    right: 0;
    left: auto;
}
.heading {
    border-bottom: 1px solid #dadada;
    display: inline-block;
}
.heading>span {
    font-weight: 200;
}
.heading .divider-center {
    margin: 10px auto -2px;
}
.heading .divider-left,
.heading .divider-center {
    height: 4px;
    width: 70px;
    background: #002f80;
    display: block;
}
.widgets_container p {
    color: #fff;
}
.bg-grey {
    background: #f6f6f6;
}
.single_product {
    border-radius: 10px;
    border: 1px solid #E5E5E5;
}
.read-more a {
    background: #002f80;
    color: #fff;
    border: 1px solid #bbbbbb;
    height: 40px;
    font-size: 13px;
    font-weight: 500;
    line-height: 38px;
    padding: 0 25px;
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
}
.read-more a:hover {
    background: #013e8f;
}
.pt-30 {
    padding-top: 30px;
}
.news_box {
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0px 5px 5px 0px rgba(204, 204, 204, 0.75);
    margin-bottom: 20px;
}
.news_box:hover {
    box-shadow: 0px 5px 25px 0px rgba(204, 204, 204, 0.75);
}
.news_img {
    background-color: transparent;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}
.news_img img {
    border-radius: 10px 10px 0px 0px;
    height: 370px;
    width: 100%;
}
.news_detail {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
    padding-left: 10px;
    padding-right: 10px;
}
.news_detail h3 {
    font-size: 16px;
    color: #222222;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    line-height: 24px;
    font-weight: 600;
}
.news_detail p {
    font-size: 14px;
    color: #777777;
    line-height: 26px;
    margin-top: 10px;
    text-align: center;
}
.news_box:hover .news_img {
    background: rgba(109, 46, 192, 1);
    background: -moz-linear-gradient(45deg, rgb(1, 62, 143) 0%, rgba(0, 147, 226, 1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(1, 62, 143, 1)), color-stop(100%, rgba(0, 147, 226, 1)));
    background: -webkit-linear-gradient(45deg, rgba(1, 62, 143, 1) 0%, rgba(0, 147, 226, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(1, 62, 143, 1) 0%, rgba(0, 147, 226, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(1, 62, 143, 1) 0%, rgba(0, 147, 226, 1) 100%);
    background: linear-gradient(45deg, rgba(1, 62, 143, 1) 0%, rgba(0, 147, 226, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#6d2ec0', endColorstr='#0093e2', GradientType=1);
    border-radius: 10px 10px 0px 0px;
    transition: all ease 0.5s 0s;
}
.news_box:hover .news_img img {
    opacity: 0.1;
    border-radius: 5px;
    transition: all ease 0.5s 0s;
}
.product_thumb {
    border-radius: 10px;
}
.about_content {
    text-align: center;
}
.table_wrap {
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
}
table {
    width: 100%;
    table-layout: fixed;
}
table td,
table th {
    padding: 10px 0px;
    /* border: 1px solid #333; */
    
    vertical-align: middle;
    overflow: hidden;
    text-align: left;
}
.table_wrap tr {
    border-bottom: 1px solid #ddd;
}

/*404 page css end*/

/*# sourceMappingURL=style.css.map */