/*datepicker*/

input:focus {
    outline: none;
}

#ui-datepicker-div {
    display: none;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    margin-top: 0.25rem;
    border-radius: 0.5rem;
    padding: 0.5rem;
    z-index: 99999 !important;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.ui-datepicker-calendar thead th {
    padding: 0.25rem 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 400;
    color: #78909C;
}

.ui-datepicker-calendar tbody td {
    width: 2.5rem;
    text-align: center;
    padding: 0;
}

.ui-datepicker-calendar tbody td a {
    display: block;
    border-radius: 0.25rem;
    line-height: 2rem;
    transition: 0.3s all;
    color: #546E7A;
    font-size: 0.875rem;
    text-decoration: none;
}

.ui-datepicker-calendar tbody td a:hover {
    background-color: #E0F2F1;
}

.ui-datepicker-calendar tbody td a.ui-state-active {
    background-color: #af872f;
    color: white;
}

.ui-datepicker-header a.ui-corner-all {
    cursor: pointer;
    position: absolute;
    top: 0;
    width: 2rem;
    height: 2rem;
    margin: 0.5rem;
    border-radius: 0.25rem;
    transition: 0.3s all;
}

.ui-datepicker-header a.ui-corner-all:hover {
    background-color: #ECEFF1;
}

.ui-datepicker-header a.ui-datepicker-prev {
    left: 0;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
    background-repeat: no-repeat;
    background-size: 0.5rem;
    background-position: 50%;
    transform: rotate(180deg);
}

.ui-datepicker-header a.ui-datepicker-next {
    right: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==');
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: 50%;
}

.ui-datepicker-header a>span {
    display: none;
}

.ui-datepicker-title {
    text-align: center;
    line-height: 2rem;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    padding-bottom: 0.25rem;
}

.ui-datepicker-week-col {
    color: #78909C;
    font-weight: 400;
    font-size: 0.75rem;
}

.datepick {
    position: relative;
    width: 100%;
}

input[type="time"] {
    /* this style to complete the styling*/
    border: none;
    border-radius: 50px;
    font-size: 15px;
    color: #787875;
    padding-right: 15px;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    filter: brightness(0) invert(1);
    color: #fff;
    padding-left: 10px;
    cursor: pointer;
}

@keyframes one {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}


/*Animate overlay and move it 'above'*/

.hover .overlay {
    transform: translate3d(-100%, 0, 0);
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* Mouse enter event */

.hover.mouseenter.top .overlay {
    animation-name: slide--enter-top;
}

.hover.mouseenter.right .overlay {
    animation-name: slide--enter-right;
}

.hover.mouseenter.bottom .overlay {
    animation-name: slide--enter-bottom;
}

.hover.mouseenter.left .overlay {
    animation-name: slide--enter-left;
}


/* Mouse leave event */

.hover.mouseleave.top .overlay {
    animation-name: slide--leave-top;
}

.hover.mouseleave.right .overlay {
    animation-name: slide--leave-right;
}

.hover.mouseleave.bottom .overlay {
    animation-name: slide--leave-bottom;
}

.hover.mouseleave.left .overlay {
    animation-name: slide--leave-left;
}


/* Sliding animations ! */

@keyframes slide--enter-top {
    0% {
        transform: translate3d(0, -100%, 0);
    }
    100% {
        transform: none;
    }
}

@keyframes slide--enter-right {
    0% {
        transform: translate3d(100%, 0, 0);
    }
    100% {
        transform: none;
    }
}

@keyframes slide--enter-bottom {
    0% {
        transform: translate3d(0, 100%, 0);
    }
    100% {
        transform: none;
    }
}

@keyframes slide--enter-left {
    0% {
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        transform: none;
    }
}

@keyframes slide--leave-top {
    0% {
        transform: none;
    }
    100% {
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes slide--leave-right {
    0% {
        transform: none;
    }
    100% {
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes slide--leave-bottom {
    0% {
        transform: none;
    }
    100% {
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slide--leave-left {
    0% {
        transform: none;
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #FFB52E;
    text-align: center;
    border-radius: 50px;
    z-index: -9;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.home-slider .hero-slider .swiper-slide .slide-inner:before,
.form-outer .form-box:after,
.inner-banner:before {
    animation: move 2s infinite linear;
    transform: translate(8px);
    transition: all 400ms;
}

@-webkit-keyframes move {
    0% {
        transform: translate(0px);
    }
    50% {
        transform: translate(7px);
    }
    100% {
        transform: translate(0px);
    }
}

@-moz-keyframes move {
    0% {
        transform: translate(0px);
    }
    50% {
        transform: translate(7px);
    }
    100% {
        transform: translate(0px);
    }
}

@-o-keyframes move {
    0% {
        transform: translate(0px);
    }
    50% {
        transform: translate(7px);
    }
    100% {
        transform: translate(0px);
    }
}

@keyframes move {
    0% {
        transform: translate(0px);
    }
    50% {
        transform: translate(7px);
    }
    100% {
        transform: translate(0px);
    }
}

.ddl-select {
    visibility: hidden;
}

.ddl {
    position: relative;
    height: 70px;
    width: 100%;
    text-align: initial;
}

.ddl::after {
    content: '';
    position: absolute;
    top: 35px;
    right: 20px;
    width: 12px;
    height: 2px;
    background: #f5c541;
    z-index: 99;
    transform: rotate(-40deg);
    transition: 0.5s;
}

.ddl::before {
    content: '';
    position: absolute;
    top: 35px;
    right: 28px;
    width: 12px;
    height: 2px;
    background: #f5c541;
    z-index: 99;
    transform: rotate(40deg);
    transition: 0.5s;
}

.ddl.active::after {
    right: 28px;
}

.ddl.active::before {
    right: 20px;
}

.ddl-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 10px;
    padding: 10px 20px;
    outline: none;
    background: #fff;
    border: 1px solid #e9e9e9;
}

.ddl.active .ddl-options {
    visibility: visible;
    opacity: 1;
}

.ddl .ddl-options {
    position: absolute;
    width: 100%;
    top: 55px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: 0.25s;
    z-index: 999;
    border: 1px solid #e9e9e9;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.10);
}

.ddl .ddl-options>div {
    padding: 10px 20px;
    cursor: pointer;
}

.ddl .ddl-options>div:hover {
    background: #FFB52E;
    color: #fff;
}

:root {
    --td: 150ms;
    --te: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    margin: 0 auto;
    max-width: 45rem;
    padding: 1rem;
}

.nav-main {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    left: -100%;
    position: fixed;
    transition: left 0s calc(var(--td) * 2), transform 0s calc(var(--td) * 2);
    width: 100%;
    top: 0;
    z-index: 9;
}

.nav-main::before,
.nav-main::after {
    content: "";
    background-color: rgb(65, 113, 245);
    height: 50%;
    left: 0;
    position: absolute;
    transform: translateX(-110%);
    transform-origin: 0 50%;
    transition: transform calc(var(--td) * 2) var(--td) var(--te);
    width: 100%;
    z-index: -100;
}

.nav-main::before {
    top: 0;
}

.nav-main::after {
    bottom: 0;
}

.nav-main .menu__item {
    opacity: 0;
    transform: translateX(-1rem);
    transition: opacity var(--td) var(--te), transform var(--td) var(--te);
}

[id=main-navigation-toggle] {
    opacity: 0;
    position: fixed;
    top: -100%;
}

[id=main-navigation-toggle]~label {
    cursor: pointer;
    position: fixed;
    right: 50px;
    top: 40px;
    z-index: 100;
}

[id=main-navigation-toggle]~label span {
    display: block;
    height: 30px;
    padding: 0;
    position: relative;
    transition: transform calc(var(--td) * 3) var(--te);
    width: 2rem;
}

[id=main-navigation-toggle]~label span::before,
[id=main-navigation-toggle]~label span::after {
    background-color: #fff;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    transition: transform calc(var(--td) * 3) var(--te);
    top: 0px;
    width: calc(100% - 0rem);
}

[id=main-navigation-toggle]~label span::before {
    transform: rotate(0) translateY(-100%);
    top: -5px;
}

[id=main-navigation-toggle]~label span::after {
    transform: rotate(0) translateY(100%);
}

[id=main-navigation-toggle]:checked~label span {
    transform: rotate(1turn);
}

[id=main-navigation-toggle]:checked~label span::before {
    transform: rotate(45deg);
    top: 0 !important;
    background: #fff !important;
}

[id=main-navigation-toggle]:checked~label span::after {
    transform: rotate(-45deg);
    background: #fff !important;
}

[id=main-navigation-toggle]:checked~.nav-main {
    left: 0;
    transition: transform 0s;
    top: 0;
}

[id=main-navigation-toggle]:checked~.nav-main::before,
[id=main-navigation-toggle]:checked~.nav-main::after {
    transform: translateX(0);
    transition-delay: 0s;
}

[id=main-navigation-toggle]:checked~.nav-main::after {
    transition-delay: calc(var(--td) / 2);
}

[id=main-navigation-toggle]:checked~.nav-main .menu__item {
    opacity: 1;
    transform: translateX(0);
    transition: opacity calc(var(--td) * 2) var(--te), transform calc(var(--td) * 2) var(--te);
}

[id=main-navigation-toggle]:checked~.nav-main .menu__item:nth-child(1) {
    transition-delay: calc(var(--td) * 2 * (1 * 0.25));
    z-index: -1;
}

[id=main-navigation-toggle]:checked~.nav-main .menu__item:nth-child(2) {
    transition-delay: calc(var(--td) * 2 * (2 * 0.25));
    z-index: -2;
}

.menu {
    position: relative;
    text-align: center;
    z-index: 1;
}

.menu>.menu__item {
    font-size: 50px;
    font-weight: 600;
}

.submenu {
    left: 0;
    opacity: 0;
    position: absolute;
    transform: translateY(-10%);
    top: 100%;
    width: 100%;
    visibility: hidden;
    z-index: 2;
}

.submenu .menu__item {
    font-size: 3.5vmin;
    width: 100%;
}

.submenu .menu__link {
    color: #fff;
}

.submenu .menu__link::before,
.submenu .menu__link::after {
    display: none;
}

.menu__item {
    display: block;
    position: relative;
}

.menu__item:hover .menu__link::before,
.menu__item:hover .menu__link::after {
    animation: blink 1s var(--td) steps(1, end) forwards infinite;
    transform: translateX(calc(100% - 0.5rem));
    transition-duration: calc(var(--td) * 3);
}

.menu__item:hover .menu__link::after {
    transition-delay: calc(var(--td) / 2);
}

.menu__item:hover .submenu {
    opacity: 1;
    transform: translateY(0);
    transition: transform calc(var(--td) * 2) calc(var(--td) * 3) var(--te), opacity calc(var(--td) * 2) calc(var(--td) * 3) var(--te), visibility 0s calc(var(--td) * 3);
    visibility: visible;
}

.menu__link {
    color: #fff;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    padding: 20px;
    position: relative;
    text-decoration: none;
    transition: color var(--td) var(--te), opacity var(--td) var(--te), transform var(--td) var(--te);
    z-index: 1;
    font-family: "sunday_bloomregular";
    text-transform: capitalize;
}

.menu__link::before,
.menu__link::after {
    content: "";
    background-color: #FFB52E;
    height: 50%;
    left: 0;
    position: absolute;
    transform: translateX(-110%);
    transform-origin: 0 50%;
    transition: transform 0s var(--te);
    width: 100%;
    z-index: -1;
}

.menu__link::before {
    top: 0;
}

.menu__link::after {
    bottom: 0;
}

.menu:not(:focus-within):not(:hover) .menu__item .menu__link {
    opacity: 1;
    transform: translate(0, 0);
}

.menu__item {
    --pull: 30%;
}

.menu__item .menu__link {
    opacity: 0.25;
    transition-duration: calc(var(--td) * 3);
    transform: translate(0, calc(var(--pull) * -1));
}

.menu__item .submenu .menu__link {
    opacity: 1;
}

.menu__item:hover>.menu__link {
    color: #eee;
    opacity: 1;
    transform: translate(0, 0);
}

.menu__item:hover>.menu__link:hover {
    transition-delay: 0s;
}

.menu__item:hover~.menu__item>.menu__link {
    transition-duration: calc(var(--td) * 3);
    transform: translate(0, var(--pull));
}

.menu__link:hover {
    font-family: "sunday_bloomregular";
    color: #000;
}

header.follow .mobile-menu label span::before,
header.follow .mobile-menu label span::after {
    background-color: #000;
}

@keyframes blink {
    50%,
    100% {
        opacity: 0;
    }
}

.white-popup-block {
    text-align: left;
    max-width: 100%;
    margin: 0px auto;
    position: relative;
    transform: translateY(60px);
    transition: all 1s;
    opacity: 0;
}

.mfp-wrap.mfp-auto-cursor.mfp-with-zoom.mfp-ready .white-popup-block {
    transform: translateY(0);
    opacity: 1;
    transition: all 1s;
}

.form-outer.popup {
    margin: 0;
    position: relative;
    z-index: 9;
}

a.popup-modal-dismiss {
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
    padding: 10px 20px;
    border-radius: 0 10px 0 0;
    font-weight: 600;
    font-size: 20px;
    color: #4171f5;
}

.form-outer.popup .form-box {
    overflow: hidden;
}

.validation {
    display: none;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 70px;
    border-radius: 15px;
}

.file-upload-wrapper:after {
    content: attr(data-text);
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    background: #2e62f1;
    padding: 10px 30px;
    display: block;
    width: calc(100% - 40px);
    pointer-events: none;
    z-index: 20;
    height: 70px;
    line-height: 50px;
    color: #fff;
    border-radius: 15px;
    font-weight: 300;
}

.file-upload-wrapper:before {
    content: "Upload";
    position: absolute;
    top: 0;
    right: -1px;
    display: inline-block;
    height: 70px;
    background: #f5c541;
    color: #fff;
    font-weight: 700;
    z-index: 25;
    font-size: 10px;
    line-height: 70px;
    padding: 0 15px;
    text-transform: uppercase;
    pointer-events: none;
    border-radius: 0 15px 15px 0;
}

.file-upload-wrapper input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 70px;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
}

@media(max-width:1400px) {
    .form-outer.popup .form-box {
        padding: 30px;
    }
    .form-outer.popup .form-box .titile h3 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 0;
    }
    .form-outer.popup .form-box .titile span img {
        height: 20px;
    }
    .form-outer.popup .form-box form .top-sec {
        margin: 20px auto 0;
    }
    .form-outer.popup .form-box form .top-sec h6,
    .form-outer.popup .form-box form .bottom-sec h6 {
        margin-bottom: 5px;
        font-size: 15px;
    }
    .form-outer.popup .form-box form .top-sec .input-field,
    .form-outer.popup .form-box form .bottom-sec .input-field {
        margin: 0 0 10px;
    }
}

@media(max-width:575px) {
    [id=main-navigation-toggle]~label {
        right: 20px;
    }
    .menu>.menu__item {
        font-size: 30px;
    }
    .menu__link {
        padding: 15px;
    }
}

input.error, textarea.error {
    border-bottom: 2px solid #dc3232 !important;
}
label.error {
  display: none !important;
}

.info, p.info2 {
    border: none;
    margin: 0;
    color: #ffffff;
    background-color: #03cea4;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    font-size: 15px;
    margin-top: 25px;
    padding: 20px 30px !important;
    border-radius: 15px;
}
/* Seo Style - Arjun - 05-10-2023 */
.inner-banner .inner-text .left h2 {
    font-size: 70px;
    line-height: 80px;
    color: #fff;
    width: 100%;
}
.inner-banner .inner-text .left h2 {
    font-size: 70px;
    line-height: 80px;
    color: #fff;
    width: 100%;
}
.inner-banner .inner-text .left h2 span {
    position: relative;
    top: 10px;
    left: 20px;
}
.inner-banner .inner-text .left h2 span iframe {
    width: 70px;
    height: 70px;
}

@media (max-width: 1699px) {
    .inner-banner .inner-text .left h2 {
    font-size: 40px;
    line-height: 20px;
}
}

.registration-form #contact_msg font {
    background: #03cea4;
    padding: 15px;
    display: block;
    margin: 20px 0 0;
    color: #fff;
    text-align: center;
    border-radius: 50px;
}
.pr-content {
    text-align: center;
    width: 82%;
    margin: 80px auto 0;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    border-top: 1px solid #eee;
}
@media (max-width: 991px) {
    .pr-content {
    width: 100%;
    margin: 40px auto 0;
}
}

.watsup-fixed {
    bottom: 30px;
    right: 30px;
    position: fixed;
    z-index: 9999;
}
.watsup-fixed a {
    position: relative;
    z-index: 99;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    animation-name: pulsee;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    animation-play-state: paused;
}
.watsup-fixed a img {
    max-width: 40px;
}
.watsup-fixed a::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #fff;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
      padding: 25px;
      opacity: 0.75;
    }
  
    75% {
      padding: 50px;
      opacity: 0;
    }
  
    100% {
      opacity: 0;
    }
  }
  
  @keyframes pulsee {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
  
    80% {
      box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
  }

  .book-now-form {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    bottom: 0;
    height: 100vh;
    z-index: 999;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 400ms;
}
.book-now-form:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8196078431);
    height: 100vh;
    filter: blur(0px);
    backdrop-filter: blur(10px);
}
.book-now-form-outer {
    margin: 0 auto;
    background: #4171F5;
    border-radius: 30px;
    width: 50%;
    padding: 70px 100px;
    position: relative;
    z-index: 9;
    transform: translateY(60px);
    transition: all 400ms;
    opacity: 0;
}
.book-now-form-outer .titile {
    text-align: center;
    margin-bottom: 50px;
}
.book-now-form-outer .titile h3 {
    font-size: 36px;
    color: #fff;
    line-height: 47px;
    margin-bottom: 10px;
}
.book-now-form-outer .titile img{
    width: auto;
}
.book-now-form-outer form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2%;
}
.book-now-form-outer form .input-field{
    width: 49%;
    margin-bottom: 2%;
}
.book-now-form-outer form .input-field .icon {
    background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iQ2FsZW5kYXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2IiB2aWV3Qm94PSIwIDAgMTYgMTYiPg0KICA8cmVjdCBpZD0iUmVjdGFuZ2xlXzU1NyIgZGF0YS1uYW1lPSJSZWN0YW5nbGUgNTU3IiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiLz4NCiAgPHBhdGggaWQ9IlBhdGhfMTQ5IiBkYXRhLW5hbWU9IlBhdGggMTQ5IiBkPSJNMiw1djlIMTRWNVpNMTMsMmgyYS45NDUuOTQ1LDAsMCwxLDEsMVYxNWEuOTQ1Ljk0NSwwLDAsMS0xLDFIMWEuOTQ1Ljk0NSwwLDAsMS0xLTFWM0EuOTQ1Ljk0NSwwLDAsMSwxLDJIM1YxQS45NDUuOTQ1LDAsMCwxLDQsMCwuOTQ1Ljk0NSwwLDAsMSw1LDFWMmg2VjFhMSwxLDAsMCwxLDIsMFpNMTIsMTJIMTBWMTBoMlpNOSwxMkg3VjEwSDlabTMtM0gxMFY3aDJaTTksOUg3VjdIOVpNNiwxMkg0VjEwSDZaIiBmaWxsPSIjZmZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz4NCjwvc3ZnPg0K);
    position: absolute;
    background-repeat: no-repeat;
    right: 20px;
    top: 30px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}
.book-now-form-outer form .input-field input{
    width: 100%;
    background: #3869f1;
    border: none;
    height: 60px;
    color: #fff;
    border-radius: 50px;
    outline: none;
    padding-left: 25px;
}
.book-now-form-outer form .form-submit button {
    background: #2e62f1;
    border: none;
    color: #fff;
    font-family: "sunday_bloomregular";
    padding: 25px 60px;
    border-radius: 50px;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.book-now-form.show {
    opacity: 1;
    visibility: visible;
    transition: all 400ms;
}
.book-now-form.show .book-now-form-outer {
    transform: translateY(0px);
    transition: all 400ms;
    opacity: 1;
}
.book-now-form-outer form .input-field input.ddl-input{
    padding-right: 60px;
}
.book-now-form-outer form  .ddl::before, .ddl::after  {
    top: 30px;
}

@media(max-width:1400px){
    .book-now-form-outer {
        width: 80%;
    }
}
@media(max-width:991px){
    .book-now-form-outer {
        width: 90%;
    }
}
@media(max-width:767px){
    .book-now-form-outer {
       padding: 50px;
    }
    .book-now-form-outer form {
        flex-direction: column;
    }
    .book-now-form-outer form .input-field {
        width: 100%;
    }
    .book-now-form-outer form .form-submit button {
        padding: 20px 60px;
        width: 100%;
    }
}

#sucessmsg {
    text-align: center;
    margin: 30px 0 0;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    background: #FFB52E;
    padding: 15px;
    border-radius: 50px;
    letter-spacing: .5px;
    font-weight: 600;
}

.shop-page  .doggy-first, .shop-page .doggy-third{
    padding: 0 100px;
}
.toys-box {
    display: flex;
}
.faq.blog-faq h2 {
    font-size: 55px;
    line-height: 72px;
    margin-bottom: 0;
    text-align: center;
}
section.faq.blog-faq .faq-title {
    margin-bottom: 50px;
}
@media (max-width:1600px){
    .single-service.shop-page .doggy-first:after, .single-service.shop-page .doggy-third:after{
        right: 0;
        z-index: -9;
    }
    .shop-page .doggy-first .right{
        padding-left: 50px;
    }
    .shop-page .doggy-first .right p{
       width: 100%;
    }
    .shop-page .doggy-first{
       margin-bottom: 50px;
     }
     .shop-page .doggy-third .right{
        padding-right: 50px;
     }
     .shop-page .doggy-third .right p{
        width: 100% !important;
     }
     .single-service.shop-page .doggy-second .title p {
        width: 80%;
    }
    .single-service.shop-page .doggy-four {
        margin: 100px 0;
        padding: 100px 0;
    }
    section.faq.blog-faq {
        margin-bottom: 50px;
    }
}

@media (max-width:1024px){
    .shop-page  .doggy-first, .shop-page .doggy-third{
        padding: 0;
    }
}
@media (max-width: 991px) {
    .shop-page .doggy-first .right {
        padding-left: 0;
    }
    .shop-page .doggy-third .right {
        padding-right: 0px;
    }
    .single-service.shop-page .doggy-second .title p {
        width: 95%;
    }
    .toys-box {
        flex-direction: column;
    }
    .single-service.shop-page .doggy-four .images .doggy-smile {
        height: 500px;
        background-size: cover !important;
        background-position: center !important;
    }
    .faq.blog-faq h2 {
        font-size: 35px;
        line-height: 52px;
    }
    section.faq.blog-faq {
        padding: 50px 0;
    }
}


/* blog style */

.blog-section {
    padding-bottom: 150px;
    position: relative;
    z-index: 9;
}

.blog-section .blog-item {
    background-color: #ffffff;
    padding: 30px 30px;
    border-radius: 15px;
}

.blog-section .blog-item .img-block {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-section .blog-item .img-block img {
    transform: scale(1);
    transition: all 0.4s ease;
}

.blog-section .blog-item .blog-content .date {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.blog-section .blog-item .blog-content .title {
    font-size: 18px;
    font-family: "sunday_bloomregular";
    color: #000;
    line-height: 30px;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-section .blog-item .blog-content .title a {
    display: block;
    font-family: "sunday_bloomregular";
    color: currentColor;
}

.blog-section .blog-item .blog-content .button-wrapper {
    margin-top: 20px;
    display: none;
}

.blog-section .blog-item .blog-content .button-wrapper a {
    background: #4171F5;
    font-size: 15px;
    color: #ffffff;
    font-family: "sunday_bloomregular";
    padding: 12px 30px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 9;
}

.blog-section .blog-item:hover .img-block img {
    transform: scale(1.1);
}

.blog-section .blog-item:hover .blog-content .title a {
    color: #2e62f1;
}

.line {
    width: 100%;
    height: 1px;
    background-color: #C5BDF1;
    margin-top: 150px;
}

.space {
    width: 100%;
    height: 1px;
    background-color: #C5BDF1;
    margin: 50px auto;
}

.blog-banner {
    min-height: 250px;
}

.blog-single-page {
    padding: 150px 0;
}

.blog-single-page .blog-details-wrapper h1 {
    margin-bottom: 30px;
}


.blog-single-page .blog-details-wrapper .date {
    display: flex;
    align-items: center;
    color: #03cea4;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
}

.blog-single-page .blog-details-wrapper .date i {
    margin-right: 10px;
    display: flex;
}

.blog-single-page .blog-details-wrapper .date i  svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.blog-single-page .blog-details-wrapper .image-block {
    margin: 50px auto;
}

.blog-single-page .blog-details-wrapper .image-block img {
    border-radius: 15px;
}

.blog-single-page .blog-details-wrapper p {
    font-size: 15px;
    line-height: 30px;
    color: #696969;
}

.blog-single-page .blog-details-wrapper p a {
    color: #2e62f1;
    font-weight: 400;

}

.blog-single-page .blog-details-wrapper p:last-child {
    margin: 0;
}

.blog-single-page .blog-details-wrapper h2 {
    margin-bottom: 15px;
    color: #4171F5;
}

.blog-single-page .blog-details-wrapper h3 {
    margin: 30px 0 15px;
    font-size: 26px;
}

.blog-single-page .blog-details-wrapper h4 {
    margin: 20px 0 15px;
    font-size: 20px;
}
.blog-single-page .blog-details-wrapper h5 {
    color: #000;
    font-size: 17px;
    font-weight: 500;
}

.blog-single-page .blog-details-wrapper ul li {
    line-height: 30px;
    position: relative;
    padding: 5px 0 5px 20px;
    color: #696969;
}

.blog-single-page .blog-details-wrapper ul li:before {
    position: absolute;
    content: "";
    left: 0;
    top: 17px;
    width: 6px;
    height: 6px;
    background: #696969;
    border-radius: 50px;
}


.blog-section .recent-blog {
    margin-top: 100px;
    padding-top: 100px;
    border-top: 1px solid #C5BDF1;
}

.blog-section .recent-blog h3 {
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.blog-section .recent-blog .recent-blog-slider .owl-nav {
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.blog-section .recent-blog .recent-blog-slider .owl-nav .owl-prev, .blog-section .recent-blog .recent-blog-slider .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, .3);
    opacity: .75;
}

.blog-section .recent-blog .recent-blog-slider .owl-nav .owl-prev span, .blog-section .recent-blog .recent-blog-slider .owl-nav .owl-next span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(images/arrow-next-blue.svg) no-repeat;
    width: 12px;
    height: 12px;
    color: rgba(0, 0, 0, 0);
}

.blog-section .recent-blog .recent-blog-slider .owl-nav .owl-prev span {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.mb-50 {
    margin-bottom: 50px;
}

footer .footer-btm .social-icons .links h6 {
    font-size: 20px;
    line-height: 27px;
    color: #4171F5;
    font-family: "sunday_bloomregular";
    margin-bottom: 15px;
}

footer .footer-btm .social-icons {
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

footer .footer-btm .social-icons a {
    font-size: 15px;
    line-height: 45px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #282828;
    position: relative;
    text-transform: capitalize;
}

footer .footer-btm .social-icons a:hover {
    color: #F5C541;
}


/* responsive */

@media (max-width: 1280px) {
    .blog-section {
        padding-bottom: 100px;
    }

    .blog-single-page {
        padding: 100px 0;
    }

    .line {
        margin-top: 100px;
    }
}

@media (max-width: 991px) {
    .blog-section {
        padding-bottom: 50px;
    }

    .blog-single-page {
        padding: 50px 0;
    }

    .line {
        margin-top: 50px;
    }

    .blog-single-page .blog-details-wrapper p {
        text-align: justify;
    }

    .blog-section .recent-blog {
        margin-top: 50px;
        padding-top: 50px;
    }

    footer .footer-btm .social-icons {
        align-items: center;
    }

    footer .footer-btm .social-icons a {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .mb-50 {
        margin-bottom: 30px;
    }

    .blog-section .blog-item  {
        text-align: center;
    }
}


.breadcrumb-page-link {
    background: #fff;
    padding: 15px 0;
}

.breadcrumb-page-link ol.breadcrumb {
    margin: 0;
}

.error-page h1 {
    margin-bottom: 30px;
    text-transform: uppercase;
}

.error-page h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.error-page p {
    color: #fff;
    max-width: 50%;
}

.error-page p a {
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
}



.blog-single-page table {
	width: 100%;
	border-collapse: collapse;
	margin:50px auto;
	}

/* Zebra striping */
.blog-single-page tr:nth-of-type(odd) { 
	background: #eee; 
	}

    .blog-single-page th { 
	background: #3498db; 
	color: white; 
	font-weight: bold; 
	}

    .blog-single-page td, .blog-single-page th {
	padding: 10px;
	border: 1px solid #ccc;
	text-align: left;
	font-size: 16px;
	}

/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	.blog-single-page table { 
	  	width: 100%; 
	}

	/* Force table to not be like tables anymore */
	.blog-single-page table, .blog-single-page thead, .blog-single-page tbody, .blog-single-page th, .blog-single-page td, .blog-single-page tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	.blog-single-page thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	.blog-single-page tr { border: 1px solid #ccc; }
	
	.blog-single-page td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
	}

	.blog-single-page td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		/* Label the data */
		content: attr(data-column);

		color: #000;
		font-weight: bold;
	}

}
