@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
  font-family: "icoMoon";
  src: url("../fonts/icomoon.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

:root {
    --primary-color-h: 210.0;
    --primary-color-s: 100.00%;
    --primary-color-l: 20.00%;
    --primary-color-hsl: var(--primary-color-h), var(--primary-color-s), var(--primary-color-l);
    --primary-color: #003366;
    --secondary-color-h: 1.8;
    --secondary-color-s: 100.00%;
    --secondary-color-l: 60.78%;
    --secondary-color-hsl: var(--secondary-color-h), var(--secondary-color-s), var(--secondary-color-l);
    --secondary-color: #FF3D37;
    --tertiary-color-h: 40.98;
    --tertiary-color-s: 100.00%;
    --tertiary-color-l: 64.12%;
    --tertiary-color-hsl: var(--tertiary-color-h), var(--tertiary-color-s), var(--tertiary-color-l);
    --tertiary-color: #FFC548;

    --pink: #fe76b4;
    --voilet: #861fce;
    --blue: #0064ec;
    --green: #00b273;

    --white: #fff;
    --light: #f5f5f5;

  /* --primary-color: #0064ec;
  --secondary-color: #fdca06;
  --body-color: #212121;
  --secondary-light: #fff9e1; */
  --primary-radius: 10px;
  --header-height: 120px;
}

body {
  color: var(--primary-color, #404040);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}


a,
a:hover {
  text-decoration: none;
}
a{
  color: inherit;
}
a:hover{
  color: var(--primary-color);
}

.table a, p a{
  text-decoration: underline dashed var(--tertiary-color);
}

.table thead th{
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  color: var(--secondary-color);
}

img, video, iframe {
  width: 100%;
  display: block;
}

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

.aspect-1x1{
  aspect-ratio:  1 / 1;
}

.aspect-16x12{
  aspect-ratio:  16 / 12;
}

.aspect-16x9{
  aspect-ratio:  16 / 9;
}

.container-xxl{
  padding-left: 2rem;
  padding-right: 2rem;
}

.videoBtn {
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background-color: var(--tertiary-color, #FFC548);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 300ms ease-in-out;
	animation: breathe 800ms alternate infinite;
	z-index: 1;
}

.videoBtn::before {
	content: '';
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgb(255 255 255 / 75%);
	background-image: radial-gradient(circle at 50% 50%, var(--secondary-color) 40%, rgb(0 0 0 / 75%) 40%);
	z-index: -1;
	transition: all 300ms ease-in-out;
	transition-delay: 100ms;
	animation: breathe 800ms alternate infinite;
}

.videoBtn.bg-secondary::before {
	background-image: radial-gradient(circle at 50% 50%, var(--tertiary-color) 40%, rgb(0 0 0 / 75%) 40%);
}

.videoBtn:hover {
	animation-play-state: paused;
  color: #fff;
}

.videoBtn:hover::before {
	animation-play-state: paused;
	border-color: #fff;
}

@keyframes breathe {
	0% {
		scale: 1;
	}

	100% {
		scale: 1.2;
	}
}

.icon-circular{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white, #fff);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: .875em;
}

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

.rounded{
  border-radius: var(--primary-radius) !important;
}

.filter-white{
  -webkit-filter: brightness(55);
  filter: brightness(55);
}

.filter-invert{
  -webkit-filter: brightness(55) invert(1);
  filter: brightness(55) invert(1);
}

.text-justify{
  text-align: justify;
}

.text-light{
  color: var(--light) !important;
}

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

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

.text-tertiary{
  color: var(--tertiary-color) !important;
}

.text-blue{
  color: var(--blue) !important;
}

.text-green{
  color: var(--green) !important;
}

.text-pink{
  color: var(--pink) !important;
}

.text-voilet{
  color: var(--voilet) !important;
}

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

.bg-secondary{
	background-color: var(--secondary-color) !important;
}

.bg-secondary-light{
	background-color: var(--secondary-light);
}

.bg-light{
	background-color: var(--light) !important;
}

.bg-pink{
  background-color: var(--pink) !important;
}

.bg-blue{
  background-color: var(--blue) !important;
}

.bg-half {
  background-image: linear-gradient(transparent 65%, var(--clr) 65%);
}

.bg-half.reverse {
  background-image: linear-gradient(var(--clr) 70%, transparent 70%);
}



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

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

.bg-pattern::before{
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/schoolbg.png) center / 20%;
  filter: invert(1);
  opacity: 0.05;
  z-index: -1;
}


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

/* Custom Scroll */
.scroller {
  overflow: auto;
}

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

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

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

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}
/* Custom Scroll */

/* custom shapes */
span[class^= "shape_"]::after {
  position: relative;
  display: inline-block;
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 24px;
  line-height: 1;
  margin: 0px 0px 0px 12px;
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}

.shape_pink_circle::after {
  content: "";
  color: #fe76b4;
}

.shape_blue_hourglass::after {
  content: "";
  color: #0064ec;
}

.shape_red_triangle::after {
  content: "";
  color: var(--secondary-color, #A3A3A3);
}

.shape_purple_stairs::after {
  content: "";
  color: #861fce;
}

.shape_green_flower::after {
  content: "";
  color: #00b273;
}

.shape_yellow_bars::after {
  content: "";
  color: var(--tertiary-color, #A3A3A3);
}
/* custom shapes */


.readmore{
  margin-top: 2rem;
}

.readmore.d-flex{
  flex-wrap: wrap;
  gap: 1rem;
}

.readmore {
  .button {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    position: relative;
    display: inline-block;
    text-align: center;
    min-width: 150px;
    padding: 1rem 2rem;
    text-decoration: none;
    overflow: hidden;
    vertical-align: middle;
    z-index: 1;
    border: 0;
    background-color: var(--clr, var(--tertiary-color, #FFC548));
    transition: color 0.3s ease;
    line-height: 1;

    &:hover{
      color: var(--white) !important;
    }
  }
}

.readmore .button::before,
.readmore .button::after {
  position: absolute;
  content: "";
  width: 0;
  top: 0;
  height: 110%;
  left: -20%;
  transform: skewX(-35deg);
  z-index: -1;
}

.readmore .button::before {
  background: var(--primary-color);
  transition: all 0.6s;
}

.readmore .button::after {
  background: var(--blue);
  transition: all 0.45s;
}

.readmore .button:hover::before,
.readmore .button:hover::after {
  width: 140%;
}


.readmore .button.sm {
  min-width: 130px;
  padding: .75rem 1rem;
  font-size: 14px;
}

.readmore.lightReadmore .button {
  color: #fff;
}

.readmore.lightReadmore .button:hover {
  color: #000;
}

.readmore.whiteReadmore .button {
  box-shadow: inset 0 0 0 2px #fff;
  color: #fff;
}

.readmore.whiteReadmore .button:hover {
  color: #000;
}

.readmore.whiteReadmore .button::before {
  background: #fff;
}
.readmore.whiteReadmore .button::after {
  background: rgb(255 255 255 / 0.5);
}

.readmore.darkReadmore .button {
  box-shadow: inset 0 0 0 2px #000;
  color: #000;
}

.readmore.darkReadmore .button:hover {
  color: #fff;
}

.readmore.darkReadmore .button::before {
  background: #000;
}
.readmore.darkReadmore .button::after {
  background: rgb(0 0 0 / 0.5);
}

.viewmore{
  margin-top: 2rem;
}

.viewmore .button {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  text-decoration: none;
  color: var(--secondary-color, #FF3D37);
  transition: color 0.3s ease;
}
.viewmore .button:hover {
  color: var(--primary-color, #003366);
}

/* hidden title */
.hidden-title{
  word-break: keep-all;
  font-size: 10vw;
  letter-spacing: .4vw;
  opacity: 0.05;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  pointer-events: none;
  z-index: -1;
}

.absolute-title-section {
  padding-left: 4rem;
}
.absolute-title{
  word-break: keep-all;
  font-size: clamp(3.5rem, 5.4vw, 10rem);
  letter-spacing: .4vw;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  filter: opacity(0.1);
  writing-mode: sideways-lr;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 20;
  pointer-events: none;
  white-space: nowrap;
}
.absolute-title.text-white{
  filter: opacity(0.4);
}

.bg-primary .absolute-title{
  filter: opacity(0.1);
}

[data-position="right"].absolute-title{
  left: auto;
  right: 0;
  writing-mode: sideways-rl;
}
/* hidden title */

/* Heading */
.headingContainer{
  margin-bottom: 3rem;
}

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

.heading {
  display: table;
  margin-bottom: 3rem;
}

.smallHeading{
    display: block;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.heading .h1 {
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 600;
  color: var(--clr, var(--primary-color, #003366));
}

.heading .h2, .heading .h3{
  font-weight: bold;
}

.title{
    display: flex;
    align-items: center;
    position: relative;
    font-size: 2.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;

    .index-box{
        width: 55px;
        height: 55px;
        font-size: 29px;
        margin-right: 20px;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0px 12px 0px 0px;
        padding: 0;
        color: #fff;
        line-height: 1;
        font-weight: 600;
        font-style: normal;
        -ms-flex-negative: 0;
        flex-shrink: 0;

        &::before{
            content: "";
            font-size: 55px;
            font-family: "IcoMoon";
            font-smoothing: antialiased;
            font-weight: normal;
            speak: none;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            line-height: 1;
            font-weight: normal;
            color: #861fce;
            -webkit-transition: .5s;
            transition: .5s;
        }

        span{
            position: relative;
            z-index: 2;
        }
    }
}

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

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

label{
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
}

.form-control {
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 16%);
  background: none;
  outline: none;
  font-family: var(--font-bold);
}

.form-control[readonly] {
  background: none;
}

.form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--body-color);
}

select.form-control {
  padding-right: 2rem;
  background: url(../images/icons/arrow-down.svg) 85% center / 10px no-repeat;
}

/* .imgBox img{
  border: 1px solid rgb(0 0 0 / 10%);
  padding: 5px;
  background-color: var(--white);
} */


/* customize swiper */
div[class^=swiper-button] {
  color: var(--white);
  background-color: var(--secondary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: -20px;
  transition: all 300ms linear
}

div[class^=swiper-button].bg-primary,div[class^=swiper-button]:hover {
  background-color: var(--primary-color);
}

div[class^=swiper-button]::after {
  font-size: 16px
}

div[class^=swiper-button].bg-primary:hover {
  background-color: var(--secondary-color) !important;
  color: var(--white);
}

.bottomControls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px
}

.bottomControls.position-absolute {
  bottom: 2rem;
  width: 100%;
  z-index: 2;
}

.bottomControls div[class^=swiper-] {
  position: static;
  margin: 0!important
}

.bottomControls .swiper-pagination {
  width: max-content
}

.rotate-90{
  transform: rotate(90deg);
}
.rotate-n90{
  transform: rotate(-90deg);
}
/* customize swiper */

.newtag {
	position: absolute;
	right: 10px;
	top: 0;
	padding: 5px 10px;
	color: #fff;
	font-size: 10px;
	text-transform: uppercase;
	background-color: red;
	border-radius: 0 0 5px 5px;
	transform: translateY(-5px);
	box-shadow: 2px 2px 12px rgb(0 0 0 / 40%);
	animation: blink 1s alternate infinite;
	z-index: 1;
}

@keyframes blink {
	0% {
		background-color: red;
	}

	50% {
    color: var(--primary-color);
		background-color: var(--tertiary-color);
	}
}

.newtag::before,
.newtag::after {
	content: '';
	position: absolute;
	top: 0;
	height: 5px;
	width: 5px;
	background-color: maroon;
	z-index: -1;
}

.newtag::before {
	left: -5px;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.newtag::after {
	right: -5px;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

/* icon Box */
.iconBox .inner {
	display: block;
	padding: 1.75rem;
	text-align: center;
	color: var(--text-color);
	text-transform: uppercase;
	font-size: 0.875rem;
	font-weight: 700;
	position: relative;
	z-index: 1;
	transition: all 300ms ease-in-out;
}

.iconBox .inner .img-fluid {
	width: 80px;
	padding: 15px;
	margin: 0 auto 10px;
	transition: all 300ms ease-in-out;
}

.iconBox .inner:hover .img-fluid {
	filter: brightness(1);
}

/* icon Box */