* {
    user-select: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 10px;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}
body {
    line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
nav ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    list-style: none;
}

/* change colours to suit your needs */

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* change colours to suit your needs */

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}
del {
    text-decoration: line-through;
}
abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* change border colour to suit your needs */

hr {
    display: block;
    height: 3px;
    border: 0;
    border-top: 2px solid #444;
    margin: 1rem 0;
    padding: 0;
}
input,
select {
    vertical-align: middle;
}

/* /////// Landing Start */


/* */


/*  */


/*  */


/* Prevent scrolling */

.landing {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}
.topend {
    height: 25vh;
    /* 30% of the viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}
.topend img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.left,
.right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.left a,
.right a {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.vid-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the container */
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
@media (min-width: 769px) {
    .landing {
        flex-direction: column;
    }
    .topend {
        height: 30vh;
    }
    .left-right-container {
        display: flex;
        height: 70vh;
    }
    .left,
    .right {
        flex: 1;
        height: 100%;
        /* Use the full height of the remaining space */
    }
}
@media (max-width: 768px) {
    .landing {
        flex-direction: column;
    }
    .topend {
        height: 20vh;
    }
    .left,
    .right {
        height: 40vh;
        /* Stack the sections vertically */
        width: 100%;
    }
}

/*all resets complete */

.whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15rem;
    height: 5rem;
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    background: #009900;
    border-radius: 20px;
    z-index: 1000;
    transition: background 0.3s ease;
}
.whatsapp a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    /* No underline */
    font-size: 1.8rem;
    font-weight: 600;
}
.whatsapp a i {
    font-size: 2.5rem;
    color: #fff;
    margin-right: 10px;
    transition: color 0.5s ease;
}
.whatsapp a:hover,
.whatsapp a i:hover {
    color: #eee;
    text-decoration: none !important;
    /* Important to override any underline */
}
.whatsapp a:focus,
.whatsapp a:active {
    text-decoration: none;
    /* Ensures no underline on focus or active states */
}
@media only screen and (min-width: 768px) {
    .whatsapp {
        width: 20rem;
        height: 5rem;
        border-radius: 10px;
    }
    .whatsapp a i {
        font-size: 4rem;
        margin-right: 3px;
    }
}

/*---------pagebreaks-----------*/


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


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

.br1 {
    width: 100%;
    height: 50rem;
    background: url(images/br-1.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: none;
}
.br2 {
    width: 100%;
    height: 50rem;
    background: url(images/br-2.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: none;
}
@media only screen and (min-width:1024px) {
    .br1 {
        width: 100%;
        height: 50rem;
        background: url(images/br-1.png);
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        display: block;
        margin: 3rem auto;
    }
    .br2 {
        width: 100%;
        height: 50rem;
        background: url(images/br-2.png);
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        display: block;
        margin: 3rem auto;
    }
}

/*---------POPUP-----------*/


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


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

.promo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5000;
    background: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    display: none;
}
.contentBox {
    position: relative;
    width: 30rem;
    height: 30rem;
    display: flex;
    background: url(images/popup-sm.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;   
    border-radius: 20px;
}
button.prom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 50%;
    height: 1.5rem;
    margin: 1rem auto;
    border: none;
    outline: none;
    background: #fff !important;
    border-radius: 20px;
}
.promo a {
    font-size: 1.3rem;
    text-decoration: none;
    list-style: none;
    color: #585858;
    font-weight: bolder;
    font-family: 'Jost', sans-serif;
}
.promo:hover a {
    list-style: none;
    text-decoration: none;
    color: #313131;
}
.closed {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.closed i {
    color: #ff0000;
    font-size: 2.5rem;
    cursor: pointer;
    list-style: none;
    text-decoration: none;
}
@media only screen and (min-width:768px) {
    .contentBox {
        position: relative;
        width: 65rem;
        height: 35rem;
        background: url(images/popup-md.png);
    }
    button.prom {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%);
        width: 50%;
        height: 3rem;
        margin: 1rem auto;
        border: none;
        outline: none;
        /*    background:red!important;*/
        border-radius: 20px;
    }
    .promo a {
        font-size: 2rem;
        text-decoration: none;
        list-style: none;
        color: #ff0000;
        font-weight: bolder;
    }
    .promo:hover a {
        list-style: none;
        text-decoration: none;
        color: #313131;
    }
}
@media only screen and (min-width:1024px) {
    .contentBox {
        position: relative;
        width: 80rem;
        height: 40rem;
        background: url(images/popup-lrg.png);
    }
    button.prom {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%);
        width: 50%;
        height: 3rem;
        margin: 1rem auto;
        border: none;
        outline: none;
        background: #fff;
        border-radius: 20px;
    }
    .promo a {
        font-size: 2.5rem;
        text-decoration: none;
        list-style: none;
        color: #ff0000;
        font-weight: bolder;
    }
    .promo:hover a {
        list-style: none;
        text-decoration: none;
        color: #313131;
    }
}

/*top contact*/

.top {
    background: #fff;
    height: 6rem;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    list-style: none;
}
.top a {
    font-family: 'Didact Gothic', sans-serif;
    color: #585858;
    font-weight: 600;
    font-size: 1.3rem;
    text-decoration: none;
    margin: 0 1rem 0 1rem
}
.top i {
    color: #585858;
    padding: 1rem;
    margin: 0 0 0 .5rem;
    font-size: 1.8rem;
    padding: .5rem;
    border-radius: 1rem;
    border: none;
    opacity: 1;
    transition: 0.2s all ease;
}
.top i:hover {
    color: #00ff00;
    opacity: 0.8;
    margin-bottom: 1rem;
}
a.cont {
    font-family: 'Didact Gothic', sans-serif;
    padding: 0rem;
    border: none;
    outline: none;
}
.top a.top-2 {
    float: right;
}
@media only screen and (min-width:768px) {
    .top {
        height: 6rem;
        width: 100%;
        padding: 0;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        text-decoration: none;
        list-style: none;
    }
    .top i {
        margin-right: 0;
        font-size: 3rem;
        padding: 10px;
        border-radius: 50%;
        justify-content: flex-end;
    }
    .top p {
        font-family: 'Jost', sans-serif;
        font-size: 1.7rem;
        display: block;
        margin: 0 auto;
        padding: 15px;
        font-weight: 600;
    }
    .top a.top-2 {
        float: right;
    }
}

/*navigation start*/


/*-------------------Navbar ---------------------------
-----------------------------------------------------
----------------------------------------------------*/

nav.navbar {
    position: fixed;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 0;
    transition: all 0.5s ease;
    z-index: 900;
    background: #fff;
    height:9rem
}
nav.navbar.sticky {
    background: #eee;
    padding: 1.5rem 0;
    top: 0rem;
    width: 100%;
}
.max-width {
    width: 100%;
    padding: 0 1rem;
    margin: auto;
}
.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo {
    margin: 0 0 0 1rem;
}
.navbar .logo img {
    width: 45%;
}
.navbar .menu li {
    display: inline-block;
}
.navbar .menu li a {
    display: block;
    color: #585858;
    list-style: none;
    text-decoration: none;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 1.4rem;
    margin-left: 1rem;
    font-weight: bolder;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}
.navbar .menu li a:hover {
    color: #aaa;
    font-size: 1.45rem;
}
.navbar.sticky .menu li a {
    color: #585858;
    font-weight: bolder;
}
@media only screen and (min-width:1024px) {
    .max-width {
        padding: 0 4rem;
    }
    .navbar .menu li a {
        font-size: 1.1rem;
        margin-left: .5rem;
    }
    .navbar .logo img {
        max-width: 50%;
    }
}
@media only screen and (min-width:1280px) {
    .max-width {
        padding: 0 6rem;
    }
    .navbar .logo a {
        font-size: 2.7rem;
    }
    .navbar .logo a span {
        font-size: 2.7rem;
    }
    .navbar .menu li a {
        font-size: 1.2rem;
        margin-left: 1rem;
    }
}
@media only screen and (min-width:1440px) {
    .max-width {
        padding: 0 6rem;
    }
    .navbar .logo a {
        font-size: 3rem;
    }
    .navbar .logo a span {
        font-size: 3rem;
    }
    .navbar .menu li a {
        font-size: 1.5rem;
        margin-left: 2rem;
    }
}

/*-------------burger menu----------------*/

.menu-btn {
    color: #585858;
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
    margin-right: 1.5rem;
}
.navbar.sticky .menu-btn {
    color: #585858;
}
@media only screen and (max-width:768px) {
    .menu-btn {
        color: #585858;
        font-size: 3rem;
        cursor: pointer;
        display: none;
        margin-right: 3rem;
    }
}
@media only screen and (max-width:1124px) {
    .menu-btn {
        display: block;
        z-index: 10000;
    }
    .menu-btn i.active:before {
        content: "\f00d";
    }
    .navbar .menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: rgba(255, 241, 0, 0.75);
        text-align: center;
        padding-top: 1.5rem;
        transition: all 0.5s ease;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .navbar .menu.active {
        left: 0;
    }
    .navbar .menu li {
        display: block;
    }
    .navbar .menu li a {
        display: inline-block;
        margin: 2rem 0;
        font-size: 2rem;
    }
}
@media only screen and (max-width:500px) {
    .menu-btn i.active:before {
        content: "\f00d";
    }
    .navbar .menu {
        padding-top: 4rem;
        transition: all 0.5s ease;
    }
    .navbar .menu.active {
        left: 0;
    }
    .navbar .menu li {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        z-index: 900;
    }
    .navbar .menu li a {
        display: inline-block;
        margin: 1rem 0;
        font-size: 1.8rem;
    }
}

/*******************************/


/******** Carousel CSS *********/


/*******************************/

.carousel {
    position: relative;
    top: 8rem;
    width: 100%;
    height: calc(100vh - 175px);
    margin: auto;
    text-align: center;
    overflow: hidden;
}
.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}
.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 8rem;
    left: 0;
    background: transparent;
    z-index: 1;
}
.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 180px);
}
.carousel .carousel-caption h1 {
    color: #585858;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 5rem;
    font-family: 'Didact Gothic', sans-serif;
    color: #fff;
}
.carousel .carousel-caption p {
    color: #585858;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: bolder;
    font-family: 'Didact Gothic', sans-serif;
}
.carousel .carousel-caption .btn {
    padding: 1.5rem 2rem;
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: #585858;
    background: #fff100;
    margin: 1rem 0 0 0;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all .2s ease-in;
    font-weight: bolder;
    font-family: 'Didact Gothic', sans-serif;
}
.carousel .carousel-caption .btn:hover {
    background: #585858;
    color: #fff100;
}
@media (max-width: 1024px) {
    .carousel .carousel-caption h1 {
        font-size: 3.5rem;
        font-weight: 400;
    }
    .carousel .carousel-caption p {
        font-size: 2rem;
        font-weight: bolder;
    }
    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 2.5rem;
        font-weight: bolder;
        letter-spacing: 0;
    }
}
@media (max-width: 575.98px) {
    .carousel {
        position: relative;
        width: 100%;
        height: calc(100vh - 170px);
        margin: 0rem auto;
        text-align: center;
        overflow: hidden;
    }
    .carousel .carousel-caption h1 {
        font-size: 3rem;
        font-weight: 400;
    }
    .carousel .carousel-caption p {
        font-size: 15px;
    }
    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 15px;
        font-weight: bolder;
        letter-spacing: 0;
        border-radius: 15px;
    }
}
.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

/*******************************/


/******** Bottom Image ******/


/*******************************/


/*******************************/


/******** Top Feature CSS ******/


/*******************************/

.feature-top {
    position: relative;
    background: #fff;
    margin-bottom: 0;
    padding: 1rem 0;
    width: 90%;
    margin: 5rem auto;
    background: transparent;
}
h2.ftop {
    text-align: center;
    padding: 6rem 0 2rem 0;
    font-size: 5rem;
    font-family: 'Didact Gothic', sans-serif;
    font-weight: 400;
    color: #535353;
}
.feature-top h3 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0 2rem 0;
    color: #535353 !important;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 6.5rem;
    letter-spacing: 1px;
    font-weight: 400;
}
.feature-top a {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border: 2px solid #e2032f;
    border-radius: 10px;
    font-family: 'Jost', sans-serif;
    color: #171717;
    font-size: 1.4rem;
    transition: border 0.2s ease;
    font-weight: 600;
}
.feature-top .feature-item p {
    font-family: 'Didact Gothic', sans-serif;
    color: #171717;
    font-weight: 400;
    font-size: 1.3rem;
}
@media (max-width: 575.98px) {
    .feature-top .col-md-3:nth-child(1n) {
        border-right: none;
    }
    .feature-top .col-md-3:last-child {
        border-bottom: none;
    }
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .feature-top .col-md-3:nth-child(2n) {
        border-right: none;
    }
    .feature-top .col-md-3:nth-child(3n),
    .feature-top .col-md-3:nth-child(4n) {
        border-bottom: none;
    }
}
@media (min-width: 768px) {
    .feature-top .col-md-3 {
        border-bottom: none;
    }
    .feature-top .col-md-3:nth-child(4n) {
        border-right: none;
    }
}
.feature-top .feature-item {
    padding: 30px 0;
    text-align: center;
}
.feature-top .feature-item i {
    color: #444;
    font-size: 5rem;
    margin-bottom: 10px;
}
.feature-top .feature-item h3 {
    color: #e2032f;
    font-size: 3rem;
    font-weight: 400;
    font-family: 'Jost', sans-serif;
    letter-spacing: 1.5px;
    padding: 1rem;
}
.feature-top .feature-item p {
    color: #171717;
    margin: 0;
    font-size: 1.5rem;
    font-family: 'Jost', sans-serif;
}
img.value {
    padding: 1rem;
    width: 50%;
}
.og {
    display: none;
}

/*---------Botox-----------*/


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

main {
    font-family: 'Didact Gothic', sans-serif;
}

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

.locations {
    margin: 3rem auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
     background: url(images/bg-1.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.locs {
    background: transparent;
    padding: 2rem;
    margin: 2rem 0 0 0;
    border-radius: 20px;
    box-shadow: 2px 2px 3px #585858;
    transition: all 0.25s ease;
}
.locs:hover {
    background: #eee;
    box-shadow: none;
}
h2.loc {
    font-family: 'Didact Gothic', sans-serif;
    color: #535353;
    font-size: 5rem;
    font-weight: 400;
    padding: 8rem 0 2rem 0;
}
p.loc {
    font-family: 'Didact Gothic', sans-serif;
    color: #535353;
    font-weight: 400;
    font-size: 1.8rem;
    width: 80%;
    margin: 0 auto;
    padding: 0 0 2rem 0;
    text-align: center;
}
h3.loc {
    font-family: 'Didact Gothic', sans-serif;
    color: #535353;
    font-weight: bold;
    padding: 2rem 0 0 0;
    font-size: 3rem
}
.locations a {
    display: flex;
    justify-content: center;
    font-family: 'Didact Gothic', sans-serif;
    color: #585858;
    padding: .5rem;
    text-decoration: none;
    list-style: none;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 400;
    transition: all 0.25s ease;
}
.locations a:Hover {
    list-style: none;
    text-decoration: none;
    color: #009900;
}
.locations a.book 
{
    padding:1rem 1.5rem;
    width:50%;
    margin:.5rem auto;
    border:1.5px solid green;
    border-radius:20px;
}
p.tel {
    color: #585858;
    padding: .5rem;
    text-decoration: none;
    list-style: none;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 400;
}
.locations i {
    color: darkgreen;
    margin-right: 1rem;
    font-size: 2.5rem;
    font-weight: 400;
}
p.tel i {
    color: #ff0000;
    font-size: 1.5rem;
    font-weight: 400;
}

/*---------FAQ Start-----------*/


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


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

.qa {
    width: 100%;
    margin: 2rem auto;
    background: #585858;
    padding: 2rem 1rem;
}
h2.qas {
    font-family: 'Didact Gothic', sans-serif;
    color: #ddd;
    font-size: 5rem;
    font-weight: 600;
    padding: 3rem 0 2rem 0;
    text-align: center;
}
h3.fqs {
    text-align: left;
    color: #fff900;
    font-weight: 400;
    padding: 2rem 0 .5rem 0;
    letter-spacing: .25px;
}
p.fqs {
    text-align: left;
    margin: 0 0 0 1rem;
    font-size: 1.5rem;
    color: #ddd;
    font-weight: 400;
}

/*---------FAQ End-----------*/


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


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


/*---------About Journey Start-----------*/


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


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

.about2 {
    margin: 2rem auto
}
h3.iva {
    text-align: center;
    color: #535353;
    font-weight: 400;
    font-size: 2.5rem;
    padding: 1rem 0 0 0;
}
p.iva {
    text-align: left;
    color: #585858;
    font-weight: 400;
    font-size: 1.4rem
}

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


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


/*---------About Journey end-----------*/


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


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


/*---------pRODUCTS JOURNEY START-----------*/


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


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

.products2 {
    margin: 2rem auto;
    background: #fff;
}
.products2 img {
    margin: 0 auto;
    text-align: center;
    display: flex;
}
h3.iv {
    text-align: center;
    padding: 0 0 1rem 0;
    color: #585858;
    font-weight: 400;
    font-size: 3rem;
}
p.iv2 {
    text-align: center;
    font-size: 2rem;    
    font-weight: 400;
    color: #585858
}
p.iv3 {
    text-align: left;
    margin-left: 6rem;
    font-size: 2.2rem;
    font-weight: 400;
    color: #585858;
}
p.price {
    text-align: center;
    padding: 2rem 0 0 1rem;
    font-size: 2.5rem;
    font-weight: bolder;
    color: darkgreen;
}

/*---------pRODUCTS JOURNEY End-----------*/


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


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

.responsive-iframe-container {
    position: relative;
    /* To allow absolute positioning of the iframe */
    width: 75%;
    padding-bottom: 80%;
    /* 16:9 aspect ratio (adjust as needed) */
    overflow: hidden;
    margin: 0 auto;
}

/*---------About Start-----------*/


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


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

.about {
    width: 100%;
    padding: 1rem;
    background: url(images/bg-1.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Didact Gothic', sans-serif;
}
h2.ab {
    text-align: center;
    padding: 8rem 0 2rem 0;
    font-size: 5rem;
    font-weight: 400;
    color: #585858;
}
p.ab {
    width: 90%;
    margin: 0 auto;
    font-weight: 400;
    color: #585858;
    font-size: 1.4rem;
}
p.abs {
    width: 90%;
    margin: 0 auto;
    font-weight: 500;
    color: #585858;
    font-size: 1.4rem;
   
}
h3.ab {
    text-align: center;
    padding: 2rem 0 1rem 0;
    font-weight: 400;
    color: #585858;
    font-size: 3rem
}
.team {
    margin: 2rem auto;
    background:transparent;
    width: 100%;
}
h2.teams {
    text-align: center;
    padding: 8rem 0 2rem 0;
    font-size: 3rem;
    font-weight: 400;
    color: #585858;
}
h4.title {
    text-align: center;
    font-weight: 400;
    color: #585858;
    font-size: 1.8rem
}
p.name {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 400;
    color: #585858;
}
.team img {
    padding: 1rem;
    margin:0 auto;
    text-align: center;
    display: flex;
}

/*---------About End-----------*/


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


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


/*---------Products Start-----------*/


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


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

.product {
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    background: url(images/bg-2.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
h2.prod {
    text-align: center;
    padding: 8rem 0 2rem 0;
    font-size: 5rem;
    font-weight: 600;
    color: #585858;
}
.prods {
    background:transparent;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
}
h3.prod1 {
    text-align: center;
    font-size: 3rem;
    color: #585858;
    font-weight: bolder;
}
h3.prod2 {
    text-align: center;
    font-size: 3rem;
    color: #585858;
    font-weight: bolder;
}
h3.prod3 {
    text-align: center;
    font-size: 3rem;
    color: #585858;
    font-weight: bolder;
}
h3.prod4 {
    text-align: center;
    font-size: 3rem;
    color: #585858;
    font-weight: bolder;
}
h3.prod5 {
    text-align: center;
    font-size: 3rem;
    color: #585858;
    font-weight: bolder;
}
h3.prod6 {
    text-align: center;
    font-size: 3rem;
    color: #585858;
    font-weight: bolder;
}
h3.prod7 {
    text-align: center;
    font-size: 3rem;
    color: #585858;
    font-weight: bolder;
}
h3.prod8 {
    text-align: center;
    font-size: 3rem;
    color: #585858;
    font-weight: bolder;
}
p.descr {
    color: #323232;   
    font-weight: 400;
    font-size: 1.8rem;
    text-align: center
}
p.descr-2 {
    text-align: left !important;
    font-size: 1.5rem;
    color: #535353;
    font-weight: 500;
}
h4.price {
    text-align: center;
    padding: 1rem;
    color: #585858;
    font-weight: bold;
    font-size: 2.5rem;
    
}
.prods a {
    padding: 1rem 1.5rem;
    border: 2px solid #585858;
    border-radius: 10px;
    background:transparent;
    color: #585858;
    font-weight: bolder;
    font-size: 2rem;
    margin: 1rem auto;
    transition: all 0.25s ease;
}
.prods a:hover {
    color: darkgreen;
    border: 2px solid darkgreen;
    list-style: none;
    text-decoration: none;
}
.product .images {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height:100%;
}
.oneg2 {
    display: none;
}
@media only screen and (min-width:768px) {
    .oneg2 {
        display: flex;
    }
}
/*******************************/


/********* Testimonials CSS *********/


/*******************************/

.testimonials {
    width: 95%;
    margin: 0 auto;
}
.testimonials .item {
    max-width: 60rem;
    max-height: 60rem;
}
.shadow-effect {
    background: #fff;
    padding: 20px;
    /*    border-radius: 4px;*/
    text-align: center;
    /*    border: 1px solid #00145d;*/
    /*    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);*/
}
#customers-testimonials .shadow-effect p {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
}
.testimonial-name {
    margin: 0px auto 0;
    display: table;
    width: auto;
    background: #00145d;
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
    font-family: 'Didact Gothic', sans-serif;
    font-size: 1.5rem;
    font-weight: bolder;
    letter-spacing: .5px;
}
.item a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding:1rem 1.5rem;
    width:50%;
    margin:0 auto;
    border:2px solid #585858;
    border-radius:5px;
    color:#585858;
    font-weight: 400;
    font-size: 1.5rem;
}
#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}
.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    max-width: 100%;
    margin: 0 auto;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: #00145d;
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}
#customers-testimonials.owl-carousel .owl-dots {
    display: none;
    width: 100%;
    text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: #00145d;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}

/*******************************/


/********* Service CSS *********/


/*******************************/
/*---------Products End-----------*/


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


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


/*---------Map Start-----------*/


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


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

.map {
    padding: 2rem 2rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    /* Remove these two lines, they conflict with Bootstrap's centering */
    /* justify-content: center; */
    /* align-items: center; */
    flex-direction: column;
}
.map .container .row {
    display: flex;
    /* Ensure the row itself is a flex container */
    justify-content: center;
    /* Center content horizontally within the row */
    align-items: center;
    /* Center content vertically within the row */
}
.map .container .row > div {
    display: flex;
    /* Make each column a flex container */
    justify-content: center;
    /* Center the iframe horizontally within its column */
    align-items: center;
    /* Center the iframe vertically within its column */
}
h2.maps {
    text-align: center;
    padding: 8rem 0 2rem 0;
    font-size: 5rem;
    font-weight: 400;
    color: #585858;
}

/*---------Map End-----------*/


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


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


/*---------Contact-----------*/


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


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

.contact .container {
    width: 100%;
    background: #fff;
    border-radius: 6px;
    padding: 20px 60px 30px 40px;
    margin: 0 auto;
}
.contact .container .contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact .container .contents .left-side {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
}
.contents .left-side::before {
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
}
.contents .left-side .details {
    margin: 14px;
    text-align: center;
}
.contents .left-side .details i {
    font-size: 30px;
    color: #fff900;
    margin-bottom: 10px;
}
.contents .left-side .details .topic {
    font-size: 2.56rem;
    font-weight: 400;
    font-family: 'Didact Gorhic', sans-serif;
    color: #585858;
}
.contents .left-side .details .text-one,
.contents .left-side .details .text-two {
    font-size: 1.3rem;
    color: #585858;
    font-family: 'Didact Gorhic', sans-serif;
    font-weight: 600;
   
}
.contact .container .contents .right-side {
    width: 100%;
    margin-left: 2rem;
}
.contents .right-side .topic-text {
    text-align: center;
    padding: 8rem 0 2rem 0;
    font-size: 5rem;
    font-weight: 600;
    color: #585858;
    font-family: 'Didact Gorhic', sans-serif;
}
.conform {
    background: transparent;
    width: 100%;
    margin: 1rem auto;
    position: relative;
    border-radius: 5px;
    box-shadow: 2px 2px 5px #000;
}
@media only screen and (min-width:768px) {
    .conform {
        width: 90%;
    }
}
#form-box {
    padding: 20px;
    padding-bottom: 0px;
}
.inp,
#msg-box {
    display: block;
    width: 95%;
    padding: 20px;
    border: 2px solid #585858;
    font-size: 13px;
    color: #585858!important;
    margin-bottom: 15px;
    border-radius: 10px;
}
.inp:focus,
#msg-box:focus {
    outline: none;
    box-shadow: 0 0 3px 1px #fff900 !important;
}
::-webkit-input-placeholder {
    color: #585858 !important;
}
#msg-box {
    resize: none;
    height: 170px;
}
.sub-btn {
    width: 100%;
    padding: 10px;
    cursor: pointer;
    margin-left: 0;
    border: none;
    border-radius: 5px;
    background: #585858;
    color: #fff900;
    font-size: 20px;
    margin-bottom: 25px;
    font-family: 'Didact Gorhic', sans-serif;
}
.cont {
    margin: 3rem auto;
    text-align: center;
}
@media (max-width: 950px) {
    .contact .container {
        width: 100%;
        padding: 30px 10px 40px 10px;
    }
    .contact .container .contents .right-side {
        width: 75%;
        margin-left: 55px;
    }
}
@media (max-width: 820px) {
    .contact .container {
        margin: 40px 0;
        height: 100%;
    }
    .contact .container .contents {
        flex-direction: column-reverse;
    }
    .contact .container .contents .left-side {
        width: 100%;
        flex-direction: row;
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .contact .container .contents .left-side::before {
        display: none;
    }
    .contact .container .contents .right-side {
        width: 100%;
        margin-left: 0;
    }
}

/*---------Contact End-----------*/


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


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


/*---------Footer-----------*/


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


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

.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 180px;
    background: #eee;
    font-family: 'Didact Gothic', sans-serif;
    bottom: 0;
}
.footer .footer-about,
.footer .footer-link,
.footer .footer-contact {
    position: relative;
    margin-bottom: 45px;
    color: #585858;
}
.footer-about img {
    width: 100%;
}
.footer .footer-about h2,
.footer .footer-link h2,
.footer .footer-contact h2 {
    position: relative;
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 400;
    color: #585858;
}
.footer-about p {
    font-size: 1.5rem;
}
.footer .footer-link a {
    display: block;
    margin: 0 0 10px 5px;
    color: #585858;
    transition: .3s;
    font-size: 1.2rem;
    text-align: left;
}
.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}
.footer .footer-link a:hover {
    color: #585858;
    letter-spacing: 1px;
}
.footer .footer-contact p {
    text-align: left;
}
.footer .footer-contact p i {
    width: 25px;
    text-align: left;
    color: #585858;
}
.footer .footer-social {
    position: relative;
    margin-top: 20px;
}
.footer .footer-social a {
    display: inline-block;
}
.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    /*    color: #ff0000;*/
}
.footer .footer-social a:last-child i {
    margin: 0;
}
.footer .footer-social a:hover i {
    color: #585858;
}
.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
}
.footer .footer-menu .f-menu a {
    color: #585858;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}
.footer .footer-menu .f-menu a:hover {
    color: #aaa;
}
.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.footer .copyright {
    padding: 30px 15px;
}
.footer .copyright p {
    margin: 0;
    color: #585858;
}
.footer .copyright .col-md-6:last-child p {
    text-align: right;
}
.footer .copyright p a {
    color: #585858;
    font-weight: 500;
    letter-spacing: 1px;
}
.footer .copyright p a:hover {
    color: #bbb;
}
@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

/*---------Footer End-----------*/


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


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

.og {
    display: none;
}
h3.term {
    text-align: center;
    padding: 3rem;
    color: #353535;
    font-weight: 600;
    font-size: 2.5rem;
}
p.term {
    text-align: left;
    padding: 1rem;
    color: #353535;
    font-weight: 500;
    font-size: 1.3rem;
}
p.terms {
    text-align: left;
    padding: 1rem;
    color: #353535;
    font-weight: 500;
    font-size: 1.3rem;
}
h2.terms {
    text-align: left;
    padding: 1rem;
    color: #585858;
    font-size: 2.5rem;
    font-weight: bolder;
}
h1.terms {
    text-align: left;
    padding: 1rem;
    color: #353535;
    font-weight: bold;
    font-size: 2rem;
}
p.priv {
    width: 85%;
    text-align: left;
    margin: 0 auto;
    padding: 5rem 4rem;
    font-family: sans-serif;
    color: #222;
    font-weight: bolder;
    font-size: 3rem;
}
p.points {
    width: 85%;
    text-align: left;
    margin: 0 auto;
    padding: 5rem 4rem;
    font-family: sans-serif;
    color: #313131;
    font-weight: bolder;
    font-size: 1.8rem;
}

/*---------------------------thanks
---------------------------------
---------------------------------*/
.display
{
    margin:2rem auto;
    text-align: center;
}

/*----------------------------------------------------------------------------gallery----------------------------------------------*/

.gallery {
    width: 95%;
    margin: 3rem auto;
    background: #fff;
    padding: 2rem
}
.gallery img {
    padding: .5rem width: 100%
}
h2.gal {
    color: #fff100;
    font-family: 'Didact Gothic', sans-serif;
    font-weight: 600;
    padding: 3rem 0 3rem 0;
    font-size: 3.5rem;
    text-align: center;
}
.gallery .row {
    margin: 1.5rem;
}
.booking-iframe-container {
  position: relative;
  width: 80%; 
  margin: 0 auto; 
  padding-bottom: 56.25%; /*  Adjust as needed for the desired aspect ratio */
  overflow: hidden; 
}