*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    cursor: default;
}

html {
    width: 100%;
    height: auto;
}

.testim {
    width: 100%;
    transform: translateY(-50%);
    background: #f8f9fc;
    margin-top: 250px;
    padding: 20px 0px;
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #a5a19c;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .arrow:hover {
    color: #ea830e;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #ea830e;
    border-color: #ea830e;
}

.testim .dots .dot.active {
    animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont>div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont>div.inactive {
    opacity: 1;
}

.testim .cont>div.active {

    position: relative;
    opacity: 1;

}

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: #ea830e;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 17px;
    color: #898181;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
    animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
    animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
    animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
    animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
    animation: testim-content-out .5s ease-in-out forwards;
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

/* coding with nick */

/* Responsive */

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}

@media all and (max-width: 500px) {
    .testim .arrow {
        font-size: 1.5rem;
    }

    .testim .cont div p {
        line-height: 25px;
        font-size: 12px;
    }
}

.iamge-fit {
    min-height: 322px;
    background-size: cover;
    object-fit: fill;
}

.imag-section {
    width: 100%;
    height: 286px;
    background-image: url(../banner/bedroom_banner.jpg) !important;
    align-content: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
    /* object-position: 9px; */
    object-position: 16px 15px;
    position: relative;
}

.ward {
    font-size: 60px !important;
    color: #fff;
    background: rgb(0 0 0 / 23%);
    padding: 110px 0px;
}

.flex {
    display: flex;
    gap: 25px;
    margin-top: 35px;
}

.left-item {
    width: 40%;
    border: 1px solid #ccc;
    padding: 18px 14px;
    box-shadow: 0px 1px 4px 0px;
    border-radius: 5px;
    height: 193px;
}

.right-item {
    width: 60%;
    border: 1px solid #ccc;
    padding: 0px 14px;
    box-shadow: 0px 1px 4px 0px;
    border-radius: 5px;
}

.input-group {
    display: contents;
}

.input-group input {
    width: 100%;
    padding: 6px 8px;
    outline: none;
    color: #000;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.input-group textarea {
    width: 100%;
    height: 100px;
    resize: vertical;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btni {
    width: 100%;
    background: #e99c2e;
    padding: 12px 0px;
    margin-top: 11px;
    color: #fff;
    margin-bottom: 20px;
    border-radius: 5px;
}

.newlabel {
    font-size: 15px;
    margin-top: 24px;
}

.listing {
    display: flex;
    gap: 5px;
    align-items: center;
    width: 100%;
    padding: 6px 7px;
    border-radius: 5px;
    align-items: baseline;
}

.conatct {
    font-size: 20px;
    padding-left: 7px;
    margin-bottom: 10px;
}

.get {
    font-size: 20px;
    margin-top: 15px;
}

@media only screen and (max-width: 600px) {
    .flex {
        display: block;
    }

    .left-item {
        width: 100%;
    }

    .right-item {
        width: 100%;
        margin: inherit;
    }

    .imag-section {
        width: 100%;
        height: 184px !important;
        background-image: url(./assets/banner/bedroom_banner.jpg);
        align-content: center;
        text-align: center;
        background-repeat: no-repeat;
        background-size: cover;
        object-fit: contain;
        object-position: 16px 15px;
        position: relative;
    }

    .ward {
        font-size: 60px !important;
        color: #fff;
        background: rgb(0 0 0 / 34%);
        padding: 78px 0px !important;
    }

    .value-card {
        width: 100%;
    }
}

.imag-section {
    width: 100%;
    height: 286px;
    background-image: url(./assets/banner/bedroom_banner.jpg);
    align-content: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
    /* object-position: 9px; */
    object-position: 16px 15px;
    position: relative;
}

.ward {
    font-size: 60px !important;
    color: #fff;
    background: rgb(0 0 0 / 34%);
    padding: 110px 0px;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}



.about-section,
.values-section,
.offer-section {
    margin: 40px auto;
    padding: 30px 20px;
    background: #fff;
}

.about-section h2,
.values-section h2,
.offer-section h2 {
    color: #e99c2e;
    font-size: 24px;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 14px;
    color: #555;
}

.values {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    background: #fdfdfd;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 353px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.value-card p {
    font-size: 14px;
    color: #555;
}

.offer-section ul {
    list-style: none;
    padding: 0;
}
.owl-prev{
    display: none !important;
    background-color: #1bd741;
}
.offer-section ul li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.offer-section ul li::before {
    content: "✔";
    color: #e99c2e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

footer {
    text-align: center;
    background: #222;
    color: #fff;
    padding: 10px 0;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

.icon-container {
    font-size: 50px;
    margin-bottom: 5px;
    color: #e99c2e;
}

@media only screen and (max-width: 768px) {

    .about-section,
    .values-section,
    .offer-section {
        margin: 40px auto;
        padding: 20px 8px;
        background: #fff;
    }
}

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    cursor: default;
}

html {
    width: 100%;
    height: auto;
}

.testim {
    width: 100%;
    transform: translateY(-50%);
    background: #f8f9fc;
    margin-top: 250px;
    padding: 20px 0px;
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #a5a19c;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .arrow:hover {
    color: #ea830e;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #ea830e;
    border-color: #ea830e;
}

.testim .dots .dot.active {
    animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont>div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont>div.inactive {
    opacity: 1;
}

.testim .cont>div.active {

    position: relative;
    opacity: 1;

}

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: #ea830e;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 17px;
    color: #898181;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
    animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
    animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
    animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
    animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
    animation: testim-content-out .5s ease-in-out forwards;
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

/* coding with nick */

/* Responsive */

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}

@media all and (max-width: 500px) {
    .testim .arrow {
        font-size: 1.5rem;
    }

    .testim .cont div p {
        line-height: 25px;
        font-size: 12px;
    }
}

.iamge-fit {
    min-height: 322px;
    background-size: cover;
    object-fit: fill;
}

.imag-section {
    width: 100%;
    height: 286px;
    background-image: url(./assets/banner/bedroom_banner.jpg);
    align-content: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
    /* object-position: 9px; */
    object-position: 16px 15px;
    position: relative;
}

.ward {
    font-size: 60px !important;
    color: #fff;
    background: rgb(0 0 0 / 23%);
    padding: 110px 0px;
}

@media only screen and (max-width: 600px) {
    .iamge-fit {
        min-height: 247px;
        background-size: cover;
        object-fit: fill;
    }

    .imag-section {
        width: 100%;
        height: 184px !important;
        background-image: url(./assets/banner/bedroom_banner.jpg);
        align-content: center;
        text-align: center;
        background-repeat: no-repeat;
        background-size: cover;
        object-fit: contain;
        object-position: 16px 15px;
        position: relative;
    }

    .ward {
        font-size: 60px !important;
        color: #fff;
        background: rgb(0 0 0 / 34%);
        padding: 78px 0px !important;
    }
}

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    cursor: default;
}

html {
    width: 100%;
    height: auto;
}

.testim {
    width: 100%;
    transform: translateY(-50%);
    background: #f8f9fc;
    margin-top: 250px;
    padding: 20px 0px;
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #a5a19c;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .arrow:hover {
    color: #ea830e;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #ea830e;
    border-color: #ea830e;
}

.testim .dots .dot.active {
    animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont>div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont>div.inactive {
    opacity: 1;
}

.testim .cont>div.active {

    position: relative;
    opacity: 1;

}

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: #ea830e;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 17px;
    color: #898181;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
    animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
    animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
    animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
    animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
    animation: testim-content-out .5s ease-in-out forwards;
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

/* coding with nick */

/* Responsive */

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}

@media all and (max-width: 500px) {
    .testim .arrow {
        font-size: 1.5rem;
    }

    .testim .cont div p {
        line-height: 25px;
        font-size: 12px;
    }
}

.iamge-fit {
    min-height: 322px;
    background-size: cover;
    object-fit: fill;
}

.imag-section {
    width: 100%;
    height: 286px;
    background-image: url(./assets/banner/bedroom_banner.jpg);
    align-content: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
    /* object-position: 9px; */
    object-position: 16px 15px;
    position: relative;
}

.ward {
    font-size: 60px !important;
    color: #fff;
    background: rgb(0 0 0 / 23%);
    padding: 110px 0px;
}

@media only screen and (max-width: 600px) {
    .imag-section {
        width: 100%;
        height: 184px !important;
        background-image: url(./assets/banner/bedroom_banner.jpg);
        align-content: center;
        text-align: center;
        background-repeat: no-repeat;
        background-size: cover;
        object-fit: contain;
        object-position: 16px 15px;
        position: relative;
    }

    .ward {
        font-size: 60px !important;
        color: #fff;
        background: rgb(0 0 0 / 34%);
        padding: 78px 0px !important;
    }

    .iamge-fit {
        min-height: 247px;
        background-size: cover;
        object-fit: fill;
    }
}

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    cursor: default;
}

html {
    width: 100%;
    height: auto;
}

.testim {
    width: 100%;
    transform: translateY(-50%);
    background: #f8f9fc;
    margin-top: 250px;
    padding: 20px 0px;
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #a5a19c;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .arrow:hover {
    color: #ea830e;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #ea830e;
    border-color: #ea830e;
}

.testim .dots .dot.active {
    animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont>div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont>div.inactive {
    opacity: 1;
}

.testim .cont>div.active {

    position: relative;
    opacity: 1;

}

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: #ea830e;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 17px;
    color: #898181;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
    animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
    animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
    animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
    animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
    animation: testim-content-out .5s ease-in-out forwards;
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

/* coding with nick */

/* Responsive */

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}

@media all and (max-width: 500px) {
    .testim .arrow {
        font-size: 1.5rem;
    }

    .testim .cont div p {
        line-height: 25px;
        font-size: 12px;
    }
}

.iamge-fit {
    min-height: 322px;
    background-size: cover;
    object-fit: fill;
}

.imag-section {
    width: 100%;
    height: 286px;
    background-image: url(./assets/banner/bedroom_banner.jpg);
    align-content: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
    /* object-position: 9px; */
    object-position: 16px 15px;
    position: relative;
}

.ward {
    font-size: 60px !important;
    color: #fff;
    background: rgb(0 0 0 / 34%);
    padding: 110px 0px;
}

@media only screen and (max-width: 600px) {
    .imag-section {
        width: 100%;
        height: 184px !important;
        background-image: url(./assets/banner/bedroom_banner.jpg);
        align-content: center;
        text-align: center;
        background-repeat: no-repeat;
        background-size: cover;
        object-fit: contain;
        object-position: 16px 15px;
        position: relative;
    }

    .ward {
        font-size: 60px !important;
        color: #fff;
        background: rgb(0 0 0 / 23%);
        padding: 78px 0px !important;
    }

    .iamge-fit {
        min-height: 247px;
        background-size: cover;
        object-fit: fill;
    }
}

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    cursor: default;
}

html {
    width: 100%;
    height: auto;
}

.testim {
    width: 100%;
    transform: translateY(-50%);
    background: #f8f9fc;
    margin-top: 250px;
    padding: 20px 0px;
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #a5a19c;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .arrow:hover {
    color: #ea830e;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #ea830e;
    border-color: #ea830e;
}

.testim .dots .dot.active {
    animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont>div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont>div.inactive {
    opacity: 1;
}

.testim .cont>div.active {

    position: relative;
    opacity: 1;

}

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: #ea830e;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 17px;
    color: #898181;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
    animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
    animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
    animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
    animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
    animation: testim-content-out .5s ease-in-out forwards;
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

/* coding with nick */

/* Responsive */

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}

@media all and (max-width: 500px) {
    .testim .arrow {
        font-size: 1.5rem;
    }

    .testim .cont div p {
        line-height: 25px;
        font-size: 12px;
    }
}

.imag-section {
    width: 100%;
    height: 286px;
    background-image: url(./assets/banner/bedroom_banner.jpg);
    align-content: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
    /* object-position: 9px; */
    object-position: 16px 15px;
    position: relative;
}

.ward {
    font-size: 60px !important;
    color: #fff;
    background: rgb(0 0 0 / 34%);
    padding: 110px 0px;
}

@media only screen and (max-width: 600px) {
    .imag-section {
        width: 100%;
        height: 184px !important;
        background-image: url(./assets/banner/bedroom_banner.jpg);
        align-content: center;
        text-align: center;
        background-repeat: no-repeat;
        background-size: cover;
        object-fit: contain;
        object-position: 16px 15px;
        position: relative;
    }

    .ward {
        font-size: 60px !important;
        color: #fff;
        background: rgb(0 0 0 / 23%);
        padding: 78px 0px !important;
    }

    .iamge-fit {
        min-height: 247px;
        background-size: cover;
        object-fit: fill;
    }
}

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    cursor: default;
}

html {
    width: 100%;
    height: auto;
}

.testim {
    width: 100%;
    transform: translateY(-50%);
    background: #f8f9fc;
    margin-top: 250px;
    padding: 20px 0px;
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #a5a19c;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .arrow:hover {
    color: #ea830e;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #ea830e;
    border-color: #ea830e;
}

.testim .dots .dot.active {
    animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont>div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont>div.inactive {
    opacity: 1;
}

.testim .cont>div.active {

    position: relative;
    opacity: 1;

}

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: #ea830e;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 17px;
    color: #898181;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
    animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
    animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
    animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
    animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
    animation: testim-content-out .5s ease-in-out forwards;
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

/* coding with nick */

/* Responsive */

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}

@media all and (max-width: 500px) {
    .testim .arrow {
        font-size: 1.5rem;
    }

    .testim .cont div p {
        line-height: 25px;
        font-size: 12px;
    }
}

.iamge-fit {
    min-height: 322px;
    background-size: cover;
    object-fit: fill;
}

.imag-section {
    width: 100%;
    height: 286px;
    background-image: url(./assets/banner/bedroom_banner.jpg);
    align-content: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
    /* object-position: 9px; */
    object-position: 16px 15px;
    position: relative;
}

.ward {
    font-size: 60px !important;
    color: #fff;
    background: rgb(0 0 0 / 23%);
    padding: 110px 0px;
}

.flex {
    display: flex;
    gap: 25px;
    margin-top: 35px;
}

.left-item {
    width: 40%;
    border: 1px solid #ccc;
    padding: 18px 14px;
    box-shadow: 0px 1px 4px 0px;
    border-radius: 5px;
    height: 193px;
}

.right-item {
    width: 60%;
    border: 1px solid #ccc;
    padding: 0px 14px;
    box-shadow: 0px 1px 4px 0px;
    border-radius: 5px;
}

.input-group {
    display: contents;
}

.input-group input {
    width: 100%;
    padding: 6px 8px;
    outline: none;
    color: #000;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.input-group textarea {
    width: 100%;
    height: 100px;
    resize: vertical;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btni {
    width: 100%;
    background: #e99c2e;
    padding: 12px 0px;
    margin-top: 11px;
    color: #fff;
    margin-bottom: 20px;
    border-radius: 5px;
}

.newlabel {
    font-size: 15px;
    margin-top: 24px;
}

.listing {
    display: flex;
    gap: 5px;
    align-items: center;
    width: 100%;
    padding: 6px 7px;
    border-radius: 5px;
    align-items: baseline;
}

.conatct {
    font-size: 20px;
    padding-left: 7px;
    margin-bottom: 10px;
}

.get {
    font-size: 20px;
    margin-top: 15px;
}

@media only screen and (max-width: 600px) {
    .flex {
        display: block;
    }

    .left-item {
        width: 100%;
    }

    .right-item {
        width: 100%;
        margin: inherit;
    }

    .imag-section {
        width: 100%;
        height: 184px !important;
        background-image: url(./assets/banner/bedroom_banner.jpg);
        align-content: center;
        text-align: center;
        background-repeat: no-repeat;
        background-size: cover;
        object-fit: contain;
        object-position: 16px 15px;
        position: relative;
    }

    .ward {
        font-size: 60px !important;
        color: #fff;
        background: rgb(0 0 0 / 23%);
        padding: 78px 0px !important;
    }
}

.imag-section {
    width: 100%;
    height: 286px;
    background-image: url(./assets/banner/bedroom_banner.jpg);
    align-content: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
    /* object-position: 9px; */
    object-position: 16px 15px;
    position: relative;
}

.ward {
    font-size: 60px !important;
    color: #fff;
    background: rgb(0 0 0 / 47%);
    padding: 110px 0px;
}

.blog-card {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    margin: 40px auto;
    align-items: center;
}

.blog-content1 {
    padding: 20px;
    flex: 1;

}

.new-card {
    order: 2;
    padding-left: 40px;

}

.blog-meta {
    display: flex;
    gap: 40px;
    font-size: 15px;
    color: #888;
    margin-bottom: 10px;
    align-items: center;
}

.blog-title {
    font-size: 23px;
    font-weight: bold;
    margin: 10px 0;
}

.blog-author {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
}

.blog-author a {
    color: #e99c2e;
    text-decoration: none;
}

.blog-author a:hover {
    text-decoration: underline;
}

.blog-description {
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-read {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e99c2e;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}


.blog-image {
    flex: 1;
    width: 50%;
    height: 436px;
    background-size: cover;
    object-fit: cover;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 600px) {
    .blog-card {
        flex-direction: column-reverse;
    }

    .new-card {
        order: 0 !important;
        padding-left: 40px;
    }

    .blog-image {
        flex: 1;
        width: 100%;
        height: 300px;
        margin-bottom: 14px;
    }

    .blog-content1 {
        padding: 0 0 14px 0px;
        flex: 1;
    }

    .blog-title {
        font-size: 18px;
        font-weight: bold;
        margin: 5px 0;
    }

    .blog-author {
        font-size: 15px;
        margin-bottom: 2px;
        color: #555;
    }

    .blog-description {
        line-height: 1.6;
        margin-bottom: 10px;
    }
}

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    cursor: default;
}

html {
    width: 100%;
    height: auto;
}

.testim {
    width: 100%;
    transform: translateY(-50%);
    background: #f8f9fc;
    margin-top: 250px;
    padding: 20px 0px;
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #a5a19c;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .arrow:hover {
    color: #ea830e;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #ea830e;
    border-color: #ea830e;
}

.testim .dots .dot.active {
    animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont>div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont>div.inactive {
    opacity: 1;
}

.testim .cont>div.active {

    position: relative;
    opacity: 1;

}

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: #ea830e;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 17px;
    color: #898181;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
    animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
    animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
    animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
    animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
    animation: testim-content-out .5s ease-in-out forwards;
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

/* coding with nick */

/* Responsive */

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}

@media all and (max-width: 500px) {
    .testim .arrow {
        font-size: 1.5rem;
    }

    .testim .cont div p {
        line-height: 25px;
        font-size: 12px;
    }
}

.iamge-fit {
    min-height: 322px;
    background-size: cover;
    object-fit: fill;
}

.imag-section {
    width: 100%;
    height: 286px;
    background-image: url(./assets/banner/bedroom_banner.jpg);
    align-content: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
    /* object-position: 9px; */
    object-position: 16px 15px;
    position: relative;
}

.ward {
    font-size: 60px !important;
    color: #fff;
    background: rgb(0 0 0 / 23%);
    padding: 110px 0px;
}

.flex {
    display: flex;
    gap: 25px;
    margin-top: 35px;
}

.left-item {
    width: 40%;
    border: 1px solid #ccc;
    padding: 18px 14px;
    box-shadow: 0px 1px 4px 0px;
    border-radius: 5px;
    height: 193px;
}

.right-item {
    width: 60%;
    border: 1px solid #ccc;
    padding: 0px 14px;
    box-shadow: 0px 1px 4px 0px;
    border-radius: 5px;
    margin-bottom: 40px;
}

.input-group {
    display: contents;
}

.input-group input {
    width: 100%;
    padding: 6px 8px;
    outline: none;
    color: #000;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.input-group textarea {
    width: 100%;
    height: 100px;
    resize: vertical;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btni {
    width: 100%;
    background: #e99c2e;
    padding: 12px 0px;
    margin-top: 11px;
    color: #fff;
    margin-bottom: 20px;
    border-radius: 5px;
}

.newlabel {
    font-size: 15px;
    margin-top: 24px;
}

.listing {
    display: flex;
    gap: 5px;
    align-items: center;
    width: 100%;
    padding: 6px 7px;
    border-radius: 5px;
    align-items: baseline;
}

.conatct {
    font-size: 20px;
    padding-left: 7px;
    margin-bottom: 10px;
}

.get {
    font-size: 20px;
    margin-top: 15px;
}

@media only screen and (max-width: 600px) {
    .flex {
        display: block;
    }

    .left-item {
        width: 100%;
    }

    .right-item {
        width: 100%;
        margin: inherit;
    }

    .imag-section {
        width: 100%;
        height: 184px !important;
        background-image: url(./assets/banner/bedroom_banner.jpg);
        align-content: center;
        text-align: center;
        background-repeat: no-repeat;
        background-size: cover;
        object-fit: contain;
        object-position: 16px 15px;
        position: relative;
    }

    .ward {
        font-size: 60px !important;
        color: #fff;
        background: rgb(0 0 0 / 23%);
        padding: 78px 0px !important;
    }
}

.imag-section {
    width: 100%;
    height: 286px;
    background-image: url(./assets/banner/bedroom_banner.jpg);
    align-content: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
    /* object-position: 9px; */
    object-position: 16px 15px;
    position: relative;
}

.ward {
    font-size: 60px !important;
    color: #fff;
    background: rgb(0 0 0 / 34%);
    padding: 110px 0px;
}

  /* Basic styling for the banner carousel */
  .owl-carousel .item {
    position: relative;
    text-align: center;
    color: white;
  }

  .owl-carousel .item img {
    width: 100%;
    height: 80vh;
    display: block;
  }

  @media only screen and (max-width: 768px) {
    .owl-carousel .item img {
      width: 100%;
      height: auto;
      display: block;
    }

    .owl-prev {
      position: absolute !important;
      top: 78px !important;
      font-size: 26px !important;
      left: 8px !important;
    }

    .owl-next {
      position: absolute !important;
      top: 78px !important;
      font-size: 26px !important;
      right: 8px !important;
    }

    .sopcategory {
      margin-top: 40px !important;
      text-align: center !important;
      font-size: 25px !important;
      margin-bottom: 35px !important;
    }

    .section-header h2 {
      font-size: 25px !important;
      font-weight: 500;
    }

    .mainshop {
      box-shadow: 1px 1px 3px 1px !important;
      padding: 5px;
      border-radius: 5px;
      margin-bottom: 14px;
    }

    .single-new-arrival {
      margin-bottom: 50px;
      padding: 5px;
      box-shadow: 1px 1px 6px 1px;
      border-radius: 5px;
    }

    .single-feature,
    .single-blog {
      margin-bottom: 30px;
      padding: 5px;
      box-shadow: 1px 1px 6px 1px;
      border-radius: 5px;
    }

    .new-arrivals {
      padding: 10px 0 50px;
    }

    .feature {
      padding: 40px 0 0px;
    }

    .single-feature,
    .single-blog,
    .single-new-arrival {
      margin: 7px auto;
    }

    .msnub {
      width: 50%;
      padding-left: 6px;
      padding-right: 6px;
    }

    .single-new-arrival-bg {
      position: relative;
      min-height: 178px !important;
      background: #f8f9fc;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .moso {
      margin: 0;
      color: #4b4743;
      font-size: 13px !important;
      line-height: 1.4;
    }
  }

  /* Style for text or caption on the banner */
  .banner-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }


  .owl-prev {
    display: none !important;
  }

  .owl-next {
    display: none !important;
  }

  .owl-nav button:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  *,
  *:after,
  *:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    cursor: default;
  }

  html {
    width: 100%;
    height: auto;
  }

  .testim {
    width: 100%;
    transform: translateY(-50%);
    background: #f1f3f9;
    margin-top: 250px;
    padding: 20px 0px;
  }

  .testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
  }

  .testim .arrow {
    display: block;
    position: absolute;
    color: #a5a19c;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
  }

  .testim .arrow:before {
    cursor: pointer;
  }

  .testim .arrow.left {
    left: 10px;
  }

  .testim .arrow.right {
    right: 10px;
  }

  .testim .arrow:hover {
    color: #ea830e;
  }

  .testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
  }

  .testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    position: relative;
  }

  .testim .dots .dot.active,
  .testim .dots .dot:hover {
    background: #ea830e;
    border-color: #ea830e;
  }

  .testim .dots .dot.active {
    animation: testim-scale .5s ease-in-out forwards;
  }

  .testim .cont {
    position: relative;
    overflow: hidden;
  }

  .testim .cont>div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
  }

  .testim .cont>div.inactive {
    opacity: 1;
  }

  .testim .cont>div.active {

    position: relative;
    opacity: 1;

  }

  .testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
  }

  .testim .cont div h2 {
    color: #ea830e;
    font-size: 1em;
    margin: 15px 0;
  }

  .testim .cont div p {
    font-size: 17px;
    color: #898181;
    width: 80%;
    margin: auto;
  }

  .testim .cont div.active .img img {
    animation: testim-show .5s ease-in-out forwards;
  }

  .testim .cont div.active h2 {
    animation: testim-content-in .4s ease-in-out forwards;
  }

  .testim .cont div.active p {
    animation: testim-content-in .5s ease-in-out forwards;
  }

  .testim .cont div.inactive .img img {
    animation: testim-hide .5s ease-in-out forwards;
  }

  .testim .cont div.inactive h2 {
    animation: testim-content-out .4s ease-in-out forwards;
  }

  .testim .cont div.inactive p {
    animation: testim-content-out .5s ease-in-out forwards;
  }

  @keyframes testim-scale {
    0% {
      box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
      box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
      box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
      box-shadow: 0px 0px 0px 0px #ea830e;
    }
  }

  @keyframes testim-content-in {
    from {
      opacity: 0;
      transform: translateY(100%);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes testim-content-out {
    from {
      opacity: 1;
      transform: translateY(0);
    }

    to {
      opacity: 0;
      transform: translateY(-100%);
    }
  }

  @keyframes testim-show {
    from {
      opacity: 0;
      transform: scale(0);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes testim-hide {
    from {
      opacity: 1;
      transform: scale(1);
    }

    to {
      opacity: 0;
      transform: scale(0);
    }
  }

  /* coding with nick */

  /* Responsive */

  @media all and (max-width: 300px) {
    body {
      font-size: 14px;
    }
  }

  @media all and (max-width: 500px) {
    .testim .arrow {
      font-size: 1.5rem;
    }

    .testim .cont div p {
      line-height: 25px;
      font-size: 12px;
    }
  }

  .curder {
    cursor: pointer;
    display: block !important;
  }
