@import url("https://use.typekit.net/jbk2zer.css");
@import url('https://fonts.googleapis.com/css2?family=Vast+Shadow&display=swap');


:root {
  /* --hex-width: 180px;
  --hex-height: calc(var(--hex-width) * 0.866);
  --hex-border: 4px; */

  --hex-width:220px;
  --hex-height: 220px;
  --hex-border: 5px;
}

*{
    box-sizing: border-box;
}
body{
    width:100%;
    height:100%;
    margin:0;
    padding:0;
    font-family:Arial, Helvetica, sans-serif;
    overflow-x: hidden !important;
}
.homeBody{
    background-color: #f8f7f3;
}
.nav-lists{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding:5px 70px;
    background-color: #372d50;
    transition: background-color 0.3s ease;
     z-index: 1000;
}
.nav-lists.scrolled{
    background-color: #261118e0;
    backdrop-filter: blur(8px);
}
.nav-listss.scrolled{
    background-color: #261118e0;
    backdrop-filter: blur(8px);
}
.nav-lists .logo{
    width:40%;
}
.nav-lists .logo img{
    width:70px;
}

.menu-list{
    width:60%;
    display:flex;
    flex-direction: row;
    justify-content: end;
    margin:0;
    padding:0;
}
.menu-item{
    margin:0 20px;
    list-style-type: none;
}
.menu-link{
    color:#ffffff;
    text-decoration: none;
    font-family: arbotek-rounded, sans-serif;
}
.menu-link:hover,
.menu-link:focus,
.menu-link:active{
    border-bottom:1px solid #ffffff;
    color:#ffffff;
}
.active{
    border-bottom:1px solid #ffffff;
    color:#ffffff !important;
}
.menubtn{
    display:none !important;
    background: transparent !important;
    border:none !important;
    width:60%;
}
.menubtn:hover,
.menubtn:active,
.menubtn:focus-visible{
     background: transparent;
     outline:none;
     border:none;
     box-shadow: none;
}
.menubtn img{
    width:30px;
    float:right;
}
.offcanvas{
    width:80% !important;
}
.offcanvas-body{
    padding:0 !important;
}
.menu-list-app{
    padding:0 !important;
    margin:0 !important;
}
.menu-list-app li{
    list-style-type: none;
    margin:5px 0;
    padding:10px 30px;
}
.menu-list-app li:hover{
    background-color: #f1f1f1;
}
.menu-list-app a{
    color:#000000;
    font-family: arbotek-rounded, sans-serif;
    text-decoration: none;
}
.menu-list-app .active{
    background-color: #261118 !important;
    color:#ffffff !important;
}
.offcanvas-header{
    border-bottom:1px solid lightgrey;
}

/* =================banner sec==================== */

.hero{
    clear:both;
}
main .hero img{
    width:100%;
    height: auto;  
}

/* =================About us==================== */

.about-us{
    width:100%;
    height:auto;
    background-color:#261118;
    padding:60px 0;;
}
.about-us img{
    width:500px;
    margin-bottom: 30px;
}
.about-us p{
    color: #cacaca;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    margin: 20px 0px;
    font-weight: 300;
}
.about-us p>span{
    font-family: "Vast Shadow", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
}
.aboutHomeBtn{
    text-decoration: none;
}
.aboutHomeBtn button{
    text-align: center;
    font-size: 16px;
    padding:8px 20px;
    border-radius: 8px;
    border:none;
    background-color: #ff7000;
    color:#000000;
    margin:30px 0;
}

/* =================WhyChoose us==================== */

.wcu-content{
    display:flex;
    padding:60px 0;
    justify-content: center;
    align-items: center;
}
.wcu-content .content{
    width:70%;
}
.wcu-content .content img{
    width:500px;
    margin-bottom: 30px;
}
.wcu-content p{
    color: #242424;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
}
.wcu-content p>span{
    font-family: "Vast Shadow", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
}
.wcu-content .image{
    width:30%;
    padding:20px;
}
.wcu-content .image img{
    height:auto;
    width:250px;
}
.WhyChooseUs-para{
    display:flex;
    margin: 20px 0px;
}
.WhyChooseUs-para img{
    width:30px !important;
    height:20px !important;
    margin:0 10px 0 0 !important;
}

/* ================gallery section=============== */


/* ====================Gallery section style=================== */


#bbc-gallery{
    width:100%;
    background-color: #261118;
    padding:60px 0px;
}
.heading-gallery{
    width:400px;
    margin:30px 0px;
}


.hex-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  width:95%;
  margin:0px auto;
}

.hex-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, var(--hex-width));
  grid-auto-rows: calc(var(--hex-height) * 0.75 + 5px);
  /* gap: var(--hex-gap); */
  gap:2px;
  padding: 0;
  margin: 0;
}

.hex {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 12px 6px;
  clip-path: polygon(
    0% 25%,
    50% 0%,
    100% 25%,
    100% 75%,
    50% 100%,
    0% 75%
  );
  overflow: hidden;
  
}

/* splash */
.hex::after {
  /* content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.45),
    rgba(255,255,255,0.15),
    transparent 70%
  );
  top: 8px;
  right: 8px;
  transition: all 0.5s ease;
  pointer-events: none; */
  content: "";
    position: absolute;
    width: 40px;
    height: 250px;
    background: #fff;
    top: 0%;
    right: -10%;
    transition: all 0.6s ease;
    pointer-events: none;
    /* transform: translate(-50%); */
    opacity: 0.4;
    transition: all 0.5s ease;
}

.hex:hover::after {
    bottom: 0%;
    right: 90%;
}


.hex::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: inherit;
}

.hex img {
  position: absolute;
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  object-fit: cover;
  clip-path: inherit;
  transition: all 0.5s ease;
}


/* ================= HONEYCOMB OFFSET ================= */
.hex:nth-child(9n + 6),
.hex:nth-child(9n + 7),
.hex:nth-child(9n + 8),
.hex:nth-child(9n + 9) {
  margin-left: calc(var(--hex-width) / 2);
  transform: translateX(8px);
}
.hex:nth-child(9n + 10) {
  grid-column: 1;
}

/* ================= HOVER ================= */
.hex:hover img {
  transform: scale(1.2);
}


.modal{
    --bs-modal-width: 800px !important;
    --bs-border-radius: 0;
    --bs-border-radius-sm: 0;
    --bs-border-radius-lg: 0;
    --bs-border-radius-xl: 0;
    --bs-border-radius-xxl: 0;
    --bs-border-radius-pill: 0;
    --bs-modal-padding: 2px !important;
}
.modal img{
    width:100% !important;
}

/* =================================================== */
/* ================= MEDIA QUERIES =================== */
/* =================================================== */

/* LARGE LAPTOP */
@media (max-width: 1400px) {
  .hex {
        width: 160px;
        height: 160px;
    }
    :root {
        --hex-width: 160px;
        --hex-height: 160px;
    }
}

/* LAPTOP */
@media (max-width: 1200px) {
  .hex {
        width: 120px;
        height: 120px;
    }
    :root {
        --hex-width: 120px;
        --hex-height: 120px;
    }
}

/* TABLET */
@media (max-width: 900px) {
  .hex {
        width: 100px;
        height: 100px;
    }
    :root {
        --hex-width: 100px;
        --hex-height: 100px;
    }
    .hex-grid{
        grid-auto-rows: calc(var(--hex-height) * 0.7 + 5px);
    }
    .hex-section{
        padding:40px 0;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .hex {
        width: 65px;
        height: 65px;
        margin:0px;
    }
    :root {
        --hex-width: 65px;
        --hex-height: 70px;
        --hex-border: 2px;
    }
    .hex-grid{
        grid-auto-rows: calc(var(--hex-height) * 0.6 + 5px);
    }
    .hex-section{
        padding:30px 0;
    }
    .hex::before{
        inset:3px
    }
    .hex:nth-child(9n + 6), .hex:nth-child(9n + 7), .hex:nth-child(9n + 8), .hex:nth-child(9n + 9) {
        transform: translateX(2px);
    }
}

/* SMALL MOBILE */
@media (max-width: 400px) {
    .hex {
        width: 60px;
        height: 60px;
        margin:0px;
    }
    :root {
        --hex-width: 55px;
        --hex-height: 80px;
        --hex-border: 2px;
    }
    .hex-grid{
        grid-auto-rows: calc(var(--hex-height) * 0.5 + 5px);
    }
    .hex-section{
        padding:30px 0;
    }
    .hex::before{
        inset:3px
    }
    .hex:nth-child(9n + 6), .hex:nth-child(9n + 7), .hex:nth-child(9n + 8), .hex:nth-child(9n + 9) {
        transform: translateX(1px);
    }
}


/* =================Video sec==================== */

.video-sec{
    padding:90px 0 0 0;
}
.video-caontainer{
    background-image: url('../image/video-bg.gif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width:100%;
    height:auto;
    padding:70px 0;
}
.video-sec .heading-video{
    width:400px;
    margin-bottom: 30px;
}
.video-caontainer iframe{
    width:100%;
    height:800px !important;
    border-radius: 50px;
    border: 20px solid #f8f7f3;
}

/* ==========testimonial-section============ */

.heading-testi{
    width:400px;
    margin-bottom: 30px;
}

.bbr_testimonial {
    padding: 70px;
    margin-bottom:40px;
}
.swiper {
    width: 100%;
    padding: 50px;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide-prev {
    left: 170px !important;
}

.swiper-slide-next {
    right: 170px !important;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 55% !important;
    opacity: 0.5;   
    /* height: 300px; */
}

.swiper-slide-active {
    opacity: 1;
    /* width: 60% !important; */
}

.swiper-slide img {
    display: block;
    width: 100%;
    box-sizing: unset !important;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background-image: none !important;
}

.swiper-pagination {
    display: none !important;
}
.swiper-3d .swiper-slide-shadow-left {
    background-image: none !important;
}

@media screen and (max-width:600px) {
    .swiper-slide {
        width: 95% !important;
    }
    .bbr_testimonial {
        padding: 70px 0px;
    }
}

@media only screen and (min-width:601px) and (max-width:800px) {
    .swiper-slide {
        width: 95% !important;
    }
}

@media only screen and (min-width:801px) and (max-width:1000px) {
    .swiper-slide {
        width: 85% !important;
    }
}

@media only screen and (min-width:1000px) and (max-width:1200px) {
    .swiper-slide {
        width: 75% !important;
    }
}

/* ==================reach us============== */

.reach-us{
    /* background: #261118; */
    background-image: url('../image/Reachus-web.gif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width:100%;
    height: auto;
    padding:50px 0 70px 0;
}
.contact-details .container{
    width:100%;
    display:flex;
    align-items: center;
}
.contact-details .left{
    width:54%;
}
.reachus-heading{
    width:500px;
    margin-bottom: 30px;
}
.contact-details h1{
    font-family: "Vast Shadow", serif;
    color:#ffffff;
    margin:20px 0;
    font-size: 24px;
}
.contact-details .email a{
    display:flex;
    justify-content: start;
    align-items: center;
    margin:10px 0;
    padding:10px 0;
    text-decoration: none;
}
.contact-details .email a img{
    width:30px;
}
.contact-details .email a p{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color:#d3d3d3;
    margin:0px 10px;
}
.social-media{
    margin:40px 0 10px 0;
    padding:5px 0;
}
.social-media img{
    width:30px;
    height:30px;
    margin:10px;
}
.facebook{
    width:20px !important;
    height:35px !important;
}


.contact-details .right{
    width:46%;
    align-items: center;
    display:flex;
    flex-direction: column;
}
.submit-form{
    width:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.reachus-img img{
    width:400px;
    margin:50px 0 0 0;
}
.submit-form form{
    width:100%;
    display:flex;
    align-items: start;
}
.row1{
    width:50%;
    display:flex;
    flex-direction: column;
}
.row2{
    width:50%;
    display:flex;
    flex-direction: column;
}
input, .Hometextarea{
    border-radius: 10px;
    border: 1px solid lightgrey;
    font-size: 14px;
    padding:7px 0;
    text-indent: 10px;
    margin:10px 0;
    width:90%;
    background-color: #ffffff !important;
}
.row1 button{
    background-color: #f54e5f;
    color:#ffffff;
    width:40%;
    padding:5px 10px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    margin:10px 0;
    border:none;
}



.containerCheckHome {
  display: block;
  position: relative;
  padding-left: 35px;
  margin: 15px 0;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color:#494949 !important;
}

/* Hide the browser's default checkbox */
.containerCheckHome input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.containerCheckHome .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 4px;
  background-color: #ccc;
}

/* On mouse-over, add a grey background color */
.containerCheckHome:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.containerCheckHome input:checked ~ .checkmark {
  background-color: #000000;
}

/* Create the checkmark/indicator (hidden when not checked) */
.containerCheckHome .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.containerCheckHome input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.containerCheckHome .checkmark:after {
  left: 7px;
  top: 4px;
    width: 6px;
    height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ==================map-loation============== */

footer{
    background: #261118;
}
.map-location iframe{
    width:100%;
    height:500px;
}
.copright{
    padding:10px 0px;
    width:100%;
}
.copright p{
    padding:10px 0;
    margin:10px 0;
    color:#eeeeee;
    font-size: 18px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}


/* =================media query==================== */

@media screen and (min-width:1201px) and (max-width:1400px){
    .nav-lists{
        padding:5px 0px;
    }
    main .hero img{
        height: auto;
    }
}

@media screen and (min-width:1001px) and (max-width:1200px){
    main .hero img{
        height: auto;
    }
    .nav-lists{
        padding:5px 0px;
    }
    .nav-lists .logo{
        width:20%;
    }
    .menu-list{
        width:80%;
    }
    .menu-item{
        margin:0 10px;
    }
    .about-us p{
        font-size: 19px;
    }
    .about-us img{
        width:450px;
    }
    .video-sec .heading-video{
        width:350px;
    }
    .video-caontainer{
        padding:50px;
    }
    .video-caontainer iframe{
        height:650px;
        border:10px solid #f8f7f3;
        border-radius: 30px;
    }
     .heading-testi {
        width: 400px;
    }
    .heading-gallery{
        width:400px;
    }
    .map-location iframe{
        height:450px;
    }
    .reachus-heading {
        width: 400px;
    }
}
@media screen and (min-width:801px) and (max-width:1000px){
    main .hero img{
        height: auto;
    }
    .nav-lists{
        padding:5px 10px;
    }
    .nav-lists .logo{
        width:20%;
    }
    .nav-lists .logo img{
        width:65px;
    }
    .menu-list{
        width:80%;
    }
    .menu-item{
        margin:0 10px;
    }
    .about-us p{
        font-size: 18px;
    }
    .about-us p>span{
        font-size: 20px;
    }
    .about-us img{
        width:450px;
    }
    .video-sec .heading-video{
        width:350px;
    }
    .video-caontainer{
        padding:30px;
    }
    .video-caontainer iframe{
        height:550px !important;
        border:10px solid #f8f7f3;
        border-radius: 30px;
    }
     .heading-testi {
        width:400px;
    }
    .heading-gallery{
        width:350px !important;
        margin:15px 0 !important;
    }
    .map-location iframe{
        height:420px;
    }
    .reachus-heading {
        width: 350px;
    }
    .reach-us{
        background-image: url('../image/Reachus-a.gif');
    }
    .contact-details .container{
        flex-direction: column;
    }
    .left{
        width:90% !important;
    }
    .right{
        width:90% !important;
        margin-top: 200px;
    }
    .reachus-heading {
        width: 300px;
    }
    .reachus-img img {
        width: 300px;
        margin: 50px 0 40px 0;
    }
    .social-media {
        margin: 10px 0 10px 0;
    }
}
@media screen and (max-width:800px){
    .menu-list{
        display:none;
    }
     .nav-lists{
        padding:5px 10px;
    }
    .menubtn{
        display:block;
    }
    .aboutHomeBtn{
        display: flex;
        justify-content: center;
    }
    .hex::after {
            width: 15px;
    }
}
@media screen and (min-width:601px) and (max-width:800px){
    main .hero img{
        height: auto !important;
    }
    .nav-lists{
        padding:5px 10px;
    }
    .nav-lists .logo img{
        width:65px;
    }
    .about-us p{
        font-size: 17px;
    }
    .about-us p>span{
        font-size: 20px;
    }
    .about-us img{
        width:400px;
    }
    .wcu-content{
        flex-direction: column-reverse;
    }
    .wcu-content .content{
        width:90%;
    }
    .wcu-content .image{
        width:80%;
        display:flex;
        justify-content: center;
    }
     .wcu-content .content img{
        width:350px;
        margin-top: 30px;
    }
    .video-sec .heading-video{
        width:300px;
    }
    .video-caontainer{
        padding:20px;
    }
    .video-caontainer iframe{
        height:400px !important;
        border:10px solid #f8f7f3;
        border-radius: 30px;
    }
     .heading-testi {
        width: 400px;
    }
    .heading-gallery{
        width:300px !important;
        margin:10px 0 !important;
    }
    .map-location iframe{
        height:400px;
    }
    .reach-us{
        background-image: url('../image/Reachus-a.gif');
    }
    .contact-details .container{
        flex-direction: column;
    }
    .left{
        width:90% !important;
    }
    .right{
        width:90% !important;
        margin-top: 90px;
    }
    .reachus-heading {
        width: 350px;
    }
    .reachus-img img {
        width: 300px;
        margin: 50px 0 40px 0;
    }
    .social-media {
        margin: 10px 0 10px 0;
    }

}
@media screen and (min-width:451px) and (max-width:600px){
     main .hero img{
        height: auto !important;
    }
    .nav-lists{
        padding:10px 30px;
    }
     .nav-lists .logo img{
        width:60px;
    }
    .about-us p{
        font-size: 16px;
    }
    .about-us{
        padding:60px 20px;
    }
     .about-us img{
        width:220px;
    }
    .about-us p>span{
        font-size: 18px;
    }
    .wcu-content{
        flex-direction: column-reverse;
    }
    .wcu-content .content{
        width:90%;
    }
    .wcu-content .image{
        width:80%;
        display:flex;
        justify-content: center;
    }
     .wcu-content .content img{
        width:320px;
        margin-top: 30px;
    }
    .video-sec .heading-video{
        width:250px;
    }
    .video-caontainer{
        padding:10px;
    }
    .video-caontainer iframe{
        height:300px !important;
        border:10px solid #f8f7f3;
        border-radius: 30px;
    }
    .heading-testi {
        width: 300px;
    }
    .heading-gallery{
        width:250px !important;
        margin:10px 0 !important;
    }
    .map-location iframe{
        height:300px;
    }
    .reach-us{
        background-image: url('../image/Reachus-a.gif');
    }
    .contact-details .container{
        flex-direction: column;
    }
    .left{
        width:90% !important;
    }
    .right{
        width:99% !important;
        margin-top: 90px;
    }
    .reachus-heading {
        width: 250px;
    }
    .reachus-img img {
        width: 300px;
        margin: 50px 0 40px 0;
    }
    .social-media {
        margin: 10px 0 10px 0;
    }
    .submit-form form {
        margin-top: 30px;
    }
}
@media screen and (max-width:450px){
    main .hero img{
        height: auto !important;
    }
    .nav-lists{
        padding:10px 30px;
    }
     .nav-lists .logo img{
        width:60px;
    }
    .about-us p{
        font-size: 16px;
    }
    .about-us{
        padding:60px 20px;
    }
    .about-us img{
        width:220px;
    }
    .about-us p>span{
        font-size: 18px;
    }
    .wcu-content{
        flex-direction: column-reverse;
    }
    .wcu-content .content{
        width:90%;
    }
    .wcu-content .image{
        width:80%;
         display:flex;
        justify-content: center;
    }
    .wcu-content .content img{
        width:320px;
        margin-top: 30px;
    }
    .video-sec .heading-video{
        width:250px;
    }
    .video-caontainer{
        padding:10px;
    }
    .video-caontainer iframe{
        height:300px !important;
        border:10px solid #f8f7f3;
        border-radius: 30px;
    }
    .heading-testi {
        width: 300px;
    }
    .heading-gallery{
        width:250px;
        margin:10px 0;
    }
    .map-location iframe{
        height:300px;
    }
    .reach-us{
        background-image: url('../image/Reachus-a.gif');
    }
    .contact-details .container{
        flex-direction: column;
    }
    .left{
        width:90% !important;
    }
    .right{
        width:100% !important;
        margin-top: 90px;
    }
    .reachus-heading {
        width: 250px;
    }
    .reachus-img img {
        width: 300px;
        margin: 50px 0 40px 0;
    }
    .social-media {
        margin: 10px 0 10px 0;
    }
    .submit-form form {
        margin-top: 30px;
    }
}

@media screen and (max-height:700px){
    main .hero img{
        height: auto;
        background-position: bottom center;
    }
}
@media screen and (min-height:701px) and (max-height:900px){
    main .hero img{
        height: auto;
        background-position: bottom center;
    }
}





/* ========================================================================================================================

Performance Page 

======================================================================================================================== */

.perfomr_pd{
    padding:0 50px;
}

.cultureLife{
    margin:10px 0 0 0;
    padding:30px 0;
}
.cultureLife h1{
    font-size: 24px;
    text-align: center;
    font-weight: 600;
    color:#000000;
}
.cultureLife h2{
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    color:#000000;
}
.cultureLife p{
    font-size: 18px;
    text-align: center;
    font-weight: 300;
    color:#656565;
    width:70%;
    /*display: flex;*/
    justify-content: center;
    margin:30px auto 50px auto;
}

.performance_intro_img img{
    width:100%;
}
.performance-gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  height: 35vh;
}
.performance-item {
  grid-column: span 4;
  background: #f5f5f5;
  border-radius: 14px;
  overflow: hidden;
}

/* Images */
.performance-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.performance_london{
    background-color: #f1f1f1;
    padding:10px 0;
}
.performance_london .row{
    align-items: center;
}
.performance_london_img{
    margin:0 center;
    display: flex;
    justify-content: end;
}
.performance_london img{
    width:50%;
    border-radius: 20px;
    
}
.performance_london h1{
    font-size: 24px;
    text-align: left;
    font-weight: 600;
    margin:20px 0;
    color:#000000;
}
.performance_london p{
    color:#000000;
}


.palki_Festivel{
    padding:50px 0;
}
.palki_Festivel h1{
    font-size: 24px;
    text-align: left;
    font-weight: 600;
    margin:20px 0;
    color:#000000;
}
.palki_Festivel p{
    color:#000000;
}
.palkiFestive_img{
    width:100%;
    display:flex;
    align-items: center;
}
.palkiFestive_img img{
    width:100%;
}


.palkiperformance-gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  height: 35vh;
}
.palkiperformance-item {
  grid-column: span 4;
  background: #f5f5f5;
  border-radius: 14px;
  overflow: hidden;
}

/* Images */
.palkiperformance-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ============================================= */

.TamilSangam_sec{
    padding:100px 0;
    background-color: #f1f1f1;
}
.TamilSangam_sec h1{
    font-size: 24px;
    text-align: left;
    font-weight: 600;
    margin:20px 0;
    color:#000000;
}
.TamilSangam_sec p{
    color:#000000;
}
.TamilSangam_img img{
    width:100%;
    border-radius: 20px;
}


.LondonMuruganTemple{
    background-color: #f1f1f1;
    padding:100px 0;
}
.LondonMuruganTemple .performance-gallery{
    margin-top:20px;
}
.childtwoHead{
    margin:100px 0 20px 0;
}


/* ============================================= */
.Whitehall{
    background-color: #f1f1f1;
}
.workship{
    background-color: #260102ed;
    color:#ffffff;
    margin:0px;
    padding:100px 0;
}
.workship h1{
    color:#ffffff
}
.workship p{
    color:rgb(214, 214, 214);
}


.collabration .video-sec{
    padding:0;
}
.collabration h3{
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    margin:20px 0;
    color:#262626;
}

/* ============================================= */



/* ============================================= */



@media only screen and (max-width:601px) and (min-width:800px){
    
    .cultureLife p{
        width:90%;
    }
    .performance-item{
        margin-top:10px;
    }
    .performance_london img{
        width:100%;
    }
    .palkiperformance-item{
        margin-top:10px;
    }
}

@media only screen and (max-width:601px) {
    
    .cultureLife h1{
        font-size: 18px;
    }
    .cultureLife p{
        width:90%;
        font-size: 16px;
    }
     .performance-item{
        margin-top:10px;
    }
    .performance_london img{
        width:100%;
    }
    .palkiperformance-item{
        margin-top:10px;
    }
}










/* ========================================================================================================================

Resource Page 

======================================================================================================================== */

.classification{
    margin: 0;
    padding:3% 0;
    color:#000000 !important;
}
.classification h1{
    font-size: 24px;
    font-weight: 600;
    margin:10px 0;
    padding:10px 0;
}

/* ============================================= */

.certified_one{
    margin:5% 0 0 0px;
    color:#000000;
    padding: 0 0 30px 0;
}
.intrio{
    width:70%;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin:0 auto;
}
.certified_one .grid{
    box-shadow: 0 5px 5px #e1e1e1;
    padding:30px;
    border-radius: 20px;
    margin-top:5%;
    background-color: #fafafa;
}
.certified_one .grid img{
    width:80%;
    display: flex;
    margin:0 auto;
    border-radius: 10px;
    border: 1px solid lightgrey;
}
.certified_one h1{
     font-size: 20px;
    font-weight: 600;
    margin:10px 0;
    padding:10px 0;
}
table{
    border-radius: 10px !important;
    width:100%;
    display: flex;
    margin:0 auto ;
    justify-content: start;
}
th{
    text-align: center !important;
    border: 1px solid gray !important;
    padding:10px;
}
td{
    padding:10px;
    border: 1px solid gray !important;
    width:50%;
}

/* ============================================= */

@media only screen and (max-width:800px){
    .classification h1, .certified_one h1{
        font-size: 16px !important;
    }
    .WhoNayak, .Intro {
        padding: 3% 30px;
    }
}








/* ========================================================================================================================

About us Page 

======================================================================================================================== */


.nav-lists{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding:5px 100px;
    background-color: #372d50;
    transition: background-color 0.3s ease;
     z-index: 1000;
}
.nav-lists.scrolled{
    background-color: #261118e0;
    backdrop-filter: blur(8px);
}
.nav-lists .logo{
    width:40%;
}
.nav-lists .logo img{
    width:70px;
}

.menu-list{
    width:60%;
    display:flex;
    flex-direction: row;
    justify-content: end;
    margin:0;
    padding:0;
}
.menu-item{
    margin:0 20px;
    list-style-type: none;
}
.menu-link{
    color:#ffffff;
    text-decoration: none;
    font-family: arbotek-rounded, sans-serif;
}
.menu-link:hover,
.menu-link:focus,
.menu-link:active{
    border-bottom:1px solid #ffffff;
    color:#ffffff;
}
.active{
    border-bottom:1px solid #ffffff;
    color:#ffffff !important;
}
.menubtn{
    display:none;
    background: transparent;
    border:none;
    width:60%;
}
.menubtn:hover,
.menubtn:active,
.menubtn:focus-visible{
     background: transparent;
     outline:none;
     border:none;
     box-shadow: none;
}
.menubtn i{
    font-size: 24px;
    float:right;
}
.offcanvas{
    width:80% !important;
}
.offcanvas-body{
    padding:0 !important;
}
.menu-list-app{
    padding:0 !important;
    margin:0 !important;
}
.menu-list-app li{
    list-style-type: none;
    margin:5px 0;
    padding:10px 30px;
}
.menu-list-app li a{
    color:#000000;
    font-family: arbotek-rounded, sans-serif;
    text-decoration: none;
}
.menu-list-app .active{
    background-color: #261118;
    color:#ffffff !important;
}
.menu-list-app .active a{
    color:#ffffff !important;
}
.offcanvas-header{
    border-bottom:1px solid lightgrey;
}

/* =================About Us sec==================== */

.About_heading{
   width: 80%;
    margin:0px auto;
    padding:25px 0
}

.CmnWrapper{
    background:#261118;
    color:#ffffff;
}
.Cmn-usPage{
    padding: 0;
    background: #ffffff;
    width: 80%;
    margin: 0 auto;
    border-radius: 30px;
}

.testimonialbg {
    padding: 0;
    background: #ffffff;
    width: 100%;
    height:auto;
    margin: 0 auto;
    border-radius: 30px;
	color:#ffffff;
	padding: 20px 50px;
	display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 0 10px #f1f1f1;
    border:1px solid #f1f1f1;
}
.testi_img img{
    width:120px;
    height:120px;
    border-radius: 100px;
    border:3px solid #ffffff;
    box-shadow: 0 0 10px #d5d5d5;
    /* margin-top:-60px; */
}

.testi_Quaote{
    width:100%;
    height:300px;
    align-items: start;
    padding: 20px 0 0 0;
    overflow: auto;
}
.testi_Quaote h1{
    font-size: 20px;
    font-weight: 600;
    color:#000000;
    text-align: center;
    margin:20px auto;
}
.testi_Quaote h1>span{
    font-size: 14px;
    font-weight: 300;
    color:grey;
}
.testi_Quaote p{
    color: #4b4b4b;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}
.testi_Quaote p>span{
    font-size: 30px;
    color: grey;
    font-family: math;
}
.quaotSymbol{
    width:10%;
    font-size: 70px;
    line-height:40px;
    font-family: cursive;
    font-weight: 600;
    margin:0 10px;
    color: #d5d5d5;
}
.quoteRotate{
  transform: scaleX(-1);
    height: 180px;
    display: flex;
    align-items: end;
}

.About-Profile{
    border-radius:20px;
    padding:20px;
    display:flex;
    align-items: center;
}
.About-Profile img{
    width:auto;
    height:200px;
    margin:0;
    border-radius: 12px;
}
.About_HeadCnt{
    padding:0 30px;
    color:#000000;
}
.About_HeadCnt h1{
   font-size: 24px;
   margin-top:30px;
}
.about-usPage h1{
    color:#000000;
    margin:20px 0;
    padding:0px 0;
    font-weight: 600;
    font-size: 24px;
}
.about-usPage p{
    color:#2d2d2d;
    margin:10px 0;
}

/* =================About Us sec==================== */

.foundation h1{
    color:#000000;
    font-size: 24px;
    font-weight: 600;
    margin-top:25px;
}
.foundation p{
    font-size: 16px;
    color:#363636;
    margin:0;
}


.philosoy{
    background-color: #ededed !important;
    border-radius: 0;
    margin-top:5%;
    padding:50px 0;
}
.philosoy img{
    width:100% !important;
    height:auto;
    margin:0;
    border-radius: 12px;
}
.philosoy h1{
   color:#000000;
   font-weight: 600;
   font-size: 24px;
   padding: 0;
}
.philosoy p{
   color:#000000;
}


.Philosophy-grid{
    background-color: #000000;
    padding:70px 0;
}
.Philosophy-grid .container{
    display:flex;
    align-items:start;
    flex-direction: row;
}
.Philosophy-grid .container .grid{
    text-align: center;
    width:33%;
    padding:20px;
}
.Philosophy-grid h1{
    color:#ffffff;
}
.Philosophy-grid p{
    color:#ffffff;
}



.aboutPgaeWhyChoose{
    padding:5px 0;
    margin:50px 0;
}
.aboutPgaeWhyChoose h1{
    color:#000000 !important;
    font-size: 24px;
    font-weight: 600;
}
.aboutPgaeWhyChoose p{
    color:#2d2d2d !important;
    font-size: 16px;
    font-weight: 300;
    margin:0px;
}

.aboutPgaeConclusion h1{
    color:#000000 !important;
    font-size: 24px;
    font-weight: 600;
}
.aboutPgaeConclusion p{
    color:#2d2d2d !important;
    font-size: 16px;
    font-weight: 300;
    margin:0px;
}
.aboutPgaeWhyChoose, .aboutPgaeConclusion {
        padding:0 30px;
    }




/* =================media query==================== */
@media screen and (min-width:1401px) and (max-width:1600px){
    main .About-hero{
        height: auto;
        background-position: center ;
    }
}
@media screen and (min-width:1201px) and (max-width:1400px){
    main .About-hero{
        height: auto;
    }
    .testimonialbg{
        padding:20px;
    }
    .testi_img img{
        margin:0;
    }
}
@media screen and (min-width:1001px) and (max-width:1200px){
    main .About-hero{
        height: 70vh;
    }
    .nav-lists{
        padding:5px 90px;
    }
    .nav-lists .logo{
        width:20%;
    }
    .menu-list{
        width:80%;
    }
    .menu-item{
        margin:0 10px;
    }
    .testimonialbg{
        padding:20px;
    }
    .testi_img img{
        margin:0;
    }
}
@media screen and (min-width:801px) and (max-width:1000px){
    main .About-hero{
        height: 60vh;
    }
    .nav-lists{
        padding:5px 80px;
    }
    .nav-lists .logo{
        width:20%;
    }
    .nav-lists .logo img{
        width:65px;
    }
    .menu-list{
        width:80%;
    }
    .menu-item{
        margin:0 17px;
    }
    .testimonialbg{
        padding:20px;
    }
    .testi_img img{
        margin:0;
    }
    
}
@media screen and (max-width:800px){
    .menu-list{
        display:none;
    }
    .menubtn{
        display:block;
    }
    .philosoy{
        padding:50px 20px;
    }
    .philosoy .row{
        flex-direction: column-reverse;
    }
     .Philosophy-grid .container{
        flex-direction: column;
    }
    .Philosophy-grid .container .grid{
        width:80%;
    }
    .foundation{
        padding:0 30px;
    }
    .About-Profile{
        flex-direction: column;
    }
    .About-Profile{
        padding:0;
    }
    .philosoy, .aboutPgaeWhyChoose, .aboutPgaeConclusion {
        padding:0 30px;
    }

    .testimonialbg{
        padding:20px;
    }
    .testi_img img{
        margin:0;
    }
    .testi_Quaote{
        height:350px;
    }
}
@media screen and (min-width:601px) and (max-width:800px){
    main .About-hero{
        height: 50vh !important;
    }
    .nav-lists{
        padding:5px 50px;
    }
    .nav-lists .logo img{
        width:65px;
    }
    .about-usPage h1{
        text-align: center;
    }
    .about-usPage p{
        text-align: center;
    }
    .aboutPgaeWhyChoose p, .aboutPgaeConclusion p, .aboutPgaeWhyChoose h2, .aboutPgaeConclusion h2{
        text-align: left;
    }
}
@media screen and (min-width:451px) and (max-width:600px){
     main .About-hero{
        height: 30vh !important;
    }
    .nav-lists{
        padding:10px 30px;
    }
     .nav-lists .logo img{
        width:60px;
    }
    .about-usPage h1{
        text-align: center;
    }
    .about-usPage p{
        text-align: center;
    }
    .aboutPgaeWhyChoose p, .aboutPgaeConclusion p, .aboutPgaeWhyChoose h2, .aboutPgaeConclusion h2{
        text-align: left;
    }
}
@media screen and (max-width:450px){
    main .About-hero{
        height: 30vh !important;
    }
    .nav-lists{
        padding:10px 30px;
    }
     .nav-lists .logo img{
        width:60px;
    }
    .about-usPage h1{
        text-align: center;
    }
    .about-usPage p{
        text-align: center;
    }
    .aboutPgaeWhyChoose p, .aboutPgaeConclusion p, .aboutPgaeWhyChoose h2, .aboutPgaeConclusion h2{
        text-align: left;
    }
}

@media screen and (max-height:700px){
    main .About-hero{
        height: 100vh;
        background-position: bottom center;
    }
}
@media screen and (min-height:701px) and (max-height:900px){
    main .About-hero{
        height: 100vh;
        background-position: bottom center;
    }
}





/* ========================================================================================================================

Gallery Page 

======================================================================================================================== */


.nav-listss{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding:5px 100px;
    background-color: #372d50;
    transition: background-color 0.3s ease;
     z-index: 1000;
}
.nav-listss.scrolled{
    background-color: #261118e0;
    backdrop-filter: blur(8px);
}
.nav-listss .logo{
    width:40%;
}
.nav-listss .logo img{
    width:70px;
}

.menu-list{
    width:60%;
    display:flex;
    flex-direction: row;
    justify-content: end;
    margin:0;
    padding:0;
}
.menu-item{
    margin:0 20px;
    list-style-type: none;
}
.menu-link{
    color:#ffffff;
    text-decoration: none;
    font-family: arbotek-rounded, sans-serif;
}
.menu-link:hover,
.menu-link:focus,
.menu-link:active{
    border-bottom:1px solid #ffffff;
    color:#ffffff;
}
.active{
    border-bottom:1px solid #ffffff;
    color:#ffffff !important;
}
.menubtn{
    display:none;
    background: transparent;
    border:none;
    width:60%;
}
.menubtn:hover,
.menubtn:active,
.menubtn:focus-visible{
     background: transparent;
     outline:none;
     border:none;
     box-shadow: none;
}
.menubtn i, .menubtn svg{
    font-size: 24px;
    float:right;
}
.offcanvas{
    width:80% !important;
}
.offcanvas-body{
    padding:0 !important;
}
.menu-list-app{
    padding:0 !important;
    margin:0 !important;
}
.menu-list-app li{
    list-style-type: none;
    margin:5px 0;
    padding:10px 30px;
}
.menu-list-app li a{
    color:#000000;
    font-family: arbotek-rounded, sans-serif;
    text-decoration: none;
}
.menu-list-app .active{
    background-color: #261118;
    color:#ffffff !important;
}
.menu-list-app .active a{
    color:#ffffff !important;
}
.offcanvas-header{
    border-bottom:1px solid lightgrey;
}

/* =================banner sec==================== */

.gallery_intro{
    font-size: 22px;
    text-align: center;
    width: 80%;
    font-weight: 300 !important;
    color: #1b1b1b;
    padding: 50px 40px 0 40px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 34px;
}
.galleryWrapper{
    padding:5% 0 30px 0;
}


/* =================media query==================== */

@media screen and (min-width:1001px) and (max-width:1200px){
    .nav-listss{
        padding:5px 90px;
    }
    .nav-listss .logo{
        width:20%;
    }
    .menu-list{
        width:80%;
    }
    .menu-item{
        margin:0 10px;
    }
}
@media screen and (min-width:801px) and (max-width:1000px){
    .nav-listss{
        padding:5px 80px;
    }
    .nav-listss .logo{
        width:20%;
    }
    .nav-listss .logo img{
        width:65px;
    }
    .menu-list{
        width:80%;
    }
    .menu-item{
        margin:0 17px;
    }
}
@media screen and (max-width:800px){
    .menu-list{
        display:none;
    }
    .menubtn{
        display:block !important;
    }
    .gallery_intro{
        font-size: 18px;
        width: 95%;
        margin: 30% auto 20px auto;
        line-height: 26px;
    }
}
@media screen and (min-width:601px) and (max-width:800px){
    .nav-listss{
        padding:5px 50px;
    }
    .nav-listss .logo img{
        width:65px;
    }
    
}
@media screen and (min-width:451px) and (max-width:600px){
    .nav-listss{
        padding:10px 30px;
    }
     .nav-listss .logo img{
        width:60px;
    }
    .aboutus-grid .row{
        flex-direction: column-reverse;
    }
    .img-wrap img {
        width: 80% !important;
    }
}
@media screen and (max-width:450px){
    .nav-listss{
        padding:10px 30px;
    }
     .nav-listss .logo img{
        width:60px;
    }
    .aboutus-grid .row{
        flex-direction: column-reverse;
    }
    .img-wrap img {
        width: 80% !important;
    }
}






/* ========================================================================================================================

Contact us Page 

======================================================================================================================== */

.CmnWrapper1{
    padding:5% 0;
}
.contact-deatials{
    display:flex;
    justify-content: center;
    color:#000;
}
.contact-deatials .container{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    margin:40px 0;
    padding:10px 0;
}
.contact-deatials .container h1{
    margin:20px auto;
    padding:10px 0;
}
.contact-deatials .container p{
    width:90%;
    margin:0px auto;
    font-size: 24px;
}



.quick-contact{
    display:flex;
    align-items: center;
    width:100%;
    margin:30px 0;
    padding:30px 0;
}
.quick-contact a{
    width:33%;
    text-align: center;
    padding:50px 0;
    transition: 0.4s;
    text-decoration: none;
    color: rgb(28, 28, 28);
    cursor:pointer;
}
.quick-contact a img{
    width: 35px;
    height:auto;
    margin-bottom:20px;
}
.quick-contact a svg{
    font-size: 35px;
    margin-bottom:20px;
}
.quick-contact a h2{
    font-size: 24px;
    font-weight: 600;
    margin:10px 0;
    padding:10px 0;
}
.vertical-line {
  width: 1px;          /* thickness */
  height: 150px;       /* height of line */
  background-color: #b0b0b0;
}






.fomr-section-contact{
    display: flex;
    width:100%;
    align-items: center;
    background-color: #260102f0;
}
.fomr-section-contact .left{
    width:50%;
}
.fomr-section-contact .left img{
    width:100%;
}
.fomr-section-contact .form{
    width:50%;
    padding:50px;
}

.fomr-section-contact .form form input, .textarea{
    border:none !important;
    border-radius: 10px;
    width:100% !important;
    padding:10px 0;
    text-indent: 10px;
    font-size: 16px;
    outline:none;
    background-color: #fefefe35 !important;
    /* backdrop-filter: blur(8px); */
    color:#ffffff;
    margin:10px 0;
}
.sub-form button{
    background-color: #f54e5f;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    margin: 10px 0;
    border: 1px solid #f54e5f;
}


@media only screen and (max-width:800px){
    .quick-contact{
        flex-direction: column;
    }
    .fomr-section-contact .left{
        width:100% !important;
    }
    .vertical-line {
        width: 80%;          /* thickness */
        height: 1px;       /* height of line */
        background-color: #b0b0b0;
    }
    .fomr-section-contact{
        flex-direction: column;
    }
    .fomr-section-contact .form{
        width:90%;
        align-items: center;
        justify-content: center;
        padding:30px 0px;
    }
    .quick-contact a{
        width:90%;
    }
}





.containerCheck {
  display: block;
  position: relative;
  padding-left: 35px;
  margin: 15px 0;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color:#d0d0d0;
}

/* Hide the browser's default checkbox */
.containerCheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 4px;
  background-color: #ccc;
}

/* On mouse-over, add a grey background color */
.containerCheck:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.containerCheck input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.containerCheck input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.containerCheck .checkmark:after {
  left: 7px;
  top: 4px;
    width: 6px;
    height: 11px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}










/* MAin spinner */

/* Loader Full Screen */
#siteLoader {
  position: fixed;
  inset: 0;
  background: #261118;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner */
.siteSpinner {
  width: 70px;
  height: 70px;
  border: 3px solid #fff;
  border-top: 3px solid #f54e5f;
  border-radius: 50%;
  animation: spinSite 1s linear infinite;
}

@keyframes spinSite {
  to { transform: rotate(360deg); }
}

/* Hide content initially */
.hidden {
  display: none;
}





/* Fomr spinner */

#loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: none;
  z-index: 99999;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}