* {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background: #252525;
}

::-webkit-scrollbar-track {
    background: #e9e9e9;
}

body {
    margin: 0;
    padding-top: 61px;
}



a {
    text-decoration: none;
}

a.primary-link {
    border: 1px solid;
    display: flex;
    padding: 9px 41px;
    border-radius: 4px;
    background-color: #012b72;
    color: #ffffff;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    position: relative;
    list-style-type: none;
    padding: 5px 5px 5px 40px;
    margin: 3px 0;
}

li:before {
    content: "";
    position: absolute;
    left: 0;
    width: 40px;
    height: 36px;
    top: 0;
    background-image: url("./images/list.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: inherit;
}

img {
    max-width: 100%;
    max-height: 100%;
}

form label {
    display: flex;
    flex-direction: column;
    margin: .25rem 0;
    cursor: pointer;
}

form label span {
    background-color: #e3e3e3;
    color: black;
    padding: 8px 14px;
    border-radius: 3px;
    font-weight: 500;
    position: relative;
    transition-duration: .3s;
}

form label span:hover {
    background-color: #797979;
    color: white;
    transition-duration: .3s;
}

form label input:checked~span {
    background-color: rgb(27, 27, 27);
    color: white;
}

.form-control {
    padding: .475rem .75rem;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

input[type="radio"] {
    display: none;
}

input[type="date"]:before {
    content: "Event Date";
    position: absolute;
    right: 20px;
    color: #888888;
}

.containerboss {
    width: 90%;
    margin: 0 auto;
}

header {
    z-index: 10;
    height: 60px;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: white;
}

header a.logo img {
    height: 35px;
}


h1 {
    position: relative;
    margin-bottom: 20px;
}

h1:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 4px;
    background-color: #1AB64F;
    bottom: -12px;
    left: 0;
}

button.book-now-button {
    border: .5px solid #508eff;
    background-color: #508eff;
    color: white;
    padding: 2px 18px;
    min-width: 25%;
    border-radius: 3px;
}

section.main-slider {
    position: relative;
    background-image: url("./images/b-mumbai-1.jpg");
    color: white;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.grayscale {
    filter: grayscale(1);
}

/* ***************popup******************* */
.popup {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    align-items: center;
    justify-content: center;
}

.popup-content strong {
    color: #087b2f;
    text-align: center;
    font-size: 17px;
}

.popup form {
    max-height: 85%;
    display: flex;
}

.popup form .popup-content {
    overflow-x: hidden;
}

.popup.openn {
    display: flex !important;
}

.popup img.close-button {
    position: absolute;
    width: 30px;
    height: 30px;
    padding: 8px;
    right: -15px;
    top: -15px;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
}

span.popup-bg {
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(94, 94, 94, 1) 100%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    opacity: .7;
}

/* ***************popup******************* */


.creative-button-section {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    background-color: #1AB64F;
    width: max-content;
    border: 1px solid #1ab64f;
}

.creative-button {
    padding: 5px 32px;
    border: 0;
    border-radius: 4px;
    position: relative;
    background-color: transparent;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    color: white;
    font-weight: 500;
}

.creative-button:hover {
    color: #1AB64F;
    animation: buttonhover .5s linear;
}

.creative-button:before,
.creative-button:after {
    content: "";
    position: absolute;
    bottom: 0;
    background-color: white;
    z-index: -1;
    opacity: 0;
}

.creative-button:before {
    width: 100%;
    height: 3px;
}

.creative-button:after {
    width: 100%;
    height: 100%;
}

.creative-button:hover:before {
    animation: buttonbefore .5s linear;
    opacity: 1;
}

.creative-button:hover:after {
    animation: buttonafter .5s linear;
    opacity: 1;
}

@keyframes buttonbefore {
    0% {
        width: 0;
    }

    50% {
        width: 100%;
        ;
    }

    100% {
        width: 100%;
        ;
    }
}

@keyframes buttonafter {
    0% {
        height: 0;
    }

    50% {
        height: 0;

    }

    100% {
        height: 100%;

    }
}

@keyframes buttonhover {
    0% {
        color: white;
    }

    50% {
        color: white;

    }

    100% {
        color: #1AB64F;

    }
}


/* *******faq********** */
.faqs label {
    border: 1px solid #929292;
    cursor: pointer;
}

.faqs label .ques {
    background-color: #F5F5F5;
    padding-right: 40px !important;
    position: relative;
}

.faqs label .ques:after {
    content: "";
    position: absolute;
    right: 14px;
    height: 14px;
    width: 14px;
    background-image: url("images/right-arrow.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(90deg);
    transition-duration: .3s;
}

.faqs label .ans {
    display: none;
}

.faqs label input:checked~.ans {
    display: block;
}

.faqs label input:checked~.ques {
    background-color: #929292;
    color: white;
}

.faqs label input:checked~.ques:after {
    transform: rotate(270deg);
}

/* *******faq********** */
.rounded.p-3.d-flex.flex-wrap.align-items-sm-center {
    box-shadow: 0px 0px 16px 2px #7aa9ff45 inset;
}

.rounded.p-3.d-flex.flex-wrap.align-items-sm-center .col-9.pe-3 strong.mb-2 {
    color: #0e8336;
}

.rounded.p-3.d-flex.flex-wrap.align-items-center:after {
    content: "";
    position: absolute;
    width: 120px;
    height: 200%;
    background-color: #f5f5f5;
    transform: rotate(31deg);
    left: -50%;
    z-index: -1;
    animation: backsi 4s linear infinite;
    display: none;
}

.rounded.p-3.d-flex.flex-wrap.align-items-center:hover:after {
    display: block;
}

@keyframes backsi {
    0% {
        left: -50%;
    }

    100% {
        left: 150%;
    }
}

span.star-img {
    display: block;
    width: 15px;
    height: 15px;
    background-image: url("./images/icon-1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.popup form .popup-content button {
    padding: 4px 35px;
    border: 1px solid;
    border-radius: 2px;
    color: white;
}

.popup form .popup-content button.prev-btn {
    border-color: rgb(100, 100, 100);
    background-color: rgb(100, 100, 100);
}

.popup form .popup-content button.next-btn {
    border-color: rgb(51, 116, 255);
    background-color: rgb(51, 116, 255);
}

.popup form .popup-content button.submit-btn {
    border-color: #087b2f;
    background-color: #087b2f;
}

button.free-quotes {
    background-color: #1ab64f;
    color: white;
    padding: 4px 15px;
    border: 2px solid #1ab64f;
    border-radius: 3px;
}

button.free-quotes:hover {
    background-color: #ffffff;
    color: #1ab64f;
}