/*
 Theme Name: Fishto
 Theme URI: https://psdtowpwork.com/html/fishto/
 Author: nsstheme
 Author URI: https://themeforest.net/user/nsstheme
 Description: Fisto - Fishing and Hunting Hobby Accessories store HTML5 Responsive Template.
 Version: 1.0
 License:
 License URI:
 */

/*==================================
 [Table of contents]
 ===================================
 1. All Preset Css
 2. Home 01
 3. Home 02
 4. Home 03
 5. About Page
 6. Shop Page
 7. Single Product
 8. Cart Page
 9. Checkout Page
 10. Blog Page
 11. Single blog Page
 12. Contact Page
 13. Faq Page
 14. 404 Page
 15. Preloader
*/

/*------------------------------------------------------
/ 1. All Preset Css
/------------------------------------------------------*/
/*--- Google Fonts ---*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');
/*--- Google Fonts ---*/

html, body{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #565872;
    letter-spacing: 0;
    font-weight: 400;
    word-break: break-word;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Nunito', sans-serif;
    color: #222F5A;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 15px;
    line-height: 1.5;
}
a{
    color: #222F5A;
    text-decoration: none;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
a:hover{
    color: #412CC5;
    text-decoration: none;
}
a:focus{
    outline: 0;
    text-shadow: none;
    box-shadow: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/*---- fishto Btn ----*/
.fishto-btn{
    display: inline-block;
    height: 55px;
    font-size: 15px;
    line-height: .8;
    font-family: 'Nunito', sans-serif;
    color: #fff;
    position: relative;
    z-index: 1;
    text-align: center;
    text-transform: capitalize;
    font-weight: 700;
    background: #412CC5;
    padding: 18px 44px;
    border-radius: 5px;
    z-index: 1;
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.fishto-btn:hover {
    color: #fff;
}
.fishto-btn::before {
    content: '';
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    transition: width .3s cubic-bezier(.25,.8,.25,1) 0s;
    -moz-transition: width .3s cubic-bezier(.25,.8,.25,1) 0s;
    -webkit-transition: width .3s cubic-bezier(.25,.8,.25,1) 0s;
    background: #F9CA1C;
    border-radius: 5px;
}
.fishto-btn:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}
.fishto-btn i{
    font-size: 18px;
    line-height: .8;
    display: inline-block;
    padding: 0 0 0 40px;
    position: relative;
    top: 4px;
}

/*---- Section Title ----*/
.sub_title{
    font-size: 16px;
    color: #F7531E;
    font-weight: 700;
    line-height: 20px;
    display: inline-block;
    margin: 0 0 20px;
}
.sub_title span{
    display: inline-block;
    width: 60px;
    height: 2px;
    background: #F7531E;
    margin: 0 0 0 9px;
    position: relative;
    top: -2px;
}
.sec_titles{
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 60px;
}
.sec_desc{
    line-height: 30px;
    margin: -40px 0 29px;
}
.listing-item{
    margin: 0;
    padding: 0;
}
.listing-item li{
    list-style: none;
    position: relative;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Nunito', sans-serif;
    color: #222F5A;
    font-weight: 700;
    margin: 0 0 16px;
    padding-left: 42px;
}
.listing-item li i{
    position: absolute;
    left: 0;
    top: 2px;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    line-height: 22px;
    background: rgba(247, 83, 30, .3);
    font-size: 14px;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
body .elementor-widget:not(:last-child) {
    margin-bottom: 0;
}
.fishto_heading{
    font-size: 40px;
    line-height: 54px;
    color: #1c1c25;
    margin: 0 0 18px;
}
.fishto_heading span{
    color: #1972E0;
}
/*---- Animation ----*/
@keyframes blinker {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1, 1);
    }
}
@keyframes halfBounce {
    0%,
    100% {
        transform: scale(.5)
    }
    50% {
        transform: scale(1)
    }
}
@keyframes halfBounce2 {
    0%,
    100% {
        transform: scale(.9)
    }
    50% {
        transform: scale(1)
    }
}
@-webkit-keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.overlay-anim::before {
    background: rgba(255, 255, 255, 0.5);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 500ms linear;
}
.overlay-anim:hover::before {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 500ms linear;
}
.overlay-anim::after {
    background: rgba(255, 255, 255, 0.5);
    bottom: 50%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 1;
    pointer-events: none;
    transition: all 600ms linear;
}
.overlay-anim:hover::after {
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 600ms linear;
}
/*------------------------------------------------------
/ 2. Home 01
/------------------------------------------------------*/
/*---- Topbar ---*/
.topbar{
    position: relative;
    background: #412CC5;
    padding: 11px 0 10px;
}
.topinfo{
    position: relative;
}
.topinfo p{
    display: inline-block;
    color: #fff;
    font-size: 14px;
    line-height: .8;
    margin: 0 35px 0 0;
}
.topinfo p:last-child{
    margin-right: 0;
}
.topinfo p a{
    color: inherit;
}
.topinfo p i{
    display: inline-block;
    margin-right: 9px;
    font-size: 17px;
    position: relative;
    top: 1px;
    color: rgba(255, 255, 255, .6);
}
.topinfo p i.icon_pin_alt{
    top: 3px;
}
.topsocial{
    margin: 0;
    padding: 0;
    float: right;
    display: inline-block;
}
.topsocial li{
    list-style: none;
    display: inline-block;
    margin-left: 16px;
}
.topsocial li a{
    display: inline-block;
    font-size: 17px;
    color: #F5F5F5;
}
.topsocial li a:hover{
    color: #F9CA1C;
}
.topbar .container-fluid,
header .container-fluid{
    padding-left: 75px;
    padding-right: 75px;
}

/*---- Header ---*/
.header-01{
    position: absolute;
    background: transparent;
    left: 0;
    bottom: auto;
    width: 100%;
    height: auto;
    z-index: 99;
    border-bottom: 2px solid rgba(34, 47, 90, .2)
}
.navbar.navbar-expand-lg{
    position: relative;
    margin: 0 0;
    padding: 0;
    transition: all 0.3s ease-out;
}
.navbar-brand{
    position: relative;
    padding: 0 0;
    margin: 0;
    text-align: center;
}
.navbar-brand img{
    max-width: 100%;
    height: auto;
}
.text-logo{
    display: block;
    font-size: 30px;
    line-height: 30px;
    text-transform: capitalize;
    color: #222F5A;
    font-weight: 700;
    letter-spacing: 0;
}
.text-logo:hover{
    color: #5838fc;
}
.navbar .navbar-collapse{
    justify-content: flex-end;
}
.navbar-expand-lg .navbar-nav{
    position: relative;
    margin: 0;
    padding: 0;
}
.navbar-expand-lg .navbar-nav li{
    position: relative;
    list-style: none;
    display: inline-block;
    margin: 0 0 0 48px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.navbar-expand-lg .navbar-nav li:first-child{
    margin-left: 0;
}
.navbar-expand-lg .navbar-nav li > a{
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #222F5A;
    font-family: 'Nunito', sans-serif;
    text-transform: capitalize;
    font-weight: 600;
    padding: 30px 0 30px;
    position: relative;
}
.navbar-expand-lg .navbar-nav > li.menu-item-has-children > a:after {
    content: '';
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0px;
    height: 2px;
    width: 0;
    transition: width .4s cubic-bezier(.25,.8,.25,1) 0s;
    background: #222F5A;
}
.navbar-expand-lg .navbar-nav > li.menu-item-has-children:hover > a:after {
    width: calc(100% + 32px);
    left: -25px;
    right: auto;
}
.navbar-expand-lg .navbar-nav li.current-menu-item > a,
.navbar-expand-lg .navbar-nav li:hover > a{
    color: #5838fc;
}
.navbar-expand-lg .navbar-nav li .sub-menu {
    background: #fff;
    width: 200px;
    z-index: 9;
    text-align: left;
    padding: 0;
    display: block;
    left: -25px;
    margin: auto;
    position: absolute;
    padding: 0 0;
    visibility: hidden;
    opacity: 0;
    top: 100%;
    z-index: 9;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    -moz-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: none;
    border-radius: 0;
    color: inherit;
    font-size: inherit;
    -o-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
    transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform: rotateX(-90deg);
    -o-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    -webkit-transform: rotateX(-90deg);
}
.navbar-expand-lg .navbar-nav li .sub-menu li{
    display: block;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.navbar-expand-lg .navbar-nav li .sub-menu li a{
    padding: 9px 25px;
    margin: 0;
    color: #222F5A;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 15px;
    width: 100%;
    display: block;
    position: relative;
}
.navbar-expand-lg .navbar-nav li .sub-menu li.current-menu-item > a,
.navbar-expand-lg .navbar-nav li .sub-menu li:hover > a{
    color: #412CC5;
}
.navbar-expand-lg .navbar-nav li:hover .sub-menu{
    visibility: visible;
    opacity: 1;
    transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
}
.navbar-expand-lg .navbar-nav li .sub-menu li a:before{
    display: none;
}
.navbar-expand-lg .navbar-nav li .sub-menu li .sub-menu{
    position: absolute;
    left: 110%;
    right: auto;
    top: 0;
    visibility: hidden;
    opacity: 0;
}
.navbar-expand-lg .navbar-nav li .sub-menu li:hover .sub-menu{
    visibility: visible;
    opacity: 1;
    left: calc(100% + 1px);
}
.access-btn{
    position: relative;
    margin-left: 68px;
}
.access-btn a{
    display: inline-block;
    position: relative;
    width: 46px;
    height: 46px;
    border: 2px solid rgba(34, 47, 90, .1);
    border-radius: 50px;
    text-align: center;
    background: transparent;
    font-size: 17px;
    color: #222F5A;
    line-height: 45px;
    margin-left: 12px;
}
.access-btn a span{
    position: absolute;
    right: -7px;
    top: -8px;
    width: 20px;
    height: 20px;
    display: block;
    background: #222F5A;
    color: #fff;
    font-size: 11px;
    line-height: 21px;
    font-weight: 500;
    border-radius: 50%;
    text-align: center;
}
.access-btn a:hover{
    background: #412CC5;
    border-color: #412CC5;
    color: #fff;
}
.submenu-toggler{
    display: none;
}

/*---- Search Toggle ---*/
.popup_search_sec {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}
.popup_search_overlay {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    cursor: url(../images/close.png), auto;
    -webkit-transition: all .4s ease-in .8s;
    -o-transition: all .4s ease-in .8s;
    transition: all .4s ease-in .8s;
}
.popup_search_sec.active .popup_search_overlay {
    visibility: visible;
    -webkit-transition: all .8s ease-out 0s;
    -o-transition: all .8s ease-out 0s;
    transition: all .8s ease-out 0s;
    top: 0;
    opacity: 1;
}
.pop_search_background {
    background: #000;
    width: 100%;
    height: 400px;
    top: -100%;
    z-index: 99;
    position: fixed;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 0.6s cubic-bezier(0.9, 0.03, 0, 0.96) 0.7s;
    -o-transition: all 0.6s cubic-bezier(0.9, 0.03, 0, 0.96) 0.7s;
    transition: all 0.6s cubic-bezier(0.9, 0.03, 0, 0.96) 0.7s;
}
.popup_search_sec.active .pop_search_background {
    opacity: 1;
    visibility: visible;
    top: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.5s;
    -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.5s;
    transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.5s;
}
.middle_search {
    position: relative;
    top: 43%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    position: relative;
    z-index: 2;
}
.popup_search_form {
    position: relative;
}
.popup_search_form:after {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
    animation-delay: 0.8s;
    position: absolute;
    content: '';
    height: 1px;
    background: rgba(255, 255, 255, .25);
    width: 0;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: 0;
}
.popup_search_sec.active .popup_search_form:after {
    -webkit-animation-name: fadeInGo;
    animation-name: fadeInGo;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility: visible;
    opacity: 1;
    width: 100%;
}
.popup_search_form:before{
    content: '';
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
    -moz-transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
    -webkit-transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
    background: #412CC5;
}
.popup_search_form.focused:before{
    width: 100%;
    left: 0;
    right: auto;
}
.popup_search_form input[type="search"] {
    width: 100%;
    height: 64px;
    border: none;
    background: transparent;
    outline: none;
    font-size: 20px;
    line-height: 64px;
    color: #ffffff;
    font-weight: 500;
}
.popup_search_form input[type="search"]::-moz-placeholder{
    color: #ffffff;
    opacity: 1;
}
.popup_search_form input[type="search"]::-ms-input-placeholder{
    color: #ffffff;
    opacity: 1;
}
.popup_search_form input[type="search"]::-webkit-input-placeholder{
    color: #ffffff;
    opacity: 1;
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@-webkit-keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}
@keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@-webkit-keyframes fadeInGo {
    0% {opacity: 0.1; width: 0; }
    100% {opacity: 1; width: 100%; }
}
@keyframes fadeInGo {
    0% {opacity: 0.1; width: 0; }
    100% {opacity: 1; width: 100%; }
}

@-webkit-keyframes fadeOutGo {
    0% {opacity: 1; width: 100%; }
    100% {opacity: 0; width: 0; }
}
@keyframes fadeOutGo {
    0% {opacity: 1; width: 100%; }
    100% {opacity: 0; width: 0; }
}

@-webkit-keyframes fadeOutGo2 {
    0% {opacity: 0.8; width: 100%; }
    100% {opacity: 0.14; width: 0; }
}
@keyframes fadeOutGo2 {
    0% {opacity: 0.8; width: 100%; }
    100% {opacity: 0.14; width: 0; }
}
.popup_search_form  button[type="submit"]{
    position: absolute;
    right: 0;
    bottom: 14px;
    border: none;
    outline: none;
    z-index: 2;
    font-size: 20px;
    line-height: 32px;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #ffffff;
    transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
    -ms-transition: all ease 300ms;
    -o-transition: all ease 300ms;
}
.popup_search_form  button[type="submit"]:hover{
    color: #412CC5;
}

/*---- Banner ---*/
.banner-01{
    position: relative;
    overflow: hidden;
    background-position: top right;
    background-size: auto;
    background-repeat: no-repeat;
    min-height: 820px;
    background-color: #F2F7FF;
    padding: 175px 0 150px;
}
.banner-content{
    position: relative;
    padding: 100px 0 0;
}
.sub-title{
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 13px;
}
.banner-content h2{
    font-size: 66px;
    line-height: 70px;
    margin: 0 0 13px;
}
.banner-content p{
    margin: 0 0 30px;
}
.banner-content .fishto-btn{
    height: 50px;
    background: #F9CA1C;
    color: #222F5A;
    padding: 15px 25px;
}
.banner-content .fishto-btn::before{
    background: #412CC5;
}
.banner-content .fishto-btn:hover{
    color: #fff;
}
.layer-thumb img{
    max-width: 100%;
}
.layer-thumb{
    text-align: right;
    animation-delay: 3s;
    animation-name: zoomIn;
}
.banner-content .sub-title {
    animation-delay: 1.5s;
    animation-name: fadeInUp;
}
.banner-content h2 {
    animation-delay: 1.8s;
    animation-name: fadeInLeft;
}
.banner-content p {
    animation-delay: 2.1s;
    animation-name: fadeInRight;
}
.banner-content .fishto-btn{
    animation-delay: 2.5s;
    animation-name: fadeInUp;
}

/*---- Category Section ---*/
.category-section{
    position: relative;
    padding: 0 0 100px;
    margin-top: -80px;
    z-index: 2;
}
.cate-wrapper{
    position: relative;
    display: flex;
    justify-content: space-around;
}
.cate-item{
    position: relative;
    width: 100%;
    margin-right: 30px;
    background: #fff;
    box-shadow: 0px 13px 15px rgba(0,0,0,0.03);
    -webkit-box-shadow: 0px 13px 15px rgba(0,0,0,0.03);
    -moz-box-shadow: 0px 13px 15px rgba(0,0,0,0.03);
    padding: 18px 15px 12px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cate-item:last-child{
    margin-right: 0;
}
.cate-item:hover{
    box-shadow: 0px 13px 25px rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px 13px 25px rgba(0,0,0,0.08);
    -moz-box-shadow: 0px 13px 25px rgba(0,0,0,0.08);
}
.cate-item .cate{
    min-height: 128px;
    overflow: hidden;
    position: relative;
    margin: 0 0 15px;
}
.cate-item img{
    max-width: 100%;
    height: auto;
    width: auto;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.cate-item:hover img {
    -webkit-transform: scale(1.03) rotate(-1deg);
    -moz-transform: scale(1.03) rotate(-1deg);
    -ms-transform: scale(1.03) rotate(-1deg);
    -o-transform: scale(1.03) rotate(-1deg);
    transform: scale(1.03) rotate(-1deg);
}
.cate-item a{
    display: block;
    font-size: 18px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #222F5A;
}
.cate-item a:hover{
    color: #412CC5;
}
.cate-item span{
    margin: 1px 0 0;
    display: block;
    font-size: 15px;
}

/*---- Product Section ---*/
.product-section{
    position: relative;
    padding: 0 0 70px;
}
.product-section .sec_titles{
    margin-bottom: 40px;
}
.product-tab-area{
    position: relative;
}
.product-tab-title{
    display: block;
    position: relative;
    margin: 0 0 50px;
    padding: 0;
    border: none;
    justify-content: inherit;
}
.product-tab-title li{
    list-style: none;
    display: inline-block;
}
.product-tab-title li a{
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: .8;
    text-transform: capitalize;
    color: #222F5A;
    position: relative;
    padding: 7px 28px;
    margin: 0 3px;
}
.product-tab-title li a:after{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    margin: auto;
    height: 100%;
    width: 70%;
    border: 1px solid #FEA31D;
    border-radius: 30px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.product-tab-title li a:hover:after,
.product-tab-title li a.active:after{
    visibility: visible;
    opacity: 1;
    width: 100%;
}
.product-item-1{
    position: relative;
    border: 1px solid #E2EEFF;
    padding: 0 15px 15px;
    margin: 0 0 30px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.product-thumb{
    position: relative;
    z-index: 3;
    text-align: center;
    min-height: 265px;
}
.product-thumb img {
    max-width: 100%;
    height: auto;
    width: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}
.product-meta{
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 32%;
    transform: translateY(-50%);
    z-index: 3;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    transform: scale(.8);
}
.product-meta a{
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #FEA31D;
    text-align: center;
    line-height: 50px;
    font-size: 17px;
    color: #222F5A;
    margin: 7px;
}
.product-meta a:hover{
    border-color: #F7531E;
    color: #F7531E;
}
.product-item-1:hover .product-meta{
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}
.product-item-1 .add-to-cart{
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #F7531E;
    text-align: center;
    line-height: 50px;
    letter-spacing: 1.4px;
    font-size: 14px;
    font-weight: 500;
    color: #181A31;
    text-transform: uppercase;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    width: calc(100% - 15px);
    display: inline-block;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    visibility: hidden;
    opacity: 0;
}
.product-item-1 .add-to-cart:hover{
    color: #F7531E;
    border-color: #F7531E;
}
.product-item-1 .add-to-cart i{
    width: 50px;
    height: 48px;
    display: inline-block;
    font-size: 17px;
    color: #fff;
    line-height: 50px;
    background: #F7531E;
    float: left;
}
.product-item-1:hover .add-to-cart{
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}
.product-details{
    position: relative;
    padding: 10px 0 0;
}
.product-details h5{
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
}
.product-details h5 a{
    color: inherit;
}
.product-details h5 a:hover{
    color: #412CC5;
}
.ratings {
    position: relative;
    font-size: 10px;
    line-height: 12px;
    color: #e2ab00;
    letter-spacing: 5px;
    margin: 0 0 7px;
}
.ratings i {
    display: inline-block;
}
.ratings span{
    letter-spacing: 0;
    font-size: 12px;
    color: #222f5a;
    margin-left: 3px;
    display: inline-block;
}
.product_price {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #222F5A;
    font-weight: 700;
    margin: 0;
    position: relative;
}
.product_price .price {
    display: inline-block;
    color: inherit;
}
.product_price .price span span {
    color: inherit;
    margin: 0;
}
.tab-content > .tab-pane {
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    transform: scale(0.9,0.9) translate(0px);
}
.tab-content > .tab-pane.show.active {
    transform: scale(1) translateY(0px);
}

/*---- Discount Section ---*/
.discount-section{
    position: relative;
    padding: 0 0 65px;
}
.discount-product{
    position: relative;
    background: #F4FFF2;
    padding: 52px 35px 52px;
}
.content-ds{
    position: relative;
}
.content-ds h3{
    font-size: 32px;
    line-height: 32px;
    margin: 0 0 11px;
    font-weight: 700;
}
.content-ds h3 span{
    font-size: 34px;
    color: #412CC5;
    font-weight: 900;
    display: block;
    margin: 0 0 14px;
}
.content-ds p{
    font-size: 14px;
    line-height: 23px;
    margin: 0 0 19px;
}
.content-ds .product_price{
    margin-bottom: 22px;
}
.product_price .price del,
.product_price .price ins{
    font-size: 17px;
    color: #222F5A;
    opacity: .37;
}
.product_price .price ins{
    text-decoration: none;
    opacity: 1;
    margin-left: 7px;
}
.content-ds .fishto-btn{
    height: 35px;
    padding: 11px 25px;
}

.ds-thumb{
    position: absolute;
    right: 25px;
    top: 16%;
    width: 40%;
    text-align: center;
}
.ds-thumb img{
    max-width: 100%;
}
.pi-2{
    border: none;
    background: #FFF2F2;
}
.pi-3 .product-thumb,
.pi-2 .product-thumb{
    min-height: 236px;
}
.pi-3{
    border: none;
    background: #E8F2FF;
}

/*---- Popluar Section ---*/
.popular-section{
    position: relative;
    padding: 0 0 70px;
}
.popular-slider.owl-carousel .owl-stage-outer {
    height: calc(100% + 20px);
    margin: -10px;
    padding: 10px;
    width: calc(100% + 20px);
}
.popular-slider.owl-carousel .owl-item img{
    width: auto;
}
.popular-slider.owl-carousel .owl-nav{
    position: absolute;
    top: 42%;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: .8;
}
.popular-slider.owl-carousel .owl-nav button{
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    font-size: 25px;
    color: #fff;
    outline: none;
    width: 40px;
    height: 40px;
    text-align: center;
    position: absolute;
    border: none;
    border-radius: 3px;
    background: #222F5A;
    line-height: 45px;
    letter-spacing: 1.25px;
}
.popular-slider.owl-carousel .owl-nav button.owl-prev{
    left: -60px;
}
.popular-slider.owl-carousel .owl-nav button.owl-next{
    left: auto;
    right: -60px;
}
.popular-slider.owl-carousel .owl-nav button:hover{
    background: #4147F5;
}
.product-item-2{
    position: relative;
    border: 1px solid #E2EEFF;
    padding: 0 15px 15px;
    margin: 0 0 30px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.product-item-2 .product-meta a{
    width: 40px;
    height: 40px;
    line-height: 41px;
    font-size: 16px;
    color: #222F5A;
    margin: 0 3px;
}
.product-item-2 .product-meta a:hover{
    color: #F7531E;
}
.product-item-2 .product-meta{
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    top: auto;
    z-index: 3;
    height: 100%;
    background: #fff;
    padding: 20px 25px 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.product-item-2:hover .product-meta{
    visibility: visible;
    opacity: 1;
    bottom: 0;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.product-item-2 .product-thumb{
    overflow: hidden;
}
.product-thumb img{
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.product-item-2:hover .product-thumb img {
    -webkit-transform: scale(1.03) rotate(-1deg);
    -moz-transform: scale(1.03) rotate(-1deg);
    -ms-transform: scale(1.03) rotate(-1deg);
    -o-transform: scale(1.03) rotate(-1deg);
    transform: scale(1.03) rotate(-1deg);
}

/*---- Testimonial Section ---*/
.testimonial-section{
    position: relative;
    padding: 92px 0 90px;
    background: #F5F5FF;
}
.testimonial-slider{
    position: relative;
}
.ts-item{
    position: relative;
    padding: 0 0 20px;
}
.ts-content{
    position: relative;
    border-radius: 3px;
    background-color: #412cc5;
    padding: 35px 40px 40px;
}
.ts-content p{
    font-size: 16px;
    line-height: 30px;
    color: #FFFFFF;
    margin: 0 0 23px;
}
.ts-content .ratings{
    font-size: 14px;
    color: #FFF826;
    letter-spacing: 6px;
}
.ts-content:after{
    position: absolute;
    right: 20px;
    bottom: 16px;
    content: "";
    background: url(../images/quote.png) no-repeat center center / cover;
    width: 85px;
    height: 59px;
}
.ts-author{
    position: relative;
    margin: 32px 0 0 40px;
    padding-left: 90px;
}
.testimonial-slider .ts-author img{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0
}
.ts-author h5{
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 1px;
}
.ts-author span{
    display: block;
    font-size: 15px;
    color: #412CC5;
}

/*---- Blog Section ---*/
.post-section{
    position: relative;
    padding: 92px 0 70px;
}
.blog-item-1{
    position: relative;
    border: 1px solid #E2EEFF;
    border-radius: 3px;
    padding: 45px 28px 41px;
    margin: 0 0 30px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.date{
    display: inline-block;
    position: relative;
    z-index: 1;
    height: 39px;
    padding: 0 20px;
    font-size: 12px;
    color: #222f5a;
    font-weight: 500;
    letter-spacing: 1.2px;
    line-height: 40px;
    margin: 0 0 12px;
}
.date span{
    font-weight: 400;
}
.date:after{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 76%;
    border-radius: 3px;
    content: '';
    background: #F9CA1C;
    z-index: -1;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.blog-item-1:hover .date:after{
    width: 100%;
}
.blog-item-1:hover{
    border-color: #412CC5;
}
.blog-item-1 h3{
    font-size: 18px;
    font-weight: 700;
    line-height: 33px;
    margin: 0 0 8px;
}
.blog-item-1 h3 a{
    color: inherit;
}
.blog-item-1 h3 a:hover{
    color: #412CC5;
}
.bp-meta{
    position: relative;
    margin: 0 0 3px;
}
.bp-meta p{
    font-size: 12px;
    color: #212C59;
    position: relative;
    letter-spacing: 1.2px;
    font-weight: 500;
    display: inline-block;
    margin-right: 22px;
}
.bp-meta p:after{
    position: absolute;
    right: -13px;
    top: 8px;
    width: 1px;
    height: 12px;
    content: '';
    background: #212C59;
}
.bp-meta p:last-child:after{
    display: none;
}
.bp-meta p:last-child{
    margin-right: 0;
}
.bp-meta span{
    color: #412CC5;
    display: inline-block;
    font-weight: 400;
}
.bp-meta a{
    text-transform: capitalize;
    color: inherit;
}
.bp-meta a:hover{
    color: #412CC5;
}
.blog-item-1 > p{
    margin: 0;
}

/*---- Instagram Section ---*/
.instagra-widget{
    position: relative;
    display: flex;
    justify-content: space-between;
}
.insta-item{
    position: relative;
    overflow: hidden;
}
.insta-item img{
    width: 100%;
    height: auto;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    overflow: hidden;
}
.insta-item:hover img {
    transform: scale(1.1) rotate(1.2deg);
    -moz-transform: scale(1.1) rotate(1.2deg);
    -webkit-transform: scale(1.1) rotate(1.2deg);
    -ms-transform: scale(1.1) rotate(1.2deg);
    -o-transform: scale(1.1) rotate(1.2deg);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

/*---- Footer Section ---*/
.footer{
    position: relative;
    background: #F2F7FF;
    padding: 100px 0 0;
}
footer .widget{
    margin: 0 0 63px;
    padding: 0;
}
footer .widget .widget-title{
    font-size: 20px;
    color: #222F5A;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: 800;
    margin: 0 0 10px;
}
footer .widget ul {
    margin: 0;
    padding: 0;
}
footer .widget ul li {
    list-style: none;
    display: block;
    font-size: 16px;
    line-height: 35px;
    color: #222F5A;
}
footer .widget ul li a {
    color: inherit;
}
footer .widget ul li a:hover {
    color: #412CC5;
    padding-left: 5px;
}
.about-widget{
    position: relative;
}
.about-widget img{
    max-width: 100%;
    height: auto;
    margin: 0 0 21px;
}
footer .widget .about-widget p,
.about-widget p{
    font-size: 16px;
    line-height: 30px;
    margin: 0 0 28px;
    color: #222F5A;
}
footer .widget p{
    font-size: 14px;
    line-height: 26px;
    margin: 0;
}
.ab-social{
    position: relative;
}
.ab-social a{
    display: inline-block;
    width: 34px;
    height: 34px;
    background: #3D5A96;
    border-radius: 3px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    line-height: 37px;
    margin-right: 6px;
}
.ab-social a i:before {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.ab-social a:hover i:before {
    animation: iconTranslateY 0.4s forwards;
}
@keyframes iconTranslateY {
    49% {
        transform: translateY(100%)
    }
    50% {
        opacity: 0;
        transform: translateY(-100%)
    }
    51% {
        opacity: 1
    }
}
.ab-social a.fac{
    background: #3D5A96;
}
.ab-social a.twi{
    background: #1ebef0;
}
.ab-social a.goo{
    background: #e1584b;
}
.ab-social a.you{
    background: #F52929;
}
.ab-social a.pin{
    background: #c33c2d;
}
.ab-social a.ins{
    background: linear-gradient(180deg, #7024c4 0%, #e09b3d 100%);
}

/*--- Mailchimp  ---*/
footer .widget.widget_mc4wp_form_widget{
    margin: 0 0 18px;
}
.mc4wp-form{
    position: relative;
    margin: 21px 0 0;
}
.mc4wp-form input[type="email"] {
    width: 100%;
    height: 48px;
    border: 2px solid rgba(0, 0, 0, .2);
    background: transparent;
    border-radius: 3px;
    outline: none;
    font-size: 16px;
    line-height: 48px;
    color: #565872;
    font-weight: 400;
    display: inline-block;
    padding: 0 20px;
    margin: 0 0 15px;
}
.mc4wp-form input[type="email"]::-moz-placeholder{
    color: #565872;
    opacity: 1;
}
.mc4wp-form input[type="email"]::-ms-input-placeholder{
    color: #565872;
    opacity: 1;
}
.mc4wp-form input[type="email"]::-webkit-input-placeholder{
    color: #565872;
    opacity: 1;
}
.mc4wp-form input[type="submit"] {
    display: inline-block;
    height: 48px;
    font-size: 15px;
    line-height: 48px;
    font-family: 'Nunito', sans-serif;
    color: #fff;
    border: none;
    text-align: center;
    text-transform: capitalize;
    font-weight: 700;
    background: #412CC5;
    width: 100%;
    border-radius: 3px;
    outline: none;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}
.mc4wp-form input[type="submit"]:hover{
    background: #F9CA1C;
}

/*--- Copyright  ---*/
.copyright{
    font-size: 16px;
    line-height: 24px;
    color: #222F5A;
    position: relative;
    padding: 27px 0;
    border-top: 1px solid rgba(0, 0, 0, .2);
}
.copyright p{
    margin: 0;
    color: inherit;
}

/*--------------------------------------------------------
/ 3. Home 2
/---------------------------------------------------------*/
/*---- Header ---*/
.tp-two{
    background: #F7531E;
}
.topbar p i.nss-phone2 {
    top: 4px;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
    display: inline-block;
}
.h2{
    background: rgba(0, 0, 0, .2);
    border: none;
}
.h2 .navbar .navbar-collapse {
    justify-content: center;
}
.h2 .access-btn{
    margin-left: 0;
}
.h2 .navbar-expand-lg .navbar-nav li > a{
    color: #fff;
}
.h2 .navbar-expand-lg .navbar-nav li.current-menu-item > a, 
.h2 .navbar-expand-lg .navbar-nav li:hover > a{
    color: #F7531E;
}
.h2 .navbar-expand-lg .navbar-nav li .sub-menu{
    background: #222F5A;
}
.h2 .navbar-expand-lg .navbar-nav li .sub-menu li{
    border-color: rgba(255, 255, 255, .20);
}
.h2 .navbar-expand-lg .navbar-nav li .sub-menu li a{
    color: #fff;
}
.h2 .navbar-expand-lg .navbar-nav li .sub-menu li.current-menu-item > a, 
.h2 .navbar-expand-lg .navbar-nav li .sub-menu li:hover > a{
    color: #F7531E;
}
.h2 .navbar-expand-lg .navbar-nav > li.menu-item-has-children > a:after{
    background: #fff;
}
.h2 .access-btn a{
    color: #fff;
    border-color: rgba(255, 255, 255, .2);
}
.h2 .access-btn a span{
    background: #fff;
    color: #222F5A;
}
.h2 .access-btn a:hover{
    background: #F7531E;
    border-color: #F7531E;
}


/*---- Slider ---*/
.slider-section{
    position: relative;
    overflow: hidden;
}
.hero-slider{
    position: relative;
}
.hero-slider .bg-img{
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 5;
    height: 920px;
}
/*.hero-slider.anim_class .bg-img{
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 10000ms ease;
    transition: -webkit-transform 10000ms ease;
    transition: transform 10000ms ease;
    transition: transform 10000ms ease,
    -webkit-transform 10000ms ease;
}
.hero-slider.anim_class .owl-item.active .bg-img{
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}*/
.hero-slider .bg-img:after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(270deg, rgba(255,255,255,0) 0%, #222f5a 100%);
}
.slider-content{
    position: relative;
    z-index: 9;
    padding: 0 0;
}
.slider-content .sub-title{
    color: #fff;
    position: relative;
    margin-bottom: 26px;
}
.slider-content .sub-title span{
    width: 60px;
    height: 2px;
    background: #fff;
    display: inline-block;
    margin: 0 0 0 22px;
    position: relative;
    top: -3px;
}
.slider-content h2{
    font-size: 68px;
    line-height: 80px;
    color: #fff;
    margin: 0 0 48px;
}
.slider-content p {
    font-size: 22px;
    line-height: 34px;
    color: #fff;
    font-weight: 400;
    margin: 0 0 30px;
}
.slider-content .fishto-btn{
    background: #F7531E;
    height: 50px;
    padding: 15px 21px;
}
.slider-content .fishto-btn::before{
    background: #412CC5;
}
.slider-content .fishto-btn i{
    padding-left: 32px;
}
.slider-content .fishto-btn.sb2{
    background: rgba(255, 255, 255, .2);
    margin-left: 25px;
}
.slider-content .fishto-btn.sb2::before{
    background: #F7531E;
}
.hero-slider .owl-dots{
    margin: auto;
    position: absolute;
    right: 50px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.hero-slider .owl-dots button{
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    outline: none;
    position: relative;
    margin: 10px 0;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.hero-slider .owl-dots button.active,
.hero-slider .owl-dots button:hover{
    background: #F7531E;
}
.hero-slider .owl-dots button span{
    display: none;
}
.hero-slider.owl-carousel .owl-nav button{
    right: 50px;
    left: auto;
    position: absolute;
    outline: none;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    -moz-transform: translateY(-50%) rotate(-90deg);
    -webkit-transform: translateY(-50%) rotate(-90deg);
    text-align: center;
    z-index: 5;
    font-size: 30px;
    line-height: 30px;
    color: rgba(255, 255, 255, .5);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.hero-slider.owl-carousel .owl-nav button.owl-prev{
    right: auto;
    left: 50px;
    transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -webkit-transform: translateY(-50%) rotate(90deg);
}
.hero-slider.owl-carousel .owl-nav button:hover{
    color: rgba(255, 255, 255, 1);
}
.hero-slider .owl-item.active .slider-content .sub-title{
    animation-delay: 1.7s;
    animation-name: fadeInLeft;
}
.hero-slider .owl-item.active .slider-content h2 {
    animation-delay: 1.9s;
    animation-name: fadeInRight;
}
.hero-slider .owl-item.active .slider-content p{
    animation-delay: 2.1s;
    animation-name: fadeInUp;
}
.hero-slider .owl-item.active .slider-content .fishto-btn{
    animation-delay: 2.3s;
    animation-name: fadeInUp;
}
.hero-slider .owl-item.active .slider-content .fishto-btn.sb2{
    animation-delay: 2.6s;
    animation-name: fadeInUp;
}

/*---- Discount ---*/
.discount-section-2{
    position: relative;
    margin-top: -85px;
    z-index: 2;
}
.discount-section-2 .col-lg-8{
    padding-right: 0;
}
.discount-section-2 .col-lg-4{
    padding-left: 0;
}
.offser-text{
    background: #F7531E;
    padding: 37px 55px;
}
.offser-text h3{
    color: #fff;
    font-size: 48px;
    line-height: 55px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 18px;
}
.offser-text h3 span{
    display: block;
    font-size: 32px;
    font-weight: 400;
}
.offser-text p{
    color: #FFFFFF;
    line-height: 28px;
    margin: 0;
}

/*---- Category Section ---*/
.category-section-2{
    position: relative;
    padding: 100px 0 67px;
}
.cate-item-icon{
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    margin-right: 30px;
    background: transparent;
    border-radius: 3px;
    border: 1px solid #E2EEFF;
    padding: 23px 15px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cate-item-icon:hover{
    border-color: #F7531E;
}
.cate-item-icon i{
    color: #412CC5;
    line-height: 55px;
    font-size: 55px;
}
.cate-item-icon .ct{
    margin: 23px 0 0;
    display: block;
    font-size: 18px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #222F5A;
}
.cate-item-icon .ct:hover{
    color: #F7531E;
}
.cate-item-icon:last-child {
    margin-right: 0;
}
.product-section-2{
    position: relative;
    padding: 0 0 70px;
}

/*---- About Section ---*/
.about-section{
    position: relative;
    padding: 0 0 100px;
}
.about-section .sub_title{
    margin-top: 15px;
}
.about-section .sec_titles{
    margin-bottom: 42px;
}
.ab-thumb{
    position: relative;
}
.ab-thumb img{
    max-width: 100%;
}
.icon-box-1{
    position: relative;
    padding-left: 60px;
    margin: 0 0 30px;
}
.icon-box-1 i{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 35px;
    line-height: 35px;
    color: #F7531E;
}
.icon-box-1 h4{
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 9px;
}
.icon-box-1 h4 a{
    color: inherit;
}
.icon-box-1 h4 a:hover{
    color: #F7531E;
}
.icon-box-1 p{
    font-size: 14px;
    line-height: 23px;
    margin: 0;
}
.in_right{
    text-align: right;
    padding-left: 0;
    padding-right: 60px;
}
.in_right i{
    left: auto;
    right: 0;
}
.in_top{
    background: #fff;
    padding: 52px 45px 49px;
}
.in_top i{
    position: relative;
    width: 81px;
    height: 81px;
    font-size: 40px;
    line-height: 81px;
    color: #222F5A;
    background: #F9CA1C;
    border-radius: 50%;
    text-align: center;
    margin-bottom: 20px;
}
.in_top p{
    font-size: 16px;
    line-height: 30px;
    color: #222F5A;
    margin-top: 15px;
}
.discount-section-3{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-color: #F5F5FF;
    padding: 97px 0 70px;
}
.discount-section-3 .content-ds h3 span{
    color: #F7531E;
}
.discount-section-3 .content-ds .fishto-btn{
    background: #F7531E;
}
.discount-section-3 .product-item-2,
.discount-section-3 .discount-product{
    background: #fff;
    border-color: #fff;
}
.discount-section-3 .product-thumb{
    min-height: 236px;
}
.hot-product-section{
    position: relative;
    padding: 92px 0 70px;
}
.hot-product-section .fishto-btn{
    background: transparent;
    color: #222F5A;
    padding: 0;
}
.hot-product-section .fishto-btn i{
    padding-left: 10px;
}
.hot-product-section .fishto-btn::before{
    background: transparent;
}
.hot-product-section .fishto-btn:hover{
    color: #F7531E;
}
.hot-product-section .popular-slider.owl-carousel .owl-nav{
    display: none;
}

/*---- Gallery Section ---*/
.gallery-section{
    position: relative;
    background: #F2F7FF;
    padding: 92px 0 0;
}
.gallery-slider.owl-carousel{
    position: relative;
}
.gallery-item{
    position: relative;
    overflow: hidden;
}
.gallery-item img{
    width: 100%;
    height: auto;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    overflow: hidden;
}
.gallery-item:hover img {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.gall-content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    width: calc(100% - 44px);
    margin: 0 auto;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    background: rgba(247, 83, 30, .8);
    border-radius: 5px;
    padding: 21px 40px;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.gall-content h4{
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin: 0;
    font-weight: 700;
}
.gall-content .popup{
    font-size: 26px;
    color: #fff;
    margin: auto;
    position: absolute;
    right: 40px;
    text-align: right;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}
.gall-content .popup:hover{

}
.gallery-item:hover .gall-content{
    bottom: 25px;
    visibility: visible;
    opacity: 1;
}

/*---- Blog Post ---*/
.blog-item-2{
    position: relative;
    border: 1px solid #E2EEFF;
    border-radius: 5px;
    padding: 0 0 20px;
    margin: 0 0 30px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.bp-thumb{
    position: relative;
    margin: -1px;
}
.bp-thumb img{
    width: 100%;
    height: auto;
    border-radius: 5px 5px 0 0;
}
.blog-item-2 h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 33px;
    margin: 0 0 0;
}
.blog-item-2 h3 a {
    color: inherit;
}
.blog-item-2 h3 a:hover{
    color: #F7531E;
}
.blog-item-2 .date{
    color: #fff;
}
.blog-item-2 .date:after{
    background: #F7531E;
    border-radius: 0;
}
.blog-item-2:hover .date:after{
    width: 100%;
}
.bp-details{
    position: relative;
    padding: 0 30px 0;
    margin-top: -21px;
}
.blog-item-2 .bp-meta{
    border-bottom: 1px solid #E2EEFF;
    width: calc(100% + 60px);
    left: -30px;
    padding-left: 30px;
    margin: 0 0 12px;
}
.blog-item-2 .bp-meta p{
    margin-bottom: 10px;
}

/*---- Client Logo ---*/
.client-section{
    position: relative;
    padding: 0 0 90px;
}
.client-slider.owl-carousel .owl-stage-outer {
    height: calc(100% + 20px);
    margin: -10px;
    padding: 10px;
    width: calc(100% + 20px);
}
.client-slider.owl-carousel{
    position: relative;
}
.client-slider.owl-carousel a{
    display: inline-block;
    z-index: 1;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #edebf9;
    background: transparent;
}
.client-slider.owl-carousel img{
    width: auto;
    max-width: 100%;
}
.client-slider.owl-carousel a:hover{
    border-color: #F7531E;
}

/*--------------------------------------------------------
/ 4. Home 3
/---------------------------------------------------------*/
/*---- Header ---*/
.tp-three .topsocial li a{

}
.language{
    float: right;
    display: inline-block;
    position: relative;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, .5);
    margin-left: 17px;
}
.currency-lang {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 110px;
    background: #FFF;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(35, 47, 62, 0.1);
    -moz-box-shadow:    0px 0px 10px 0px rgba(35, 47, 62, 0.1);
    box-shadow:         0px 0px 10px 0px rgba(35, 47, 62, 0.1);
    padding: 5px 0px;
    z-index: 999;
    text-align: center;
    display: none;
}
.currency-lang ul{
    margin: 0;
    padding: 0;
}
.currency-lang ul li{
    list-style: none;
    display: block;
    border-bottom: 1px solid #E2EEFF;
    padding: 0 0 5px;
    margin-bottom: 5px;
}
.currency-lang ul li:last-child{
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.currency-lang ul li a{
    display: inline-block;
    font-size: 14px;
    line-height: 30px;
}
.currency-lang ul li a:hover{
    color: #412CC5;
}
.language .select{
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 30px;
    color: #fff;
}
.language .select i {
    font-size: 16px;
    letter-spacing: 0;
    margin-left: 8px;
    position: relative;
    top: 4px;
}
.h3{
    background: #fff;
    border: none;
    margin: 0;
    position: relative;
}

/*---- Banner ---*/
.banner-02{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 185px 0 250px;
}
.banner-02:after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(34, 47, 90, .6);
}
.banner-02 .sub-title {
    animation-delay: 1.7s;
    animation-name: fadeInUp;
}
.banner-02 h2 {
    animation-delay: 2s;
    animation-name: fadeInLeft;
}
.banner-02 .fishto-btn {
    animation-delay: 2.3s;
    animation-name: fadeInUp;
}
.banner-02 .fishto-btn.sb2 {
    animation-delay: 2.6s;
    animation-name: fadeInUp;
}
.banner-02 .slider-content .fishto-btn{
    background: #FEA31D;
}
.banner-02 .fishto-btn.sb2{
    background: rgba(255, 255, 255, .2);
}
.banner-02 .slider-content .fishto-btn.sb2::before {
    background: #FEA31D;
}

/*---- Category ---*/
.category-section-3{
    position: relative;
    padding: 0 0 100px;
    z-index: 2;
    background: rgba(65, 44, 197, .05);
    margin-top: -75px;
}
.cate-wrapper-2{
    background: #fff;
    border-radius: 5px;
    padding: 45px 42px 5px;
}
.cate-item-icon-2{
    position: relative;
    border: 1px solid #E2EEFF;
    border-radius: 5px;
    margin: 0 5px 40px;
    padding: 40px 15px 34px 115px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cate-item-icon-2 i {
    color: #412CC5;
    line-height: 55px;
    font-size: 55px;
    left: 32px;
    margin: auto;
    position: absolute;
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}
.cate-item-icon-2 a.ct {
    display: block;
    line-height: .8;
    font-size: 18px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #181A2F;
    margin: -3px 0 11px;
}
.cate-item-icon-2 a.ct:hover{
    color: #FEA31D;
}
.cate-item-icon-2 span{
    color: #181A2F;
    font-size: 17px;
    display: block;
    font-weight: 700;
}
.cate-item-icon-2:hover{
    border-color: #FEA31D;
}
/*----  ---*/
.about-section-2{
    position: relative;
    padding: 0 0 100px;
    background: rgba(65, 44, 197, .05);
    margin-bottom: 92px;
}
.about-section-2 .fishto-btn{
    padding: 21px 44px;
    margin: 22px 0 0;
}
.about-section-2 .fishto-btn::before{
    background: #FEA31D;
}
.discount-section-4{
    position: relative;
}
.discount-section-4 .discount-product{
    background: #E2EEFF;
}
.ps-2 .blog-item-2 .date:after{
    background: #412CC5;
}
.ps-2 .blog-item-2 h3 a:hover{
    color: #412CC5;
}
.cs-2 .client-slider.owl-carousel a:hover{
    border-color: #412CC5;
}

/*---- Testimonial ---*/
.testimonial-slider-two{
    position: relative;
}
.ts-item-two{
    position: relative;
    background: #fff;
    padding: 60px 40px 35px;
    border-radius: 5px;
    margin: 25px 0 5px;
}
.ts-item-two h5{60px
    font-size: 17px;
    line-height: 24px;
    color: #222F5A;
    font-weight: 700;
    margin: 0 0 18px;
}
.ts-item-two p{
    line-height: 30px;
    margin: 0;
}
.ts-item-two:after {
    position: absolute;
    right: 40px;
    top: -22px;
    content: "";
    background-image: url(../images/quote2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #412CC5;
    border-radius: 5px;
    width: 65px;
    height: 65px;
}

/*----  ---*/
.mailchimp-section{
    position: relative;
    padding: 100px 0 0;
}
.mailchimp-area{
    position: relative;
    border: 1px solid #E2EEFF;
    border-radius: 5px;
    padding: 96px 60px 30px;
}
.mailchimp-area .icon-box-1{
    padding-left: 100px;
}
.mailchimp-area .icon-box-1 i{
    font-size: 80px;
    line-height: 75px;
    top: -7px;
    color: #F9CA1C;
}
.mailchimp-area .icon-box-1 h4{
    font-size: 34px;
    color: #222F5A;
    font-weight: 900;
}
.mailchimp-area .icon-box-1 p{
    color: #222F5A;
    margin: 0;
    font-size: 16px;
}
.newsletter-form{
    margin: 40px 0 0;
    position: relative;
}
.newsletter-form form{
    position: relative;
}
.newsletter-form input[type="email"] {
    width: 100%;
    height: 50px;
    font-size: 15px;
    line-height: 50px;
    border-radius: 5px;
    border: none;
    background: #F2F7FF;
    border: none;
    color: #565872;
    outline: none;
    padding: 0 20px;
    margin: 0;
}
.newsletter-form input[type="email"]::-moz-placeholder{
   color: #565872;
   opacity: .5; 
}
.newsletter-form input[type="email"]::-ms-input-placeholder{
   color: #565872;
   opacity: .5; 
}
.newsletter-form input[type="email"]::-webkit-input-placeholder{
   color: #565872;
   opacity: .5; 
}
.newsletter-form input[type="submit"]{
    width: auto;
    height: 38px;
    border-radius: 5px;
    padding: 0 38px;
    line-height: 38px;
    position: absolute;
    right: 6px;
    top: 6px;
}
.mailchimp-area img{
    margin-top: -90px;
    max-width: 100%;
}

/*--------------------------------------------------------
/ 5. About Page
/---------------------------------------------------------*/
/*-- page banner --*/
.page_banner{
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #222F5A;
    min-height: 435px;
    padding-top: 150px;
}
.page_banner:after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(34, 47, 90, .6);
}
.page_banner .container{
    position: relative;
    z-index: 2;
}
.pb_title{
    font-size: 36px;
    line-height: 68px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
}
.single_blog_banner .pb_title{
    font-size: 30px;
    line-height: 48px;
}
.page_crumb{
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #fff;
}
.page_crumb a{
    color: inherit;
}
.page_crumb a:hover{
    color: #412CC5;
}
.pad_top{
    background: #fff;
    padding-top: 100px;
    margin-bottom: 0;
}
.choose-us-section{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-color: #F5F5FF;
    padding: 92px 0 70px;
}
.marg-gal{
    margin: 100px 0;
}

/*--------------------------------------------------------
/ 6. Shop Page
/---------------------------------------------------------*/
.shoppage-setion{
    position: relative;
    padding: 90px 0 100px;
}
.toolbar-btn{
    display: inline-block;
    position: relative;
    margin: 0 0 60px;
    padding: 0;
    border: none;
    justify-content: inherit;
}
.toolbar-btn li{
    line-height: .8;
    list-style: none;
    display: inline-block;
    position: relative;
}
.toolbar-btn li a{
    display: inline-block;
    width: 60px;
    height: 60px;
    border: 2px solid #E2EEFF;
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    margin-right: 12px;
}
.toolbar-btn li a span{
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #E2EEFF;
    margin: 5px 4px 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.toolbar-btn li a.list{
    position: relative;
    top: 17px;
}
.toolbar-btn li a.list span{
    display: block;
    height: 6px;
    width: 30px;
    margin: 5px auto;
}
.toolbar-btn li a.active span,
.toolbar-btn li a:hover span{
    background: #412CC5;
}
.show-result{
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #222F5A;
    font-weight: 500;
    position: relative;
    top: -8px;
    margin: 0 0 0 11px;
}
.sorting{
    position: relative;
    text-align: right;
    margin: 15px 0 60px;
}
.sorting select {
    width: 275px;
    height: 60px;
    line-height: 58px;
    border: 2px solid #E2EEFF;
    outline: none;
    margin: 0;
    padding: 0 25px;
    color: #222F5A;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    -webkit-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/select.png) no-repeat right center;
    background-position-x: 90%;
    cursor: pointer;
}
.fishto-pagination{
    position: relative;
    font-family: 'Rubik', sans-serif;
    margin: 60px 0 0;
}
.fishto-pagination a, .fishto-pagination span {
    font-size: 20px;
    color: #0D1F35;
    letter-spacing: 0;
    line-height: 60px;
    background: #F2F7FF;
    font-weight: 500;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    padding: 0 0;
    margin: 0 5px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.fishto-pagination a:hover, .fishto-pagination .current {
    color: #fff;
    background: #412CC5;
}
.product-list-view{
    position: relative;
    border: 1px solid #E2EEFF;
    padding: 29px 15px 35px;
    margin: 0 0 30px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.product-list-view .product-details{
    padding-left: 15px;
}
.product-list-view .product-details h5{
    font-size: 24px;
    line-height: 35px;
}
.product-list-view .ratings{
    letter-spacing: 6px;
    font-size: 12px;
}
.product-list-view .product-details p{
    font-size: 16px;
    line-height: 30px;
    color: #565872;
    margin: 7px 0 21px;
}
.listing-meta{
    position: relative;
}
.listing-meta a.whishlist,
.listing-meta a.view{
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #E2EEFF;
    text-align: center;
    line-height: 50px;
    font-size: 17px;
    color: #B8B8B8;
    position: relative;
    top: 2px;
    margin: 0 0 0 10px;
}
.listing-meta a:hover{
    border-color: #412CC5;
    color: #412CC5;
}
.listing-meta .add-to-cart{
    width: 230px;
    height: 50px;
    background: #fff;
    border: 1px solid #412CC5;
    text-align: center;
    line-height: 50px;
    letter-spacing: 1.4px;
    font-size: 14px;
    font-weight: 500;
    color: #181A31;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.listing-meta .add-to-cart:hover{
    color: #412CC5;
    border-color: #412CC5;
}
.listing-meta .add-to-cart i{
    width: 50px;
    height: 48px;
    display: inline-block;
    font-size: 17px;
    color: #fff;
    line-height: 50px;
    background: #412CC5;
    float: left;
}

/*---- Shop Sidebar ---*/
.shop-sidebar{
    margin-top: 17px;
    position: relative;
    font-family: inherit;
}
.shop-sidebar .widget{
    margin: 0 0 65px;
    padding: 0;
}
.shop-sidebar .widget .widget-title{
    font-size: 22px;
    line-height: 30px;
    color: #222F5A;
    padding-bottom: 17px;
    margin: 0 0 29px;
    border-bottom: 2px solid rgba(65, 44, 197, .2)
}
.woocommerce-product-search,
.search-form{
    position: relative;
}
.woocommerce-product-search [type=search],
.search-form [type=search]{
    width: 100%;
    height: 60px;
    font-size: 16px;
    font-weight: 500;
    line-height: 40px;
    background: transparent;
    border-radius: 0;
    color: rgba(34, 47, 90, .4);
    border: 1px solid #E2EEFF;
    padding: 0 20px;
    outline: none;
}
.woocommerce-product-search [type=search]::-moz-placeholder,
.search-form [type=search]::-moz-placeholder{
    color: rgba(34, 47, 90, .4);
    opacity: 1;
}
.woocommerce-product-search [type=search]::-ms-input-placeholder,
.search-form [type=search]::-ms-input-placeholder{
    color: rgba(34, 47, 90, .4);
    opacity: 1;
}
.woocommerce-product-search [type=search]::-webkit-input-placeholder,
.search-form [type=search]::-webkit-input-placeholder{
    color: rgba(34, 47, 90, .4);
    opacity: 1;
}
.woocommerce-product-search button,
.search-form button{
    font-size: 20px;
    border: none;
    outline: none;
    height: 100%;
    padding: 0 20px;
    background: transparent;
    color: rgba(34, 47, 90, .5);
    line-height: 65px;
    position: absolute;
    right: 0;
    top: 0;
    transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
}
.woocommerce-product-search button{
    height: 60px;
    background: #222F5A;
    line-height: 60px;
    color: #fff;
}
.search-form button:hover{
    color: #412CC5;
}
.shop-sidebar .widget ul {
    margin: 0;
    padding: 0;
    line-height: .8;
}
.shop-sidebar .widget ul li {
    list-style: none;
    display: inline-block;
    line-height: 36px;
    text-align: right;
    font-size: 16px;
    color: #282932;
    opacity: .7;
    width: 100%;
    border-bottom: 1px solid rgba(65, 44, 197, .2);
    padding: 0 0 0;
    margin: 0 0 16px;
}
.shop-sidebar .widget ul li:first-child {
    padding-top: 1px;
}
.shop-sidebar .widget ul li a {
    float: left;
    color: inherit;
}
.shop-sidebar .widget ul li a:hover {
    color: #412CC5;
}
.shop-sidebar .widget ul ul.children {
    padding: 18px 0 0;
}
.shop-sidebar .widget ul ul.children li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.shop-sidebar .widget ul ul.children li:last-child, .sidebar_2 .widget ul ul.children li {
    border-top: 1px solid 1px solid rgba(65, 44, 197, .2);
    padding: 18px 0 18px;
    border-bottom: none;
}
.shop-sidebar .widget.widget_nav_menu ul ul.sub-menu a, 
.shop-sidebar .widget ul ul.children li a {
    padding-left: 15px;
}
.price_slider_wrapper{
    text-align: center;
    margin: 50px 0 85px;
}
#slider-range{
    width: 100%;
    height: 3px;
    background: rgba(65, 44, 197, .2);
    position: relative;
}
#slider-range .ui-slider-handle{
    background: #412CC5;
    border-radius: 50%;
    display: inline-block;
    height: 12px;
    position: absolute;
    top: -5px;
    width: 12px;
    cursor: pointer;
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    -ms-transition: none;
    -o-transition: none;
}
#slider-range .ui-slider-handle:focus{
    outline: 0;
    box-shadow: none;
}
#slider-range .ui-slider-range{
    background: #412CC5;
    height: 1.5px;
    position: absolute;
    top: .5px;
}
#slider-range .ui-slider-handle span{
    display: inline-block;
    text-align: center;
    font-size: 14px;
    color: #282932;
    letter-spacing: .79px;
    padding: 0;
    line-height: .8;
    position: absolute;
    width: 45px;
    left: -18px;
    bottom: -29px;
}
.best-sale-item{
    position: relative;
    padding-left: 80px;
    padding-top: 7px;
    min-height: 65px;
    margin: 0 0 20px;
}
.best-sale-item img{
    position: absolute;
    left: 0;
    top: 0;
    width: 65px;
    height: 65px;
    border-radius: 0;
    border: 1px solid rgba(65, 44, 197, .2);
}
.best-sale-item a{
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #222F5A;
    display: block;
    margin: 0 0 4px
}
.best-sale-item a:hover{
    color: #412CC5;
}
.best-sale-item .product_price{
    color: #412CC5;
    font-size: 15px;
}
.tagcloud{
    position: relative;
}
.tagcloud a {
    position: relative;
    z-index: 1;
    text-align: center;
    display: inline-block;
    font-size: 13px !important;
    color: #282932;
    font-weight: 500;
    text-transform: capitalize;
    height: 30px;
    border: 1px solid #E2EEFF;
    border-radius: 5px;
    background: #F2F7FF;
    line-height: .8;
    padding: 9px 12px;
    margin: 0 8px 8px 0;
}
.tagcloud a:hover{
    border-color: #412CC5;
    color: #fff;
}
.tagcloud a:after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: #412CC5;
    border-radius: 3px;
    visibility: hidden;
    opacity: 0;
    transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -1;
}
.tagcloud a:hover:after {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

/*--------------------------------------------------------
/ 7. Single Product
/---------------------------------------------------------*/
.singleproduct-setion{
    position: relative;
    padding: 100px 0 75px;
}
.productSlide{
    position: relative;
    text-align: center;
    border: 1px solid #E2EEFF;
    padding: 60px 30px;
}
.sp_img{
    position: relative;
    text-align: center;
}
.sp_img img{
    max-width: 100%;
    width: auto;
    max-height: 500px;
}
.indicator-slider {
    position: relative;
    z-index: 15;
    display: block;
    padding: 38px 70px 0 90px;
    margin: 0 0 0;
    list-style: none;
}
.indicator-slider li{
    list-style: none;
    width: 107px !important;
    height: 107px;
    border: 1px solid #E2EEFF;
    margin: 0 0 0 0;
    text-indent: 0;
    text-align: center;
    position: relative;
    cursor: pointer;
    background: transparent;
    background-clip: padding-box;
    opacity: 1;
    display: inline-block;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.indicator-slider .slick-center li{
    border-color: #412CC5;
}
.indicator-slider li img{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 90px;
    height: 75px;
    width: auto;
}
.slick-initialized .slick-slide{
    border: none;
    outline: none;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.indicator-slider .slick-slide{
    margin: 0 10px;
    width: 107px !important;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.indicator-slider .slick-arrow{
    background: transparent;
    width: auto;
    height: auto;
    line-height: 40px;
    font-weight: 500;
    color: #E2EEFF;
    text-align: center;
    border: none;
    outline: none;
    font-size: 20px;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 40px;
    top: 50%;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.indicator-slider .slick-arrow:hover{
    color: #412CC5;
}
.indicator-slider .slick-next{
    position: absolute;
    left: auto;
    right: 40px;
}
.product-decp{
    position: relative;
    padding-left: 40px;
    padding-right: 30px;
}
.product-decp h4{
    font-size: 34px;
    color: #222f5a;
    font-weight: 700;
    margin: 0 0 17px;
}
.product-decp .product_price{
    font-size: 28px;
    line-height: 33px;
    color: #412cc5;
    font-weight: 400;
    font-family: "Rubik";
    margin: 0 0 25px;
}
.product-decp .ratings{
    font-size: 12px;
    letter-spacing: 6px;
    margin: 0 0 28px;
}
.excerpt{
    position: relative;
    margin: 10px 0 46px;
}
.excerpt p{
    font-size: 16px;
    line-height: 30px;
    margin: 0;
}
.quantityd {
    position: relative;
    width: 148px;
    height: 53px;
    border-radius: 3px;
    background: #F2F7FF;
    border: 1px solid #E2EEFF;
    margin: 0 0 52px;
}
.quantityd button.qtyBtn {
    background: transparent;
    height: 100%;
    width: 30%;
    padding: 0;
    position: absolute;
    font-size: 17px;
    line-height: 53px;
    border: none;
    outline: none;
    border: none;
    color: #333333;
    letter-spacing: 0;
    font-weight: 500;
    padding: 0;
    text-align: center;
    top: 0;
    left: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.quantityd input[type="text"] {
    border: medium none;
    color: #333333;
    font-weight: 500;
    height: 100%;
    font-size: 16px;
    line-height: 53px;
    width: 40%;
    background: transparent;
    left: 0;
    margin: auto;
    outline: none;
    padding: 0 0px;
    position: absolute;
    right: 0;
    text-align: center;
}
.quantityd button.qtyBtn.btnPlus {
    left: auto;
    right: 0;
    border: none;
}
.quantityd button.qtyBtn:hover{
    color: #412cc5;
}
.product-decp .listing-meta{
    margin: 0 0 46px;
}
.metatext{
    font-size: 16px;
    line-height: 30px;
    color: #243F4D;
    margin: 0 0 2px;
}
.metatext span{
    font-weight: 700;
    display: inline-block;
}
.metatext a{
    color: inherit;
}
.metatext a:hover{
    color: #412cc5;
}
.pd-share{
    display: flex;
    justify-content: flex-start;
    margin: 34px 0 0;
}
.pd-share span{
    display: inline-block;
    font-size: 16px;
    color: #999999;
    font-weight: 700;
    line-height: 30px;
    padding-right: 20px;
}
.pd-share a{
    width: 30px;
    height: 30px;
    background: #F6F6F6;
    border-radius: 50%;
    text-align: center;
    line-height: 33px;
    color: #888888;
    font-size: 14px;
    display: inline-block;
    margin-right: 4px;
}
.pd-share a:hover{
    background: #412cc5;
    color: #ffff;
}
.productTabs{
    transform: none;
    position: relative;
    margin: 80px 0 30px;
    padding: 0;
    border-color: #F2F7FF;
    display: block;
}
.productTabs li{
    list-style: none;
    display: inline-block;
    margin: 0 0 17px;
}
.productTabs li a{
    display: inline-block;
    font-size: 16px;
    position: relative;
    font-weight: 700;
    color: #222F5A;
    line-height: 26px;
    font-family: 'Nunito', sans-serif;
    text-transform: capitalize;
    padding: 0 38px;
}
.productTabs li a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -19px;
    height: 1px;
    width: 0;
    background: #412cc5;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.productTabs li a.active:after, .productTabs li a:hover:after {
    width: 100%;
}
.tab-description{
    position: relative;
}
.tab-description p{
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 19px;
}
.tab-info{
    position: relative;
}
.tab-info table{
    width: 100%;
    position: relative;
    margin: 0;
    border: none;
}
.tab-info table tr th{
    font-size: 16px;
    position: relative;
    margin: 0;
    padding: 0 0 10px;
    font-weight: 500;
    color: #222F5A;
}
.tab-info table tr th:after {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: ':';
    font-size: 16px;
    line-height: 28px;
    color: #565872;
    font-weight: 400;
}
.tab-info table tr td{
    font-size: 16px;
    position: relative;
    padding: 0 0 10px;
    font-weight: 400;
}
.tab-info table tr td p{
    margin: 0;
}
.related-section{
    position: relative;
    padding: 0px 0 70px;
}
.related-slider.owl-carousel .owl-stage-outer {
    height: calc(100% + 20px);
    margin: -10px;
    padding: 10px;
    width: calc(100% + 20px);
}
.related-slider.owl-carousel .owl-item img {
    width: auto;
}

/*--------------------------------------------------------
/ 8. Cart Page
/---------------------------------------------------------*/
.cart-section{
    position: relative;
    padding: 100px 0;
}
.woocommerce-cart-form{
    position: relative;
    width: 100%;
}
.woocommerce .cart-table,
.woocommerce-cart-form .cart-table{
    position: relative;
    width: 100%;
    border: none;
    border-collapse: collapse;
    padding: 0;
    margin: 0;
}
.cart-table thead tr th{
    font-size: 15px;
    line-height: 28px;
    color: #222F5A;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    padding-bottom: 19px;
}
.cart-table thead tr th.product-name-thumbnail{
    width: 40%;
}
.cart-table tbody tr.cart-item{
    border: 1px solid #E2EEFF;
}
.cart-table tbody tr td{
    padding: 30px 10px;
    font-size: 16px;
    line-height: 30px;
    color: #565872;
    text-align: center;
    background: transparent;
    font-weight: 400;
}
.cart-table tbody tr td .pd-img{
    width: 69px;
    height: 65px;
    padding: 2px 0;
    text-align: center;
    border: 1px solid #E2EEFF;
    border-radius: 5px;
    display: inline-block;
}
.cart-table tbody tr td img{
    height: 60px;
    width: auto;
}
.cart-table tbody tr td.product-remove{
    padding-left: 25px;
}
.cart-table tbody tr td.product-remove a{
    font-size: 16px;
    font-weight: 500;
    color: #222F5A;
    display: inline-block;
}
.cart-table tbody tr td.product-total{
    border-right: 1px solid #E2EEFF;
    padding-right: 25px;
}
.cart-table tbody tr td .product-name {
    color: inherit;
    padding-left: 18px;
}
.cart-table tbody tr td.product-remove a:hover,
.cart-table tbody tr td .product-name:hover{
    color: #412cc5;
}
.cart-table .quantityd{
    width: 115px;
    height: 35px;
    margin: 0 auto;
}
.cart-table .quantityd button.qtyBtn{
    line-height: 35px;
}
.woocommerce-page table.cart td.actions,
.cart-table td.actions{
    width: 100%;
    text-align: right;
}
.woocommerce-page table.cart td.actions .coupon,
.cart-table td.actions .coupon{
    float: left;
    display: inline-block;
    height: 58px;
    width: 400px;
    position: relative;
}
.woocommerce-page table.cart td.actions .coupon input[type="text"],
.cart-table td.actions .coupon input[type="text"]{
    width: 100%;
    height: 100%;
    border: 1px solid #E2EEFF;
    background: transparent;
    border-radius: 0;
    outline: none;
    font-size: 16px;
    line-height: 60px;
    color: #565872;
    font-weight: 400;
    display: inline-block;
    padding: 0 20px;
    margin: 0 0 0;
}
.woocommerce-page table.cart td.actions .coupon input[type="text"]::-moz-placeholder,
.cart-table td.actions .coupon input[type="text"]::-moz-placeholder{
    color: #565872;
    opacity: 1;
}
.woocommerce-page table.cart td.actions .coupon input[type="text"]::-ms-input-placeholder,
.cart-table td.actions .coupon input[type="text"]::-ms-input-placeholder{
    color: #565872;
    opacity: 1;
}
.woocommerce-page table.cart td.actions .coupon input[type="text"]::-webkit-input-placeholder,
.cart-table td.actions .coupon input[type="text"]::-webkit-input-placeholder{
    color: #565872;
    opacity: 1;
}
.comment-form button{
    outline: none;
    border: none;
}
.woocommerce-page table.cart td.actions .coupon .button,
.cart-table td.actions .coupon .button{
    height: 45px;
    position: absolute;
    right: 7px;
    top: 7px;
    border: none;
    margin: 0;
    outline: none;
    padding: 17px 25px;
}
.woocommerce-page table.cart td.actions .button:before,
.cart-table td.actions .button:before{
    background: #E2EEFF;
}
.woocommerce-page table.cart td.actions .button,
.cart-table td.actions .button{
    border: none;
    outline: none;
    height: 45px;
    padding: 17px 22px;
    margin-top: 7px;
}
.woocommerce-page table.cart td.actions .update,
.cart-table td.actions .update{
    margin-left: 11px;
    background: #E2EEFF;
    color: #222F5A;
}
.woocommerce-page table.cart td.actions .update:before,
.cart-table td.actions .update:before{
    background: #412CC5;
}
.woocommerce-page table.cart td.actions .button.update:hover,
.cart-table td.actions .button.update:hover{
    color: #fff;
}
.woocommerce-page table.cart td.actions .button:hover,
.cart-table td.actions .button:hover{
    color: #222F5A;
}
.cart-totals{
    position: relative;
}
.cart-totals h4{
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 25px;
}
.woocommerce .cart-totals .shop_table, 
.cart-totals .shop_table{
    position: relative;
    width: 100%;
    border: 1px solid #E2EEFF;
    border-radius: 0;
    border-collapse: separate;
    padding: 0;
    margin: 0;
}
.woocommerce .cart-totals .shop_table tr th,
.cart-totals .shop_table tr th{
    font-size: 15px;
    font-weight: 500;
    line-height: 44px;
    padding: 16px 20px;
    color: #222F5A;
    border-top: 1px solid #E2EEFF;
    width: 35%;
}
.woocommerce .cart-totals .shop_table tr td,
.cart-totals .shop_table tr td{
    padding: 31px 20px 16px;
    border: none;
    border-top: 1px solid #E2EEFF;
    word-break: break-all;
}
.woocommerce .cart-totals .shop_table tr.cart-subtotal td,
.woocommerce .shop_table tr.order-total td,
.cart-totals .shop_table tr.cart-subtotal td,
.cart-totals .shop_table tr.order-total td{
    text-align: right;
}
.woocommerce .cart-totals .shop_table tr.cart-subtotal td,
.cart-totals .shop_table tr.cart-subtotal td,
.woocommerce .cart-totals .shop_table tr.cart-subtotal yh,
.cart-totals .shop_table tr.cart-subtotal th{
    border-top: none;
}
.shop_table .shipping .woocommerce-shipping-methods{
    margin: 0;
    padding: 15px 0 0 30px;
}
.shop_table .shipping .woocommerce-shipping-methods li{
    list-style: none;
    display: block;
    margin: 0 0 17px;
}
.shop_table .shipping .woocommerce-shipping-methods li input[type="radio"]{
    display: none;
}
.shop_table .shipping .woocommerce-shipping-methods li label{
    cursor: pointer;
    position: relative;
    -moz-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    color: #222F5A;
    font-size: 15px;
    line-height: .8;
    font-weight: 500;
    margin: 0 0 0;
}
.shop_table .shipping .woocommerce-shipping-methods li label::before {
    background: transparent;
    content: "";
    height: 15px;
    left: -30px;
    position: absolute;
    border-radius: 0;
    top: -1px;
    width: 15px;
    border: 1px solid #222F5A;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.shop_table .shipping .woocommerce-shipping-methods li input[type="radio"]:checked + label::after {
    background: #222F5A;
    bottom: 0;
    content: "";
    height: 7px;
    left: -26px;
    margin: auto;
    position: absolute;
    top: 0;
    border-radius: 0;
    width: 7px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cart-totals .wc-proceed-to-checkout {
    margin: 20px 0 0;
    padding: 0;
    width: 100%;
}
.cart-totals .wc-proceed-to-checkout .button{
    width: 100%;
    padding: 22px 44px;
}
.cart-totals .wc-proceed-to-checkout .button:before{
    background: #E2EEFF;
}
.cart-totals .wc-proceed-to-checkout .button:hover{
    color: #222F5A;
}
.cart-table .add-to-cart {
    width: 230px;
    height: 50px;
    background: #fff;
    border: 1px solid #412CC5;
    text-align: center;
    line-height: 50px;
    letter-spacing: 1.4px;
    font-size: 14px;
    font-weight: 500;
    color: #181A31;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cart-table .add-to-cart i {
    width: 50px;
    height: 48px;
    display: inline-block;
    font-size: 17px;
    color: #fff;
    line-height: 50px;
    background: #412CC5;
    float: left;
}
.cart-table .add-to-cart:hover {
    color: #412CC5;
    border-color: #412CC5;
}
.cart-table.wishlist-table thead tr th.product-name-thumbnail{
    width: 30%;
}

/*--------------------------------------------------------
/ 9. Checkout Page
/---------------------------------------------------------*/
.checkout-section{
    position: relative;
    padding: 100px 0;
}
.woocommerce .woocommerce-error, 
.woocommerce .woocommerce-info, 
.woocommerce-form-coupon-toggle .woocommerce-info, 
.woocommerce .woocommerce-message{
    background: #F2F7FF;
    border-top: 2px solid #412CC5;
    font-size: 18px;
    line-height: 26px;
    color: #181A2F;
    padding: 16px 30px;
    margin: 0 0 20px;
}
.woocommerce .woocommerce-error a, 
.woocommerce .woocommerce-info a, 
.woocommerce-form-coupon-toggle .woocommerce-info a, 
.woocommerce .woocommerce-message a{
    color: inherit;
}
.woocommerce .woocommerce-error a:hover, 
.woocommerce .woocommerce-info a:hover, 
.woocommerce-form-coupon-toggle .woocommerce-info a:hover, 
.woocommerce .woocommerce-message a:hover{
    color: #412CC5;
}
.woocommerce-error::before, 
.woocommerce-info::before, 
.woocommerce-message::before{
    display: none;
}
.checkout.woocommerce-checkout{
    position: relative;
    margin: 60px 0 0;
}
.woocommerce-billing-fields{
    position: relative;
    margin: 0 0 60px;
}
.woocommerce-billing-fields h3{
    font-size: 30px;
    line-height: 40px;
    color: #181A2F;
    font-weight: 700;
    margin-bottom: 53px;
}
.woocommerce-billing-fields p{
    margin-bottom: 23px;
}
.woocommerce-billing-fields label{
    font-size: 15px;
    line-height: .8;
    color: #181A2F;
    font-weight: 500;
    display: block;
    margin: 0 0 22px;
}
.woocommerce-billing-fields input{
    width: 100%;
    height: 50px;
    border: 1px solid #E2EEFF;
    background: transparent;
    display: block;
    border-radius: 0;
    outline: none;
    font-size: 16px;
    line-height: 50px;
    color: #565872;
    font-weight: 400;
    padding: 0 20px;
    margin: 0 0 0;
}
.woocommerce-input-wrapper{
    position: relative;
    width: 100%;
    display: block;
}
.woocommerce-input-wrapper:after {
    position: absolute;
    right: 20px;
    bottom: 0;
    content: "\33";
    font-family: 'ElegantIcons';
    font-size: 20px;
    line-height: 50px;
    color: #181A2F;
}
.woocommerce-input-wrapper select{
    width: 100%;
    height: 50px;
    border: 1px solid #E2EEFF;
    background: transparent;
    display: block;
    border-radius: 0;
    outline: none;
    font-size: 16px;
    line-height: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #565872;
    font-weight: 400;
    padding: 0 20px;
    margin: 0 0 0;
}
.woocommerce-checkout-review-order{
    position: relative;
    border: 1px solid #412CC5;
    padding: 0 0 20px;
}
.order{
    font-size: 30px;
    line-height: 40px;
    color: #181A2F;
    font-weight: 700;
    margin-bottom: 50px;
}
.woocommerce-checkout-review-order .check-table{
    position: relative;
    width: 100%;
    border: none;
    border-radius: 0;
    border-collapse: separate;
    padding: 0;
    margin: 0;
}
.woocommerce-checkout-review-order .check-table thead tr th {
    font-size: 15px;
    font-weight: 500;
    line-height: 44px;
    padding: 16px 20px;
    color: #222F5A;
}
.woocommerce-checkout-review-order .check-table tbody tr td {
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    padding: 0 0px 20px 20px;
    color: #565872;
}
.woocommerce-checkout-review-order .check-table tbody tr td.product-total,
.woocommerce-checkout-review-order .check-table thead tr th.product-total{
    text-align: right;
    padding-right: 20px;
}
.woocommerce-checkout-review-order .check-table tfoot tr td,
.woocommerce-checkout-review-order .check-table tfoot tr th {
    font-size: 15px;
    font-weight: 500;
    line-height: 44px;
    padding: 10px 20px;
    color: #222F5A;
    border-top: 1px solid #E2EEFF;
}
.woocommerce-checkout-review-order .check-table tfoot tr td{
    text-align: right;
    font-weight: 400;
}

.woocommerce-checkout-payment {
    position: relative;
    border-top: 1px solid #E2EEFF;
    padding: 17px 22px 12px;
}
.woocommerce-checkout-payment ul {
    margin: 0;
    padding: 0;
}
.woocommerce-checkout-payment ul li {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}
.woocommerce-checkout-payment ul li input[type=radio]{
    display: none;
}
.woocommerce-checkout-payment ul li label {
    cursor: pointer;
    position: relative;
    -moz-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    font-size: 15px;
    text-transform: none;
    line-height: 26px;
    font-weight: 500;
    color: #222F5A;
    margin: 0 0 7px;
    padding-left: 30px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.woocommerce-checkout-payment ul li label::before {
    background: transparent;
    border: 1px solid #222F5A;
    content: "";
    height: 15px;
    width: 15px;
    left: 0;
    position: absolute;
    top: 5px;
    border-radius: 0;
    background: transparent;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.woocommerce-checkout-payment ul li input[type="radio"]:checked + label::after {
    background: #222F5A;
    bottom: 10px;
    content: "";
    height: 7px;
    left: 4px;
    margin: auto;
    position: absolute;
    border-radius: 0;
    width: 7px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.payment_box {
    margin: 0 0 27px;
    position: relative;
    padding-left: 30px;
    display: none;
}
.payment_box.visibales{
    display: block;
}
.payment_box p{
    font-size: 16px;
    color: #565872;
    margin-bottom: 0;
}
.place-order{
    position: relative;
    text-align: center;
    padding: 0 20px;
}
.place-order .button{
    outline: none;
    height: 45px;
    padding: 17px 15px;
    width: 100%;
    font-size: 16px;
}

/*--------------------------------------------------------
/ 10. Blog Page
/---------------------------------------------------------*/
.blogpage-section{
    position: relative;
    padding: 100px 0;
}
.blog-item-3{
    position: relative;
    border: 2px solid #E2EEFF;
    border-radius: 0;
    padding: 0 0 0;
    margin: 0 0 40px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.bi-thumb{
    position: relative;
    margin: -2px;
}
.bi-thumb img{
    width: 100%;
    height: auto;
}
.bi-details{
    position: relative;
    padding: 37px 30px 39px;
}
.bi-details h3{
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
    margin: 0 0 24px;
}
.bi-details h3 a{
    color: inherit;
}
.bi-details h3 a:hover{
    color: #412CC5;
}
.bi-meta{
    position: relative;
    margin: 0 0 14px;
}
.bi-meta span{
    display: inline-block;
    font-size: 18px;
    line-height: 33px;
    font-weight: 600;
    color: #696969;
    font-family: 'Nunito', sans-serif;
    margin-right: 25px;
}
.bi-meta span:last-child{
    margin-right: 0;
}
.bi-meta span i{
    color: #412CC5;
    position: relative;
    top: 1px;
    margin-right: 10px;
}
.bi-meta span a{
    color: inherit;
}
.bi-meta span a:hover{
    color: #412CC5;
}
.bi-details p{
    margin: 0;
}
.blogpage-section .fishto-pagination{
    margin-top: 0;
}
.grid-view .bi-details{
    padding: 30px 20px 30px 25px;
}
.grid-view .bi-details h3{
    font-size: 22px;
    margin-bottom: 12px;
}
.grid-view .bi-meta{
    margin-bottom: 7px;
}
.bi-meta span{
    font-size: 16px;
    margin-right: 16px;
}

/*---- Blog Sidebar ---*/
.blog-sidebar{
    position: relative;
    font-family: inherit;
}
.about-me{
    position: relative;
    text-align: center;
    margin: 6px 0 7px;
}
.about-me img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
}
.au-info{
    position: relative;
    margin: 20px 0 0;
}
.au-info h5{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin: 0 0 2px;
}
.au-info span{
    font-size: 18px;
    display: block;
    color: #696969;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    margin: 0 0 9px;
}
.au-info p{
    margin: 0 0 21px;
}
.au-info ul{
    margin: 0;
    padding: 0;
}
.blog-sidebar .widget .au-info ul li,
.au-info ul li{
    margin: 0 10px;
    line-height: .8;
    padding: 0;
    list-style: none;
    display: inline-block;
}
.blog-sidebar .widget .au-info ul li a,
.au-info ul li a{
    color: #696969;
    font-size: 15px;
    display: inline-block;
}
.au-info ul li a:hover{
    color: #412CC5;
}

.blog-sidebar .widget{
    margin: 0 0 40px;
    padding: 34px 40px;
    border: 2px solid #E2EEFF;
}
.blog-sidebar .widget.widget_search{
    padding: 0;
    border: none;
}
.blog-sidebar .widget .widget-title{
    font-size: 24px;
    line-height: 30px;
    color: #222F5A;
    text-align: center;
    text-transform: capitalize;
    padding-bottom: 25px;
    margin: 0 0 29px;
    border-bottom: 2px solid #E2EEFF;
}
.blog-sidebar .woocommerce-product-search [type=search],
.blog-sidebar .search-form [type=search]{
    border: 2px solid #E2EEFF;
}
.blog-sidebar .woocommerce-product-search button,
.blog-sidebar .search-form button{
    background: #412CC5;
    color: #fff;
}
.blog-sidebar .woocommerce-product-search button{
    background: #222F5A;
    color: #fff;
}
.blog-sidebar .search-form button:hover{
    color: #fff;
    background: #F7531E;
}
.src_post{
    position: relative;
    min-height: 70px;
    padding-left: 92px;
    margin: 0 0 20px;
}
.src_post img{
    width: 75px;
    height: 70px;
    position: absolute;
    left: 0;
    top: 0;
}
.src_post p{
    position: relative;
    top: -4px;
    font-size: 12px;
    color: #565872;
    margin: 0 0 -4px;
}
.src_post p i{
    display: inline-block;
    color: #412CC5;
    margin-right: 10px;
}
.src_post a{
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #565872;
}
.src_post a:hover{
    color: #412CC5;
}

.blog-sidebar .widget ul {
    margin: 0;
    padding: 0;
    line-height: .8;
}
.blog-sidebar .widget ul li {
    list-style: none;
    display: inline-block;
    line-height: 40px;
    font-size: 16px;
    color: #222F5A;
    margin: 0 0 13px;
}
.blog-sidebar .widget.widget_categories ul li{
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}
.blog-sidebar .widget ul li a{
    color: inherit;
    position: relative;
}
.blog-sidebar .widget ul li a:hover {
    color: #412CC5;
}
.blog-sidebar .widget ul .children li,
.blog-sidebar .widget ul ul.sub-menu li{
    padding-left: 15px;
}

/*--------------------------------------------------------
/ 11. Single blog Page
/---------------------------------------------------------*/
.singleblog-section{
    position: relative;
    padding: 100px 0;
}
.single_blog{
    position: relative;
    border: 2px solid #E2EEFF;
    padding: 45px 25px 36px;
}
.single_blog .sb-title{
    font-size: 37px;
    line-height: 45px;
    color: #222F5A;
    font-weight: 700;
    margin: 0 0 13px;
}
.single_blog .bi-meta{
    margin: 0 0 28px;
}
.sb_thumb{
    position: relative;
    margin: 0 0 34px;
}
.sb_thumb img{
    max-width: 100%;
    width: auto;
    height: auto
}
.sb_details{
    position: relative;
    margin: 0 0 66px;
}
.sb_details p{
    margin: 0 0 28px;
}
blockquote {
    background: #F2F7FF;
    border: none;
    border-left: 4px solid #412CC5;
    padding: 30px 30px;
    position: relative;
    color: #565872;
    margin: 36px auto 33px;
    position: relative;
}
blockquote:after {
    position: absolute;
    right: 25px;
    bottom: 22px;
    content: "\ed31";
    font-family: 'nss-theme';
    color: #412CC5;
    opacity: .1;
    font-size: 50px;
    line-height: 50px;
}
.sb_details blockquote p {
    margin: 0 0 5px;
}
.sb_details blockquote cite{
    font-size: 16px;
    text-transform: capitalize;
    color: #222F5A;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    margin-top: 10px;
    font-style: normal;
    display: block;
    position: relative;
    padding-left: 30px;
}
.sb_details blockquote cite:after{
    width: 17px;
    height: 3px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 30%;
    background: #1574F6;
    content: '';
}
.sb_details .wp-block-columns{
    margin: 31px 0 29px;
}
.sb_details .wp-block-columns img{
    max-width: 100%;
}
.tags{
    position: relative;
    margin: 5px 0 0;
}
.tags a{
    position: relative;
    z-index: 1;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    color: #565872;
    font-weight: 500;
    text-transform: capitalize;
    height: 32px;
    border-radius: 5px;
    background: #F2F7FF;
    line-height: .8;
    padding: 10px 18px;
    margin: 0 8px 8px 0;
}
.tags a:after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: #412CC5;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -1;
}
.tags a:hover:after {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.tags a:hover{
    color: #fff;
}
.social-share{
    position: relative;
    text-align: right;
}
.social-share a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #F2F7FF;
    color: #fff;
    border-radius: 0;
    text-align: center;
    line-height: 42px;
    font-size: 20px;
    margin-left: 6px;
}
.social-share a.fac{
    background: #446bb9;
}
.social-share a.twi{
    background: #00aced;
}
.social-share a.goo{
    background: #E54841;
}
.social-share a.lin{
    background: #007bb6;
}
.social-share a.tum{
    background: #000000;
}
.social-share a.pin{
    background: #BC1F24;
}
.social-share a.dig{
    background: #1A558E;
}
.social-share a.red{
    background: #FFEBDA;
}
.social-share a:hover {
    border-radius: 50%;
}


/*---- Contact Form ---*/
.comment-form{
    position: relative;
    margin-top: 40px;
    border: 2px solid #E2EEFF;
    padding: 43px 25px 50px;
}
.comment-form h6{
    font-size: 34px;
    color: #222F5A;
    line-height: 40px;
    font-weight: 700;
    margin: 0 0 36px;
}
.comment-form .row{
    border: none;
    margin-top: 0;
    padding: 0;
}
.comment-form input[type="text"], 
.comment-form input[type="email"],  
.comment-form textarea{
    width: 100%;
    height: 60px;
    border: 2px solid #E2EEFF;
    background: transparent;
    border-radius: 0;
    outline: none;
    font-size: 16px;
    line-height: 60px;
    color: #565872;
    font-weight: 400;
    display: inline-block;
    padding: 0 20px;
    margin: 0 0 30px;
}
.comment-form textarea {
    height: 170px;
    resize: none;
    padding-top: 15px;
    line-height: 28px;
    margin-bottom: 21px;
}
.comment-form input[type="text"]::-moz-placeholder, 
.comment-form input[type="email"]::-moz-placeholder, 
.comment-form textarea::-moz-placeholder{
    color: #565872;
    opacity: 1;
}
.comment-form input[type="text"]::-ms-input-placeholder, 
.comment-form input[type="email"]::-ms-input-placeholder, 
.comment-form textarea::-ms-input-placeholder{
    color: #565872;
    opacity: 1;
}
.comment-form input[type="text"]::-webkit-input-placeholder, 
.comment-form input[type="email"]::-webkit-input-placeholder, 
.comment-form textarea::-webkit-input-placeholder{
    color: #565872;
    opacity: 1;
}
.comment-form button{
    outline: none;
    border: none;
}

/*--------------------------------------------------------
/ 12. Contact Page
/---------------------------------------------------------*/
.fishto-map{
    position: relative;
    line-height: .8;
    overflow: hidden;
}
.fishto-map iframe{
    width: 100%;
    height: 420px;
    border: none;
}
.grayscale iframe{
    -webkit-filter: grayscale(100%); 
    -moz-filter: grayscale(100%); 
    -ms-filter: grayscale(100%); 
    filter: grayscale(100%);
}
.contact-setion{
    position: relative;
    padding: 100px 0;
}
.contact-box{
    position: relative;
    background: #F2F7FF;
    padding: 30px 20px 30px 140px;
    margin: 0 0 30px;
}
.contact-box i{
    width: 88px;
    height: 88px;
    background: #F7531E;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 35px;
    line-height: 88px;
    color: #fff;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.contact-box h5{
    font-size: 20px;
    line-height: 26px;
    color: #222F5A;
    font-weight: 700;
    margin: 0 0 8px;
}
.contact-box p{
    font-size: 18px;
    color: #0D1F35;
    margin: 0;
}
.contact-box:hover i{
    background: #412cc5;
}
.mt-60{
    margin-top: 60px;
}
.ci-info{
    position: relative;
    padding-right: 70px;
}
.ci-info .sub_title{
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    color: #412CC5;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.ci-info .sec_titles{
    font-size: 28px;
    line-height: 42px;
}
.ci-info .sec_desc{
    line-height: 28px;
}

/*---- Contact Form ---*/
.contact-form{
    position: relative;
}
.contact-form input[type="text"], 
.contact-form input[type="email"], 
.contact-form input[type="url"], 
.contact-form input[type="number"], 
.contact-form textarea{
    width: 100%;
    height: 60px;
    border: 2px solid #EFEFEF;
    background: transparent;
    border-radius: 0;
    outline: none;
    font-size: 16px;
    line-height: 60px;
    color: #565872;
    font-weight: 400;
    display: inline-block;
    padding: 0 20px;
    margin: 0 0 25px;
}
.contact-form textarea {
    height: 150px;
    resize: none;
    padding-top: 13px;
    line-height: 28px;
    margin-bottom: 30px;
}
.contact-form input[type="text"]::-moz-placeholder, 
.contact-form input[type="email"]::-moz-placeholder, 
.contact-form input[type="url"]::-moz-placeholder, 
.contact-form input[type="number"]::-moz-placeholder, 
.contact-form textarea::-moz-placeholder{
    color: #565872;
    opacity: 1;
}
.contact-form input[type="text"]::-ms-input-placeholder, 
.contact-form input[type="email"]::-ms-input-placeholder, 
.contact-form input[type="url"]::-ms-input-placeholder, 
.contact-form input[type="number"]::-ms-input-placeholder, 
.contact-form textarea::-ms-input-placeholder{
    color: #565872;
    opacity: 1;
}
.contact-form input[type="text"]::-webkit-input-placeholder, 
.contact-form input[type="email"]::-webkit-input-placeholder, 
.contact-form input[type="url"]::-webkit-input-placeholder, 
.contact-form input[type="number"]::-webkit-input-placeholder, 
.contact-form textarea::-webkit-input-placeholder{
    color: #565872;
    opacity: 1;
}
.contact-form input[type="submit"] {
    display: inline-block;
    height: 60px;
    font-size: 15px;
    line-height: 60px;
    color: #fff;
    border: none;
    text-align: center;
    text-transform: capitalize;
    font-weight: 500;
    background: #412CC5;
    width: 100%;
    border-radius: 3px;
    outline: none;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}
.contact-form input[type="submit"]:hover{
    background: #F9CA1C;
}
.fisto_loader{
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 15px;
    text-align: center;
    display: none;
}
.fisto_con_message{
    color: #412CC5;
    text-align: center;
    background: transparent;
    border: 1px solid #E2EEFF;
    padding: 10px 15px;
    margin-top: 30px;
    display: none;
}
.contact-form input.reqError,
.contact-form .reqError{
    border-color: #f00;
}

/*--------------------------------------------------------
/ 13. Faq Page
/---------------------------------------------------------*/
.faq-setion{
    position: relative;
    padding: 100px 0;
}
.faq-area{
    position: relative;
}
.singlefaq{
    position: relative;
    padding: 0;
    margin: 0 0 0;
}
.singlefaq .card-header {
    position: relative;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}
.singlefaq .card-header .btn {
    text-decoration: none;
    font-size: 24px;
    line-height: 28px;
    color: #222222;
    font-weight: 500;
    border: none;
    font-family: 'Rubik', sans-serif;
    border-top: 1px solid transparent;
    outline: none;
    width: 100%;
    text-align: left;
    letter-spacing: 0;
    padding: 24px 80px 27px 45px;
    margin: 0;
    position: relative;
    background: rgba(65, 44, 197, .1);
    border-radius: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.singlefaq .card-header .btn.collapsed {
    background: transparent;
    border-color: rgba(36, 63, 77, .2);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.singlefaq .card-header .btn:before{
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    width: 10px;
    height: 10px;
    background: #412CC5;
    border-radius: 50%;
    content: "";
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.singlefaq .card-header .btn.collapsed:after{
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 0;
    line-height: 48px;
    font-family: 'ElegantIcons';
    content: "\4c";
    font-size: 20px;
    color: #333333;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.singlefaq .card-header .btn:after{
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    width: 48px;
    height: 48px;
    background: #412CC5;
    border-radius: 0;
    line-height: 48px;
    font-family: 'ElegantIcons';
    content: "\4b";
    font-size: 20px;
    color: #fff;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.singlefaq .card-body {
    padding: 19px 45px 33px;
    font-size: 16px;
    color: #243F4D;
    line-height: 30px;
    margin: 0;
}
.singlefaq .card-body p{
    margin: 0;
}
/*--------------------------------------------------------
/ 14. 404 Page
/---------------------------------------------------------*/
.section-404{
    position: relative;
    padding: 120px 0;
    background-position: center center;
    background-size: auto;
    background-repeat: no-repeat;
    background-color: #FFF2F2;
}
.content_404{
    position: relative;
    margin: 0 -55px;
}
.content_404 h1 {
    font-size: 300px;
    line-height: .8;
    color: #222F5A;
    position: relative;
    margin-bottom: 17px;
}
.content_404 h1 span {
    font-size: 266px;
    color: #412CC5;
    position: absolute;
    left: 0;
    top: 14px;
    right: 0;
    margin: 0 auto;
}
.content_404 h2 {
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 12px;
}
.content_404 p {
    color: #222F5A;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 35px;
}
.content_404 a{
    display: inline-block;
    position: relative;
    color: #412CC5;
    font-size: 22px;
    line-height: .8;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 52px;
}
.content_404 a:after {
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #412CC5;
    content: '';
    transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
}
.content_404 a:hover:after {
    width: 0%;
    left: auto;
    right: 0;
}
.content_404 form{
    position: relative;
}
.content_404 input[type="search"]{
    width: 100%;
    height: 55px;
    background: #fff;
    border-radius: 30px;
    font-size: 17px;
    line-height: 55px;
    color: #565872;
    padding: 0 30px;
    border: none;
    outline: none;
}
.content_404 input[type="search"]::-moz-placeholder{
    color: #565872;
    opacity: 1;
}
.content_404 input[type="search"]::-ms-input-placeholder{
    color: #565872;
    opacity: 1;
}
.content_404 input[type="search"]::-webkit-input-placeholder{
    color: #565872;
    opacity: 1;
}
.content_404 button{
    width: 40px;
    height: 40px;
    background: #412CC5;
    border-radius: 50%;
    border: none;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    outline: none;
    color: #ffffff;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.content_404 button:hover{
    background: #F7531E;
    color: #fff;
}

/*--------------------------------------------------------
/ 15. Preloader
/---------------------------------------------------------*/
#back-to-top {
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 45px;
    text-align: center;
    background: #412CC5;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    border-radius: 50%;
    cursor: pointer;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(26, 8, 119, 0.24);
    -moz-box-shadow:    0px 20px 30px 0px rgba(26, 8, 119, 0.24);
    box-shadow:         0px 20px 30px 0px rgba(26, 8, 119, 0.24);
}
#back-to-top:hover i {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode:both;
    animation-iteration-count: infinite;
}
#back-to-top i:before {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
#back-to-top:hover i:before {
    animation: iconTranslateY 0.5s forwards;
}
@keyframes iconTranslateY {
    49% {
        transform: translateY(-100%)
    }
    50% {
        opacity: 0;
        transform: translateY(100%)
    }
    51% {
        opacity: 1
    }
}
/*--- Preloader ---*/
.preloader{
    width: 100%;
    position: fixed;
    overflow: hidden;
    height: 100%;
    background: #222F5A;
    left: 0;
    top: 0;
    z-index: 99999;
}
.circle{
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    background: #F9CA1C;
}
.circle:after{
    content: "LOADING";
    position: absolute;
    top: 100px;
    width: 250px;
    color: #F9CA1C;
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 5px;
    line-height: 30px;
    -webkit-animation: fadeinout .5s ease-in-out alternate infinite;
    animation: fadeinout .5s ease-in-out alternate infinite;
}
.circle:before{
    content: "";
    position: absolute;
    top: 125px;
    left: -1px;
    width: 252px;
    height: 126px;
    background-color: #222F5A;
}
.circle-inner{
    position: relative;
    top: 30px;
    left: 30px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background-color: #222F5A;
    -webkit-animation: inneranim .5s ease-in-out alternate infinite;
    animation: inneranim .5s ease-in-out alternate infinite;
}
.circle-cutter{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    -webkit-transform-origin: top top;
    -webkit-animation: animrotate 1s ease-in-out alternate infinite;
    transform-origin: top top;
    animation: animrotate 1s ease-in-out alternate infinite;
}
.circle-cutter:after{
    content: "";
    position: absolute;
    top: 125px;
    left: -1px;
    width: 252px;
    height: 126px;
    background-color: #222F5A;
}
@-webkit-keyframes inneranim{
    0%{
        top: 30px;
        left: 30px;
        width: 190px;
        height: 190px;
    }
    100%{
        top: 3px;
        left: 3px;
        width: 244px;
        height: 244px;
    }
}
@-webkit-keyframes animrotate{
    0%{
        -webkit-transform: rotate(160deg);
    }
    100%{
        -webkit-transform: rotate(-160deg);
    }
}
@-webkit-keyframes fadeinout{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
.submenu-toggler{
    display: none;
}
.fix-header{
    background: #fff;
    border-color: #fff;
    left: 0;
    position: fixed;
    right: 0;
    top: -1px;
    width: 100%;
    z-index: 99;
    transition: all 0.1s ease-out;
    box-shadow: 0px 13px 15px rgba(0,0,0,0.03);
    -webkit-box-shadow: 0px 13px 15px rgba(0,0,0,0.03);
    -moz-box-shadow: 0px 13px 15px rgba(0,0,0,0.03);
}
.h2.fix-header {
    background: #222F5A;
    border: none;
}