/* Font Family */

@font-face {
  font-family: BerlinFont;
  src: url(BRLNSDB.TTF);
}

/* Form */

.enquire-form-main {
  background-color: #ffffff;
  padding: 20px 30px 50px;
  border-radius: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  margin-left: auto;
}
.form-title {
  color: #01964a;
  font-family: BerlinFont;
  font-size: 40px;
  font-weight: 400;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
.form-group label {
  font-weight: bold;
}
.form-group input {
  margin-block: 15px;
}
.btn-submit {
  background-color: #2bad4a;
  color: white;
  font-weight: bold;
  border-radius: 25px;
  padding: 10px 20px;
  border: none;
  display: block;
  width: 100%;
  margin-top: 25px;
}
.btn-submit:hover {
  background-color: #239b3e;
}
/* Banner */
section.banner {
  height: 85vh;
  background-image: url(../assets/images/university-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 5%;
}
section.banner .container {
  height: 100%;
  align-content: center;
}
.img-mob img {
  display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* About */

.about-section {
  align-content: center;
  height: 100%;
  position: relative;
}
.about {
  overflow: hidden;
}
.about .img-wrapper {
  padding-block: 80px;
  position: relative;
}
.about .img-wrapper .bg-circle2 {
  position: absolute;
  bottom: 140px;
  left: -128px;
  z-index: -1;
}
.about .img-wrapper img {
  border-radius: 15px;
  width: 100%;
}
.about .img-wrapper .about-img {
  z-index: 1;
}
.about-section .bg-circle3 {
  position: absolute;
  right: -130px;
  top: -100px;
  z-index: 1;
}
.about-section h2 {
  color: #01964a;
  font-family: BerlinFont;
  font-size: 40px;
  font-weight: bold;
}
.text-dgreen {
  color: #01964a;
}
.about-section p {
  font-size: 16px;
  margin-top: 10px;
  color: #6c757d;
}
.counters {
  background-color: #ffd60a;
  padding: 40px 20px;
  border-radius: 15px;
  margin-top: 30px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  margin-block: 40px;
}
.counter-box {
  text-align: center;
}
.counter-box h3 {
  color: #01964a;
  font-size: 32px;
  font-weight: bold;
}
.counter-box p {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}
.counter-icon {
  font-size: 40px;
  color: #2bad4a;
  margin-bottom: 10px;
}
.counters img {
  width: 50px;
  height: 50px;
}

/* Schedule / Activities */

.divider-top img {
  width: 100%;
  margin-bottom: -2px;
}
.divider-bottom {
  transform: rotateX(180deg);
  margin-top: -2px;
}
/* .activities::before{
    content: "";
    width: 100%;
    height: 78px;
    position: absolute;
    top: 0;
    left: 0;
    background-size: auto;
    background-repeat: repeat no-repeat;
    background-position: 3vw bottom;
    background-image: url(../assets/images/CPWave.png);
  } */
.activities {
  background-color: #01964a;
  position: relative;
  overflow: hidden;
}
.activities .row {
  justify-content: center;
}
.activity-section {
  padding: 20px 0;
  text-align: center;
  position: relative;
}
.activity-section .bg-circle4 {
  position: absolute;
  right: -130px;
  top: 35px;
  z-index: 1;
}
.activity-section .bg-circle5 {
  position: absolute;
  left: -130px;
  top: 450px;
  z-index: 1;
}
.activity-section h2 {
  font-family: BerlinFont;
  font-weight: bold;
  color: #fff;
  font-size: 40px;
  margin-bottom: 40px;
}
.activity-card {
  border: none;
  border-radius: 15px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.activity-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.activity-card-body {
  padding: 20px;
  text-align: center;
}
.activity-card-body h5 {
  font-size: 28px;
  font-weight: bold;
  color: #01964a;
}
.activity-card-body p {
  font-size: 14px;
  color: #6c757d;
}
.read-more-btn {
  margin-top: 10px;
  background-color: #01964a;
  color: #fff;
  border-radius: 20px;
  border: 1px solid #01964a;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s ease;
  text-decoration: none;
}
.activity-section a {
  text-decoration: none;
}
.read-more-btn:hover {
  background-color: #fff;
  color: #01964a;
  text-decoration: none;
}
.activity-card:hover {
  transform: translateY(-5px);
}

/* Photo Gallery */

.image-gallery {
  background-color: #f7de1b;
  overflow: hidden;
}
.img-gallery {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 40px;
  /* padding: 10px; */
}
.image-gallery .img-gallery a img {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  object-fit: cover;
}
.gallery-section {
  padding: 90px 0 90px;
  text-align: center;
  position: relative;
}
.gallery-section .bg-circle7 {
  position: absolute;
  right: -195px;
  top: 75px;
  z-index: -1;
}
.gallery-section .bg-circle6 {
  position: absolute;
  left: -130px;
  bottom: -50px;
  z-index: -1;
}
.gallery-section h2 {
  font-family: BerlinFont;
  font-size: 40px;
  font-weight: bold;
  color: #2bad4a;
  margin-bottom: 40px;
}
.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
  opacity: 1 !important;
}

.carousel-section .item img {
  border-radius: 57% 43% 30% 67% / 72% 39% 49% 26%;
  background: #fff;
  width: 230px;
  height: 230px;
  object-fit: cover;
  margin: 20px auto 30px;
}
.wave-container.top img {
  width: 100%;
  margin-bottom: -2px;
}
.carousel-section .slider-content-blk-custom button span {
  opacity: 0;
}
.carousel-section .owl-next,
.carousel-section .owl-prev {
  width: 75px;
  transition: 0.5s;
  transform: scale(1);
  background: 0 0;
  border: 0;
}
.element-top img {
  position: absolute;
  width: 330px;
  right: 10%;
  top: -125px;
  z-index: 99;
}
.carousel-section {
  background: #01964a;
  position: relative;
}
.carousel-section .slider-content-blk-custom button.owl-prev {
  right: 140px;
}
.carousel-section .owl-prev::after,
.carousel-section .owl-next::after {
  content: "";
  background-image: url(https://www.cpgoenkainternationalschool.com/images/homepage/left-arrow-carousel.webp);
  background-size: 61px 35px;
  display: inline-block;
  width: 100%;
  height: 34px;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.carousel-section .owl-next::after {
  background-image: url(https://www.cpgoenkainternationalschool.com/images/homepage/right-arrow-carousel.webp);
}
.carousel-section .owl-prev:hover::after,
.carousel-section .owl-next:hover::after {
  transform: scale(0.9);
}
.carousel-section .slider-content-blk-custom button {
  position: absolute;
  top: -70px;
  right: 4%;
  margin: 0;
}
.animate-enter .main-heading {
  font-family: BerlinFont;
  font-size: 50px;
  margin-bottom: 30px;
}
.animate-enter .sub-heading {
  font-family: BerlinFont;
  font-weight: 400;
  padding-bottom: 20px;
  font-size: 20px;
}

#input-form select {
  -moz-appearance: auto;
  -webkit-appearance: auto;
}

#input-form select::-ms-expand {
  display: auto;
}

.slick-list {
  text-align: center;
}
.logo-slider .card {
  margin: 0 10px;
}
.logo-slider .card:nth-child(even) {
  background-color: #ebecea;
  margin-top: 30px;
}

.logo-slider .card img {
  height: 115px;
  object-fit: contain;
  padding: 10px;
}
.logo-slider {
  display: grid;
  grid-template-columns: auto auto auto;
}
.logo-slider .slick-arrow {
  height: fit-content;
  margin: auto;
  border-radius: 40px;
  border: 0;
  background: #f7de1b;
}
.logo-slider .slick-arrow span {
  font-size: 35px;
  line-height: 0.7;
  color: #01964a;
}
/* media query */

@media only screen and (max-width: 600px) {
  section.banner .container {
    padding-inline: 0px;
  }

  .img-mob img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  section.banner {
    height: auto;
    overflow: hidden;
  }
  section.banner {
    background: none;
  }

  .container {
    padding-inline: 15px;
  }
  .about .bg-circle2,
  .about .bg-circle3 {
    display: none;
  }
  .about-section {
    padding: 15px 20px 40px;
  }
  .gallery-section {
    padding: 160px auto 20px;
  }
  .about .img-wrapper {
    padding-block: 40px;
  }
  .enquire-form-main {
    margin: auto;
    max-width: 350px;
    box-shadow: 0 5px 20px 2px rgb(0 0 0 / 0.3);
    margin-block: 20px;
  }
  .img-gallery {
    display: grid;
    grid-template-columns: auto auto;
  }
  .image-gallery .img-gallery a img {
    width: 100%;
    height: 100%;
  }
  .img-gallery {
    gap: 10px;
  }
  .element-top img {
    position: absolute;
    width: 250px;
    right: 1%;
    top: -15px;
    z-index: 99;
  }
  .carousel-section .container {
    padding-top: 80px;
  }

  .element-top img {
    position: absolute;
    width: 250px;
    right: 1%;
    top: -15px;
    z-index: 99;
  }
  .carousel-section .slider-content-blk-custom button {
    position: absolute;
    top: 380px;
    right: 3%;
    z-index: 5;
  }
  .animate-enter .main-heading,
  .about-section h2,
  .form-title {
    font-size: 30px;
  }
  .carousel-section .slider-content-blk-custom button.owl-prev {
    right: 50%;
    margin-top: 30px;
  }
  .carousel-section .slider-content-blk-custom button.owl-next {
    left: 50%;
    margin-top: 30px;
  }
  .slick-list {
    margin-bottom: 50px;
  }
  .logo-slider .card:nth-child(even) {
    margin-top: 0px;
  }
}

/* Login Form */

.login-title {
  font-family: BerlinFont;
  color: #2bad4a;
}

.login-form {
  height: 100vh;
}

.form-box {
  max-width: 500px;
  margin: auto;
  padding: 50px;
  background: #f7de1b;
  border: 10px solid #2bad4a;
  border-radius: 15px;
}

.form-fields {
  font-family: BerlinFont;
  color: #2bad4a;
}

/* Admin Page */

.admin-title {
  font-family: BerlinFont;
  color: #2bad4a;
}

#admintable.admintable {
  border-collapse: collapse;
  margin: 1px 0 0;
  width: 100%;
}

#admintable.admintable > tbody > tr {
  border-bottom: 1px solid #c6dcdf;
  border-top: 1px solid #c6dcdf;
  margin: -1px 0 0;
  width: 100%;
}

#admintable.admintable > tbody > tr > td,
thead > tr > th {
  font-family: BerlinFont;
  text-align: center;
  color: #2bad4a;
  /* font-size: 30px; */
}

#admintable.admintable > thead > tr > th {
  background-color: #2bad4a;
  font-family: BerlinFont;
  color: #ffffff;
  font-size: 20px;
  /* font-weight: 500; */
  padding: 1.5rem 1rem;
  text-align: center;
}

#admintable.admintable > tbody > tr > td {
  font-family: BerlinFont;
  font-size: 18px;
  padding: 1.25rem 1rem;
}

#admintable_wrapper .buttons-csv {
  width: 100px;
  font-family: BerlinFont;
  border-radius: 15px;
  background-color: #2bad4a;
  color: #ffffff;
  border: none;
  height: 50px;
}

.logout-button {
  width: 100px;
  background-color: #2bad4a;
  color: #ffffff;
  border: none;
  height: 50px;
  border-radius: 12px;
  font-family: BerlinFont;
}

div.dt-container div.dt-layout-row.dt-layout-table div.dt-layout-cell {
  display: block;
  width: 100%;
  overflow-x: scroll;
}

.leftcontent.center-logo.whatsuplogo,
.socialmedia,
.fixed-right-button,
.call-now {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .enquire-form-main {
    margin-left: 10rem;
  }
}
