@font-face {
  font-family: "south_route_regular";
  src: url("font/south_route_regular-webfont.woff2") format("woff2"), url("font/south_route_regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "DM Sans", sans-serif;
  color: #888888;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

body.hidden-scrolling {
  overflow-y: hidden;
}

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

a {
  text-decoration: none;
}

p {
  margin-bottom: 0px;
}

.section-title {
  color: #595959;
  font-family: "Playfair Display", serif;
  font-size: 56px;
  line-height: 1.3em;
  font-weight: 700;
  margin-bottom: 31px;
}
@media (max-width: 1312px) {
  .section-title {
    font-size: 45px;
  }
}
.section-title span {
  display: inline-block;
  margin-right: 5px;
  opacity: 0;
  transform: translateY(-50px);
}

.brochure-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  outline: none !important;
  font-weight: 700;
  font-size: 14px;
  color: #222222;
  border: 1px solid #caae5c;
  padding: 7px 25px 7px;
  padding-right: 9px;
  border-radius: 30px;
  transition: 0.5s ease-in-out;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: 1.4px;
  gap: 10px;
  z-index: 2;
  text-align: center;
}
.brochure-btn::before {
  content: "";
  background-color: #caae5c;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
}
.brochure-btn:hover::before {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
  transition-delay: 300ms;
}
.brochure-btn::after {
  content: "";
  background-color: rgba(var(--judges-base-rgb), 0.3);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}
.brochure-btn:hover::after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}
.brochure-btn:hover {
  color: #ffffff;
  border: 1px solid transparent;
}
.brochure-btn .brochure-btn-text {
  position: relative;
  display: block;
  z-index: 1;
}
.brochure-btn .brochure-btn-icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #caae5c;
  border-radius: 50%;
  font-size: 14px;
  color: #ffffff;
  transition: all 500ms ease;
}
.brochure-btn .brochure-btn-icon-box i {
  font-size: 20px;
}
.brochure-btn:hover .brochure-btn-icon-box {
  background-color: #ffffff;
  color: #caae5c;
  transition-delay: 200ms;
}
.brochure-btn:hover .brochure-btn-icon-box i {
  animation: bounceright 0.3s alternate ease infinite;
}

.theam_btn {
  background-color: #caae5c;
  font-family: "Playfair Display", serif;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 20px 40px;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.theam_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.theam_btn:hover {
  color: #ffffff;
  box-shadow: none;
  background: #3a3834;
}
.theam_btn:hover::before {
  transform-origin: left center;
  transform: scale(1, 1);
}
@media (max-width: 1312px) {
  .theam_btn {
    padding: 15px 30px;
    font-size: 18px;
  }
}

/* Top header*/
#topheader {
  background: #3a3834;
  padding: 5px 15px 5px;
}
#topheader .topbar-info li {
  position: relative;
}
#topheader .topbar-info li:not(:last-child)::after {
  content: "";
  position: absolute;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  height: 75%;
  right: -12px;
  top: 3px;
}
#topheader .topbar-info li a {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 16px;
  transition: all 500ms ease;
}
#topheader .topbar-info li a i {
  font-size: 18px;
  color: #ffffff;
  position: relative;
  display: inline-block;
  margin-right: 10px;
}
#topheader .topbar-info li a:hover {
  color: #caae5c;
}
#topheader .socialicons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
#topheader .socialicons li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  font-size: 18px;
  color: #ffffff;
  background-color: transparent;
  overflow: hidden;
  transition: all 0.4s linear;
  z-index: 1;
}
#topheader .socialicons li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  transform: scale(0.5);
  border-radius: 5px;
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}
#topheader .socialicons li a:hover {
  color: #caae5c;
  border: 1px solid #fff;
}
#topheader .socialicons li a:hover::before {
  transform: scale(1);
  opacity: 1;
}

/* Top header end*/
.header-main {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.header-main .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-main .logotext {
  color: #222222;
  font-family: "south_route_regular";
  font-size: 3rem;
  line-height: normal;
  max-height: 65px;
  word-spacing: 10px;
}
@media (max-width: 668px) {
  .header-main .logotext {
    font-size: 2.2rem;
  }
}
.header-main .brochurebtn a {
  color: #000000;
}

.contactinfo {
  display: none;
}

nav.nav-menu.open .contactinfo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
nav.nav-menu.open .contactinfo p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-top: 25px;
}
nav.nav-menu.open .contactinfo ul li {
  text-align: center;
}
nav.nav-menu.open .contactinfo ul li a {
  text-align: center;
  color: rgba(255, 255, 255, 0.6784313725);
  font-size: 15px;
}
nav.nav-menu.open .contactinfo .socialicons {
  display: flex;
  gap: 8px;
}

.header .menu > .menu-item {
  display: inline-block;
  margin-left: 30px;
  position: relative;
}
.header .menu > .menu-item > a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: #222222;
  text-transform: capitalize;
  font-weight: 400;
  transition: all 0.3s ease;
  font-weight: 500;
}
.header .menu > .menu-item > .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 220px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #ffffff;
  padding: 10px 0;
  border-top: 3px solid #caae5c;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}
.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  padding: 5px 20px;
  font-size: 16px;
  color: #222222;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
  color: #caae5c;
}
.header .menu > .menu-item:hover > a {
  color: #caae5c;
}
.header .menu .menu-item .active {
  color: #caae5c;
}
.header .menu > .menu-item-has-children:hover > .sub-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.header .menu > .menu-item-has-children:hover > a i {
  transform: rotate(180deg);
  transition: all 0.3s ease;
}
.header .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: #222222;
  position: relative;
}
.header .open-nav-menu span:before, .header .open-nav-menu span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  box-sizing: border-box;
}
.header .open-nav-menu span:before {
  top: -7px;
}
.header .open-nav-menu span:after {
  top: 7px;
}
.header .close-nav-menu {
  height: 40px;
  width: 40px;
  background-color: #ffffff;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.header .menu-overlay.active {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 991px) {
  .header .nav-menu {
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background-color: #222222;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }
  .header .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
  .header .menu > .menu-item {
    display: block;
    margin: 0;
  }
  .header .menu > .menu-item > a {
    color: #ffffff;
    padding: 12px 15px;
    border-bottom: 1px solid #333333;
  }
  .header .menu > .menu-item:first-child > a {
    border-top: 1px solid #333333;
  }
  .header .menu > .menu-item.menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .menu > .menu-item.menu-item-has-children > a > i {
    transform: rotate(0deg);
  }
  .header .menu > .menu-item.menu-item-has-children.active > a > i {
    transform: rotate(180deg);
  }
  .header .menu > .menu-item > .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 12px 45px;
    color: #ffffff;
    border-bottom: 1px solid #333333;
  }
  .header .close-nav-menu,
  .header .open-nav-menu {
    display: flex;
    margin-left: auto;
    margin-right: 0px;
  }
  .header .close-nav-menu {
    margin-right: 20px;
  }
}

.herosection .carousel-fade .carousel-item {
  transition: opacity 1.5s ease-in-out;
}

.aboutUs {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 992px) {
  .aboutUs {
    padding: 90px 0 90px;
  }
}
.aboutUs .theam_btn {
  font-size: 23px;
}
@media (max-width: 992px) {
  .aboutUs .theam_btn {
    font-size: 20px;
    padding: 15px 30px;
  }
}
.aboutUs .about-imagebox {
  position: relative;
  display: block;
}
.aboutUs .about-imagebox .experianceYear {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  position: absolute;
  left: 38%;
  bottom: -54px;
  background: #caae5c;
  padding: 28px 25px;
  flex-direction: column;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  text-align: center;
  font-size: 16px;
  line-height: normal;
  justify-content: center;
  font-family: "Playfair Display", serif;
  color: #ffffff;
}
.aboutUs .about-imagebox .experianceYear h4 span {
  margin-bottom: 0px;
  font-size: 40px;
}
.aboutUs .about-textbox {
  margin-left: 40px;
  margin-right: 70px;
}
@media (max-width: 992px) {
  .aboutUs .about-textbox {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media (max-width: 992px) {
  .aboutUs .about-textbox .section-title {
    font-size: 39px;
  }
}
@media (max-width: 668px) {
  .aboutUs .about-textbox .section-title {
    margin-top: 20px;
  }
}
.aboutUs .about-textbox .maintext {
  margin-bottom: 17px;
  font-size: 22px;
  font-weight: 700;
  color: #505050;
}
@media (max-width: 1312px) {
  .aboutUs .about-textbox .maintext br {
    display: none;
  }
}
@media (max-width: 992px) {
  .aboutUs .about-textbox .maintext {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .aboutUs .about-textbox .maintext {
    font-size: 18px;
  }
}
.aboutUs .about-textbox p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 35px;
  text-align: left;
}
@media (max-width: 992px) {
  .aboutUs .about-textbox p {
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .aboutUs .about-textbox p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 24px;
  }
}

.connectus {
  background: url(../images/registration-bg.jpg) no-repeat center;
  background-size: cover;
  position: relative;
  border-radius: 0px;
  z-index: 2;
  height: 100%;
  text-align: center;
  padding: 95px 50px;
}
@media (max-width: 1312px) {
  .connectus {
    padding: 100px 20px 70px;
  }
}
@media (max-width: 668px) {
  .connectus {
    padding: 20px;
  }
}
.connectus::after {
  content: "";
  background: #000;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0px;
}
.connectus .contactusbtn .theam_btn {
  padding: 25px 50px;
  font-size: 23px;
}
@media (max-width: 668px) {
  .connectus .contactusbtn .theam_btn {
    padding: 15px 30px;
    font-size: 20px;
  }
}
.connectus .registerwrapper {
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", serif;
}
.connectus .registerwrapper p {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2em;
  color: #ffffff;
  margin-bottom: 20px;
}
@media (max-width: 1312px) {
  .connectus .registerwrapper p {
    font-size: 35px;
  }
}
.connectus .registerwrapper p span {
  font-size: 6rem;
  font-family: "south_route_regular";
  font-weight: normal;
  color: #caae5c;
  word-spacing: 60px;
}
@media (max-width: 1312px) {
  .connectus .registerwrapper p span {
    word-spacing: 40px;
    font-size: 5rem;
  }
}
@media (max-width: 992px) {
  .connectus .registerwrapper p span {
    display: block;
    line-height: normal;
    font-size: 4rem;
  }
}
@media (max-width: 668px) {
  .connectus .registerwrapper p span {
    word-spacing: 26px;
    font-size: 3rem;
    line-height: 50px;
    margin-top: 26px;
  }
}

.latestprogram {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}
@media (max-width: 1312px) {
  .latestprogram {
    padding: 90px 0 90px;
  }
}
.latestprogram .section-title {
  margin-bottom: 0px;
}
@media (max-width: 1312px) {
  .latestprogram .section-title {
    flex: 1 1 50%;
  }
}
@media (max-width: 992px) {
  .latestprogram .section-title {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
.latestprogram::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  background-color: #f7f7f7;
  z-index: -1;
}
.latestprogram .program-top {
  position: relative;
  display: block;
  margin-bottom: 60px;
}
.latestprogram .program-top .programinner-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .latestprogram .program-top .programinner-top {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 5px;
  }
}
.latestprogram .program-bottom .owl-item:nth-child(even) .programwrap-inner {
  margin-top: 30px;
}
@media (max-width: 668px) {
  .latestprogram .program-bottom .owl-item:nth-child(even) .programwrap-inner {
    margin-top: 0px;
  }
}
.latestprogram .programwrap {
  position: relative;
  display: block;
  margin-bottom: 40px;
  cursor: pointer;
}
.latestprogram .programwrap .container {
  max-width: 1720px;
}
.latestprogram .programwrap .programwrap-inner {
  position: relative;
  display: block;
}
.latestprogram .programwrap .programwrap-inner .program-imgbox {
  position: relative;
  display: block;
}
.latestprogram .programwrap .programwrap-inner .program-imgbox .programimg {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background-color: transparent;
  z-index: 1;
}
.latestprogram .programwrap .programwrap-inner .program-imgbox .programimg::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.latestprogram .programwrap .programwrap-inner .program-imgbox img {
  border-radius: 8px;
  transition: all 500ms ease;
}
.latestprogram .programwrap .program-content-wrap {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 108px 30px 32px;
  overflow: hidden;
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform-origin: center;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  z-index: 5;
}
.latestprogram .programwrap .program-content-wrap::before {
  position: absolute;
  top: 0;
  left: 60px;
  bottom: 0;
  width: 2px;
  background: rgba(193, 183, 154, 0.4705882353);
  content: "";
  transition: transform 2s ease;
  transform-origin: bottom right;
  transform: scale(1, 0);
}
.latestprogram .programwrap .program-content-wrap::after {
  position: absolute;
  left: 0px;
  bottom: 43px;
  right: 55%;
  height: 2px;
  background: rgba(193, 183, 154, 0.4705882353);
  content: "";
  transition: transform 2000ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
}
.latestprogram .programwrap .program-content-wrap .programinner-content {
  position: relative;
  display: block;
  text-align: right;
}
.latestprogram .programwrap .program-content-wrap .programinner-content h3 {
  color: #595959;
  font-size: 25px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 30px;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 700ms ease;
  font-family: "Playfair Display", serif;
}
.latestprogram .programwrap .program-content-wrap .programinner-content p {
  font-size: 16px;
  line-height: normal;
  opacity: 0;
  transform: translateY(50px);
  transition: all 700ms ease;
  color: #353131;
}
.latestprogram .programwrap .program-content-wrap .programbtn {
  position: absolute;
  top: 40px;
  right: 30px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 700ms ease;
  z-index: 2;
}
.latestprogram .programwrap .program-content-wrap .programbtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 45px;
  height: 45px;
  background-color: #222222;
  border-radius: 50%;
}
.latestprogram .programwrap:hover .programimg img {
  transform: scaleX(1.05);
}
.latestprogram .programwrap:hover .program-content-wrap {
  transform: perspective(400px) rotateX(0deg) scaleY(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}
.latestprogram .programwrap:hover .program-content-wrap::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.latestprogram .programwrap:hover .program-content-wrap::after {
  transform: scale(1, 1);
  transform-origin: left center;
}
.latestprogram .programwrap:hover .programinner-content h3 {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 700ms;
}
.latestprogram .programwrap:hover .programinner-content p {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}
.latestprogram .programwrap:hover .programbtn {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.wrapborder {
  background: url(../images/register-now.jpg);
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-repeat: repeat;
  background-size: cover;
  background-position: center right;
  position: relative;
}
.wrapborder::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 8px;
}
.wrapborder .makehappenbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.wrapborder .makehappenbox div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapborder .makehappenbox .authorimg,
.wrapborder .makehappenbox .rightcontent {
  width: 350px;
  flex-shrink: 0;
}
.wrapborder .makehappenbox .authorimg {
  position: relative;
  bottom: 0;
  max-width: 450px;
  margin: -87px 0px 0px -60px;
}
.wrapborder .makehappenbox .box-content {
  flex-grow: 1;
}
.wrapborder .makehappenbox .box-content h4 {
  font-size: 60px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: white;
  text-align: center;
}
.wrapborder .makehappenbox .rightcontent a {
  color: #222;
  background-color: white;
  font-size: 25px;
  font-weight: 600;
  line-height: 28px;
  width: 170px;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  text-align: center;
  font-family: "Playfair Display", serif;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.wrapborder .makehappenbox .rightcontent a:hover {
  background: #caae5c;
  color: #ffffff;
  transition: all 0.3s ease;
}

.top-book-section {
  position: relative;
  padding: 90px 0px 90px;
}
.top-book-section .books-wrap-new {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 0px 20px;
}
.top-book-section .blog-entry {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  flex: 1 1 calc(50% - 15px);
}
@media (max-width: 1312px) {
  .top-book-section .blog-entry {
    flex: 1 1 100%;
  }
}
@media (max-width: 668px) {
  .top-book-section .blog-entry {
    flex-wrap: wrap;
  }
}
.top-book-section .blog-entry:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.top-book-section .blog-entry:hover .heading {
  color: #caae5c !important;
}
.top-book-section .blog-entry .text {
  position: relative;
  margin: 0 auto;
  z-index: 0;
  flex: 1 1 calc(60% - 8px);
  padding: 15px 20px;
  background: url(../images/pattern2.png.webp) repeat center center;
  background-size: cover;
}
@media (max-width: 668px) {
  .top-book-section .blog-entry .text {
    text-align: center;
  }
}
.top-book-section .blog-entry .text .heading {
  font-size: 25px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.5;
  color: #2b2a27;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  transition: 0.3s all ease-in-out;
}
.top-book-section .blog-entry .text p {
  font-size: 15px;
  line-height: 22px;
  font-weight: 300;
  color: #252525;
  margin-bottom: 15px;
}
.top-book-section .blog-entry .text p strong {
  font-weight: 700;
}
.top-book-section .blog-entry .text .btn-custom {
  padding: 5px 12px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  border-radius: 8px;
  color: #050505;
  text-transform: uppercase;
  transition: 0.5s;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(31, 30, 30);
  -o-border-image: initial;
     border-image: initial;
}
.top-book-section .blog-entry .text .btn-custom:hover {
  background-color: #3a3834;
  color: #ffffff;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  -o-border-image: initial;
     border-image: initial;
}
.top-book-section .block-20 {
  overflow: hidden;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  display: block;
  z-index: -1;
  flex: 1 1 calc(30% - 8px);
}
@media (max-width: 1312px) {
  .top-book-section .block-20 {
    background-size: contain;
    background-color: #e6e1d8;
    border: none !important;
  }
}
@media (max-width: 668px) {
  .top-book-section .block-20 {
    flex: 1 1 100%;
    height: 300px;
  }
}

.feedback-wrap {
  position: relative;
  display: block;
  padding: 90px 0 140px;
  overflow: hidden;
  z-index: 1;
  background: #f9f9f9;
}
.feedback-wrap .owl-theme .owl-nav {
  display: none;
}
.feedback-wrap .section-title {
  flex: 0 0 70%;
  margin-bottom: 0px;
}
@media (max-width: 668px) {
  .feedback-wrap .section-title {
    flex: 0 0 100%;
    margin-bottom: 0px;
    text-align: center;
  }
}
.feedback-wrap .feedtext {
  flex: 0 0 30%;
  align-self: center;
  margin-left: auto;
  justify-content: end;
}
@media (max-width: 668px) {
  .feedback-wrap .feedtext {
    flex: 0 0 100%;
    align-self: center;
    margin-left: auto;
    justify-content: center;
    margin-top: 20px;
  }
}
.feedback-wrap .testimoinalBox {
  padding: 10px;
}
.feedback-wrap #latest-reviews {
  margin-top: 50px;
}
.feedback-wrap .custom-arrows {
  text-align: center;
  position: relative;
  display: flex;
  gap: 15px;
}
.feedback-wrap .custom-prev,
.feedback-wrap .custom-next {
  background-color: #caae5c;
  color: #fff;
  padding: 10px 15px;
  margin: 0 0px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 40px;
}
.feedback-wrap .swiper-button-next:after,
.feedback-wrap .swiper-rtl .swiper-button-prev:after,
.feedback-wrap .swiper-button-prev:after,
.feedback-wrap .swiper-rtl .swiper-button-next:after {
  content: "";
}
.feedback-wrap .customerico {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 90px;
  background-color: #caae5c;
  border-radius: 8px;
}
.feedback-wrap .customerico img {
  position: relative;
  display: inline-block;
  transition: all 500ms ease;
  padding: 9px;
  filter: contrast(0.5);
}
.feedback-wrap .feedtext p {
  font-size: 20px;
  line-height: 28px;
  position: relative;
  display: block;
  flex: 1;
}
.feedback-wrap .testimonial-two__single {
  position: relative;
  display: block;
  background-color: #ffffff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 50px 30px 30px;
  border-radius: 8px;
  border-top: 10px solid #caae5c;
  transition: all 500ms ease;
  z-index: 2;
  margin-top: 60px;
  margin-bottom: 10px;
  min-height: 370px;
}
.feedback-wrap .testimonial-two__single .testimonial-two__quote {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.feedback-wrap .testimonial-two__single .testimonial-two__quote i {
  position: relative;
  display: inline-block;
  font-size: 195px;
  line-height: 195px;
  color: #888;
  opacity: 0.08;
}
.feedback-wrap .testimonial-two__single .testimonial-two__img {
  position: absolute;
  top: -50px;
  right: 49px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  z-index: 1;
}
.feedback-wrap .testimonial-two__single .testimonial-two__img::before {
  background-color: #caae5c;
  border-radius: 120px 120px 0 0;
  content: "";
  height: 50%;
  left: -10px;
  right: -10px;
  position: absolute;
  transition: all 500ms ease;
  z-index: -1;
}
.feedback-wrap .testimonial-two__single .testimonial-two__img img {
  width: 100%;
  border-radius: 50%;
  border: 5px solid #ffffff;
}
.feedback-wrap .testimonial-two__single .testimonial-two__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #888888;
  height: 190px;
  overflow: hidden;
  transition: height 0.5s ease;
  position: relative;
}
.feedback-wrap .testimonial-two__single .expanded {
  height: auto;
}
.feedback-wrap .testimonial-two__single .read-more-btn {
  display: inline-block;
  margin-top: 10px;
  color: #caae5c;
  cursor: pointer;
}
.feedback-wrap .testimonial-two__single .testimonial-two__client-info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 22px;
}
.feedback-wrap .testimonial-two__single .testimonial-two__client-info .testimonial-two__client-content {
  position: relative;
  display: block;
}
.feedback-wrap .testimonial-two__single .testimonial-two__client-info .testimonial-two__client-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-transform: capitalize;
  color: #222222;
  font-family: "Playfair Display", serif;
}
.feedback-wrap .testimonial-two__single .testimonial-two__rating {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
@media (max-width: 992px) {
  .feedback-wrap .testimonial-two__single .testimonial-two__rating {
    gap: 0px;
  }
}
.feedback-wrap .testimonial-two__single .testimonial-two__rating i {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #caae5c;
}
@media (max-width: 992px) {
  .feedback-wrap .testimonial-two__single .testimonial-two__rating i {
    font-size: 12px;
  }
}
.feedback-wrap .testimonial-two__single:hover {
  transform: translateY(-10px);
  border-top: 10px solid #222222;
}
.feedback-wrap .testimonial-two__single:hover .testimonial-two__img::before {
  background-color: #222222;
}
.feedback-wrap .testimonial-two__single:hover .testimonial-two__client-name {
  color: #caae5c;
}
.feedback-wrap .testimoinaltext {
  margin: 0px 50px;
  position: relative;
}
.feedback-wrap .testimoinaltext h4 {
  font-family: "Playfair Display", serif;
  color: #222222;
  font-size: 50px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.socialmedia-widgets {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 120px 0 90px;
  z-index: 1;
  background: url(../images/register-now.jpg) no-repeat center center;
  background-size: cover;
}
.socialmedia-widgets::after {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.socialmedia-widgets .widgetsbox {
  position: relative;
  z-index: 1;
}
@media (max-width: 1312px) {
  .socialmedia-widgets .widgetsbox {
    margin-bottom: 25px;
  }
}
.socialmedia-widgets .heading {
  margin-bottom: 12px;
}
@media (max-width: 1312px) {
  .socialmedia-widgets .heading {
    min-height: 145px;
  }
}
@media (max-width: 992px) {
  .socialmedia-widgets .heading {
    min-height: auto;
  }
}
.socialmedia-widgets .heading .imgbox {
  /* max-width: 300px; */
  background: #ccc;
  width: 70px;
  height: 70px;
  background: rgba(238, 238, 238, 0.2392156863);
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.socialmedia-widgets .widgewrap {
  height: 400px;
  position: relative;
  display: block;
  text-align: center;
  background: rgba(46, 52, 58, 0.8);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 30px;
  transition: all 500ms ease;
  z-index: 1;
}
.socialmedia-widgets .widgetsbox h4 {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
  text-align: left;
  color: #fff;
  position: relative;
  width: calc(100% - 50px);
  margin-left: 10px;
}
.socialmedia-widgets .theam_btn {
  transform: scale(1) !important;
  opacity: 1 !important;
}

footer {
  background: #222222;
  padding-top: 90px;
}
footer .footerlogo {
  font-size: 3rem;
  line-height: normal;
  font-family: "south_route_regular";
  word-spacing: 15px;
  word-spacing: 10px;
}
footer .footerlinks {
  padding-bottom: 1.5rem;
  margin: 30px 0px;
  width: 100%;
}
@media (max-width: 668px) {
  footer .footerlinks {
    flex-wrap: wrap;
  }
}
footer .footerlinks a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}
footer .footerlinks a:hover {
  color: #caae5c;
}
footer .socialmedia {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  position: relative;
}
@media (max-width: 668px) {
  footer .socialmedia {
    gap: 10px;
  }
}
footer .socialmedia a {
  height: 40px;
  width: 40px;
  color: #ffffff;
  font-size: 16px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
}
footer .socialmedia a:hover {
  background: #caae5c;
}
footer .site-footer-two__bottom {
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .site-footer-two__bottom .site-footer-two__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 33px 0 29px;
}
@media (max-width: 668px) {
  footer .site-footer-two__bottom .site-footer-two__bottom-inner {
    text-align: center;
    font-size: 14px;
  }
}
footer .site-footer-two__bottom .site-footer-two__bottom-inner .copyright {
  color: rgba(255, 255, 255, 0.8);
}
footer .site-footer-two__bottom .site-footer-two__bottom-inner .username {
  color: #caae5c;
}

.fixHeader {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.social-icons {
  position: fixed;
  top: 40%;
  right: 8px;
  z-index: 999;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .social-icons {
    display: none;
  }
}
.social-icons a {
  color: #ffffff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-top: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.social-icons a:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}
.social-icons a.facebook {
  background: #3b5998;
}
.social-icons a.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icons a.youtube {
  background: #c4302b;
}
.social-icons a.linkedin {
  background: #0077B5;
}
.social-icons a.twitter {
  background: #00acee;
}
.social-icons a.wordpress {
  background: #217a9f;
}

.makebutn .contentsec {
  background: #0D1F25;
  padding: 3%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.makebutn .contentsec::after {
  position: absolute;
  content: "";
  background-image: url(https://kit.baliniz.com/alyssa/wp-content/uploads/sites/63/2023/09/bg-circle-2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
  width: 100%;
  height: 100%;
}
.makebutn .contentsec .textwrap {
  position: relative;
  z-index: 8;
}
.makebutn .contentsec .textwrap p {
  font-family: "Playfair Display", serif;
  font-size: 55px;
  color: #fff;
  font-weight: 400;
  line-height: 64px;
  position: relative;
  z-index: 9;
}
.makebutn .contentsec .textwrap p span {
  text-transform: capitalize;
  display: block;
  font-size: 80px;
  color: #ffe393;
}
.makebutn .contentsec .textwrap .quotetext {
  position: relative;
  text-align: center;
  border-radius: 50px;
  max-width: 500px;
  line-height: 60px;
  margin-bottom: 40px;
}
.makebutn .contentsec .textwrap .topquote,
.makebutn .contentsec .textwrap .bottomquote {
  position: absolute;
  z-index: 3;
  background: #0d1f25;
  color: #fbffff;
  overflow: hidden;
}
.makebutn .contentsec .textwrap .topquote img,
.makebutn .contentsec .textwrap .bottomquote img {
  width: 70px;
  filter: invert(1);
}
@media (max-width: 992px) {
  .makebutn .contentsec .textwrap .topquote,
  .makebutn .contentsec .textwrap .bottomquote {
    display: none;
  }
}
.makebutn .contentsec .textwrap .topquote {
  left: -62px;
  top: -40px;
  padding: 10px 20px;
  opacity: 0.2;
}
@media (max-width: 992px) {
  .makebutn .contentsec .textwrap .topquote {
    left: 0;
    top: 0px;
  }
}
@media (max-width: 1312px) {
  .makebutn .contentsec .textwrap .topquote {
    left: -52px;
    top: -20px;
  }
}
.makebutn .contentsec .textwrap .bottomquote {
  right: -38px;
  bottom: 10px;
  transform: rotate(360deg);
  padding: 10px 20px;
  opacity: 0.2;
}
@media (max-width: 1312px) {
  .makebutn .contentsec .textwrap .bottomquote {
    right: 0;
    bottom: 0px;
    padding: 0px;
  }
}
.makebutn .theam_btn {
  padding: 25px 50px;
  font-size: 25px;
}
.makebutn .bgimagesec {
  background-image: url(../images/makeithappen3.jpg);
  background-position: center center;
  background-size: 150%;
  background-repeat: no-repeat;
}
@media (max-width: 1312px) {
  .makebutn .bgimagesec {
    background-size: cover;
  }
}
@media (max-width: 668px) {
  .makebutn .bgimagesec {
    background-size: cover;
    height: 170px;
  }
}

.video-section .videocontnet {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
}
.video-section .videocontnet::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/videobg2.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  left: 0;
  top: 0;
}
.video-section #toggleBtn {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 140px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  opacity: 0;
}
.video-section #toggleBtn i {
  font-size: 30px;
}
.video-section #toggleBtn:hover {
  transform: scale(1.2);
  background-color: rgba(236, 29, 37, 0.5);
  color: white;
}
.video-section #muteunmutebtn {
  position: absolute;
  left: 20px;
  bottom: 20px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 25px;
  background: rgba(255, 255, 255, 0.2705882353);
  padding: 20px;
  border-radius: 50px;
}
.video-section .textbox {
  padding: 0px 15%;
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.video-section .textbox h4 {
  text-transform: capitalize;
  display: block;
  font-size: 60px;
  color: #ffe393;
  font-family: "south_route_regular";
  word-spacing: 20px;
}
.video-section .textbox p {
  font-size: 20px;
}
@media (max-width: 1312px) {
  .video-section .textbox p {
    font-size: 16px;
    line-height: normal;
  }
}
.video-section .video-section-wrap {
  background-color: #000000;
  color: white;
  position: relative;
  /* Needed if you want to perfectly center the video */
  display: flex;
  /* Flexbox for centering */
  justify-content: center;
  align-items: center;
}
.video-section .video-section-wrap:hover #toggleBtn {
  opacity: 1;
}

.experianceYear {
  padding: 13px;
  text-align: center;
  border: 1px dashed #898484;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .experianceYear {
    display: none;
  }
}
.experianceYear span {
  font-size: 50px;
  line-height: normal;
  font-weight: 700;
  color: #caae5c;
  display: block;
  transition: all 0.3s ease 0s;
}
.experianceYear h4 {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 0px;
  color: #505050;
  font-weight: 700;
}

.instagram-media {
  width: 100%;
  height: 100%;
}

.breadcrumbwrap {
  position: relative;
  text-align: left;
  background: url(../images/breadcrumbbg2.jpg) no-repeat;
  background-size: cover !important;
  padding: 60px 0px;
  background-position: center !important;
}
.breadcrumbwrap::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.4;
}
.breadcrumbwrap h1 {
  font-size: 55px;
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Playfair Display", serif;
}
.breadcrumbwrap .breadcrumb {
  color: #fff;
  margin-top: 10px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 10px;
  border-radius: 50px;
  background: rgba(247, 247, 247, 0.2);
  padding: 5px 20px;
}
.breadcrumbwrap .breadcrumb a,
.breadcrumbwrap .breadcrumb li {
  color: #fff;
  font-size: 16px;
}

.aboutbreadcrumb {
  background: url(../images/breadcrumbbgabout1.jpg) no-repeat;
}

.breadcrumbprogram {
  background: url(../images/breadcrumbprogram.jpg) no-repeat;
}

.breadcrumbgallery {
  background: url(../images/breadcrumbgallery.jpg) no-repeat;
}

.breadcrumbcontact {
  background: url(../images/breadcrumbcontact.jpg) no-repeat;
}

.aboutme-wrap {
  background: #fefef4;
  padding: 80px 0px;
}
.aboutme-wrap .abouttext {
  padding-right: 3rem;
}
@media (max-width: 992px) {
  .aboutme-wrap .abouttext {
    padding-right: 0px;
  }
}
.aboutme-wrap .abouttext h1 {
  font-size: 70px;
  font-family: "Playfair Display", serif;
  color: #434343;
  font-weight: 700;
  margin-bottom: 25px;
}
@media (max-width: 992px) {
  .aboutme-wrap .abouttext h1 {
    font-size: 53px;
  }
}
.aboutme-wrap .abouttext p {
  font-family: "DM Sans", sans-serif;
  color: #3f3f3f;
  margin-bottom: 20px;
}
.aboutme-wrap .abouttext .subheading {
  margin-bottom: 17px;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
}
.aboutme-wrap .keyskills {
  text-align: right;
}
.aboutme-wrap .keyskills li {
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: auto;
  font-weight: bold;
  color: #424242;
}
@media screen and (max-width: 768px) {
  .aboutme-wrap .aboutimgwrap {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 768px) and (max-width: 668px) {
  .aboutme-wrap .aboutimgwrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .aboutme-wrap .aboutimgwrap img {
    max-width: 250px;
  }
}

.aboutsec2 {
  padding: 160px 0px 120px;
}
@media (max-width: 1312px) {
  .aboutsec2 {
    padding: 80px 0px 60px;
  }
}
.aboutsec2 p {
  line-height: 30px;
  margin-bottom: 20px;
}
.aboutsec2 .santosh-photowrap {
  max-width: 400px;
  border-radius: 0px;
  position: relative;
  z-index: 3;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .aboutsec2 .santosh-photowrap {
    margin-bottom: 30px;
  }
}
.aboutsec2 .santosh-photowrap::before {
  display: none;
  position: absolute;
  content: "";
  background: url(../images/shape-1-2.png) no-repeat;
  width: 220px;
  height: 165px;
  right: -120px;
  bottom: 100px;
  background-size: contain;
  z-index: -1;
  animation: bounce-y 3s infinite linear;
}
.aboutsec2 .santosh-photowrap::after {
  display: none;
  position: absolute;
  content: "";
  border: 2px solid #caae5c;
  width: 100%;
  height: 100%;
  left: 40px;
  top: -40px;
  border-radius: 10px;
  z-index: -1;
}
@keyframes bounce-y {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.aboutsec2 .experiance {
  background: #ECE6E1;
  color: #0A1119;
  width: 180px;
  height: 180px;
  position: absolute;
  top: -100px;
  right: 50px;
  z-index: 4;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 1312px) {
  .aboutsec2 .experiance {
    top: -130px;
    right: -10px;
  }
}
@media (max-width: 992px) {
  .aboutsec2 .experiance {
    display: none;
  }
}
.aboutsec2 .experiance h4 {
  font-size: 15px;
}
.aboutsec2 .experiance h4 span {
  display: block;
  font-size: 50px;
  font-weight: bold;
}

.aboutsec3 {
  padding: 50px 0px 120px;
}
.aboutsec3 .myintro {
  padding: 10px 20px;
  margin: 20px 0px;
  background: #f4f1eb;
  color: #3a3a3a;
  line-height: 30px;
  border-radius: 8px;
}
.aboutsec3 .abouttextwrap {
  padding-right: 80px;
}
@media (max-width: 992px) {
  .aboutsec3 .abouttextwrap {
    padding-right: 0px;
  }
}
.aboutsec3 .flex-grow-1 img {
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutsec3 .clientbox {
  background-color: #8da68d;
  background: #ECE6E1;
  color: #0A1119;
}
.aboutsec3 .clientbox .iconimg {
  width: 60px;
}
.aboutsec3 .clientbox h4 {
  font-size: 33px;
  font-weight: 700;
}
.aboutsec3 .aboutimg .box1 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  width: 50%;
}
@media (max-width: 668px) {
  .aboutsec3 .aboutimg .box1 {
    width: 100%;
  }
}
.aboutsec3 .aboutimg .box1 .clientbox {
  width: 100%;
  justify-content: center;
}
.aboutsec3 .aboutimg .box2 {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-top: 10px;
  width: 50%;
}
@media (max-width: 668px) {
  .aboutsec3 .aboutimg .box2 {
    width: 100%;
  }
}
.aboutsec3 .aboutimg .box2 .clientbox {
  width: 100%;
  justify-content: center;
}

.aboutsec4 {
  padding: 8rem 0rem 15rem !important;
}
.aboutsec4 .imagewrap {
  border-radius: 60px 0px 60px 0px;
  overflow: hidden;
}
.aboutsec4 .imagewrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.aboutsec4 .personallife {
  padding-left: 5rem;
}
@media (max-width: 992px) {
  .aboutsec4 .personallife {
    padding-left: 0px;
  }
}
.aboutsec4 .personallife h5 {
  font-size: 40px;
  font-family: "Playfair Display", serif;
  margin-bottom: 25px;
  padding-right: 205px;
}
@media (max-width: 1312px) {
  .aboutsec4 .personallife h5 {
    padding-right: 0px;
  }
}
@media (max-width: 992px) {
  .aboutsec4 .personallife h5 br {
    display: none;
  }
}
.aboutsec4 .personallife p {
  font-size: 20px;
  margin-bottom: 20px;
}

.aboutsec5 {
  margin-top: -166px;
}
.aboutsec5 .background-walktogether {
  background: #fff;
  border-top: 5px solid #caae5c;
  padding: 4rem 5rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media (max-width: 668px) {
  .aboutsec5 .background-walktogether {
    padding: 2rem 1rem;
  }
}
.aboutsec5 .background-walktogether p {
  color: #505050;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}
.aboutsec5 .background-walktogether h4 {
  color: #595959;
  font-size: 30px;
  font-family: "Playfair Display", serif;
  margin-bottom: 30px;
}
.aboutsec5 .background-walktogether h4 span {
  display: block;
  color: #caae5c;
}
.aboutsec5 .background-walktogether h6 {
  color: #424242;
  font-size: 35px;
  font-weight: 600;
}
.aboutsec5 .background-walktogether .imgwrap {
  max-width: 350px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .aboutsec5 .background-walktogether .imgwrap {
    margin-top: 30px;
  }
}

.specialmeet {
  padding: 120px 0px 120px;
}
.specialmeet .image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}
.specialmeet .card {
  border-radius: 8px 0px 8px 0px;
  width: calc(24% - 8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.07);
  border: 5px solid #dfdfdf;
  cursor: pointer;
}
.specialmeet .card img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  position: relative;
  display: block;
  min-height: 100%;
  transform: translate3d(0, 0px, 0);
  transition: transform 0.35s;
}
.specialmeet .card img:hover {
  transform: translate3d(0, 0, 0) scale(1.1, 1.1);
  transition-delay: 0.15s;
}
@media (max-width: 768px) {
  .specialmeet .card {
    width: 100%;
    /* 1 column on smaller screens */
  }
}

.tab_section {
  padding: 30px 0px 120px;
}
.tab_section .nav-tabs {
  position: relative;
  border-bottom: none;
}
.tab_section .tab-indicator {
  height: 100%;
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  border-radius: 50px;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  background: #caae5c;
}
@media (max-width: 668px) {
  .tab_section .tab-indicator {
    display: none;
  }
}
.tab_section .gallerytab {
  margin: 50px;
  font-size: 15px;
  padding: 0px;
  list-style: none;
  background: #eceef2;
  border-radius: 50px;
  position: relative;
}
@media (max-width: 992px) {
  .tab_section .gallerytab {
    margin: 20px 0px;
  }
}
@media (max-width: 668px) {
  .tab_section .gallerytab {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    border-radius: 0px;
    margin: 20px 50px;
  }
}
@media (max-width: 668px) {
  .tab_section .gallerytab .nav-item {
    width: 100%;
    display: block;
    text-align: center;
  }
}
.tab_section .gallerytab .nav-link {
  background: transparent !important;
  border: none !important;
  text-decoration: none;
  color: #595959;
  text-transform: capitalize;
  font-weight: 600;
  padding: 15px 30px;
  display: flex;
  gap: 5px;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition-duration: 0.6s;
  font-size: 20px;
}
@media (max-width: 668px) {
  .tab_section .gallerytab .nav-link {
    text-align: center;
    width: 100%;
  }
}
.tab_section .gallerytab .nav-link.active {
  color: #fff;
}
.tab_section .gallerytab .nav-link.active span.photo svg path {
  fill: #fff;
}
.tab_section .gallerytab .nav-link.active span.video svg path,
.tab_section .gallerytab .nav-link.active span.qoutes svg path {
  stroke: #fff;
}
@media (max-width: 668px) {
  .tab_section .gallerytab .nav-link.active {
    width: 100%;
    background: #caae5c !important;
  }
}
.tab_section .gallerytab span svg {
  width: 30px;
}
.tab_section .gallerytab span.photo svg path {
  fill: #595959;
}
.tab_section .gallerytab span.video svg path,
.tab_section .gallerytab span.qoutes svg path {
  stroke: #595959;
}
.tab_section .tab-content {
  /* Main CSS */
  /* Responsive */
}
.tab_section .tab-content img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
.tab_section .tab-content .gallery-video-wrap {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 668px) {
  .tab_section .tab-content .gallery-video-wrap {
    justify-content: space-between;
  }
}
.tab_section .tab-content .gallery-video-wrap .gallery-video {
  flex: 1 1 calc(25% - 15px);
  max-width: calc(25% - 15px);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
@media (max-width: 668px) {
  .tab_section .tab-content .gallery-video-wrap .gallery-video {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
.tab_section .tab-content .grid-wrapper > a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tab_section .tab-content .grid-wrapper > a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.tab_section .tab-content .grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
@media (max-width: 668px) {
  .tab_section .tab-content .grid-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}
.tab_section .tab-content .grid-wrapper .wide {
  grid-column: span 2;
}
@media (max-width: 668px) {
  .tab_section .tab-content .grid-wrapper .wide {
    grid-column: span 1;
  }
}
.tab_section .tab-content .grid-wrapper .tall {
  grid-row: span 2;
}
@media (max-width: 668px) {
  .tab_section .tab-content .grid-wrapper .tall {
    grid-row: span 1;
  }
}
.tab_section .tab-content .grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 668px) {
  .tab_section .tab-content .grid-wrapper .big {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.tab_section .tab-content .gallery-quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.tab_section .tab-content .gallery-box {
  flex: 1 1 calc(25% - 15px);
  max-width: calc(25% - 15px);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.tab_section .tab-content .gallery-box:hover {
  transform: scale(1.05);
}
.tab_section .tab-content .gallery-box img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: fill;
     object-fit: fill;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}
@media (max-width: 992px) {
  .tab_section .tab-content .gallery-box {
    flex: 1 1 calc(33.33% - 15px);
    max-width: calc(33.33% - 15px);
  }
}
@media (max-width: 768px) {
  .tab_section .tab-content .gallery-box {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 480px) {
  .tab_section .tab-content .gallery-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.contactinfo-wrap {
  padding: 100px 0px;
}
.contactinfo-wrap .section-title {
  margin-bottom: 10px;
}
.contactinfo-wrap p {
  font-size: 20px;
}
.contactinfo-wrap .contact-info-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 85px;
  text-align: left;
  margin-top: 30px;
  padding-top: 30px;
}
@media (max-width: 992px) {
  .contactinfo-wrap .contact-info-box {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.contactinfo-wrap .contact-info-item {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contactinfo-wrap .contact-info-item .icon-box {
  position: relative;
  background-color: #caae5c;
  border-radius: 10px;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  transition: all 0.5s ease-in-out;
}
.contactinfo-wrap .contact-info-item .icon-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #595959;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}
.contactinfo-wrap .contact-info-item .icon-box img {
  position: relative;
  max-width: 30px;
  z-index: 1;
}
.contactinfo-wrap .contact-info-item:hover .icon-box {
  background-color: transparent;
}
.contactinfo-wrap .contact-info-item:hover .icon-box::before {
  transform: scale(1);
}
.contactinfo-wrap .contact-info-content {
  width: calc(100% - 80px);
}
.contactinfo-wrap .contact-info-content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-transform: capitalize;
  color: #222222;
  font-family: "Playfair Display", serif;
}
.contactinfo-wrap .contact-info-content p {
  margin-bottom: 0;
}
.contactinfo-wrap .contact-info-content p a {
  color: inherit;
}

.contactform-wrap {
  background: url(../images/contactbg.jpeg) no-repeat;
  background-size: 100%;
  background-position: center;
}
@media (max-width: 992px) {
  .contactform-wrap {
    background-size: cover;
  }
}
.contactform-wrap .iti--allow-dropdown .iti__flag-container,
.contactform-wrap .iti--separate-dial-code .iti__flag-container {
  left: 53px;
}
.contactform-wrap #phone {
  padding-left: 100px;
}
.contactform-wrap .iti {
  display: block;
}
.contactform-wrap .contact-us-form {
  background-color: #fff;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.0392156863);
  border-radius: 40px;
  padding: 20px 40px;
  margin: 60px 0px;
}
.contactform-wrap .contact-us-form .section-title {
  text-transform: capitalize;
}
@media (max-width: 992px) {
  .contactform-wrap .contact-us-form .section-title {
    text-align: center;
    font-size: 37px;
  }
}
@media (max-width: 992px) {
  .contactform-wrap .contact-us-form .g-recaptcha {
    transform: scale(0.8);
  }
}
@media (max-width: 992px) {
  .contactform-wrap .contact-us-form #contactForm .row .col-md-6.col-sm-12 {
    width: 100% !important;
  }
}
.contactform-wrap #captchaError {
  color: #dc3545;
  margin-top: 0px;
  font-size: 12px;
  display: none;
  text-align: center;
}
.contactform-wrap .was-validated label {
  height: 60px !important;
}
.contactform-wrap .form-control.is-invalid:focus,
.contactform-wrap .was-validated .form-control:invalid:focus,
.contactform-wrap .form-control.is-valid,
.contactform-wrap .was-validated .form-control:valid {
  box-shadow: none;
}
.contactform-wrap .wrap-input {
  margin-bottom: 1.5rem !important;
}
.contactform-wrap .wrap-input .form-control {
  height: 55px;
  background: transparent;
  font-size: 15px;
  color: #333333;
  line-height: 1.2;
  padding: 0 25px 0 60px;
  border: none;
  box-shadow: none;
  outline: none;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
}
.contactform-wrap .wrap-input textarea.form-control {
  padding-top: 21px;
}
.contactform-wrap .wrap-input .label {
  font-size: 18px;
  color: #999999;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60px;
  height: 100%;
  top: 0;
  left: 2px;
}
.contactform-wrap .wrap-input .rs1 {
  height: 60px;
}
.contactform-wrap .wrap-input .iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}
.contactform-wrap .wrap-input .iti__flag {
  visibility: visible;
}
.contactform-wrap .wrap-input .phonelabel {
  left: 0px;
}
.contactform-wrap .wrap-input .invalid-feedback {
  position: absolute;
  bottom: -26px;
  left: 0;
  font-size: 12px;
}
.contactform-wrap button.theam_btn {
  outline: none;
  border: none;
  width: 60%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.program-wrap {
  padding: 120px 0px;
  position: relative;
}
.program-wrap .models_section_2 {
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  height: auto;
  padding: 20px;
  box-shadow: 0px 0px 20px 10px #e9e9e8;
  margin-top: 60px;
}
.program-wrap .models_section_2 .row {
  align-items: center;
}
.program-wrap .carolo_text {
  width: 100%;
  color: #595959;
  font-size: 35px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: normal;
  font-family: "Playfair Display", serif;
}
.program-wrap .ullamco_text {
  width: 100%;
  font-size: 16px;
  color: #4e4e4e;
  margin: 30px 0px 0px 0px;
}

#booking {
  background-size: cover;
  background-position: center;
}
#booking .iti {
  display: block;
}
#booking #captchaError {
  color: #dc3545;
  margin-top: 0.25rem;
  font-size: 0.875em;
  display: none;
  text-align: center;
}
#booking::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
#booking .wrap-input {
  margin-bottom: 25px;
}
#booking .wrap-input .messagelabel {
  display: inline-block;
  min-height: 31px;
}
#booking .wrap-input label {
  display: inline-block;
  color: #3d3d3d;
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
  margin-bottom: 0px;
  line-height: normal;
}
#booking .wrap-input .form-control,
#booking .wrap-input .form-select {
  background-color: #f1f1f1;
  border-radius: 0px;
  border: none;
  height: 40px;
  box-shadow: none;
  color: #3e485c;
  font-size: 14px;
  background-image: none;
}
#booking .wrap-input .form-control::-moz-placeholder {
  color: #4a4a4a;
}
#booking .wrap-input .form-control::placeholder {
  color: #4a4a4a;
}
#booking .modal-title {
  color: #575757;
  font-size: 28px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
#booking .promo-img {
  background: url(../images/backgroundflower.jpg);
  width: 100%;
  background-size: cover;
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1312px) {
  #booking .promo-img {
    display: none;
  }
}
#booking .content-text {
  width: 60%;
}
@media (max-width: 1312px) {
  #booking .content-text {
    width: 100%;
  }
}
#booking .close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s ease;
  z-index: 1056;
}
@media (max-width: 1312px) {
  #booking .close-btn {
    top: 0px;
    right: 0px;
  }
}
#booking .close-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
#booking .theam_btn {
  transform: scale(1) !important;
  opacity: 1 !important;
}

.downloadpdf {
  display: inline-block;
  width: 40px;
  margin: 0px 8px;
}
.downloadpdf img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.soulretreats {
  padding-top: 50px;
}
.soulretreats .soulretreatswrap {
  max-width: 1000px;
}/*# sourceMappingURL=style2.css.map */