@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

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

.figure {
    margin: 0px;
}

img {
    max-width: 100%;
}

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:before,
.clearfix:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:after {
    clear: both;
}

ul li {
    font-family: 'Open Sans', sans-serif;
    margin: 0px;
}

input,
span,
label,
button {
    font-family: 'Open Sans', sans-serif;
}

a {
    text-decoration: none !important;
    font-family: 'Open Sans', sans-serif;
}

p {
    font-family: 'Open Sans', sans-serif;
    color: #333333;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', sans-serif;
    margin: 0px;
}

/* Styles
---------------------------------*/
html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #888888;
    margin: 0;
    padding: 0;
}

input:focus {
    outline: none;
}

a {
    text-decoration: none;
}

a:focus,
button:focus {
    outline: none;
    box-shadow: none !important;
}

/*********radio button**********/
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

[type="radio"]:checked+label:before,
[type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

[type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #e96328;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/*********radio button**********/

@media (min-width: 992px) {
    .nav-item:hover .dropdown-menu {
        display: block;
        transition: all 0.5s ease-in-out;
    }
}

/**********navbar**********/
.gototop {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    height: 60px;
    width: 60px;
    border-radius: 50% 50% 0px 0px;
    color: #fff;
    background: linear-gradient(45deg, #12969f, #1bd2de);
    text-align: center;
    padding: 4px 0px 0px 0px;
    font-size: 22px;
    z-index: 5;
    transition: all 0.3s ease-in-out;
}

.gototop.active {
    bottom: -25px;
}

.gototop:hover {
    bottom: -10px;
    color: #fff;
}

/**/
.ani-btn {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.ani-btn::before,
.ani-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease-in-out;
    transform: translate(-100%, 0);
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.ani-btn:hover::before,
.ani-btn:hover::after {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.ani-btn::after {
    transition-delay: 0.2s;
}

/**/
.navbar {
    position: fixed;
    top: 0px;
    width: 100%;
    padding: 0px 0px;
    background: none;
    //box-shadow: 0px 5px 10px rgba(0,0,0,0.15);
    transition: all 0.5s ease-in-out;
    z-index: 3;
}

.navbar-brand {
    position: relative;
    height: 60px;
    width: 150px;
    transition: all 0.5s ease-in-out;
}

.navbar-brand img {
    position: absolute;
    top: 0px;
    left: 0px;
    transition: all 0.5s ease-in-out;
    border-radius: 0px 0px 20px 20px;
}

.nav-item {
    padding: 0px;
}

.nav-item:last-child .nav-link {
    padding-right: 0px !important;
}

.nav-link {
    font-size: 15px;
    padding: 25px 17px !important;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}

.nav-link.nav-active,
.nav-link:hover {
    color: #e51b4d !important;
}

.navbar-nav .dropdown-menu {
    margin: 0px;
    border-radius: 10px;
    border: none;
    border-top: 2px solid transparent;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.10);
    animation: 0.5s drpdwnanimation;
}

@keyframes drpdwnanimation {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.navbar-nav .dropdown-menu .dropdown-item {
    padding: 10px 20px;
    font-size: 15px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: transparent;
    color: #212529;
}

.navbar.scroll {
    background: #fff;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15);
}

.navbar.scroll .nav-link {
    color: #464650;
}

.navbar.scroll .navbar-brand {
    width: 60px;
}

.navbar.scroll .navbar-brand img {
    width: auto;
    min-width: 0px;
}

/**banner**/
#banner {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.swiper-button-prev i,
.swiper-button-next i {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
}

/**hm about**/
.hm-about {
    padding: 80px 0px 70px;
}

.hm-about2 img {
    width: 500px;
    margin-top: 30px;
}

.hm-about1 {
    padding: 0px 0px 0px 0px;
}

.hm-about1 h2 {
    font-size: 60px;
    font-weight: 600;
    color: #333;
    padding: 0px 0px 15px 0px;
}

.hm-about1 p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 17px;
    padding: 10px 0px 0px 0px;
}

.hm-about1 p b {
    font-weight: 600;
}

.hm-about1 a {
    background: linear-gradient(45deg, #e51b4d, #ff557e);
    color: #fff;
    display: inline-block;
    padding: 15px 50px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    margin-top: 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/**what we do**/
.whatwe-do {
    padding: 170px 0px 180px 0px;
    position: relative;
    //background: linear-gradient(0deg, #f5f5f5, #fff);
}

/*.whatwe-do:before{
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: #464650;
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%);
    z-index: 1;
}*/
/*.whatwe-do:before {
    content: '';
    position: absolute;
    top: 20px;
    width: 48.9%;
    bottom: 20px;
    left: 30px;
    background: linear-gradient(45deg, #fab60d, #ffc22a);
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%);
    z-index: 2;
    border-radius: 25px 0px 0px 25px;
}*/
.whatwe-do .yelw-bg {
    position: absolute;
    top: 20px;
    left: 26px;
    bottom: -10px;
    z-index: 2;
    height: 96.5%;
    width: 50%;
}

.whatwe-do:after {
    content: '';
    position: absolute;
    top: 25px;
    right: 0px;
    bottom: 25px;
    left: 30px;
    //background: #e51b4d;
    background: linear-gradient(0deg, #0ca9b4, #1ed2de);
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%);
    border-radius: 20px;
    z-index: 1;
}

.whatwe-do .sec-tlt {
    font-size: 45px;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 2;
}

.whatwe-do .sec-cnct {
    font-size: 17px;
    color: #fff;
    text-align: center;
    width: 60%;
    margin: 15px auto 10px;
    position: relative;
    z-index: 2;
}

.whtwe-bx {
    border-radius: 20px;
    margin: 25px 0px 0px 0px;
    padding: 10px 0px 0px 0px;
    min-height: 630px;
    z-index: 2;
    position: relative;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15);
}

.whtwe-bx:before {
    content: '';
    position: absolute;
    top: -35px;
    right: -9px;
    height: 104%;
    bottom: -35px;
    width: 80%;
    background: rgba(255, 255, 255, 0.5);
    margin: auto;
    border-radius: 20px;
    z-index: -1;
}

.whtwe-bx .img-bx {
    width: 95%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0px auto 0px;
}

.whtwe-bx .img-bx img {
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.whtwe-bx:hover .img-bx img {
    transform: translateY(-65px);
}

.whtwe-bx .num {
    height: 65px;
    width: 65px;
    border-radius: 10px;
    background: #464650;
    position: absolute;
    top: -30px;
    //left: -20px;
    left: 10px;
    font-size: 27px;
    font-weight: 600;
    padding: 6px;
    border: 5px solid #464650;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 10px rgb(0, 0, 0, 0.20);
}

.whtwe-bx h4 {
    font-size: 30px;
    font-weight: 600;
    color: #333;
    padding-bottom: 5px;
}

.whtwe-bx p {
    color: #888;
    padding-top: 10px;
}

.whtwe-bx ul li {
    display: flex;
    align-items: center;
    color: #888;
    padding-top: 5px;
    font-size: 16px;
}

.whtwe-bx ul li i {
    color: #e51b4d;
    margin-right: 8px;
}

.whtwe-bx:hover .num {
    top: -50px;
}

/**client**/
.hm-client {
    padding: 50px 0px 150px 0px;
    background: #fff;
    background-image: url(../images/dot-bg.png);
    background-repeat: no-repeat;
    position: relative;
}

.hm-client:before {
    content: '';
    position: absolute;
    top: -120px;
    right: 0px;
    bottom: 0px;
    width: 50%;
    //background: rgba(18, 172, 182, 0.07);
    background: rgba(250, 182, 13, 0.09);
    z-index: 0;
}

.hm-client .sec-tlt {
    font-size: 45px;
    font-weight: 600;
    color: #333;
    text-align: center;
    padding-bottom: 30px;
    text-transform: capitalize;
}

.swiper-container-2 .hm-clnt-bx {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 40px;
}

.swiper-container-2 .hm-clnt-bx img {
    filter: grayscale(1);
    opacity: 0.4;
    transition: all 0.3s ease-in-out;
}

.swiper-container-2 .hm-clnt-bx:hover img {
    filter: grayscale(0);
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.swiper-container-2 .swiper-pagination-bullet-active {
    background: #12acb6;
}

/**action**/
.action {
    position: absolute;
    top: -25%;
    right: 0px;
    left: 0px;
    background: linear-gradient(45deg, #e51b4d, #ff557e);
    width: 80%;
    margin: 0px auto 0px;
    padding: 50px 70px;
    border-radius: 50px;
}

.action h4 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    width: 70%;
}

.action a {
    background: #464650;
    padding: 15px 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}

.action a:hover {
    background: #303036;
}

/**kitchen**/
.sectop-bg {
    height: 400px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.sectop-inr {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    //background:linear-gradient(0deg, transparent, rgba(0, 0, 0, 0.20));
    //background: rgba(0,0,0,0.40);
}

.sectop-inr h3 {
    font-size: 60px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.50);
}

.sectop-inr .long_text {
    color: white;
    font-size: 45px;
    white-space: normal;
    padding-top: 40px;
}

.ktchn-pge {
    padding: 50px 0px 170px;
    position: relative;
}

.ktchn-pge .parent_img img{
    width: 160px;
    height: 106px;

}

.ktchn-pge:before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0px;
    bottom: 0px;
    width: 55%;
    background: rgba(250, 182, 13, 0.10);
    z-index: -1;
    border-radius: 0px 30% 30% 0px;
}

.ktchn-pge .sec-tlt {
    font-size: 40px;
    font-weight: 600;
    color: #333;
    /* padding-bottom: 15px; */
    text-align: center;
}

.ktchn-pge .sec-cnct {
    font-size: 17px;
    color: #333;
    text-align: center;
    padding-bottom: 10px;
}

.ktchn-bx {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.10)
}

.ktchn-bx img {
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.ktchn-bx .ktchn-inr {
    position: absolute;
    //top: 58%;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.90), transparent);
    padding: 20px 20px 0px;
    transition: all 0.3s ease-in-out;
    height: 120px;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

.ktchn-bx .ktchn-inr h5 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 15px;
    width: 100%;
    line-height: 28px;
    //white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.ktchn-bx .ktchn-inr p {
    font-size: 15px;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.ktchn-bx:hover img {
    transform: scale(1.2) rotate(5deg);
}

/*.ktchn-bx:hover .ktchn-inr {
    top: 40%;
}*/
.ktchn-bx:hover .ktchn-inr p {
    opacity: 1;
}

/**/
.pop-show {
    z-index: 999;
    display: none;
}

.pop-show .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .80);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.pop-show .img-show {
    width: 600px;
    height: 400px;
    background: #FFF;
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.img-show span {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99;
    cursor: pointer;
    height: 30px;
    width: 30px;
    background: #fff;
    border-radius: 50%;
    color: #333;
    text-align: center;
    font-size: 18px;
    padding-top: 2px;
}

.img-show img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/**Product**/
.prdt-pge {
    position: relative;
    padding: 0px 0px 120px 0px;
}

.prdt-pge:before {
    content: '';
    position: absolute;
    top: -65px;
    right: 0px;
    bottom: 0px;
    width: 55%;
    background: rgba(229, 27, 77, 0.07);
    z-index: -1;
    border-radius: 30% 0px 0px 30%;
}

.prdt-pge .sec-tlt {
    font-size: 40px;
    font-weight: 600;
    color: #333;
    padding-bottom: 15px;
    text-align: center;
}

.prdt-pge .sec-cnct {
    font-size: 17px;
    color: #333;
    text-align: center;
    padding-bottom: 10px;
}

.prdt-bx {
    position: relative;
    margin: 0px 0px 75px 0px;
    display: block;
}

.prdt-bx img {
    border-radius: 20px;
}

.prdt-bx .tlt-bx {
    background: #fff;
    position: absolute;
    right: 0px;
    bottom: -40px;
    width: 80%;
    height: 80px;
    border-radius: 20px 0px 20px 20px;
    padding: 10px 15px;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 10%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
}

.prdt-bx .tlt-bx h5 {
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease-in-out;
}

.prdt-bx .tlt-bx span {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #333;
    font-size: 22px;
    background: #f5f5f5;
    text-align: center;
    padding-top: 3px;
}

.prdt-bx:hover .tlt-bx {
    background: #e51b4d;
}

.prdt-bx:hover .tlt-bx h5 {
    color: #fff;
}

/**Product**/

/**contact us**/
::-webkit-input-placeholder {
    /* Chrome */
    color: #333;
    font-size: 16px;
    transition: opacity 250ms ease-in-out;
}

:focus::-webkit-input-placeholder {
    opacity: 0.1;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: red;
    transition: opacity 250ms ease-in-out;
}

:focus:-ms-input-placeholder {
    opacity: 0.5;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: red;
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}

:focus::-moz-placeholder {
    opacity: 0.1;
}

:-moz-placeholder {
    /* Firefox 4 - 18 */
    color: red;
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}

:focus:-moz-placeholder {
    opacity: 0.1;
}

/**/
.conct1 {
    padding: 30px 0px 60px 0px;
}

.conct1 .sec-tlt {
    font-size: 40px;
    font-weight: 600;
    color: #333;
    text-align: center;
    padding-bottom: 40px;
}

.conct1 .conct1-bx img {
    width: 50px;
}

.conct1 .conct1-bx {
    text-align: center;
}

.conct1 .conct1-bx h3 {
    font-size: 22px;
    font-weight: 700;
    color: #e51b4d;
    padding: 15px 0px;
}

.conct1 .conct1-bx a {
    font-size: 17px;
    color: #888;
}

/**/
.conct2 {
    padding: 80px 0px 170px 0px;
    background: #f5f5f5;
    background-image: url(../images/dot-bg.png);
    background-repeat: no-repeat;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
}

.conct2 .sec-tlt {
    font-size: 40px;
    font-weight: 600;
    color: #333;
    text-align: center;
    padding-bottom: 40px;
}

.contactus1 .sec-tlt {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px;
    padding: 80px 0px 30px 0px;
}

.contact-bx input,
.contact-bx textarea {
    background: #fff;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    padding: 13px 15px;
    width: 100%;
    margin: 0px 0px 30px 0px;
    color: #333;
}

.contact-bx button {
    background: linear-gradient(45deg, #efad0b, #ffc536);
    color: #fff;
    padding: 15px 50px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/**contact us**/

/**/
.whatspp-fxdbtn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

.whatspp-fxdbtn:before {
    content: '';
    position: absolute;
    top: 0px;
    right: 8px;
    height: 14px;
    width: 14px;
    background: #4fce5d;
    border-radius: 50%;
    border: 2px solid #fff;
}

.whatspp-fxdbtn img {
    width: 35px;
}

.whatspp-fxdbtn:hover {
    transform: scale(1.1);
}

.whatspp-fxdbtn:focus {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 12px !important;
}

/**/

/**footer**/
.upper-footer {
    padding: 130px 0px 0px 0px;
    background: #1a1a1a;
    position: relative;
}

.ftr-abt h4 {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    margin: 0px;
    padding: 12px 0px 24px 0px;
}

.ftr-link h4,
.ftr-folw h4,
.ftr-app h4 {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    margin: 0px;
    padding: 12px 0px 24px 0px;
}

/**/
.ftr-abt {
    padding: 0px 0px 60px 0px;
}

.ftr-abt ul {
    padding: 0px !important;
}

.ftr-abt ul li {
    padding: 5px 0px 5px 0px;
    margin: 0px;
}

.ftr-abt ul li a {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    color: #7f7f7f;
    transition: all 0.2s ease-in-out;
}

.ftr-abt ul li a i {
    font-size: 17px;
    margin: 0px 8px 0px 0px;
}

.ftr-abt ul li a:hover {
    color: #e51b4d;
    transition: all 0.2s ease-in-out;
}

/**/
.ftr-link {
    padding: 0px;
}

.ftr-link ul {
    padding: 0px !important;
}

.ftr-link ul li {
    padding: 5px 0px 5px 0px;
    margin: 0px;
}

.ftr-link ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #7f7f7f;
    transition: all 0.2s ease-in-out;
}

.ftr-link ul li a:hover {
    color: #e51b4d;
    transition: all 0.2s ease-in-out;
}

/**/
.ftr-folw ul {
    display: flex;
}

.ftr-folw ul li {
    margin: 0px 10px 0px 0px;
}

.ftr-folw ul li a {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: inline-block;
    color: #7f7f7f;
    border: 2px solid #7f7f7f;
    font-size: 18px;
    text-align: center;
    padding: 2px 0px 0px 0px;
    transition: all 0.2s ease-in-out;
}

.ftr-folw ul li a:hover {
    color: #fff;
    background: #e51b4d;
    border-color: #e51b4d;
    transition: all 0.2s ease-in-out;
}

/**/
.ftr-app ul {
    display: flex;
}

.ftr-app ul li {
    margin: 0px 10px 0px 0px;
}

/**bottom-footer**/
.bottom-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #6d6d6d;
    padding: 40px 0px 40px 0px;
}

.bottom-footer p {
    font-size: 17px;
    font-weight: 400;
    color: #6d6d6d;
}

.bottom-footer p a {
    color: #026cdf;
}

/*   Media Queries
--------------------------- */

@media (max-width: 768px) {

    .container-fluid {
        padding: 0px 15px 0px 15px;
    }

    .top-adjustment {
        height: 60px;
    }

    /**index**/
    .navbar {
        background: #fff;
        box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15);
        min-height: 60px;
    }

    .navbar-brand {
        height: 60px;
        width: 120px;
        padding: 0px;
    }

    .navbar-brand img {
        top: 1px;
        left: 10px;
        width: 57px;
        min-width: auto;
    }

    .navbar.scroll .navbar-brand img {
        top: 1px;
        left: 10px;
        width: 57px;
        min-width: auto;
    }

    .navbar-toggler-icon {
        color: #333;
    }

    .navbar-collapse {
        overflow: auto;
        max-height: 500px;
    }

    .nav-link {
        padding: 15px 10px !important;
        color: #464650;
    }

    .navbar-nav .dropdown-menu {
        width: 90%;
        margin: 0px auto 0px;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    /**/
    .hm-about {
        padding: 15px 0px 40px;
    }

    /**/
    .whatwe-do {
        padding: 170px 0px 100px 0px;
    }

    .whatwe-do .sec-cnct {
        width: 95%;
    }

    .whatwe-do:after {
        left: 0px;
        clip-path: polygon(0 0, 100% 3%, 100% 99%, 0% 100%);
    }

    .whatwe-do .yelw-bg {
        top: 23px;
        left: -2px;
        bottom: -10px;
        z-index: 2;
        height: 19%;
        width: 50%;
    }

    .whtwe-bx {
        margin: 50px 0px 0px 0px;
    }

    /**/
    .hm-client {
        padding: 50px 0px 180px 0px;
    }

    .swiper-container-2 .hm-clnt-bx {
        width: auto;
    }

    /**/
    .action {
        padding: 30px 22px;
        top: -14%;
        width: 90%;
    }

    .action h4 {
        font-size: 35px;
        width: 100%;
    }

    .action a {
        margin-top: 25px;
        display: inline-block;
    }

    /**/
    .sectop-bg {
        height: 200px;
        background-size: contain;
    }

    .sectop-inr h3 {
        font-size: 40px;
        text-align: center;
    }

    .ktchn-bx .ktchn-inr {
        top: 57%;
    }

    .ktchn-bx .ktchn-inr p {
        opacity: 1;
    }

    .pop-show .img-show {
        width: 90%;
        height: 300px;
    }

    /**/
    .conct2 {
        padding: 100px 0px 180px 0px;
    }

    .conct1 {
        padding: 30px 0px 0px 0px;
    }

    .conct1 .conct1-bx {
        margin-bottom: 50px;
    }

    /**/
    .upper-footer {
        padding: 170px 0px 0px 0px;
    }

    .ftr-logo {
        margin-bottom: 30px;
    }

    .ftr-abt {
        padding: 0px 0px 0px 0px;
    }

    .ftr-abt h4 {
        padding: 12px 0px 10px 0px;
    }

    .ftr-link h4,
    .ftr-folw h4,
    .ftr-app h4 {
        padding: 12px 0px 10px 0px;
    }

    .ftr-folw ul {
        display: flex;
        padding: 10px 0px 20px 0px;
    }

    /***bottom footer***/
    .bottom-footer {
        display: block;
        text-align: center;
        padding: 20px 0px 50px 0px;
    }

    .bottom-footer p {
        padding: 10px 0px 0px 0px;
    }
}

.scrn-cut {
    background-position: bottom;
    background-size: cover;
}

.color-h3 {
    font-size: 22px;
    font-weight: 700;
    color: #e51b4d;
    padding: 15px 0px;
    margin-top: 20px;

}

.color-black {
    font-size: 22px;
    font-weight: 700;
    color: #343a40;
    padding: 15px 0px;

}

.descrip {
    color: #4c4c4e;
    font-size: 16px;
    font-weight: 600;
}

/* .wood_p {
    font-size: 15px;
    font-weight: 700;
} */

.wood_p span {
    color: black;
    font-weight: 600;
}

.lightbold_p {
    font-size: 15px;
    font-weight: 600;
}

.tbl_wood {
    border: 1px solid #988383
}

.tbl_wood td {
    border: 1px solid #988383;
    padding: 7px;
    vertical-align: middle;
    white-space: nowrap;
}

.tbl_wood {
    text-align: center;
}

.wood_row .col-md-6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.grills .wood_p {
    line-height: 2.5;
}

.card_hover img {
    transition: .2s;
}

.card_hover img:hover {
    transform: scale(1.0);
    transition: .2s;
    overflow: hidden;
}

.card_title {
    padding: 0;
    margin: 0;
    color: black;
    font-weight: 600;
    font-size: 15px;
    transition: .3s;
}

#sub_p {
    font-size: 14px;
    line-height: 1.5;
    color: black;
    font-weight: 500;
}

.card-body {
    min-height: 188px;
}


.ktchn-bx .wood_firstp {
    font-size: 15px;
    font-weight: 700;
    color: #e51b4d;
}

.ktchn-bx .wood_p:last-child {
    font-size: 14px;
    font-weight: 600;
    color: black;
}

.card_hover:hover .card_title {
    color: #e51b4d;
    transition: .3s;
}

.card {
    background: transparent;
    border: none;
}

.card img {
    margin: 0 auto;
}

.tble_p {
    line-height: 2.5;
    font-size: 15px;
}

.tble_p span {
    color: black;
    font-weight: 600;
}

/* lighbox */
/* 
.goverlay {
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  .glightbox {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 5px;
    flex-basis: calc(100% / 5 - 10px);
  }
  
  .gcounter {
    padding: 0.5rem;
  }
  
  .gcounter::after {
    content: attr(data-indicator);
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    color: white;
    padding: 10px;
    z-index: 10000000;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
  }
  
  .glightbox-closing .gcounter {
    opacity: 0;
  } */


  /* try */


   .parent-container, .child-container {
    display: flex;
  }
  .parent-container {
    width: 100%;
    justify-content: center;
    gap: 30px 30px;
  }
  .child-container {
    width: 25%;
    height: auto;
    gap: 30px 30px;
    flex-direction: column;
  }
  .child-container img {
    transition: all 1s ease-in-out 0s;
   box-shadow: 2px 2px 20px gray, inset 2px 2px 10px lightgray;
  }
  .child-container img:hover {
    box-shadow: 4px 4px 25px black, inset 2px 2px 2px 10px rgb(0, 0, 20);
   
  }
  

@media only screen and (max-width: 1100px) {
    .tbl_wood td {
        white-space: normal;
    }
  
}



