:root {
  --pink-color: #d73135;
  --sky-blue-color: #019fc4;
  --yellow-color: #eeb65a;
  --red-color: #d73135;
}

body {
  padding-top: 112px;
  max-width: 100vw;
  overflow-x: hidden;
  /* font-family: 'Caveat', cursive; */
  font-family: 'Caveat Brush', cursive;
}

.navbar {
  background-color: #fff;
}

.navbar.fixed-top {
  position: fixed;
  width: 100%;
}

.banner-section {
  max-width: 100vw;
  overflow: hidden;
}

.subscribe-section {
  background-color: #fff;
  padding: 40px 0;
}

.about-us-section {
  background-color: #f7b111;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.about-us-section img {
  max-width: 100%;
  height: auto;
}

.join-us-section {
  background-color: var(--sky-blue-color);
  color: #fff;
  padding: 40px 0;
}

.join-us-section img {
  max-width: 100%;
  height: auto;
}

.videos-section {
  background-color: var(--pink-color);
  color: #fff;
  padding: 40px 0;
}

.videos-section img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.join-us-section h2,
.join-us-section p,
.join-us-section a.btn-light {
  color: var(--sky-blue-color);
}

.videos-section h2,
.videos-section p {
  color: #fff;
}

/* header  */
header .navbar-nav a {
  font-size: 1.6em;
}

.color_pink {
  color: var(--pink-color);
}

.color_sky {
  color: var(--sky-blue-color);
}

.color_yellow {
  color: var(--yellow-color);
}

.color_red {
  color: var(--red-color);
}

.header_social {
  margin-left: 20px;
}
header .navbar-toggler {
  margin-right: 10px;
}
/* banner bottom  */
.learn_more_btn {
  background: var(--pink-color);
  border: unset;
  padding: 5px 15px 5px 25px;
  text-align: center;
  font-size: 11pt;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  color: #f4cd13;
  font-weight: 600;
}

.learn_more_btn:hover {
  background: #f4cd13;
  color: #dd4743;
}

.learn_more_btn img {
  width: 40px;
  margin-left: 5px;
}

.ttl.clr1 {
  color: #15427c;
  font-size: 2.7em;
  margin-bottom: 10px;
}

.text-left {
  text-align: left;
}

.btn.btn-light {
  color: #f7b111;
  padding: 5px 20px;
  font-weight: bold;
}

.join_img {
  border-radius: 10px;
}

.v-align {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.subscribe-section .learn_more_btn {
  width: fit-content;
  margin: 0px auto;
}

.about-us-section h2 {
  font-size: 3.2em;
  margin-bottom: 20px;
  background-image: url('../images/about_h_bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 28px;
  width: 275px;
  margin: 0px auto 30px;
}

.about-us-section p {
  font-size: 1.2em;
}

.about-img {
  border: 3px solid #fff;
  border-radius: 15px;
  box-shadow: 0px 5px 5px 0px #0000004d;
}

.learn_more_btn.follow {
  background: var(--sky-blue-color);
  color: #fff;
  width: fit-content;
}

.learn_more_btn.subscribe {
  background: #fe0000;
  color: #fff;
  width: fit-content;
}

.join-us-section .card {
  padding: 80px 50px !important;
}

.join-us-section p,
.videos-section p {
  font-size: 1.5em;
}

.join-us-section .v-align {
  padding: 20px;
}

h2 {
  font-size: 3.2em;
}

.join-us-section .learn_more_btn {
  font-size: 1.2em;
  margin-right: 11%;
  padding: 10px 35px;
}

.join-us-section .learn_more_btn img {
  margin-left: 15px;
}

.videos-section h2 {
  font-size: 3.2em;
  margin-bottom: 20px;
  background-image: url('../images/videos_dots.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 28px;
  width: 275px;
  margin: 0px auto 30px;
}

.video_block .watch_now {
  position: absolute;
  bottom: 10px;
  z-index: 111;
  width: 100%;
  left: 0;
  padding: 0 25%;
  display:none;
}

.we_provide_sec{
  background-color: var(--sky-blue-color);
  color:#fff;
}



/* The flip card container - set the width and height to whatever you want. */
.flip-card {
  background-color: transparent;
  width: 306px;
  height: 382px;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
  margin: 20px auto;
}
.flip-card img{
  border-radius: 10px;
  overflow: hidden;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do a horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #ffff;
  color: black;
  border-radius: 10px;
}

/* Style the back side */
.flip-card-back {
  background-color: white;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.we_provide_sec h2{
  
  font-size: 3.2em;
  margin-bottom: 20px;
  background-image: url('../images/we_providebubble.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 48px;
  width: 275px;
  margin: 0px auto 30px;
}
.we_provide_sec.we_provide_sec2 {
  background: var(--pink-color);
}
.we_provide_sec.we_provide_sec2 h2 {
  background-image: url('../images/energixe_bubble.png');
  width: 100%;
  background-size: 38%;
}

.contact{
  background-color: #f6d411;
}
.liss {
  display: flex;
}
.cnt_icon.img-fluid {
  max-width: 30px;
  height: 30px;
  object-fit: contain;
  margin-right: 10px;
}
.cnt_left {
  color: #fff;
  background: #fe5f97;
  padding: 0px;
  border-radius: 10px;
  position: relative;
z-index: 111;
overflow: hidden;
}
.cnt_left h3{
  font-family: 'Road Rage', sans-serif;
}
h3 {
  font-size: 2.56em;
}
.contact p {
  font-size: 1.3em;
}
.forms-sec {
  padding: 80px;
    padding-left: 80px;
  background: #fff;
  margin-left: -10%;
  width: 110%;
  border-radius: 10px;
  padding-left: 16%;
  position: relative;
}
.form-control {
  background: #fafafa;
  border: unset;
  margin-bottom: 20px;
  box-shadow: 0px 5px 5px -1px #00000054;
  border-radius: 10px;
  min-height: 54px;
}
.contact label {
  color: #32cfbc;
  font-size: 1.4em;
  margin-bottom: 10px;
}
.contact .btn.btn-primary {
  background: #32cfbc;
  border: unset;
  padding: 10px 50px;
  font-size: 1.3em;
}
.contact h2 {
  font-size: 3.2em;
  color: #fff;
  margin-bottom: 20px;
  background-image: url('../images/contact_bubble.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 28px;
  width: 275px;
  margin: 0px auto 30px;
}
.forms-sec h3 {
  color: #32cfbc;
  margin-bottom: 20px;
  font-family: 'Road Rage', sans-serif;
}
.cnt_social img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  margin-right: 20px;
}
.cnt_social {
  margin-top: 150px;
}
footer h4{
  font-family: 'Road Rage', sans-serif;
  font-size: 2.5em;
}
footer .nav a,
footer .nav a:hover {
  color: #fff;
  font-size: 1.4em;
  padding: 0px;
  margin-bottom: 20px;
}
footer .nav {
  display: block;
}
footer{
  background: #1d3c7f;
}
.fter_btm {
  text-align: center;
  color: #ccc;
  font-size: 1em;
}
@media screen and (max-width:992px)
{
  .about-us-section img{
    margin-bottom: 30px;
  }
  .join-us-section .learn_more_btn {
    margin-bottom: 20px;
    width: 100%;
  }
  .join-us-section .card {
    padding: 30px !important;
  }
  .forms-sec {
    padding: 30px;
    width: 100%;
    margin: 20px auto;
  }
}
.videos_head{
  background-color: var(--pink-color);
}
.grader_videos{
  background-color: var(--yellow-color);
}
.btn.btn-primary.printable-button {
  background: var(--red-color);
  border: unset;
  padding: 10px 20px;
  font-size: 1.3em;
  margin-bottom: 20px;
}
.video-container iframe{
  width: 100%;
}
.video-container {
  background: #fff;
  padding: 10px;
  box-shadow: 0px 4px 10px 0px #00000070;
  margin-bottom: 20px;
}


body h2{
  font-size: 3.2em !important;
}
body p{
  font-size: 1.2em !important;
}