@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/
html {
    overflow-x: hidden;
}
body {
    word-break: break-word;
    font: 15px/25px "Montserrat", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

.slicknav_nav a:hover {
    background: #dd5e11;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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

p {
    font-weight: 400;
    line-height: 25px;
    font-family: "Montserrat", sans-serif;
    color: #282522;
    font-size: 14px;
}


/***** Font Files *****/

@font-face {
    font-family: 'Brunson';
    src: url(../fonts/Brunson.ttf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 0px 10px 0 20px;
    color: #ffffff;
    z-index: 1;
    background: linear-gradient(45deg, #d5560a, #ff721f);
    position: relative;
    font-size: 14px;
    transition: all 250ms;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    width: fit-content;
    text-transform: uppercase;
    height: 54px;
    border-radius: 30px;
    border: 1px solid #ff721f;
    font-weight: 500;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #f8f4e9;
    z-index: -1;
    transition: all 250ms
}

.theme_btn:hover {
    color: #000;
    border: 1px solid #f07227;
}

.theme_btn:hover::before {
    width: 100%;
}

.theme_btn span {
    width: 50px;
    height: 33px;
    background: #fff;
    display: flex;
    align-items: center;
    border-radius: 30px;
    justify-content: center;
    box-shadow: -3px 0px 6px #0000005e;
}

.theme_btn:hover span {
    background: linear-gradient(45deg, #d5560a, #ff721f);
}

.theme_btn:hover span img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(0%) hue-rotate(70deg) brightness(108%) contrast(108%);
}

.theme_btn span img {
    width: auto;
    height: auto;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Brunson';
    font-size: 82px;
    line-height: 1;
    color: #fff;
    font-weight: 500;
    margin: 0 0 18px;
    text-transform: uppercase;
}

h2 {
    font-family: 'Brunson';
    font-size: 70px;
    line-height: 1.2;
    color: #15110c;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Brunson';
    line-height: 1.2;
    color: cornsilk;
    font-weight: 400;
    margin: 0 0 20px;
    font-size: 24px;
    color: #363636;
}

h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/*header css start */

.menuSec {
    position: relative;
}

.menu-wrap:before {
    position: absolute;
    content: '';
    background: #f8f4e9;
    width: 32%;
    height: 100%;
    right: 0;
    top: 0;
    border-radius: 60px;
    z-index: -1;
}
.menu-wrap {
    position: relative;
    padding: 10px 0;
}
.top-wrap {
    background: repeating-linear-gradient(360deg, #d9590c, #f47a2f 100px);
}

.top-wrap p {
    margin: 0;
    padding: 7px 0;
    text-align: center;
    color: #fff;
    line-height: 1;
    font-size: 13px;
    font-weight: 500;
}
.menuSec img {
    margin: 0;
}

ul#menu {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

ul#menu li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

ul#menu ul {
    display: none;
}

ul#menu li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #282828;
    font-weight: 600;
    padding: 0;
    font-size: 14px;
    text-transform: uppercase;
}

ul#menu li:last-child a:after {
    display: none;
}

ul#menu li a:hover,
ul#menu li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #f47a2f;
}

ul#menu li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

ul#menu li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
    width: 100%;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

ul#menu li>ul>li>a:before,
ul#menu li>ul>li>a:after {
    display: none;
}

ul#menu li:hover li {
    float: none;
}

.menuSec .row {
    align-items: center;
}

ul#menu li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

ul#menu li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

ul.list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    width: 100%;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

ul.list-icon li i {
    color: #000;
    font-size: 15px;
}

ul.list-icon li form button i {
    color: #000;
}

ul.list-icon li form {
    position: relative;
}

ul.list-icon li form input {
    width: 100%;
    padding: 10px;
    border: unset;
    background: #fff;
    border-radius: 30px;
    color: #15110c;
    font-weight: 500;
    height: 50px;
}

ul.list-icon li form input::placeholder {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

ul.list-icon li form button {
    background: unset;
    border: unset;
    font-size: 13px;
    position: absolute;
    right: 10px;
    top: 35%;
    border-left: 1px solid #000;
    padding-left: 20px;
    line-height: 1;
}


/*header css end */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */


/* ++++++++++++++++++++++++++++++++++++++++ Home ++++++++++++++++++++++++++++++++++++++++  */
a.icon-top {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    border-radius: 50%;
}

ul.list-icon li:first-child {
    width: 70%;
}

.container-fluid {
    padding: 0 5%;
}

section.banner {
    position: relative;
    /* padding: 120px 0 50px; */
    /* background: #f8f4e9; */
    z-index: 0;
    margin-top: 20px;
}
section.banner .container {
    position: relative;
}
.ban-img:before {
    position: absolute;
    content: '';
    background-image: url(../images/paw.png);
    width: 90%;
    height: 100%;
    right: 20px;
    bottom: -10px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.ban-wrap h1 span {
    background: repeating-linear-gradient(360deg, #fff, #ffffff7a 100px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ban-wrap a.theme_btn {box-shadow: 0 0  5px #fff;}
.ban-wrap p {
    width: 100%;
    color: #fff;
}
.slick-slide.slick-current.slick-active .ban-wrap h1 {
    animation: slideUp 1s ease-out forwards;
}
.slick-slide.slick-current.slick-active .ban-wrap p {
    animation: slideUp 2s ease-out forwards;
}

.slick-slide.slick-current.slick-active .ban-wrap a.theme_btn {
    animation: slideUp 2.5s ease-out forwards;
}
.banner .banner_bottom>.slide_counter>h2 {
    display: flex;
    gap: 3px;
    align-items: center;
    line-height: 40px;
    font-weight: 400;
    font-size: 20px;
    margin: 0;
    justify-content: center;
    gap: 10px;
}
.ban-wrap .theme_btn{
    margin: 0 auto;
}

.banner .banner_bottom>.slide_counter>h2>span.end_number {
    color: #c5c5c5;
    font-family: 'Brunson';
    letter-spacing: 1px;
}

.banner .banner_bottom>.slide_counter>h2>span.start_number {
    color: #eb6f23;
    font-family: 'Brunson';
    letter-spacing: 2px;
}

.banner .slick-prev:before {
    display: none;
}

.banner .slick-next:before {
    display: none;
}

.banner .slick-prev {
    display: none;
}

.banner .slick-next {
    display: none;
}

.banner .banner_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: 149px;
    z-index: 99;
    bottom: 20px;
    background: #fff;
    right: 40px;
    padding: 0;
    border-radius: 80px;
}

.banner .banner_bottom>.slide_arrows {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 10;
    justify-content: space-between;
    margin: 0;
    width: 100%;
}

ul.slide_arrows li img:hover {
    cursor: pointer;
}

.slide_counter {position: absolute;left: 0;right: 0;margin: 0 auto;}

.banner .banner_bottom>.slide_arrows li {
    width: 40px;
    height: 40px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* border: 1px solid #808080; */
    transition: 0.5s;
    box-shadow: 0 0 10px #ccc;
    cursor: pointer;
}

.banner .banner_bottom>.slide_arrows li:hover {
    background: #f48038;
}

.banner .banner_bottom>.slide_arrows li:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(149deg) brightness(103%) contrast(105%);
}
p.line_div {
    margin: 0;
}

.banner .banner_bottom>.slide_arrows li img {
    width: 14px;
}


/* .progress {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #c5c5c5;
    background-image: repeating-linear-gradient(360deg, #d9590c, #f47a2f 100px);
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: background-size 0.4s ease-in-out;
    position: absolute;
    left: 5%;
    width: 62%;
}
 */
section.banner .container-fluid {
    padding-right: 6%;
    position: relative;
}
.ban-wrap {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translate(0, -50%);
}

.ban-box {
    position: relative;
}

img.ban-bg {
    border-radius: 20px;
    width: 100%;
}

.banner-slider .slick-slide {
    margin: 0;
}


section.banner .row {
    align-items: center;
}

img.ban-1 {
    width: 108%;
    height: 500px;
    object-fit: contain;
    object-position: top;
    border-radius: 0 30px 30px 0;
    margin: 0 0 0 auto;
    display: block;
}

img.ban-2 {
    width: 260px;
    height: auto;
}

.ban-img {
    position: relative;
}

/* section.banner:after {
    content: "";
    position: absolute;
    background: #fff;
    width: 6%;
    height: 90%;
    bottom: 0;
    z-index: -1;
    right: 0;
}
 */
.main-silder-socail-link {
    position: absolute;
    right: 22px;
    bottom: 0;
    z-index: 111;
}

.main-silder-socail-link ul {
    position: relative;
    margin-top: 160px;
}

.main-silder-socail-link ul:before {
    content: "";
    position: absolute;
    background: #808080;
    width: 0.5px;
    height: 176px;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: -200px;
}

.main-silder-socail-link ul li a {
    color: #808080;
    font-size: 18px;
    border: 1px solid #808080;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: 20px;
    transition: 0.5s;
}

.main-silder-socail-link ul li a:hover {
    transition: 0.5s;
    transform: rotate(360deg);
    background: #ea6e22;
    color: #fff;
}


.main_slider-follow-us h2 {
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
}

.banner-slider {
    background: linear-gradient(360deg, #d9590c, #f47a2f 100px);
    padding: 0;
    border-radius: 40px;
    background-size: cover;
    position: relative;
}


.main_slider-follow-us {
    position: absolute;
    right: 32px;
    z-index: 9999;
    top: 37%;
    width: fit-content;
    margin: 0 0 0 auto;
    writing-mode: sideways-lr;
}

.food-img span {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #808080;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    margin-bottom: 200px;
}

.food-img span:before {
    position: absolute;
    content: '';
    border: 1px dashed #808080;
    width: 1px;
    height: 180px;
    bottom: -192px;
}

.food-img {
    width: fit-content;
    margin: 0 auto;
}

.food-img h3 {
    text-align: center;
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}
.food-img span img {
    width: auto;
    height: auto;
}
.food {
    width: fit-content;
    position: absolute;
    bottom: 0;
    left: -140px;
    bottom: 10px;
}

img.foo2 {
    position: absolute;
    right: 20px;
    top: 20px;
}

section.about-us {
    padding: 80px 0;
}

.abt-img1 img {
    width: 100%;
    border-radius: 20px 20px 0 20px;
}

.dummy-text h4 {
    font-size: 139px;
    font-family: 'Brunson';
    color: #f5f5f5;
    line-height: 1;
    margin: 0;
    letter-spacing: 3px;
    text-align: center;
}

.dummy-text img {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 60%;
    transform: translate(0, -50%);
}

.dummy-text {
    position: relative;
}

.abt-img3 img {
    width: 100%;
    border-radius: 0 20px 20px;
}

.check-text h3 {
    font-size: 29px;
    letter-spacing: 1px;
}

.check-text ul li {
    font-size: 19px;
    color: #0f0e0e;
    font-family: 'Brunson';
    font-weight: 400;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.check-text p {
    width: 80%;
}

section.about-us .row {
    align-items: center;
}

.abt-text {
    width: 94%;
    margin: 0 0 0 auto;
}

.top-heading {
    text-align: center;
}

.top-heading p {
    width: 40%;
    margin: 0 auto;
    margin-bottom: 40px;
}

.prd-box {
    padding: 40px 20px 20px;
    background: #f8f4e9;
    border-radius: 10px;
    text-align: center;
    transition: 0.5s;
}

.prd-box:hover {
    background: #f96e1c;
}

.prd-box img {
    width: 210px;
    margin: 0 auto;
    display: block;
    margin-bottom: -50px;
    height: 200px;
    object-fit: contain;
}

.prd-text {
    background: #fff;
    padding: 110px 10px 20px;
    border-radius: 10px;
}

.ratings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.ratings i {
    color: #ffae00;
    font-size: 15px;
}

.ratings span {
    font-weight: 500;
    color: #000;
    font-family: 'Brunson';
    letter-spacing: 1px;
    font-size: 15px;
}

.prd-text p {
    font-size: 16px;
}


.theme_btn.btn2 {
    padding: 0 20px;
}

.prd-text a {
    margin: 0 auto;
    margin-top: 10px;
    width: 190px;
}
section.real-stories {
    position: relative;
    background-size: cover;
    padding: 40px 0;
    background-color: #f8f4e966;
    background-image: url(../images/real4.png);
    background-blend-mode: color;
    margin: 80px 0;
}

section.real-stories .row {
    align-items: center;
}

.real-img img {
    width: 100%;
    z-index: 99;
    position: relative;
    margin-bottom: -40px;
}.real-story span {
    color: #ed6616;
}
section.real-stories:before {
    position: absolute;
    content: '';
    background-image: url(../images/real2.png);
    background-size: cover;
    height: 100%;
    right: 0;
    width: 27%;
    top: 0;
    z-index: 0;
}
img.paw {
    position: absolute;
    width: 32%;
    right: 0;
    object-position: right;
    object-fit: cover;
    bottom: 0;
    z-index: 0;
}
section.benefits {
    padding-bottom: 80px;
}
.ben-box {
    background-image: url(../images/benefits-bg.png);
    background-size: cover;
    background-position: top;
    padding: 40px 20px 55px;
    text-align: center;
    width: 100%;
}

.img-ben span {
    width: 90px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #f8f4e9;
    border-radius: 50%;
    margin-top: -53px;
    margin-bottom: 50px;
}
.ben-box h3 {
    letter-spacing: 1px;
}
/* Footer Section Start */

footer.footer-sec {
    position: relative;
    padding: 70px 0 0;
    background-color: #090909;
    border-top: 10px solid #000;
}
footer.footer-sec button.theme_btn.btn2 {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
}


ul.footer-social-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
    gap: 10px;
    margin-bottom: 15px;
}

ul.footer-social-list li i {
    font-size: 16px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fff;
    border-radius: 50%;
    border: 1px solid #ffffff6e;
}

ul.footer-social-list li i:hover {
    background: #f47a2f;
    transition: 1s ease-in-out;
    color: #fff;
}

.footer-text h2 {
    font-size: 30px !important;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
}

ul.footer-ser li a {
    font-size: 15px;
    color: #ffffffa6;
    line-height: 40px;
    font-weight: 500;
    text-transform: capitalize;
}

ul.footer-link li a {
    font-size: 15px;
    color: #ffffffa6;
    line-height: 40px;
    font-weight: 500;
    text-transform: capitalize;
}

.footer-form {
    position: relative;
}

.footer-form input {
    width: 100%;
    height: 50px;
    padding: 15px;
    border: 1px solid #dddddd99;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
    font-family: 'Montserrat';
    font-size: 13px;
    padding-left: 20px;
    background: transparent;
    border-radius: 230px;
}

.footer-form i {
    position: absolute;
    top: 19px;
    left: 30px;
    font-size: 20px;
    color: #999;
}

.footr-btn button {
    width: 100%;
    justify-content: center;
}

.footer-text p {
    margin: 20px 0px 0 0;
    color: #ffffffa6;
}

ul.footer-link {
    display: block;
}

.footer-text {
    position: relative;
}

.footer-text img {
    display: flex;
    margin-bottom: 40px;
}


.bottom-nav {
    padding: 10px 20px;
    text-transform: capitalize;
    border-top: 1px solid #7c7c7c;
    margin-top: 30px;
}

.bottom-nav p {
    font-size: 14px;
    color: #fff;
    font-family: 'Montserrat';
    text-align: start;
    line-height: 30px;
    margin: 0;
    font-weight: 300;
}
.payment-img {
    text-align: right;
}

ul.footer-link li {
    border-bottom: 1px solid transparent;
    width: 75%;
    transition: 1s ease-in-out;
}

ul.footer-link li:hover {
    padding-left: 10px;
    border-color: #fff;
    transition: 1s ease-in-out;
    color: #999999;
}

.no-border:before {
    display: none;
}


/* Footer Section End */
.save-img img {
    width: 100%;
    border-radius: 10px 0 0 10px;
    height: 560px;
    object-fit: cover;
}

.save-text {
    padding: 33px 50px;
    background: linear-gradient(45deg, #d5560a, #ff721f);
    border-radius: 0 10px 0 0;
    height: 560px;
}
.save-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-left: -100px;
}
.save-img-2 img {
    width: 100%;
    border-radius: 0 0 10px 10px;
}
section.save-bark .row {
    align-items: center;
}

.save-text2 {
    text-align: right;
}

.save-text2 p {
    width: 80%;
    margin: 0 0 0 auto;
    margin-bottom: 10px;
}

section.save-bark {
    padding-bottom: 80px;
}
.footer-text a {
    transition: 0.5s;
    display: block;
    color: #ffffffa6;
}

.footer-text p {
    margin-bottom: 20px;
}

.footer-text a:hover {
    color: #f47a2f;
}

.footer-text.w-set {
    width: 75%;
    margin: 0 0 0 auto;
}


/* Testimonial Section Start */

.testimonial-sec {
    position: relative;
    padding: 50px 0;
}
.section-heading p {
    width: 60%;
    margin: 0 auto;
}
ul.tidti-list li {
    color: #fa6f1d;
}

.testimonial-sec .sec-head h2 {
    font-size: 65px;
}

.test-box-text {
    background-image: url(../images/testi-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 0 40px;
}



.testi-img img {
    height: 240px;
    object-fit: cover;
    object-position: top;
}

.testi-box {
    background: #fff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 0 10px 0 #fff; */
}

.authr-box {
    display: flex;
    align-items: end;
}

.authr-box>div {
    margin-left: 10px;
}

.authr-box img {
    margin-bottom: 30px;
}

.testi-box {
    margin: 0;
}

.authr-box>img {
    width: auto;
}

.testi-slider .slick-list {
    padding: 20px 0;
}

.testi-slider button.slick-arrow {
    transition: 2s all;
    height: 200px;
    width: 200px;
    background-color: #0cd94100 !important;
    border-radius: 20px;
    background-blend-mode: overlay;
    background-size: cover !important;
    background-position: center !important;
}

.testi-slider button.slick-prev.slick-arrow {
    left: -240px;
}

.testi-slider button.slick-next.slick-arrow {
    right: -240px;
}

.testi-slider button.slick-prev.slick-arrow:before {

    display:none;
}

.testi-slider button.slick-next.slick-arrow:before {
display:none;
}

.testi-slider .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1;
    margin: 10px;
}



.testi-slider button.slick-arrow:hover:before {
    color: #fff;
    transition: 0.5s ease-in-out;
}

.testi-slider button.slick-next.slick-arrow:before {
    right: 50px;
    position: absolute;
    left: auto;
}

.testi-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #0c7f7d;
    font-size: 16px;
}

.testi-slider .slick-dots li button:before {
    font-family: 'slick';
    font-size: 16px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: 'ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢';
    text-align: center;
    opacity: 1;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.testi-slider .slick-dots {
    position: absolute;
    bottom: -55px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.testi-slider-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-right: 40px;
    border-radius: 0;
    position: relative;
    z-index: 2;
    transition: 1s ease-in-out;
    background: #f8f4e9;
    border-radius: 10px;
    box-shadow: 0px 6px 27px 0px rgba(0, 0, 0, 0.09);
    margin: 30px auto;
    width: 91%;
}

.testi-slider-box .col-lg-8 {
    position: relative;
    z-index: 1;
}

ul.tidti-list {
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0;
    gap: 10px;
}

ul.star {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.test-box-text ul.star i {
    background: #f39f1e;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.test-box-text p {
    z-index: 1;
    font-size: 14px;
    color: #8a8a8a;
    position: relative;
    font-style: italic;
}

.test-box-text p::before {
    left: 0;
    right: 0;
    z-index: -1;
    content: '';
    bottom: 10px;
    height: 60px;
    margin: auto;
    width: 100px;
    background: url(../images/comaas2.png) no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
}

.section-heading {
    text-align: center;
}

section.testimonial-sec .top-heading {
    margin-bottom: 10px;
}
.wrap-img-testi {
    padding: 30px 30px 20px;
    background: linear-gradient(45deg, #d5560a, #ff721f);
    border-radius: 10px;
}

.testi-img img {
    border-radius: 10px;
    margin-bottom: 10px;
}

.wrap-img-testi  h3 {
    font-weight: 400;
    margin: 0;
    color: #fff;
    font-size: 15px;
}

.wrap-img-testi  h4 {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-family: 'Brunson';
    font-size: 29px;
    letter-spacing: 1px;
}

/* Testimonial Section End */

  @keyframes slideUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* ++++++++++++++++++++++++++++++++++++++++  end ++++++++++++++++++++++++++++++++++++++++  */


/* new css */


/* new css */


section.error-404.not-found {
    text-align: center;
    padding: 90px 10px;
}

section.error-404.not-found {
    text-align: center;
}

section.error-404.not-found h2 {
    font-size: 51px;
}

.error4040 {
    justify-items: center;
}



section.Innerbanner {
    background: #f8f4e9;
    padding: 110px 10px;
}


section.Innerbanner .col-md-12 h2 {
    color: #f47a2f;
}a





.type-product .prd-box h3 {
    font-family: 'Brunson';
    line-height: 1.2;
    color: cornsilk;
    font-weight: 400;
    margin: 0 0 20px;
    font-size: 24px !important;
    color: #363636;
}

.type-product .prd-box p {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.product-template-default section.Innerbanner {
    margin-bottom: 40px;
}



.product-template-default .woocommerce-product-gallery__wrapper img.wp-post-image {
    padding: 30px 30px;
    background: white;
}


.product-template-default .summary.entry-summary h1.product_title.entry-title {
    font-size: 29px;
}

.product-template-default .summary.entry-summary p.price {
    color: black;
    font-weight: 600;
}

button.single_add_to_cart_button.button.alt {
    background: linear-gradient(45deg, #d5560a, #ff721f);
    padding: 14px 20px;
    border-radius: 30px;
    font-family: 'Montserrat';
    font-weight: 500;
    text-transform: uppercase;
}



section.related.products {
    display: none;
}



.prd-box .prd-text p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}



li.searchbarlist {
    background: transparent !important;
}

li.searchbarlist .dgwt-wcas-search-wrapp {
    background: transparent;
}

li.searchbarlist .dgwt-wcas-sf-wrapp {
    background: transparent;
}



nav.woocommerce-breadcrumb {
    display: none;
}

.woocommerce-page section.Innerbanner {
    margin-bottom: 60px;
}


header.woocommerce-products-header {
    DISPLAY: NONE;
}



header.entry-header {
    display: none;
}





/* submit page css*/
.submittails0366 div#gform_wrapper_1 {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.submittails0366 div#gform_wrapper_1  label {font-size: 19px;font-family: 'Brunson';font-weight: 400;letter-spacing: 1px;display: flex;align-items: center;gap: 10px;margin-bottom: 20px;}

.submittails0366 div#gform_wrapper_1 input {
    border: 1px solid black;
    border-radius: 10px;
}

.submittails0366 div#gform_wrapper_1 .gchoice.gchoice_1_6_1 {
    display: flex;
}

.submittails0366 div#gform_wrapper_1 label#label_1_6_1 {
    margin-bottom: 0px;
    margin-left: 10px;
}

.submittails0366 div#gform_wrapper_1 textarea {
    border: 1px solid black;
    border-radius: 10px;
}

.submittails0366 div#gform_wrapper_1 input#gform_submit_button_1 {
    background: linear-gradient(45deg, #d5560a, #ff721f);
    padding: 10px 30px;
    color: white;
    font-weight: 600;
    border: 0px solid;
    border-radius: 30px;
}



.submittails0366 .vc_grid-item img.vc_gitem-zone-img {
    display: none !important;
}

.submittails0366 .vc_grid-item .vc_gitem-   zone img {
    /* display: none; */
}

.vc-gitem-zone-height-mode-auto:before {
    display: none;
}

.submittails0366 .vc_grid-item .vc_col-sm-12 {
    border: 1px solid;
    padding: 20px 20px;
    border-radius: 20px;
}

.submittails0366 .vc_grid-item h4 {
    font-family: 'Brunson';
    line-height: 1.2;
    color: cornsilk;
    font-weight: 400;
    margin: 0 0 20px;
    font-size: 24px;
    color: #363636;
}



.submittails0366 .vc_grid-item a.vc_general.vc_btn3 {
    background: linear-gradient(45deg, #d5560a, #ff721f) !important;
    font-weight: 500;
    border-radius: 30px;
}


/* submit page css*/






section.banner span.d-block {
    font-size: 50px;
}


section.banner span.d-block {
    font-size: 50px !important;
}



section.banner p strong {
    font-weight: 600;
    font-size: 18px;
}





.woocommerce-page header.entry-header {
    display: none;
}

.page-id-34 h1.entry-title {
    display: none;
}

.page-id-52 h1.entry-title {
    display: none;
}
.page-id-61 h1.entry-title {
    display: none;
}


.type-product .prd-box h3 {
    font-family: 'Brunson';
    line-height: 1.2;
    color: cornsilk;
    font-weight: 400;
    margin: 0 0 20px;
    font-size: 24px !important;
    color: #363636;
}

.type-product .prd-box img.prd-1 {
    width: 210px;
    margin: 0 auto;
    display: block;
    margin-bottom: -50px;
    height: 200px;
    object-fit: contain;
}





.newsectmiddle h1 {
    color: black;
    text-align: center;
}

.newsectmiddle p {
    color: black;
    font-weight: 600;
    text-align: center;
}

.newsectmiddle {
    margin-top: 50px;
}


.newsectmiddle {}

.newsectmiddle h1 {
    color: black;
    text-align: center;
}

.newsectmiddle p {
    color: black;
    font-weight: 600;
    text-align: center;
}

.newsectmiddle {
    margin-top: 50px;
}

.newsectmiddle {
    background: #e25f11;
    align-items: center;
    justify-items: center;
    margin: 30px 110px;
    padding: 20px 20px;
    border-radius: 20px;
}

.newsectmiddle * {
    color: white !important;
}


section.products .row {
    align-items: center;
    justify-content: center;
}


.slides img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.slides img.active {
  opacity: 1;
}
button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
}
button.prev { left: 10px; }
button.next { right: 10px; }
.dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}
.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}
.dots span.active {
  background: #333;
}

.slider {
    position: relative;
    width: 410px;
    height: 480px;
    overflow: hidden;
}



.product-template-default h4 {
    letter-spacing: 1px;
    font-family: 'Brunson';
    line-height: 1.2;
    color: cornsilk;
    font-weight: 400;
    margin: 0 0 20px;
    font-size: 26px;
    color: #363636;
}




input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    border: 1px solid #918d8d99 !important;
}

textarea.wpcf7-form-control.wpcf7-textarea {
    border: 1px solid #918d8d99 !important;
}


div#wpcf7-f64-p61-o1 {}

div#wpcf7-f64-p61-o1 textarea {
    color: black !important;
}

div#wpcf7-f64-p61-o1 input {
    color: black !important;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    color: white !important;
}
