@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap");

:root {
  --primary-color: #960000;
  --secondary-color: #0f5c03;
  --body-color: #0e0e0e;
  --vibrant-color: #fc4a4b;
  --light: #f2f7ff;
  --facebook: #4267b2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #ff0000;
  --whatsapp: #25d366;
  --instagram: #c92bb7;
  --josefin: "Josefin Sans", sans-serif;
  --primary-gradient: radial-gradient(circle at 80% -30%, var(--vibrant-color), var(--primary-color));
  --golden-gradient: radial-gradient(
      ellipse farthest-corner at right bottom,
      #54b66a 0%,
      #37a250 8%,
      #049ac6 30%,
      #007699 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #89f6a1 8%,
      #37a250 25%,
      #049ac6 62.5%,
      #007699 100%
    );
  --golden-gradient-hover: radial-gradient(
    ellipse farthest-corner at left top,
    #ffffff 0%,
    #91f0a6 8%,
    #37a250 25%,
    #049ac6 62.5%),
    radial-gradient(
      ellipse farthest-corner at right bottom,
      #54b66a 0%,
      #37a250 8%,
      #049ac6 30%,
      #007699 40%,
      transparent 80%
    );
}

body {
  /* color: rgb(255 255 255 / 78%); */
  background: linear-gradient(#f5fffc,#e8fff7);
  font: 400 1rem "Open Sans", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

svg:not([fill]) {
  fill: currentColor;
}

.font-weight-bolder{
  font-weight: 800 !important;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

a {
  color: var(--body-color);
  transition: all 300ms ease-in-out;
}

a.bg-primary:hover {
  background-color: var(--primary-color) !important;
}
html {
  scroll-behavior: smooth;
}
img {
  width: 100%;
  display: block;
}
.blur{
  -webkit-filter: blur(8px);
  filter: blur(8px);
}

.object-cover {
  object-fit: cover;
}

.container-fluid {
  padding-left: 3rem;
  padding-right: 3rem;
}

.filter-white {
  -ms-filter: brightness(70);
  filter: brightness(70);
}

.filter-dark {
  -ms-filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
}

.rounded{
  border-radius: 10px !important;
}

/*header*/
.header {
  position: absolute;
  inset: 0 0 auto;
  padding: 7px 1rem;
  background: #fff;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 15%);
  z-index: 997;
  transition: all 300ms ease-in-out;
}

.header .d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 150px;
}
/*header*/

.modal-body .form-control {
  border-bottom: 2px solid #eaeaea;
  background-color: #f1f1f1;
  color: var(--body-color);
  padding: 8px 10px;
  font-size: 14px;
}

.hero{
  margin-top: 58px;
  /* height: calc(100vh - (2rem + 89px)); */
}

.bannerText{
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  max-width: 380px;
  width: calc(100% - 2rem);
  z-index: 10;
  padding: 2rem;
  background: var(--secondary-color);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100px);
  opacity: 0;
  transition: all 300ms ease-in-out;
}

.carousel-item.active .bannerText{
  transform: translateX(0px);
  opacity: 1;
}

.banner .projectLogo {
  margin: 10px 0;
  text-transform: uppercase;
  width: 100%;
  padding: 0.4rem 0;
  border-top: 1px solid rgb(255 255 255 / 15%);
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  letter-spacing: 2px;
}

.banner .projectLogo h4 {
  font-weight: 800;
  color: var(--vibrant-color);
}

.banner .projectLogo h6{
  font-size: .75rem;
  letter-spacing: 4px;
}

#banner {
  /* height: 480px; */
  position: relative;
  z-index: 1;
}

.banner-aside .inner {
  background: var(--primary-gradient);
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
}

.banner-aside .banner-heading {
  color: #fff;
  text-shadow: 1px 1px 0 rgb(0 0 0 / 20%);
}

.banner-aside .h4 {
  font-weight: 800;
  line-height: 1;
}

.banner-aside form {
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
}

.carousel-control-next.banner-next, .carousel-control-prev.banner-prev{
	width:40px;
	height:40px;
  margin-top: 0;
	top:auto;
	bottom:1rem;
	background-color:rgb(0 0 0 / 20%);
	border-radius:50px;
	opacity:1;
	z-index:9;
}

.carousel-control-next.banner-next{
	right:1rem;
}

.carousel-control-prev.banner-prev{
	left:calc(100% - (1rem + (40px * 2) + 10px));
}

.carousel-control-next-icon, .carousel-control-prev-icon{
	background-size:60%;
}

.carousel-control-next.banner-next:hover, .carousel-control-prev.banner-prev:hover{
	background-color:var(--primary-color);
}

.blink{
  animation: blink 1s alternate linear infinite calc(var(--i) * 300ms);
}

@keyframes blink{
  33%{color: var(--instagram);}
  66%{color: var(--primary-color); background-color: var(--vibrant-color); box-shadow: 0 3px 3px rgb(0 0 0 / 15%), 0 6px 20px rgb(0 0 0 / 10%);}
  100%{color: var(--whatsapp);}
}


.iconBox .in {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; 
  gap: 10px;
  color: #fff;
}

.iconBox .in i {
  width: 30px;
}

.iconBox .in img {
  width: 50px;
}

.iconBox .in h6 {
  font-weight: 700;
}

.iconBox .in .h2 small{
  font-size: .75rem;
  text-transform: uppercase;
}
/* overview */

.random-bg{
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* highlights */
.iconsContainer .iconBox .in {
  height: 100%;
  padding: 2rem;
  transition: all 300ms ease-in-out;
  background: var(--primary-gradient);
  color: #fff;
  position: relative;
  isolation: isolate;
}
.iconsContainer .iconBox .in:hover {
  color: var(--body-color);
  background: #fff;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 15%);
}

.iconsContainer .iconBox .in img {
  filter: grayscale(1) brightness(55);
}

.iconsContainer .iconBox .in:hover img {
  filter:  brightness(1);
}

.iconsContainer .iconBox .in p{
  font-size: 0.875rem;
}

.iconsContainer .iconBox .in .hoverText{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  opacity: 0;
}

.iconsContainer .iconBox .in:hover .hoverText{
  opacity: 1;
}
/* highlights */

.joinus .heading{
  padding: 2rem;
}

/* why school */
.whyBox{
  height: auto;
}
.whyBox .scroller{
  height: 100px;
  padding-right: 10px;
}
/* why school */

/* testimonials */
.testimBox{
  height: auto;
}

.testimBox .inner{
  height: 100%;
  padding: 3rem;
  background: linear-gradient(to bottom right,var(--light),#ffecec);
  border-radius: 10px;
}

.quotation-mark{
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 3rem;
  line-height: 0;
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  padding: 1rem 0 0;
  border-radius: 50%;
  background: linear-gradient(to bottom right,var(--light),#ffecec);
  box-shadow: 3px 3px 3px #fff, -3px -3px 3px #eceef2;
}

.testim-name{
  display: block;
  margin-top: 1.25rem;
  color: var(--primary-color);
}
/* testimonials */

/* gallery */
.galBox .inner{
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.galBox .inner::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgb(0 0 0 / 75%));
  z-index: 1;
  border-radius: 10px;
  pointer-events: none;
  transition: all 300ms ease-in-out;
}
.galBox .inner:hover::before{
  background: linear-gradient(transparent 0%, rgb(0 0 0 / 75%));
}
.galBox .inner .caption{
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  text-transform: capitalize;
}
/* gallery */

/* boards */
.logoBox .inner{
  padding: 1rem;
}
.logoBox img{
  max-width: 130px;
  margin: 0 auto;
}
/* boards */

.footer{
  font-size: 12px;
  background-color: var(--body-color);
  color: #fff;
}

.footer .d-flex{
  gap: 10px;
}


p {
  line-height: 1.4;
}

.padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.headingContainer {
  margin-bottom: 30px;
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 30px;
  font-family: var(--josefin);
  z-index: 1;
}

.heading .h1,
.heading h2,
.heading h3,
.heading h4,
.heading h5,
.heading h6 {
  display: block;
  font-weight: 700;
}

div[class^="heading bg-"] .h1 {
  text-transform: capitalize;
}

.heading .display-4 {
  font-weight: 700;
}

.heading .h3 {
  line-height: 1.25;
  text-transform: uppercase;
}

.heading h5 {
  font-weight: 500;
  color: var(--primary-color);
}

.heading h6 {
  font-weight: 400;
  letter-spacing: 2px;
}

.text-vibrant {
  color: var(--vibrant-color) !important;
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}

.text-josefin {
  font-family: var(--josefin);
}

.bg-primary {
  background-color: var(--primary-color) !important;
  color: #fff;
}

.bg-light {
  background: radial-gradient(circle at 80% -30%, #f6fffd, #f2f7ff) !important;
}
.bg-primary-gradient {
  background: var(--primary-gradient) !important;
  color: #fff;
}

.bg-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--body-color);
  opacity: 0.1;
  clip-path: circle(60% at 90% -20%);
  z-index: -1;
  pointer-events: none;
}

.bg-image {
  background: center / cover no-repeat fixed;
}

.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 35%);
  z-index: -1;
}

.bg-image.overlay-white::before {
  background-color: rgb(255 255 255 / 05%);
  backdrop-filter: blur(5px);
}

.scroller {
  overflow: auto;
}

.scroller::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #cfcfcf;
  border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.gap-row {
  row-gap: 30px;
}
.gap-form-row {
  row-gap: 10px;
}

.moreText {
  display: none;
}

.viewmore .button {
  font-size: 14px;
  font-weight: 700;
  color: var(--vibrant-color);
  background-color: transparent;
  border: 0;
  padding: 0;
}

.viewmore .button:hover {
  color: var(--primary-color);
}

.viewmore .button.text-white:hover {
  text-decoration: underline;
}

.viewmore .button i {
  transition: transform 300ms ease-in-out;
}

.viewmore .button:hover i {
  transform: translateX(5px);
}

.readmore {
  width: 100%;
  margin-top: 2.5rem;
}

.readmore .button {
  display: table;
  padding: 10px 15px;
  min-width: 140px;
  border-radius: 3rem;
  color: #fff;
  background: var(--primary-gradient);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.3s;
  position: relative;
  z-index: 1;
}

.readmore .button.whatsapp{
  min-width: 1px;
  background: var(--secondary-color);
}

.readmore button {
  border-radius: 0;
  border: none;
  font-size: 14px;
  background: none;
}

.readmore .button:hover {
  background: var(--body-color);
}

.readmore .button.bg-white {
  color: var(--body-color);
  background: #fff !important;
}

.readmore .button.bg-white:hover {
  color: #fff;
  background: var(--body-color) !important;
}
.readmore .button.bg-dark {
  color: #fff;
  background: #000 !important;
}

.readmore .button.bg-dark:hover {
  background: var(--primary-color) !important;
}

.readmore.d-flex, .readmore.d-sm-flex{
  justify-content: center;
  gap: 10px;
}

.position-relative {
  z-index: 1;
}

/* custom swiper controls */
.swiper{
  padding-bottom: 4rem;
}
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  margin-top: 0px;
  top: auto;
  bottom: 0;
  background: url(../images/arrow-left.png) center / 16px no-repeat
    var(--body-color);
  transition: all 300ms ease-in-out;
  border-radius: 50%;
}

.swiper::before,
.swiper-button-prev {
  left: calc(50% - 60px);
}
.swiper::after,
.swiper-button-next {
  right: calc(50% - 60px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--secondary-color);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  transform: rotate(-180deg);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
/* custom swiper controls */

.footer-enquiryBtn {
  position: fixed;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  z-index: 99;
  background: var(--primary-gradient);
  text-align: center;
}
.footer-enquiryBtn a {
  color: #fff;
  text-align: center;
  display: block;
  padding: 8px 5px;
  border-left: 0;
  width: 50%;
  background: linear-gradient(45deg, #df2f30, transparent);
}

.button-top {
  background: var(--secondary-color);
  position: fixed;
  cursor: pointer;
  right: 10px;
  bottom: 8px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  z-index: 99;
}

.button-top:hover {
  background: var(--primary-color);
}

.socialBtn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}
.socialIcons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.socialIcons a i {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
  text-align: center;
}

.socialIcons.solid a i {
  border: none;
}

.socialIcons.stroke a:hover .fa-facebook-f,
.socialIcons.solid a .fa-facebook-f {
  background-color: var(--facebook);
}
.socialIcons.stroke a:hover .fa-linkedin-in,
.socialIcons.solid a .fa-linkedin-in {
  background-color: var(--linkedin);
}
.socialIcons.stroke a:hover .fa-twitter,
.socialIcons.solid a .fa-twitter {
  background-color: var(--twitter);
}
.socialIcons.stroke a:hover .fa-youtube,
.socialIcons.solid a .fa-youtube {
  background-color: var(--youtube);
}
.socialIcons.stroke a:hover .fa-whatsapp,
.socialIcons.solid a .fa-whatsapp {
  background-color: var(--whatsapp);
}
.socialIcons.stroke a:hover .fa-instagram,
.socialIcons.solid a .fa-instagram {
  background-color: var(--instagram);
}

.socialIcons.stroke a .fa-facebook-f {
  border-color: var(--facebook);
}
.socialIcons.stroke a .fa-linkedin-in {
  border-color: var(--linkedin);
}
.socialIcons.stroke a .fa-twitter {
  border-color: var(--twitter);
}
.socialIcons.stroke a .fa-youtube {
  border-color: var(--youtube);
}
.socialIcons.stroke a .fa-whatsapp {
  border-color: var(--whatsapp);
}
.socialIcons.stroke a .fa-instagram {
  border-color: var(--instagram);
}

.socialIcons.solid a:hover i,
.socialIcons a:hover i {
  background-color: #fff;
}

.socialIcons.stroke a .fa-facebook-f,
.socialIcons a:hover .fa-facebook-f {
  color: var(--facebook);
}
.socialIcons.stroke a .fa-linkedin-in,
.socialIcons a:hover .fa-linkedin-in {
  color: var(--linkedin);
}
.socialIcons.stroke a .fa-twitter,
.socialIcons a:hover .fa-twitter {
  color: var(--twitter);
}
.socialIcons.stroke a .fa-youtube,
.socialIcons a:hover .fa-youtube {
  color: var(--youtube);
}
.socialIcons.stroke a .fa-whatsapp,
.socialIcons a:hover .fa-whatsapp {
  color: var(--whatsapp);
}
.socialIcons.stroke a .fa-instagram,
.socialIcons a:hover .fa-instagram {
  color: var(--instagram);
}
.socialIcons.stroke a:hover i {
  color: #fff;
}
/***** Inside pages end *****/

.form-group {
  margin-bottom: 10px;
}

.form-group > div {
  margin-top: 15px;
}

.form-group label {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
}

.form-control {
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 30%);
  background-color: rgb(255 255 255 / 75%);
  outline: none;
  height: auto;
  padding: 10px;
  font-size: 14px;
}

.form-control[readonly] {
  background-color: #fff;
}

.form-control:focus {
  box-shadow: 0 10px 20px rgb(0 0 0 / 15%);
  border-bottom-color: var(--primary-color);
  background-color: #fff;
}
/* customize modal */
.modal-backdrop.show {
  opacity: 1;
  background-color: rgb(0 0 0 / 75%);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
  border-radius: 1rem;
}

button.close {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  opacity: 1;
  text-shadow: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  background-color: rgb(141, 0, 0);
  color: #fff;
}

.modal-content {
  background: var(--primary-gradient);
  border: none;
}
.modal-content .modal-header {
  padding: 0;
  border: none;
}
.modal-content button.close {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
  text-shadow: none;
  color: var(--body-color);
  opacity: 1;
}
.modal-header .close {
  color: #fff;
}
.modal-header {
  background: none;
  border: none;
}
.no-gutters .col-md-6:first-child {
  background-color: rgb(255 255 255 / 55%);
  border-radius: 1rem 0 0 1rem;
  color: var(--body-color);
}
.no-gutters .col-md-6:first-child .modal-body {
  background-size: 100% !important;
}

.modal-body {
  padding: 25px;
}
.formFooter.readmore .button:hover {
  background: #fff !important;
  color: var(--primary-color);
}
/* customize modal */

/*transformation Animation*/
.leftTranslate {
  -webkit-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.rightTranslate {
  -webkit-transform: translate(200px, 0);
  transform: translate(200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.topTranslate {
  -webkit-transform: translate(0, -200px);
  transform: translate(0, -200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.bottomTranslate {
  -webkit-transform: translate(0, 200px);
  transform: translate(0, 200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.doneTranslate {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.fadeOut {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
}

.fadeIn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.zoomOut {
  transform: scale(0);
  transition: all 0.8s ease-in-out;
}

.zoomIn {
  transform: scale(1);
}
/*transformation Animation*/

.privacyContainer ul {
  padding-left: 40px;
  margin-bottom: 1rem;
}

.privacyContainer li {
  margin-bottom: 10px;
}
.privacyContainer li::marker {
  font-weight: 600;
}
.ulclasses {
  text-align: left;
  font-size: 86%;
  padding: 7px;
}
