/*!
Theme Name: Rbm Theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: rbm-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Rbm Theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
:root {
    --font-18: 18px;
    --font-16: 16px;
    --font-20: 20px;
    --font-24: 24px;
    --font-35: 35px;
    --font-48: 48px;
    --font-72: 72px;
    --primary-color: #003366;
    --secondary-color: #de1220;
    --white-color: #ffffff;
    --black-color: #000;
    --body-color: #737f8c;
}

* {
    box-sizing: border-box;
}

body,
html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: var(--body-color);
    font-size: var(--font-16);
    font-weight: 400;
    line-height: 1.3;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--white-color);
    transition: 0.5s all;
}

a:hover {
    color: var(--secondary-color);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
}

.title {
    font-size: var(--font-72);
}

.heading {
    font-size: var(--font-35);
    color: var(--primary-color);
    text-transform: capitalize;
}

.small-heading {
    font-size: var(--font-16);
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

h6 {
    font-size: var(--font-24);
}

.button,
.button.white,
.header-whatsapp {
    display: inline-block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: var(--font-16);
    line-height: 1;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
    outline: none;
    border-radius: 10px;
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    border: 1px solid transparent;
    z-index: 0;
    overflow: hidden;
    min-width: 250px;
}

.button.white {
    color: var(--primary-color);
    background-color: var(--white-color);
}

.button:after {
    content: " \f105";
    font-family: 'FontAwesome';
    margin-left: 10px;
}

.button:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.wrapper {
    max-width: 1396px;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
}

section {
    padding: 80px 0;
    position: relative;
}

section.small-padding {
    padding: 50px 0;
}

section.pt-0 {
    padding-top: 0 !important;
}

section.pb-0 {
    padding-bottom: 0 !important;
}

section.p-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

p {
    margin: 0 0 20px 0;
}

p:last-child {
    margin: 0;
}

::placeholder {
    color: #857878;
}

input,
textarea,
select {
    font-family: "Poppins", sans-serif;
    font-size: var(--font-16);
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.2;
    appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    outline: 0;
    border: 1px solid var(--black-color);
    background: var(--white-color);
    display: block;
    margin-top: 5px;
}

select {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" x="0" y="0" viewBox="0 0 24 24" style="enable-background:new 0 0 512 512" xml:space="preserve" class="hovered-paths"><g><path d="M12 16a1 1 0 0 1-.71-.29l-6-6a1 1 0 0 1 1.42-1.42l5.29 5.3 5.29-5.29a1 1 0 0 1 1.41 1.41l-6 6a1 1 0 0 1-.7.29z" data-name="16" fill="%23d9d9d9" opacity="1" data-original="%23000000" class="hovered-path"></path></g></svg>');
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center right 18px;
}

textarea {
    max-height: 150px;
}

.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #d9d9d9;
    opacity: 0.75;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 7px;
    position: absolute;
    top: 50%;
    right: 0;
}

.form-btn {
    position: relative;
    width: fit-content;
}

input.wpcf7-submit {
    width: fit-content;
    margin-top: 20px;
    text-align: center;
    background: #8bb08f;
}

.wpcf7-spinner::before {
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    transform-origin: 7px 7px;
}

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

.text-left {
    text-align: left;
}

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

.heading-group {
    margin-bottom: 20px;
}

.intro-description {
    margin-bottom: 20px;
}

.d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

a.scrolltotop {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    bottom: 10px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    height: 50px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 50px;
    transition: 0.5s all;
    z-index: 99;
}

a.whatsapp-link {
    background: #25d366;
    border-radius: 50%;
    bottom: 70px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 50px;
    z-index: 99;
    transition: 0.5s all;
    font-size: 30px;
    border: 1px solid transparent;
}

a.whatsapp-link:hover {
    color: #25d366;
    background: var(--white-color);
    border: 1px solid #25d366;
}

a.scrolltotop:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

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

/* HEADER */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding img {
    max-width: 100px;
}


.header-right-main {
    display: flex;
    align-items: center;
}


.toggle {
    display: none;
}

.bar {
    width: 34px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    display: inline-block;
    margin-left: auto;
    border-radius: 5px;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    cursor: pointer;
    z-index: 99;
}

.bar:first-child {
    width: 24px;
}

.bar:last-child {
    width: 17px;
}

span.bar.animate.bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

span.bar.animate.bar:nth-child(2) {
    opacity: 0;
}

span.bar.animate.bar:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -8px);
    width: 24px;
}

.toggle.active .bar {
    margin-right: 20px;
}

nav.main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.menu>li:not(:last-child) {
    margin-right: 40px;
}

ul.menu li {
    position: relative;
}

ul.menu>li>a {
    position: relative;
    font-weight: 500;
    color: var(--primary-color);
}

ul.menu>li>a:hover,
ul.menu>li.current-menu-item>a
{
    color: var(--secondary-color);
}
.footer-menu li.current-menu-item>a{
        border-bottom:1px solid #fff;
    padding:0 10px 3px 0;
}
.menu li.menu-item-has-children>a:after {
    content: " \f107";
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    margin-top: 3px;
    margin-left: 5px;
}

.menu>li>ul.sub-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 2;
    background: var(--white-color);
    transition: 0.5s all ease-in;
    transform: perspective(600px) rotateX(-90deg);
    overflow: visible;
    min-width: 320px;
    top: 35px;
    transform-origin: 0% 0%;
    left: 0;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, .2);
}

.menu>li:hover>ul.sub-menu {
    visibility: visible;
    opacity: 1;
    transition: transform .5s ease, opacity .2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
    transform: perspective(600px) rotateX(0deg);
    overflow: visible;
}

.menu>li>ul.sub-menu>li {
    display: block;
    position: relative;
    border: none;
    width: 100%;
}

.menu>li>ul.sub-menu>li>a {
    border-right: none;
    color: var(--black-color);
}

.menu>li>ul.sub-menu>li>a {
    border: 1px solid #DDD;
    padding: 20px;
    display: block;
    width: 100%;
}

.current-menu-parent .current-menu-item a {
    background: var(--black-color);
    color: var(--white-color) !important;
}

.header-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-right {
    line-height: 1;
}

.site-branding {
    width: fit-content;
}

.header-top {
    background: var(--primary-color);
    padding: 10px 0;
}

.header-top p {
    color: var(--white-color);
}

.header-bottom {
    padding: 15px 0;
}

.header-top-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header-top-right {
    flex: 0 0 auto;
}

.header-top-left .contact-block:not(:last-child) {
    margin-right: 15px;
}

.header-top-left .contact-block i {
    margin-right: 5px;
    color: var(--white-color);
}

ul.menu li:last-child {
    border: 1px solid #f0f2f4;
    border-radius: 10px;
    padding: 13px 8px;
}

ul.menu li:last-child:hover {
    background: var(--secondary-color);
}

ul.menu li:last-child:hover a {
    color: var(--white-color);
}

.header-whatsapp {
    padding: 15px;
    background: #25d366;
    animation: whatsapp-pulse 2s infinite;
    width: fit-content;
    color: var(--white-color);
    width: 100%;
}

.header-whatsapp i {
    margin-right: 10px;
    font-size: var(--font-16);
    font-weight: 700;
}

@keyframes whatsapp-pulse {

    0%,
    to {
        transform: scale(1);
        box-shadow: 0 0 #25d36666;
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px #25d36600;
    }
}

/* BANNER */
.banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    z-index: -1;
    opacity: 0.2;
}

.banner-image img {
    width: 100%;
    height: 100%;
}

.banner-row {
    background: linear-gradient(90deg, rgba(0, 51, 102, 0.8) 0%, rgba(222, 18, 32, 0.6) 100%);
}

.banner-wrap {
    padding: 180px 0;
}

.banner-wrap-row .heading-group {
    width: 65%;
    margin: 0 auto;
    text-align: center;
    color: var(--white-color);
    margin-bottom: 20px;
}

.btn-group {
    display: flex;
    justify-content: center;
}

ul.banner-list p {
    color: var(--white-color);
}

.btn-one {
    line-height: 1;
    margin-right: 15px;
}

.btn-two .header-whatsapp {
    border: 1px solid transparent;
}

.banner-wrap-row .intro-description {
    width: 75%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.banner-wrap-row .intro-description p {
    color: var(--white-color);
    text-align: center;
}

.title {
    margin-bottom: 10px;
}

.mouse {
    margin: 0 auto;
    display: block;
    border-radius: 50px;
    border: 2px solid var(--white-color);
    height: 60px;
    width: 38px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    margin-bottom: 30px;
}

.mouse a {
    position: absolute;
    inset: 0;
    font-size: 0;
}

.move {
    position: absolute;
    background-color: var(--white-color);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 10px);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, 30px);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 40px);
        opacity: 0;
    }
}

/* ABOUT */
.about {
    background: #f3f5f6;
}

.about-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-left {
    width: 50%;
    padding-right: 40px;
    position: relative;
}

.about-left .heading {
    width: 80%;
}

.about-right {
    width: 50%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image {
    position: relative;
    height: 100%;
}

.about-image:after {
    content: "";
    background: linear-gradient(0deg, rgba(222, 18, 32, 0.2) 0%, rgba(222, 18, 32, 0) 100%);
    position: absolute;
    inset: 0;
}

.about-image img {
    width: 100%;
    height: 100%;
}

.counter-main-block {
    width: 25%;
    padding: 0 10px;
    margin: 20px 0;
}

.counter-number-block {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
}

.counter-block {
    height: 100%;
    text-align: center;
}

.countre-icon img {
    width: 32px;
    margin: 0 auto;
}

.counter,
.counter-number-block span {
    font-size: var(--font-24);
    color: var(--white-color);
    font-weight: 700;
}

.counter-number {
    background: var(--secondary-color);
    margin-top: 70px;
    border-radius: 10px;
}

.counter-heading {
    color: var(--white-color);
}

.about-btn {
    line-height: 1;
    margin-top: 30px;
    width: fit-content;
}

.image-text {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
    color: var(--white-color);
    z-index: 1;
    background: var(--primary-color);
}

ul.banner-list li {
    width: 25%;
    padding: 0 10px;
    margin: 10px 0;
    position: relative;
    display: flex;
    justify-content: center;
}

ul.banner-list li p {
    text-align: left;
}

/* APPLICATION */
section.application {
    background: linear-gradient(135deg, rgb(240, 242, 244), rgb(249, 250, 251));
}

.application .heading-group {
    text-align: center;
}

.application .intro-description {
    width: 45%;
    margin: 0 auto;
    text-align: center;
}

ul.application-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -15px;
    margin-top: 50px;
}

.whatsapp-button-container {
    width: 100%;
}

ul.application-list li {
    width: 33.33%;
    padding: 0 15px;
    margin: 15px 0;
}

.application-block {
    padding: 30px;
    background: var(--white-color);
    text-align: center;
    border-radius: 10px;
    height: 100%;
    border: 1px solid #e2e6e9;
}

.application-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    background: rgb(222 18 32 / 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.application-icon img {
    width: 32px;
    height: 32px;
}

.application-heading {
    font-size: var(--font-20);
    color: var(--primary-color);
    font-weight: 600;
    margin: 15px 0;
}

.application-cta {
    text-align: center;
    margin-top: 30px;
}

.application-cta-heading {
    margin-bottom: 20px;
}

.btn-two {
    line-height: 1;
}

.application-cta .header-whatsapp {
    animation: none;
    padding: 15px;
}

.header-whatsapp:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* WHY CHOOSE */
.why-choose.application {
    background: #fff;
}

ul.why-choose-list li {
    width: 25%;
}

/* TESTIMONIAL */
ul.testimonial-list {
    margin-top: 50px;
}

.slick-slide,
.slick-slide>div {
    height: 100%;
}

.slick-track {
    height: auto;
    display: flex;
}

.slick-list {
    height: 100%;
    display: flex;
}

ul.testimonial-list li {
    width: 33.33%;
    padding: 0 10px;
    height: 100%;
}

.testimonial-block {
    height: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
    border: 1px solid #e2e6e9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

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

.quote img {
    width: 32px;
    height: 32px;
}

.quote {
    flex: 0 0 auto;
    margin-left: 5px;
}

.review p {
    font-size: var(--font-16);
    font-style: italic;
}

.testimonial-content {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e6e9;
}

.client-name {
    font-size: var(--font-16);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.designation {
    font-size: var(--font-16);
    color: var(--secondary-color);
    font-weight: 400;
    margin-bottom: 5px;
}

.city {
    font-size: var(--font-16);
    color: var(--body-color);
    font-weight: 400;
}

/* ORGANIZATION */
.organization-row .heading {
    font-size: var(--font-20);
}

.organization-row {
    margin-top: 60px;
}

ul.organization-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    width: 100%;
    justify-content: center;
    margin-top: 30px;
}

ul.organization-list li {
    width: 16.66%;
    margin: 10px 0;
    padding: 0 10px;
}

.organization-block {
    height: 100%;
    padding: 16px;
    border-radius: 10px;
    background: #ffffff80;
    text-align: center;
    border: 1px solid #e2e6e9;
    transition: 0.5s all;
}

.organization-block:hover {
    background: #fffc;
}

.organization-name {
    font-size: var(--font-16);
    color: var(--primary-color);
    font-weight: 500;
}

.feedback {
    margin-top: 50px;
    text-align: center;
}

.feedback-heading {
    font-size: var(--font-16);
    margin-bottom: 15px;
    font-weight: 500;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, rgb(222, 18, 32), rgb(0, 51, 102));
    color: var(--white-color);
    text-align: center;
}

.cta .heading {
    color: var(--white-color);
    margin-bottom: 15px;
    font-size: var(--font-48);
}

.cta .subheading {
    font-weight: 500;
}

.cta .intro-description p {
    font-size: var(--font-18);
}

.cta-row {
    width: 70%;
    margin: 0 auto;
}

ul.cta-list,
ul.banner-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: -10px;
    margin-top: 30px;
}

ul.banner-list {
    width: 75%;
    margin: 0 auto;
    margin-top: 20px;
    align-items: flex-start;
}

ul.cta-list li {
    width: 20%;
    padding: 0 10px;
    margin: 10px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta .intro-description {
    margin-bottom: 30px;
}

ul.cta-list li:before,
.banner-list li:before {
    content: " \f111";
    font-family: 'fontAwesome';
    margin-right: 10px;
    font-size: 8px;
    color: var(--white-color);
    margin-top: 2px;
}

.cta-info.button.white {
    background: #ffffff1a;
    color: var(--white-color);
    border: 1px solid #ffffff4d;
}

.cta-info.button:after {
    content: none;
}

.contact-block i {
    margin-right: 5px;
    margin-top: 2px;
}

.header-right .header-whatsapp {
    min-width: auto;
}

.cta-info.button.white:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* FOOTER */
.footer-top {
    background: var(--primary-color);
    padding: 70px 0;
    color: var(--white-color);
    border-bottom: 1px solid #ffffff33;
}

.footer-block-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-block {
    max-width: 320px;
}

.footer-block:first-child {
    max-width: 670px;
}

.footer-description {
    margin: 25px 0;
}

.contact-detail .contact-block:not(:last-child) {
    margin-bottom: 15px;
}

.cta-info {
    display: inline-flex;
}

.contact-block>div {
    display: flex;
    align-items: flex-start;
}

.footer-description p {
    line-height: 1.5;
}

.footer-block-row:not(:last-child) {
    padding-bottom: 50px;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    margin-bottom: 30px;
}

.social-media-block {
    display: flex;
    align-items: center;
}

ul.social-media-list {
    display: flex;
    align-items: center;
}

ul.social-media-list li:not(:last-child) {
    margin-right: 10px;
}

.footer-heading {
    margin-bottom: 25px;
    font-size: var(--font-20);
    font-weight: 500;
}

ul.social-media-list li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #ffffff1a;
}

ul.social-media-list li a i {
    font-size: 20px;
    margin-right: 0;
}

.footer-btn {
    line-height: 1;
}

.footer-btn .header-whatsapp {
    min-width: auto;
}

.social-media-block .footer-heading {
    margin-bottom: 0;
    margin-right: 10px;
    color: #ffffffcc;
}

.contact-detail .contact-block i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.footer-menu li:not(:last-child) {
    margin-bottom: 15px;
}

.footer-bottom {
    padding: 25px 0;
    background: rgb(0, 38, 77);
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.copyright {
    width: auto;
    flex: 0 0 auto;
}

.term-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.term-menu li:not(:last-child) {
    margin-right: 25px;
}

/* BANNER */
.tabbing-list .tabbing-link {
    display: inline-block;
    padding: 16px;
    background: transparent;
    color: var(--body-color);
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    border: none;
    min-width: unset;
    width: 100%;
}

.tabbing-list .tabbing-link.active,
.button.tabbing-link:hover {
    background: var(--secondary-color);
    color: #fff;
}

.tab-content-wrap {
    display: none;
    margin-top: 40px;
}

.tab-content-wrap.active {
    display: block;
}

ul.tabbing-list {
    display: flex;
    flex-wrap: wrap;
    background: rgb(243, 245, 246);
    border-radius: 10px;
    justify-content: center;
}

li.tabbing-box {
    line-height: 1;
    width: max-content;
    padding: 10px;
}

li.tabbing-box:last-child {
    margin-right: 0;
}

.button.tabbing-link:hover {
    border: none;
}

.button.tabbing-link:after {
    content: none;
}

.custom-product-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    margin: -20px;
}

.product-image-box {
    position: relative;
    background: #f5f5f5;
    overflow: hidden;
    padding: 0 20px;
    margin: 20px 0;
    border-radius: 10px;
    width: 50%;
}

.product-left {
    position: absolute;
    left: 50%;
    display: none;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
    padding: 30px;
    height: 100%;
}

.product-right {
    width: 50%;
    margin: 20px 0;
    padding: 0 20px;
}

.product-left img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    animation: fade-left 1s alternate;
    transition: 0.5s all;
}

@keyframes fade-left {
    0% {
        transform: translatex(20%);
    }

    100% {
        transform: translatex(00%);
    }
}

.image {
    position: relative;
    padding-top: 100%;
}

.image img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
}

.product-image-box ul.products {
    width: 100%;
}

.product-right-inner {
    border: 1px solid rgb(226, 230, 233);
    padding: 24px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    transition: 0.5s all;
    justify-content: space-between;
}

.productbtn {
    line-height: 1;
}

.whatsapp-button.button {
    min-width: auto;
    display: flex;
    align-items: center;
    background: #25d366;
}

.whatsapp-button.button:after {
    content: none;
}

.whatsapp-button.button img {
    margin-right: 10px;
}

.product-right-inner:hover {
    background: #f3f5f6;
}

.product-title {
    font-size: var(--font-18);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-right-content span,
.product-content span {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.product-right ul.products li:not(:last-child) {
    margin-bottom: 10px;
}

.product-right .heading {
    margin-bottom: 10px;
}

.whatsapp-button.button:hover {
    background: var(--primary-color);
}

/* BEST SELLER */
.products.best-selling-products {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.products.best-selling-products>li {
    width: 25%;
    margin: 10px 0;
    padding: 0 10px;
}

.product-inner {
    border: 1px solid #eee;
    border-radius: 8px;
    position: relative;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.best-product-image {
    position: relative;
}

.best-product-image img {
    width: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: 0.5s all;
}

.product-badge {
    position: absolute;
    top: -30px;
    left: 0;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    border-radius: 15px;
    z-index: 1;
}

.product-badge.most-popular {
    background: var(--secondary-color);
}

.product-badge.best-price {
    background: #2a9d8f;
}

.product-badge.special-offer {
    background: #f4a261;
}

.product-badge.hot-deal {
    background: #e76f51;
}

.product-badge.call-for-price {
    background: #264653;
}

.product-content {
    padding: 15px;
}

.cat-heading a {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--secondary-color);
    margin: 0 0 5px;
}

.woocommerce-loop-product__title {
    font-size: 16px;
    margin: 10px 0;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit:contain;
    aspect-ratio:1/1;
}
.product-detail {
    font-size: 14px;
    margin-bottom: 10px;
}
.product-image{
     width: 100%;
    height: 100%;
}
.product-btn-grp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding: 20px;
    padding-top: 0;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background: #25D366;
    color: #fff;
    padding: 10px 15px !important;
    border-radius: 4px;
    font-size: var(--font-16);
    text-decoration: none;
}

.whatsapp-button img {
    margin-right: 6px;
}

.product-top {
    padding: 20px;
    background: rgb(226, 230, 233);
}

.product-inner:hover .best-product-image img {
    transform: scale(0.9);
}

.product-btn-grp .whatsapp-button.button {
    justify-content: center;
    width: 100%;
}

.product-link a {
    color: var(--primary-color);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #F0F2F4;
    position: relative;
    border-radius: 10px;
    z-index: 1;
}

.product-link {
    flex: 0 0 auto;
    display: none;
}

.product-link a:hover {
    color: var(--white-color);
}

.product-link a:hover:after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.product-link a:after {
    content: "";
    background: var(--primary-color);
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.5s all;
}

.product-right-inner .product-image {
    display: none;
}

.product-detail ul {
    list-style: disc;
    padding-left: 20px;
}

.product-detail ul li::marker {
    color: var(--secondary-color);
}

/* SHOP PAGE */
.shop-by-list .woocommerce-loop-category__title .count {
    display: none;
}

.woocommerce-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white-color);
}

.shop-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.left-part {
    width: 28%;
}

.shop-by-list {
    position: sticky;
    position: -webkit-sticky;
    top: 30px;
    padding: 10px;
    border: 1px solid;
    border-radius: 10px;
}

section.product-main-row {
    overflow: unset;
}

.right-part {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
}

.woocommerce-notices-wrapper {
    width: 100%;
}

form.woocommerce-ordering {
    width: 30%;
}

.right-part ul.products {
    /* width: 100%; */
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.right-part ul.products li {
    width: 33.33%;
    padding: 0 10px;
    margin: 10px 0;
}

.shop-by-list ul.products li:not(:last-child) {
    margin-bottom: 10px;
}

.shop-by-list ul.products li a {
    color: var(--black-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
}

.shop-by-list ul.products li a:after {
    content: " \f105";
    font-family: 'FontAwesome';
}

.shop-by-list ul.products li {
    width: 100%;
    text-align: left;
}

.shop-by-list ul.products li a img {
    display: none;
}

.shop-by-list ul.products li a .woocommerce-loop-category__title {
    font-size: var(--font-20);
    font-weight: 500;
}

li.product-category.product.active a {
    background: var(--primary-color);
    color: var(--white-color);
}

.right-part .whatsapp-button.button {
    justify-content: center;
}

.right-part .woocommerce-loop-product__title {
    font-size: var(--font-20);
    margin-bottom: 0;
    color: var(--primary-color);
}

.product-image {
    margin-bottom: 10px;
    margin: auto;
}

.right-part ul.products li>div {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.right-part ul.products li .product-top {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

ul.country-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    align-items: center;
}

ul.country-list li {
    width: 14%;
    padding: 0 10px;
    margin: 10px 0;
}

ul.country-list li>div {
    border: 1px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 50px;
    border-top: 0;
    border-bottom: 0;
    box-shadow: 0 0 5px var(--body-color);
    position: relative;
    overflow: hidden;
}

.country-name {
    font-size: var(--font-18);
    text-align: center;
    transition: 0.5s all;
    text-transform: capitalize;
}

ul.country-list li>div:hover .country-name {
    color: var(--white-color);
}

ul.country-list li>div:before {
    content: "";
    width: 0;
    height: 0;
    background: var(--primary-color);
    position: absolute;
    left: 50%;
    top: 50%;
    transition: 0.5s all;
    z-index: -1;
    border-radius: 50px;
    transform: translate(-50%, -50%);
}

ul.country-list li>div:hover {
    animation: shake 0.5s alternate infinite;
}

ul.country-list li>div:hover:before {
    width: 100%;
    height: 100%;
}

@keyframes shake {
    0% {
        transform: translatey(0);
    }

    100% {
        transform: translatey(-5px);
    }
}

.country-row .heading-group {
    margin-bottom: 40px;
}

/* ABOUT PAGE */
.about-content ul {
    list-style: disc;
    padding-left: 20px;
}

.about-content ul li:not(:last-child) {
    margin-bottom: 10px;
}

ul.mission-list>li>div {
    padding: 50px;
    background: linear-gradient(90deg, rgba(0, 51, 102, 0.8) 0%, rgba(222, 18, 32, 0.6) 100%);
    border-radius: 50px;
    height: 100%;
}

.mission-title {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: var(--font-24);
}

ul.mission-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

ul.mission-list>li {
    width: 50%;
    margin: 10px 0;
    padding: 0 10px;
}

.mission-detail {
    color: var(--white-color);
}

.mission-detail ul {
    list-style: disc;
    padding-left: 20px;
}

.mission-detail li:not(:last-child) {
    margin-bottom: 5px;
}

.footer-block .site-branding img {
    filter: invert(1) brightness(10);
}

.breadcrumb i {
    margin: 0 5px;
}

.contact-top {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    margin-bottom: 50px;
}

.contact-top .contact-block {
    width: 25%;
    padding: 0 10px;
    margin: 10px 0;
}

.contact-top .contact-block>div {
    display: block;
    background: var(--primary-color);
    height: 100%;
    padding: 20px;
    border-radius: 10px;
    color: var(--white-color);
}

.contact-form-row {
    display: flex;
    flex-wrap: wrap;
}

.contact-form {
    width: 50%;
    padding: 30px;
    background: #e2e2e2;
}

.form-col:not(:last-child) {
    margin-bottom: 15px;
}

label {
    color: var(--black-color);
    padding-left: 10px;
    font-weight: 700;
}

.map {
    width: 50%;
    border: 1px solid #ccc;
}

.about-bottom-content {
    margin-top: 20px;
}

.map iframe {
    width: 100%;
    height: 100%;
}

.product-right-image {
    display: none;
}

.product-right-image img {
    width: 100%;
    height: 100%;
}

.about-page-left {
    width: 50%;
    padding-right: 20px;
}
/* PRIVACY POLICY */
ul.wp-block-list {
	list-style: disc;
	padding-left: 30px;
	margin-bottom: 20px;
}

ul.wp-block-list li:not(:last-child) {
	margin: 0 0 8px 0;
}
h2.wp-block-heading {
    color: var(--primary-color);
    font-size: var(--font-35);
    margin-bottom: 20px;
}

.policy-wrap {
    color: var(--black-color);
}

.policy-wrap a {
    color: var(--primary-color);
}