@charset "UTF-8";


:root {
    --color-primary: #D62F29;
    --color-primary-dark: #C82333;
    --color-primary-light: #F87171;

    --color-secondary: #012B55;
    --color-secondary-dark: #012955;
    --color-secondary-light: #012B55;
}

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

	Author: Webstrot Butcher
	Copyright © 2022-23

---------------------------------------

    CSS INDEX
    ===================

    1. BODY
	2. CUSTOM CSS / A
	3. PRELOADER
	4. NAVIGATION
	5. SLIDER

---------------------------------------*/
/*--------------
1.Theme default CSS
--------------------------*/
/* ....................................
1.1 Common CSS
.......................................*/
/*1.Theme default CSS
--------------------------*/
body,
html {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #333;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

a {
    color: #333;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

i:before {
    margin-left: 0 !important;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    color: #111;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Montserrat", sans-serif;
    line-height: 1.1;
    font-weight: 500;
    color: #222222;
    margin: 0;
    padding: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #222222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

h1,
.h1 {
    font-size: 65px;
}

h2,
.h2 {
    font-size: 55px;
}

h3,
.h3 {
    font-size: 45px;
}

h4,
.h4 {
    font-size: 36px;
}

h5,
.h5 {
    font-size: 30px;
}

h6,
.h6 {
    font-size: 28px;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

p {
    margin: 0;
    color: #797979;
    font-size: 16px;
}

.sec-title {
    font-size: 22px;
    padding: 30px 0px;
}

input,
select,
button,
textarea {
    outline: none;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

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

.float_left {
    float: left;
    width: 100%;
}

.p-0 {
    padding: 0 !important;
}

.border-none {
    border: none !important;
}

.ps-rel {
    position: relative;
}

.pe-0 {
    padding-right: 0px;
}

.plr-50 {
    padding: 0px 50px;
}

a.button-btn,
button.button-btn {
    padding: 0px 55px;
    display: inline-block;
    background-color: var(--color-primary);
    color: #fff;
    line-height: 50px;
    border-radius: 30px;
    text-align: left;
    padding-left: 22px;
    text-transform: capitalize;
    position: relative;
    z-index: 99;
    overflow: hidden;
    border: none;
    text-transform: uppercase;
}

a.button-btn:before,
button.button-btn:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -4px;
    background-color: #b3183f;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: -1;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

a.button-btn:hover,
button.button-btn:hover {
    color: #fff;
    border-color: #111;
}

a.button-btn:hover:before,
button.button-btn:hover:before {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

a.button-btn:hover span,
button.button-btn:hover span {
    background-color: #e12454;
    color: #111;
}

a.button-btn span,
button.button-btn span {
    position: absolute;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #111;
    text-align: center;
    right: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--color-primary);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.mobile-menu-wrapper .toggle-main-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

#sidebar {
    position: fixed;
    display: block;
    height: 100vh;
    top: 0;
    left: -500px;
    width: 300px;
    background-color: var(--color-primary);
    overflow: scroll;
    overflow-x: hidden;
    z-index: 99999;
    -webkit-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

#sidebar .sidebar_logo {
    float: left;
    width: 100%;
    background: #fff;
    padding: 24px;
}

#sidebar.open {
    left: 0;
}

#sidebar #cssmenu {
    width: 280px;
}

#sidebar #cssmenu ul li {
    border-bottom: 1px solid #ffffff61;
    position: relative;
}

#sidebar #cssmenu ul li a {
    padding: 10px 20px;
    display: inline-block;
    width: 100%;
    text-transform: capitalize;
}

#sidebar #cssmenu ul .has-sub ul {
    display: none;
}

#sidebar #cssmenu ul .has-sub ul li {
    border-bottom: none;
    border-top: 1px solid #ffffff61;
}

#sidebar #cssmenu ul .has-sub ul li a {
    padding: 10px 40px;
}

#sidebar #cssmenu ul .has-sub:before {
    content: '';
    display: block;
    position: absolute;
    top: 20px;
    right: 25px;
    background-color: #fff;
    height: 2px;
    width: 10px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

#sidebar #cssmenu ul .has-sub:after {
    content: '';
    display: block;
    position: absolute;
    top: 16px;
    right: 29px;
    background-color: #fff;
    height: 10px;
    width: 2px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

#sidebar #cssmenu ul .open:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#sidebar #cssmenu ul .open:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.page2-btn {
    padding: 7px 25px;
    background-color: #ccc;
    color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    z-index: 1111;
}

.page2-btn:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #c1c1c1;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: -1;
}

.page2-btn:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #c1c1c1;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: -1;
}

.page2-btn:hover {
    color: #fff !important;
}

.page2-btn:hover:before {
    -webkit-transform: translateY(-48%);
    transform: translateY(-48%);
    z-index: -1;
}

.page2-btn:hover:after {
    -webkit-transform: translateY(48%);
    transform: translateY(48%);
    z-index: -8;
}

.bg-change {
    background-color: #c1c1c1;
}

.bg-change:before {
    background-color: #111;
}

.bg-change::after {
    background-color: #111;
}

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

.page-bg {
    background-color: #f2f5fc;
}

.wrapper {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.wrapper .waves {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(214, 214, 214, 0.3);
    opacity: 0;
    border-radius: 100%;
    right: -75px;
    bottom: -75px;
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.wrapper .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wrapper .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.wrapper .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

@-webkit-keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
    }
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
    }
}

.animate-top-y {
    -webkit-animation-name: top-y;
    animation-name: top-y;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes top-y {
    0% {
        transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
    }
}

@keyframes top-y {
    0% {
        transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
    }
}

@-webkit-keyframes rotate {

    20%,
    80% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

@keyframes rotate {

    20%,
    80% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

.overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.9);
}

.overlay-content {
    position: relative;
    top: 46%;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: white;
}

.overlay .closebtn:hover {
    color: #ccc;
}

.overlay input[type=text] {
    padding: 15px;
    font-size: 17px;
    border: none;
    float: left;
    width: 80%;
    background: #fff;
}

.overlay input[type=text]:hover {
    background: #f1f1f1;
}

.overlay button {
    float: left;
    width: 20%;
    padding: 15px;
    background: #ddd;
    font-size: 17px;
    border: none;
    cursor: pointer;
}

.overlay button:hover {
    background: #bbb;
}

.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: none;
    border: none;
}

/* width */
.product-filter-main-wrapper .tab::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.product-filter-main-wrapper .tab::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.product-filter-main-wrapper .tab::-webkit-scrollbar-thumb {
    background: #ccc;
}

/* Handle on hover */
.product-filter-main-wrapper .tab::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

.mar-left {
    padding-left: 40px;
}

.wrapper {
    display: inline-block;
    position: absolute;
    top: 51%;
    left: 58%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.wrapper .waves {
    position: absolute;
    width: 160px;
    height: 160px;
    background: rgba(214, 214, 214, 0.78);
    opacity: 0;
    border-radius: 100%;
    right: -35px;
    bottom: -73px;
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.wrapper .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wrapper .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.wrapper .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
    }
}

.width {
    width: 100%;
    float: left;
}

/*-- Preloader css start --*/
#preloader {
    background-color: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2147483647;
    width: 100%;
    height: 100%;
}

#status {
    background-position: center center;
    background-repeat: no-repeat;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

/*-- Preloader css End --*/
/* ....................................
1.1 Header CSS
.......................................*/
/*--------
header css
--------*/
.main-header-wrapper1 .open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 {
    -webkit-box-shadow: 0px 1px 5px #cccccc6e;
    box-shadow: 0px 1px 5px #cccccc6e;
    background-color: #fff;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .index1-logo {
    width: 200px;
    float: left;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav {
    padding: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul li {
    position: relative;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul li a {
    padding: 0px 10px;
    font-size: 13px;
    color: #333;
    font-weight: 400;
    text-transform: uppercase;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul li a span {
    font-size: 10px;
    margin-left: 3px;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul li a .fa-shopping-cart {
    font-size: 16px;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul li a:hover {
    color: var(--color-primary);
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul li .dropdown-items {
    position: absolute;
    background-color: #fff;
    z-index: 999;
    top: 88px;
    display: none;
    width: 250px;
    left: 0;
    border-radius: 8px;
    padding: 20px 0px;
    -webkit-box-shadow: 0 1px 6px 0 #20212447;
    box-shadow: 0 1px 6px 0 #20212447;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul li .dropdown-items li {
    padding: 3px 8px;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul li .dropdown-items li a {
    color: #797979;
    font-size: 13px;
    font-weight: 400;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul li .dropdown-items li a span {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul li .dropdown-items li .sub-dropdown {
    position: absolute;
    left: 250px;
    padding: 20px 0px;
    top: 0;
    width: 250px;
    border-radius: 8px;
    background-color: #fff;
    display: none;
    -webkit-box-shadow: 2px 0 10px #0000001a;
    box-shadow: 2px 0 10px #0000001a;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul li .dropdown-items li .sub-dropdown li {
    padding: 3px 8px;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul li .dropdown-items li .sub-dropdown li a {
    color: #797979;
    font-size: 13px;
    display: inline-block;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul li .dropdown-items li .sub-dropdown li:hover a {
    color: var(--color-primary);
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul li .dropdown-items li:hover:after {
    display: none;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul li .dropdown-items li:hover a {
    color: var(--color-primary);
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul li .dropdown-items li:hover .sub-dropdown {
    display: block;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 {
    background-color: var(--color-primary);
    height: 40px;
    line-height: 40px;
    border-radius: 30px;
    margin-left: 20px;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 a {
    color: #fff;
    padding: 0px 17px;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 a:hover {
    color: #fff;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 {
    top: 64px;
    left: -224px;
    width: 300px;
    padding: 18px 13px;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 li {
    border-bottom: 1px solid #ccc;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 li span {
    display: inline-block;
    font-size: 13px;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 li a {
    display: inline-block;
    float: right;
    font-weight: 600;
    color: #333;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 .cart_list {
    width: 100%;
    float: left;
    padding: 4px 0px;
    border-bottom: 1px solid #ccc;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 .cart_list .select_cart {
    width: 50%;
    float: left;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 .cart_list .select_cart a {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    float: left;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 .cart_list .select_cart span {
    color: #111;
    font-size: 13px;
    padding-top: 3px;
    padding-left: 11px;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 .cart_list .select_img {
    position: relative;
    width: 50%;
    float: left;
    padding-right: 13px;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 .cart_list .select_img img {
    width: 88px;
    float: right;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 .cart_list .select_img .close_btn {
    position: absolute;
    right: 32px;
    top: 33px;
    cursor: pointer;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 .cart_list .select_img .close_btn i {
    color: #111;
    background: #fff;
    padding: 7px 8px;
    font-size: 11px;
    border-radius: 30px;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 .sub_total {
    width: 100%;
    float: left;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 .sub_total p {
    color: #111111;
    padding: 0px 0px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 .sub_total p span {
    float: right;
    color: #111111;
    font-size: 13px;
    font-weight: 600;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 .cart_btn {
    width: 100%;
    float: left;
    margin: 12px 0px;
    border-bottom: none;
    margin-bottom: 0;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 .cart_btn a {
    display: inline-block;
    padding: 0px 16px;
    background-color: #111111;
    color: #fff;
    height: 40px;
    border-radius: 24px;
    margin-left: 8px;
    font-size: 11px;
    float: left;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-click1 .menu-open1 .cart_btn a:hover {
    background-color: var(--color-primary);
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-open4 {
    width: 600px !important;
    padding: 30px !important;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-open4 .megamenu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 0px 13px;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-open4 .megamenu-wrapper .megamenu-list {
    width: 33%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-open4 .megamenu-wrapper .megamenu-list h5 {
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 11px;
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-open4 .megamenu-wrapper .megamenu-list a {
    color: #333;
    padding: 0px;
    font-size: 13px;
    font-weight: 400;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 nav ul .menu-open4 .megamenu-wrapper .megamenu-list a:hover {
    color: fff;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .dropdown-items li .sub-dropdown {
    border-bottom: 2px solid #ccc;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .top-header-wrapper {
    border-bottom: 1px solid #f1f2f2;
    padding-bottom: 10px;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .top-header-wrapper .contact-details li {
    display: inline-block;
    padding-top: 10px;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .top-header-wrapper .contact-details li a {
    font-family: 'Montserrat', sans-seirf;
    font-size: 13px;
    color: #a6a6a6;
    padding-right: 25px;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .top-header-wrapper .social-list {
    float: right;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .top-header-wrapper .social-list li {
    display: inline-block;
    padding-left: 4px;
    padding-top: 10px;
}

.main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .top-header-wrapper .social-list li a {
    font-size: 13px;
    color: #a6a6a6;
}

.main-header-wrapper1 .sb-main-header1 .menu-fixed .top-header-wrapper {
    display: none;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper {
    background-color: #ffffff;
    padding: 15px 0px;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons {
    padding-top: 13px;
    padding-right: 13px;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul {
    width: 100%;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn {
    text-align: center;
    display: inline-block;
    position: relative;
    background-color: var(--color-primary);
    padding: 0px 17px;
    height: 40px;
    line-height: 40px;
    border-radius: 30px;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn a {
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
}


.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn img {
    margin-right: 8px;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn .user-text {
    width: 300px;
    position: absolute;
    top: 56px;
    right: 0px;
    float: left;
    z-index: 99;
    text-align: left;
    background: #fff;
    border-radius: 13px;
    padding: 18px 13px;
    display: none;
    overflow: hidden;
    -webkit-box-shadow: 8px 0px 29px #0000000a;
    box-shadow: 8px 0px 29px #0000000a;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn .user-text p {
    font-size: 13px;
    line-height: initial;
    border-bottom: 1px solid #ccc;
    padding-bottom: 13px;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn .user-text p span {
    display: inline-block;
    float: right;
    font-weight: 600;
    color: #333;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn .user-text .cart-list {
    width: 50%;
    float: left;
    padding-top: 19px;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn .user-text .cart-list h5 {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    float: left;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn .user-text .cart-list h5 span {
    color: #111;
    font-size: 13px;
    padding-top: 7px;
    display: block;
    font-weight: 400;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn .user-text .cart-right {
    position: relative;
    width: 50%;
    float: left;
    padding-top: 4px;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn .user-text .cart-right img {
    width: 88px;
    float: right;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn .user-text .cart-right .close_btn {
    position: absolute;
    right: 32px;
    top: 33px;
    cursor: pointer;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn .user-text .cart-right .close_btn i {
    color: #111;
    background: #fff;
    padding: 7px 8px;
    font-size: 11px;
    border-radius: 30px;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn .user-text .total {
    width: 100%;
    float: left;
    border-top: 1px solid #ccc;
    padding-top: 11px;
    margin-top: 13px;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn .user-text .total p {
    color: #111111;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn .user-text .total p span {
    float: right;
    color: #111111;
    font-size: 13px;
    font-weight: 600;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn .user-text .btn-cart {
    width: 100%;
    float: left;
    margin: 12px 0px;
    border-bottom: none;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn .user-text .btn-cart a {
    display: inline-block;
    padding: 0px 16px;
    background-color: #111111;
    color: #fff;
    height: 40px;
    border-radius: 24px;
    margin-left: 8px;
    font-size: 11px;
    float: left;
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .login-btn .user-text .btn-cart a:hover {
    background-color: var(--color-primary);
}

.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul li {
    display: inline-block;
}

.main-header-wrapper1 #sidebar #cssmenu ul li .social-icon li {
    background-color: #ff9e21 !important;
}

.main-header-wrapper1 #sidebar #cssmenu ul li .social-icon li a {
    color: #fff;
}

.mobile-menu-wrapper .toggle-main-wrapper {
    display: block;
}

.mobile-menu-wrapper .toggle-main-wrapper .line {
    width: 30px;
    height: 3px;
    background-color: #111;
    display: block;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.mega-menu {
    width: 700px !important;
    padding: 20px 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    left: -330px !important;
}

.mega-menu ul {
    display: block !important;
}

.index1-slider-wrapper {
    background-image: url(../images/template/slider.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0px 0px;
    width: 100%;
    float: left;
    position: relative;
}

.index1-slider-wrapper .slider-caption h4 {
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    max-width: 430px;
    font-weight: 700;
    line-height: 50px;
    text-shadow: 0px 3px 6px #111;
}

.index1-slider-wrapper .slider-caption .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border-radius: 30px;
    line-height: 50px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.index1-slider-wrapper .slider-caption .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.index1-slider-wrapper .slider-caption .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.index1-slider-wrapper .slider-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 10px;
    margin-top: 100px;
}

.index1-slider-wrapper .slider-item ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.index1-slider-wrapper .slider-item ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #271c22ad;
    padding: 8px;
    border-radius: 8px;
}

.index1-slider-wrapper .slider-item ul li .item-text {
    padding-left: 24px;
}

.index1-slider-wrapper .slider-item ul li .item-text h4 {
    font-size: 20px;
    color: #fff;
}

.index1-slider-wrapper .slider-item ul li .item-text p {
    color: #fff;
    padding-top: 10px;
}

.index1-slider-wrapper .slider-item ul li+li {
    margin-left: 20px;
}

.index2-slider-wrapper {
    background-image: url(../images/index2/slider.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 280px 0px 225px;
    width: 100%;
    float: left;
    position: relative;
}

.index2-slider-wrapper .slider-caption {
    max-width: 993px;
    margin: auto;
    text-align: center;
    padding-top: 320px;
}

.index2-slider-wrapper .slider-caption p {
    font-size: 16px;
    color: #fff;
}

.index2-slider-wrapper .slider-caption .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border-radius: 30px;
    line-height: 50px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.index2-slider-wrapper .slider-caption .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.index2-slider-wrapper .slider-caption .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.index1-listing-slider-wrapper {
    background-image: url(../images/listing.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 95px 0px;
}

.index1-listing-slider-wrapper .slider-text h4 {
    color: #fff;
    font-weight: 600;
}

.index1-listing-slider-wrapper .slider-text ul {
    padding-top: 20px;
}

.index1-listing-slider-wrapper .slider-text ul li {
    display: inline-block;
    color: #fff;
}

.index1-listing-slider-wrapper .slider-text ul li a {
    color: #fff;
}

.index2-main-header {
    background-color: #2f2f2f;
}

.index2-main-header .sb-main-header1 .menu-item-wrapper3 {
    background-color: #2f2f2f;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.index2-main-header .sb-main-header1 .menu-item-wrapper3 .top-header-wrapper {
    background-color: #2f2f2f;
    border-bottom: none;
}

.index2-main-header .sb-main-header1 .menu-item-wrapper3 .index2-menu-header {
    background-color: #fff;
    width: 100%;
    float: left;
    padding: 0px 30px;
}

.index2-main-header .sb-main-header1 .menu-fixed {
    -webkit-box-shadow: 0px 1px 5px #cccccc6e;
    box-shadow: 0px 1px 5px #cccccc6e;
    background-color: #fff;
}

/* ....................................
1.1 Inner CSS
.......................................*/
.inner-slider-wrapper {
    background-image: url(../images/inner-banner.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    float: left;
}

.inner-slider-wrapper .inner-caption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 60px;
}

.inner-slider-wrapper .inner-caption h4 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.inner-slider-wrapper .inner-caption img {
    margin-left: -21px;
}

.inner-slider-wrapper .breadcrumb {
    list-style: none;
    padding-top: 18px;
    background-color: transparent;
    text-align: center;
    padding-bottom: 60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.inner-slider-wrapper .breadcrumb li {
    position: relative;
}

.inner-slider-wrapper .breadcrumb li a {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
}

.inner-slider-wrapper .breadcrumb .active {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
}

.inner-slider-wrapper .breadcrumb li+li {
    margin-left: 5px;
}

.inner-slider-wrapper .breadcrumb li+li:before {
    color: var(--color-primary);
    content: "\f101";
    font-family: 'FontAwesome';
    font-size: 16px;
    padding: 0 3px;
}

.inner-slider-wrapper .meat {
    position: absolute;
    left: 45%;
    top: 75%;
}

.about-sec-wrapper .about-list-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
}


.about-sec-wrapper .about-list-wrapper .a-rit h5 {
    font-size: 20px;
    padding-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    color: black;
}

.about-sec-wrapper .about-list-wrapper .a-rit p {
    font-size: 13px;
    color: #5f5f5f;
}

.our-mission-wrapper {
    padding-bottom: 100px;
    background-image: url(../images/section-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.our-mission-wrapper .mission-main-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.our-mission-wrapper .mission-main-box .mission-inner {
    width: 31.33%;
    background-color: #fff;
    padding: 20px;
    -webkit-box-shadow: 0 2px 9px 0px #220c2b1a;
    box-shadow: 0 2px 9px 0px #220c2b1a;
    border-radius: 8px;
}

.our-mission-wrapper .mission-main-box .mission-inner h5 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
}

.our-mission-wrapper .mission-main-box .mission-inner p {
    font-size: 13px;
    color: #5f5f5f;
    padding-top: 5px;
}

.our-mission-wrapper .mission-main-box .mission-inner .mission-img {
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.our-mission-wrapper .mission-main-box .mission-inner .mission-img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.our-mission-wrapper .mission-main-box .mission-inner .mission-img:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.location-maib-wrapper {
    position: relative;
}

.location-maib-wrapper .cont-store {
    background-image: url(../images/location1.png);
    background-position: top center;
    padding: 130px 0px;
}

.location-maib-wrapper .cont-store .request-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.location-maib-wrapper .cont-store .request-list .r-text {
    width: 20%;
}

.location-maib-wrapper .cont-store .request-list .r-text h4 a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding-top: 14px;
    margin-bottom: 0;
    color: #fff;
}

.location-maib-wrapper .cont-store .request-list .r-list {
    width: 9%;
    font-size: 40px;
    color: #fff;
}

.location-maib-wrapper .map-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.location-maib-wrapper .map-part .right-map {
    padding-top: 60px;
}

.location-maib-wrapper .map-part .right-map h4 {
    color: black;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
}

.location-maib-wrapper .loaction-map {
    width: 66%;
    position: absolute;
    bottom: -6px;
    z-index: -1;
}

.location-maib-wrapper .loaction-map iframe {
    width: 100%;
    height: 430px;
}

.inner-page-main-wrapper .side-bar-strip {
    padding: 24px;
    background: #fff;
    margin-bottom: 40px;
    -webkit-box-shadow: 0px 0px 5px #02020214;
    box-shadow: 0px 0px 5px #02020214;
}

.inner-page-main-wrapper .side-bar-strip h4 {
    font-size: 20px;
    padding-bottom: 10px;
    color: var(--color-primary);
}

.inner-page-main-wrapper .side-bar-strip .input-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.inner-page-main-wrapper .side-bar-strip .input-search input {
    padding: 13px;
    width: 85%;
    border: 1px solid #efefef;
}

.inner-page-main-wrapper .side-bar-strip .input-search button {
    padding: 12px 20px;
    border: 1px solid #efefef;
    background: #efefef;
}

.inner-page-main-wrapper .side-bar-strip .order_details {
    width: 100%;
}

.inner-page-main-wrapper .side-bar-strip .order_details p {
    padding-bottom: 15px;
}

.inner-page-main-wrapper .side-bar-strip .order_details p span {
    display: inline-block;
    float: right;
    font-weight: 600;
}

.inner-page-main-wrapper .side-bar-strip .order_details h3 {
    padding: 18px 0px;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    font-size: 18px;
}

.inner-page-main-wrapper .side-bar-strip .order_details h3 span {
    display: inline-block;
    float: right;
}

.inner-page-main-wrapper .side-bar-strip .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border-radius: 30px;
    line-height: 50px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.inner-page-main-wrapper .side-bar-strip .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.inner-page-main-wrapper .side-bar-strip .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.inner-page-main-wrapper .side-bar-strip .side-accordian .accordion-button span {
    display: inline-block;
    margin-right: 20px;
}

.inner-page-main-wrapper .side-bar-strip .side-accordian .accordion-button:focus {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.inner-page-main-wrapper .side-bar-strip .side-accordian .accordion-button:not(.collapsed) {
    color: #4285f4;
    background-color: #ffffff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.inner-page-main-wrapper .side-bar-strip .side-accordian .accordion-button:after {
    background-image: none;
}

.inner-page-main-wrapper .side-bar-strip .side-accordian .accordion-item {
    margin-top: 0px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    margin-bottom: 0;
}

.inner-page-main-wrapper .side-bar-strip .side-accordian .accordion-item .accordion-header button {
    position: relative;
    color: #5f5f5f;
}

.inner-page-main-wrapper .side-bar-strip .side-accordian .accordion-item .accordion-header button:before {
    content: '';
    text-align: center;
    background: #5f5f5f;
    font-size: 14px;
    width: 13px;
    height: 1px;
    line-height: 24px;
    display: block;
    position: absolute;
    right: 14px;
}

.inner-page-main-wrapper .side-bar-strip .side-accordian .accordion-item .accordion-header button:after {
    content: '';
    text-align: center;
    background: #5f5f5f;
    font-size: 14px;
    width: 1px;
    height: 13px;
    line-height: 24px;
    display: block;
}

.inner-page-main-wrapper .side-bar-strip .side-accordian .accordion-item .accordion-header button:not(.collapsed):after {
    display: none;
}

.inner-page-main-wrapper .side-bar-strip .side-accordian .accordion-item .accordion-header button img {
    padding-bottom: 0;
    padding-right: 13px;
}

.inner-page-main-wrapper .side-bar-strip .side-accordian .accordion-item .accordion-collapse .accordion-body p {
    font-size: 13px;
}

.inner-page-main-wrapper .side-bar-strip .side-accordian ul li {
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 50px;
}

.inner-page-main-wrapper .side-bar-strip .side-accordian ul li a {
    display: inline-block;
    width: 100%;
}

.inner-page-main-wrapper .side-bar-strip .side-accordian ul li a span {
    display: inline-block;
    text-align: right;
    float: right;
}

.inner-page-main-wrapper .side-bar-strip .side-accordian ul li a span svg {
    width: 50px;
    height: 50px;
}

.inner-page-main-wrapper .side-bar-strip .side-accordian ul li a:hover {
    color: var(--color-primary);
}

.inner-page-main-wrapper .side-bar-strip .side-accordian ul li a:hover span svg {
    fill: var(--color-primary);
}

.inner-page-main-wrapper .side-bar-strip .side-main-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
}

.inner-page-main-wrapper .side-bar-strip .side-main-box .side-img-box {
    width: 150px;
}

.inner-page-main-wrapper .side-bar-strip .side-main-box .side-img-box img {
    padding-bottom: 0;
}

.inner-page-main-wrapper .side-bar-strip .side-main-box .side-img-content {
    padding-left: 20px;
}

.inner-page-main-wrapper .side-bar-strip .side-main-box .side-img-content h4 {
    padding-bottom: 4px;
}

.inner-page-main-wrapper .side-bar-strip .side-main-box .side-img-content h4 a {
    font-size: 20px;
    font-weight: 600;
}

.inner-page-main-wrapper .side-bar-strip .side-main-box .side-img-content h4 a:hover {
    color: var(--color-primary);
}

.inner-page-main-wrapper .side-bar-strip .side-main-box .side-img-content h5 {
    padding-bottom: 4px;
}

.inner-page-main-wrapper .side-bar-strip .side-main-box .side-img-content h5 a {
    font-size: 18px;
    font-weight: 700;
}

.inner-page-main-wrapper .side-bar-strip .side-main-box .side-img-content h5 a:hover {
    color: var(--color-primary);
}

.inner-page-main-wrapper .side-bar-strip .side-main-box .side-img-content .star-review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.inner-page-main-wrapper .side-bar-strip .side-main-box .side-img-content .star-review li a {
    color: #ffd700;
    font-size: 14px;
}

.inner-page-main-wrapper .side-bar-strip .side-main-box .side-img-content .star-review li+li {
    margin-left: 8px;
}

.inner-page-main-wrapper .side-bar-strip .side-main-box .side-img-content span {
    font-size: 10px;
    color: #5f5f5f;
}

.inner-page-main-wrapper .side-bar-strip .side-main-box .side-img-content small {
    display: block;
    font-size: 13px;
    color: var(--color-primary);
}

.inner-page-main-wrapper .side-bar-strip .img-ftr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.inner-page-main-wrapper .side-bar-strip .img-ftr .small-img {
    width: 33.33%;
    padding: 2px;
    position: relative;
    overflow: hidden;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
}

.inner-page-main-wrapper .side-bar-strip .img-ftr .small-img img {
    width: 100%;
    padding-bottom: 0;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
}

.inner-page-main-wrapper .side-bar-strip .img-ftr .small-img:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    cursor: pointer;
}

.inner-page-main-wrapper .side-accordian .accordion-button span {
    display: inline-block;
    margin-right: 20px;
}

.inner-page-main-wrapper .side-accordian .accordion-button:focus {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.inner-page-main-wrapper .side-accordian .accordion-button:not(.collapsed) {
    color: #4285f4;
    background-color: #ffffff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.inner-page-main-wrapper .side-accordian .accordion-button:after {
    background-image: none;
}

.inner-page-main-wrapper .side-accordian .accordion-item {
    margin-top: 0px;
    margin-bottom: 15px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-header button {
    position: relative;
    color: #5f5f5f;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-header button:before {
    content: '';
    text-align: center;
    background: #5f5f5f;
    font-size: 14px;
    width: 13px;
    height: 1px;
    line-height: 24px;
    display: block;
    position: absolute;
    right: 14px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-header button:after {
    content: '';
    text-align: center;
    background: #5f5f5f;
    font-size: 14px;
    width: 1px;
    height: 13px;
    line-height: 24px;
    display: block;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-header button:not(.collapsed):after {
    display: none;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-header button img {
    padding-bottom: 0;
    padding-right: 13px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body {
    background-color: #f5f5f5;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer {
    padding-bottom: 45px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer h3 {
    font-size: 22px;
    font-weight: 500;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer form {
    padding-top: 30px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer form p {
    padding-bottom: 13px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer [type="radio"]:checked,
.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer [type="radio"]:checked+label,
.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #111;
    font-size: 18px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer [type="radio"]:checked+label:before,
.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer [type="radio"]:checked+label:after,
.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer .submit_btn {
    margin-top: 30px;
    color: #fff;
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    border-radius: 24px;
    padding: 12px 30px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    display: inline-block;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer .submit_btn:hover {
    background-color: #111;
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .new_customer p {
    font-size: 13px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .login_form {
    padding-bottom: 45px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .login_form h3 {
    font-size: 22px;
    font-weight: 500;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .login_form form {
    padding-top: 30px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .login_form form input {
    height: 50px;
    width: 100%;
    padding: 13px;
    border: 1px solid #f3f3f3;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .login_form form a {
    display: inline-block;
    padding-top: 8px;
    color: #111;
    float: right;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .login_form form label {
    color: #111;
    margin-bottom: 9px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .login_form .submit_btn {
    margin-top: 13px;
    color: #fff;
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    border-radius: 24px;
    padding: 12px 30px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    display: inline-block;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .login_form .submit_btn:hover {
    background-color: #111;
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .billing_info {
    padding-bottom: 40px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .billing_info form label {
    color: #111;
    margin-bottom: 9px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .billing_info form input {
    height: 50px;
    width: 100%;
    padding: 13px;
    border: 1px solid #f3f3f3;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .billing_info form input[type="checkbox"] {
    width: 22px;
    height: 22px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .billing_info form #scales {
    height: auto;
    width: auto;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .billing_info .submit_btn {
    margin-top: 13px;
    color: #fff;
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    border-radius: 24px;
    padding: 12px 30px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    display: inline-block;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .billing_info .submit_btn:hover {
    background-color: #111;
    color: #fff;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method form {
    padding-top: 6px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method form p {
    padding-bottom: 13px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method [type="radio"]:checked,
.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method [type="radio"]:checked+label,
.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #111;
    font-size: 18px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method [type="radio"]:checked+label:before,
.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #ffffff;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method [type="radio"]:checked+label:after,
.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method [type="radio"]:checked+label .small-text {
    display: block;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method [type="radio"]:checked+label .small-text:before {
    position: absolute;
    content: '';
    left: 30px;
    top: -8px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 8px solid var(--color-primary);
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method label .small-text {
    position: relative;
    display: none;
    letter-spacing: 0px;
    text-transform: none;
    font-weight: normal;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.8em;
    padding: 15px 20px;
    margin-top: 10px;
    background-color: var(--color-primary);
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method .payment_card {
    padding: 30px 0px;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method .payment_card img {
    display: block;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method .payment_card .submit_btn {
    margin-top: 25px;
    color: #fff;
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    border-radius: 24px;
    padding: 12px 30px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    display: inline-block;
}

.inner-page-main-wrapper .side-accordian .accordion-item .accordion-collapse .accordion-body .payment_method .payment_card .submit_btn:hover {
    background-color: #111;
    color: #fff;
}

.inner-page-main-wrapper .privacy-main-wraper .privact-text h5 {
    font-size: 18px;
}

.inner-page-main-wrapper .privacy-main-wraper .privact-text p {
    font-size: 13px;
    color: #5f5f5f;
}

.inner-page-main-wrapper .privacy-main-wraper .privact-text h4 {
    font-size: 22px;
    padding-bottom: 13px;
}

.blog-slider-wrapper .blog-page-slider .owl-nav {
    display: none;
}

.blog-slider-wrapper .blog-page-slider .owl-dots {
    margin-top: 20px;
}

.blog-slider-wrapper .blog-page-slider .owl-dots .active span {
    background-color: red;
}

.blog-slider-wrapper .blog-cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 9px 0px #220c2b1a;
    border-radius: 8px;
}

.blog-slider-wrapper .blog-cat .blog-post-slider {
    position: relative;
    width: 50%;
}

.blog-slider-wrapper .blog-cat .blog-post-slider .owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
    display: none;
}

.blog-slider-wrapper .blog-cat .blog-post-slider .owl-nav .owl-prev {
    font-size: 40px;
    position: absolute;
    left: 0;
}

.blog-slider-wrapper .blog-cat .blog-post-slider .owl-nav .owl-next {
    font-size: 40px;
    position: absolute;
    right: 0;
}

.blog-slider-wrapper .blog-cat .blog-post-slider .owl-dots {
    bottom: 5px;
    left: 45%;
    position: absolute;
}

.blog-slider-wrapper .blog-cat .blog-post-slider .owl-dots .active span {
    background-color: red;
}

.blog-slider-wrapper .blog-cat .sec-post-slider {
    position: relative;
    width: 50%;
}

.blog-slider-wrapper .blog-cat .sec-post-slider .owl-nav {
    display: none;
}

.blog-slider-wrapper .blog-cat .sec-post-slider .owl-dots {
    bottom: -32px;
    left: 45%;
    position: absolute;
}

.blog-slider-wrapper .blog-cat .sec-post-slider .owl-dots .active span {
    background-color: red;
}

.blog-slider-wrapper .blog-cat .blo-post-img {
    width: 50%;
    position: relative;
    overflow: hidden;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    border-radius: 8px;
}

.blog-slider-wrapper .blog-cat .blo-post-img img {
    width: 100%;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
}

.blog-slider-wrapper .blog-cat .blo-post-img .overlay1 {
    font-size: 20px;
    background-repeat: no-repeat;
    width: 14%;
    height: 14%;
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    margin: auto;
    background-size: contain;
    background-position: center;
    color: #1c8aad;
    border: 7px solid white;
    padding-left: 15px;
    border-radius: 50%;
    padding-top: 8px;
}

.blog-slider-wrapper .blog-cat .blo-post-img .overlay1 a {
    color: #fff;
}

.blog-slider-wrapper .blog-cat .blo-post-img:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    cursor: pointer;
}

.blog-slider-wrapper .blog-cat .slider-content {
    width: 50%;
}

.blog-slider-wrapper .blog-cat .slider-content del {
    color: #797979;
}

.blog-slider-wrapper .blog-cat .slider-content h4 a {
    font-size: 30px;
    color: #333;
    font-weight: 600;
}

.blog-slider-wrapper .blog-cat .slider-content h4 a:hover {
    color: var(--color-primary);
}

.blog-slider-wrapper .blog-cat .slider-content .post-tag {
    padding: 8px 0px;
}

.blog-slider-wrapper .blog-cat .slider-content .post-tag i {
    font-size: 14px;
    color: var(--color-primary);
    margin-right: 5px;
}

.blog-slider-wrapper .blog-cat .slider-content .post-tag a {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
}

.blog-slider-wrapper .blog-cat .slider-content .star-review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-slider-wrapper .blog-cat .slider-content .star-review li a {
    color: #545454;
    font-size: 14px;
}

.blog-slider-wrapper .blog-cat .slider-content .star-review li+li {
    margin-left: 8px;
}

.blog-slider-wrapper .blog-cat .slider-content .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border-radius: 30px;
    line-height: 50px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.blog-slider-wrapper .blog-cat .slider-content .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.blog-slider-wrapper .blog-cat .slider-content .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.blog-slider-wrapper .content-post-wrapper {
    padding: 60px 45px;
    background-color: #252526;
}

.blog-slider-wrapper .content-post-wrapper h4 a {
    color: #fff;
    font-size: 24px;
}

.blog-slider-wrapper .content-post-wrapper span {
    color: #ffffff4d;
}

.blog-slider-wrapper .content-post-wrapper .post-tag {
    padding: 8px 0px;
}

.blog-slider-wrapper .content-post-wrapper .post-tag i {
    font-size: 14px;
    color: var(--color-primary);
    margin-right: 5px;
}

.blog-slider-wrapper .content-post-wrapper .post-tag a {
    color: #ffffff4d;
    font-size: 14px;
}

.blog-slider-wrapper .fresh-idea-wrapper {
    margin-top: 40px;
    padding: 40px;
}

.blog-slider-wrapper .fresh-idea-wrapper h4 {
    font-size: 24px;
    font-weight: 600;
}

.blog-slider-wrapper .fresh-idea-wrapper .p-text {
    padding-top: 15px;
}

.blog-slider-wrapper .fresh-idea-wrapper .p-text p {
    font-size: 13px;
    color: #5f5f5f;
    line-height: 24px;
}

.blog-slider-wrapper .fresh-idea-wrapper .form-leave-wrapper form p {
    font-size: 16px;
    color: #5f5f5f;
    margin-top: 40px;
    padding-bottom: 10px;
}

.blog-slider-wrapper .fresh-idea-wrapper .form-leave-wrapper form textarea {
    background-color: #f2f2f2;
    border: 1px solid #f2f2f2;
    color: #797979;
    padding: 15px 30px;
    border-radius: 0;
    font-size: 13px;
}

.blog-slider-wrapper .fresh-idea-wrapper .form-leave-wrapper form input {
    background-color: #f2f2f2;
    border: 1px solid #f2f2f2;
    color: #797979;
    padding: 15px 30px;
    border-radius: 0;
    font-size: 13px;
}

.blog-slider-wrapper .fresh-idea-wrapper .form-leave-wrapper .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border-radius: 30px;
    line-height: 50px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.blog-slider-wrapper .fresh-idea-wrapper .form-leave-wrapper .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.blog-slider-wrapper .fresh-idea-wrapper .form-leave-wrapper .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.blog-slider-wrapper .custom-pegination {
    text-align: center;
    padding-top: 30px;
}

.blog-slider-wrapper .custom-pegination ul li {
    display: inline-block;
}

.blog-slider-wrapper .custom-pegination ul li a {
    display: inline-block;
    border: 1px solid #f6f6f6;
    border-radius: 30px;
    width: 40px;
    height: 40px;
    line-height: 36px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.blog-slider-wrapper .custom-pegination ul li a:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: -38%;
    top: 0;
    -webkit-transform: skew(26deg);
    transform: skew(26deg);
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    background-color: var(--color-primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.blog-slider-wrapper .custom-pegination ul li a:hover {
    border: 1px solid var(--color-primary);
}

.blog-slider-wrapper .custom-pegination ul li a:hover span {
    z-index: 11;
    position: relative;
    color: #fff;
}

.blog-slider-wrapper .custom-pegination ul li a:hover:after {
    height: 100%;
    width: 135%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.blog-slider-wrapper .custom-pegination ul li+li {
    margin-left: 10px;
}

.blog-slider-wrapper .custom-pegination ul .preious a {
    display: inline-block;
    border: 1px solid #efbc50;
    background-color: #efbc50;
    border-radius: 30px;
    width: 150px;
    text-transform: uppercase;
    height: 40px;
    line-height: 40px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.blog-slider-wrapper .custom-pegination ul .preious a:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: -38%;
    top: 0;
    -webkit-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    background: var(--color-primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.blog-slider-wrapper .custom-pegination ul .preious a:hover {
    border: 1px solid var(--color-primary);
}

.blog-slider-wrapper .custom-pegination ul .preious a:hover span {
    z-index: 11;
    position: relative;
    color: #fff;
}

.blog-slider-wrapper .custom-pegination ul .preious a:hover:after {
    height: 100%;
    width: 135%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.blog-slider-wrapper .custom-pegination ul .active a {
    background-color: var(--color-primary);
    color: #fff;
}

.customer-blog-wrapper {
    background-image: url(../images/section-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.customer-blog-wrapper .heading-title {
    padding-bottom: 60px;
    text-align: center;
}

.customer-blog-wrapper .heading-title h4 {
    color: black;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
}

.customer-blog-wrapper .product-single-wrapper .custom-tabs-prdt {
    width: 32%;
}

.product-page-wrapper {
    background-image: none !important;
}

.product-page-wrapper .custom-pegination {
    text-align: center;
    padding-top: 30px;
}

.product-page-wrapper .custom-pegination ul li {
    display: inline-block;
}

.product-page-wrapper .custom-pegination ul li a {
    display: inline-block;
    border: 1px solid #f6f6f6;
    border-radius: 30px;
    width: 40px;
    height: 40px;
    line-height: 36px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.product-page-wrapper .custom-pegination ul li a:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: -38%;
    top: 0;
    -webkit-transform: skew(26deg);
    transform: skew(26deg);
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    background-color: var(--color-primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.product-page-wrapper .custom-pegination ul li a:hover {
    border: 1px solid var(--color-primary);
}

.product-page-wrapper .custom-pegination ul li a:hover span {
    z-index: 11;
    position: relative;
    color: #fff;
}

.product-page-wrapper .custom-pegination ul li a:hover:after {
    height: 100%;
    width: 135%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.product-page-wrapper .custom-pegination ul li+li {
    margin-left: 10px;
}

.product-page-wrapper .custom-pegination ul .preious a {
    display: inline-block;
    border: 1px solid #efbc50;
    background-color: #efbc50;
    border-radius: 30px;
    width: 150px;
    text-transform: uppercase;
    height: 40px;
    color: #fff;
    line-height: 36px;
    overflow: hidden;
    position: relative;
}

.product-page-wrapper .custom-pegination ul .preious a:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: -38%;
    top: 0;
    -webkit-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    background: var(--color-primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.product-page-wrapper .custom-pegination ul .preious a:hover {
    border: 1px solid var(--color-primary);
}

.product-page-wrapper .custom-pegination ul .preious a:hover span {
    z-index: 11;
    position: relative;
    color: #fff;
}

.product-page-wrapper .custom-pegination ul .preious a:hover:after {
    height: 100%;
    width: 135%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.product-page-wrapper .custom-pegination ul .active a {
    background-color: var(--color-primary);
    color: #fff;
}

.product-client-say-wrapper .testi-slider {
    position: relative;
}

.product-client-say-wrapper .testi-slider .owl-carousel .item {
    border: 1px solid #cccccc4a;
}

.product-client-say-wrapper .testi-slider .owl-carousel .item p {
    font-size: 14px;
    color: #5f5f5f;
    padding-top: 30px;
}

.product-client-say-wrapper .testi-slider .owl-carousel .item h4 {
    font-size: 25px;
}

.product-client-say-wrapper .testi-slider .owl-carousel .item span {
    font-size: 14px;
    color: #d3d2d6;
}

.product-client-say-wrapper .testi-slider .navigation-img-wrapper {
    margin-top: 4px;
    text-align: center;
}

.product-client-say-wrapper .testi-slider .navigation-img-wrapper .navigator {
    display: inline-block;
    width: 150px;
    height: 150px;
    line-height: 100px;
    cursor: pointer;
    border: 1px solid #cccccc4a;
}

.product-client-say-wrapper .testi-slider .navigation-img-wrapper .navigator img {
    width: 100%;
}

.product-client-say-wrapper .testi-slider .navigation-img-wrapper .active {
    border: 1px solid red;
}

.product-client-say-wrapper .owl-nav {
    display: none;
}

.product-client-say-wrapper .owl-nav .owl-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
    border: 1px solid #cacaca !important;
    position: absolute;
    top: 0;
    left: 0;
}

.product-client-say-wrapper .owl-nav .owl-prev svg {
    width: 24px;
    height: 24px;
}

.product-client-say-wrapper .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #cacaca !important;
    position: absolute;
    top: 0;
    right: 0;
}

.product-client-say-wrapper .owl-nav .owl-next svg {
    width: 24px;
    height: 24px;
    fill: #cacaca !important;
}

.product-client-say-wrapper .product-des h4 {
    font-size: 24px;
}

.product-client-say-wrapper .product-des h5 {
    font-size: 20px;
    padding: 7px 0px;
}

.product-client-say-wrapper .product-des span {
    font-size: 13px;
    color: #d0d0d2;
}

.product-client-say-wrapper .product-des .star-review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 8px;
}

.product-client-say-wrapper .product-des .star-review li a {
    font-size: 16px;
    color: #ccc;
}

.product-client-say-wrapper .product-des .star-review li a:hover {
    color: #ffd700;
}

.product-client-say-wrapper .product-des .star-review li+li {
    margin-left: 8px;
}

.product-client-say-wrapper .product-des .card-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 40px;
    -webkit-box-shadow: 0 1px 3px #00000000, 0 1px 2px #0000003d;
    box-shadow: 0 1px 3px #00000000, 0 1px 2px #0000003d;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid transparent;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-top: 20px;
}

.product-client-say-wrapper .product-des .card-product .card-product-text {
    width: 60%;
}

.product-client-say-wrapper .product-des .card-product .card-product-text h5 {
    font-size: 16px;
    color: #333;
}

.product-client-say-wrapper .product-des .card-product .card-product-text span {
    font-size: 13px;
    color: #ccc;
}

.product-client-say-wrapper .product-des .card-product .card-product-rate {
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-client-say-wrapper .product-des .card-product .card-product-rate h5 {
    font-size: 20px;
    display: inline-block;
}

.product-client-say-wrapper .product-des .card-product .card-product-rate form {
    padding-left: 20px;
}

.product-client-say-wrapper .product-des .card-product .card-product-rate form .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.product-client-say-wrapper .product-des .card-product .card-product-rate form .form-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid var(--color-primary);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.product-client-say-wrapper .product-des .card-product .card-product-rate form .form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #facbca;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.product-client-say-wrapper .product-des .card-product .card-product-rate form .form-group label {
    position: relative;
    cursor: pointer;
}

.product-client-say-wrapper .product-des .card-product:hover {
    border: 1px solid red;
}

.product-client-say-wrapper .value-produt {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-client-say-wrapper .value-produt .number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-client-say-wrapper .value-produt .number .minus,
.product-client-say-wrapper .value-produt .number .plus {
    width: 30px;
    height: 34px;
    line-height: 20px;
    background: #f2f2f2;
    padding: 8px 5px 8px 5px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
}

.product-client-say-wrapper .value-produt .number input {
    height: 34px;
    width: 100px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #f2f2f2;
    display: inline-block;
    vertical-align: middle;
}

.product-client-say-wrapper .value-produt .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border-radius: 30px;
    line-height: 50px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    margin-left: 30px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.product-client-say-wrapper .value-produt .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.product-client-say-wrapper .value-produt .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.product-client-say-wrapper .copy-social {
    margin-top: 30px;
}

.product-client-say-wrapper .copy-social span {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 20px;
    display: inline-block;
}

.product-client-say-wrapper .copy-social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-client-say-wrapper .copy-social ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #e5e5e5;
    font-size: 14px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
}

.product-client-say-wrapper .copy-social ul li a:hover {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #fff;
}

.product-client-say-wrapper .copy-social ul li+li {
    margin-left: 13px;
}

.about-the-product {
    padding-bottom: 100px;
}

.about-the-product .heading-title {
    text-align: center;
}

.about-the-product .heading-title h4 {
    color: black;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
}

.about-the-product .heading-title img {
    padding-top: 22px;
}

.about-the-product .custom-tabs {
    margin-top: 30px;
}

.about-the-product .custom-tabs .tab-content .tab-pane {
    padding: 24px;
    border: 1px solid #dee2e6;
    border-top: 0;
}

.about-the-product .custom-tabs .tab-content .tab-pane h5 {
    font-size: 20px;
    padding-bottom: 10px;
    font-weight: 500;
}

.about-the-product .custom-tabs .tab-content .tab-pane span {
    font-size: 15px;
    color: #d0d0d2;
}

.about-the-product .custom-tabs .tab-content .tab-pane .star-review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 8px;
}

.about-the-product .custom-tabs .tab-content .tab-pane .star-review li a {
    font-size: 16px;
    color: #ccc;
}

.about-the-product .custom-tabs .tab-content .tab-pane .star-review li a:hover {
    color: #ffd700;
}

.about-the-product .custom-tabs .tab-content .tab-pane .star-review li+li {
    margin-left: 8px;
}

.about-the-product .custom-tabs .tab-content .tab-pane .text-msg {
    margin-top: 13px;
}

.about-the-product .custom-tabs .tab-content .tab-pane .text-msg textarea {
    width: 100%;
    border-radius: 4px;
    padding: 13px;
}

.about-the-product .custom-tabs .nav-tabs .nav-item .active {
    background-color: #f4f4f4;
}

.shopping-cart-main-wrapper .cart-strip-main-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 30px;
}

.shopping-cart-main-wrapper .cart-strip-main-wrapper .cart-item {
    width: 20%;
}

.shopping-cart-main-wrapper .cart-strip-main-wrapper .cart-item .quantity-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.shopping-cart-main-wrapper .cart-strip-main-wrapper .cart-item .quantity-field .value-button {
    display: inline-block;
    border: 1px solid #ddd;
    margin: 0px;
    width: 40px;
    height: 40px;
    font-size: 25px;
    line-height: 17px;
    text-align: center;
    vertical-align: middle;
    padding: 11px 0;
    background: #eee;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.shopping-cart-main-wrapper .cart-strip-main-wrapper .cart-item .quantity-field .value-button:hover {
    cursor: pointer;
}

.shopping-cart-main-wrapper .cart-strip-main-wrapper .cart-item .quantity-field .number {
    text-align: center;
    border: none;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin: 0px;
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.shopping-cart-main-wrapper .cart-strip-main-wrapper .cart-item h4 {
    font-size: 16px;
    font-weight: 600;
}

.shopping-cart-main-wrapper .cart-strip-main-wrapper .cart-item p {
    padding-left: 60px;
}

.shopping-cart-main-wrapper .cart-strip-main-wrapper .cart-item .cart-item-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.shopping-cart-main-wrapper .cart-strip-main-wrapper .cart-item .cart-item-img h5 {
    font-size: 15px;
    padding-left: 16px;
}

.shopping-cart-main-wrapper .cart-strip-main-wrapper .cart-item .cart-item-img img {
    width: 70px;
}

.shopping-details-wrapper {
    padding-bottom: 50px;
}

.shopping-details-wrapper .shoping-box {
    padding: 56px 30px;
    border: 1px dashed #ccc;
    background-image: url(../images/section-bg.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.shopping-details-wrapper .shoping-box .shipping-account-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.shopping-details-wrapper .shoping-box .shipping-account-wrapper span {
    display: inline-block;
    padding-left: 35px;
    color: #333;
    font-weight: 500;
}

.shopping-details-wrapper .shoping-box .shipping-account-wrapper h5 {
    font-size: 24px;
    padding-left: 35px;
    color: var(--color-primary);
}

.cart-btn-wrapper {
    padding-bottom: 50px;
}

.cart-btn-wrapper .cart-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
}

.cart-btn-wrapper .cart-btn .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border-radius: 30px;
    line-height: 50px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.cart-btn-wrapper .cart-btn .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.cart-btn-wrapper .cart-btn .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.cart-btn-wrapper .cart-btn .out-line {
    font-size: 14px;
    display: inline-block;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border-radius: 30px;
    line-height: 50px;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    text-transform: uppercase;
    font-weight: 400;
    margin-right: 35px;
}

.cart-btn-wrapper .cart-btn .out-line:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.our-chef-main-wrapper {
    background-image: url(../images/section-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.our-chef-main-wrapper .heading-title {
    text-align: center;
    padding-bottom: 50px;
}

.our-chef-main-wrapper .heading-title h4 {
    color: black;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
}

.our-chef-main-wrapper .chef-slider .custom-chef {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 9px 0px #220c2b1a;
    box-shadow: 0 2px 9px 0px #220c2b1a;
    margin-bottom: 30px;
    text-align: center;
}

.our-chef-main-wrapper .chef-slider .custom-chef .chef-img {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.our-chef-main-wrapper .chef-slider .custom-chef .chef-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.our-chef-main-wrapper .chef-slider .custom-chef .chef-img:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.our-chef-main-wrapper .chef-slider .custom-chef .chef-text {
    padding-top: 20px;
}

.our-chef-main-wrapper .chef-slider .custom-chef .chef-text a h4 {
    font-size: 20px;
    font-weight: 600;
}

.our-chef-main-wrapper .chef-slider .custom-chef .chef-text span {
    display: inline-block;
    font-weight: 600;
    color: #797979;
    font-size: 15px;
}

.our-chef-main-wrapper .chef-slider .custom-chef .chef-text p {
    font-size: 13px;
    padding-top: 13px;
}

.our-chef-main-wrapper .chef-slider .custom-chef .chef-text .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border-radius: 30px;
    line-height: 50px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    margin-top: 18px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.our-chef-main-wrapper .chef-slider .custom-chef .chef-text .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.our-chef-main-wrapper .chef-slider .custom-chef .chef-text .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.our-info-main-wrapper .blog-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 9px 0px #220c2b1a;
    box-shadow: 0 2px 9px 0px #220c2b1a;
}

.our-info-main-wrapper .blog-box .blog-img {
    width: 35%;
    overflow: hidden;
    border-radius: 4px;
}

.our-info-main-wrapper .blog-box .blog-img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.our-info-main-wrapper .blog-box .blog-text {
    width: 65%;
    position: relative;
    padding-left: 20px;
    padding-top: 5px;
}

.our-info-main-wrapper .blog-box .blog-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    padding-bottom: 10px;
}

.our-info-main-wrapper .blog-box .blog-text p {
    font-size: 13px;
    padding: 4px 0px 6px;
}

.our-info-main-wrapper .blog-box:hover .blog-img img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.our-info-main-wrapper .blog-box:hover .blog-text h4 a {
    color: #111;
}

.offline-market-wrapper {
    background-image: url(../images/product/offline.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.offline-market-wrapper .heading-title {
    text-align: center;
}

.offline-market-wrapper .heading-title h4 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
}

.offline-market-wrapper .heading-title p {
    color: #fff;
    font-size: 14px;
    max-width: 700px;
    margin: auto;
    padding-top: 18px;
}

.offline-market-wrapper .heading-title img {
    padding-top: 22px;
}

.back-img-client {
    background-image: url(../images/section-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.back-img-client .center-btn {
    width: 100%;
    text-align: center;
}

.back-img-client .center-btn a {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 45px;
    border-radius: 30px;
    line-height: 47px;
    color: #ffffff;
    background: #efbc50;
    text-align: center;
    padding: 0px 38px;
    margin-top: 40px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.back-img-client .center-btn a:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.back-img-client .center-btn a:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.product-single-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.product-single-wrapper .custom-tabs-prdt {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 9px 0px #220c2b1a;
    box-shadow: 0 2px 9px 0px #220c2b1a;
}

.product-single-wrapper .custom-tabs-prdt .product-thumbnail {
    position: relative;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.product-single-wrapper .custom-tabs-prdt .product-thumbnail img {
    border-radius: 8px;
    -webkit-transition: .3s;
    transition: .3s;
    width: 100%;
}

.product-single-wrapper .custom-tabs-prdt .product-thumbnail:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.product-single-wrapper .custom-tabs-prdt .product-body .product-title a {
    display: block;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    font-weight: 600;
}

.product-single-wrapper .custom-tabs-prdt .product-body .product-title a:hover {
    color: red;
}

.product-single-wrapper .custom-tabs-prdt .product-body .star-review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 4px;
    padding-bottom: 6px;
}

.product-single-wrapper .custom-tabs-prdt .product-body .star-review li a {
    color: #ffd700;
}

.product-single-wrapper .custom-tabs-prdt .product-body .star-review li+li {
    margin-left: 6px;
}

.product-single-wrapper .custom-tabs-prdt .product-body .product-price {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}

.product-single-wrapper .custom-tabs-prdt .product-body .product-price span {
    font-size: 13px;
    color: #848486;
    font-weight: 600;
    margin-left: 5px;
    text-decoration: line-through;
}

.product-single-wrapper .custom-tabs-prdt .product-body .product-text {
    color: #5f5f5f;
    font-size: 13px;
    line-height: 24px;
}

.product-single-wrapper .custom-tabs-prdt .product-body .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 45px;
    border-radius: 30px;
    line-height: 47px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.product-single-wrapper .custom-tabs-prdt .product-body .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.product-single-wrapper .custom-tabs-prdt .product-body .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.delivery-way {
    background-image: url(../images/product/offline.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.delivery-way .delivery-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 20px;
    -webkit-box-shadow: 0 2px 9px 0px #220c2b1a;
    box-shadow: 0 2px 9px 0px #220c2b1a;
    border-radius: 8px;
}

.delivery-way .delivery-box .delivey-icon {
    width: 20%;
}

.delivery-way .delivery-box .delivey-icon img {
    width: 100%;
}

.delivery-way .delivery-box .delivery-text {
    width: 70%;
    padding-left: 20px;
}

.delivery-way .delivery-box .delivery-text h4 {
    font-size: 20px;
}

.delivery-way .delivery-box .delivery-text p {
    font-size: 13px;
    padding-top: 5px;
}

.login_box_main_wrapper {
    float: left;
    background-image: url("../images/product/loginback.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 99%;
    position: relative;
}

.login_box_main_wrapper .login-logo {
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: 140px 0px 50px;
}

.login_box_main_wrapper .login-logo img {
    width: auto;
}

.login_box_main_wrapper .gap-top {
    padding: 60px 0px 30px;
}

.login_box_main_wrapper .form-tabs {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

.login_box_main_wrapper .form-tabs .nav-pills {
    max-width: 362px;
    margin: auto;
    border: 1px solid #ffffff4d;
    border-radius: 30px;
    overflow: hidden;
}

.login_box_main_wrapper .form-tabs .nav-pills .nav-item .nav-link {
    border-radius: 0;
    width: 119px;
    color: #fff;
}

.login_box_main_wrapper .form-tabs .nav-pills .nav-item .active {
    background: #fff;
    color: var(--color-primary);
}

.login_box_main_wrapper .form-tabs .nav-pills li+li {
    border-left: 1px solid #ffffff4d;
}

.login_box_main_wrapper .signin-wrapper {
    width: 100%;
    float: left;
    background: #fff;
}

.login_box_main_wrapper .signin-wrapper .left-side {
    width: 100%;
    float: left;
    padding: 40px;
}

.login_box_main_wrapper .signin-wrapper .left-side h4 {
    font-size: 24px;
}

.login_box_main_wrapper .signin-wrapper .left-side form {
    padding-top: 30px;
}

.login_box_main_wrapper .signin-wrapper .left-side form .form-group {
    margin-bottom: 30px;
}

.login_box_main_wrapper .signin-wrapper .left-side form .form-group input {
    width: 100%;
    height: 50px;
    border: 1px solid #eaf2f7;
    border-radius: 30px;
    background: #eaf2f7;
    padding: 0px 45px;
}

.login_box_main_wrapper .signin-wrapper .left-side form .round {
    position: relative;
    display: inline-block;
}

.login_box_main_wrapper .signin-wrapper .left-side form .round label {
    background-color: #fff;
    border: 1px solid #111;
    border-radius: 50%;
    cursor: pointer;
    height: 21px;
    left: 0;
    position: absolute;
    line-height: 18px;
    top: 0;
    width: 21px;
}

.login_box_main_wrapper .signin-wrapper .left-side form .round label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 3px;
    opacity: 0;
    position: absolute;
    top: 5px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 13px;
}

.login_box_main_wrapper .signin-wrapper .left-side form .round label span {
    display: inline-block;
    width: 200px;
    padding-left: 30px;
}

.login_box_main_wrapper .signin-wrapper .left-side form .round input[type="checkbox"] {
    visibility: hidden;
    width: auto;
    height: auto;
}

.login_box_main_wrapper .signin-wrapper .left-side form .round input[type="checkbox"]:checked+label {
    background-color: #66bb6a;
    border-color: #66bb6a;
}

.login_box_main_wrapper .signin-wrapper .left-side form .round input[type="checkbox"]:checked+label:after {
    opacity: 1;
}

.login_box_main_wrapper .signin-wrapper .left-side form .round span {
    display: inline-block;
    padding-left: 15px;
    font-size: 16px;
    color: #797979;
    padding-top: 0px;
}

.login_box_main_wrapper .signin-wrapper .left-side form .forgot {
    float: right;
    font-size: 16px;
    color: var(--color-primary);
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec {
    padding-top: 20px;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .sub-btn {
    display: inline-block;
    height: 45px;
    width: 200px;
    float: left;
    text-align: center;
    line-height: 40px;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 0px 30px;
    color: #fff;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .sub-btn:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: -35%;
    top: 0;
    -webkit-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    background: #111;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .sub-btn:hover {
    border: 1px solid #111;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .sub-btn:hover span {
    z-index: 11;
    position: relative;
    color: #fff;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .sub-btn:hover:after {
    height: 100%;
    width: 135%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .social-btn span {
    display: inline-block;
    padding: 0px 20px;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .social-btn ul {
    display: inline-block;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .social-btn ul li {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    vertical-align: middle;
    line-height: 16px;
    color: #111;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .social-btn ul li a {
    display: inline-block;
    border: 1px solid #111;
    border-radius: 50%;
    text-align: center;
    width: 38px;
    height: 38px;
    line-height: 34px;
    position: relative;
    overflow: hidden;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .social-btn ul li a span {
    padding: 0px;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .social-btn ul li a span svg {
    width: 18px;
    height: 18px;
    fill: #111;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .social-btn ul li a:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: -38%;
    top: 0;
    -webkit-transform: skew(26deg);
    transform: skew(26deg);
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    background: var(--color-primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .social-btn ul li a:hover {
    border: 1px solid var(--color-primary);
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .social-btn ul li a:hover span {
    z-index: 11;
    position: relative;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .social-btn ul li a:hover span svg {
    fill: #fff;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .social-btn ul li a:hover:after {
    height: 100%;
    width: 135%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec .social-btn ul li+li {
    margin-left: 13px;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec p {
    color: #111;
    padding-top: 35px;
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec p a {
    color: var(--color-primary);
}

.login_box_main_wrapper .signin-wrapper .left-side form .login-btn-sec.remove-social .sub-btn {
    float: inherit;
}

.login_box_main_wrapper .signin-wrapper .left-side form .field-icon {
    position: relative;
}

.login_box_main_wrapper .signin-wrapper .left-side form .field-icon span {
    position: absolute;
    left: 30px;
    top: 11px;
    font-size: 20px;
    color: var(--color-primary);
}

.login_box_main_wrapper .signin-wrapper .left-side form .dekstop-hidden {
    display: none;
}

.login_box_main_wrapper .signin-wrapper .right-side form {
    margin-top: 60px;
    padding-left: 60px;
    border-left: 1px solid #ccc;
}

.login_box_main_wrapper .signin-wrapper .right-side form .field-icon {
    position: relative;
}

.login_box_main_wrapper .signin-wrapper .right-side form .field-icon input {
    width: 100%;
    height: 50px;
    border: 1px solid #eaf2f7;
    border-radius: 30px;
    background: #eaf2f7;
    padding: 0px 45px;
}

.login_box_main_wrapper .signin-wrapper .right-side form .field-icon span {
    position: absolute;
    left: 30px;
    top: 11px;
    font-size: 20px;
    color: red;
}

.login_box_main_wrapper .signin-wrapper .login-img {
    width: 100%;
    float: left;
    text-align: center;
    background-color: #fbfbfb;
}

.login_box_main_wrapper .signin-wrapper .login-img img {
    width: 80%;
}

.login_box_main_wrapper .footer-form {
    width: 100%;
    float: left;
    text-align: center;
    padding-top: 30px;
}

.login_box_main_wrapper .footer-form p {
    color: #fff;
}

/* ....................................
1.1 Footer CSS
.......................................*/
.footer-main-wrapper {
    background-image: url(../images/bg-1.jpg);
    background-position: top center;
    background-size: auto;
    padding: 100px 0px;
}

.footer-main-wrapper .link span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #5f5f5f;
}

.footer-main-wrapper .link h4 {
    font-size: 40px;
    font-weight: 300;
    color: #5f5f5f;
    padding: 6px 0px;
}

.footer-main-wrapper .link .input-filed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
}

.footer-main-wrapper .link .input-filed input {
    border: 1px solid #fff;
    padding: 0px 13px;
    height: 40px;
}

.footer-main-wrapper .link .input-filed button {
    height: 40px;
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    padding: 0px 13px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}

.footer-main-wrapper .widgettitle h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #5f5f5f;
}

.footer-main-wrapper .link-page {
    padding-top: 13px;
}

.footer-main-wrapper .link-page ul li a {
    font-size: 14px;
    color: #5f5f5f;
    font-weight: 500;
}

.footer-main-wrapper .link-page ul li a:hover {
    color: var(--color-primary);
}

.footer-main-wrapper .link-page .img-ftr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-main-wrapper .link-page .img-ftr .small-img {
    width: 32%;
    padding-bottom: 8px;
}

.footer-main-wrapper .link-page .img-ftr .small-img img {
    width: 100%;
}

.copy-right-wrapper {
    background-color: #1f1f20;
    padding: 12px 0px;
}

.copy-right-wrapper .copy-social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.copy-right-wrapper .copy-social ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #5f5f5f;
    font-size: 14px;
    border-radius: 50%;
    background-color: #252526;
}

.copy-right-wrapper .copy-social ul li a:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.copy-right-wrapper .copy-social ul li+li {
    margin-left: 13px;
}

.copy-right-wrapper .copy-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    padding-top: 6px;
}

.copy-right-wrapper .copy-right a {
    color: var(--color-primary);
    padding-right: 10px;
}

.copy-right-wrapper .copy-right p {
    padding-right: 13px;
}

/* ....................................
1.2 SHORTCODE 03 CSS
.......................................*/
a {
    text-decoration: none;
    color: #111111;
}

p {
    color: #808080;
}

.padd-100 {
    padding: 100px 0;
}

ul {
    padding: 0px;
    list-style-type: none;
}

.page-header {
    padding: 30px 0;
    background-color: #fafafa;
}

.page-header .heading h4 {
    font-size: 24px;
    color: #111111;
}

/*===================================== ACCORDION PAGE START ================================*/
/*============================ first accordion ==============================*/
.accor-heading {
    margin-bottom: 30px;
}

.accor-heading h3 {
    font-size: 24px;
    text-align: center;
}

.accordion1-main-wrapper .accordion-button span {
    display: inline-block;
    margin-right: 20px;
}

.accordion1-main-wrapper .accordion-button:focus {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion1-main-wrapper .accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background-color: #ffffff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion1-main-wrapper .accordion-button:after {
    background-image: none;
}

.accordion1-main-wrapper .accordion-item {
    border: none;
}

.accordion1-main-wrapper .accordion-item .accordion-body {
    margin: 1rem 1.25rem;
    padding: 0 35px;
    border-left: 2px solid var(--color-primary);
}

/*============================ second accordion ==============================*/
.accordion2-wrapper {
    background-color: #232323;
}

.accordion2-wrapper .accor-heading h3 {
    color: #ffffff;
}

.accordion2-wrapper .accordion-button span {
    display: inline-block;
    margin-right: 20px;
}

.accordion2-wrapper .accordion-button:focus {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion2-wrapper .accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background-color: #ffffff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion2-wrapper .accordion-button:after {
    background-image: none;
}

.accordion2-wrapper .accordion-item {
    border: none;
    margin-top: 20px;
}

.accordion2-wrapper .accordion-item .accordion-header button {
    position: relative;
}

.accordion2-wrapper .accordion-item .accordion-header button:before {
    content: '';
    text-align: center;
    background: #232323;
    font-size: 14px;
    width: 15px;
    height: 1px;
    line-height: 24px;
    display: block;
    position: absolute;
    right: 13px;
}

.accordion2-wrapper .accordion-item .accordion-header button:after {
    content: '';
    text-align: center;
    background: #232323;
    font-size: 14px;
    width: 1px;
    height: 15px;
    line-height: 24px;
    display: block;
}

.accordion2-wrapper .accordion-item .accordion-header button:not(.collapsed):after {
    display: none;
}

/*============================ Third accordion ==============================*/
.accordion3-wrapper {
    background-color: #f7f7f7;
}

.accordion3-wrapper .accordion-button:focus {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion3-wrapper .accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background-color: #ffffff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion3-wrapper .accordion-button:after {
    background-image: none;
}

.accordion3-wrapper .accordion-item {
    border: none;
    margin-top: 20px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 15px #00000014;
    box-shadow: 0 0 15px #00000014;
}

.accordion3-wrapper .accordion-item .accordion-header button {
    position: relative;
}

.accordion3-wrapper .accordion-item .accordion-header button:after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    text-align: center;
    color: #111111;
    font-size: 14px;
    display: block;
}

.accordion3-wrapper .accordion-item .accordion-header button:not(.collapsed):after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

/*============================ Fourth accordion ==============================*/
.accordion4-wrapper .accordion-button:focus {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion4-wrapper .accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background-color: #ffffff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion4-wrapper .accordion-button:after {
    background-image: none;
}

.accordion4-wrapper .accordion-item {
    border: none;
    margin-top: 20px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 15px #00000014;
    box-shadow: 0 0 15px #00000014;
}

.accordion4-wrapper .accordion-item .accordion-header button {
    position: relative;
}

.accordion4-wrapper .accordion-item .accordion-header button:before {
    content: '+';
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    display: block;
    position: absolute;
    right: 23px;
    top: 15px;
    z-index: 9;
    color: #111111;
}

.accordion4-wrapper .accordion-item .accordion-header button:after {
    content: '';
    text-align: center;
    background: #f7f7f7;
    width: 20px;
    height: 20px;
    line-height: 24px;
    display: block;
}

.accordion4-wrapper .accordion-item .accordion-header button:not(.collapsed):after {
    background: var(--color-primary);
}

.accordion4-wrapper .accordion-item .accordion-header button:not(.collapsed):before {
    content: '-';
    right: 23px;
    color: #ffffff;
    font-size: 24px;
}

/*============================ Five accordion ==============================*/
.accordion5-wrapper {
    background-color: var(--color-primary);
}

.accordion5-wrapper .accor-heading h3 {
    color: #ffffff;
}

.accordion5-wrapper .accordion-button {
    background-color: transparent;
}

.accordion5-wrapper .accordion-button:focus {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion5-wrapper .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion5-wrapper .accordion-button:after {
    background-image: none;
}

.accordion5-wrapper .accordion-item {
    border: none;
    background-color: transparent;
}

.accordion5-wrapper .accordion-item .accordion-header button {
    position: relative;
    color: #ffffff;
    border-bottom: 1px solid var(--color-primary);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.accordion5-wrapper .accordion-item .accordion-header button:before {
    content: '+';
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    display: block;
    position: absolute;
    right: 23px;
    top: 10px;
    z-index: 9;
    color: #ffffff;
}

.accordion5-wrapper .accordion-item .accordion-header button:not(.collapsed) {
    border-bottom: none;
    background-color: var(--color-primary);
}

.accordion5-wrapper .accordion-item .accordion-header button:not(.collapsed):before {
    content: '-';
    right: 25px;
    font-size: 24px;
}

.accordion5-wrapper .accordion-item .accordion-body {
    background-color: var(--color-primary);
}

.accordion5-wrapper .accordion-item .accordion-body p {
    color: #ffffff;
}

/*=================================== ACCORDION PAGE END ===============================*/
/*======================BUTTON PAGE START ==============================*/
.section-heading {
    margin-bottom: 50px;
}

.section-heading h4 {
    font-size: 24px;
    text-align: center;
}

.button1-wrapper {
    text-align: center;
}

.button1-wrapper .btn1 {
    display: inline-block;
    width: auto;
    text-transform: uppercase;
    border: 2px solid var(--color-primary);
    background-color: var(--color-primary);
    color: #ffffff;
    margin: 0 6px;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.button1-wrapper .btn1:hover {
    background-color: #ffffff;
    color: var(--color-primary);
}

.button1-wrapper .btn1.xl-btn {
    padding: 16px 40px;
}

.button1-wrapper .btn1.lg-btn {
    padding: 12px 32px;
}

.button1-wrapper .btn1.md-btn {
    padding: 10px 26px;
}

.button1-wrapper .btn1.sm-btn {
    padding: 8px 22px;
}

.button1-wrapper .btn1.xs-btn {
    padding: 6px 16px;
}

/* second button section */
.button2-wrapper {
    text-align: center;
    background-color: #f7f7f7;
}

.button2-wrapper .btn2 {
    display: inline-block;
    width: auto;
    text-transform: uppercase;
    border: 2px solid #232323;
    background-color: #232323;
    color: #ffffff;
    margin: 0 6px;
    font-weight: 600;
    padding: 12px 32px;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.button2-wrapper .btn2:hover {
    background-color: #ffffff;
    color: #232323;
}

.button2-wrapper .btn2.radius1-btn {
    border-radius: 10px;
}

.button2-wrapper .btn2.radius2-btn {
    border-radius: 5px;
}

.button2-wrapper .btn2.rounded-btn {
    border-radius: 50px;
}

/* third button section */
.button3-wrapper {
    text-align: center;
    background-image: -webkit-gradient(linear, left bottom, right top, from(#80063F), color-stop(#FC035A), to(#FFBF00));
    background-image: linear-gradient(to top right, #80063F, #FC035A, #FFBF00);
}

.button3-wrapper .btn3 {
    display: inline-block;
    width: auto;
    text-transform: uppercase;
    border: 2px solid var(--color-primary);
    background-color: var(--color-primary);
    color: #ffffff;
    margin: 0 6px;
    font-weight: 600;
    padding: 12px 32px;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.button3-wrapper .btn3:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.button3-wrapper .btn3.gray-btn {
    background-color: #333333;
    border: 2px solid #333333;
    color: #ffffff;
}

.button3-wrapper .btn3.gray-btn:hover {
    background-color: transparent;
    color: #333333;
    border: 2px solid #333333;
}

.button3-wrapper .btn3.black-btn {
    background-color: #111111;
    border: 2px solid #111111;
    color: #ffffff;
}

.button3-wrapper .btn3.black-btn:hover {
    background-color: transparent;
    color: #232323;
    border: 2px solid #111111;
}

.button3-wrapper .btn3.white-btn {
    background-color: #ffffff;
    border: 2px solid #ffffff;
    color: #232323;
}

.button3-wrapper .btn3.white-btn:hover {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

/* fourth button section */
.button4-wrapper {
    text-align: center;
}

.button4-wrapper .btn4 {
    display: inline-block;
    width: auto;
    text-transform: uppercase;
    border: 2px solid var(--color-primary);
    background-color: transparent;
    color: #111111;
    margin: 0 6px;
    font-weight: 600;
    padding: 12px 32px;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.button4-wrapper .btn4:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.button4-wrapper .btn4.light-border {
    border-color: #dbdbdb;
    border-radius: 10px;
}

.button4-wrapper .btn4.light-border:hover {
    background-color: #232323;
    color: #ffffff;
    border-color: #232323;
}

.button4-wrapper .btn4.black-border {
    border-color: #111111;
    border-radius: 50px;
}

.button4-wrapper .btn4.black-border:hover {
    background-color: #111111;
    color: #ffffff;
}

/*fifth button section*/
.button5-wrapper {
    text-align: center;
    background-color: #232323;
}

.button5-wrapper .section-heading h4 {
    color: #ffffff;
}

.button5-wrapper .btn5 {
    display: inline-block;
    width: auto;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 6px;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 32px;
    text-decoration: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.button5-wrapper .btn5.gradient1 {
    background-image: -webkit-gradient(linear, left top, right top, from(#e42564), color-stop(#fa6259), to(#e42564));
    background-image: linear-gradient(to right, #e42564, #fa6259, #e42564);
    color: #fff;
    background-size: 200% auto;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.button5-wrapper .btn5.gradient1:hover {
    background-position: right center;
}

.button5-wrapper .btn5.gradient2 {
    background-image: -webkit-gradient(linear, left top, right top, from(#662D8C), color-stop(#ED1E79), to(#662D8C));
    background-image: linear-gradient(to right, #662D8C, #ED1E79, #662D8C);
    color: #fff;
    background-size: 200% auto;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.button5-wrapper .btn5.gradient2:hover {
    background-position: right center;
}

.button5-wrapper .btn5.gradient3 {
    background-image: -webkit-gradient(linear, left top, right top, from(#EA8D8D), color-stop(#A890FE), to(#EA8D8D));
    background-image: linear-gradient(to right, #EA8D8D, #A890FE, #EA8D8D);
    color: #fff;
    background-size: 200% auto;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.button5-wrapper .btn5.gradient3:hover {
    background-position: right center;
}

.button5-wrapper .btn5.gradient4 {
    background-image: -webkit-gradient(linear, left top, right top, from(#C33764), color-stop(#1D2671), to(#C33764));
    background-image: linear-gradient(to right, #C33764, #1D2671, #C33764);
    color: #fff;
    background-size: 200% auto;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.button5-wrapper .btn5.gradient4:hover {
    background-position: right center;
}

.button5-wrapper .btn5.gradient5 {
    background-image: -webkit-gradient(linear, left top, right top, from(#764BA2), color-stop(#667EEA), to(#764BA2));
    background-image: linear-gradient(to right, #764BA2, #667EEA, #764BA2);
    color: #fff;
    background-size: 200% auto;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.button5-wrapper .btn5.gradient5:hover {
    background-position: right center;
}

/*six button section*/
.button6-wrapper {
    text-align: center;
}

.button6-wrapper .btn6 {
    display: inline-block;
    width: auto;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 6px;
    font-weight: 600;
    border: 2px solid var(--color-primary);
    font-size: 14px;
    padding: 12px 32px;
    text-decoration: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.button6-wrapper .btn6 span {
    margin: 0 5px;
    color: #ffffff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.button6-wrapper .btn6.blog1 {
    background-color: var(--color-primary);
}

.button6-wrapper .btn6.blog1:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.button6-wrapper .btn6.blog1:hover span {
    color: var(--color-primary);
}

.button6-wrapper .btn6.checkout {
    background-color: #232323;
    border-color: #232323;
}

.button6-wrapper .btn6.checkout:hover {
    background-color: transparent;
    color: #232323;
}

.button6-wrapper .btn6.checkout:hover span {
    color: #232323;
}

.button6-wrapper .btn6.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background-size: 140% auto;
    border: none;
}

.button6-wrapper .btn6.instagram:hover {
    background-position: right center;
}

.button6-wrapper .btn6.explore {
    background-color: transparent;
    border-color: #232323;
    color: #232323;
}

.button6-wrapper .btn6.explore span {
    color: #232323;
}

.button6-wrapper .btn6.explore:hover {
    background-color: #232323;
    color: #ffffff;
}

.button6-wrapper .btn6.explore:hover span {
    color: #ffffff;
}

/*seven button section*/
.button7-wrapper {
    text-align: center;
    background-color: #f7f7f7;
}

.button8-wrapper {
    text-align: center;
    background-color: #232323;
}

.button8-wrapper .section-heading h4 {
    color: #ffffff;
}

.button8-wrapper .btn8 {
    background: none;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 12px 32px;
    position: relative;
    z-index: 9;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0 10px;
}

.button8-wrapper .btn8:hover {
    border-color: var(--color-primary);
}

.button8-wrapper .btn8:after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.button8-wrapper .btn8:after,
.button8-wrapper .btn8:before {
    background: var(--color-primary);
    content: '';
    position: absolute;
    z-index: -1;
}

.button8-wrapper .btn8.slide-1:after {
    height: 0;
    left: 0;
    top: 0;
    width: 100%;
}

.button8-wrapper .btn8.slide-1:hover:after {
    height: 100%;
}

.button8-wrapper .btn8.slide-2:after {
    height: 0;
    left: 0;
    bottom: 0;
    width: 100%;
}

.button8-wrapper .btn8.slide-2:hover:after {
    height: 100%;
}

.button8-wrapper .btn8.slide-3:after {
    height: 100%;
    left: 0;
    top: 0;
    width: 0;
}

.button8-wrapper .btn8.slide-3:hover:after {
    width: 100%;
}

.button8-wrapper .btn8.slide-4:after {
    height: 100%;
    right: 0;
    top: 0;
    width: 0;
}

.button8-wrapper .btn8.slide-4:hover:after {
    width: 100%;
}

.button8-wrapper .btn8.slide-5:after {
    height: 0;
    left: 50%;
    top: 50%;
    width: 0;
}

.button8-wrapper .btn8.slide-5:hover:after {
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.button8-wrapper .btn8.slide-6:before {
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.button8-wrapper .btn8.slide-6:after {
    background: #232323;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.button8-wrapper .btn8.slide-6:hover:after {
    height: 0;
    left: 50%;
    top: 50%;
    width: 0;
}

.button8-wrapper .btn8.slide-7 {
    overflow: hidden;
    color: #ffffff;
}

.button8-wrapper .btn8.slide-7:after {
    height: 100%;
    left: -45%;
    top: 0;
    -webkit-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    width: 0;
}

.button8-wrapper .btn8.slide-7:hover:after {
    height: 100%;
    width: 145%;
}

.button8-wrapper .extra-btns {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Nine button section */
.button9-wrapper {
    text-align: center;
}

.button9-wrapper .expan-rouded-btn {
    display: inline-block;
    text-transform: uppercase;
    color: #232323;
    margin: 0 6px;
    font-weight: 600;
    font-size: 14px;
    padding: 15px 28px 15px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.button9-wrapper .expan-rouded-btn span {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    z-index: -1;
    border-radius: 50px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    background-color: var(--color-primary);
}

.button9-wrapper .expan-rouded-btn:hover {
    color: #ffffff;
}

.button9-wrapper .expan-rouded-btn:hover span {
    width: 100%;
}

.button9-wrapper .expan-rouded-btn.squre span {
    border-radius: 5px !important;
    width: 90px;
}

.button9-wrapper .expan-rouded-btn.squre:hover {
    color: #ffffff;
}

.button9-wrapper .expan-rouded-btn.squre:hover span {
    width: 100%;
}

/*Ten button section*/
.button10-wrapper {
    text-align: center;
    background-color: #232323;
}

.button10-wrapper .section-heading h4 {
    color: #ffffff;
}

.button10-wrapper a {
    margin: 0 10px;
}

.button10-wrapper a:hover {
    opacity: .7;
}

.button10-wrapper .text-gradient {
    padding: 7px 0 2px;
    position: relative;
    border: 0;
    background: -webkit-gradient(linear, left top, right top, from(#b783ff), color-stop(#b783ff), color-stop(#fa7cc1), color-stop(#ff85a6), to(#ff9393));
    background: linear-gradient(to right, #b783ff, #b783ff, #fa7cc1, #ff85a6, #ff9393);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.button10-wrapper .text-gradient span {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#b783ff), color-stop(#b783ff), color-stop(#fa7cc1), color-stop(#ff85a6), to(#ff9393));
    background: linear-gradient(to right, #b783ff, #b783ff, #fa7cc1, #ff85a6, #ff9393);
}

.button10-wrapper .text-undeline {
    font-size: 16px;
    border-bottom: 2px solid #ffffff;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
}

.button10-wrapper .text-thin-underline {
    font-size: 16px;
    border-bottom: 1px solid #ffffff;
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
}

/*Eleven button section */
.button11-wrapper {
    text-align: center;
    background-color: #f7f7f7;
}

.button11-wrapper .btn11 {
    display: inline-block;
    width: auto;
    text-transform: uppercase;
    color: #111111;
    margin: 0 6px;
    font-weight: 600;
    padding: 12px 32px;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.button11-wrapper .btn11:hover {
    -webkit-box-shadow: 0 8px 30px -5px #00000033;
    box-shadow: 0 8px 30px -5px #00000033;
    -webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0);
}

.button11-wrapper .btn11.shadow-rounded {
    background-color: #ffffff;
    border-radius: 50px;
}

.button11-wrapper .btn11.shadow-squre {
    background-color: #232323;
    color: #ffffff;
}

/*Eleven button section*/
.button12-wrapper {
    text-align: center;
}

.button12-wrapper .flat-shadow-btn {
    display: inline-block;
    width: auto;
    text-transform: uppercase;
    border: 1px solid #232323;
    -webkit-box-shadow: 2px 2px 0 #232323;
    box-shadow: 2px 2px 0 #232323;
    color: #111111;
    margin: 0 6px;
    font-weight: 600;
    padding: 12px 32px;
    text-decoration: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.button12-wrapper .flat-shadow-btn:hover {
    background-color: #232323;
    color: #ffffff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*RESPONSIVE CSS*/
/*--width 1199 --*/
@media (max-width: 1199px) {
    .btn-sizes a {
        font-size: 14px;
    }
}

/*--width 991 --*/
@media (max-width: 991px) {
    .btn-sizes a {
        display: block !important;
        width: -webkit-max-content !important;
        width: -moz-max-content !important;
        width: max-content !important;
        margin: 15px auto !important;
        text-align: center !important;
    }

    .btn-sizes .extra-btns {
        display: block !important;
        margin: 15px auto !important;
    }
}

/*======================BUTTON PAGE END =======================*/
/*=====================================CLIENT PAGE START ===============================*/
.client1-wrapper {
    background-color: #f7f7f7;
    text-align: center;
}

.client1-wrapper a {
    display: block;
    text-align: center;
    padding: 40px 0;
    opacity: .5;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.client1-wrapper a:hover {
    background-color: #ffffff;
    opacity: 1;
}

.client2-wrapper {
    text-align: center;
}

.client2-wrapper a {
    display: inline-block;
}

.client2-wrapper a img {
    width: 100%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.client2-wrapper a img:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.client3-wrapper {
    background-color: #f7f7f7;
    text-align: center;
}

.client3-wrapper .hover-box {
    text-align: center;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 25px;
    position: relative;
    z-index: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.client3-wrapper .hover-box a {
    display: inline-block;
}

.client3-wrapper .hover-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    background-color: #ffffff;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-box-shadow: 0 0 15px #00000014;
    box-shadow: 0 0 15px #00000014;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.client3-wrapper .hover-box:hover .overlay {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.client4-wrapper {
    text-align: center;
}

.client4-wrapper .client-carousel .owl-carousel .owl-nav {
    display: block;
}

.client4-wrapper .client-carousel .owl-carousel .owl-nav button {
    height: 40px;
    width: 40px;
    background: #0a58ca;
    color: #fff;
    font-size: 14px;
    margin-top: 30px;
    border-radius: 50px;
}

.client4-wrapper .client-carousel .owl-carousel .item img {
    width: auto;
}

/*=================================== CLIENT PAGE END ===============================*/
/*======================== Google Map section ===================*/
.g-map1-section .h-500px {
    height: 500px;
}

/*=========================== TAB PAGE START ====================*/
/*------ tab-one ------*/
.tab-one-wrapper .tab-one .nav-tabs {
    border: none;
}

.tab-one-wrapper .tab-one .nav-tabs .nav-item {
    padding: 0px 25px;
}

.tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link {
    display: block;
    position: relative;
    text-transform: uppercase;
    color: #808080bf;
}

.tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link.active {
    border: none;
    border-bottom: 2px solid #232323;
    color: #232323;
}

.tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link:hover {
    border: none;
    color: #232323;
}

.tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link:hover::before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link::before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: 0.5s -webkit-transform ease;
    transition: 0.5s -webkit-transform ease;
    transition: 0.5s transform ease;
    transition: 0.5s transform ease, 0.5s -webkit-transform ease;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    background: #232323;
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
}

.tab-one-wrapper .tab-content .tab-one-home {
    margin: 60px 0 0 0;
}

.tab-one-wrapper .tab-content .tab-one-home .tab-one-content h4 {
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 20px;
}

.tab-one-wrapper .tab-content .tab-one-home .tab-one-content h1 {
    font-weight: bold;
    font-size: 32px;
}

.tab-one-wrapper .tab-content .tab-one-home .tab-one-content p {
    color: #808080d9;
    padding: 20px 0 0 0;
}

.tab-one-wrapper .tab-content .tab-one-home .tab-one-content a {
    border: 2px solid #232323;
    padding: 10px 30px;
    font-weight: 500;
    background-color: #232323;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 20px;
    display: inline-block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.tab-one-wrapper .tab-content .tab-one-home .tab-one-content a:hover {
    background-color: transparent;
    color: #232323;
}

.tab-one-wrapper .tab-content .tab-one-home .tab-one-img img {
    width: 100%;
}

/*-------- tab-two ------*/
.tab-two-wrapper {
    background-color: #f7f7f7;
}

.tab-two-wrapper .nav-pills .nav-item {
    padding: 0 25px;
}

.tab-two-wrapper .nav-pills .nav-item .nav-link {
    font-size: 18px;
    color: #808080;
}

.tab-two-wrapper .nav-pills .nav-item .nav-link i {
    display: block;
    margin-bottom: 10px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.tab-two-wrapper .nav-pills .nav-item .nav-link.active {
    background-color: transparent;
    color: var(--color-primary);
}

.tab-two-wrapper .nav-pills .nav-item .nav-link:hover {
    color: var(--color-primary);
}

.tab-two-wrapper .nav-pills .nav-item .nav-link:hover i {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.tab-two-wrapper .tab-content .tab-two-head {
    margin-top: 60px;
}

.tab-two-wrapper .tab-content .tab-two-head .tab-two-img img {
    width: 100%;
}

.tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper {
    padding-left: 35px;
}

.tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
}

.tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper a {
    border-bottom: 1px solid #232323;
    padding-bottom: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper a:hover {
    color: #232323;
}

.tab-two-wrapper .tab-content .tab-two-head .tab-two-content h6 {
    line-height: 26px;
    font-size: 20px;
}

.tab-two-wrapper .tab-content .tab-two-head .tab-two-content p {
    padding: 12px 0 0 0;
}

/*------ tab-two-end -----*/
/*------- tab-three-start ------*/
.tab-three-wrapper .nav-pills .nav-item {
    padding: 0 30px;
}

.tab-three-wrapper .nav-pills .nav-item .nav-link {
    background-color: transparent;
    padding: 10px 35px;
    color: gray;
}

.tab-three-wrapper .nav-pills .nav-item .nav-link.active {
    background: #ffffff;
    -webkit-box-shadow: 0 0 15px 0 #17171714;
    box-shadow: 0 0 15px 0 #17171714;
    border-radius: 20px;
    color: #232323;
}

.tab-three-wrapper .nav-pills .nav-item .nav-link:hover {
    color: #232323;
}

.tab-three-wrapper .tab-content .tab-three-accordion {
    background-color: #ffffff;
    padding: 30px 0;
}

.tab-three-wrapper .tab-content .tab-accordion .accordion-item .accordion-header button {
    background-color: #232323;
    color: #ffffff;
}

.tab-three-wrapper .tab-content .tab-accordion .accordion-item .accordion-header button::after {
    color: #ffffff;
}

.tab-three-wrapper .tab-content .tab-accordion .accordion-item .accordion-body {
    background-color: #232323;
}

/*-------- tab-four-start --------*/
/*------- tab-five-start ---------*/
.tab-five-wrapper .nav-pills {
    border-top: 1px solid #80808082;
    border-bottom: 1px solid #80808082;
    padding: 20px 0 0;
}

.tab-five-wrapper .nav-pills .nav-item .nav-link {
    background-color: transparent;
    color: #232323;
    position: relative;
    border-bottom: 3px solid transparent;
    padding-bottom: 20px;
    border-radius: 0px;
}

.tab-five-wrapper .nav-pills .nav-item .nav-link:hover {
    opacity: 1;
    border-bottom: 3px solid #ff7a56;
    color: #ff7a56;
}

.tab-five-wrapper .nav-pills .nav-item .nav-link.active {
    border-bottom: 3px solid #ff7a56;
    color: #ff7a56;
}

.tab-five-wrapper .tab-content .tab-five-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 60px;
}

.tab-five-wrapper .tab-content .tab-five-content {
    margin-left: 100px;
}

.tab-five-wrapper .tab-content .tab-five-content h2 {
    padding-bottom: 50px;
    font-size: 32px;
}

.tab-five-wrapper .tab-content .tab-five-content .tab-five-strategic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tab-five-wrapper .tab-content .tab-five-content .tab-five-strategic .tab-icon i {
    font-size: 30px;
    color: #ff7a56;
}

.tab-five-wrapper .tab-content .tab-five-content .straregic-two {
    margin-top: 50px;
    margin-bottom: 50px;
}

.tab-five-wrapper .tab-content .tab-five-content .strategic-content {
    margin-left: 25px;
}

.tab-five-wrapper .tab-content .tab-five-content .strategic-content p {
    max-width: 350px;
}

.tab-five-wrapper .tab-content .tab-five-content a {
    border-bottom: 2px solid #232323;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.tab-five-wrapper .tab-content .tab-five-content a:hover {
    color: #808080c2;
}

@media (max-width: 991px) {
    .tab-five-wrapper .tab-content .tab-five-head {
        display: block;
    }

    .tab-five-wrapper .tab-content .tab-five-content {
        margin-left: 0px;
        margin-top: 30px;
    }
}

/*==================== FORM PAGE START ====================*/
/*--------- form-one-start ---------*/
.form-control {
    padding: 12px 10px;
}

.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-btn {
    background-image: -webkit-gradient(linear, left top, right top, from(#662D8C), color-stop(#ED1E79), to(#662D8C));
    background-image: linear-gradient(to right, #662D8C, #ED1E79, #662D8C);
    color: #fff;
    background-size: 200% auto;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
    width: auto;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 6px;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 32px;
    text-decoration: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    border: none;
}

.form-btn.btn-two {
    background-image: -webkit-gradient(linear, left top, right top, from(#7c5236), color-stop(#3e5810), to(#6e5432));
    background-image: linear-gradient(to right, #7c5236, #3e5810, #6e5432);
    width: 100%;
}

.form-btn.send-btn {
    float: right;
    margin-top: 20px;
}

.form-btn.float-btn {
    background-image: -webkit-gradient(linear, left top, right top, from(#e42564), color-stop(#fa6259), to(#e42564));
    background-image: linear-gradient(to right, #e42564, #fa6259, #e42564);
    margin-top: 20px;
}

.form-btn:hover {
    background-position: right center;
}

.form-one-wrapper .form-one form input {
    padding: 12px 10px;
}

.form-one-wrapper .form-one form textarea {
    height: 110px;
}

.form-one-wrapper .form-one .form-control:focus {
    border: 1px solid #86b7fe;
}

/*--------- form-two-start ---------*/
.form-two-wrapper {
    background-image: url("../images/form/bg-two.jpg");
    background-size: cover;
    position: relative;
}

.form-two-wrapper .form-two form {
    background-color: #ffffff;
    padding: 40px 30px;
    -webkit-box-shadow: 0 0 30px #00000014;
    box-shadow: 0 0 30px #00000014;
}

.form-two-wrapper .form-two .form-control:focus {
    border: 1px solid #86b7fe;
}

/*------- form-three-start --------*/
.form-three-wrapper .form-three form textarea {
    height: 195px;
}

.form-three-wrapper .form-three .form-control:focus {
    border: 1px solid #86b7fe;
}

/*----- form-four-start ------*/
.form-four-wrapper {
    background-color: #1f232c;
}

.form-four-wrapper .section-heading h4 {
    color: #ffffff;
}

.form-four-wrapper .form-four form input {
    background: transparent;
    border-bottom: 1px solid #80808087;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0px;
    color: #ffffff;
    padding: 20px 10px;
}

.form-four-wrapper .form-four form input::-webkit-input-placeholder {
    color: gray;
}

.form-four-wrapper .form-four form input:-ms-input-placeholder {
    color: gray;
}

.form-four-wrapper .form-four form input::-ms-input-placeholder {
    color: gray;
}

.form-four-wrapper .form-four form input::placeholder {
    color: gray;
}

.form-four-wrapper .form-four form .form-check-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-four-wrapper .form-four form .check-btn {
    font-size: 14px;
    color: gray;
    margin-left: 8px;
}

.form-four-wrapper .form-four form textarea {
    background: transparent;
    border-bottom: 1px solid #80808087;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0px;
    color: #ffffff;
}

.form-four-wrapper .form-four .form-control:focus {
    border: 1px solid #86b7fe;
}

.form-five .form-control:focus {
    border: 1px solid #86b7fe;
}

/*========================== FORM PAGE END ====================*/
/*===================== COUNTER PAGE START ==================*/
/*------- counter-one-start -------*/
.counter-one-wrapper .counter-one {
    text-align: center;
}

.counter-one-wrapper .counter-one .our-progress {
    margin-top: 20px;
}

.counter-one-wrapper .counter-one .our-progress .chart-one {
    position: relative;
    margin-bottom: 15px;
}

.counter-one-wrapper .counter-one .our-progress h4 {
    font-size: 24px;
    line-height: 35px;
}

.counter-one-wrapper .percent {
    position: absolute;
    top: 38%;
    left: 0;
    right: 0;
    margin: 0px auto;
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    color: #111111;
    letter-spacing: 3px;
}

.counter-one-wrapper .percent::after {
    content: '%';
    font-size: 18px;
    position: absolute;
    margin-top: -5px;
}

/*------ counter-two-start -------*/
.counter-two-wrapper {
    background-color: #f9f9f9;
}

.counter-two-wrapper .counter-two {
    text-align: center;
}

.counter-two-wrapper .counter-two .our-progress {
    margin-top: 20px;
}

.counter-two-wrapper .counter-two .our-progress .chart-two-one,
.counter-two-wrapper .counter-two .our-progress .chart-two-two,
.counter-two-wrapper .counter-two .our-progress .chart-two-three,
.counter-two-wrapper .counter-two .our-progress .chart-two-four {
    position: relative;
    margin-bottom: 15px;
}

.counter-two-wrapper .counter-two .our-progress h4 {
    font-size: 24px;
    line-height: 35px;
}

.counter-two-wrapper .percent-one {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    margin: 0px auto;
    height: 80px;
    width: 80px;
    background-color: var(--color-primary);
    border-radius: 50%;
    font-size: 24px;
    line-height: 80px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 3px;
}

.counter-two-wrapper .percent-one::after {
    content: '%';
    font-size: 18px;
    position: absolute;
    color: #fff;
}

.counter-two-wrapper .percent-one.percent-two {
    background-color: #7197b3;
}

.counter-two-wrapper .percent-one.percent-three {
    background-color: #73ca8d;
}

.counter-two-wrapper .percent-one.percent-four {
    background-color: #ea6a38;
}

/*------ counter-three-start -------*/
.counter-three-wrapper {
    background-color: #1f232c;
}

.counter-three-wrapper .section-heading h4 {
    color: #ffffff;
}

.counter-three-wrapper .counter-three .our-progress {
    margin-top: 20px;
    text-align: center;
}

.counter-three-wrapper .counter-three .our-progress .chart-three h2 {
    font-size: 45px;
    color: #ffffff;
    display: inline-block;
}

.counter-three-wrapper .counter-three .our-progress .chart-three .count-plus {
    color: var(--color-primary);
    font-size: 25px;
    font-weight: 700;
    margin-left: 5px;
    position: relative;
    top: -20px;
}

.counter-three-wrapper .counter-three .our-progress .chart-three .counter-head {
    clear: both;
}

.counter-three-wrapper .counter-three .our-progress .chart-three .counter-head p {
    font-size: 20px;
    text-transform: uppercase;
}

/*------ counter-four-start -------*/
.counter-four-wrapper .counter-four {
    text-align: center;
}

.counter-four-wrapper .counter-four .our-progress-one {
    margin-top: 20px;
    background-color: var(--color-primary);
    border-radius: 5px;
}

.counter-four-wrapper .counter-four .our-progress-one h2 {
    font-size: 18px;
    line-height: 24px;
    padding-top: 30px;
}

.counter-four-wrapper .counter-four .our-progress-one h2 a {
    color: #ffffff;
}

.counter-four-wrapper .counter-four .our-progress-one .chart-four-1st,
.counter-four-wrapper .counter-four .our-progress-one .chart-four-2nd,
.counter-four-wrapper .counter-four .our-progress-one .chart-four-3rd,
.counter-four-wrapper .counter-four .our-progress-one .chart-four-4th {
    position: relative;
    padding: 32px 0;
}

.counter-four-wrapper .counter-four .our-progress-one.our-progress-two {
    margin-top: 20px;
    background-color: #7197b3;
}

.counter-four-wrapper .counter-four .our-progress-one.our-progress-three {
    margin-top: 20px;
    background-color: #73ca8d;
}

.counter-four-wrapper .counter-four .our-progress-one.our-progress-four {
    margin-top: 20px;
    background-color: #ea6a38;
}

.counter-four-wrapper .percent {
    position: absolute;
    top: 42%;
    left: 0;
    right: 0;
    margin: 0px auto;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 3px;
}

.counter-four-wrapper .percent::after {
    content: '%';
    font-size: 18px;
    position: absolute;
    color: #fff;
}

/*===================== COUNTER PAGE END ==================*/
/*================= COUNT-DOWN PAGE START ================*/
/*-------- countdown-first-start --------*/
.count-one-wrapper #countdown-one {
    text-align: center;
    background: #222;
    background-image: -o-linear-gradient(top, #222, #333, #333, #222);
    border: 1px solid #111;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
    margin: auto;
    padding: 40px 0;
    position: relative;
}

.count-one-wrapper #countdown-one::before {
    content: '';
    width: 8px;
    height: 65px;
    background: #444;
    background-image: -o-linear-gradient(top, #555, #444, #444, #555);
    border: 1px solid #111;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    display: block;
    position: absolute;
    top: 60px;
    left: -9px;
}

.count-one-wrapper #countdown-one::after {
    content: '';
    width: 8px;
    height: 65px;
    background: #444;
    background-image: -o-linear-gradient(top, #555, #444, #444, #555);
    border: 1px solid #111;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    display: block;
    position: absolute;
    top: 60px;
    right: -9px;
}

.count-one-wrapper #countdown-one #tiles span {
    width: 92px;
    max-width: 92px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: #111111;
    background-color: #ddd;
    background-image: -o-linear-gradient(top, #bbb, #eee);
    border-top: 1px solid #fff;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7);
    margin: 0 7px;
    padding: 18px 0;
    display: inline-block;
    position: relative;
}

.count-one-wrapper #countdown-one #tiles span::before {
    content: '';
    width: 100%;
    height: 13px;
    background: #111;
    display: block;
    padding: 0 3px;
    position: absolute;
    top: 41%;
    left: -3px;
    z-index: -1;
}

.count-one-wrapper #countdown-one #tiles span::after {
    content: '';
    width: 100%;
    height: 1px;
    background: #eee;
    border-top: 1px solid #333;
    display: block;
    position: absolute;
    top: 48%;
    left: 0;
}

.count-one-wrapper #countdown-one .labels {
    text-align: center;
    margin-top: 13px;
}

.count-one-wrapper #countdown-one .labels li {
    width: 102px;
    font: bold 15px 'Droid Sans', Arial, sans-serif;
    color: #f47321;
    text-shadow: 1px 1px 0px #000;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
}

/*---- count-down-two-start -----*/
.count-two-wrapper {
    text-align: center;
    background-color: #232323;
}

.count-two-wrapper .section-heading h4 {
    color: #ffffff;
}

.count-two-wrapper div {
    display: inline-block;
    line-height: 1;
    padding: 20px;
    font-size: 40px;
}

.count-two-wrapper span {
    display: block;
    font-size: 20px;
    color: white;
}

#days {
    font-size: 100px;
    color: #db4844;
}

#hours {
    font-size: 100px;
    color: #f07c22;
}

#minutes {
    font-size: 100px;
    color: #f6da74;
}

#seconds {
    font-size: 50px;
    color: #abcd58;
}

/*================= PRICING PAGE START ================*/
/*-------- pricing-first-start --------*/
.price-btn {
    border: 2px solid #262b35;
    padding: 8px 22px;
    border-radius: 4px;
    margin-top: 15px;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.price-btn:hover {
    color: #ffffff;
    background-color: #262b35;
}

.price-btn.price-gradient {
    background-image: -webkit-gradient(linear, left top, right top, from(#ec606c), color-stop(#eb7242), to(#ec606c));
    background-image: linear-gradient(to right, #ec606c, #eb7242, #ec606c);
    color: #fff;
    background-size: 200% auto;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
}

.price-btn.price-gradient:hover {
    background-position: right center;
}

.pricing-one-wrapper .pricing-one .pricing-table {
    text-align: center;
    padding: 65px;
}

.pricing-one-wrapper .pricing-one .pricing-table .pricing-head h5 {
    color: #374162;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 0px;
}

.pricing-one-wrapper .pricing-one .pricing-table .pricing-head span {
    font-size: 13px;
    text-transform: uppercase;
    color: gray;
}

.pricing-one-wrapper .pricing-one .pricing-table .pricing-head h2 {
    margin-top: 40px;
    color: #374162;
}

.pricing-one-wrapper .pricing-one .pricing-table .pricing-menu {
    padding: 30px 0;
}

.pricing-one-wrapper .pricing-one .pricing-table .pricing-menu ul li {
    color: gray;
    padding: 10px 0;
    border-bottom: 1px solid #8080806b;
}

.pricing-one-wrapper .pricing-one .pricing-table .pricing-menu ul li span {
    color: #111111;
    font-weight: bold;
}

.pricing-one-wrapper .pricing-one .pricing-table .pricing-menu ul li:last-child {
    border-bottom: none;
}

.pricing-one-wrapper .pricing-one.pricing-two {
    -webkit-box-shadow: 0 0 30px #00000014;
    box-shadow: 0 0 30px #00000014;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

/*-------- pricing-two-start --------*/
.box-two {
    padding-right: 0px;
}

.box-two-left {
    padding-left: 0px;
}

.pricing-two-wrapper .pricing-two .pricing-table-two {
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    text-align: center;
}

.pricing-two-wrapper .pricing-two .pricing-table-two .price-two-head {
    background-color: #f7f7f7;
    padding: 13px;
}

.pricing-two-wrapper .pricing-two .pricing-table-two .price-two-head h6 {
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 0px;
}

.pricing-two-wrapper .pricing-two .pricing-table-two .pricing-body {
    padding: 40px 0;
}

.pricing-two-wrapper .pricing-two .pricing-table-two .pricing-body .price-icon i {
    font-size: 35px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.pricing-two-wrapper .pricing-two .pricing-table-two .pricing-body .pricing-menu {
    padding: 30px 0;
}

.pricing-two-wrapper .pricing-two .pricing-table-two .pricing-body .pricing-menu ul li {
    color: gray;
    padding: 15px 0;
    border-bottom: 1px solid #8080806b;
}

.pricing-two-wrapper .pricing-two .pricing-table-two .pricing-body .pricing-menu ul li span {
    color: #111111;
    font-weight: bold;
}

.pricing-two-wrapper .pricing-two .pricing-table-two .pricing-body .pricing-menu ul li:last-child {
    border-bottom: none;
}

.pricing-two-wrapper .pricing-two .pricing-table-two.box-two-shadow {
    -webkit-box-shadow: 0 0 30px #00000014;
    box-shadow: 0 0 30px #00000014;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

/*-------- pricing-three-start --------*/
.pricing-three-wrapper .pricing-three .pricing-table-three {
    -webkit-box-shadow: 0 0 25px #00000014;
    box-shadow: 0 0 25px #00000014;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    text-align: center;
    border-radius: 5px;
    padding: 60px;
}

.pricing-three-wrapper .pricing-three .pricing-table-three .price-three-head span {
    font-size: 14px;
    line-height: 20px;
    color: #828282;
    margin-bottom: 10px;
}

.pricing-three-wrapper .pricing-three .pricing-table-three .price-three-head h6 {
    text-transform: uppercase;
    font-size: 18px;
    margin: 12px 0 25px 0;
}

.pricing-three-wrapper .pricing-three .pricing-table-three .price-three-head h2 {
    font-size: 36px;
    color: #0b4ebd;
}

.pricing-three-wrapper .pricing-three .pricing-table-three .price-three-head strong {
    text-transform: uppercase;
    font-weight: 500;
}

.pricing-three-wrapper .pricing-three .pricing-table-three .pricing-body-three {
    padding: 30px 0;
}

.pricing-three-wrapper .pricing-three .pricing-table-three .pricing-body-three ul li {
    color: #828282;
    padding: 20px 0;
    border-bottom: 1px solid #8282827d;
}

.pricing-three-wrapper .pricing-three .pricing-table-three .pricing-body-three ul li:last-child {
    border-bottom: none;
}

.pricing-three-wrapper .pricing-three .pricing-table-three .price-btn-three {
    background-color: #232323;
    color: #ffffff;
    padding: 10px 40px;
    text-transform: uppercase;
    border: 2px solid #232323;
    border-radius: 0px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.pricing-three-wrapper .pricing-three .pricing-table-three .price-btn-three:hover {
    background-color: transparent;
    color: #232323;
}

.pricing-three-wrapper .pricing-three .pricing-table-three .price-btn-three.btn-clr {
    background-color: #ffffff;
    border: 2px solid #ffffff;
    color: #232323;
}

.pricing-three-wrapper .pricing-three .pricing-table-three .price-btn-three.btn-clr:hover {
    color: #ffffff;
    background-color: transparent;
}

.pricing-three-wrapper .pricing-three .pricing-table-three.price-bg {
    padding-top: 70px;
    padding-bottom: 70px;
    background: -webkit-gradient(linear, left top, right top, from(#020024), color-stop(62%, #12408b), to(#4285f4));
    background: linear-gradient(90deg, #020024 0%, #12408b 62%, #4285f4 100%);
}

.pricing-three-wrapper .pricing-three .pricing-table-three.price-bg h6 {
    color: #ffffff;
}

.pricing-three-wrapper .pricing-three .pricing-table-three.price-bg h2 {
    color: #ffffff;
}

.pricing-three-wrapper .pricing-three .pricing-table-three.price-bg strong {
    color: #ffffff;
}

.pricing-three-wrapper .pricing-three .pricing-table-three.price-bg .pricing-body-three {
    padding: 30px 0;
}

.pricing-three-wrapper .pricing-three .pricing-table-three.price-bg .pricing-body-three ul li {
    color: #ffffff;
}

/*-/================= TESTIMONIAL PAGE START ================*/
/*-------- testimonial-first-start --------*/
.testimonial-one-wrapper {
    background-color: #f7f7f7;
}

.testimonial-one-wrapper .testimonial-one {
    background-color: #ffffff;
}

.testimonial-one-wrapper .testimonial-one:hover {
    -webkit-box-shadow: 0 0 20px #00000012;
    box-shadow: 0 0 20px #00000012;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.testimonial-one-wrapper .testimonial-one .test-img img {
    width: 100%;
}

.testimonial-one-wrapper .testimonial-one .test-content {
    text-align: center;
    position: relative;
    padding: 45px 20px;
}

.testimonial-one-wrapper .testimonial-one .test-content h6 {
    font-size: 22px;
    line-height: 40px;
}

.testimonial-one-wrapper .testimonial-one .test-content .test-icon {
    height: 75px;
    width: 75px;
    line-height: 71px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 25px #0000000d;
    box-shadow: 0 0 25px #0000000d;
    position: absolute;
    top: 0;
    left: 50%;
    background: #ffff;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.testimonial-one-wrapper .testimonial-one .test-content .test-icon i {
    background: -webkit-gradient(linear, left top, right top, from(#b783ff), color-stop(#b783ff), color-stop(#fa7cc1), color-stop(#ff85a6), to(#ff9393));
    background: linear-gradient(to right, #b783ff, #b783ff, #fa7cc1, #ff85a6, #ff9393);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 25px;
}

.testimonial-one-wrapper .testimonial-one .test-content span {
    color: #808080c2;
    font-weight: 500;
}

/*------------ testimonial-two -----------*/
.testimonial-two-wrapper {
    background-color: #232323;
}

.testimonial-two-wrapper .section-heading h4 {
    color: #ffffff;
}

.testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-content {
    padding: 20px;
    position: relative;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 20px #00000014;
    box-shadow: 0 0 20px #00000014;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-content::before {
    content: '';
    display: block;
    position: absolute;
    border-style: solid;
    height: 0;
    width: 0;
    border-color: #ffffff transparent transparent;
    border-width: 27px 10px 0;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    bottom: -19px;
    left: 50px;
    z-index: 1;
    -webkit-transform: rotate(27deg);
    transform: rotate(27deg);
}

.testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-content:hover {
    -webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0);
}

.testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-img img {
    width: 80px;
}

.testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-img .slider-head {
    margin-left: 22px;
}

.testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-img .slider-head h6 {
    color: #ffffff;
    margin-bottom: 2px;
    font-size: 22px;
}

.testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-img .slider-head span {
    color: #808080d9;
}

.testimonial-two-wrapper .slider-test .owl-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.testimonial-two-wrapper .slider-test .owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 50%;
    margin: 5px;
}

.testimonial-two-wrapper .slider-test .owl-carousel .owl-dots .owl-dot.active span {
    border: 2px solid #ffffff;
    background-color: #ffffff;
}

.testimonial-two-wrapper .slider-test .owl-carousel .owl-nav {
    margin-top: 10px;
    text-align: center;
}

.testimonial-two-wrapper .slider-test .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -52px;
    top: 220px;
}

.testimonial-two-wrapper .slider-test .owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: -52px;
    top: 220px;
}

/*--------- testimonial-three-start ---------*/
.testimonial-three-wrapper {
    background-color: #dbdbdb;
}

.testimonial-three-wrapper .slider-two-wrapper {
    background-color: #f7f7f7;
    position: relative;
    padding: 45px;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

.testimonial-three-wrapper .slider-two-wrapper:hover {
    -webkit-box-shadow: 0 0 15px #00000012;
    box-shadow: 0 0 15px #00000012;
    background: #ffffff;
}

.testimonial-three-wrapper .slider-two-wrapper:hover .slider-quote {
    -webkit-transform: translateY(-50%) rotateY(-180deg) rotateX(-180deg);
    transform: translateY(-50%) rotateY(-180deg) rotateX(-180deg);
}

.testimonial-three-wrapper .slider-two-wrapper .slider-quote {
    position: absolute;
    top: 0;
    -webkit-transform: translateY(-50%) rotateY(0) rotateX(0);
    transform: translateY(-50%) rotateY(0) rotateX(0);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.testimonial-three-wrapper .slider-two-wrapper .slider-quote i {
    font-size: 35px;
    color: #1a5cc9;
}

.testimonial-three-wrapper .slider-two-wrapper .slider-two-content {
    border-bottom: 1px solid #80808069;
    padding-bottom: 20px;
    display: inline-block;
}

.testimonial-three-wrapper .slider-two-wrapper .slider-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}

.testimonial-three-wrapper .slider-two-wrapper .slider-author img {
    width: 50px;
}

.testimonial-three-wrapper .slider-two-wrapper .slider-author .author-name {
    margin-left: 15px;
}

.testimonial-three-wrapper .slider-two-wrapper .slider-author .author-name h6 {
    margin-bottom: 0px;
    font-size: 22px;
}

.testimonial-three-wrapper .slider-two-wrapper .slider-author .author-name span {
    color: #999999;
    font-size: 14px;
    font-weight: 500;
}

/*------- testimonial-four-start -------*/
.testimonial-four-wrapper .test-bg {
    background-image: url("../images/testimonial/image_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 100px 0;
    width: 100%;
}

.testimonial-four-wrapper .test-bg .test-bg-overlay {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    background: #121517;
    opacity: 0.7;
}

.testimonial-four-wrapper .forth-slider .owl-carousel .owl-item img {
    width: 158px;
}

.testimonial-four-wrapper .forth-slider .owl-carousel .owl-item .testimonial-slider .slider-img-wrapper {
    float: left;
    width: 15%;
}

.testimonial-four-wrapper .forth-slider .owl-carousel .owl-item .testimonial-slider .test-content {
    float: left;
    width: calc(100% - 15%);
    padding-left: 30px;
    padding-top: 45px;
}

.testimonial-four-wrapper .forth-slider .owl-carousel .owl-item .testimonial-slider .test-content p {
    color: #ffffff;
    font-style: italic;
}

.testimonial-four-wrapper .forth-slider .owl-carousel .owl-item .testimonial-slider .test-content h3 {
    color: #ffffff;
    font-size: 22px;
}

.testimonial-four-wrapper .forth-slider .owl-carousel .owl-item .testimonial-slider .test-content span {
    color: #3f80ea;
}

.testimonial-four-wrapper .forth-slider .owl-carousel .owl-dots {
    text-align: center;
}

.testimonial-four-wrapper .forth-slider .owl-carousel button.owl-dot span {
    width: 10px;
    height: 10px;
    background: #676b6e;
    border-radius: 50px;
    margin: 10px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.testimonial-four-wrapper .forth-slider .owl-carousel button.owl-dot span:hover {
    background: var(--color-primary);
    width: 13px;
    height: 13px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.testimonial-four-wrapper .forth-slider .owl-carousel button.owl-dot.active span {
    background: var(--color-primary);
    width: 13px;
    height: 13px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

/*------- testimonial-five-start -------*/
.testimonial-five-wrapper .testimonial-five .owl-carousel .item .test-five-wrapper {
    text-align: center;
}

.testimonial-five-wrapper .testimonial-five .owl-carousel .item .test-five-wrapper h4 {
    font-size: 22px;
}

.testimonial-five-wrapper .testimonial-five .owl-carousel .item .test-five-wrapper .test-five-icon {
    margin-bottom: 20px;
}

.testimonial-five-wrapper .testimonial-five .owl-carousel .item .test-five-wrapper .test-five-icon i {
    color: var(--color-primary);
    font-size: 40px;
}

.testimonial-five-wrapper .testimonial-five .owl-carousel .item .test-five-wrapper p {
    max-width: 925px;
    font-style: italic;
    margin: 0 auto;
    display: block;
    padding: 10px 0;
}

.testimonial-five-wrapper .testimonial-five .owl-carousel .item .test-five-wrapper h6 {
    margin: 10px 0;
    font-size: 20px;
    color: var(--color-primary);
}

.testimonial-five-wrapper .testimonial-five .owl-carousel .owl-nav {
    display: block;
    margin-top: 10px;
    text-align: center;
}

.testimonial-five-wrapper .testimonial-five .owl-carousel .owl-nav .owl-prev,
.testimonial-five-wrapper .testimonial-five .owl-carousel .owl-nav .owl-next {
    background: #f7f7f7;
    color: #999999;
    -webkit-transition: all .5s;
    transition: all .5s;
    position: absolute;
    top: 220px;
}

.testimonial-five-wrapper .testimonial-five .owl-carousel .owl-nav .owl-prev {
    left: -52px;
}

.testimonial-five-wrapper .testimonial-five .owl-carousel .owl-nav .owl-next {
    right: -52px;
}

/*--width 991 --*/
@media (max-width: 991px) {
    .tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper {
        padding: 20px 0;
    }

    .tab-one-wrapper .tab-content .tab-one-home .tab-one-content h4 {
        margin-top: 20px;
    }

    .testimonial-three-wrapper .slider-two-wrapper {
        margin: 30px 0;
    }
}

@media (max-width: 767px) {
    .tab-one-wrapper .tab-one .nav-tabs .nav-item {
        padding: 0px 5px;
    }

    .tab-two-wrapper .nav-pills .nav-item {
        padding: 0 3px;
    }

    .tab-three-wrapper .nav-pills .nav-item {
        padding: 0 3px;
    }
}

@media (max-width: 580px) {
    .tab-one-wrapper .tab-one .nav {
        display: block;
    }

    .tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link {
        margin: 0 auto;
    }

    .tab-two-wrapper .nav {
        display: block;
    }

    .tab-two-wrapper .nav-pills .nav-item .nav-link {
        margin: 0 auto;
    }

    .tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper h2 {
        font-size: 24px;
    }

    .tab-three-wrapper .nav {
        display: block;
    }

    .tab-three-wrapper .nav-pills .nav-item .nav-link {
        margin: 10px auto;
    }

    .tab-five-wrapper .nav {
        display: block;
    }

    .tab-five-wrapper .nav-pills .nav-item .nav-link {
        margin: 8px auto;
        padding-bottom: 10px;
    }

    .tab-five-wrapper .tab-content .tab-five-img img {
        width: 100%;
    }
}

/*--------- ALERT PAGE START ---------*/
.al-section-1 .alert-section-1 {
    margin-top: 40px;
}

.al-section-1 .alert-section-1 .alert-icon {
    font-size: 18px;
    margin-right: 15px;
    color: #797979;
}

.al-section-1 .alert-section-1 .envelope-color {
    color: #797979;
}

.al-section-1 .alert-section-1 .triangle-color {
    color: #eb768c;
}

.al-section-1 .alert-section-1 .umbrella-color {
    color: #31aae2;
}

.al-section-1 .alert-section-1 .bell-color {
    color: #f0c440;
}

.al-section-1 .alert-section-1 .check-color {
    color: #73c8b7;
}

.al-section-1 .alert-section-1 .bullhorn-color {
    color: #5581c4;
}

.al-section-1 .alert-section-1 p {
    font-size: 18px;
}

/*--------section-top-padding------*/
.al-section-2 {
    background-color: #f9f9f9;
}

.al-section-2 span i {
    padding: 24px;
}

.al-section-2 .alert-img {
    float: left;
    padding: 0px 25px;
}

.al-section-2 .alert-img span {
    display: inline-block;
    width: 70px;
    height: 70px;
}

.al-section-2 .alert-content {
    margin-left: 115px;
}

.al-section-2 .alert-content h4 {
    font-size: 24px;
    line-height: 35px;
}

.al-section-2 .alert-light {
    padding: 30px;
    margin-top: 40px;
}

.al-section-2 .envelope-color {
    background-color: #797979;
    color: #fff;
    border-radius: 40px;
}

.al-section-2 .triangle-color {
    background-color: #eb768c;
    color: #fff;
    border-radius: 40px;
}

.al-section-2 .umbrella-color {
    background-color: #31aae2;
    color: #fff;
    border-radius: 40px;
}

.al-section-2 .bell-color {
    background-color: #f0c440;
    color: #fff;
    border-radius: 40px;
}

.al-section-2 .check-color {
    background-color: #73c8b7;
    color: #fff;
    border-radius: 40px;
}

.al-section-2 .bullhorn-color {
    background-color: #5581c4;
    color: #fff;
    border-radius: 40px;
}

/*--------section-top-padding------*/
.al-section-3 span i {
    padding: 21px;
    color: #fff;
}

.al-section-3 .alert-img {
    float: left;
    padding: 0px 25px;
}

.al-section-3 .alert-img span {
    display: inline-block;
    width: 70px;
    height: 70px;
    border: 3px solid #fff;
    border-radius: 40px;
    line-height: 70px;
    text-align: center;
}

.al-section-3 .alert-light {
    padding: 30px;
    margin-top: 40px;
}

.al-section-3 .envelope-color {
    background-color: #797979;
    color: #fff;
}

.al-section-3 .triangle-color {
    background-color: #eb768c;
    color: #fff;
}

.al-section-3 .umbrella-color {
    background-color: #31aae2;
    color: #fff;
}

.al-section-3 .bell-color {
    background-color: #f0c440;
    color: #fff;
}

.al-section-3 .check-color {
    background-color: #73c8b7;
    color: #fff;
}

.al-section-3 .bullhorn-color {
    background-color: #5581c4;
    color: #fff;
}

.al-section-3 .alert-content {
    margin-left: 115px;
}

.al-section-3 .alert-content p {
    color: #ffffff;
}

.al-section-3 .alert-content h4 {
    color: #fff;
    font-size: 24px;
    line-height: 35px;
}

.al-section-3 .btn-close {
    background: none;
    opacity: 1;
}

.al-section-3 .btn-close:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.al-section-3 span.cancle-icon {
    position: absolute;
    right: 0px;
    top: 0;
}

/*----alert section-4----*/
.al-section-4 {
    background-color: #f9f9f9;
}

.al-section-4 .alert-box {
    background-color: #fff;
    margin-top: 30px;
}

.al-section-4 .alert {
    padding: 0px;
}

.al-section-4 .alert-icon {
    display: inline-block;
    height: 100%;
    border-right: 1px solid #e9e9e9;
    padding: 40px;
}

.al-section-4 .alert-icon i {
    font-size: 30px;
}

.al-section-4 .alert-text {
    padding-left: 30px;
    font-size: 16px;
    font-family: 'Poppins';
}

.al-section-4 .btn-close {
    padding: 1rem;
}

.al-section-4 .envelope-color {
    color: #696868;
}

.al-section-4 .triangle-color {
    color: #eb768c;
}

.al-section-4 .umbrella-color {
    color: #31aae2;
}

.al-section-4 .bell-color {
    color: #f0c440;
}

.al-section-4 .check-color {
    color: #73c8b7;
}

.al-section-4 .bullhorn-color {
    color: #5581c4;
}

/*----alert section-5----*/
.al-section-5 .alert-img {
    float: left;
    padding: 0px 25px;
}

.al-section-5 .alert {
    padding: 40px;
}

.al-section-5 .alert-content p {
    color: #fff;
}

.al-section-5 .alert-content h4 {
    font-size: 24px;
    line-height: 35px;
    color: #ffffff;
}

.al-section-5 .envelope-color {
    background-color: #797979;
    color: #fff;
    position: relative;
}

.al-section-5 .triangle-color {
    background-color: #eb768c;
    color: #fff;
}

.al-section-5 .umbrella-color {
    background-color: #31aae2;
    color: #fff;
}

.al-section-5 .bell-color {
    background-color: #f0c440;
    color: #fff;
}

.al-section-5 .check-color {
    background-color: #73c8b7;
    color: #fff;
}

.al-section-5 .bullhorn-color {
    background-color: #5581c4;
    color: #fff;
}

.al-section-5 .alert-icon {
    display: inline-block;
    height: 100%;
    padding: 15px;
}

.al-section-5 .alert-dismissible .btn-close {
    background: none !important;
}

.al-section-5 i {
    font-size: 30px;
}

.al-section-5 span i {
    font-size: 36px;
    color: #fff;
}

.al-section-5 span.cancle-icon {
    position: absolute;
    right: 40px;
    top: 40px;
}

@media (max-width: 767px) {
    .al-section-5 .alert-icon {
        text-align: center;
        width: 100%;
        padding-bottom: 20px;
    }

    .al-section-5 .alert-text {
        text-align: center;
        display: block;
    }

    .al-section-5 .alert-img {
        float: none;
    }

    .al-section-5 .alert-content {
        text-align: center;
    }

    .al-section-5 span.cancle-icon {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 580px) {
    .al-section-4 .alert-icon {
        text-align: center;
        width: 100%;
        padding-bottom: 20px;
    }

    .al-section-4 .alert-text {
        text-align: center;
        display: block;
    }
}

@media (max-width: 480px) {
    .al-section-2 .alert-img {
        float: none;
        text-align: center;
        margin-bottom: 20px;
    }

    .al-section-2 .alert-content {
        margin-left: 0px;
        text-align: center;
    }

    .al-section-3 .alert-img {
        float: none;
        text-align: center;
        margin-bottom: 20px;
    }

    .al-section-3 .alert-content {
        margin-left: 0px;
        text-align: center;
    }
}

/*--------- text-box-start ----------*/
.team-one-wrapper {
    padding-bottom: 150px;
}

.team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper {
    position: relative;
    width: auto;
    display: inline-block;
}

.team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay {
    position: absolute;
    top: 200px;
    bottom: 200px;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: .2s ease;
    transition: .2s ease;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay .content-wrapper {
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
}

.team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay .content-wrapper h4 {
    color: #ffffff;
    padding-bottom: 5px;
    font-size: 22px;
}

.team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay .content-wrapper h5 {
    color: #ffffff;
    padding-bottom: 15px;
    font-size: 18px;
}

.team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay .content-wrapper .social-icon {
    display: inline-block;
}

.team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay .content-wrapper .social-icon li {
    float: left;
    margin-left: 4px;
}

.team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay .content-wrapper .social-icon li:first-child {
    margin-left: 0px;
}

.team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay .content-wrapper .social-icon li a {
    float: left;
    color: #ffffff;
    font-size: 14px;
    border: 1px solid #999999;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 34px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay .content-wrapper .social-icon li a:hover {
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    -webkit-transition: all .5s;
    transition: all .5s;
}

.team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content:hover .image-wrapper-overlay {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
}

.team-one-wrapper .team-slider-wrapper .owl-carousel .owl-nav .owl-prev {
    color: #999999;
    font-size: 30px;
    height: 50px;
    display: inline-block;
    width: 50px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #999999;
    position: absolute;
    left: 33%;
    bottom: -96px;
    z-index: 100;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.team-one-wrapper .team-slider-wrapper .owl-carousel .owl-nav .owl-next {
    color: #999999;
    font-size: 30px;
    height: 50px;
    display: inline-block;
    width: 50px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #999999;
    position: absolute;
    left: 61%;
    bottom: -96px;
    z-index: 100;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.team-one-wrapper .team-slider-wrapper .owl-theme .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    bottom: -83px;
}

.team-one-wrapper .team-slider-wrapper .owl-theme .owl-dots .owl-dot {
    margin-left: 3px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.team-one-wrapper .team-slider-wrapper .owl-theme .owl-dots .owl-dot span {
    width: 5px;
    height: 5px;
    background: #cccccc;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.team-one-wrapper .team-slider-wrapper .owl-theme .owl-dots .owl-dot:hover span,
.team-one-wrapper .team-slider-wrapper .owl-theme .owl-dots .owl-dot.active span {
    background: var(--color-primary);
    width: 8px;
    height: 8px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.team-two-wrapper {
    background-color: #f9f9f9;
}

.team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .image-two-wrapper {
    position: relative;
}

.team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .image-two-wrapper .overlay-two-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s, visibility .3s;
    transition: opacity .3s, visibility .3s;
    background-image: -webkit-gradient(linear, left bottom, right top, from(#80063F), color-stop(#FC035A), to(#FFBF00));
    background-image: linear-gradient(to top right, #80063F, #FC035A, #FFBF00);
}

.team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .team-two-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s, visibility .3s;
    transition: opacity .3s, visibility .3s;
}

.team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .team-two-content .team-title,
.team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .team-two-content .team-sub-title,
.team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .team-two-content .social-icon-two {
    color: #ffffff;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 0;
    transition: opacity 0.85s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.85s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition: opacity 0.85s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.85s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.85s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.85s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.85s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.85s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.85s cubic-bezier(0.19, 1, 0.22, 1);
}

.team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .team-two-content .social-icon-two {
    position: absolute;
    bottom: 30px;
}

.team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .team-two-content .social-icon-two a {
    margin: 0 10px;
    color: #ffffff;
}

.team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .team-two-content .social-icon-two a:first-child {
    margin: 0px;
}

.team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .team-two-content .social-icon-two a:last-child {
    margin: 0px;
}

.team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content:hover .image-two-wrapper .overlay-two-wrapper {
    opacity: 1;
    visibility: visible;
}

.team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content:hover .team-two-content {
    opacity: 1;
}

.team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content:hover .team-two-content .team-title,
.team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content:hover .team-two-content .team-sub-title,
.team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content:hover .team-two-content .social-icon-two {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    display: block;
}

.team-three-wrapper .team-three-wrapper .team-three-img {
    position: relative;
    transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    overflow: hidden;
}

.team-three-wrapper .team-three-wrapper .team-three-img img {
    display: block;
    margin: auto;
}

.team-three-wrapper .team-three-wrapper .team-three-img .team-three-overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 100%;
    transition-duration: .3s;
    -moz-transition-duration: .3s;
    -webkit-transition-duration: .3s;
    -ms-transition-duration: .3s;
    transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    background-color: var(--color-primary)78;
    overflow: hidden;
    visibility: hidden;
    color: #ffffff;
}

.team-three-wrapper .team-three-wrapper .team-three-img .team-three-overlay span {
    text-transform: uppercase;
    font-weight: 500;
}

.team-three-wrapper .team-three-wrapper .team-three-img .team-three-overlay .social-icon-three {
    position: absolute;
    bottom: 40px;
}

.team-three-wrapper .team-three-wrapper .team-three-img .team-three-overlay .social-icon-three a {
    margin: 0 10px;
}

.team-three-wrapper .team-three-wrapper .team-three-img .team-three-overlay .social-icon-three a i {
    color: #ffffff;
}

.team-three-wrapper .team-three-wrapper .team-three-img .team-three-overlay .social-icon-three a:first-child {
    margin-left: 0px;
}

.team-three-wrapper .team-three-wrapper:hover .team-three-img .team-three-overlay {
    top: 0;
    visibility: visible;
}

.team-four-wrapper {
    background-color: #f7f7f7;
}

.team-four-wrapper .owl-carousel .item .four-content {
    text-align: center;
    -webkit-box-shadow: 0 0 20px #00000014;
    box-shadow: 0 0 20px #00000014;
    transition: all .3s ease-in-out;
    display: inline-block;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.team-four-wrapper .owl-carousel .item .four-content .team-four-img {
    position: relative;
    overflow: hidden;
}

.team-four-wrapper .owl-carousel .item .four-content .team-four-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
}

.team-four-wrapper .owl-carousel .item .four-content .team-four-content {
    background-color: #ffffff;
    padding: 40px 0;
    display: inline-block;
}

.team-four-wrapper .owl-carousel .item .four-content .team-four-content h6 {
    text-transform: uppercase;
}

.team-four-wrapper .owl-carousel .item .four-content .team-four-content span {
    margin-bottom: 20px;
    line-height: 22px;
    color: #828282;
}

.team-four-wrapper .owl-carousel .item .four-content .team-four-content .social-icon-four {
    margin: 12px 0 0;
}

.team-four-wrapper .owl-carousel .item .four-content .team-four-content .social-icon-four a {
    margin: 0 10px;
}

.team-four-wrapper .owl-carousel .item .four-content .team-four-content .social-icon-four a:first-child {
    margin-left: 0px;
}

.team-four-wrapper .owl-carousel .item .four-content .team-four-content .social-icon-four a:last-child {
    margin-right: 0px;
}

.team-four-wrapper .owl-carousel .item .four-content:hover .team-four-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
}

.team-four-wrapper .owl-theme .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    bottom: -83px;
}

.team-four-wrapper .owl-theme .owl-dots .owl-dot {
    margin-left: 3px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.team-four-wrapper .owl-theme .owl-dots .owl-dot span {
    width: 5px;
    height: 5px;
    background: #cccccc;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.team-four-wrapper .owl-theme .owl-dots .owl-dot:hover span,
.team-four-wrapper .owl-theme .owl-dots .owl-dot.active span {
    background: var(--color-primary);
    width: 8px;
    height: 8px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

/*--------- social icons css start ---------*/
.icon1-main-wrapper .social-icons ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.icon1-main-wrapper .social-icons ul li {
    padding: 25px;
}

.icon1-main-wrapper .social-icons ul li a {
    font-size: 22px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.icon1-main-wrapper .social-icons ul li a:hover {
    color: var(--color-primary);
}

.icon2-main-wrapper {
    background-color: #e9e9e9;
}

.icon2-main-wrapper .social-icons ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.icon2-main-wrapper .social-icons ul li {
    padding: 25px;
}

.icon2-main-wrapper .social-icons ul li a {
    font-size: 22px;
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.icon2-main-wrapper .social-icons ul li a.facebook:hover {
    color: #3b5998;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.icon2-main-wrapper .social-icons ul li a.twitter:hover {
    color: #00aced;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.icon2-main-wrapper .social-icons ul li a.google:hover {
    color: #dc4a38;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.icon2-main-wrapper .social-icons ul li a.dribbble:hover {
    color: #ea4c89;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.icon2-main-wrapper .social-icons ul li a.linkedin:hover {
    color: #0077b5;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.icon2-main-wrapper .social-icons ul li a.instagram:hover {
    color: #fe1f49;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.icon2-main-wrapper .social-icons ul li a.behance:hover {
    color: #1769ff;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.icon3-main-wrapper .social-icons ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.icon3-main-wrapper .social-icons ul li {
    padding: 25px;
}

.icon3-main-wrapper .social-icons ul li a {
    font-size: 22px;
    display: inline-block;
    height: 50px;
    width: 50px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    color: #ffffff;
    text-align: center;
    line-height: 50px;
}

.icon3-main-wrapper .social-icons ul li a:hover {
    border-radius: 50px;
}

.icon3-main-wrapper .social-icons ul li a.facebook {
    background-color: #3b5998;
}

.icon3-main-wrapper .social-icons ul li a.twitter {
    background-color: #00aced;
}

.icon3-main-wrapper .social-icons ul li a.google {
    background-color: #dc4a38;
}

.icon3-main-wrapper .social-icons ul li a.dribbble {
    background-color: #ea4c89;
}

.icon3-main-wrapper .social-icons ul li a.linkedin {
    background-color: #0077b5;
}

.icon3-main-wrapper .social-icons ul li a.instagram {
    background-color: #fe1f49;
}

.icon3-main-wrapper .social-icons ul li a.behance {
    background-color: #1769ff;
}

.icon4-main-wrapper {
    background-color: #e9e9e9;
}

.icon4-main-wrapper .social-icons ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.icon4-main-wrapper .social-icons ul li {
    padding: 25px;
}

.icon4-main-wrapper .social-icons ul li a {
    font-size: 22px;
    display: inline-block;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    color: #ffffff;
    text-align: center;
    line-height: 50px;
}

.icon4-main-wrapper .social-icons ul li a:hover {
    background-color: #ffffff !important;
    -webkit-box-shadow: 0 0 30px #17171740;
    box-shadow: 0 0 30px #17171740;
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
}

.icon4-main-wrapper .social-icons ul li a.facebook {
    background-color: #3b5998;
}

.icon4-main-wrapper .social-icons ul li a.facebook:hover {
    color: #3b5998;
}

.icon4-main-wrapper .social-icons ul li a.twitter {
    background-color: #00aced;
}

.icon4-main-wrapper .social-icons ul li a.twitter:hover {
    color: #00aced;
}

.icon4-main-wrapper .social-icons ul li a.google {
    background-color: #dc4a38;
}

.icon4-main-wrapper .social-icons ul li a.google:hover {
    color: #dc4a38;
}

.icon4-main-wrapper .social-icons ul li a.dribbble {
    background-color: #ea4c89;
}

.icon4-main-wrapper .social-icons ul li a.dribbble:hover {
    color: #ea4c89;
}

.icon4-main-wrapper .social-icons ul li a.linkedin {
    background-color: #0077b5;
}

.icon4-main-wrapper .social-icons ul li a.linkedin:hover {
    color: #0077b5;
}

.icon4-main-wrapper .social-icons ul li a.instagram {
    background-color: #fe1f49;
}

.icon4-main-wrapper .social-icons ul li a.instagram:hover {
    color: #fe1f49;
}

.icon4-main-wrapper .social-icons ul li a.behance {
    background-color: #1769ff;
}

.icon4-main-wrapper .social-icons ul li a.behance:hover {
    color: #1769ff;
}

.icon5-main-wrapper .social-icons ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.icon5-main-wrapper .social-icons ul li {
    padding: 25px;
}

.icon5-main-wrapper .social-icons ul li a {
    font-size: 22px;
    display: inline-block;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    color: #111111;
    text-align: center;
    line-height: 50px;
    position: relative;
}

.icon5-main-wrapper .social-icons ul li a span {
    border-radius: 0;
    display: block;
    height: 0;
    left: 50%;
    margin: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    width: 0;
    z-index: -1;
}

.icon5-main-wrapper .social-icons ul li a:hover {
    color: #ffffff !important;
}

.icon5-main-wrapper .social-icons ul li a:hover span {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    top: 0;
    left: 0;
}

.icon5-main-wrapper .social-icons ul li a.facebook span {
    background-color: #3b5998;
}

.icon5-main-wrapper .social-icons ul li a.twitter span {
    background-color: #00aced;
}

.icon5-main-wrapper .social-icons ul li a.google span {
    background-color: #dc4a38;
}

.icon5-main-wrapper .social-icons ul li a.dribbble span {
    background-color: #ea4c89;
}

.icon5-main-wrapper .social-icons ul li a.linkedin span {
    background-color: #0077b5;
}

.icon5-main-wrapper .social-icons ul li a.instagram span {
    background-color: #fe1f49;
}

.icon5-main-wrapper .social-icons ul li a.behance span {
    background-color: #1769ff;
}

.icon6-main-wrapper {
    background-color: #e9e9e9;
}

.icon6-main-wrapper .social-icons ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.icon6-main-wrapper .social-icons ul li {
    padding: 25px;
}

.icon6-main-wrapper .social-icons ul li a {
    display: inline-block;
    height: auto;
    width: auto;
    padding: 0 24px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.icon6-main-wrapper .social-icons ul li a span {
    line-height: inherit;
    font-weight: 500;
    top: 0;
    position: relative;
    -webkit-transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
    transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
}

.icon6-main-wrapper .social-icons ul li a span.brand-icon {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.icon6-main-wrapper .social-icons ul li a.facebook {
    color: #3b5998;
}

.icon6-main-wrapper .social-icons ul li a.dribbble {
    color: #ea4c89;
}

.icon6-main-wrapper .social-icons ul li a.behance {
    color: #1769ff;
}

.icon6-main-wrapper .social-icons ul li a.instagram {
    color: #fe1f49;
}

.icon6-main-wrapper .social-icons ul li a:hover .brand-label {
    top: -50px;
    -webkit-transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
    transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
}

.icon6-main-wrapper .social-icons ul li a:hover .brand-icon {
    top: 0;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.icon7-main-wrapper {
    background-color: #111111;
}

.icon7-main-wrapper .accor-heading h3 {
    color: #ffffff;
}

.icon7-main-wrapper .social-icons ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
}

.icon7-main-wrapper .social-icons ul li {
    padding-right: 25px;
}

.icon7-main-wrapper .social-icons ul li a {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    line-height: 40px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 1px solid #ffffff;
    z-index: 1;
    color: #ffffff;
}

.icon7-main-wrapper .social-icons ul li a i {
    padding-right: 0px;
    position: relative;
    color: #ffffff;
    -webkit-transition: .5s;
    transition: .5s;
    z-index: 3;
}

.icon7-main-wrapper .social-icons ul li a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3b5998;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    z-index: 2;
}

.icon7-main-wrapper .social-icons ul li a:hover {
    border-color: #3b5998;
}

.icon7-main-wrapper .social-icons ul li a:hover i {
    color: #ffffff;
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.icon7-main-wrapper .social-icons ul li a:hover::before {
    top: 0;
}

/* responsive of shortcode */
@media (max-width: 767px) {

    .icon1-main-wrapper .social-icons ul li,
    .icon2-main-wrapper .social-icons ul li,
    .icon3-main-wrapper .social-icons ul li,
    .icon4-main-wrapper .social-icons ul li,
    .icon5-main-wrapper .social-icons ul li,
    .icon7-main-wrapper .social-icons ul li {
        padding: 13px;
    }

    .icon6-main-wrapper .social-icons ul li {
        padding: 5px;
    }
}

@media (max-width: 580px) {

    .icon1-main-wrapper .social-icons ul,
    .icon2-main-wrapper .social-icons ul,
    .icon3-main-wrapper .social-icons ul,
    .icon4-main-wrapper .social-icons ul,
    .icon5-main-wrapper .social-icons ul,
    .icon7-main-wrapper .social-icons ul {
        display: block;
        -webkit-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 10px;
        column-gap: 10px;
        max-width: 280px;
        text-align: center;
        margin: 0 auto;
    }

    .icon1-main-wrapper .social-icons ul li,
    .icon2-main-wrapper .social-icons ul li,
    .icon3-main-wrapper .social-icons ul li,
    .icon4-main-wrapper .social-icons ul li,
    .icon5-main-wrapper .social-icons ul li,
    .icon7-main-wrapper .social-icons ul li {
        display: inline-block;
    }

    .icon6-main-wrapper .social-icons ul {
        display: block;
        -webkit-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 10px;
        column-gap: 10px;
        max-width: 280px;
        text-align: center;
        margin: 0 auto;
    }

    .icon6-main-wrapper .social-icons ul li {
        display: inline-block;
        padding: 15px;
    }
}

/*-------- gallery section -----------*/
.gallery1-wrapper .img-gallery-wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gallery1-wrapper .img-gallery-wrapper ul li {
    padding: 10px;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper {
    text-align: center;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img {
    position: relative;
    overflow: hidden;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img img {
    opacity: 1;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .img-responsive {
    width: 100%;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .portfolio_img_overlay {
    background-image: -webkit-gradient(linear, left bottom, right top, from(#80063F), color-stop(#FC035A), to(#FFBF00));
    background-image: linear-gradient(to top right, #80063F, #FC035A, #FFBF00);
    height: 100%;
    left: 0px;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 0px;
    -webkit-transform: translateX(-15px) translateY(-15px);
    transform: translateX(-15px) translateY(-15px);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 100%;
    -webkit-transition: .2s ease;
    transition: .2s ease;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .portfolio_img_overlay .portfolio_img_text {
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 100%;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img_overlay {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    visibility: visible;
    opacity: 1;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img_overlay .portfolio_img_text {
    visibility: visible;
    opacity: 1;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img img {
    transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    opacity: .15;
}

/*------------------- gallery section -----------*/
.gallery1-wrapper .img-gallery-wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gallery1-wrapper .img-gallery-wrapper ul li {
    padding: 10px;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper {
    text-align: center;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img {
    position: relative;
    overflow: hidden;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img img {
    opacity: 1;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .img-responsive {
    width: 100%;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .portfolio_img_overlay {
    background: #833ab4;
    background: -webkit-gradient(linear, left top, right top, from(rgba(131, 58, 180, 0.779149)), color-stop(46%, rgba(253, 29, 29, 0.563463)), to(rgba(252, 176, 69, 0.823967)));
    background: linear-gradient(90deg, rgba(131, 58, 180, 0.779149) 0%, rgba(253, 29, 29, 0.563463) 46%, rgba(252, 176, 69, 0.823967) 100%);
    height: 100%;
    left: 0px;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 0px;
    -webkit-transform: translateX(-15px) translateY(-15px);
    transform: translateX(-15px) translateY(-15px);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 100%;
    -webkit-transition: .2s ease;
    transition: .2s ease;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .portfolio_img_overlay .portfolio_img_text {
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 100%;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img_overlay {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    visibility: visible;
    opacity: 1;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img_overlay .portfolio_img_text {
    visibility: visible;
    opacity: 1;
}

.gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img img {
    transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    opacity: .15;
}

/* gallery second start  */
/* section_1 css */
.gallery2-wrapper {
    background-color: #e9e9e9;
}

.gallery2-wrapper .portfolio_img img {
    width: 100%;
}

.gallery2-wrapper .portfolio_img_wrapper {
    text-align: center;
}

.gallery2-wrapper .portfolio_img {
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
}

.gallery2-wrapper .portfolio_img_overlay {
    background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
    -webkit-box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
    height: calc(100% - 60px);
    left: 30px;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 30px;
    -webkit-transform: translateX(-15px) translateY(-15px);
    transform: translateX(-15px) translateY(-15px);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: calc(100% - 60px);
    -webkit-transition: .2s ease;
    transition: .2s ease;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery2-wrapper .portfolio_img_wrapper:hover .portfolio_img_overlay {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    visibility: visible;
    opacity: 1;
}

.gallery2-wrapper .portfolio_img_text {
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 100%;
}

.gallery2-wrapper .portfolio_img_wrapper:hover .portfolio_img_text {
    visibility: visible;
    opacity: 1;
}

.gallery2-wrapper .portfolio_img_text a {
    padding: 10px;
    font-size: 13px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.gallery2-wrapper .portfolio_img_text a:hover {
    background: var(--color-primary);
    color: #fff;
}

/* section_1 css end*/
.gallery3-wrapper .img-gallery-wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gallery3-wrapper .img-gallery-wrapper ul li {
    padding: 10px;
}

.gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper {
    text-align: center;
}

.gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img {
    position: relative;
    overflow: hidden;
}

.gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img img {
    opacity: 1;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .img-responsive {
    width: 100%;
}

.gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .portfolio_img_overlay {
    background-image: -webkit-gradient(linear, left bottom, right top, from(#80063F), color-stop(#FC035A), to(#FFBF00));
    background-image: linear-gradient(to top right, #80063F, #FC035A, #FFBF00);
    height: 100%;
    left: 0px;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 0px;
    -webkit-transform: translateX(-15px) translateY(-15px);
    transform: translateX(-15px) translateY(-15px);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 100%;
    -webkit-transition: .2s ease;
    transition: .2s ease;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .portfolio_img_overlay .portfolio_img_text {
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 100%;
}

.gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img_overlay {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    visibility: visible;
    opacity: 1;
}

.gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img_overlay .portfolio_img_text {
    visibility: visible;
    opacity: 1;
}

.gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img img {
    transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    opacity: .15;
}

.gallery3-wrapper .section4_portfolio_slider {
    float: left;
    width: 100%;
}

.gallery3-wrapper .section4_portfolio_slider .owl-theme .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    bottom: -56px;
}

.gallery3-wrapper .section4_portfolio_slider .owl-theme .owl-dots .owl-dot {
    margin-left: 3px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery3-wrapper .section4_portfolio_slider .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #cccccc;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery3-wrapper .section4_portfolio_slider .owl-theme .owl-dots .owl-dot.active span,
.gallery3-wrapper .section4_portfolio_slider .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-primary);
    width: 10px;
    height: 10px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery3-wrapper .section4_portfolio_slider .owl-theme .owl-dots .owl-dot.active,
.gallery3-wrapper .section4_portfolio_slider .owl-theme .owl-dots .owl-dot:hover {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery3-wrapper .section4_portfolio_slider .owl-theme .owl-nav {
    display: none;
}

.gallery3-wrapper .portfolio_image_wrapper {
    float: left;
    width: 100%;
    text-align: center;
}

.gallery3-wrapper .portfolio_image {
    position: relative;
    width: auto;
    display: inline-block;
}

.gallery3-wrapper .portfolio_image_overlay {
    position: absolute;
    top: 400px;
    left: 300px;
    right: 400px;
    opacity: 0;
    -webkit-transition: .2s ease;
    transition: .2s ease;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery3-wrapper .portfolio_image_wrapper:hover .portfolio_image_overlay {
    background-color: var(--color-primary);
    opacity: 0.9;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
}

.gallery3-wrapper .portfolio_img_icon {
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

/* section_4 css end*/
/* section_6 css start*/
.gallery4-wrapper {
    background-color: #e9e9e9;
}

.gallery4-wrapper .tab_image,
.gallery4-wrapper .tab_image_text {
    float: left;
    width: 100%;
}

.gallery4-wrapper .tab_image_wrapper {
    float: left;
    width: 100%;
    margin-bottom: 30px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery4-wrapper .section6_nav_tabs {
    float: left;
    width: 100%;
    text-align: center;
}

.gallery4-wrapper .section6_nav_tabs .nav_tabs {
    display: inline-block;
    padding-bottom: 50px;
}

.gallery4-wrapper .section6_nav_tabs .nav-pills>li+li {
    margin-left: 30px;
}

.gallery4-wrapper .section6_nav_tabs .nav-pills>li>a {
    border: 1px solid #fff;
    color: #999999;
    text-transform: uppercase;
}

.gallery4-wrapper .section6_nav_tabs .nav>li>a:focus,
.gallery4-wrapper .section6_nav_tabs .nav>li>a:hover {
    text-decoration: none;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 35px;
    background: #fff;
}

.gallery4-wrapper .section6_nav_tabs .nav-pills>li a.active,
.gallery4-wrapper .section6_nav_tabs .nav-pills>li a.active> :focus,
.gallery4-wrapper .section6_nav_tabs .nav-pills>li a.active> :hover {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 35px;
    background: #fff;
}

.gallery4-wrapper .tab_image_text {
    border: 1px solid #e1e1e1;
    padding: 30px;
    border-top: none;
}

.gallery4-wrapper .project_category {
    float: left;
}

.gallery4-wrapper .project_likes {
    float: right;
}

.gallery4-wrapper .project_category h4 a {
    color: #999999;
    font-size: 14px;
}

.gallery4-wrapper .project_title h4 {
    font-size: 18px;
    font-weight: bold;
}

.gallery4-wrapper .project_title h4 a {
    color: #111111;
}

.gallery4-wrapper .project_title {
    padding-bottom: 20px;
    text-align: left;
}

.gallery4-wrapper .project_likes a i {
    color: var(--color-primary);
}

.gallery4-wrapper .tab_image_wrapper:hover .tab_image_text {
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    border-top: none;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery4-wrapper .tab_image_wrapper:hover .project_title h4 a {
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery4-wrapper .tab_image_wrapper:hover .project_category h4 a {
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery4-wrapper .tab_image_wrapper:hover .project_likes a {
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery4-wrapper .tab_image_wrapper:hover .project_likes a i {
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery4-wrapper .tab_image figure {
    display: block;
    margin: 0;
    overflow: hidden;
}

.gallery4-wrapper .tab_image figure img {
    width: 100%;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.gallery4-wrapper .tab_image:hover figure img {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

/* section_6 css end*/
/* media query css for mobile */
@media (max-width: 991px) {
    .gallery1-wrapper .img-gallery-wrapper ul {
        display: block;
        -webkit-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 10px;
        column-gap: 10px;
    }
}

@media (max-width: 480px) {
    .gallery1-wrapper .img-gallery-wrapper ul {
        -webkit-column-count: 1;
        column-count: 1;
    }

    .nav-link {
        padding: 10px 14px;
    }
}

@media (max-width: 767px) {
    .tab_img {
        float: left;
        width: auto;
        position: relative;
    }

    .right {
        float: none;
    }

    .section3_img1,
    .section3_img3,
    .section3_img4 {
        float: left;
        width: 100%;
    }

    .section3_img2 {
        float: left;
        width: 100%;
        position: relative;
    }

    .nav-pills>li {
        margin-left: 30px;
    }

    .nav-pills>li+li {
        margin-left: 30px;
        margin-bottom: 20px;
    }

    .section6_nav_tabs .nav-pills>li {
        margin: 10px 0;
    }

    .section6_nav_tabs .nav-pills>li+li {
        margin-left: 5px;
    }

    .section5_portfolio_slider .owl-carousel .owl-nav .owl-prev {
        left: 0;
    }

    .section5_portfolio_slider .owl-carousel .owl-nav .owl-next {
        right: 0;
        left: auto;
    }

    .gallery4-wrapper .section6_nav_tabs .nav_tabs .nav {
        display: block;
    }

    .gallery4-wrapper .section6_nav_tabs .nav-pills>li+li {
        margin-left: 0px;
    }
}

/*===========================pricing table css start=============================*/
.p-top-padding {
    padding-top: 40px;
}

.p-bottom-padding {
    padding-bottom: 40px;
}

/*---pricing page first section ----*/
.pt-section-1 .p-box-1 {
    height: 660px;
    margin-top: 20px;
    -webkit-box-shadow: 0px 0px 5px #e9e9e9;
    box-shadow: 0px 0px 5px #e9e9e9;
    text-align: center;
    border: 1px solid transparent;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.pt-section-1 .p-box-1 h4 {
    font-size: 16px;
    padding-bottom: 20px;
}

.pt-section-1 .p-box-1 .text-1 {
    margin: 20px 0px;
    padding: 15px 0px;
    background-color: #fafafa;
    color: #797979;
    font-size: 16px;
}

.pt-section-1 .p-box-1 .heading-1 {
    height: 75px;
    line-height: 75px;
    background-color: #fafafa;
    color: var(--color-primary);
    text-transform: capitalize;
}

.pt-section-1 .p-box-1 .btn-1 {
    width: 230px;
    height: 40px;
    border-radius: 30px;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    background: #fff;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.pt-section-1 .p-box-1:hover .btn-1 {
    background-color: var(--color-primary);
    color: #fff;
}

.pt-section-1 .p-box-1.box-border {
    -webkit-transition: color 0.25s;
    transition: color 0.25s;
    position: relative;
}

.pt-section-1 .p-box-1.box-border:before,
.pt-section-1 .p-box-1.box-border:after {
    border: 0 solid transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    right: 0;
}

.pt-section-1 .p-box-1.box-border:before {
    border-bottom-width: 1px;
    border-left-width: 1px;
}

.pt-section-1 .p-box-1.box-border:after {
    border-top-width: 1px;
    border-right-width: 1px;
}

.pt-section-1 .p-box-1.box-border:hover:before,
.pt-section-1 .p-box-1.box-border:hover:after {
    border-color: var(--color-primary);
    -webkit-transition: border-color 0s, width 0.25s, height 0.25s;
    transition: border-color 0s, width 0.25s, height 0.25s;
    width: 100%;
    height: 100%;
}

.pt-section-1 .p-box-1.box-border:hover:before {
    -webkit-transition-delay: 0s, 0s, 0.25s;
    transition-delay: 0s, 0s, 0.25s;
}

.pt-section-1 .p-box-1.box-border:hover:after {
    -webkit-transition-delay: 0s, 0.25s, 0s;
    transition-delay: 0s, 0.25s, 0s;
}

/*----------Animation Css over--------*/
.pt-section-2 {
    background-color: #e9e9e9;
}

.pt-section-2 .p-box-2 {
    margin-top: 20px;
    height: 610px;
    border: 1px solid #e9e9e9;
    background-color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.pt-section-2 .p-box-2 h4 {
    font-size: 16px;
    padding-bottom: 20px;
    position: relative;
}

.pt-section-2 .p-box-2 h4:after {
    content: '';
    border: 1px dashed #797979;
    width: 80px;
    height: 1px;
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    top: 77px;
}

.pt-section-2 .p-box-2 .heading-2 {
    -webkit-transition: none;
    transition: none;
    font-size: 28px;
    margin-top: 10px;
}

.pt-section-2 .p-box-2 .text-2 {
    color: #797979;
    font-size: 16px;
    margin-top: 10px;
}

.pt-section-2 .p-box-2 h3 .small {
    font-size: 16px;
    color: #797979;
}

.pt-section-2 .p-box-2 .btn-2 {
    width: 210px;
    height: 40px;
    border-radius: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    background: #fff;
    margin-top: 30px;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.pt-section-2 .p-box-2:before {
    content: '';
    position: absolute;
    color: #fff;
    background: var(--color-primary);
    z-index: -1;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 0;
    -webkit-transition: 0.5s width ease-in-out, 0.5s height ease-in-out;
    transition: 0.5s width ease-in-out, 0.5s height ease-in-out;
}

.pt-section-2 .p-box-2:hover {
    -webkit-box-shadow: 0px 0px 15px 7px #e9e9e9;
    box-shadow: 0px 0px 15px 7px #e9e9e9;
}

.pt-section-2 .p-box-2:hover h4 a {
    color: #fff;
}

.pt-section-2 .p-box-2:hover h4 a:after {
    border-color: #fff;
}

.pt-section-2 .p-box-2:hover .text-2 {
    color: #fff;
}

.pt-section-2 .p-box-2:hover .small {
    color: #fff;
}

.pt-section-2 .p-box-2:hover:before {
    width: 100%;
    height: 100%;
}

/*------------------- 3rd style -------------------*/
.pt-section-3 {
    text-align: center;
}

.pt-section-3 .p-box-3 .p-promo {
    background: #0F1012;
    color: #f9f9f9;
    border: 2px solid transparent;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.pt-section-3 .p-box-3 .deal {
    padding: 10px 0 0 0;
}

.pt-section-3 .p-box-3 .deal span {
    display: block;
    text-align: center;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.pt-section-3 .p-box-3 .deal span:first-of-type {
    font-size: 23px;
}

.pt-section-3 .p-box-3 .deal span:last-of-type {
    font-size: 13px;
}

.pt-section-3 .p-box-3 .price {
    font-weight: bold;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    display: block;
    background: #292b2e;
    margin: 15px 0 10px 0;
    text-align: center;
    font-size: 23px;
    padding: 17px 0 17px 0;
}

.pt-section-3 .p-box-3 ul {
    display: block;
    margin: 20px 0 10px 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
    color: #999999;
}

.pt-section-3 .p-box-3 ul li {
    display: block;
    margin: 10px 0 0 0;
    line-height: 35px;
}

.pt-section-3 .p-box-3:hover span {
    color: #64AAA4;
}

.pt-section-3 .p-box-3 .btn-5 {
    border: none;
    border-radius: 40px;
    background: #292b2e;
    color: #f9f9f9;
    padding: 10px 37px;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.pt-section-3 .p-box-3 .btn-5:hover {
    background: #64AAA4;
}

.pt-section-4 {
    background-color: #e9e9e9;
}

.pt-section-4 .p-box-4 {
    margin-top: 20px;
    text-align: center;
    background-color: #fff;
    -webkit-box-shadow: 1px 1px 8px #0000001f;
    box-shadow: 1px 1px 8px #0000001f;
    padding-bottom: 40px;
}

.pt-section-4 .p-box-4 .p-box-4-1 {
    height: 165px;
    padding: 40px;
    margin-bottom: 30px;
    background-color: #edecfc;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.pt-section-4 .p-box-4 .p-box-4-1 h2 {
    -webkit-transition: none;
    transition: none;
    font-size: 26px;
}

.pt-section-4 .p-box-4 .p-box-4-1 h3 {
    -webkit-box-shadow: 1px 1px 8px #0000001f;
    box-shadow: 1px 1px 8px #0000001f;
    background-color: #fff;
    height: 90px;
    margin-top: 24px;
    padding: 30px 52px;
    font-weight: 700;
    font-size: 26px;
}

.pt-section-4 .p-box-4 .p-box-4-1 h3 span {
    font-size: 14px;
}

.pt-section-4 .p-box-4 .list-6 {
    padding: 20px;
    margin: 0;
}

.pt-section-4 .p-box-4 .list-6 li {
    line-height: 35px;
}

.pt-section-4 .p-box-4 .btn-6 {
    padding: 10px 50px;
    background-color: #fff;
    border: 1px solid #797979;
    border-radius: 5px;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.pt-section-4 .p-box-4:hover .p-box-4-1 {
    background-color: var(--color-primary);
    color: #fff;
}

.pt-section-4 .p-box-4:hover .p-box-4-1 h2 {
    color: #ffffff;
}

.pt-section-4 .p-box-4:hover .p-box-4-1 h3 {
    color: #111111;
}

.pt-section-4 .p-box-4:hover .btn-6 {
    background-color: var(--color-primary);
    color: #fff;
}

/*------------------- fifth table css -----*/
.pt-section-5 .p-box-5 {
    margin-top: 20px;
    background-color: #444444;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.pt-section-5 .p-box-5 .heading-5 {
    text-align: center;
    color: #fff;
    padding: 30px;
}

.pt-section-5 .p-box-5 .heading-5 a {
    color: #ffffff;
    font-size: 22px;
}

.pt-section-5 .p-box-5 .heading-5 h2 {
    font-size: 36px;
    color: #fff;
}

.pt-section-5 .p-box-5 .heading-5 h3 {
    font-size: 26px;
    margin-top: 10px;
    color: #fff;
}

.pt-section-5 .p-box-5 .content-5 {
    background-color: #222222;
    color: #fff;
    text-align: center;
    padding: 40px;
    border-radius: 15px;
}

.pt-section-5 .p-box-5 ul {
    padding: 0;
}

.pt-section-5 .p-box-5 ul li {
    line-height: 35px;
}

.pt-section-5 .p-box-5 .btn-5 {
    padding: 7px 50px;
    margin-top: 20px;
    border: none;
    background: #797979;
    color: #fff;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.pt-section-5 .p-box-5:hover {
    background-color: var(--color-primary);
}

.pt-section-5 .p-box-5:hover .btn-5 {
    background-color: var(--color-primary);
}

@media (max-width: 991px) {
    .container {
        max-width: 900px;
    }

    .pt-section-4 .p-box-4-1 h3 {
        padding: 30px 20px;
    }
}

/*------------ icon page css start ----------*/
.ic-section-1 .icon-1 {
    height: 80px;
    width: 80px;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    border-bottom-right-radius: 63px;
    line-height: 73px;
    text-align: center;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    color: #fff;
    background-color: var(--color-primary);
}

.ic-section-1 .box {
    border: 1px solid #e9e9e9;
    margin-top: 30px;
    padding-bottom: 30px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.ic-section-1 .box p {
    padding: 0;
    padding-right: 20px;
}

.ic-section-1 .box p.left_shift {
    padding-left: 20px;
    padding-top: 10px;
}

.ic-section-1 .box h4 {
    padding-left: 20px;
    padding-top: 10px;
    font-size: 24px;
}

.ic-section-1 .box h4 a {
    color: var(--color-primary);
}

.ic-section-1 .box-border {
    -webkit-transition: color 0.25s;
    transition: color 0.25s;
    position: relative;
}

.ic-section-1 .box-border:after,
.ic-section-1 .box-border:after {
    border: 0 solid transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    right: 0;
}

.ic-section-1 .box-border:after {
    border-bottom-width: 1px;
    border-left-width: 1px;
}

.ic-section-1 .box-border:after {
    border-top-width: 1px;
    border-right-width: 1px;
}

.ic-section-1 .box-border:hover:after,
.ic-section-1 .box-border:hover:after {
    border-color: var(--color-primary);
    -webkit-transition: border-color 0s, width 0.25s, height 0.25s;
    transition: border-color 0s, width 0.25s, height 0.25s;
    width: 100%;
    height: 100%;
}

.ic-section-1 .box-border:hover:before {
    -webkit-transition-delay: 0s, 0s, 0.25s;
    transition-delay: 0s, 0s, 0.25s;
}

.ic-section-1 .box-border:hover:after {
    -webkit-transition-delay: 0s, 0.25s, 0s;
    transition-delay: 0s, 0.25s, 0s;
}

.ic-section-2 {
    background-color: #f9f9f9;
}

.ic-section-2 .icon-box-two {
    color: #fff;
    position: relative;
    z-index: 1;
    text-align: center;
    border: 1px solid #e9e9e9;
    background-color: #fff;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.ic-section-2 .icon-box-two::before {
    content: '';
    position: absolute;
    color: #fff;
    background: var(--color-primary);
    z-index: -1;
    -webkit-transition: 0.5s width ease-in-out, 0.5s height ease-in-out;
    transition: 0.5s width ease-in-out, 0.5s height ease-in-out;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 0;
}

.ic-section-2 .icon-box-two span {
    padding-bottom: 15px;
    display: block;
}

.ic-section-2 .icon-box-two span i {
    margin-top: 50px;
    border: 1px solid, var(--color-primary);
    border-radius: 40px;
    background-color: var(--color-primary);
    color: #fff;
    width: 70px;
    height: 70px;
    line-height: 70px;
}

.ic-section-2 .icon-box-two h4 {
    padding-top: 10px;
    font-size: 24px;
}

.ic-section-2 .icon-box-two h4 a:hover {
    color: #ffffff;
}

.ic-section-2 .icon-box-two p {
    padding-top: 10px;
    padding-bottom: 30px;
}

.ic-section-2 .icon-box-two:hover {
    border-color: var(--color-primary);
    -webkit-box-shadow: 0px 0px 10px #797979;
    box-shadow: 0px 0px 10px #797979;
}

.ic-section-2 .icon-box-two:hover::before {
    width: 100%;
    height: 100%;
}

.ic-section-2 .icon-box-two:hover span {
    color: #ffffff;
}

.ic-section-2 .icon-box-two:hover span i {
    background-color: #ffffff;
    color: var(--color-primary);
}

.ic-section-2 .icon-box-two:hover h4 a {
    color: #ffffff;
}

.ic-section-2 .icon-box-two:hover p {
    color: #ffffff;
}

.ic-section-3 .icon-box-three {
    padding-bottom: 40px;
    text-align: center;
    border: 1px solid #e9e9e9;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.ic-section-3 .icon-box-three span {
    background-color: #797979;
    height: 90px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    padding-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 1;
    display: block;
}

.ic-section-3 .icon-box-three span::before {
    content: '';
    position: absolute;
    color: #fff;
    background: var(--color-primary);
    z-index: -1;
    -webkit-transition: 0.5s width ease-in-out, 0.5s height ease-in-out;
    transition: 0.5s width ease-in-out, 0.5s height ease-in-out;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
}

.ic-section-3 .icon-box-three span i {
    margin-top: 50px;
    border: 1px solid, var(--color-primary);
    border-radius: 40px;
    background-color: #fff;
    color: #797979;
    width: 70px;
    height: 70px;
    line-height: 70px;
}

.ic-section-3 .icon-box-three h4 {
    padding: 35px 0px 17px 0px;
    font-size: 24px;
}

.ic-section-3 .icon-box-three p {
    padding-bottom: 15px;
}

.ic-section-3 .icon-box-three:hover span::before {
    width: 100%;
    height: 100%;
}

.ic-section-4 {
    background-color: #f9f9f9;
}

.ic-section-4 .icon-box-four {
    text-align: center;
    border: 1px solid #e9e9e9;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    color: #fff;
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
}

.ic-section-4 .icon-box-four::before {
    content: '';
    position: absolute;
    color: #fff;
    background: var(--color-primary);
    z-index: -1;
    -webkit-transition: 0.7s width ease-in-out, 0.7s height ease-in-out;
    transition: 0.7s width ease-in-out, 0.7s height ease-in-out;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
}

.ic-section-4 .icon-box-four span {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.ic-section-4 .icon-box-four span i {
    background-color: var(--color-primary);
    color: #fff;
    margin-top: 50px;
    border: 1px solid, var(--color-primary);
    border-radius: 40px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.ic-section-4 .icon-box-four h4 {
    padding-bottom: 10px;
    padding-top: 20px;
    font-size: 24px;
}

.ic-section-4 .icon-box-four h4 a:hover {
    color: #ffffff;
}

.ic-section-4 .icon-box-four p {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

.ic-section-4 .icon-box-four:hover {
    background-color: var(--color-primary);
}

.ic-section-4 .icon-box-four:hover::before {
    width: 100%;
    height: 100%;
}

.ic-section-4 .icon-box-four:hover span i {
    background-color: #ffffff;
    color: var(--color-primary);
}

.ic-section-4 .icon-box-four:hover p {
    color: #ffffff;
}

.ic-section-4 .icon-box-four:hover h4 a {
    color: #ffffff;
}

.ic-section-4 .icon-box-four:hover p {
    color: #ffffff;
}

.ic-section-5 .icon-box-five {
    text-align: center;
    border: 1px solid #e9e9e9;
    padding-bottom: 30px;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.ic-section-5 .icon-box-five::before,
.ic-section-5 .icon-box-five::after {
    border: 0 solid transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    right: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
}

.ic-section-5 .icon-box-five span {
    position: relative;
    display: inline-block;
    width: 165px;
    height: 2px;
    color: #f74539;
    padding-bottom: 20px;
}

.ic-section-5 .icon-box-five span i {
    margin-top: 50px;
    border: 1px solid, var(--color-primary);
    border-radius: 40px;
    background-color: var(--color-primary);
    color: #fff;
    width: 70px;
    height: 70px;
    line-height: 70px;
}

.ic-section-5 .icon-box-five span::after {
    content: "";
    height: 50px;
    width: 1px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #e9e9e9;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.ic-section-5 .icon-box-five h4 {
    padding-top: 40px;
    padding-bottom: 10px;
    font-size: 24px;
}

.ic-section-5 .icon-box-five p {
    padding-left: 20px;
    padding-right: 20px;
}

.ic-section-5 .icon-box-five:hover {
    border-bottom-color: var(--color-primary);
}

.ic-section-5 .icon-box-five:hover::before,
.ic-section-5 .icon-box-five:hover::after {
    border-color: var(--color-primary);
    -webkit-transition: border-color 0s, width 0.25s, height 0.25s;
    transition: border-color 0s, width 0.25s, height 0.25s;
    width: 100%;
    height: 100%;
    -webkit-transition-delay: 0s, 0s, 0.25s;
    transition-delay: 0s, 0s, 0.25s;
}

.ic-section-5 .icon-box-five:hover span::after {
    background-color: var(--color-primary);
}

.ic-section-5 .icon-box-five:hover h4 a {
    color: var(--color-primary);
}

@media (max-width: 991px) {
    .ic-section-2 .icon-box-two {
        margin: 12px 0;
    }

    .ic-section-3 .icon-box-three {
        margin: 12px 0;
    }

    .ic-section-4 .icon-box-four {
        margin: 12px 0;
    }

    .ic-section-5 .icon-box-five {
        margin: 12px 0;
    }

    .ic-section-2 {
        padding-top: 0px;
    }

    .ic-section-3 {
        padding-top: 0px;
    }

    .ic-section-4 {
        padding-top: 0px;
    }

    .ic-section-5 {
        padding-top: 0px;
    }
}

/*------------- typography page  start -----------*/
/*------------------ list-page-start -----------*/
/*------------------- list-one ------------------*/
.list-main-wrapper-one {
    background-color: #fafafa;
}

.list-main-wrapper-one .list-one-wrapper {
    margin-top: 25px;
}

.list-main-wrapper-one .list-one-wrapper ul {
    transition-duration: .4s;
    -webkit-transition-duration: .4s;
    -moz-transition-duration: .4s;
    -ms-transition-duration: .4s;
}

.list-main-wrapper-one .list-one-wrapper ul li {
    position: relative;
    padding: 12px 25px 14px 25px;
    z-index: 1;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.list-main-wrapper-one .list-one-wrapper ul li .list-one-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    -webkit-box-shadow: 0 0 15px #00000014;
    box-shadow: 0 0 15px #00000014;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    border-radius: 5px;
}

.list-main-wrapper-one .list-one-wrapper ul li i {
    position: absolute;
    top: 21px;
    left: 0;
    font-size: 14px;
    opacity: .7;
    color: #757575;
}

.list-main-wrapper-one .list-one-wrapper ul li:hover {
    padding: 12px 25px 14px 50px;
}

.list-main-wrapper-one .list-one-wrapper ul li:hover .list-one-bg {
    opacity: 1;
}

.list-main-wrapper-one .list-one-wrapper ul li:hover i {
    left: 25px;
    opacity: 1;
}

/*--list-two--*/
.list-main-wrapper-two .list-two-wrapper {
    margin-top: 25px;
}

.list-main-wrapper-two .list-two-wrapper ul li {
    color: #828282;
    margin-bottom: 20px;
}

.list-main-wrapper-two .list-two-wrapper ul li i {
    margin-right: 10px;
    line-height: 30px;
    color: var(--color-primary);
    font-size: 18px;
    position: relative;
}

/*--  list-three */
.list-main-wrapper-three {
    background-color: #fafafa;
}

.list-main-wrapper-three .list-three-wrapper {
    margin-top: 25px;
}

.list-main-wrapper-three .list-three-wrapper ul li {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 15px;
    padding-top: 15px;
}

.list-main-wrapper-three .list-three-wrapper ul li:first-child {
    padding-top: 0px;
}

.list-main-wrapper-three .list-three-wrapper ul li i {
    margin-right: 10px;
    background: -webkit-gradient(linear, left top, right top, from(#556fff), color-stop(#556fff), color-stop(#e05fc4), color-stop(#f767a6), to(#ff798e));
    background: linear-gradient(to right, #556fff, #556fff, #e05fc4, #f767a6, #ff798e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
}

/*--  list-four --*/
.list-main-wrapper-four {
    background-color: #f7f7f7;
}

.list-main-wrapper-four .list-four-wrapper ul li {
    padding: 10px 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
}

.list-main-wrapper-four .list-four-wrapper ul li i {
    color: var(--color-primary);
    margin-right: 15px;
}

.list-main-wrapper-four .list-four-wrapper ul li:hover {
    -webkit-box-shadow: 0 0 20px #00000026;
    box-shadow: 0 0 20px #00000026;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.list-main-wrapper-five .list-five-wrapper ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 28px 0;
    border-color: rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid #dee2e6 !important;
}

.list-main-wrapper-five .list-five-wrapper ul li .list-content {
    width: 90%;
}

.list-main-wrapper-five .list-five-wrapper ul li .list-content .list-head {
    font-weight: 700;
    line-height: 28px;
}

.list-main-wrapper-five .list-five-wrapper ul li .list-content .list-head .label-new {
    background-color: #0aa5d6;
    display: inline-block;
    vertical-align: middle;
    padding: 2px 9px;
    font-size: 10px;
    line-height: 15px;
    color: #fff;
    text-transform: uppercase;
    margin-left: 10px;
    border-radius: 1px;
}

.list-main-wrapper-five .list-five-wrapper ul li .list-content p {
    font-weight: 500x;
}

.list-main-wrapper-five .list-five-wrapper ul li .list-price {
    font-weight: 700;
}

@media (max-width: 767px) {
    .list-main-wrapper-one .list-one-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .list-main-wrapper-two .list-two-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .list-main-wrapper-three .list-three-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .list-four-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

/* ....................................
1.1 INDEX 03 CSS
.......................................*/
/*---------
 section
-----------*/
.about-sec-wrapper h4 {
    color: black;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
}

.about-sec-wrapper p {
    color: #5f5f5f;
    font-size: 16px;
    line-height: 22px;
}

.about-sec-wrapper .div_line-yal2 {
    margin-top: 25px;
    margin-bottom: 25px;
    display: inline-block;
}

.about-sec-wrapper .div_p p {
    font-size: 13px;
    color: #5f5f5f;
}

.about-sec-wrapper .div_p .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border-radius: 30px;
    line-height: 50px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.about-sec-wrapper .div_p .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.about-sec-wrapper .div_p .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.about-sec-wrapper .about-img {
    position: relative;
}

.about-sec-wrapper .about-img img {
    width: 100%;
}

.about-sec-wrapper .about-img-sec {
    position: relative;
    height: 738px;
}

.about-sec-wrapper .about-img-sec .abt-img2 {
    position: absolute;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.about-sec-wrapper .about-img-sec .abt-img2 img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.about-sec-wrapper .about-img-sec .abt-img2:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.about-sec-wrapper .about-img-sec .abt-img1 {
    overflow: hidden;
}

.about-sec-wrapper .about-img-sec .abt-img1 img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.about-sec-wrapper .about-img-sec .abt-img1:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.home-delivery-sec-wrapper {
    background-image: url(../images/section-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
}

.home-delivery-sec-wrapper .heading-title {
    text-align: center;
}

.home-delivery-sec-wrapper .heading-title h4 {
    color: black;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
}

.home-delivery-sec-wrapper .heading-title img {
    padding-top: 22px;
    justify-self: center;
}

.home-delivery-sec-wrapper .delivery-main-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 50px;
}

.home-delivery-sec-wrapper .delivery-main-wrapper .delivery-box {
    width: 25%;
    text-align: center;
    padding: 20px;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.home-delivery-sec-wrapper .delivery-main-wrapper .delivery-box h4 {
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-top: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    padding-top: 10px;
}

.home-delivery-sec-wrapper .delivery-main-wrapper .delivery-box p {
    color: #5f5f5f;
    font-size: 13px;
    line-height: 24px;
}

.home-delivery-sec-wrapper .delivery-main-wrapper .delivery-box:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.home-delivery-sec-wrapper .delivery-main-wrapper .delivery-box:after {
    content: '';
    position: absolute;
    background-image: url(../images/arrow.png);
    right: 0px;
    top: 41px;
    width: 60px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-delivery-sec-wrapper .delivery-main-wrapper .delivery-box.arro-remove:after {
    display: none;
}

.certificate-award {
    background-image: none;
    padding-top: 0;
}

.certificate-award .delivery-main-wrapper .delivery-box:after {
    display: none;
}

.all_page_section {
    background-image: url(../images/slide1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
    width: 100%;
    float: left;
}

.all_page_section .heading-title {
    text-align: center;
}

.all_page_section .heading-title h4 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
}

.all_page_section .heading-title img {
    padding-top: 22px;
}

.our-butchery-wrapper {
    background-image: url(../images/section-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 60px;
}

.our-butchery-wrapper .about-text {
    padding-top: 30px;
}

.our-butchery-wrapper .about-text h4 {
    color: black;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
}

.our-butchery-wrapper .about-text p {
    color: #5f5f5f;
    font-size: 16px;
    line-height: 22px;
}

.our-butchery-wrapper .div_line-yal2 {
    margin-top: 25px;
    margin-bottom: 25px;
    display: inline-block;
}

.our-butchery-wrapper .div_p p {
    font-size: 13px;
    color: #5f5f5f;
}

.our-butchery-wrapper .div_p .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border-radius: 30px;
    line-height: 50px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.our-butchery-wrapper .div_p .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.our-butchery-wrapper .div_p .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.our-butchery-wrapper .about-img-block {
    position: relative;
    height: 640px;
}

.our-butchery-wrapper .about-img-block .img1 {
    overflow: hidden;
}

.our-butchery-wrapper .about-img-block .img1 img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    width: 100%;
}

.our-butchery-wrapper .about-img-block .img1:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.our-butchery-wrapper .about-img-block .img2 {
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

.our-butchery-wrapper .about-img-block .img2 img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    width: 100%;
}

.our-butchery-wrapper .about-img-block .img2:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.call-now-wrapper {
    background-image: url(../images/index2/back.jpg);
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
    width: 100%;
    float: left;
    position: relative;
}

.call-now-wrapper .call-sec-wrapper h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
}

.call-now-wrapper .call-sec-wrapper .call {
    padding-top: 40px;
    font-size: 50px;
    color: #fff;
    font-weight: 400;
    padding-bottom: 8px;
}

.call-now-wrapper .call-sec-wrapper .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border-radius: 30px;
    line-height: 50px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.call-now-wrapper .call-sec-wrapper .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.call-now-wrapper .call-sec-wrapper .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.call-now-wrapper:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    background-image: url(../images/template/about1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 675px;
    height: 100%;
}

.news-blog-wrapper .heading-title {
    text-align: center;
    padding-bottom: 60px;
}

.news-blog-wrapper .heading-title h4 {
    color: black;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
}

.news-blog-wrapper .heading-title img {
    padding-top: 22px;
}

.news-blog-wrapper .blog-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 9px 0px #220c2b1a;
    box-shadow: 0 2px 9px 0px #220c2b1a;
}

.news-blog-wrapper .blog-box .blog-img {
    width: 35%;
    overflow: hidden;
    border-radius: 4px;
}

.news-blog-wrapper .blog-box .blog-img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.news-blog-wrapper .blog-box .blog-text {
    width: 65%;
    position: relative;
    padding-left: 20px;
}

.news-blog-wrapper .blog-box .blog-text h4 {
    font-size: 20px;
    font-weight: 600;
}

.news-blog-wrapper .blog-box .blog-text h4 a:hover {
    color: var(--color-primary);
}

.news-blog-wrapper .blog-box .blog-text p {
    font-size: 13px;
    padding: 4px 0px 6px;
}

.news-blog-wrapper .blog-box .blog-text .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border-radius: 30px;
    line-height: 50px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    margin-top: 16px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.news-blog-wrapper .blog-box .blog-text .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.news-blog-wrapper .blog-box .blog-text .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.news-blog-wrapper .blog-box:hover .blog-img img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.countdown-wrapper {
    background-image: url(../images/section-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
}

.countdown-wrapper .counter-main-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.countdown-wrapper .counter-main-wrapper .count-box {
    width: 24%;
    text-align: center;
    position: relative;
    border: 1px solid red;
}

.countdown-wrapper .counter-main-wrapper .count-box .count {
    font-size: 70px;
    font-weight: 800;
    position: relative;
}

.countdown-wrapper .counter-main-wrapper .count-box .customer {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    background: var(--color-primary);
    padding: 4px 20px;
    border-radius: 30px;
    position: relative;
    top: 13px;
}

.countdown-wrapper .counter-text {
    text-align: center;
    max-width: 790px;
    margin: auto;
    padding-top: 40px;
}

.countdown-wrapper .counter-text p {
    color: #5f5f5f;
    text-align: center;
    font-size: 16px;
    margin-top: 70px;
    line-height: 28px;
    margin-bottom: 20px;
}

.testimonial-client-say-wrapper .heading-title {
    text-align: center;
    padding-bottom: 60px;
}

.testimonial-client-say-wrapper .heading-title h4 {
    color: black;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
}

.testimonial-client-say-wrapper .testi-slider {
    position: relative;
}

.testimonial-client-say-wrapper .testi-slider .owl-carousel .item img {
    width: auto;
    display: inherit;
}

.testimonial-client-say-wrapper .testi-slider .owl-carousel .item p {
    font-size: 14px;
    color: #5f5f5f;
    padding-top: 30px;
}

.testimonial-client-say-wrapper .testi-slider .owl-carousel .item h4 {
    font-size: 25px;
}

.testimonial-client-say-wrapper .testi-slider .owl-carousel .item span {
    font-size: 14px;
    color: #d3d2d6;
}

.testimonial-client-say-wrapper .testi-slider .navigation-img-wrapper {
    margin-top: 4px;
    text-align: center;
    position: absolute;
    width: 52%;
    top: 47%;
    left: 26%;
    z-index: 99;
}

.testimonial-client-say-wrapper .testi-slider .navigation-img-wrapper .navigator {
    display: inline-block;
    width: 150px;
    height: 100px;
    text-align: center;
    background-color: #ccc;
    line-height: 100px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    border-radius: 6px;
}

.testimonial-client-say-wrapper .testi-slider .navigation-img-wrapper .navigator img {
    width: 100%;
}

.testimonial-client-say-wrapper .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
}

.testimonial-client-say-wrapper .owl-nav .owl-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
    border: 1px solid #cacaca !important;
}

.testimonial-client-say-wrapper .owl-nav .owl-prev svg {
    width: 24px;
    height: 24px;
}

.testimonial-client-say-wrapper .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #cacaca !important;
}

.testimonial-client-say-wrapper .owl-nav .owl-next svg {
    width: 24px;
    height: 24px;
    fill: #cacaca !important;
}

.contact_img_background {
    background-attachment: auto;
    background-image: url(../images/index2/back.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 100px 0px;
    position: relative;
    width: 100%;
    float: left;
}

.contact_img_background .request-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.contact_img_background .request-list .r-text {
    padding-left: 20px;
}

.contact_img_background .request-list .r-text h4 {
    font-size: 16px;
    color: #fff;
    line-height: 24px;
}

.contact_img_background .request-list .r-list {
    font-size: 40px;
    color: #fff;
}

.contact_img_background .logo-white {
    margin-bottom: 70px;
}

.contact_img_background .request-form-wrapper h4 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
}

.contact_img_background .request-form-wrapper p {
    font-size: 16px;
    color: #5f5f5f;
}

.contact_img_background .request-form-wrapper form {
    margin-top: 40px;
}

.contact_img_background .request-form-wrapper form .icon-filed {
    position: relative;
}

.contact_img_background .request-form-wrapper form .icon-filed span {
    position: absolute;
    top: 11px;
    left: 13px;
    color: #5f5f5f;
}

.contact_img_background .request-form-wrapper form .icon-filed input {
    padding-left: 34px;
    height: 45px;
    padding-top: 0;
    padding-bottom: 0;
}

.contact_img_background .request-form-wrapper form .icon-filed textarea {
    padding-left: 34px;
}

.contact_img_background .request-form-wrapper .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border-radius: 30px;
    line-height: 50px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    margin-top: 16px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.contact_img_background .request-form-wrapper .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.contact_img_background .request-form-wrapper .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.contact_img_background:before {
    content: '';
    position: absolute;
    left: 13px;
    top: 0;
    width: 373px;
    height: 100%;
    background-image: url(../images/side.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.brand-company-wrapper .brand-img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.brand-company-wrapper .brand-img img {
    width: 100%;
}

.brand-company-wrapper .brand-img:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-shadow: 2px 0px 20px #cccccc8f;
    box-shadow: 2px 0px 20px #cccccc8f;
}

.index2-about-sec-wrapper {
    margin-top: -110px;
    position: relative;
}

.index2-about-sec-wrapper .about-block-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-shadow: 0px 6px 20px #00000026;
    box-shadow: 0px 6px 20px #00000026;
}

.index2-about-sec-wrapper .about-block-wrapper .about-img {
    width: 50%;
    background-color: #efbc50;
}

.index2-about-sec-wrapper .about-block-wrapper .about-img img {
    width: 100%;
}

.index2-about-sec-wrapper .about-block-wrapper .about-content {
    width: 50%;
    padding: 90px 30px;
    background-image: url(../images/section-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.index2-about-sec-wrapper .about-block-wrapper .about-content h4 {
    color: black;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
}

.index2-about-sec-wrapper .about-block-wrapper .about-content img {
    padding: 30px 0px;
}

.index2-about-sec-wrapper .about-block-wrapper .about-content .p-text {
    font-size: 13px;
    color: #5f5f5f;
    line-height: 22px;
}

.index2-about-sec-wrapper .about-block-wrapper .about-content .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border-radius: 30px;
    line-height: 50px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    margin-top: 40px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.index2-about-sec-wrapper .about-block-wrapper .about-content .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.index2-about-sec-wrapper .about-block-wrapper .about-content .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.index2-butchery-team-wrapper {
    margin-top: 0;
}

.index2-butchery-team-wrapper .about-block-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.index2-butchery-team-wrapper .about-block-wrapper .about-content {
    padding: 70px 50px;
}

.index2-butchery-team-wrapper .about-block-wrapper .about-img {
    background: var(--color-primary);
    padding-top: 0;
    position: relative;
}

.index2-butchery-team-wrapper .about-block-wrapper .about-img .overlay1 .popup-youtube {
    position: absolute;
    left: 44%;
    top: 43%;
    width: 90px;
    height: 90px;
    font-size: 34px;
    background: var(--color-primary);
    text-align: center;
    line-height: 94px;
    border-radius: 50px;
    color: #fff;
}

.index-2-product-wrapper .filter-menu {
    margin-top: 40px;
}

.index-2-product-wrapper .filter-menu li img:hover {
    background: #efbc50;
    border-radius: 50%;
}

.index-2-product-wrapper .filter-menu .last-tab i {
    background: #efbc50;
}

.index-2-product-wrapper .filter-content ul li .img-filter-text .left-filter .star-review li a {
    color: #ffd700;
}

.index2-delivery-sec-wrapper {
    background-image: url(../images/product/offline.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 230px 0px 60px;
    margin-top: -145px;
}

.index2-delivery-sec-wrapper .delivery-main-wrapper .delivery-box {
    position: relative;
}

.index2-delivery-sec-wrapper .delivery-main-wrapper .delivery-box h4 {
    color: #fff;
}

.index2-delivery-sec-wrapper .delivery-main-wrapper .delivery-box p {
    color: #fff;
}

.index2-delivery-sec-wrapper .delivery-main-wrapper .delivery-box:after {
    content: '';
    position: absolute;
    background-image: url(../images/arrow1.png);
    right: 0px;
    top: 41px;
    width: 60px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: cover;
}

.index2-our-butchery-wrapper {
    position: relative;
    margin-top: -130px;
}

.product-filter-main-wrapper .heading-title {
    text-align: center;
    padding-bottom: 60px;
}

.product-filter-main-wrapper .heading-title h4 {
    color: black;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
}

.product-filter-main-wrapper .heading-title img {
    padding-top: 22px;
}

.product-filter-main-wrapper .tab {
    float: left;
    border: 1px dashed #ccc;
    width: 100%;
    background-image: url(../images/section-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    overflow: auto;
}

.product-filter-main-wrapper .tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 0px 16px;
    height: 56px;
    line-height: 55px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 17px;
    text-transform: uppercase;
}

.product-filter-main-wrapper .tab button span {
    display: inline-block;
    float: right;
}

.product-filter-main-wrapper .tab button span svg {
    width: 55px;
    height: 55px;
}

.product-filter-main-wrapper .tab .active {
    background-color: var(--color-primary);
    color: #fff;
}

.product-filter-main-wrapper .tab .active span svg {
    fill: #fff;
}

.product-filter-main-wrapper .custom-tbs-content {
    width: 100%;
    float: left;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .custom-tabs-prdt {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 9px 0px #220c2b1a;
    box-shadow: 0 2px 9px 0px #220c2b1a;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .custom-tabs-prdt .product-thumbnail {
    position: relative;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .custom-tabs-prdt .product-thumbnail img {
    border-radius: 8px;
    -webkit-transition: .3s;
    transition: .3s;
    width: 100%;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .custom-tabs-prdt .product-thumbnail:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .custom-tabs-prdt .product-body .product-title a {
    display: block;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    font-weight: 600;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .custom-tabs-prdt .product-body .product-title a:hover {
    color: var(--color-primary);
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .custom-tabs-prdt .product-body .star-review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 4px;
    padding-bottom: 6px;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .custom-tabs-prdt .product-body .star-review li a {
    color: #ffd700;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .custom-tabs-prdt .product-body .star-review li+li {
    margin-left: 6px;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .custom-tabs-prdt .product-body .product-price {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .custom-tabs-prdt .product-body .product-price span {
    font-size: 13px;
    color: #848486;
    font-weight: 600;
    margin-left: 5px;
    text-decoration: line-through;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .custom-tabs-prdt .product-body .product-text {
    color: #5f5f5f;
    font-size: 13px;
    line-height: 24px;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .custom-tabs-prdt .product-body .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 45px;
    border-radius: 30px;
    line-height: 47px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .custom-tabs-prdt .product-body .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .custom-tabs-prdt .product-body .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .center-btn {
    width: 100%;
    text-align: center;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .center-btn a {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 45px;
    border-radius: 30px;
    line-height: 47px;
    color: #ffffff;
    background: #efbc50;
    text-align: center;
    padding: 0px 38px;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .center-btn a:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.product-filter-main-wrapper .custom-tbs-content .tabcontent .product-new-filter-block .center-btn a:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.team-client-main-wrapper .heading-title {
    text-align: center;
    padding-bottom: 60px;
}

.team-client-main-wrapper .heading-title h4 {
    color: black;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
}

.team-client-main-wrapper .heading-title img {
    padding-top: 22px;
}

.team-client-main-wrapper .team-box-wrapper {
    background-color: #fff;
    padding: 20px;
    -webkit-box-shadow: 0 2px 9px 0px #220c2b1a;
    box-shadow: 0 2px 9px 0px #220c2b1a;
    border-radius: 8px;
}

.team-client-main-wrapper .team-box-wrapper .team-img {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.team-client-main-wrapper .team-box-wrapper .team-img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.team-client-main-wrapper .team-box-wrapper .team-text {
    padding: 20px 0px 0px;
}

.team-client-main-wrapper .team-box-wrapper .team-text h4 {
    line-height: 18px;
}

.team-client-main-wrapper .team-box-wrapper .team-text h4 a {
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
}

.team-client-main-wrapper .team-box-wrapper .team-text h4 a:hover {
    color: var(--color-primary);
}

.team-client-main-wrapper .team-box-wrapper .team-text p {
    font-size: 13px;
    padding-top: 6px;
}

.team-client-main-wrapper .team-box-wrapper .team-text .social-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 13px;
}

.team-client-main-wrapper .team-box-wrapper .team-text .social-tag li a span {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 36px;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.team-client-main-wrapper .team-box-wrapper .team-text .social-tag li a span svg {
    width: 18px;
    height: 18px;
    fill: var(--color-primary);
}

.team-client-main-wrapper .team-box-wrapper .team-text .social-tag li a:hover span {
    background-color: var(--color-primary);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.team-client-main-wrapper .team-box-wrapper .team-text .social-tag li a:hover span svg {
    fill: #fff;
}

.team-client-main-wrapper .team-box-wrapper .team-text .social-tag li+li {
    margin-left: 7px;
}

.team-client-main-wrapper .team-box-wrapper:hover .team-img img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.team-client-main-wrapper .custom-pegination {
    text-align: center;
    padding-top: 30px;
}

.team-client-main-wrapper .custom-pegination ul li {
    display: inline-block;
}

.team-client-main-wrapper .custom-pegination ul li a {
    display: inline-block;
    border: 1px solid #f6f6f6;
    border-radius: 30px;
    width: 40px;
    height: 40px;
    line-height: 36px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.team-client-main-wrapper .custom-pegination ul li a:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: -38%;
    top: 0;
    -webkit-transform: skew(26deg);
    transform: skew(26deg);
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    background-color: var(--color-primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.team-client-main-wrapper .custom-pegination ul li a:hover {
    border: 1px solid var(--color-primary);
}

.team-client-main-wrapper .custom-pegination ul li a:hover span {
    z-index: 11;
    position: relative;
    color: #fff;
}

.team-client-main-wrapper .custom-pegination ul li a:hover:after {
    height: 100%;
    width: 135%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.team-client-main-wrapper .custom-pegination ul li+li {
    margin-left: 10px;
}

.team-client-main-wrapper .custom-pegination ul .preious a {
    display: inline-block;
    border: 1px solid #efbc50;
    background-color: #efbc50;
    border-radius: 30px;
    width: 150px;
    text-transform: uppercase;
    height: 40px;
    line-height: 40px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.team-client-main-wrapper .custom-pegination ul .preious a:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: -38%;
    top: 0;
    -webkit-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    background: var(--color-primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.team-client-main-wrapper .custom-pegination ul .preious a:hover {
    border: 1px solid var(--color-primary);
}

.team-client-main-wrapper .custom-pegination ul .preious a:hover span {
    z-index: 11;
    position: relative;
    color: #fff;
}

.team-client-main-wrapper .custom-pegination ul .preious a:hover:after {
    height: 100%;
    width: 135%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.team-client-main-wrapper .custom-pegination ul .active a {
    background-color: var(--color-primary);
    color: #fff;
}

.team-client-main-wrapper.team-details-wrapper .team-img img {
    width: 100%;
}

.team-client-main-wrapper.team-details-wrapper .team-heading-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.team-client-main-wrapper.team-details-wrapper .team-heading-wrapper .team-title h2 {
    font-size: 28px;
    font-weight: 500;
    color: #222222;
    margin-bottom: 10px;
}

.team-client-main-wrapper.team-details-wrapper .team-heading-wrapper .team-title h3 {
    font-size: 16px;
    color: var(--color-primary);
}

.team-client-main-wrapper.team-details-wrapper .team-heading-wrapper .team_member_social_icons .social-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 13px;
}

.team-client-main-wrapper.team-details-wrapper .team-heading-wrapper .team_member_social_icons .social-tag li a span {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 36px;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.team-client-main-wrapper.team-details-wrapper .team-heading-wrapper .team_member_social_icons .social-tag li a span svg {
    width: 18px;
    height: 18px;
    fill: var(--color-primary);
}

.team-client-main-wrapper.team-details-wrapper .team-heading-wrapper .team_member_social_icons .social-tag li a:hover span {
    background-color: var(--color-primary);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.team-client-main-wrapper.team-details-wrapper .team-heading-wrapper .team_member_social_icons .social-tag li a:hover span svg {
    fill: #fff;
}

.team-client-main-wrapper.team-details-wrapper .team-heading-wrapper .team_member_social_icons .social-tag li+li {
    margin-left: 7px;
}

.team-client-main-wrapper.team-details-wrapper .team-content {
    margin-top: 20px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e4e4e4;
}

.team-client-main-wrapper.team-details-wrapper .team-content p {
    font-size: 15px;
    padding-top: 20px;
}

.team-client-main-wrapper.team-details-wrapper .team-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 10px;
}

.team-client-main-wrapper.team-details-wrapper .team-info p {
    width: 100px;
}

.team-client-main-wrapper.team-single-back {
    background-image: url(../images/section-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.fresh-idea-wrapper {
    padding-bottom: 60px;
}

.fresh-idea-wrapper h4 {
    font-size: 24px;
    font-weight: 600;
}

.fresh-idea-wrapper .p-text {
    padding-top: 15px;
}

.fresh-idea-wrapper .p-text p {
    font-size: 13px;
    color: #5f5f5f;
    line-height: 24px;
}

.fresh-idea-wrapper .form-leave-wrapper form p {
    font-size: 16px;
    color: #5f5f5f;
    margin-top: 40px;
    padding-bottom: 10px;
}

.fresh-idea-wrapper .form-leave-wrapper form textarea {
    background-color: #f2f2f2;
    border: 1px solid #f2f2f2;
    color: #797979;
    padding: 15px 30px;
    border-radius: 0;
    font-size: 13px;
}

.fresh-idea-wrapper .form-leave-wrapper form input {
    background-color: #f2f2f2;
    border: 1px solid #f2f2f2;
    color: #797979;
    padding: 15px 30px;
    border-radius: 0;
    font-size: 13px;
}

.fresh-idea-wrapper .form-leave-wrapper .custom-btn {
    font-size: 14px;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border-radius: 30px;
    line-height: 50px;
    color: #ffffff;
    background: var(--color-primary);
    text-align: center;
    padding: 0px 38px;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.fresh-idea-wrapper .form-leave-wrapper .custom-btn:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.fresh-idea-wrapper .form-leave-wrapper .custom-btn:hover:before {
    left: 120%;
    -webkit-transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.company-brand-main-wrapper {
    padding: 26px 0px;
    border-top: 2px solid #fff;
    background-color: #111;
}

.company-brand-main-wrapper .company-logo-slider .company-logo img {
    width: inherit;
}

.index2-contact_img_background {
    background-image: url(../images/product/offline.jpg);
}

.index2-contact_img_background .request-form-wrapper p {
    color: #fff;
}

.index2-contact_img_background .request-form-wrapper .custom-btn {
    background: #efbc50;
}

.shape-wrapper {
    position: relative;
}

.shape-wrapper:before {
    position: absolute;
    content: '';
    bottom: 30px;
    left: 158px;
    width: 161px;
    height: 91px;
    background: url(../images/index2/shape-3.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    z-index: -1;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: 100ms;
    animation-delay: 100ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: pulse;
    animation-name: pulse;
    opacity: 0.5;
}

.shape-wrapper:after {
    position: absolute;
    content: '';
    top: 17%;
    right: 158px;
    width: 197px;
    height: 87px;
    background: url(../images/index2/shape-2.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    z-index: -1;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-delay: 100ms;
    animation-delay: 100ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    opacity: 0.5;
}

.shape-filter-wrapper {
    background: #fff8f8;
    margin-top: 20px;
    position: relative;
}

.shape-filter-wrapper:after {
    position: absolute;
    content: '';
    top: 17%;
    right: 246px;
    width: 130px;
    height: 113px;
    background: url(../images/index2/shape-1.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    z-index: 1;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-delay: 100ms;
    animation-delay: 100ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: pulse;
    animation-name: pulse;
    opacity: 0.5;
}

.shape-filter-wrapper:before {
    position: absolute;
    content: '';
    bottom: 90px;
    left: 135px;
    width: 130px;
    height: 91px;
    background: url(../images/index2/shape-4.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    z-index: 1;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: 100ms;
    animation-delay: 100ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: pulse;
    animation-name: pulse;
    opacity: 0.5;
}

.shape-blog-wrapper {
    position: relative;
    background: #fff8f8;
    padding: 100px 0px 80px;
}

.menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 10;
    ;
    -o-box-shadow: 0px 0px 25px -10px;
    -ms-box-shadow: 0px 0px 25px -10px;
    -webkit-box-shadow: 0px 0px 25px -10px;
    box-shadow: 0px 0px 15px -15px;
}

#return-to-top {
    position: fixed;
    bottom: 43px;
    right: 30px;
    display: block;
    display: none;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50px;
    line-height: 50px;
    font-size: 24px;
    background: var(--color-primary);
    -webkit-transition: all 0.3s ease;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s ease;
    z-index: 1000;
    color: #fff;
    -webkit-animation: jump 1s ease-in alternate infinite;
    animation: jump 1s ease-in alternate infinite;
}

#return-to-top i {
    color: #fff;
    line-height: 50px;
    font-size: 20px;
    -webkit-transition: all 0.3s ease;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s ease;
}

#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

.change-bg1 {
    background: #111 !important;
}

.change-bg2 {
    background: #111 !important;
}

@-webkit-keyframes jump {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 50%, 0);
    }
}

@keyframes jump {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 50%, 0);
    }
}

#toggle_close {
    position: absolute;
    z-index: 100;
    right: 10px;
    top: 30px;
    font-size: 25px;
    color: #111;
    cursor: pointer;
    height: 25px;
    width: 25px;
    text-align: center;
    border-radius: 50px;
}

.custom-container {
    max-width: 1700px;
}

.custom-check::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.custom-check::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.custom-check::-webkit-scrollbar-thumb {
    background: #0060aa;
}

/* Handle on hover */
.custom-check::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*# sourceMappingURL=style.css.map */
