@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
:root {
    --c1: linear-gradient(90deg, rgb(79 45 187) 0%, rgba(3, 3, 40, 1) 76%);
    --c2: linear-gradient(90deg, rgb(211 159 57) 0%, rgb(255 176 23) 76%);
    --c3: linear-gradient(180deg, #ddbe8a29 0%, #ddbe8acc 70%);
    --c4: #1b0d47;
    --c5: #ffb017;
    --f1: "DM Sans", sans-serif;
    --f2: "Playfair Display", serif;
}

html {
    scroll-behavior: smooth;
}

.img__contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.img__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner {
    height: 100%;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 00 0;
    position: relative;
    overflow-x: clip;
}

.banner__img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    inset: 0;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none;
    font-family: var(--f1);
}

a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    transition: all 300ms ease-in-out;
}

a:hover {
    color: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

ul,
ol,
dl {
    margin-bottom: 0;
    padding: 0;
}

img {
    width: 100%;
}


/* header  */

.main_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

ul {
    padding: 0 !important;
    margin: 0 !important;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header_right li span {
    display: block;
    font-size: 13px;
    color: var(--c4);
}

.header_right li a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    color: #000;
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.6s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:ease-in-out;
    -webkit-animation-direction: alternate;
}

@-webkit-keyframes blinker {
  from {opacity: 1;color: #1b0d47}
  to {opacity: 1;color: #ffb017}
}
  
.header_right li a i {
    font-size: 21px;
    color: var(--c4);
}

.themebtn {
    padding: 15px 34px;
    background: var(--c4);
    border: 1px solid #fff;
    border-radius: 50px;
    position: relative;
    color: #fff !important;
    transition: 500ms all;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    overflow: hidden;
}



@keyframes ping {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: .5;
    }

    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}



.header {
    position: absolute;
    height: 158px;
    width: 100%;
}

.themebtn:before {
    position: absolute;
    content: "";
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: ping 3s ease-in-out infinite;
}

.logo {
    width: 227px;
    height: 123px;
}

.nav_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin: 0 auto !important;
    background: var(--c4);
    /* padding: 16px !important; */
    border-radius: 50px;
    border-bottom: 2px solid var(--c4);
    position: relative;
}

.nav_menu li a {
    color: #fff;
    font-family: var(--f1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 19px 0;
}

.nav_menuMain {
    position: absolute;
    z-index: 999;
    width: 100%;
    bottom: -53px;
}

.header_main {
    position: absolute;
    z-index: 999;
    width: 100%;
    padding: 7px 0 49px;
    border-bottom: 3px solid var(--c4);
}

.nav_menu:before {
    position: absolute;
    /* content: ""; */
    width: 260%;
    height: 1px;
    background: aliceblue;
    transform: translatey(-50%);
    top: 50%;
    left: 100%;
}

.nav_menu:after {
    position: absolute;
    /* content: ""; */
    width: 260%;
    height: 1px;
    background: aliceblue;
    transform: translatey(-50%);
    top: 50%;
    right: 100%;
}


/* banner */

.sub_head {
    font-size: 25px;
    font-family: var(--f2);
    font-style: italic;
    color: #000;
    text-transform: capitalize;
}

.banner__con .heading {
    font-size: 45px;
    font-family: var(--f1);
    color: #ffb017;
    line-height: 55px;
    text-transform: capitalize;
}

.banner__con .heading span {
    font-family: var(--f1);
    color: var(--c4);
    text-transform: capitalize;
}

.banner__con p {
    font-size: 18px;
    width: 95%;
    color: #000;
    margin: 20px 0;
    line-height: 29px;
}

.themebtn--alt {
    background: var(--c5);
}

.input_feild :is(input, textarea) {
    width: 100%;
    padding: 17px;
    font-size: 14px;
    background: #fff;
    border: none;
    outline: none !important;
    border-radius: 5px;
    margin: 5px 0;
    border: 1px solid #44444430;
    resize: none;
}

.banner_formHead {
    font-size: 29px;
    font-family: var(--f1);
    color: var(--c5);
    text-align: center;
    width: 300px;
    margin: 0px auto 20px;
}

.banner_formBox {
    padding: 30px 30px;
    width: 75%;
    margin: 20px auto -200px;
    background: var(--c4);
    border-radius: 30px;
    border-top: 5px solid var(
    --c4);
    position: relative;
    box-shadow: 0 0 15px 1px #0004;
    animation: movement 3s linear infinite;
}

.input_feild button {
    margin: 9px 0 0;
    background: #fff !important;
    color: var(--c4) !important;
    font-weight: 600 !important;
}

.banner_formBox:before {
    position: absolute;
    width: 630px;
    height: 570px;
    content: '';
    background: var(--c2);
    /* border-radius: 100%; */
    z-index: -1;
    top: 44%;
    transform: translatey(-50%);
    right: -110px;
    /* animation: newSpin 3s linear infinite; */
    /*background: url(../images/wrap-1-img.webp);*/
    background: transparent;
}

.banner_formBox:after {
    position: absolute;
    width: 100px;
    height: 100px;
    content: '';
    background: transparent;
    right: -100px;
    top: 50px;
    border-radius: 100%;
    /* animation: spin 3s linear infinite; */
}

@keyframes newSpin {
    0% {
        transform: translatey(-50%) rotate(0);
    }
    100% {
        transform: translatey(-50%) rotate(360deg);
    }
}

.banner_btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

@keyframes movement {
    0% {
        margin-top: 0;
    }
    25% {
        margin-top: -10px;
    }
    50% {
        margin-top: 0px;
    }
    75% {
        margin-top: -10px;
    }
    100% {
        margin-top: 0px;
    }
}


/* about */

.about_imgMain {
    position: relative;
}

.dots_img {
    position: absolute;
    z-index: -1;
}

.about_img {
    width: 470px;
    aspect-ratio: 1/1;
}

.about_img img {
    border-radius: 100px 20px 20px 20px;
    border: 8px solid #fff;
}

.dots_img {
    width: 82%;
    height: 100px;
    right: 0;
    top: 30px;
}

.about_imgMain:before {
    position: absolute;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgb(193 127 0) 0%, rgb(255 176 23) 76%);
    content: '';
    z-index: -01;
    border-radius: 200px;
    transform: translate(-10%, -17%) rotate(33deg);
    top: 50%;
}

.about {
    padding: 70px 0 120px;
    position: relative;
    overflow: hidden;
}

.about_hand {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translatey(50%);
    width: 9%;
    height: 28%;
}

.heading {
    font-size: 50px;
    font-family: var(--f1);
    text-transform: capitalize;
    font-weight: 700;
    color: var(--c4);
}

.para {
    margin: 20px 0;
    font-size: 17px;
    font-family: var(--f1);
    line-height: 30px;
}

.about_listsMain {
    display: flex;
    align-items: center;
    gap: 70px;
}

.aboutList li {
    font-size: 17px;
    margin: 0 0 8px 0;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
}

.aboutList li:before {
    position: absolute;
    width: 18px;
    height: 85%;
    content: '';
    background: url(../images/check.webp);
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
}


/* services */

.heading--white {
    color: #fff;
}

.services {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 0 0;
    margin: -14vh 0 70px;
    z-index: 1;
    overflow: hidden;
}

.service_banner {
    position: absolute;
    width: 100%;
    height: 83vh;
    z-index: -1;
    inset: 0;
}

.service_img {
    width: 50px;
    height: 50px;
}

.service_boxMain {
    padding: 70px 0;
    background: #fff;
    border-radius: 30px;
    margin: 20px 0;
    box-shadow: 0 2px 4px 1px #4444;
    position: relative;
}

.serv_head {
    margin: 10px 0 0;
    font-family: var(--f1);
    font-size: 19px;
    font-weight: 600;
}

.serv_con p {
    margin: 7px 0;
    height: 110px;
    overflow-y: auto;
    overflow-x: hidden;
}

.service_box {
    padding: 20px;
    position: relative;
}

.line {
    width: 1px;
    position: absolute;
    height: 75%;
    background: #4444;
    right: 0;
}

.line:before {
    position: absolute;
    width: 4px;
    height: 20%;
    content: '';
    background: #224175;
    left: 50%;
    transform: translatex(-50%);
    animation: move1 7s linear infinite;
}

.line--alt {
    width: 75%;
    height: 1px;
    bottom: 0;
    left: 0;
}

.line--alt:before {
    height: 4px;
    width: 19%;
    left: 0;
    transform: translate(0, -50%);
    top: 50%;
    animation: move2 7s linear infinite;
}

@keyframes move1 {
    0% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 400%);
    }
    100% {
        transform: translate(-50%, 0);
    }
}

@keyframes move2 {
    0% {
        transform: translate(0, -50%);
    }
    50% {
        transform: translate(400%, -50%);
    }
    100% {
        transform: translate(0, -50%);
    }
}

.service_boxMain:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background: url(../images/before.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    top: -10px;
    left: -55px;
    z-index: -1;
}

.service_boxMain:after {
    position: absolute;
    width: 100%;
    height: 90%;
    content: '';
    background: url(../images/after.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    top: 20px;
    right: -103px;
}

.service__btns .themebtn:nth-child(2) {
    border-color: #000;
    color: #000;
}

.service__btns {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 30px 0 0;
}

.service__btns a {
    width: 20%;
    text-align: center;
}


/* portfolio */

.port__con {
    text-align: center;
}

.port_top {
    padding: 40px 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.port_top:before {
    position: absolute;
    width: 200px;
    aspect-ratio: 1/1;
    content: '';
    border: 2px solid #000;
    border-radius: 100%;
    left: -100px;
    top: 50%;
    transform: translatey(-50%);
}

.port__con .para {
    width: 70%;
    margin: 10px auto;
}

.port_img {
    width: 100%;
    height: 31vh;
    box-shadow: -3px 4px 15px 1px #444;
}

.port_item {
    text-align: center;
    margin: 0 10px;
}

.port_main {
    position: relative;
    padding-bottom: 30px;
}

.port_main:before {
    position: absolute;
    width: 50%;
    height: 140px;
    background: var(--c5);
    content:
    '';
    bottom: 0;
    border-radius: 0px 15px 15px 0px;
}

.port_slider .slick-list.draggable {
    padding: 10px 0;
}

.portfolio {
    padding: 10px 0 140px;
    background: #ddbe8a70;
    margin-bottom: -5vh;
    background: url(../images/index-wrap-2-bg.webp);
}


/* footer */

.footer {
    background: var(--c5);
    padding: 40px 0 0px;
}

.footer_mian h5 {
    font-size: 24px;
    color: #fff;
    margin: 20px 0;
}

.footer_logo {
    width: 30%;
    height: 150px;
}

.footer_menu li a {
    font-family: var(--f1);
    color: #fff;
    font-size: 14px;
}

.footer_menu li {
    position: relative;
    margin: 5px 0;
    padding-left: 15px;
}

.footer_menu li:before {
    position: absolute;
    width: 10px;
    height: 10px;
    content: '';
    background: transparent;
    border: 1px solid #fff;
    border-radius: 100%;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
}

.pay_img {
    width: 100%;
    height: 60px;
    margin: 20px 0 10px;
}

.copy_right {
    background: var(--c4);
    padding: 20px 0;
    margin-top: 30px;
}

.footer_cont li a {
    color: #fff;
    font-family: var(--f1);
    margin: 0;
    font-size: 14px;
}

.copy_con p {
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-family: var(--f1);
}

.privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
    padding: 70px 0;
}

.privacy li a {
    color: #fff;
    font-size: 14px;
    font-family: var(--f1);
}


/* testimonial */

.test_head {
    text-align: center;
    margin: 0 0 50px;
}

.test_top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0px 0 20px;
}

.test_img {
    width: 70px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    overflow: hidden;
}

.tets_topCon p {
    margin: 0;
    font-size: 19px;
    font-family: var(--f2);
    font-weight: 600;
}

.tets_topCon p span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    font-family: var(--f2);
}

.test_main {
    background: var(--c4);
    padding: 30px;
    height: 280px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.collen_img {
    width: 40px;
    aspect-ratio: 1/1;
    margin: 0 0 30px;
}

.test_main p {
    font-size: 14px;
    color: #fff;
    font-family: var(--f1);
    height: 170px;
    overflow-y: auto;
    overflow-x: hidden;
}

.test_item {
    margin: 0 10px;
}

.test_top--alt {
    margin: 20px 0 0;
}

.testimonial {
    padding: 70px 0;
}


/* menuscript */

.menuscript {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 53vh;
    position: relative;
    margin: 38px 0 0;
}

.menu_banner {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.menuscript_cont {
    text-align: center;
    color: #fff;
}

.menu__btns {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.menuscript_cont p {
    margin: 10px auto 20px;
    width: 80%;
}

.menu__btns a {
    width: 25%;
    text-align: center;
}

.menu_banner:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    inset: 0;
    background: rgb(3 3 40 / 76%);
}


/* setisfy */

.book_img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 280px;
}

.stisfy_section {
    position: relative;
    padding: 30px 0 20px;
}

.setisfy_img {
    width: 60px;
    aspect-ratio: 1/1;
}

.setisfy_num {
    position: absolute;
    right: 30px;
    top: 16px;
    font-family: var(--f2);
    font-size: 60px;
    font-weight: 800;
    color: #f7f4ef;
    text-shadow: -1px 2px #a80f0f;
}

.setisfy_box {
    position: relative;
    background: #F7F4EF;
    padding: 30px;
    overflow: hidden;
    border-radius: 10px;
    margin: 10px;
}

.setisfy_box:before {
    position: absolute;
    width: 90px;
    height: 90px;
    background: linear-gradient(90deg, rgb(113 142 224 / 70%) 0%, rgb(3 3 40 / 80%) 76%);
    content: '';
    border-radius: 100%;
    right: -30px;
    top: -39px;
}

.setisfy_box h5 {
    font-family: var(--f2);
    margin: 10px 0 0;
}

.setisfy_box p {
    font-size: 14px;
    margin: 5px 0 0;
}

.satisfy__boxes {
    display: flex;
    flex-wrap: wrap;
}

.setisfy_box:nth-child(1) {
    width: 227px;
}

.setisfy_box:nth-child(2) {
    width: 290px;
    height: 200px;
}

.setisfy_box:nth-child(3) {
    width: 293px;
}

.setisfy_box:nth-child(4) {
    width: 260px;
    margin-top: -40px;
}

.setisfy_box:nth-child(5) {
    width: 74%;
}

.satisfy_img {
    width: 60%;
    height: 550px;
    margin: auto;
}

.satisfy_img img {
    border-radius: 120px !important;
    object-position: 68% 99%;
}

.getintouch_main {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 77vh;
    position: relative;
    padding-left: 60px;
    margin: vh 0 70px;
}

.get_banner {
    position: absolute;
    width: 100%;
    height: 67vh;
    z-index: -1;
    top: 50%;
    transform: translatey(-50%);
    left: 0;
}

.getInBtns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.getin_head {
    font-size: 32px;
    line-height: 47px;
    color: #fff;
    font-family: var(--f1);
    margin: 30px 0;
    width: 59%;
    text-transform: capitalize;
}

.getin_head span {
    font-family: var(--f2);
    font-weight: 800;
}

.themebtn:hover:before {
    transform: scale(1.6);
}

.themebtn--alt:hover {
    background: var(--c4) !important;
    color: #fff !important;
}

.themebtn:hover {
    background: var(--c5);
    color: #fff;
}

.service__btns .themebtn--alt:hover {
    background: transparent;
    color: #ffffff !important;
    border-color: #ffffff;
}

.service__btns .themebtn:nth-child(2):hover {
    background: var(--c5);
    color: #fff;
    border-color: #fff;
}

.nav_menu li a:before {
    position: absolute;
}

.banner_formBox button:hover {
    border-color: #000;
    color: #000 !important;
}

.nav_menu>li>a:before {
    position: absolute;
    height: 1px;
    bottom: 0;
    background: #fff;
    content: '';
    transition: 500ms all;
    width: 0;
}

.nav_menu li a:hover:before {
    width: 100%;
}

.footer_menu li a:hover {
    transform: translateX(5px);
}

.about_imgMain--alt {
    transform: rotatey(180deg);
}

.banner--alt {
    padding: 100px 0 70px;
}

.banner__list li {
    color: #000;
    padding-left: 24px;
}

.banner__list {
    margin: 0 0 20px !important;
}

.sub_heading {
    font-size: 17px;
    text-transform: uppercase;
    font-family: var(--f1);
    font-weight: 600;
    background: var(--c1);
    color: transparent;
    -webkit-background-clip: text;
}

.get_book {
    position: absolute;
    right: 0;
    height: 86vh;
    top: 50%;
    transform: translate(-15%, -50%);
    width: 35%;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 0 15px 1px #0000008f; */
}


/* width */

.serv_con p::-webkit-scrollbar {
    width: 2px;
}


/* Track */

.serv_con p::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(223, 222, 222);
    border-radius: 10px;
}


/* Handle */

.serv_con p::-webkit-scrollbar-thumb {
    background: #bcc1ff;
    border-radius: 10px;
}


/* Handle on hover */

.serv_con p::-webkit-scrollbar-thumb:hover {
    background: #bcc1ff;
}

.test_main p::-webkit-scrollbar {
    width: 2px;
}


/* Track */

.test_main p::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(223, 222, 222);
    border-radius: 10px;
}


/* Handle */

.test_main p::-webkit-scrollbar-thumb {
    background: var(--c1);
    border-radius: 10px;
}


/* Handle on hover */

.test_main p::-webkit-scrollbar-thumb:hover {
    background: var(--c1);
}


/* faqs */

.aside_faqs .heading {
    margin: 0 0 30px;
}

.accordion-item {
    border: none !important;
    border-radius: 10px !important;
    overflow: hidden;
    margin: 20px 0 0;
}

.accordion-button:not(.collapsed) {
    background: var(--c4) !important;
    color: #ffffff !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button {
    color: #ffffff !important;
    font-family: var(--f1);
    font-weight: 600;
    font-size: 16px;
    padding: 20px !important;
    line-height: 23px;
    background: var(--c4) !important;
}

.accordion-body p {
    font-family: var(--f1);
    font-size: 17px;
    margin: 0;
}

.accordion-body {
    padding: 20px 40px 20px 0px;
}

.aside {
    padding: 100px 0 30px;
}

.faqs {
    padding: 70px 0;
    background: #ddbe8a70;
    background: url(../images/index-wrap-2-bg.webp);
    background-size: cover;
}

.banner__img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner__img:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    /* background: #000000b5; */
}

.copy_con p:nth-child(1) {
    width: 260px;
    margin: 0 auto;
}

.about--alt {
    margin: 70px 0;
    padding: 70px 0 100px;
    background: url(../images/index-wrap-2-bg.webp);
    position: relative;
    /*z-index: -1;*/
    overflow: hidden;
    background-size: cover;
}

.banner--inner {
    min-height: 70vh;
}

.about--inner {
    padding: 110px 0 70px;
}

.about--Maininner {
    padding: 70px 0 120px;
}

.heading--alt {
    font-size: 80px !important;
}

.banner--Maininner {
    min-height: 54vh;
}


/* contact */

.contact_hme {
    background: var(--white);
    background-size: cover;
    background-repeat: no-repeat;
}

.con_detail_hme ul li {
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    line-height: 25px;
    padding: 0 50px 20px 0;
}

.con_detail_hme ul li a {
    color: var(--heaing_color);
    font-weight: 900;
}

.con_detail_hme ul li span {
    font-weight: 400;
    padding-right: 10px;
    display: block;
    margin: 0 auto;
    color: var(--primary_color);
}

.contact_form_Tab input:not([type="checkbox"]),
.contact_form_Tab select {
    height: 55px !important;
    margin-bottom: 20px;
    border-radius: 0;
    width: 100%;
    font-size: 15px;
    border: 1px solid #ccc;
        padding: 0 20px;
}

.contact_form_Tab select {
    height: 55px !important;
}

.contact_form_Tab textarea {
        height: 112px;
    border-radius: 0;
    resize: none;
    font-size: 15px;
    padding: 15px;
    margin-bottom: 20px;
}

.map_sec iframe {
    width: 100%;
    border: 0;
    height: 420px;
}

.con_detail_hme ul li span img {
    display: block;
}

.btn_form input {
    background: var(--secondary_color);
    color: var(--white);
    padding: 15px 40px;
    display: inline-block;
    border-radius: 5px;
    font-size: 17px;
    transition: 0.5s ease-in-out;
    font-weight: 600;
    width: auto;
    cursor: pointer;
    border: 0;
}

.intl-tel-input {
    width: 100%;
    margin-bottom: 10px;
}

.intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {
    width: 68px;
    height: 53px;
}

#contactForm :is(input,
textarea) {
    padding: 10px;
}

.padding__70 {
    padding: 70px 0;
}

.per-check {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 0 0 20px 0;
}

.per-check label {
    font-size: 14px;
    font-family: var(--f1);
}

.per-check label a {
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

.btn_form input:hover {
    background: var(--c5);
    color: #fff;
    border-color: transparent;
}

.con_detail_hme ul li span img {
    width: 50px;
    aspect-ratio: 1/1;
    margin: 0 0 10px;
}

.policy_content h4 {
    font-size: 30px;
    font-family: var(--f2);
    font-weight: 600;
}

.policy_content p {
    font-size: 16px;
    margin: 10px 0;
    font-family: var(--f1);
    line-height: 25px;
}

.policy_content ul {
    padding-left: 20px !important;
}

.policy_content ul li {
    font-family: var(--f1);
    font-size: 16px;
    list-style: disc;
    margin: 0;
}

.policy_content h5 {
    font-size: 23px;
    margin: 15px 0;
    font-weight: 700;
    text-transform: capitalize;
}


/* dropdown css start */

ul.dropdown_menu {
    background: var(--c4);
    position: absolute;
    z-index: 99999;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transition: 500ms all;
    min-width: 10rem;
}

ul.dropdown_menu li a {
    border-bottom: 1px solid #fff !important;
    font-family: var(--f1);
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 300;
    padding: 10px 13px;
    color: #ffff !important;
    display: flex;
    align-items: center;
    gap: 7px;
}

.dropdown-submenu>.dropdown_menu,
li.dropdown-submenu ul.dropdown_menu ul.dropdown_menu {
    top: 0;
    left: 100%;
    margin-top: 0;
}

.dropdown_menu {
    padding: 0;
    margin: 0;
}

.dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
}

.dropdown_menu {
    position: static;
    float: none;
}

li:hover>ul.dropdown_menu {
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 9%);
    min-width: 12rem;
    visibility: visible;
    opacity: 1;
}


/* dropdown css end */

.nav_menu>li {
    position: relative;
}

.dropdown-item span {
    height: 15px;
    transition: 500ms all;
}

ul.dropdown_menu>li:nth-last-child(1) a {
    border-bottom: none !important;
}

ul.dropdown_menu li a:hover span {
    transform: rotate(-90deg);
}

.nav_menu li a i {
    font-size: 8px;
}

.about--altnew {
    margin: 0 !important;
    z-index: -2;
}

.banner--inner-in .banner__img::before {
    display: none;
}

.about_img.alt_img img {
    transform: scaleX(-1);
}

.about_img.alt_img {
    width: 96%;
    height: 389px;
}

.about_img.alt_img_brand {
    height: 420px;
}

.about_img.new_koko img {
    object-fit: cover;
}

.about_img.about_3 img {
    height: 83%;
}

.book_newsection {
    background: #fff;
    position: relative;
    z-index: 99;
}

.about_con ul li {
    font-size: 16px;
    color: #000;
    font-family: var(--f1);
    font-weight: 400;
    margin-bottom: 9px;
    line-height: 23px;
    list-style-type: disc;
}

.about_con ul {
    padding-left: 20px !important;
}

.alt_section {
    padding-top: 20px;
}

.about_img.about_img--alt .img__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 56%;
}


/* responsive */

.responsive_header {
    display: none;
}

.responsive_menu {
    position: fixed;
    background: var(--c4);
    z-index: 99;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
}

.res_menu li a {
width: 100%;
    font-size: 16px;
    padding: 12px 20px;
    color: #fff;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    padding-right: 25px;
    border-bottom: 1px solid #4444;
}

.cross_btn {
    position: absolute;
    top: 10px;
    background: var(--c1);
    color: #fff;
    width: 30px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 10px;
}

.responsive_menu {
    transform: translatex(-100%);
    transition: 500ms all;
}

.responsive_menu.show {
    transform: translatex(0);
}

.res_menu li a i {
    font-size: 7px;
}

ul.serv_menu {
    background: #fff;
    height: 0;
    overflow: auto;
    transition: height 500ms;
}

ul.serv_menu.show {
    height: 170px;
}

.con_detail_hme ul {
    width: 100%;
    margin: 0 auto;
}

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

.res_menu {
    padding: 40px 0 0 !important;
}

.res_subMenu {
    background: #fff;
    transition: 500ms all;
    height: 0;
    overflow: hidden;
}

.drop_btn {
    width: 70%;
    text-align: end;
    font-size: 11px;
    padding-right: 20px;
}

.res_subMenu.active {
    height: 173px;
}

.serv_mainList {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #4444;
}

.serv_mainList a {
    border: none !important;
}
.slick-dots {
    display: none !important;
}
.about--altnew .about_img img {
    object-position: 59% 97%;
}
.get_started .banner_formBox {
    width: 380px;
}

.get_started {
    position: fixed;
    z-index: 99999;
    width:100%;
    height:100%;
    display: none;
}
.main_getStarted{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-80%, -75%);
    width: fit-content;
}
.overLay {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: #000000c9;
    backdrop-filter: blur(4px);
    display: none;
}
.getcross_btn {
    position: absolute;
        top: 21%;
    right: 32%;

    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 99;
    background: var(--c5);
    border-radius: 50px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.overLay.active {
    display: block;
}

.get_started.active {
    display: block;
}
.trust {
    position: fixed;
    bottom: 0;
    left: 40px;
    background: #fff;
    padding: 14px 33px 14px 14px;
    border-radius: 10px 10px 0 0;
    z-index: 999;
    box-shadow: 0 0 15px 1px #4444;
}

.trust span {
    position: absolute;
    font-size: 12px;
    top: 37px;
    right: 19px;
    color: #444;
}

.trust img {
    width: 96px;
}
.about_list {
    margin: 20px 0  !important;
}

.about_list li {
    font-size: 14px !important;
    color: #212529 !important;
}

.banner__con {
    padding-top: 60px;
}

.input_feild button:hover {
    background: var(--c5) !important;
    color: #fff !important;
}

.menuscript_cont h3.heading {
    color: #fff;
}

a.footer_logo img {
    filter: brightness(0) invert(1);
}


.privacy_policy .about__content__sec h3 {
    font-size: 33px;
    color: var(--c5);
}

.privacy_policy .about__content__sec p {
    font-size: 18px;
    line-height: 31px;
}

.privacy_policy .about__content__sec a {
    color: var(--c2);
    font-weight: bold;
    font-style: italic;
    text-decoration: underline !important;
}

.privacy_policy .about__content__sec ul li {
    font-size: 19px;
    line-height: 35px;
    list-style-type: disc;
}

.privacy_policy .about__content__sec ul {
    padding: 0 0px 10px 30px !important;
}

section.banner.banner--inner-in.banner--alt .row {
    display: flex;
    align-items: center;
    justify-content: center;
}


.header_right li:nth-child(1) a {
    text-decoration: unset;
    -webkit-animation-name: unset;
}

section.contact_hme.padding__70 {
    padding: 0 0 70px 0px;
}


.packages_box_sec{
    padding: 0;
    transition: 0.5s ease-in-out;
    border-radius: 5px;
    margin-bottom: 50px;
    background: #ffffff;
    box-shadow: 0px 0px 40px rgb(0 0 0 / 42%);
    position: relative;
}

.pkg_list {
    padding: 0 25px;
}

.packges__head {
    padding: 24px 20px;
}

.detail__link {
    text-align: center;
    padding: 0px 0 20px;
}

.detail__link a {
    color: var(--black);
    font-size: 18px;
    font-weight: bold;
}

.packges__head h6 {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    color: #000;
}

.packges__head {
    padding: 24px 20px 0px;
}

.org_pri h5 {
    font-size: 35px;
    color: #ff9900      ;
    font-weight: bold;
    position: relative;
    padding: 0 5px 0 16px;
    display: inline-block;
}

.org_pri h5 small {
    font-size: 26px;
    position: absolute;
    top: 0;
    left: 0;
}

.org_pri span {
    color: #9193b9;
    font-size: 12px;
    font-weight: 300;
    display: inline-block;
}

.org_pri span small {
    display: block;
    font-size: 19px;
    opacity: 0.8;
    text-decoration: line-through;
    color: #000;
}

.packages__price {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgb(45 162 205 / 16%);
    margin-bottom: 20px;
    padding: 0 25px;
}

.cut_price small {
    color: #fff;
    font-size: 11px;
    display: block;
    text-align: right;
}

.cut_price {}

.cut_price span.perc {
    font-size: 23px;
    color: var(--primary_color);
    font-weight: 500;
}
span.perc small {
    color: #000;
    font-size: 15px;
}

.packages_para p {
    text-align: center;
    font-size: 15px;
    font-weight: 300;
}

.packages_para {
    padding-top: 10px;
}

ul.pkg-list li {
    font-size: 15px;
    color: var(--black);
    font-weight: 400;
    padding-bottom: 10px;
    position: relative;
    padding-left: 23px;
}

ul.pkg-list li:before {
    content: "\ea41";
    width: 20px;
    height: 14px;
    position: absolute;
    left: -4px;
    top: -7px;
    'boxicons' !important: 'FontAwesome';
    color: #ff9900;
    font-size: 26px;
    font-family: 'boxicons' !important;
}

ul.pkg-list::-webkit-scrollbar {
  width: 7px;
  border-radius: 10px;
}

ul.pkg-list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #e6e5e5;
  border-radius: 10px;
  background: #e6e5e5;
}
ul.pkg-list::-webkit-scrollbar-thumb {
  background: var(--primary_color);
  border-radius: 10px;
}
ul.pkg-list::-webkit-scrollbar-thumb:hover {
 background: var(--primary_color);
  border-radius: 10px;
}

ul.pkg-list {
    height: 290px;
    overflow-y: scroll;
}

.btn__packages {
    padding-top: 20px;
    text-align: center;
    padding: 30px 20px 15px;
}

.btn__packages a {
    background: var(--c4);
    width: 100%;
    display: block;
    padding: 19px;
    border-radius: 8px;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    transition: 0.5s ease-in-out;
}


.packages_box_sec:hover .btn__packages a {
    background: var(--c5);
}


.org_pri p {
    font-size: 16px;
    color: red;
    font-weight: bold;
    line-height: 17px;
}

.pkg_detail_sec{
    padding: 40px 30px;
    background: var(--c4);
    display: inline-block;
    vertical-align: top;
    box-shadow: 0 6px 40px 0 rgb(0 0 0 / 14%);
    margin-top: 40px;
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 0px 40px rgb(0 0 0 / 0%);
}

.pkg_detail_sec h4,.pkg_detail_sec h1 {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}

.pkg_detail_sec span.line_through {
    margin-bottom: 10px;
    display: block;
    font-size: 24px;
    opacity: 0.8;
    text-decoration: line-through !important;
    color: #fff;
}

.pkg_detail_sec span.h5 {
    margin-bottom: 10px;
    display: inline-block;
    font-size: 49px;
    color: var(--blue);
    font-weight: bold;
    background: -webkit-linear-gradient(to right, #932987, #9932cc);
    color: #fff;
}

.pkg_detail_sec span.h5 sup {
    color: var(--white);
    right: -8px;
}

.pkg_detail_sec .btn_pkg {
    padding-top: 10px;
}

.product_detail_sec{
    padding: 60px 0;
    position: relative;
    z-index: 1;
    /* background: url(../images/inner-banner.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    background: transparent;
}

.product_detail_sec:before {
    content: '';
    position: absolute;
    /* background: rgb(0 0 0 / 68%); */
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

.pkg_detail_sec:before {
    content: '';
    border: 3px solid rgb(0 0 0);
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 10px;
    z-index: -1;
    right: -20px;
    bottom: -20px;
}

.pkg_detail_sec:after {
    content: '';
    background: linear-gradient(180deg, rgb(255 255 255 / 59%) 0, rgb(255 255 255 / 42%) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 10px;
    z-index: -1;
    left: -20px;
    top: -20px;
    box-shadow: 0px 0px 40px rgb(0 0 0 / 54%);
}


.pkg_list_detail {
    margin: 0 10px 0 60px;
}

.pkg_list_detail ul.pkg-list {
    height: 510px;
}

.pkg_list_detail {}

.pkg_list_detail ul.pkg-list li {
    border-bottom: 1px solid #ccc;
    padding: 15px 30px;
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    margin-right: 20px;
}




.pkg_list_detail h4 {
    font-weight: bold;
    font-size: 32px;
    color: var(--black);
}

.pkg_list_detail ul.pkg-list li:before {
    top: 8px;
    left: 0;
}

.btn_pkg a {background: var(--c5);padding: 15px 44px;font-size: 17px;}


.pkg_list_detail ul.pkg-list ul {
    margin: 0 5px !important;
}


.best_sllr {
    position: absolute;
    top: -20px;
    background: #1b0d47;
    padding: 5px 10px;
    right: 0;
    left: 0;
    text-align: center;
}

.best_sllr h4 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 0;
}




.mobile__number {
    position: fixed !important;
    background: var(--c5);
    bottom: 0;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 14px 0;
    z-index: 99;
    font-size: 22px;
    display: none;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.mobile__number ul li a{
    color: #fff;
}


footer {
    padding: 80px 0 0;
    background: #ffe1a2;
}

.footer__logo img {
    /* filter: brightness(0) invert(1); */
    width: 40%;
}

.footer__logo {
    padding-bottom: 20px;
}

.footer__content p {
    font-size: 16px;
    line-height: 29px;
    color: #000;
    font-weight: 300;
    width: 90%;
    padding-bottom: 0;
}

.footer__content img {
    width: 40%;
}

.footer__head h5 {
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
    padding-bottom: 30px;
}

.footer__links ul li a {
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

.footer__links ul li {
    display: block;
    padding-bottom: 14px;
}

.contact__det ul li span {
    color: var(--white);
    font-weight: 400;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.contact__det ul li {padding-bottom: 20px;}

.contact__det ul li p,.contact__det ul li a {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
}

.contact__det ul li span img {
    \: 8px;
    width: 17px;
    filter: brightness(0);
    margin-right: 5px;
}

.copy__right {
    background: #181930;
    padding: 30px 0;
    margin-top: 40px;
}

.copy_text p {
    margin-bottom: 0;
    font-size: 15px;
    color: #fff;
    font-weight: 400;
}

.term__links ul li {
    display: inline-block;
}

.term__links ul {
    text-align: right;
}

.term__links ul li a {
    color: #ffff;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    padding: 0 20px 0 20px;
}

.term__links ul li a:after {
    content: '';
    position: absolute;
    background: #fff;
    width: 1px;
    height: 30px;
    right: 0;
    top: -5px;
}

.term__links ul li:nth-last-child(1) a:after {
    background: transparent;
}