@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Vidaloka&display=swap');  

:root {
    --primary:#e199c1;
    --primary-dark:#CD398B;
    --secondary:#084a5a; 
    --vidaloka:"Vidaloka", serif;
}
.font2{
    font-family: var(--vidaloka);
}
.anton {
    font-family: "Anton", serif;
    letter-spacing: 2px;
}

.lexend {
    font-family: "Lexend", serif;
    font-optical-sizing: auto;
}

.noto {
    font-family: "Noto Sans", serif;
}

body {
    font-family: "Noto Sans", serif;
    
}


.bg-primary{
    background-color:var(--primary) !important
}
nav{
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-item > a{
    font-weight: 700;
    padding: 14px 12px;
    border-bottom: 2px solid transparent;
    text-align: center;
}
.menu-item > a:hover{
    color: var(--primary);
   
    border-bottom-color: var(--primary);
}
.menu{
    display: flex;
}
/* 594C4C */

.dropdown:hover .dropdown-menu{
    display: block;
    padding: 10px 0;
    width: auto;
    width: 200px;
    border: 0;
    box-shadow: 0 5px 32px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    border: 5px solid orange;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}
.dropdown:hover .dropdown-menu a{
    display: block;
    text-decoration: none;
    padding: 10px 20px;
    color: #222;
    font-size: 14px;
}
.dropdown:hover .dropdown-menu a:hover,.dropdown:hover .dropdown-menu a.active{
    /*background-color: #594C4C;*/
    color: var(--primary);
}
header{
    top: 0;
    position: sticky;
    background-color: white;
    z-index: 9;
}
.hero{
    min-height: 600px;
    background-image: url('../images/hero-bg-2.png'), url('../images/hero-bg-1.png'), url('../images/hero-bg-3.png');
    background-size: 300px, contain, 300px;
    background-repeat: no-repeat;
    background-position: right bottom, center, right center;
    display: flex;
    align-items: center;
}
.content-hero{
  
    color: white;
    
}
.content-hero h5{
    font-weight: 600;
    font-size: 20px;
    letter-spacing:3px;
}
.content-hero h1{
    font-size: 60px;
    font-weight: bolder;
    color:#503195;
    margin-bottom: 20px;
        line-height: 1.1;
    
}
.btn-lg{
    font-size: 16px;
    padding: 16px 28px;
    border-radius: 30px;
    font-weight: 600;
}
.content-part{
    padding-top: 35px;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.content-part >div{
    flex: 1;
}
.content-image img{
    width: 600px;
}
.about-img{
    background-image: url(../images/about-1.png);
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: top center;
}
.section{
    padding-top: 60px;
    padding-bottom: 60px;
}
.text-secondary{
    color: var(--secondary) !important;
}
.btn-primary{
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover{
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}
.about-beatures{
    columns: 3;
    column-rule: 1px solid #ccc;
    padding: 40px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.18);
}
.about-beatures .item{
    padding:40px;
    text-align: center;
}
.about-beatures .item img{
    height: 60px;
}
.service-grid{
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.service-grid a{
    display:inline-block;
    position:relative;
}
.service-grid a img{
    border-radius: 4px;
    width: 100%;
    transition: 300ms;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.18);
   
}
.service-grid a img.xlin{
   width: 30px;
    opacity: 1;
    position: absolute;
    right: 10px;
    bottom: 10px;
    filter:invert(1);
}
.service-grid a:hover  img.xlin{
    transform: translateY(-10px);
}
.service-grid a img:hover{
    transform: translateY(-10px);
}.bg-primary-dark{
    background-color: #ED58AA;
}
.videos{
    background-image: url('../images/videoa.png');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 600px;
}
.vid-img{
    position:relative
}
.vid-img img{
    margin-bottom: -100px;
}
.vid-img img.xpl{
    position: absolute;
    width: 88px;
    left: calc(50% - 50px);
    top: calc(50% + 15px);
    opacity: 0.9;
    cursor:pointer;
}
.homepage-review-slider .carousel-item .gg{
    height:280px;
    padding-bottom:20px;
    
    overflow:hidden;
}
.homepage-review-slider .carousel-item .gg p {
    height:120px;
    overflow:hidden;
    margin-bottom:5px;
}
.homepage-review-slider .carousel-item .gg p + a{
    color:var(--primary);
}
.form{
    padding: 40px;
    border-radius: 10px;
    background-color: #eee;
}
.form-control{
    box-shadow: none !important;
    font-size: 16px;
    border-color: var(--primary);
}
.form-control:focus{
    border-color: var(--primary-dark);
}
.accordion-button{
    font-weight: 600;
}
.accordion-button:focus{
    box-shadow: none;
    background-color: var(--primary);
    color: white;
}
.accordion-button:not(.collapsed){
    background-color: var(--primary);
    color: white;
}
.mapp{
    background-image: url('../images/Map-Final.jpg');
    background-size: cover;
    height: 950px;
}
.overlay{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}
.mapp .overlay{
    background-color: rgba(255, 255, 255, 0.614);
    padding: 60px 0;
}
.text-primary-dark{
    color: var(--primary-dark);
}
.testimonials{
    background-image: url('../images/about-bg.png');
    background-position: fixed;
    background-size: cover;
    
}
.testimonial-inner{
    background-color: #df1e88cb;
    padding: 60px 0 60px 0;
}
.acdre{
    margin-bottom:-60px;
}

#demo .carousel-item{
    padding: 0 70px;
}
.inner-carou .carousel-item{
    padding: 0  !important;
}
.inner-carou  .carousel-item .gg{
background-color: #eee !important;
}
#demo .carousel-item .gg{
    background-color: white;
    padding: 25px;
    border-radius: 4px;
}
.top{
    display: flex;
    justify-content: space-between;
}
.top .right{
    width: 50px;
}
.top .right img{
    width: 40px;
}
.left{
    display: grid;
    grid-template-columns: 50px 1fr;
}
footer{
    padding: 60px 0;
    background-color: #cfcfcf;
}
.ftr-mp{

    width: 100%;
    height: 240px;
    
}
.copy{
    background-color: #df8ac2;
    padding: 18px 0;
}

.inner{
    position:relative;
    min-height: 450px;
    background-image: url('../images/about-banner.png');
}
.overlay{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.473);
}
.sp{
    background-image: url('/assets/images/ab_2.jpeg');
}
.video-item{
    width: 100%;
    height: 235px;
}
.review-section{
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 10px;
}
.review-slider{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.item{
    padding:20px;
   
    border-radius: 4px;
}
.inner-inner{
    min-height: 220px;
    background-position:center;
}
.inner-inner .overlay{
    background-color: #c94e9380;
}
.inner-content{

}
.inner-content h1, .inner-content h2, .inner-content h3, .inner-content h4, .inner-content h5, .inner-content h6{
    font-weight: bold;
}
.inner-content p{
    line-height: 1.6;
}
.elementor-icon-list-items{
    list-style: none;
    padding-left: 0;
}
.elementor-icon-list-items a{
    text-decoration: none;
    color: black;
}
.elementor-icon-list-items li{
    margin-bottom: 10px;
    
}
.elementor-icon-list-items li a{
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 5px;
    align-items: center;
}
.elementor-icon-list-items li a:hover{
    color: var(--primary-dark);
}
.elementor-icon-list-items img{
    width: 20px;
}
.tx iframe{
    height:350px;
}
.nav-link-hover:hover{
    color:var(--primary-dark);
    text-decoration:underline
}
.menu-item >a.active{
    color:var(--primary);
    border-bottom-color:var(--primary)
}
.contact-iframe{
    width:100%;
    height:300px;
}
.btn-outline-primary{
    border-color: var(--primary) !important;
    color:var(--primary)
}
.btn-outline-primary:hover{
    background: var(--primary) !important;
}
.text-primary{
    color: var(--primary) !important;
}
.menu-toggle{
    display:none;
}
.cross{
    display:none;
}
.notfound h1{
    font-size:150px;
}

@media screen and (max-width:768px){
    .menu{
            position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 300px;
    background: white;
            flex-direction: column;
        align-items: start;
        display:none;
        padding:20px;
    }
    .content-part{
            grid-template-columns: 1fr;
    }
    .content-image img{
        width:75%;
    }
    .content-hero h1{
        font-size:60px;
    }
    .about-beatures{
            columns: 1;
        column-rule: none;
    }
    .fd-mobile-column{
        flex-direction:column;
    }
    .service-grid{
            grid-template-columns: 1fr 1fr;
    }
    .about-img{
        margin-bottom:30px;
    }
    .about-beatures{
        margin-top:30px;
    }
    .section{
        padding:30px 0;
    }
    .vid-img img{
            margin-bottom: 0;
            margin-top:30px;
    }
    .mapp{
        height:450px;
    }
    body,html{
        overflow-x:hidden;
    }
    .xtest > div{
        flex:1;
    }
    .xtest > div:nth-child(2){
        text-align:right;
    }
    .logo img{
        width:200px;
    }
    .about-beatures .item{
        margin-bottom:20px;
    }
    .about-beatures .item:last-child{
        margin-bottom:0;
    }
    .about-beatures{
        padding:20px;
    }
    .testimonial-inner{
        text-align:center;
    }
    .acdre{
        margin-top:30px;
    }
    .final-postt > .col-md-4{
        order:2;
    }
    .defff{
        padding-top:32px;
    }
    .menu-toggle{
       display: block;
        padding: 5px 14px;
        border: none;
        background: transparent;
        font-size: 25px;
    }
    .cross{
   display: block;
        padding: 5px 14px;
        border: none;
        background: transparent;
        font-size: 25px;
            position: absolute;
    right: 0;
    color: red;
    top: 0;
    }
}

.news-item{
    padding:20px;
}
.news-item a img{
    height:auto;
    object-fit:cover;
    width:100%;
}
.news-item a{
      
    border-radius: 4px;
}

.content-image{
    position:relative;
}
.content-image img{
    position:absolute;
    top:-250px;
}
.social-media-icons{
    display:flex;
    gap:8px;
}
.fa-facebook-square{
    color:var(--bs-primary);
}
.fa-linkedin-square{
        color: #0482b5;
}
.fa-instagram{
    background: linear-gradient(45deg, #dd2323, #d54eff);
    border-radius: 6px;
}
.v-frame{
    display:flex;
    align-items:center;
    justify-content:center;
    height:350px;
    
    background-size:cover;
}
.v-frame img{
    width:100px;
    filter: drop-shadow(2px 4px 6px black);
}
.tabs{
    display:flex;
    gap:12px;
    margin-bottom:20px;
    justify-content:center;
}
.dropdown:hover .dropdown-menu.mega{
    width:480px;
}
.fixed-phone {
    display: inline-block;
    position: fixed;
    left: 40px;
    bottom: 40px;
        padding: 12px;
    background: white;
}
.fixed-phone img {
    width: 50px;
}
.fixed-whatsapp {
    display: inline-block;
    position: fixed;
    left: 40px;
    bottom: 120px;
        padding: 12px;
    background: white;
}
.fixed-whatsapp img {
    width: 50px;
}


.content-hero h5.wersddd{
    letter-spacing:8px;
    font-weight:600;
}
.xtrswevvv{
    padding-left:100px;
}
.cseorrrwdddd {
    font-size:95%;
}
.cseorrrwdddd hr{
    margin:26px 0;
        margin: 26px 0;
    border-color: #454545aa;
  
}
.hide-mobile{
    display:block;
}
.hide-desktop{
    display:none;
}
.form-section{
    margin-top:30px;
}
.kml{
    background-color:var(--primary-dark);
    padding:60px;
    border-radius:30px;
}
.kml-form{
    padding:60px;
}
 .goog-logo-link,
  .goog-te-gadget span {
    display: none !important;
  }
  .goog-te-gadget {
    color: transparent !important;
  }
  .trn{
        
    padding: 10px 22px;
    color: var(--theme-colour);
        background: var(--primary);
    border-radius: 5px;
    cursor:pointer;
  }
  .trn span{
      font-size: 14px;
  }
  .trn img{
      width:25px;
  }
  #google_translate_element select{
    width:100%;
    height:45px;
    border:1px solid #ccc;
    padding-left:10px;
    outline:none;
    font-size:16px;
    border-radius:6px;
}
.slick-next, .slick-prev{
    background: black;
    padding: 10px;
    width: auto;
    height: auto;
}
.slick-next:hover, .slick-prev:hover{
    background:#ed58aa;
}
@media screen and (max-width:768px){
    .fixed-whatsapp {
        display: inline-block;
    position: fixed;
    right: 0;
    top: 50%;
    background: white;
    padding: 10px;
    z-index: 99;
            bottom: auto;
        left: auto;
        border:0.5px solid #ccc;
}
.fixed-whatsapp img {
    width: 40px;
}

    .fixed-phone {
        display: inline-block;
    position: fixed;
    right: 0;
    top: calc(50% + 61px);
    background: white;
    padding: 10px;
    z-index: 99;
            bottom: auto;
        left: auto;
        border:0.5px solid #ccc;
}
.fixed-phone img {
    width: 40px;
}
    .hide-mobile{
        display:none;
    }
    .hide-desktop{
        display:block;
    }
    .hero{
        min-height:500px;
        background-size:300px, cover, 300px;
        background-position:right bottom, -460px 0, right center;
                align-items: start;
        padding:40px 0;
        text-align:center;
    }
    .content-part{
        padding:0;
    }
    .content-hero h5{
            font-size: 14px;
    letter-spacing: 3px;
    margin-bottom:16px;
    }
    .content-hero h1{
        font-size:36px;
                font-weight: bold;
        text-align: center;
    }
    .content-image img{
        top:-50px;
    }
    .btn-lg{
            font-size: 12px;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    }
    .content-image{
            display: flex;
    justify-content: center;
    align-items: center;
            margin-top: 30px;
    }
    .content-hero h5.wersddd{
        letter-spacing: 5px;
        margin-bottom:0;
    }
    .row-mob-reverse{
        flex-direction:column-reverse;
    }
    .xaboutt{
        margin-top:100px;
        text-align:center;
    }
    .news-item a img{
        height:120px;
    }
    .vid-img img.xpl{
        position: absolute;
    width: 60px;
    left: calc(50% - 40px);
    top: calc(50% + -40px);
    opacity: 0.9;
    cursor: pointer;
    }
    .xtrswevvv{
        margin-top:20px;
        padding-left:15px;
    }
    .inner{
        min-height:260px;
    }
    .menu{
            overflow-y: auto;
    }
    .menu .menu-item{
        width:100%;
    }
    .menu-item > a{
        text-align:left;
    }
    .dropdown:hover .dropdown-menu{
               width: 100%;
        border: none;
        box-shadow: none;
                position: static;
    }
    .dropdown > a{
        display:flex;
        justify-content:space-between;
    }
    .cseorrrwdddd{
        margin-top:30px !important;
    }
    .cseorrrwdddd .px-5{
        padding:0 !important;
    }
    
    .podcast iframe{
            height: 219px !important;
    }
    .podcast .h1{
            font-size: 20px !important;
    line-height: 1.5;
    }
}