/* --------------------------------------
GLOBAL STYLES
-----------------------------------------*/
html{
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}
body {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #53585f;
  line-height: normal;
  background: #fff url(../images/bg_body.webp) 0 0 repeat;
  margin: 0;
  overflow-x: hidden;
}
/* Other fixes*/
*,*:before,*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	        box-sizing: border-box;
}
i {
  vertical-align: middle;
}
strong{
  font-weight: 600;
}
ul, ol {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
h1 , h2, h3, h4, h5{
  margin: 0;
  padding: 0;
  font-weight: 300;
}
/* LINKS */
a{ color:#ed6d20; }
a:hover{ text-decoration: none; cursor: pointer;}

a {text-decoration:none;}
a:hover {text-decoration:none; }
a:before,a:after { text-decoration:none;}
a:before,a:after,
a:hover:before,a:hover:after {text-decoration:none;}

p{font-size: 20px;
  padding: 0;
  padding-bottom: 20px;
  margin: 0;
  line-height: 35px;
  font-weight: 300;
}
/* IMG RESPONSIVE */
img{
  display: block;
  max-width: 100%;
  height: auto;
}
.btn-standard{
  text-transform: uppercase;
}
.container-fluid{
  width: 95%;
}
/*---------------------------------------
FORM                 
-----------------------------------------*/
.form-control{
  background: #d2e0e8;
  color: #0c1c2d;
  font-size: 16px;
  box-shadow: none;
  margin-bottom: 45px;
  padding: 0 0 10px 0;
  border: none;
  border-bottom: 1px solid #0c1c2d;
  border-radius:                    0px;
  -webkit-border-radius:            0px;
  -moz-border-radius:               0px;
}

.form-control::-moz-placeholder {
  color: #0c1c2d;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #0c1c2d;
}
.form-control::-webkit-input-placeholder {
  color: #0c1c2d;
}
.formpage .form-control{
  background: #ffffff;
  border: 1px solid #c8c8c8;
}
.formpage p{
  font-size: 1rem !important;
  padding-bottom: 1.5rem !important;
}
.formpage label{
  display: block;
  padding-bottom: 5px;
  color: #5b5b5b;
}
.formpage hr{
  margin: 10px 0 !important;
}
.formpage .btn-submit{
  border: 1px solid #4a7a97;
  display: inline-block;
  padding: 15px 45px;
  color: #4a7a97;
  background: #fff;
}
.formpage .btn-submit:hover{
  background: #d1e0e7;
}
.form-contact .btn-submit{
  background: transparent;
  padding: 6px 50px;
  border: 1px solid #0c1c2d;
  color: #0c1c2d;
  border-radius:                    0px;
  -webkit-border-radius:            0px;
  -moz-border-radius:               0px;
}
.form-group{
  width: 84%;
  padding-left: 20px;
  padding-bottom: 4px;
}
.btn-send{
  border: none;
  display: flex;
  gap: 15px;
  background: none;
  margin: 1.5rem 0;
  align-items: center;
}
.btn-send img{
  width: 50px;
  height: auto;
}
.btn-send {
  font-size: 1.35rem !important;
  color: #5B5B59
}
.select-wrap {
  position: relative;
  width: 50%;
  margin-bottom: 10px;
}
.select-wrap.short{
  width: 280px;
}
.select-wrap select {
  width: 100%;
  color: #53585f;
  border: 1px solid #c8c8c8;
  padding: 10px 40px;
  background-color: #fff;
  appearance: none;       /* removes default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Custom arrow */
.select-wrap::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: url("../images/icon_dropdownselect.png") no-repeat center / contain;
  transform: translateY(-50%);
  pointer-events: none;
}
/* --------------------------------------
HEADER
-----------------------------------------*/
header{
  background-color: #051d2e;
  position: relative;
  z-index: 5000;
  height: 250px;
}
header .logo{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  width: 35%;
}
header .logo img{
  width: 100%;
  height: auto;
}
header .nav{
  position: absolute;
  width: 100%;
  padding: 10px 30px;
  padding-left: 60px;
  padding-right: 60px;
  bottom: -57px;
  background-color: rgba(74, 122, 151, 0.2);
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  border-top: 2px solid #59839e;
}
header .nav.nobg{
  background-color: rgba(255, 255, 255, 0.8) !important;
}
header .nav ul{
  display: flex;
  align-items: center;
  font-size: 14px;
}
header .nav ul#menu li a{
  color: #051d2e;
}
header .nav ul#menu li a.highlight{
  color: #ed6d20;
}
header .nav ul#menu li a:hover{
  color: #ed6d20;
}
header .nav.nobag ul#menu li a:hover{
  color: #ed6d20;
}
header .nav ul#menu li {
  border-right: 1px solid #59839e;
  padding-right: 10px; 
  padding-left: 10px;
}
header .nav ul#menu li:last-child {
  border-right: none; /* remove border on last item */
}
header .nav ul.misc li{
  padding: 0 10px;
}
header .nav ul.misc img{
  width: auto;
  height: 18px;
}
header .nav ul.misc a.btn-standard{
  display: block;
  border: 1px solid #ed6d20;
  color: #ed6d20;
  padding: 5px 15px;
}
header .nav ul.misc a.btn-standard:hover{
  display: block;
  background-color: #f5daae;
  border: 1px solid #ed6d20;
  color: #ed6d20;
  padding: 5px 15px;
}
/* --------------------------------------
MAINBANNER
-----------------------------------------*/
.mainbanner{
  position: relative;
}
.mainbanner .quote{
  position: absolute;
  background-color: rgba(71, 122, 151, 0.6);
  top: 30%;
  left: 0;
  width: 33%;
  padding: 40px 50px;
}
.mainbanner .quote h3{
  font-weight: 500;
  color: #fff;
  padding-left: 20px;
  padding-bottom: 10px;
  font-size: 30px;
}
.mainbanner .quote p{
  font-size: 25px;
  padding-left: 20px;
  color: #fff;
  line-height: 45px;
  font-weight: 300;
}
.mainbanner .quote .btn-standard{
  border: 1px solid #fff;
  display: inline-block;
  padding: 15px 45px;
  color: #fff;
  margin-top: 20px;
  margin-left: 20px;
}
.mainbanner .quote a.btn-standard:hover{
  border: 1px solid #fff;
  background-color: rgba(245, 218, 174, 0.6);
  display: inline-block;
  padding: 15px 45px;
  color: #fff;
  margin-top: 20px;
}

ul.bul-list{
  padding: 0px 40px;
  padding-bottom: 20px;
  font-size: 20px;
}
ul.bul-list li {
  position: relative;
  color: #53585f;
  padding-left: 32px;
  line-height: 40px;
}
ul.bul-list li::before {
  content: "■"; /* square bullet */
  position: absolute;
  left: 0;
  top: -4px;
  color: #d6b887;
  font-size: 32px;
}
ul.bul-list li ul li ul{
  font-size: 20px;
}
ul.bul-list li ul li ul li{
  padding-left: 32px;
  line-height: 40px;
}
ul.bul-list li ul li ul li::before {
  font-size: 32px;
}

ul.bul-list-arrow{
  padding: 0px 0px;
  padding-bottom: 20px;
  font-size: 20px;
}
ul.bul-list-arrow li {
  position: relative;
  color: #53585f;
  padding-left: 32px;
  line-height: 40px;
}
ul.bul-list-arrow li a {
  color: #53585f;
}
ul.bul-list-arrow li::before {
  content: "▸";  /* small arrowhead */
  position: absolute;
  left: 0;
  top: -4px;
  color: #d6b887;
  font-size: 32px;
}
ul.bul-list-arrow li ul li ul{
  font-size: 20px;
}
ul.bul-list-arrow li ul li ul li{
  padding-left: 32px;
  line-height: 40px;
}
ul.bul-list-arrow li ul li ul li::before {
  font-size: 32px;
}

ul.bul-list-sml{
  padding: 0px 0px;
  padding-bottom: 20px;
  font-size: 16px;
}
ul.bul-list-sml li {
  position: relative;
  color: #53585f;
  padding-left: 32px;
  line-height: 40px;
}
ul.bul-list-sml li::before {
  content: "■"; /* square bullet */
  position: absolute;
  left: 0;
  top: -4px;
  color: #d6b887;
  font-size: 24px;
}
ul.bul-list-sml li ul li ul{
  font-size: 16px;
}
ul.bul-list-sml li ul li ul li{
  padding-left: 32px;
  line-height: 40px;
}
ul.bul-list-sml li ul li ul li::before {
  font-size: 24px;
}


/* --------------------------------------
MAINCONTENT
-----------------------------------------*/
.maincontent{
  padding: 40px 0;
  padding-left: 20px;
  padding-right: 20px;
}
.maincontent a:hover{
  color: #ed6d20 !important;
}
.maincontent.spacetopbig{
  padding-top: 120px;
}
.maincontent .introblk h1{
  font-size: 50px;
  color: #4a7a97;
  padding-bottom: 30px;
}
.maincontent .introblk h2{
  font-size: 36px;
  color: #4a7a97;
  padding-bottom: 30px;
}
.maincontent .introblk h3{
  font-size: 24px;
  color: #4a7a97;
  padding-bottom: 30px;
}
.maincontent .btn-standard{
  color: #4a7a97;
  border: 1px solid #4a7a97;
  padding: 15px 35px;
  display: inline-block;
  margin: 25px 0;
}
.maincontent .btn-standard:hover{
  background: #d1e0e7;
  color: #4a7a97 !important
}
.maincontent .photogal{
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 equal columns */
  align-items: center;                   /* vertical align */
  justify-items: center;                 /* horizontal align */
  gap: 25px;                             /* spacing */
  width: 100%;
}
.maincontent .sub.spacetop{
  padding-top: 20px;
}
.maincontent .sub h2,
.maincontent .sub h3,
.maincontent .sub h4{
  font-size: 50px;
  color: #4a7a97;
  padding-bottom: 30px;
}
.maincontent .sub h3{
  font-size: 36px;
}
.maincontent .sub h4{
  font-size: 30px;
}
.sub hr{
  border-color: #4a7a97;
  opacity: 1;
  margin: 50px 0;
}
.classblk{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.classblk .box{
  border: 1px solid #4a7a97;
}
.classblk .box .top{
  padding: 20px 30px;
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-template-areas:
    "num title"
    "num content";
  gap: 10px 18px;
  align-items: start;
}
.classblk .box .top > span{
  font-size: 100px;
  text-align: left;
  color: #4a7a97;
  grid-area: num;
  display: flex;
  align-items: center;
  justify-content: center;
}
.classblk .box .top > h3{
  grid-area: title;
  color: #4a7a97;
  padding: 5px 0 10px 0;
  font-size: 30px;
  margin: 0; /* Remove any margin to ensure proper alignment */}
.classblk .box .top > ul{
  grid-area: content;
}
.classblk .box .top ul li{
  padding-bottom: 7px;
}
.classblk .box .bottom{
  border-top: 1px solid #4a7a97;
  padding: 15px;
}
.classblk .box .bottom ul{
  display: flex;
  align-items: center;
  justify-content: center;
}
.classblk .box .bottom ul li{
  padding: 0 10px;
  border-right: 1px solid #4a7a97;
  text-transform: uppercase;
}
.classblk .box .bottom ul li a{
  color: #4a7a97;
}
.classblk .box .bottom ul li:last-child {
  border-right: none; /* remove border on last item */
}
.classdesc{
  display: flex;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid #dddddd;
}
.classdesc:first-of-type{
  padding-top: 0 !important;
}
.classdesc:last-child{
  border-bottom: none;
}
.classdesc img{
  flex: 0 0 auto; 
  width: 250px;
  height: auto;
  object-fit: cover;
}
.classdesc .desc{
  flex: 1; 
}
.classdesc .desc h4{
  padding-bottom: 20px;
}
.classdesc .price{
  flex: 0 0 auto; 
  border-left: 1px solid #4a7a97;
  padding-left: 50px;
  margin-top: 55px;
  min-width: 450px;
}
.classdesc .price table{
  font-size: 20px;
  font-weight: 300;
}
.classdesc .price table tr td:first-child{
  width: 40%;
}
.classdesc .price table tr td{
  padding: 8px 0;
  vertical-align: top;
}


.giftdesc{
  display: flex;
  gap: 60px;
  padding: 20px 0;
  border-bottom: 1px solid #dddddd;
}
.giftdesc:first-of-type{
  padding-top: 0 !important;
}
.giftdesc:last-child{
  border-bottom: none;
}
.giftdesc img{
  flex: 0 0 auto; 
  width: 150px;
  object-fit: cover;
}
.giftdesc .desc{
  flex: 1; 
}
.giftdesc .desc h4{
  padding-bottom: 20px;
}
.giftdesc .price{
  flex: 0 0 auto; 
  border-left: 1px solid #4a7a97;
  padding-left: 50px;
  margin-top: 5px;
  min-width: 450px;
}
.giftdesc .price table{
  font-size: 20px;
  font-weight: 300;
}
.giftdesc .price table tr td:first-child{
  width: 40%;
}
.giftdesc .price table tr td{
  padding: 8px 0;
  vertical-align: top;
}




.hi{
 padding: 50px 0;
 text-align: center;
}
.hi h4{
  font-size: 30px;
  font-weight:300;
  color: #4a7a97;
}
.hi p{
  font-size: 18px;
  color: #4a7a97;
}
.monogram{
  padding: 100px 0 110px 0;
}
.monogram p{
  border-bottom: 1px solid #4a7a97;
  position: relative;
}
.monogram span{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  display: block;
  position: absolute;
  background: #fff;
  padding: 0 40px;
}
.monogram span img{
  width: 60px;
  height: auto;
}
.classtbl{
  display: flex;
  border: 1px solid #4a7a97;
}
.classtbl h4{
  padding-bottom: 20px !important;
}
.classtbl h5{
  font-size: 30px;
  color: #4a7a97;
  padding-bottom: 20px;
}
.classtbl .imgcol{
  flex: 0 0 12%;  /* 30% fixed width for the image column */
  border-right: 1px solid #4a7a97;
}
.classtbl img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.classtbl .desc{
  flex: 0 0 45%;
  position: relative;
  border-right: 1px solid #4a7a97;
}
.classtbl .desc .wrapper,
.classtbl .sesh .wrapper{
  padding: 30px 20px 60px 20px;
}
.classtbl .desc a,
.classtbl .sesh a{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  padding: 15px;
  text-align: center;
  box-sizing: border-box;
  border-top: 1px solid #4a7a97;
  text-transform: uppercase;
  color: #59839e;
}
.classtbl .desc a:hover,
.classtbl .sesh a:hover{
  background-color: #d4dfe6;
}
.classtbl .sesh {
   flex: 1;  /* Make the session columns flexible */
   min-width: 180px;  /* Prevent them from becoming too small */
   position: relative;
   border-right: 1px solid #4a7a97;
}
.classtbl .sesh table{
   font-size: 20px;
  font-weight: 300;
}
.classtbl .sesh table tr td:first-child{
  width: 30%;
}
.classtbl .sesh table tr td{
  padding: 8px 0;
  vertical-align: top;
}
.classtbl .sesh .asterix{
  font-size: 14px;
}
.classtbl .sesh:last-child{
  border-right: none;
}
.photoblk{
  padding: 30px 0;
}
/* --------------------------------------
BGBLK
-----------------------------------------*/
.bgblk{
  position: relative;
}
.bgblk a.btn-standard{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  display: inline-block;
  padding: 17px 38px;
  border: 1px solid #fff;
  color: #fff;
  background-color: rgba(74, 122, 151, 0.6);
}
.bgblk a.btn-standard:hover{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  display: inline-block;
  padding: 17px 38px;
  border: 1px solid #fff;
  color: #fff;
  background-color: rgba(245, 218, 174, 0.6);
}


/* --------------------------------------
FOOTER
-----------------------------------------*/
footer{
  background-color: #051d2e;
  color: #fff;
  font-weight: 500;
}
.contactblk{
  background: #d2e0e8;
}
.contactblk .title{
  background: #051d2e;
  padding: 15px 0;
}
.contactblk .title h4{
  width: 95%;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  font-size: 20px;
  text-transform: uppercase;
}
.contactblk .intro p{
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  color: #0c1c2d;
  padding-bottom: 30px;
}
.contactblk .check p{
  font-size: 14px;
  color: #0c1c2d;
  line-height: 28px;
  display: flex;
  align-content: center;
  align-items: flex-start;
  gap: 10px;
}
.contactblk .check p input{
  margin-top: 5px;
}
.contactblk .check p a{
  color: #0c1c2d;
}
.contactblk .check p input.form-content{
 accent-color: #fcfcfc;
 background-color: #e5e5e5 !important;
}
.contactblk .indent{
  margin: 10px 0 10px 22px;
}
.contactblk .indent p{
  padding: 10px 0;
}
footer .top{
  border-top: 30px solid #7a95a6;
  border-bottom: 1px solid #fff;
}
footer .container-fluid{
  padding: 30px 0 30px 0;
}
footer p{
  padding-bottom: 12px;
  font-size: 16px;
}
footer ul{
  display: flex;
  gap: 10px;
}
footer ul li,
footer .top p{
  font-size: 14px;
  font-weight: 300;
}
footer .bottom p,
footer .bottom ul li{
  padding-bottom: 12px;
  font-size: 12px;
  font-weight: 300;
}
footer ul li a,
footer p a{
  color: #fff;
}
footer ul li::after{
  content: '|';
  padding-left: 10px;
}
footer ul li:last-child::after{
  content:'';
}


.fc .fc-daygrid-day {
  border-radius: 4px;
  cursor: pointer;
}

.fc .fc-daygrid-day.selected-date {
  background-color: #e7f1ff;
}

.fc .fc-daygrid-day.fc-day-today {
  background-color: #f8f9fa;
}
.fc-theme-standard td, .fc-theme-standard th {
  border:none;
}
.fc .fc-scrollgrid {
  border: none;
}
.fc a {
  color: #53585f !important; /* Change to your desired color */
}

/* Remove header bottom border (Sun–Sat row) */
.fc .fc-col-header,
.fc .fc-col-header-cell {
  border: none;
}
.fc .fc-daygrid-day-number {
  padding: 0;
  font-size: 13px;
  text-align: center;
}
.fc .fc-daygrid-day-frame {
  border: 1px solid #dee2e6;
  box-sizing: border-box;
  display: flex;
  align-items: center;     /* vertical */
  justify-content: center; /* horizontal */ 
  min-height: 30px;
  margin: 4px;
}
.fc .fc-daygrid-day-top {
  position: static;
  padding: 0;
}
.fc .fc-scrollgrid {
  border-collapse: separate;
}
/* FullCalendar v6+ day grid empty cells */
.fc-daygrid-day.fc-day-other {
    background: none  /* remove background */
    border: none     /* remove border */
}

/* Or target all day cells */
.fc-daygrid-day {
    background: none ;
    border: none ;
}
.sideby{
  display: flex;
  align-items: center;
  gap: 20px;
}
.radiobox span{
  display: block;
  padding: 5px 10px;
}


/* Remove borders except bottom */
.accordion-item {
  border: none;
  border-bottom: 1px solid #dee2e6; /* Bootstrap default border color */
}

/* Remove default background + box shadow */
.accordion-button {
  background-color: transparent;
  box-shadow: none;
  padding-left: 0;
}

/* Move arrow to the left */
.accordion-button::after {
  margin-left: 0;
  margin-right: 0.75rem;
  order: -1;
}

/* Ensure proper alignment */
.accordion-button {
  display: flex;
  align-items: center;
}

/* Optional: remove focus/active styles */
.accordion-button:focus {
  box-shadow: none;
}

/* Base button reset */
.accordion-button {
  background-color: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  padding-left: 0;
  margin-left: 0;
  font-size: 18px;
  font-weight: 600;
  color: #53585f;
}

.accordion-header {
  padding: 0 !important;
  margin: 0 !important;
}

/* Remove Bootstrap default arrow */
.accordion-button::after,
.accordion-button:not(.collapsed)::after,
.accordion-button:not(.collapsed) {
  background-image: none;
  background-color: transparent;
}

/* Custom arrow */
.accordion-button::before {
  content: "▸";
  color: #d6b887;
  font-size: 32px;
  margin-right: 0.75rem;
  margin-left: -35px;
  line-height: 1;
  transition: transform 0.25s ease;
}

/* Open state */
.accordion-button:not(.collapsed)::before {
  transform: rotate(90deg);
}
.accordion-body,
.accordion-body ul li{
  font-size: 18px;
  color: #53585f;
  padding: 0 0 0 30px;
}
.accordion-body p{
  font-size: 18px;
}
.accordion-body p,
.accordion-body ul{
  padding: 0 0 10px 0;
}

.accordion-body ul li{
  padding: 0;
  margin: 0;
}
.accordion-body ul li::before{
  content: "▸";
  color: #d6b887;
  margin-right: 0.75rem;
  font-size: 30px;
}
.accordion-button:not(.collapsed) {
  color: #53585f;
  background-color: transparent;
}

/* --------------------------------------
WHATSAPP
-----------------------------------------*/
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .whatsapp-float img {
    width: 40px;
    height: 40px;
    display: block;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
  }


  /* Responsive 16:9 wrapper */
    .video-wrap {
      width: 100%;
 
    }
    .ratio-16x9 {
      position: relative;
      width: 100%;
      padding-top: 56.25%; /* 16:9 */
      background: #000;
      overflow: hidden;
    }
    .ratio-16x9 iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }