/* Responsive Header Styles */
@import url('https://fonts.googleapis.com/css2?family=Tsukimi+Rounded:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Sacramento&family=Satisfy&family=Sevillana&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --lp-main: #ff5b36;
    --lp-sub: #66B14F;
    --white: #fff;
    --black: #000000;
    --txt-color: #333;
    --f-family: "Tsukimi Rounded";
    --fb-family: "Noto Sans, Bold";
    --fr-family: "Noto Sans, Regular";
}

.grecaptcha-badge{
    opacity: 0;
    display: none;
  }

body {
    background-color: var(--white);
    font-size: 16px;
    /* min-width: 480px; */
    overflow-x: hidden;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Tsukimi Rounded", メイリオ, Meiryo, sans-serif;
}

.p-50 {
    padding-bottom: 50px;
    padding-top: 30px;
}

section{
    overflow: hidden;
}

.whlp-container {
    max-width: 1200px;
    padding: 0px 10px;
    margin: 0 auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--white);
    border-bottom: 2px solid #ddd;
}

.logo {
    height: 50px;
}

.reservation-button-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.reservation-button {
    background-color: var(--lp-main);
    color: var(--white);
    border: none;
    font-family: var(--f-family)!important;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: clamp(18px, 3vw, 24px);
    cursor: pointer;
    box-shadow: 0px 5px 0px var(--black);
}

.reservation-button.large {
    font-size: clamp(20px, 10vw, 36px);
    padding: 10px 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    font-family: var(--f-family);
    border-radius: 40px;
}

.main-container {
    align-items: center;
    position: relative;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    overflow: hidden;
    z-index: -1;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tilp-pc {
    display: block;
}

.tilp-mb {
    display: none;
}

.over-image-svg {
    position: absolute;
    top: 0;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
}

.content-container {
    width: 100%;
    text-align: center;
    height: 600px;
    padding: 75px 0px;
}

.content-container-wrap {
    position: relative;
    max-width: 480px;
    /* min-width: 450px; */
    display: flex;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 50%;
    height: 450px;
    border: 3px solid var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.speech-bubble {
    position: absolute;
    display: flex;
    width: 250px;
    top: -40px;
    flex-direction: column;
    justify-content: center;
}

.speech-bubble p {
    color: var(--white) !important;
    padding: 15px 20px;
    border-radius: 15px;
    position: absolute;
    margin: 0 auto;
    display: flex;
    font-size: 20px;
    font-family: var(--f-family);
    margin-bottom: 20px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-text {
    margin-top: 30px;
    font-family: var(--f-family);
}

.main-text h1 {
    color: #ff4500;
    font-size: 34px;
    letter-spacing: normal;
    margin-bottom: 10px;
    font-family: var(--f-family);
    text-shadow: 0px 3px 3px #0000002C;
}

.main-text p {
    font-size: 18px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.circle-green {
    background-color: var(--lp-sub);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 50%;
    height: 78px;
    display: flex;
    width: 80px;
    margin: auto;
    text-align: center;
    font-size: 18px;
    position: relative;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.circle-green svg {
    position: absolute;
    top: -23px;
    right: -10px;
    width: 25px;
}

.circle-green:hover {
    background-color: var(--lp-sub);
}

/* ------------------------ */
.wlp-title-container {
    text-align: center;
    margin-bottom: 30px;
}

.wlp-title-container .wlp-title {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 400;
    line-height: 1.6;
    /* color: var(--txt-color); */
    font-family: var(--f-family);
    position: relative;
    display: inline-block;
}

.wlp-title-container .wlp-slash {
    color: var(--lp-main);
    font-size: 28px;
    vertical-align: middle;
    margin: 0 10px;
}

.wlp-title-container .wlp-highlight {
    color: var(--lp-main);
    position: relative;
    font-weight: bold;
}

.wlp-title-container .wlp-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.4em;
    width: 100%;
    background-color: #ffe685;
    z-index: -1;
}

.wlp-title-container.flex-c {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wlp-title-container.flex-c svg {
    margin-top: -28px;
    width: 300px;
}

/* Center the title */
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(20px, 3vw, 40px);
    font-weight: bold;
    margin-bottom: 30px;
}

/* Style for the slashes */
.slash {
    margin: 0 15px;
    font-size: clamp(20px, 3vw, 40px);
    color: var(--lp-main);
}

/* Style for the main text */
.title-text {
    font-family: var(--f-family);
    font-size: clamp(26px, 3vw, 40px);
    letter-spacing: 0.1em;
}

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

.whlp-f-section {
    padding-top: 50px;
}

.wlp-c-merits {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 20px 0px;
    margin: auto;
    margin-top: clamp(15px, 6vw, 70px);
}

/* Card Container */
.wlp-c-card {
    background-color: var(--white);
    border: 2px solid var(--lp-sub);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 32%;
    max-width: 300px;
    text-align: center;
    padding: clamp(16px, 1vw, 20px);
    position: relative;
}

/* Header Section */
.wlp-c-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.wlp-c-merit-icon {
    width: 50px;
    position: absolute;
    top: -20%;
    left: 0px;
}

.wlp-c-title {
    font-size: 18px;
    font-weight: bold;
    font-family: var(--fb-family);
}

.wlp-c-image {
    height: clamp(170px, 8vw, 300px);
    overflow: hidden;
}

/* Image Section */
.wlp-c-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Description Section */
.wlp-c-description {
    font-size: 16px;
    color: var(--txt-color);
    line-height: 1.6;
    text-align: left;
    padding-top: 10px;
    font-family: var(--fr-family);
}

/* ----------------------- */
.wh-b1-figure {
    width: 100%;
    overflow: hidden;
}

.wh-b1-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whb1f-mb {
    display: none;
}

.whb1f-pc {
    display: block;
}

/* ------------------------- */
.wlp-d-point {
    margin-bottom: 40px;
    display: flex;
    gap: 3vw;
    align-items: center;
    justify-content: space-between;
}

.wlp-d-point-cont {
    width: 50%;
}

.wlp-d-point-image {
    width: clamp(300px, 50vw, 500px)
}

.wlp-d-point-image img {
    width: 100%;
    border-radius: 10px;
}

.wlp-d-point-title {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wlp-d-point-title span {
    position: absolute;
    top: 50%;
    color: var(--white);
}

.wlp-d-point-heading {
    color: var(--lp-main);
    font-size: clamp(20px, 3vw, 30px);
    margin: 10px 0 10px;
    font-weight: bold;
    font-family: var(--fb-family);
}

.wlp-d-point-divider {
    border-top: 3px dashed #121212;
    margin: 10px 0;
}

.wlp-d-point-description {
    font-size: 16px;
    color: var(--txt-color);
    margin: 10px 0;
    font-family: var(--fr-family);
}

/* --------------- */
.wlp-mh-card-container {
    display: grid;
    max-width: 882px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    justify-content: center;
    margin: 0 auto;
}

.wlp-mh-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0px 0px 8px #4141418C;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.wlp-mh-card:hover {
    transform: translateY(-5px);
}

.wlp-mh-card-image {
    padding: 15px 15px 0px;
}

.wlp-mh-card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.wlp-mh-card-content {
    padding: 15px;
    text-align: left;
}

.wlp-mh-card-content h3 {
    margin: 0;
    font-size: clamp(18px, 3vw, 26px);
    font-weight: bold;
}

.wlp-mh-card-content p {
    margin: 10px 0 0;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--txt-color);
    opacity: 0.7;
    line-height: 2;
}


.wlp-voice-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #EDEDED;
}


.shadow-effect {
    background: var(--white);
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    height: 100%;
}

#customers-testimonials .shadow-effect p {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    margin-bottom: 5px;
    color: var(--txt-color);
}

.testimonial-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}
.owl-carousel .owl-stage{
    display: flex!important;
    align-items: stretch!important;
    margin-bottom: 20px;
}
.owl-carousel.owl-drag .owl-item{
    margin: 0px 20px;
}

#customers-testimonials .item {
    text-align: center;
    height: 100%;
    background-color: var(--white);
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    /* opacity: 0.2;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; */
}

#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    /* -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); */
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--lp-sub);
    transform: translate3d(0px, -50%, 0px) scale(0.5);
}

#customers-testimonials.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 20px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: #12121266;
    display: inline-block;
    height: 30px;
    border-radius: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 30px;
}

.tst-img {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tst-img figure {
    border-radius: 50%;
    overflow: hidden;
    height: 90px;
    width: 90px;
}

.tst-name {
    text-align: left;
    flex: 1;
}

.tst-name h3 {
    margin-bottom: 10px;
    line-height: normal;
    letter-spacing: normal;
    font-weight: bold;
    position: relative;
    font-family: var(--fb-family);
    z-index: 1;
    font-size: 18px;
}
/* 
.tst-name h3::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--lp-sub);
    top: 100%;
    left: 0;
    transform: translateY(-50%);
} */

.tst-name p {
    margin-bottom: 0px;
    font-family: var(--fr-family);
}

/* ----------------------------- */
.lp-faq {
    margin-top: 50px;
    background-color: var(--white);
}

.lp-faq .section-title-faq {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lp-faq .section-title-faq h2 {
    font-size: clamp(24px, 6vw, 50px);
    color: var(--lp-green);
    text-shadow: 0px 3px 6px #00000031;
}

.lp-faq .section-title-faq p {
    font-size: clamp(20px, 4vw, 35px);
}

.faq-container-wrap {
    margin: 40px auto;
}

.faq-item {
    border: 1px solid #ddd;
    margin: 10px 0;
    overflow: hidden;
    color: var(--white);
}

.faq-question {
    position: relative;
    cursor: pointer;
    font-size: clamp(16px, 3vw, 20px);
   font-family: var(--fb-family);
    background-color: var(--lp-sub);
    display: flex;
    padding: 10px 30px 10px 10px;
    align-items: center;
    font-weight: 500;
}

.q-icon {
    font-size: clamp(26px, 4vw, 30px);
    font-weight: bold;
    color: var(--white);
    margin-right: clamp(10px, 2vw, 15px);
    font-family: var(--fb-family);
}

.faq-answer {
    display: none;
    padding: 30px 10px 10px;
    margin-bottom: 10px;
    color: var(--txt-color);
    transition-duration: 500ms;
    font-family: var(--fr-family);
    transition-property: all;
    transition: max-height 0.3s ease-in-out;
    transition-timing-function: ease-in;
}

.faq-answer p {
    margin-bottom: 5px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
}

.faq-answer p a {
    color: var(--lp-green);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-sign {
    font-size: 1.2em;
    margin-right: 5px;
}

.faq-icon {
    position: absolute;
    right: 10px;
    font-size: 25px;
    color: var(--lp1-main);
}

.faq-opened {
    display: block;
    max-height: max-content;
}

.faq-page-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    padding: 0px 15px;
}

.wlp-reserve-section {
    background-color: #EDEDED;
    padding-top: 50px;
    padding-bottom: 50px;
}

.wlp-reserve-f-text {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.wlp-reserve-f-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.wlp-reserve-f-text .lst {
    color: var(--lp-main);
}

.lp-form-wrap {
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding-top: 20px;
}


select {
    border-radius: 10px;
    padding: 10px 40px 15px 10px !important;
    font-size: 16px;
    border: 1px solid #ccc;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 20 20" fill="gray"><path d="M5.292 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 011.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" /></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    letter-spacing: normal;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
select,
textarea {
    display: block;
    width: 100%;
    background-color: var(--white);
    border: 1px solid #BEBEBE;
    border-radius: 3px;
    padding: 10px 15px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 16px;
    outline: none;
    letter-spacing: normal;
}

.cdate {
    width: 100% !important;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 50px;
    text-align: center;
}

textarea {
    height: 200px;
    padding: 10px 15px!important;
}

.required {
    background-color: var(--lp-main);
    color: var(--white);
    padding: 1px 10px;
    border-radius: 5px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: normal !important;
    margin-left: 10px;
}

.lp-f-row {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    margin-top: 20px;
}

.f-label {
    width: 300px;
    font-weight: bold;
    letter-spacing: normal;
}

.lp-f-row p,
.lp-f-row > span {
    width: 100%;
}

.inner-row-wrap {
    display: flex;
    width: 100%;
    gap: 10px;
    justify-content: space-between;
}

.inner-row {
    width: 48%;
}

.lp-policyBox {
    text-align: center;
    font-size: 16px;
    margin-top: 30px;
}

.lp-policyBox label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(16px, 2vw, 20px);
}

.lp-policyBox a {
    color: var(--lp-main);
    text-decoration: underline;
    font-size: 16px;
    text-underline-offset: 2px;
}

input[type="checkbox"] {
    height: 18px;
    width: 18px;
    margin-right: 5px;
}

.lp-sendBtn {
    display: block;
    width: 280px;
    margin: 15px auto 0;
    padding: 15px 10px;
    border: none;
    color: var(--white);
    background-color: var(--lp-sub);
    font-weight: bold;
    box-shadow: 3px 5px 0px #939393;
    box-shadow: 0px 3px 0px var(--black);
    border-radius: 30px;
}

.whlp-footer {
    background-color: var(--white);
    padding-top: 20px;
    font-size: 14px;
    color: var(--txt-color);
}

.whlp-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

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

.whlp-footer-left .whlp-logo {
    margin-top: 10px;
    max-width: clamp(250px, 32vw, 300px);
}

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

.whlp-footer-right p {
    margin: 5px 0;
}

.whlp-highlight {
    color: var(--lp-main);
    font-weight: bold;
    font-size: px;
}

.whlp-footer-icons {
    margin-top: 20px;
}

.whlp-footer-icons a {
    margin: 0 10px;
    font-size: 24px;
    color: var(--txt-color);
    text-decoration: none;
}

.whlp-footer-bottom {
    text-align: left;
    font-size: 12px;
    background-color: #EDEDED;
    margin-top: 20px;
    padding: 10px 0px;
}

.whlp-footer-bottom p {
    margin: 0;
}

.si-pc {
    display: block;
}

.si-mb {
    display: none;
}

/* ------------------------- */
@media (max-width: 1024px) {
    .wlp-mh-card-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        gap: 20px;
        justify-content: center;
    }
}


/* ------------------------- */
@media (max-width: 882px) {
    .wlp-c-merits {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: clamp(15px, 2vw, 40px);
    }

    .wlp-c-card {
        width: 45%;
        max-width: 340px;
        margin-top: 50px;
    }

    .wlp-c-image {
        position: relative;
        z-index: 1;
    }

    .wlp-c-merit-icon {
        top: -15%;
    }
    .model-title{
        font-size: 30px!important;
    }
}
/* ------------------------- */
@media (max-width: 600px) {
    .tilp-mb {
        display: block;
    }

    .tilp-pc {
        display: none;
    }

    /* ------------------------- */
    .br-none {
        display: none;
    }

    /* ------------------------- */
    .whb1f-mb {
        display: block;
    }

    .whb1f-pc {
        display: none;
    }
    .wlp-c-card{
        width: 100%;
    }

    /* ------------------------- */
    .whlp-footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .whlp-footer-right,
    .whlp-footer-left {
        text-align: center;
    }

    .si-pc {
        display: none;
    }

    .si-mb {
        display: block;
        text-align: center;
        margin-top: 5px;
    }

    .whlp-footer-bottom p {
        text-align: center;
    }
}

/* ------------------------- */
@media (max-width: 576px) {
    .wlp-d-point {
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        gap: 3vw;
        align-items: center;
    }

    .wlp-d-point-cont {
        width: 100%;
        order: 0;
        position: relative;
        text-align: center;
    }

    .wlp-d-point-image {
        width: 100%;
        order: 1;
    }

    .wlp-d-point-divider {
        position: absolute;
        top: 0;
        width: 100%;
    }

    /* ------------------------- */
    .lp-f-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .f-label {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* ------------------------- */
@media (max-width: 480px) {
    header{
        padding: 10px 5px;
    }
    .logo{
        height: clamp(33px, 10vw, 42px);
    }
    .reservation-button{
        border-radius: 16px;
        padding: 5px 10px;
        font-size: clamp(14px, 1vw, 16px);
    }
    .content-container{
        height: 100%;
    }
    .content-container-wrap{
        max-width: 450px;
        width: 100%;
        height: clamp(315px, 100vw, 450px);
    }
    .main-text .reservation-button.large{
        font-size: clamp(16px, 5vw, 36px);
    }
    .buttons{
        gap: 0px;
    }
    .circle-green{
        height: clamp(50px, 16vw, 70px);
        width: clamp(50px, 16vw, 70px);
        padding: 0px;
        font-size: clamp(14px, 3vw, 18px);
    }

    
 
    

    .speech-bubble{
        width: 200px;
    }
    .speech-bubble p{
        font-size: 16px;
    }
    .main-text h1{
        font-size: clamp(24px, 8vw, 34px);
    }
    .main-text p{
        font-size: clamp(14px, 4.4vw, 18px); 
    }

    /* --------------------- */
    .wlp-c-merits {
        justify-content: center;
        flex-wrap: wrap;
    }

    .wlp-c-card {
        width: 100%;
        margin-top: 50px;
        padding: 10px;
    }

    .wlp-c-merit-icon {
        width: 70px;
    }

    .wlp-c-title {
        font-size: 20px;
    }
  

    .br-none {
        display: none;
    }

    /* ------------------------- */
    .wlp-mh-card-container {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 370px) {
    .speech-bubble {
        width: 180px;
        top: -35px;
    }
    .speech-bubble p {
        font-size: 14px;
    }
    .main-text .reservation-button.large{
        padding: 6px 18px;
    }
    .wlp-c-merit-icon {
        width: 50px;
        position: absolute;
        top: -9%;
        left: -5px;
    }
    .wlp-c-title {
        font-size: 18px;
    }
    .wlp-c-header{
        margin-bottom: 5px;
    }
    .owl-carousel.owl-drag .owl-item{
        margin: 0px 10px;
    }
}