*, figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input, select {
  border: none;
  box-shadow: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
  color: #000000;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul li, ol li {
  list-style: none;
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
}

body {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: #000000;
  line-height: 1.3;
  font-weight: 400;
  overflow-x: hidden;
}
@media screen and (max-width: 1440px) {
  body {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}
body.hiddenoverflow {
  overflow: hidden;
}
body.comingsoonpage {
  background: #FFFBF6;
}

header {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  padding: 0 50px;
  z-index: 9999;
  padding-top: 20px;
}
@media screen and (max-width: 1499px) {
  header {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  header {
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  header .container-fluid {
    padding: 0;
  }
}

.headerwraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #55142A;
  padding: 10px 70px;
  border-radius: 50px;
  position: relative;
}
@media screen and (max-width: 1499px) {
  .headerwraper {
    padding: 10px 40px;
  }
}
@media screen and (max-width: 1199px) {
  .headerwraper {
    padding: 10px 30px;
    border-radius: 30px;
  }
}
@media screen and (max-width: 991px) {
  .headerwraper {
    border-radius: 10px;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .headerwraper {
    border-radius: 0px;
  }
}
.headerwraper .mainlogo {
  position: relative;
  top: -5px;
}
@media screen and (max-width: 1199px) {
  .headerwraper .mainlogo img {
    width: 180px;
  }
}
@media screen and (max-width: 991px) {
  .headerwraper .mainlogo img {
    width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .headerwraper .mainlogo img {
    width: 200px;
  }
}
.headerwraper .openmenu {
  width: 30px;
  height: 28px;
  border-top: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  position: relative;
  display: none;
}
@media screen and (max-width: 991px) {
  .headerwraper .openmenu {
    display: block;
  }
}
.headerwraper .openmenu::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  content: "";
  transform: translateY(-50%) rotate(0deg);
}
.headerwraper .openmenu::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  content: "";
  transform: translateY(-50%) rotate(0deg);
}
.headerwraper .m-menu-opt {
  display: none;
}
@media screen and (max-width: 767px) {
  .headerwraper .m-menu-opt {
    display: block;
  }
}
.headerwraper .m-menu-opt .headerbtn {
  margin-right: 0;
  padding: 15px 40px 15px 15px;
  font-size: 15px;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .headerwraper .m-menu-opt .headerbtn {
    display: block;
  }
}
.headerwraper.menuopened .openmenu {
  border: none;
}
.headerwraper.menuopened .openmenu::before {
  width: 115%;
  transform: translateY(-50%) rotate(-45deg);
}
.headerwraper.menuopened .openmenu::after {
  width: 115%;
  transform: translateY(-50%) rotate(45deg);
}

@keyframes movearrow {
  0% {
    right: 10px;
  }
  20% {
    right: 6px;
  }
  80% {
    right: 14px;
  }
  100% {
    right: 10px;
  }
}
@media screen and (min-width: 992px) {
  .mainmenu {
    display: block !important;
  }
}
@media screen and (max-width: 991px) {
  .mainmenu {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    right: 0px;
    background: #55142A;
    border-radius: 10px;
    padding: 20px;
    width: 290px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
}
@media screen and (max-width: 767px) {
  .mainmenu {
    width: 100%;
  }
}
.mainmenu ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .mainmenu ul {
    display: block;
  }
}
.mainmenu ul li {
  margin: 0 20px;
}
@media screen and (max-width: 1499px) {
  .mainmenu ul li {
    margin: 0 15px;
  }
}
@media screen and (max-width: 1199px) {
  .mainmenu ul li {
    margin: 0 10px;
  }
}
@media screen and (max-width: 991px) {
  .mainmenu ul li {
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.mainmenu ul li a {
  font-size: 20px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  color: #FFFFFF;
  letter-spacing: 2px;
  display: inline-block;
}
@media screen and (max-width: 1499px) {
  .mainmenu ul li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .mainmenu ul li a {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 991px) {
  .mainmenu ul li a {
    font-size: 20px;
    letter-spacing: 2px;
  }
}

.mainslider {
  height: 940px;
  position: relative;
  overflow: hidden;
  padding-top: 160px;
}
@media screen and (max-width: 1199px) {
  .mainslider {
    padding-top: 120px;
    height: 750px;
  }
}
@media screen and (max-width: 767px) {
  .mainslider {
    height: 520px;
    padding-top: 90px;
  }
}
.mainslider .bg-base {
  position: absolute;
  inset: 0;
  background: #0f172a;
  z-index: 0;
  transition: background 0.5s ease;
  text-align: center;
  padding-top: 160px;
  height: 100%;
}
.mainslider .bg-base img {
  width: auto;
  max-width: 100%;
  height: 80%;
  margin-top: 5%;
}
.mainslider .bg-animate {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.mainslider .bg-circle {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0.6;
}
.mainslider .bannercaptionwrap {
  text-align: center;
  padding: 0 15px;
}
.mainslider .bannercaptionwrap img {
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .mainslider .bannercaptionwrap img {
    max-width: 75%;
  }
}
@media screen and (max-width: 399px) {
  .mainslider .bannercaptionwrap img {
    max-width: 90%;
  }
}
@media screen and (max-width: 374px) {
  .mainslider .bannercaptionwrap img {
    max-width: 100%;
  }
}
.mainslider .bannercaptionwrap h2 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 90px;
  text-transform: uppercase;
}
@media screen and (max-width: 1499px) {
  .mainslider .bannercaptionwrap h2 {
    font-size: 70px;
  }
}
@media screen and (max-width: 1199px) {
  .mainslider .bannercaptionwrap h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
  .mainslider .bannercaptionwrap h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 374px) {
  .mainslider .bannercaptionwrap h2 {
    font-size: 26px;
  }
}
.mainslider .bannercaptionwrap p {
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
}
@media screen and (max-width: 1499px) {
  .mainslider .bannercaptionwrap p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .mainslider .bannercaptionwrap p {
    font-size: 14px;
  }
}
@media screen and (max-width: 374px) {
  .mainslider .bannercaptionwrap p {
    font-size: 13px;
  }
}
.mainslider .swiper-slide-prev, .mainslider .swiper-slide-next {
  opacity: 0.4;
  transform: scale(0.7);
}
.mainslider .swiper-slide-prev h2, .mainslider .swiper-slide-prev p, .mainslider .swiper-slide-next h2, .mainslider .swiper-slide-next p {
  opacity: 0;
}
.mainslider .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}
.mainslider .swiper-slide-active h2, .mainslider .swiper-slide-active p {
  opacity: 1;
}
.mainslider .swiper-slide-active img {
  animation: bounceeff 5s linear infinite;
  position: relative;
}
.mainslider .swiper-pagination {
  display: block;
  width: 100%;
}
.mainslider .swiper-pagination .swiper-pagination-bullet {
  background: #d9d9d9;
  opacity: 1;
  width: 14px;
  height: 15px;
  margin: 0 3px;
}
.mainslider .swiper-pagination .swiper-pagination-bullet-active {
  background: #55142A;
}
.mainslider .slide1 .bannercaptionwrap h2, .mainslider .slide1 .bannercaptionwrap p {
  color: #005318;
}
.mainslider .slide2 .bannercaptionwrap h2, .mainslider .slide2 .bannercaptionwrap p {
  color: #380013;
}
.mainslider .slide3 .bannercaptionwrap h2, .mainslider .slide3 .bannercaptionwrap p {
  color: #013468;
}

.animate-bg {
  animation: spreadBg 1s ease forwards;
}

@keyframes spreadBg {
  to {
    transform: translate(-50%, -50%) scale(50);
  }
}
@keyframes bounceeff {
  0% {
    top: 0;
    transform: rotate(0deg);
  }
  25% {
    top: -15px;
    transform: rotate(1deg);
  }
  50% {
    top: 0px;
    transform: rotate(0deg);
  }
  75% {
    top: 15px;
    transform: rotate(-1deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}
.pageheading {
  font-size: 80px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 1499px) {
  .pageheading {
    font-size: 70px;
  }
}
@media screen and (max-width: 1199px) {
  .pageheading {
    font-size: 60px;
  }
}
@media screen and (max-width: 991px) {
  .pageheading {
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
  .pageheading {
    font-size: 24px;
  }
}
@media screen and (max-width: 374px) {
  .pageheading {
    font-size: 22px;
  }
}

.service-sec {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 1499px) {
  .service-sec {
    padding: 70px 0;
  }
}
@media screen and (max-width: 1199px) {
  .service-sec {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .service-sec {
    padding: 40px 0;
  }
}
.service-sec .container {
  position: relative;
  z-index: 2;
}
.service-sec::before {
  position: absolute;
  top: 20%;
  left: 0;
  animation: image360 80s infinite linear;
  content: "";
  background: url("../images/service-mv-icn.png") center center no-repeat;
  background-size: 90%;
  width: 365px;
  height: 371px;
  margin-left: -150px;
}
@media screen and (max-width: 1199px) {
  .service-sec::before {
    width: 300px;
  }
}
@media screen and (max-width: 991px) {
  .service-sec::before {
    width: 250px;
    top: 5%;
  }
}
.service-sec::after {
  position: absolute;
  top: 10%;
  right: -180px;
  animation: image360 60s infinite linear;
  content: "";
  background: url("../images/service-mv-icn.png") center center no-repeat;
  background-size: 90%;
  width: 365px;
  height: 371px;
}
@media screen and (max-width: 1199px) {
  .service-sec::after {
    width: 300px;
  }
}
@media screen and (max-width: 991px) {
  .service-sec::after {
    width: 250px;
    top: 35%;
  }
}

@keyframes image360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.servicestabs {
  text-align: center;
}

.servicetablist {
  display: inline-block;
  align-items: center;
  border: 1px solid #D4D4D4;
  border-radius: 15px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .servicetablist {
    display: flex;
    overflow: hidden;
    overflow-x: scroll;
    border: none;
    border-radius: 0;
  }
}
@media screen and (max-width: 991px) {
  .servicetablist {
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .servicetablist {
    margin: 0 0 20px;
  }
}
.servicetablist a {
  display: inline-block;
  padding: 20px 40px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: "Playfair Display", serif;
  color: #000000;
  background: transparent;
  border-radius: 15px;
  cursor: pointer;
}
@media screen and (max-width: 1199px) {
  .servicetablist a {
    font-size: 24px;
  }
}
@media screen and (max-width: 991px) {
  .servicetablist a {
    font-size: 20px;
    letter-spacing: 1px;
    padding: 15px 20px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .servicetablist a {
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 400;
  }
}
.servicetablist a:hover {
  background: rgba(85, 20, 42, 0.1);
}
.servicetablist a.active {
  color: #FFFFFF;
  background: #55142A;
}

@media screen and (min-width: 767px) {
  .servicelistwrap .col-6 {
    padding: 0 40px;
  }
}
@media screen and (min-width: 991px) {
  .servicelistwrap .col-6 {
    padding: 0 15px;
  }
}
@media screen and (min-width: 1200px) {
  .servicelistwrap .col-6 {
    padding: 0 30px;
  }
}

.serviceitem {
  display: block;
}
@media screen and (max-width: 991px) {
  .serviceitem {
    margin-bottom: 40px;
  }
}
.serviceitem figure {
  padding: 0;
  border: 1px solid #000000;
  border-width: 1px 1px 0 1px;
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 1199px) {
  .serviceitem figure {
    height: 230px;
  }
}
@media screen and (max-width: 767px) {
  .serviceitem figure {
    border-width: 1px;
    height: 200px;
  }
}
@media screen and (max-width: 374px) {
  .serviceitem figure {
    height: 160px;
  }
}
.serviceitem figure img {
  width: 50%;
  position: relative;
  top: 15%;
  right: 10%;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
  .serviceitem figure img {
    top: 0;
    right: 0;
    width: 60%;
    max-height: 80%;
  }
}
.serviceitem figure:before {
  position: absolute;
  z-index: 1;
  width: 30%;
  height: 2px;
  bottom: -1px;
  left: 0;
  content: "";
  background: #000000;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
  .serviceitem figure:before {
    display: none;
  }
}
.serviceitem figure:after {
  position: absolute;
  z-index: 1;
  width: 90%;
  height: 85%;
  bottom: -5px;
  left: -10px;
  background: rgb(246, 246, 246);
  content: "";
  border-radius: 50% 50% 0 0;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
  .serviceitem figure:after {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}
.serviceitem h3 {
  font-size: 28px;
  font-weight: 800;
  font-family: "Playfair Display", serif;
  letter-spacing: 2px;
  padding: 30px 0 0;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 1199px) {
  .serviceitem h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .serviceitem h3 {
    font-size: 22px;
    padding: 20px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .serviceitem h3 {
    font-size: 16px;
    padding: 10px 0 0;
  }
}
.serviceitem:hover figure::before {
  width: 100%;
}
.serviceitem:hover figure:after {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  border-radius: 0;
}
.serviceitem:hover figure img {
  width: 60%;
  top: 0;
  right: 0;
}

.planned {
  background: #FFFFFF url("../images/plannedbg.png") top center repeat;
  padding: 90px 0;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .planned {
    padding: 200px 0;
  }
}

.plannedlistwrap {
  position: relative;
  z-index: 5;
}
.plannedlistwrap div {
  display: block;
  text-align: center;
  color: #000000;
}
.plannedlistwrap div.active {
  color: #55142A;
}
.plannedlistwrap div span {
  font-size: 130px;
  line-height: 100px;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 1499px) {
  .plannedlistwrap div span {
    font-size: 90px;
    line-height: 75px;
  }
}
@media screen and (max-width: 1199px) {
  .plannedlistwrap div span {
    font-size: 80px;
    line-height: 65px;
  }
}
@media screen and (max-width: 991px) {
  .plannedlistwrap div span {
    font-size: 60px;
    line-height: 45px;
  }
}
@media screen and (max-width: 767px) {
  .plannedlistwrap div span {
    font-size: 36px;
    line-height: 35px;
  }
}

.planneditemwrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.planneditemwrap figure {
  position: absolute;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 1499px) {
  .planneditemwrap figure {
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 1199px) {
  .planneditemwrap figure {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .planneditemwrap figure {
    width: 180px;
    height: 180px;
  }
}
.planneditemwrap figure::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/planned/planneditembg.png") center center no-repeat;
  background-size: 97%;
  content: "";
  animation: imgrotate 100s linear infinite;
}
.planneditemwrap figure img {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 80%;
  max-height: 80%;
  animation: imgbounce 2s linear infinite;
}
@media screen and (max-width: 991px) {
  .planneditemwrap figure img {
    max-width: 70%;
    max-height: 70%;
  }
}
.planneditemwrap.topleft figure:first-child {
  left: 2%;
  top: 5%;
}
@media screen and (max-width: 991px) {
  .planneditemwrap.topleft figure:first-child {
    left: -5%;
    top: 4%;
  }
}
.planneditemwrap.topleft figure:last-child {
  right: 2%;
  bottom: 5%;
}
@media screen and (max-width: 991px) {
  .planneditemwrap.topleft figure:last-child {
    right: -5%;
    bottom: 4%;
  }
}
.planneditemwrap.bottomleft figure:first-child {
  left: 2%;
  bottom: 5%;
}
@media screen and (max-width: 991px) {
  .planneditemwrap.bottomleft figure:first-child {
    left: -5%;
    bottom: 4%;
  }
}
.planneditemwrap.bottomleft figure:last-child {
  right: 2%;
  top: 5%;
}
@media screen and (max-width: 991px) {
  .planneditemwrap.bottomleft figure:last-child {
    right: -5%;
    top: 4%;
  }
}

@keyframes imgbounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes imgrotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rooted {
  padding: 100px 0 150px;
}
@media screen and (max-width: 767px) {
  .rooted {
    padding: 0 15px 50px 15px;
    text-align: center;
  }
}
.rooted .container-fluid {
  padding: 0 190px;
}
@media screen and (max-width: 1499px) {
  .rooted .container-fluid {
    padding: 0 100px;
  }
}
@media screen and (max-width: 1199px) {
  .rooted .container-fluid {
    padding: 0 15px;
  }
}
.rooted h2 {
  margin: 0;
  line-height: 1;
  font-size: 120px;
}
@media screen and (max-width: 1499px) {
  .rooted h2 {
    font-size: 90px;
  }
}
@media screen and (max-width: 1199px) {
  .rooted h2 {
    font-size: 60px;
  }
}
@media screen and (max-width: 991px) {
  .rooted h2 {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .rooted h2 {
    font-size: 32px;
  }
}
.rooted .rootedpara2 {
  padding: 40px 0 0;
}
@media screen and (min-width: 992px) {
  .rooted .rootedpara2 {
    display: none;
  }
}
.rooted .rootedpara {
  padding: 50px 0 50px 40px;
}
@media screen and (max-width: 1199px) {
  .rooted .rootedpara {
    padding: 80px 0;
  }
}
@media screen and (max-width: 991px) {
  .rooted .rootedpara {
    display: none;
  }
}
.rooted .rootedpara a {
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .rooted .rootedpara a {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .rooted .rootedpara a {
    margin-bottom: 20px;
  }
}

.rootedabovetxt {
  position: relative;
  bottom: -70px;
  z-index: 5;
}
@media screen and (max-width: 1499px) {
  .rootedabovetxt {
    bottom: -50px;
  }
}

.rootedbelowtxt {
  margin-top: -70px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1499px) {
  .rootedbelowtxt {
    margin-top: -50px;
  }
}

.mutedvideo video {
  width: 100%;
  border: none;
}

.rootedfirsticon {
  position: relative;
  display: inline-block;
  margin-left: -70px;
  animation: image360 50s infinite linear;
}
@media screen and (max-width: 991px) {
  .rootedfirsticon {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .rootedfirsticon {
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .rootedfirsticon img {
    width: 100px;
  }
}
.rootedfirsticon svg {
  position: absolute;
  width: 170px;
  height: 170px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .rootedfirsticon svg {
    width: 130px;
    height: 130px;
  }
}
.rootedfirsticon svg text {
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.headerbtn {
  padding: 10px 40px 10px 25px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  border-radius: 10px;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
}
@media screen and (max-width: 1499px) {
  .headerbtn {
    font-size: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .headerbtn {
    font-size: 13px;
    padding: 8px 40px 8px 15px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 991px) {
  .headerbtn {
    margin-left: auto;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .headerbtn {
    display: none;
  }
}
.headerbtn svg {
  width: 24px;
  right: 10px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  transition: all 0.1s ease-in-out;
}
.headerbtn:hover svg {
  animation: movearrow 1s linear infinite;
}

.ctabtn {
  padding: 15px 45px 15px 25px;
  color: #FFFFFF;
  display: inline-block;
  align-items: center;
  border-radius: 10px;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  background: #55142A;
  border: 1px solid #55142A;
}
@media screen and (max-width: 1499px) {
  .ctabtn {
    font-size: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .ctabtn {
    font-size: 14px;
    padding: 12px 40px 12px 15px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 767px) {
  .ctabtn {
    font-size: 12px;
  }
}
.ctabtn svg {
  width: 24px;
  right: 10px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  transition: all 0.1s ease-in-out;
  fill: #FFFFFF;
}
.ctabtn:hover {
  color: #FFFFFF;
}
.ctabtn:hover svg {
  animation: movearrow 1s linear infinite;
}
.ctabtn.outlined {
  background: none;
  color: #55142A;
  border-color: #55142A;
}
.ctabtn.outlined svg {
  fill: #55142A;
}
.ctabtn.bkbtn {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 10px;
}

button.headerbtn {
  border: none;
  box-shadow: none;
  outline: none;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  button.headerbtn {
    margin-left: 0;
  }
}

button.ctabtn {
  box-shadow: none;
  outline: none;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  button.ctabtn {
    margin-left: 0;
  }
}

.our-events {
  background: rgb(252, 250, 248) url("../images/plannedbg.png") top center repeat;
  padding: 45px 0;
  position: relative;
}
.our-events::before {
  position: absolute;
  top: 70px;
  left: 8%;
  animation: image360 80s infinite linear;
  content: "";
  background: url("../images/cercle-green.png") center center no-repeat;
  background-size: 90%;
  width: 130px;
  height: 130px;
}
@media screen and (max-width: 1199px) {
  .our-events::before {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .our-events::before {
    display: none;
  }
}
.our-events::after {
  position: absolute;
  top: 70px;
  right: 8%;
  animation: image360 60s infinite linear;
  content: "";
  background: url("../images/cercle-brown.png") center center no-repeat;
  background-size: 90%;
  width: 130px;
  height: 130px;
}
@media screen and (max-width: 1199px) {
  .our-events::after {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .our-events::after {
    display: none;
  }
}

.eventslider {
  padding: 60px 0 0;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  height: 600px;
}
@media screen and (max-width: 1499px) {
  .eventslider {
    height: 550px;
  }
}
@media screen and (max-width: 767px) {
  .eventslider {
    height: 480px;
  }
}
.eventslider .swiper-slide {
  padding-top: 30px;
}
.eventslider .swiper-slide-active {
  padding: 0;
}
.eventslider .swiper-slide-active .eventcard {
  padding-bottom: 30px;
}
.eventslider .swiper-slide-active .eventcard figure {
  overflow-x: hidden;
  border-radius: 10px;
}
.eventslider .swiper-slide-active .eventcard figure img {
  width: 116%;
  margin-left: -8%;
}
.eventslider .event-pagination {
  display: flex;
  justify-content: center;
  width: 190px;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  padding: 40px 0 0;
}
.eventslider .event-pagination .swiper-pagination-bullet {
  background: #d9d9d9;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 3px;
}
.eventslider .event-pagination .swiper-pagination-bullet-active {
  background: #55142A;
}
.eventslider .event-prev {
  position: absolute;
  bottom: 0;
  transform: rotate(180deg);
  left: 50%;
  margin-left: -122px;
}
.eventslider .event-prev svg {
  width: 24px;
  fill: #55142A;
}
.eventslider .event-next {
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: 100px;
}
.eventslider .event-next svg {
  width: 24px;
  fill: #55142A;
}

.eventcard {
  display: block;
  border-radius: 20px;
  padding: 10px;
  border: 1px solid #000000;
}
.eventcard.yellow {
  border-color: #F4A300;
}
.eventcard.yellow span {
  color: #F4A300;
}
.eventcard.yellow span:after {
  background: #F4A300;
}
.eventcard.purple {
  border-color: #8233C5;
}
.eventcard.purple span {
  color: #8233C5;
}
.eventcard.purple span:after {
  background: #8233C5;
}
.eventcard.orange {
  border-color: #FF5D4D;
}
.eventcard.orange span {
  color: #FF5D4D;
}
.eventcard.orange span:after {
  background: #FF5D4D;
}
.eventcard.lavender {
  border-color: #1CA8A3;
}
.eventcard.lavender span {
  color: #1CA8A3;
}
.eventcard.lavender span:after {
  background: #1CA8A3;
}
.eventcard.pink {
  border-color: #E93C7E;
}
.eventcard.pink span {
  color: #E93C7E;
}
.eventcard.pink span:after {
  background: #E93C7E;
}
.eventcard figure {
  overflow: hidden;
}
.eventcard figure img {
  width: 100%;
  margin: 0;
  border-radius: 10px;
  transition: all 0.1s ease-in-out;
}
.eventcard .eventtag {
  font-size: 14px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  padding-left: 12px;
  position: relative;
  margin-top: 20px;
  display: inline-block;
}
.eventcard .eventtag:after {
  position: absolute;
  width: 6px;
  height: 6px;
  top: 5px;
  left: 0;
  border-radius: 50%;
  background: #000000;
  content: "";
}
.eventcard h3 {
  font-size: 30px;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  padding: 20px 0 10px;
  letter-spacing: 2px;
  min-height: 102px;
}
@media screen and (max-width: 767px) {
  .eventcard h3 {
    font-size: 20px;
    min-height: 78px;
  }
}

.accordian-sec {
  padding: 50px 190px;
  position: relative;
  background: url("../images/plannedbg.png") center center repeat;
}
@media screen and (max-width: 1499px) {
  .accordian-sec {
    padding: 50px 100px;
  }
}
@media screen and (max-width: 1199px) {
  .accordian-sec {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 767px) {
  .accordian-sec {
    padding: 20px 10px;
  }
}
.accordian-sec::before {
  position: absolute;
  top: 3%;
  left: 0;
  animation: image360 80s infinite linear;
  content: "";
  background: url("../images/service-mv-icn.png") center center no-repeat;
  background-size: 90%;
  width: 365px;
  height: 371px;
  margin-left: -150px;
}
@media screen and (max-width: 1199px) {
  .accordian-sec::before {
    width: 300px;
  }
}
@media screen and (max-width: 991px) {
  .accordian-sec::before {
    width: 250px;
    top: 5%;
  }
}
.accordian-sec::after {
  position: absolute;
  top: 7%;
  right: 15%;
  animation: image360 80s infinite linear;
  content: "";
  background: url("../images/fireworks.png") center center no-repeat;
  background-size: 100%;
  width: 186px;
  height: 186px;
}
.accordian-sec .pageheading {
  position: relative;
  z-index: 5;
}
.accordian-sec .h-accordion {
  display: flex;
  width: 100%;
  height: 550px;
  overflow: hidden;
  gap: 10px;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 1499px) {
  .accordian-sec .h-accordion {
    height: 450px;
  }
}
@media screen and (max-width: 1199px) {
  .accordian-sec .h-accordion {
    height: 380px;
  }
}
@media screen and (max-width: 991px) {
  .accordian-sec .h-accordion {
    display: block;
    height: auto;
    gap: 0;
  }
}
.accordian-sec .h-accordion .h-item {
  display: flex;
  width: 80px;
  color: #fff;
  transition: width 0.2s ease;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .accordian-sec .h-accordion .h-item {
    width: 60px;
  }
}
@media screen and (max-width: 991px) {
  .accordian-sec .h-accordion .h-item {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
.accordian-sec .h-accordion .h-item .h-title {
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  padding: 30px 10px;
  font-size: 40px;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  letter-spacing: 2px;
  cursor: pointer;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  margin: 0 5px 0 0;
  position: relative;
}
@media screen and (max-width: 1499px) {
  .accordian-sec .h-accordion .h-item .h-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1199px) {
  .accordian-sec .h-accordion .h-item .h-title {
    font-size: 26px;
    min-width: 60px;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 991px) {
  .accordian-sec .h-accordion .h-item .h-title {
    writing-mode: unset;
    transform: rotate(0deg);
    margin: 0 0 1px 0;
    justify-content: start;
    font-size: 22px;
    padding: 15px 20px;
  }
}
@media screen and (max-width: 767px) {
  .accordian-sec .h-accordion .h-item .h-title {
    font-size: 16px;
  }
}
.accordian-sec .h-accordion .h-item .h-title::after {
  width: 12px;
  height: 12px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  right: 20px;
  top: 25px;
  content: "";
  position: absolute;
  transform: rotate(-135deg);
}
@media screen and (min-width: 991px) {
  .accordian-sec .h-accordion .h-item .h-title::after {
    display: none;
  }
}
.accordian-sec .h-accordion .h-item .h-content {
  padding: 40px;
  opacity: 0;
  border-radius: 25px;
  transform: translateX(30px);
  transition: 0.4s;
  width: 100%;
  display: flex;
}
@media screen and (max-width: 1199px) {
  .accordian-sec .h-accordion .h-item .h-content {
    padding: 15px;
  }
}
@media screen and (max-width: 991px) {
  .accordian-sec .h-accordion .h-item .h-content {
    display: none;
    opacity: 1;
  }
}
.accordian-sec .h-accordion .h-item .h-content figure {
  width: 45%;
  min-width: 45%;
  margin-right: 40px;
}
@media screen and (max-width: 1199px) {
  .accordian-sec .h-accordion .h-item .h-content figure {
    margin-right: 15px;
  }
}
@media screen and (max-width: 991px) {
  .accordian-sec .h-accordion .h-item .h-content figure {
    margin-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .accordian-sec .h-accordion .h-item .h-content figure {
    margin-right: 0;
    width: 100%;
    margin-bottom: 15px;
  }
}
.accordian-sec .h-accordion .h-item .h-content figure img {
  width: 100%;
  border-radius: 15px;
}
.accordian-sec .h-accordion .h-item .h-content .h-content-detail {
  padding-right: 10%;
}
@media screen and (max-width: 1499px) {
  .accordian-sec .h-accordion .h-item .h-content .h-content-detail {
    padding: 0;
  }
}
.accordian-sec .h-accordion .h-item .h-content .h-content-detail h3 {
  font-size: 60px;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media screen and (max-width: 1499px) {
  .accordian-sec .h-accordion .h-item .h-content .h-content-detail h3 {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .accordian-sec .h-accordion .h-item .h-content .h-content-detail h3 {
    font-size: 32px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .accordian-sec .h-accordion .h-item .h-content .h-content-detail h3 {
    font-size: 18px;
  }
}
.accordian-sec .h-accordion .h-item .h-content .h-content-detail p {
  margin-bottom: 20px;
  font-size: 21px;
}
@media screen and (max-width: 991px) {
  .accordian-sec .h-accordion .h-item .h-content .h-content-detail p {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .accordian-sec .h-accordion .h-item .h-content .h-content-detail p {
    font-size: 14px;
  }
}
.accordian-sec .h-accordion .h-item .h-content .h-content-detail p.byname {
  font-weight: 700;
}
.accordian-sec .h-accordion .h-item.active {
  width: 90%;
}
@media screen and (max-width: 991px) {
  .accordian-sec .h-accordion .h-item.active {
    width: 100%;
  }
}
.accordian-sec .h-accordion .h-item.active .h-title::after {
  transform: rotate(45deg);
  top: 20px;
}
.accordian-sec .h-accordion .h-item.active .h-content {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 991px) {
  .accordian-sec .h-accordion .h-item.active .h-content {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .accordian-sec .h-accordion .h-item.active .h-content {
    display: block;
  }
}
.accordian-sec .h-accordion .h-item.testimonial .h-title, .accordian-sec .h-accordion .h-item.testimonial .h-content {
  background: #F4C7A1;
  color: #000000;
}
.accordian-sec .h-accordion .h-item.leadership .h-title, .accordian-sec .h-accordion .h-item.leadership .h-content {
  background: #FFD44D;
  color: #000000;
}
.accordian-sec .h-accordion .h-item.events .h-title, .accordian-sec .h-accordion .h-item.events .h-content {
  background: #4A6FF8;
  color: #FFFFFF;
}

.marquee {
  width: 100%;
  overflow: hidden;
  background: #EDE8FF;
  padding: 30px 0;
  color: #000000;
}
@media screen and (max-width: 991px) {
  .marquee {
    padding: 20px 0;
  }
}

.marquee-track {
  display: flex;
}

.marquee-item {
  margin: 0 60px;
  color: #000000;
  font-size: 20px;
  white-space: nowrap;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 2px;
}
@media screen and (max-width: 1199px) {
  .marquee-item {
    margin: 0 30px;
  }
}
@media screen and (max-width: 991px) {
  .marquee-item {
    margin: 0 20px;
    font-size: 18px;
  }
}

footer {
  padding: 90px 0 60px;
  background: #55142A url("../images/footer-bg.png") center center no-repeat;
  color: #FFFFFF;
}
@media screen and (max-width: 991px) {
  footer {
    padding: 30px 0 30px;
  }
}
footer .container-fluid {
  padding: 0 190px;
}
@media screen and (max-width: 1499px) {
  footer .container-fluid {
    padding: 0 100px;
  }
}
@media screen and (max-width: 1199px) {
  footer .container-fluid {
    padding: 0 15px;
  }
}
@media screen and (min-width: 1199px) {
  footer .col-lg-5 {
    padding: 0 80px;
  }
}
@media screen and (min-width: 991px) {
  footer .col-lg-5 {
    padding: 0 30px;
  }
}
@media screen and (max-width: 991px) {
  footer .mbpadding {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
footer .footermenu li {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  footer .footermenu li {
    margin-bottom: 15px;
  }
}
footer .footermenu li:last-child {
  margin-bottom: 0;
}
footer .footermenu li a {
  font-size: 26px;
  font-weight: 500;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  color: #FFFFFF;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 1199px) {
  footer .footermenu li a {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  footer .footermenu li a {
    font-size: 14px;
  }
}
footer .footermenu li a::after {
  width: 0;
  height: 1px;
  background: #FFFFFF;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  transition: all 0.1s ease-in-out;
}
footer .footermenu li a:hover::after {
  width: 100%;
}
footer h4 {
  font-size: 26px;
  font-weight: 500;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 20px;
}
@media screen and (max-width: 1199px) {
  footer h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  footer h4 {
    font-size: 17px;
  }
}
footer p {
  color: #FFFFFF;
}
footer .contactinfo {
  padding-bottom: 30px;
}
footer .contactinfo li {
  display: flex;
  margin-bottom: 15px;
}
footer .contactinfo li svg {
  margin-right: 10px;
  width: 20px;
  fill: #FFFFFF;
}
footer .contactinfo li a {
  color: #FFFFFF;
  position: relative;
}
footer .contactinfo li a::after {
  width: 0;
  height: 1px;
  background: #FFFFFF;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  transition: all 0.1s ease-in-out;
}
footer .contactinfo li a:hover::after {
  width: 100%;
}

.footerform .form-floating {
  margin-top: 30px;
}
.footerform .form-floating > .form-control {
  background: transparent;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 18px;
  height: auto;
}
.footerform .form-floating > label {
  padding: 10px 0;
  left: 20px;
  height: auto;
  color: #FFFFFF;
  font-size: 18px;
}
.footerform .form-floating > label::after {
  display: none;
}
.footerform .form-floating > .form-control:not(:-moz-placeholder) ~ label {
  padding: 0 5px;
  top: -8px;
  background: #55142A;
  color: #FFFFFF;
}
.footerform .form-floating > .form-control-plaintext ~ label, .footerform .form-floating > .form-control:focus ~ label, .footerform .form-floating > .form-control:not(:placeholder-shown) ~ label, .footerform .form-floating > .form-select ~ label {
  padding: 0 5px;
  top: -8px;
  background: #55142A;
  color: #FFFFFF;
}
.footerform .checkmark {
  display: flex;
  margin-top: 20px;
}
.footerform .checkmark input {
  width: 40px;
  margin-right: 10px;
}
.footerform .checkmark span {
  font-size: 14px;
}

.begin-journy {
  padding: 90px 190px;
  position: relative;
  background: #FFFBF0;
  overflow: hidden;
}
@media screen and (max-width: 1499px) {
  .begin-journy {
    padding: 70px 100px;
  }
}
@media screen and (max-width: 1199px) {
  .begin-journy {
    padding: 50px 15px;
  }
}
@media screen and (max-width: 767px) {
  .begin-journy {
    padding: 30px 10px;
  }
}

.startwithoption {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .startwithoption {
    margin-bottom: 0px;
  }
}
.startwithoption h5 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 767px) {
  .startwithoption h5 {
    font-size: 20px;
  }
}
.startwithoption label {
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 18px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  margin-right: 20px;
  border: 1px solid #B3B3B3;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .startwithoption label {
    margin-bottom: 20px;
    font-size: 12px;
    padding: 10px;
    border-radius: 6px;
    margin-right: 0;
  }
}
.startwithoption label:hover, .startwithoption label:focus {
  color: #000000;
}
.startwithoption .btn-check + .btn:hover {
  color: #000000;
  border-color: #B3B3B3;
}
.startwithoption .btn-check:checked + .btn, .startwithoption .btn.active, .startwithoption .btn.show, .startwithoption .btn:first-child:active, .startwithoption :not(.btn-check) + .btn:active {
  background: #55142A;
  border-color: #55142A;
}
.startwithoption .btn-check:checked + .btn:hover {
  color: #FFFFFF;
}

.getquotefirst input {
  border: none;
  padding: 0 10px;
  font-size: 18px;
  border-bottom: 1px solid #B3B3B3;
  min-width: 200px;
  width: auto;
  display: inline-block;
  background: none;
  height: 22px;
}
.getquotefirst input:focus, .getquotefirst input:hover {
  outline: none;
  box-shadow: none;
}
@media screen and (max-width: 991px) {
  .getquotefirst input.datefield {
    width: 160px;
    min-width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .getquotefirst input.datefield {
    width: 130px;
    min-width: 130px;
  }
}
.getquotefirst .paraform {
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .getquotefirst .paraform {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 32px;
  }
}
.getquotefirst .paraform strong {
  font-weight: 700;
  color: #55142A;
}

.filter-dropdown {
  min-width: 250px;
  display: inline-block;
  position: relative;
}
.filter-dropdown .search-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #B3B3B3;
  outline: none;
  background: none;
  padding: 0 10px;
  font-size: 18px;
}
.filter-dropdown .filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 180px;
  overflow-y: auto;
  position: absolute;
  top: 100%;
  display: none;
  width: 100%;
  z-index: 2;
  background: #FFFFFF;
  border: 1px solid #B3B3B3;
  padding: 10px;
  font-size: 18px;
}
.filter-dropdown .filter-list li {
  padding: 5px 10px;
  cursor: pointer;
  line-height: 1.3;
}
.filter-dropdown .filter-list li:hover {
  background: #f1f5f9;
}

.ftypeheading {
  font-size: 50px;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  margin-bottom: 40px;
  color: #000000;
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  .ftypeheading {
    font-size: 32px;
  }
}
@media screen and (max-width: 991px) {
  .ftypeheading {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .ftypeheading {
    margin-bottom: 15px;
    font-size: 20px;
  }
}

.selection-card {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .selection-card {
    padding: 20px;
  }
}
.selection-card .selection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
}
.selection-card .selection-header h5 {
  font-size: 24px;
  font-weight: 900;
  color: #55142a;
  margin: 0;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 767px) {
  .selection-card .selection-header h5 {
    font-size: 18px;
  }
}
.selection-card .selection-header .edit-selection-btn {
  background: #55142a;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.selection-card .selection-header .edit-selection-btn:hover {
  background: #3d0e1e;
}
.selection-card .selection-header .edit-selection-btn svg {
  width: 14px;
  height: 14px;
}
.selection-card .selection-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
}
.selection-card .selection-content .detail-item {
  font-size: 16px;
  color: #666;
}
.selection-card .selection-content .detail-item strong {
  color: #000000;
  font-weight: 700;
  margin-left: 5px;
}

.rooms-table-container {
  width: 100%;
  overflow-x: auto;
}
.rooms-table-container .rooms-requirement-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.rooms-table-container .rooms-requirement-table th, .rooms-table-container .rooms-requirement-table td {
  border: 1px solid #efefef;
  padding: 12px 15px;
  text-align: center;
  font-size: 15px;
}
.rooms-table-container .rooms-requirement-table th {
  font-weight: 600;
  color: #000000;
  background: #FFFFFF;
}
.rooms-table-container .rooms-requirement-table td {
  font-weight: 400;
  color: #333;
}
.rooms-table-container .rooms-requirement-table td span {
  display: inline-block;
  background: #f6f6f6;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: 600;
  min-width: 60px;
}
.rooms-table-container .rooms-requirement-table thead tr th:first-child,
.rooms-table-container .rooms-requirement-table tbody tr td:first-child {
  background: #f0f0f5;
  font-weight: 900;
  min-width: 100px;
  text-align: center;
  color: #000000;
}

.buttonwrapers {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .buttonwrapers {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .buttonwrapers span {
    display: block;
    padding: 10px 0;
  }
}

.price-rangewraper {
  display: flex;
  gap: 40px;
  align-items: start;
}
@media screen and (max-width: 1199px) {
  .price-rangewraper {
    gap: 15px;
  }
}
@media screen and (max-width: 991px) {
  .price-rangewraper {
    display: block;
  }
}
.price-rangewraper.inpopuplist {
  flex-wrap: wrap;
  gap: 20px;
  display: flex;
}
.price-rangewraper.inpopuplist .rangecards {
  width: calc(50% - 10px);
  margin: 0;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .price-rangewraper.inpopuplist .rangecards {
    width: 100%;
  }
}
.price-rangewraper.inpopuplist .rangecards input {
  opacity: 0;
  position: absolute;
  top: -50px;
}
.price-rangewraper.inpopuplist .rangecards .chekshow {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #55142A;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-rangewraper.inpopuplist .rangecards .chekshow svg {
  width: 12px;
  display: none;
}
.price-rangewraper.inpopuplist .rangecards input:checked ~ span {
  background: #55142A;
}
.price-rangewraper.inpopuplist .rangecards input:checked ~ span svg {
  display: block;
}

.rangecards {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #FFF7F3 0%, #EBD4C8 100%);
  padding: 15px 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .rangecards {
    padding: 15px;
  }
}
@media screen and (max-width: 991px) {
  .rangecards {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .rangecards .selectwraper {
    margin-bottom: 0;
  }
}
.rangecards p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px;
}
.rangecards.silvercard {
  background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
}
.rangecards.goldcard {
  background: linear-gradient(135deg, #fff7c8 0%, #f5e696 100%);
}

.selectwraper {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}
.selectwraper select {
  width: 100%;
  height: auto;
  font-size: 16px;
  padding: 10px 40px 10px 10px;
  border: none;
  background: none;
}
.selectwraper select:focus, .selectwraper select:hover {
  border: none;
  outline: none;
}
.selectwraper::after {
  position: absolute;
  top: 15px;
  right: 10px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  content: "";
  transform: rotate(45deg);
}

.rangetype {
  display: flex;
  justify-content: space-between;
}
.rangetype h4 {
  font-size: 36px;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  color: #55142A;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 15px 0 0;
}
@media screen and (max-width: 1199px) {
  .rangetype h4 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .rangetype h4 {
    font-size: 26px;
  }
}
.rangetype h4 span {
  font-size: 80%;
  display: block;
  padding: 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: start;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "Cormorant Garamond", serif;
}
@media screen and (max-width: 767px) {
  .rangetype h4 span {
    padding: 0;
  }
}
.rangetype h4 span svg {
  width: 22px;
  margin-right: 5px;
  fill: #55142A;
}
@media screen and (max-width: 1199px) {
  .rangetype h4 span svg {
    width: 18px;
  }
}
.rangetype h4 span svg path {
  stroke: #55142A;
}
.rangetype img {
  width: 100px;
}
@media screen and (max-width: 1199px) {
  .rangetype img {
    width: 80px;
  }
}

.querypage {
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  background: #FFFBF0;
}
@media screen and (max-width: 1199px) {
  .querypage {
    padding-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .querypage {
    padding-top: 90px;
  }
}
.querypage h3 {
  margin-bottom: 10px;
}

.weddingplanningoverview {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 8px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #EFE9DD;
  margin-bottom: 30px;
  background: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .weddingplanningoverview {
    padding: 15px;
  }
}
.weddingplanningoverview h5 {
  font-size: 34px;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .weddingplanningoverview h5 {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .weddingplanningoverview h5 {
    font-size: 20px;
  }
}
.weddingplanningoverview p span {
  margin: 0 40px 20px 0;
  display: inline-block;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .weddingplanningoverview p span {
    white-space: initial;
    margin: 0 30px 10px 0;
  }
}
.weddingplanningoverview.complimentary {
  background: #F4C7A1;
}
.weddingplanningoverview.complimentary p {
  font-size: 18px;
}
.weddingplanningoverview.complimentary p span {
  margin: 0 15px 20px 0;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 7px 10px;
}
@media screen and (max-width: 767px) {
  .weddingplanningoverview.complimentary p span {
    margin: 0 15px 10px 0;
  }
}

.selectionsteps {
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .selectionsteps {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 767px) {
  .selectionsteps {
    padding: 20px 15px;
  }
}
.selectionsteps .backbar {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 10px;
  border-radius: 10px;
  background: rgba(212, 165, 116, 0.15);
  overflow: hidden;
  z-index: 1;
}
.selectionsteps .backbar::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #55142A;
  width: 5%;
  content: "";
}
.selectionsteps a {
  position: relative;
  z-index: 2;
}
.selectionsteps a span {
  width: 80px;
  height: 80px;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid transparent;
  box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .selectionsteps a span {
    width: 50px;
    height: 50px;
    border: 1px solid transparent;
  }
}
.selectionsteps a img {
  width: 40px;
}
@media screen and (max-width: 767px) {
  .selectionsteps a img {
    width: 22px;
  }
}
.selectionsteps a svg {
  width: 40px;
  display: none;
}
@media screen and (max-width: 767px) {
  .selectionsteps a svg {
    width: 22px;
  }
}
.selectionsteps a strong {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 400;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 767px) {
  .selectionsteps a strong {
    font-size: 12px;
  }
}
.selectionsteps.selected.step1 a:nth-child(1) span {
  border-color: #55142A;
}
.selectionsteps.selected.step1 a:nth-child(1) strong {
  font-weight: 700;
  color: #55142A;
}
.selectionsteps.selected.step2 a:nth-child(1) span {
  border-color: #55142A;
}
.selectionsteps.selected.step2 a:nth-child(1) strong {
  font-weight: 700;
  color: #55142A;
}
.selectionsteps.selected.step2 a:nth-child(1) img {
  display: none;
}
.selectionsteps.selected.step2 a:nth-child(1) svg {
  display: block;
}
.selectionsteps.selected.step2 a:nth-child(2) span {
  border-color: #55142A;
}
.selectionsteps.selected.step2 a:nth-child(2) strong {
  font-weight: 700;
  color: #55142A;
}
.selectionsteps.selected.step2 .backbar::after {
  width: 36%;
}
.selectionsteps.selected.step3 a:nth-child(1) span, .selectionsteps.selected.step3 a:nth-child(2) span {
  border-color: #55142A;
}
.selectionsteps.selected.step3 a:nth-child(1) strong, .selectionsteps.selected.step3 a:nth-child(2) strong {
  font-weight: 700;
  color: #55142A;
}
.selectionsteps.selected.step3 a:nth-child(1) img, .selectionsteps.selected.step3 a:nth-child(2) img {
  display: none;
}
.selectionsteps.selected.step3 a:nth-child(1) svg, .selectionsteps.selected.step3 a:nth-child(2) svg {
  display: block;
}
.selectionsteps.selected.step3 a:nth-child(3) span {
  border-color: #55142A;
}
.selectionsteps.selected.step3 a:nth-child(3) strong {
  font-weight: 700;
  color: #55142A;
}
.selectionsteps.selected.step3 .backbar::after {
  width: 65%;
}
.selectionsteps.selected.step4 a:nth-child(1) span, .selectionsteps.selected.step4 a:nth-child(2) span, .selectionsteps.selected.step4 a:nth-child(3) span {
  border-color: #55142A;
}
.selectionsteps.selected.step4 a:nth-child(1) strong, .selectionsteps.selected.step4 a:nth-child(2) strong, .selectionsteps.selected.step4 a:nth-child(3) strong {
  font-weight: 700;
  color: #55142A;
}
.selectionsteps.selected.step4 a:nth-child(1) img, .selectionsteps.selected.step4 a:nth-child(2) img, .selectionsteps.selected.step4 a:nth-child(3) img {
  display: none;
}
.selectionsteps.selected.step4 a:nth-child(1) svg, .selectionsteps.selected.step4 a:nth-child(2) svg, .selectionsteps.selected.step4 a:nth-child(3) svg {
  display: block;
}
.selectionsteps.selected.step4 a:nth-child(4) span {
  border-color: #55142A;
}
.selectionsteps.selected.step4 a:nth-child(4) strong {
  font-weight: 700;
  color: #55142A;
}
.selectionsteps.selected.step4 .backbar::after {
  width: 92%;
}

.optionselections {
  background: #FFFFFF;
  padding: 30px;
  border: 1px solid #EFE9DD;
  border-radius: 12px;
  margin-top: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  .optionselections {
    padding: 15px;
  }
}
.optionselections .selectwraper {
  margin-bottom: 0;
  height: 100%;
}
.optionselections .selectwraper select {
  height: 100%;
}
.optionselections .selectwraper::after {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.checkbox-group .col-md-6 {
  margin-bottom: 20px;
}
.checkbox-group .check-card {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #EFE9DD;
  border-radius: 6px;
  min-height: 70px;
  width: 100%;
  height: 100%;
}
.checkbox-group .check-card input {
  display: none;
}
.checkbox-group .check-card:hover {
  background: #f6f6f6;
}
.checkbox-group .card-box {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 10px;
  height: 100%;
}
.checkbox-group .card-box img {
  width: 20px;
  min-width: 20px;
}
.checkbox-group .card-box strong {
  font-weight: 400;
  font-size: 16px;
  padding: 0 15px;
}
.checkbox-group .card-box span {
  margin-left: auto;
  width: 32px;
  min-width: 32px;
  height: 18px;
  background: #E4E4E4;
  position: relative;
  border-radius: 10px;
}
.checkbox-group .card-box span::after {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFFFFF;
  content: "";
  transition: all 0.1s ease-in-out;
}
.checkbox-group .check-card input:checked + .card-box {
  background: #f6f6f6;
}
.checkbox-group .check-card input:checked + .card-box span {
  background: #55142A;
}
.checkbox-group .check-card input:checked + .card-box span:after {
  left: 15px;
}

.budgepopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.budgepopup.opened {
  display: flex;
}
.budgepopup .popupwraper {
  width: 90%;
  max-width: 1000px;
  background: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  display: inline-block;
  height: auto;
  max-height: 80%;
  overflow: hidden;
  overflow-y: scroll;
  position: relative;
}
@media screen and (max-width: 991px) {
  .budgepopup .popupwraper {
    padding: 20px 15px;
  }
}
.budgepopup .popupwraper h3 {
  font-size: 25px;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.budgepopup .popupwraper .closebudgetpopup {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}
.budgepopup .popupwraper .closebudgetpopup svg {
  width: 32px;
  fill: #000000;
}

.confirmpopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.confirmpopup.opened {
  display: flex;
}
.confirmpopup .popupwraper {
  width: 90%;
  max-width: 600px;
  background: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  display: inline-block;
  height: auto;
  max-height: 80%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 991px) {
  .confirmpopup .popupwraper {
    padding: 20px 15px;
  }
}
.confirmpopup .popupwraper h3 {
  font-size: 30px;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  line-height: 45px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .confirmpopup .popupwraper h3 {
    font-size: 22px;
    line-height: 32px;
  }
}
.confirmpopup .popupwraper h3 span {
  color: #55142A;
}
.confirmpopup .popupwraper .closebudgetpopup {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}
.confirmpopup .popupwraper .closebudgetpopup svg {
  width: 32px;
  fill: #000000;
}

.requiredformdetails {
  padding-top: 30px;
  border-top: 1px solid #eee;
  margin-top: 30px;
}
.requiredformdetails p {
  font-size: 14px;
}
.requiredformdetails .form-group {
  margin-bottom: 20px;
}
.requiredformdetails .form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}
.requiredformdetails .form-group .fieldgroup {
  display: flex;
  gap: 5px;
  white-space: nowrap;
  font-size: 14px;
}
@media screen and (max-width: 991px) {
  .requiredformdetails .form-group .fieldgroup {
    flex-wrap: wrap;
  }
}
.requiredformdetails .form-group input {
  width: 100%;
  height: auto;
  padding: 15px 10px;
  border: 1px solid #EFE9DD;
  color: #000000;
  font-size: 14px;
}
.requiredformdetails .form-group input.otp-input {
  text-align: center;
}
.requiredformdetails .form-group input:focus {
  border-color: #55142A;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.requiredformdetails .form-group button {
  padding: 15px 10px;
  border: 1px solid #55142A;
  color: #55142A;
  border-radius: 7px;
  background: transparent;
}

/*----------------- Verify OTP Popup ---------------------------*/
.verifyotppopup .popupwraper {
  max-width: 500px;
}
.verifyotppopup .verify-otp-instruction {
  font-size: 14px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.5;
}
.verifyotppopup .verify-otp-inputs {
  margin-bottom: 16px;
}
.verifyotppopup .verify-otp-inputs .otp-input {
  width: 48px;
  height: 48px;
  font-size: 18px;
  font-weight: 600;
}
.verifyotppopup .resend-otp-text {
  font-size: 14px;
  margin-bottom: 30px;
}
.verifyotppopup .resend-otp-text .resend-countdown {
  color: #55142a;
  font-weight: 600;
}
.verifyotppopup .resend-otp-text .resend-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #55142a;
  font-weight: 600;
  font-size: 14px;
  text-decoration: underline;
}
.verifyotppopup .resend-otp-text .resend-link:hover {
  text-decoration: none;
}

/*----------------- Coming Soon Page css ---------------------------*/
.comingsoon-wrap {
  margin: 80px 160px;
  border: 1px solid #843D3D;
  border-radius: 25px;
  padding: 40px 60px;
  background: url("../images/coming-wrapbg.png") left center no-repeat;
  background-size: 43%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 1499px) {
  .comingsoon-wrap {
    margin: 30px;
    background-size: 39%;
    padding: 30px 40px;
  }
}
@media screen and (max-width: 991px) {
  .comingsoon-wrap {
    border: none;
    padding: 50px 0 0;
    margin: 0;
    background: none;
  }
}
@media screen and (max-width: 767px) {
  .comingsoon-wrap {
    padding: 20px 0 0;
  }
}

.textinfo {
  width: 35%;
  margin-right: 5%;
}
@media screen and (max-width: 991px) {
  .textinfo {
    width: 100%;
    text-align: center;
    padding: 0 10%;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .textinfo {
    padding: 0 5%;
    margin-bottom: 30px;
  }
}
.textinfo .logo {
  margin-bottom: 40px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .textinfo .logo {
    margin-bottom: 20px;
  }
}
.textinfo h1 {
  font-weight: 900;
  font-size: 96px;
  font-family: "Playfair Display", serif;
  color: #55142A;
  margin-bottom: 25px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #55142A 0%, #55142A 50%, #FFB86A 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media screen and (max-width: 1499px) {
  .textinfo h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 1199px) {
  .textinfo h1 {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .textinfo h1 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 374px) {
  .textinfo h1 {
    font-size: 50px;
  }
}
.textinfo p {
  font-weight: 600;
  font-size: 30px;
  color: #000000;
  margin-bottom: 0;
}
@media screen and (max-width: 1499px) {
  .textinfo p {
    font-size: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .textinfo p {
    font-size: 18px;
  }
}

.dhoomtypes {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1199px) {
  .dhoomtypes {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .dhoomtypes {
    display: none;
  }
}

.typesbox {
  border-top-left-radius: 140px;
  border-top-right-radius: 140px;
  text-align: center;
  width: calc(33.3333333333% - 30px);
  min-width: calc(33.3333333333% - 30px);
  max-width: calc(33.3333333333% - 30px);
  padding: 30px 0;
  background: #f6f6f6 url("../images/typesbg.png") center 40px no-repeat;
  background-size: 90%;
  margin-top: 0;
  margin-bottom: 150px;
}
@media screen and (max-width: 1499px) {
  .typesbox {
    padding: 20px 0;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .typesbox {
    width: calc(33.3333333333% - 15px);
    min-width: calc(33.3333333333% - 15px);
    max-width: calc(33.3333333333% - 15px);
  }
}
.typesbox.odd {
  margin-top: 150px;
  margin-bottom: 0;
}
@media screen and (max-width: 1499px) {
  .typesbox.odd {
    margin-top: 100px;
  }
}
.typesbox img {
  width: 100%;
  margin-top: 100px;
}
.typesbox h3 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 900;
  margin: 0;
  color: #55142A;
  text-transform: uppercase;
  margin-top: 50px;
}
@media screen and (max-width: 1499px) {
  .typesbox h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 1199px) {
  .typesbox h3 {
    font-size: 24px;
  }
}

.typesbox2 {
  padding: 70px 0 0;
  background: url("../images/typesbg.png") center top no-repeat;
  background-size: 55%;
}
@media screen and (max-width: 767px) {
  .typesbox2 {
    padding: 50px 0 0;
  }
}
.typesbox2 img {
  max-width: 100%;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .typesbox2 img {
    height: 250px;
  }
}
@media screen and (max-width: 374px) {
  .typesbox2 img {
    height: 200px;
  }
}
.typesbox2 h3 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 900;
  margin: 0;
  color: #55142A;
  text-transform: uppercase;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .typesbox2 h3 {
    margin-top: 20px;
    font-size: 30px;
  }
}

.comingslider {
  display: none;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .comingslider {
    display: block;
  }
}
.comingslider .swiper-pagination {
  display: block;
  width: 100%;
}
.comingslider .swiper-pagination .swiper-pagination-bullet {
  background: #d9d9d9;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 3px;
}
.comingslider .swiper-pagination .swiper-pagination-bullet-active {
  background: #55142A;
}

h1.pageheading {
  color: #55142A;
}

.static-page-layout {
  background: rgb(252, 250, 248) url("../images/plannedbg.png") top center repeat;
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 70px;
  background: #FFFBF0;
}
@media screen and (max-width: 1199px) {
  .static-page-layout {
    padding-top: 120px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .static-page-layout {
    padding-top: 90px;
  }
}
.static-page-layout::before {
  position: absolute;
  top: 150px;
  left: 8%;
  animation: image360 80s infinite linear;
  content: "";
  background: url("../images/cercle-green.png") center center no-repeat;
  background-size: 90%;
  width: 130px;
  height: 130px;
}
@media screen and (max-width: 1199px) {
  .static-page-layout::before {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .static-page-layout::before {
    display: none;
  }
}
.static-page-layout::after {
  position: absolute;
  top: 150px;
  right: 8%;
  animation: image360 60s infinite linear;
  content: "";
  background: url("../images/cercle-brown.png") center center no-repeat;
  background-size: 90%;
  width: 130px;
  height: 130px;
}
@media screen and (max-width: 1199px) {
  .static-page-layout::after {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .static-page-layout::after {
    display: none;
  }
}

.static-page-content .nested-content {
  padding-left: 20px;
}
.static-page-content h2 {
  color: #55142A;
  font-size: 28px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
  padding-top: 20px;
  letter-spacing: 1px;
}
.static-page-content h4 {
  color: #000000;
  font-size: 22px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.static-page-content p {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 15px;
}
.static-page-content ul {
  list-style-type: disc;
  margin-left: 20px;
}
.static-page-content ul li {
  font-size: 18px;
  list-style-type: disc;
  font-weight: 400;
  color: #000000;
  margin-bottom: 10px;
}
.static-page-content ul li ul {
  padding-top: 10px;
}
.static-page-content ul li ul li {
  list-style-type: circle;
}
.static-page-content a {
  color: #55142A;
}
.static-page-content a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=stylesheet.css.map */