@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=OpenSans:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
font-family: 'Open Sans';
color: #404B51;
}

a {
  color: #1977cc;
  text-decoration: none;
}

a:hover {
  color: #3291e6;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Open Sans';
}

.pading-bottom5{
  padding-bottom: 30px;
}

ul,li,p{
font-family: 'Open Sans';
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1977cc;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #00288b;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  /*background: #298ce5;*/
  background: #ff0000;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.datepicker-dropdown {
  padding: 20px !important;
}


.blink-text {
  font-size: 20px;
  font-weight: 500;
  color: red;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.5; }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #444444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #1977cc;
}

#topbar .contact-info i {
  color: #1977cc;
  padding-right: 4px;
  margin-left: 15px;
  line-height: 0;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: #437099;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #1977cc;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background-color: #fff;
  background-size: cover;
  background-position: center;
  height: 100px;
  box-shadow: 0px 0px 15px rgba(25, 119, 204, 0.1);*/
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Open Sans'
}

#header .logo a {
  color: #2c4964;
}

#header .logo img {
  max-height: 100px;
}

/

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 10px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: #495361;
  white-space: nowrap;
  transition: 0.3s;
  padding: 5px 11px;
  font-weight: 600;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #0078D7;
  border-color: #0078D7;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #1977cc;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 600px) {
  .navbar .dropdown .dropdown-menu {
    background-color: #fff;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #fff;
  }
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 768px) {
  .navbar .dropdown .dropdown-menu {
    background-color: #FFF;
  }
  
  .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #FFF;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
  border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #1977cc;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #1977cc;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*#topsection {
  background: url("../../assets/img/bg-top1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
}*/

#topsection {
  background: url("../../assets/img/bg-top1.jpg");
  background-repeat: no-repeat;
  background-size: 150% auto;
  height: auto;
  padding-bottom: 15px;

  animation: myAnimation 10s ease-in-out infinite alternate;
}

@keyframes myAnimation {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 100% 0%;
  }
}



#topsection .kq_logo{
  height: 310px;
}


#topsection .animation{
  padding-top: 30px;
  float: right;
}

.embedded-box {
  height: 220px;
  margin-top: 30px;
  z-index: 10; 
  background-color: rgba(255, 255, 255, 0.8); /* 0.5 for 50% opacity */
/*  border: 1px solid #e0e0e0;*/

  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  /* border-radius: 18px;
  box-shadow: inset 7px 7px 14px #bebebe,
              inset -7px -7px 14px #ffffff;*/
}

#topsection_carousel .carousel .carousel-inner .carousel-item{
  height: 236px;
}

#topsection_carousel .carousel .carousel-inner .carousel-item img{
  height: 242px;
}

#topsection_carousel .carousel-control-prev{
  /*margin-left: -30px;*/

}


#topsection_carousel  i{
   
    color: #333;
}
#topsection_carousel .carousel-control-next{
  /*margin-right: -30px;*/
}
#topsection_carousel .carousel .carousel-inner .carousel-item .carousel-caption{
   
    /*color: #000;*/
    /*opacity: 0.8;*/
    /*border-radius: 9px;*/
} 

#topsection_carousel .carousel .carousel-inner .carousel-item .carousel-caption .p1{
  color: #000;
  font-size: 20px;
  /*font-weight: 700;*/
  margin-bottom: 10px;
}

#topsection_carousel .carousel .carousel-inner .carousel-item .carousel-caption .p2{
  color: #000;
  font-size: 20px;
  font-weight: 700;
}
#topsection_carousel .carousel .carousel-inner .carousel-item .carousel-caption .p3{
   margin-bottom: 10px;
}
#topsection_carousel .carousel .carousel-inner .carousel-item .carousel-caption .p3 span{
     padding: 3px 35px;
    border-radius: 5px;
    font-family: 'Oswald';
    background: #99cc00;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

#topsection_carousel .carousel .carousel-inner .carousel-item .carousel-caption .p4 a{
  /*color: yellow;*/
  font-weight: 600;
  text-decoration: underline;
}

#topsection_carousel .carousel .carousel-inner .carousel-item .carousel-caption .p5 span{
     padding: 2px 48px;
    border-radius: 5px;
    font-family: 'Oswald';
    background: #dc3545;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

/*.topsection_carousel {
  background: #EEEEEE;
  background: url(../img/ocject.png);
  background-repeat: no-repeat;
  text-align: center;
  padding-top: 30px;

  animation: moveBg 20s linear infinite;
}

@keyframes moveBg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -100%;
  }
}*/

.topsection_carousel {
  background: #DDDDDD;
  text-align: center;
  padding-top: 30px;
  position: relative; /* Needed for positioning the rotating element */
  overflow: hidden;   /* optional */
}

/* Add rotating object */
/*.topsection_carousel::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;  
  height: 150px;  
  background: url("../img/ocject.png") no-repeat center/contain;
  animation: rotateObj 10s linear infinite;
}

@keyframes rotateObj {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
*/

.topsection_carousel {
  background: #032B54;
  text-align: center;
  padding-top: 30px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.rotating {
  position: absolute;
  width: 200px;    /* size of image */
  height: 200px;
  background: url("../img/ocject.png") no-repeat center/contain;
  animation: rotateObj 12s linear infinite;
  opacity: 0.6; /* optional, for effect */
  z-index: -1;
}

/* Different random positions */
.obj1 { top: 10%; left: 1%; animation-duration: 18s; }
.obj2 { top: 60%; left: 20%; animation-duration: 25s; }
.obj3 { top: 30%; right: 40%; animation-duration: 30s; }
.obj4 { bottom: 60%; left: 40%; animation-duration: 22s; }
.obj5 { top: 60%; right: 20%; animation-duration: 15s; }
.obj6 { bottom: 10%; right: 1%; animation-duration: 40s; }

@keyframes rotateObj {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


#topsection .caption h2{
    color: #495361;
    font-weight: 600;
    font-family: 'Open Sans';
    text-align: center;
}

#topsection_carousel .register_section h5{
font-family: 'Open Sans';
font-size: 20px;
font-weight: 800;
}

#topsection_carousel .register_section
{
  padding: 66px 20px;
}
#topsection_carousel .top_register_button{
margin-top: 8px;
margin-bottom: 14px;
font-family: 'Open Sans';
text-align: center;
font-size: 20px;
font-weight: 700;
}

.text-white{
  color: #FFF;
}
.box-padding{
  padding: 30px;
}
.highlight-text {
  font-size: 2rem;
  font-weight: 700;
  color: #ff005e;
  animation: colorBlink 2s infinite alternate;
}

@keyframes colorBlink {
  0%   { color: #ff005e; }
  100% { color: #00d4ff; }
}


#main{
    margin: 90px 0px 0px 0px;
    padding: 0;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #2c4964;
}

#hero h2 {
  color: #2c4964;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: 'Open Sans'
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  margin-top: 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #1977cc;
}

#hero .btn-get-started:hover {
  background: #3291e6;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero {
    margin-bottom: 0;
    /*height: 100vh;*/
  }

  #hero .container {
    padding-bottom: 63px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-height: 600px) {
  #hero {
    /*height: 80vh;*/
        height: auto;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding:  0;
  overflow: hidden;
}

.section-bg {
  background-color: #f1f7fd;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #1977cc;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f7fd;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 100px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 30px;
  background: #1977cc;
  border-radius: 4px;
  color: #fff;
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #1977cc;
  background: #fff;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #1977cc;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/


.about{
      margin:0px 0px;
      color: #404B51;
}
.about h1{
font-size: 32px;
}

.about .icon-boxes h4 {
  font-size: 18px;
  color: #3F4B51;
  margin: 15px 0px;
}
.about .video-box {

}
.about .video-box p{
padding-right: 42px
}

.about .about_box1 {
  border:2px solid transparent;
  border-radius: 50px;
  border-image: linear-gradient(to right, #ffe117, #ff5600);
  border-image-slice: 1;
  padding: 10px;
  margin-bottom: 60px;
}

.about .about_box1 span
{ 
  padding:8px 20px;
  border:1px solid #ffe117 ;
  border-radius: 8px;
  background: #ffe117;
  color: #fff;
  position: relative;
  top: -24px;
  left:20px;
  font-size: 20px;
  font-weight: 700;
}

.about .about_box2 {
    border: 2px solid transparent;
    border-image: linear-gradient(to right, #54b442, #d6d91d);
    border-image-slice: 1;
    padding: 10px;
     margin-bottom: 60px;
}
.about .about_box .about_detail{
  padding: 15px;
}

.about .about_box2 span
{ 
  padding:8px 20px;
  border:1px solid #99cc00 ;
  border-radius: 8px;
  background: #99cc00;
  color: #fff;
  position: relative;
  top: -24px;
  left:20px;
  font-size: 20px;
  font-weight: 700;
}


.about .about_box3 {
    border: 2px solid transparent;
    border-image: linear-gradient(to right, #c6a5cf, #734a95);
    border-image-slice: 1;
    padding: 10px;
     margin-bottom: 60px;
}
.about .about_box3 span
{ 
  padding:8px 20px;
  border:1px solid #c6a5cf ;
  border-radius: 8px;
  background: #c6a5cf;
  color: #fff;
  position: relative;
  top: -24px;
  left:20px;
  font-size: 20px;
  font-weight: 700;
}


.about .about_box4 {
    border: 2px solid transparent;
    border-image: linear-gradient(to right, #00cddd, #0032b9);
    border-image-slice: 1;
    padding: 10px;
     margin-bottom: 60px;
}
.about .about_box4 span
{ 
  padding:8px 20px;
  border:1px solid #00cddd ;
  border-radius: 8px;
  background: #00cddd;
  color: #fff;
  position: relative;
  top: -24px;
  left:20px;
  font-size: 20px;
  font-weight: 700;
}


.about .about_box5 {
    border: 2px solid transparent;
    border-image: linear-gradient(to right, #ff8b67, #ff0000);
    border-image-slice: 1;
    padding: 10px;
     margin-bottom: 60px;
}
.about .about_box5 span
{ 
  padding:8px 20px;
  border:1px solid #ff8b67 ;
  border-radius: 55px;
  background: #ff8b67;
  color: #fff;
  position: relative;
  top: -24px;
  left:20px;
  font-size: 20px;
  font-weight: 700;
}


.about .icon-boxes h3 {
  font-size: 40px;
  font-family: 'Open Sans';
  font-weight: 700;
  color: #3F4B51;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #8dc2f1;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #1977cc;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #1977cc;
  border-color: #1977cc;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #1977cc;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  background: url("../../assets/img/youtube-screen.jpg") center center no-repeat;
  background-size: cover;
  margin-top: 30px;
  /*min-height: 500px;
  height: 265px;*/
}

.about .play-btn {
width: 98px;
    height: 100px;
    background: radial-gradient(#ff0000 50%, rgba(255, 0, 0, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 49px);
    top: calc(50% - 44px);
    overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 0, 0, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #ff0000;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}





/*--------------------------------------------------------------
# Objective
--------------------------------------------------------------*/
.objectivegraybox {
  /*background: #3d4c50;*/

  background: url(../img/modules_bg.jpg);
  background-size: cover;
  padding: 35px 20px 15px 20px;

}
.objectivegraybox h1{
 
  padding: 12px 50px;
}
.objectivegraybox h3{
 
 
}


.objectivegraybox  .objective_image
{
  margin-top: 12px;
}
.objectivegraybox  .objective_image p{
    
    text-align: justify;

    font-size: 17px;
    padding: 36px 50px 0px 13px;
}

.objectivegraybox .objectivedetail ul{
 
  /*line-height: 1.8;*/
  
  /*padding:0px 50px 0px 13px;*/
}

.objectivegraybox .objectivedetail
{
  margin-top: -50px;
}

.objectivegraybox .objectivedetail p{
  color: #000;
padding:0px 50px 0px 13px;
  /*padding:3px 0px 0px 36px;*/
}

.quizmastergraybox h1{
    font-family: 'Open Sans';
    text-align: center;
    padding: 50px 60px;
}
.quizmastergraybox .quizbox{
background: url('../img/author-line-bg.gif');
background-position-y: 50%; 
background-repeat: repeat-x;
   
    /*height: 280px;*/

}


.quizmastergraybox .imgstrip img{
      /*padding-top: 152px;*/
    /*width: 100px;*/
    /*margin-left: -11px;*/
}


/*--------------------------------------------------------------
# Slicebox
--------------------------------------------------------------*/

#slice .slicebox{
  text-align: center;
}

/*--------------------------------------------------------------
# quote
--------------------------------------------------------------*/
#quote
{
  background: url(../img/quote.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
 height: 330px;

}

.quotegraybox {
  background: #585c54;
  padding: 25px 0 1px;
}

/*#quote .quotebox
{ background: url(../img/quote-box.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
 height: 450px;
}*/

.quotegraybox h2{
  color: #fff;
  text-align: center;
  /*padding: 90px 90px;*/
}
.quotegraybox p
{
  color: #fff;
    text-align: justify;
    font-size: 20px;
    padding: 2% 15%;
    line-height: 1.8;
}
.quotegraybox h5
{
  color: #fff;
    text-align: justify;
    font-size: 20px;
    padding: 0% 0% 2% 15%;
    line-height: 1.8;
}
#quizstr .inner-div {
display: flex; flex-direction: row; margin-top: 25px; margin-bottom: 25px;justify-content: center;
}
#quizstr h4
{
  text-align: center;
  font-size: 20px;
  padding: 20px 4px;
  font-weight: 900; 
  color: #333;
  height: 80px;
  }

#quizmaster .author1_name h5{
  font-size:20px;font-weight:700 ;color: #000;
 
}
#quizmaster .author1_link a{
  font-size: 26px;
}

#quizmaster .author2_name h5{
  font-size:19px;font-weight:700 ;color: #000;
}
#quizmaster  .author2_link a{
  font-size: 26px;
}


#quizstr h1{
  text-align: center;
}

#quizstr .roundbg {
  padding: 10px;
}
#quizstr .roundbg1 {
  margin-top: -10px;
  padding: 10px;
  margin-left: 10px;
  margin-right: 10px;
  background-color: #F9F9F9;
  box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease 0s;
}
#quizstr .roundbg1:hover {
  background-color: #FFF4CC;
}
#quizstr .roundbg2 {
  margin-top: -10px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  background-color: #F9F9F9;
  box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease 0s;
}
#quizstr .roundbg2:hover {
  background-color: #FFE2E1;
}
#quizstr .roundbg3 {
  margin-top: -10px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  background-color: #F9F9F9;
  box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease 0s;
}
#quizstr .roundbg3:hover {
  background-color: #E3F1FB;
}

#quizstr .round1, 
#quizstr .round2, 
#quizstr .round3 {
  max-width: 347px;
  margin: 15px;
}


.roundspacer1 {
  height: 300px;
}
.roundspacer2 {
  height: 325px;
}

@media (max-width: 768px) { /* adjust 768px to your breakpoint */
  .roundspacer1 {
    display: none;
  }
  .roundspacer2 {
    display: none;
  }
}


.roundgraybox .round{
 color: black;
 margin: 10px 2px ;
}

.roundgraybox h1
{
   font-family: 'Open Sans';
    text-align: center;
    padding: 50px 90px;
}
.roundgraybox .round .card
{
  height: 695px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
 
}

.roundgraybox .round .card ul{
  line-height: 1.7;
}


.roundgraybox .round .round1{
background: #f1f0ef;
border: #f1f0ef;
padding: 25px;
}
.roundgraybox .round .round1 h3{
  text-align: center;
  font-size: 28px;
    height: 40px;  
  font-weight: 900; 
}

.roundgraybox .round .round1 h4{
  text-align: center;
  font-size: 20px;
  padding: 20px 0px;
  font-weight: 900; 
  color: #333;
    height: 50px;
}


.roundgraybox .round .round2{
  
   background: #f1f0ef;
  border: 5px solid #f1f0ef;
  padding: 16px;
}
.roundgraybox .round .round2 h3{
  text-align: center;
  font-size: 40px;
   height: 40px;
  font-weight: 900; 
}

.roundgraybox .round .round2 h4{
  text-align: center;
  font-size: 20px;
  padding: 20px 0px;
  font-weight: 900; 
  color: #333;
    height: 50px;
}


.roundgraybox .round .round3{
 /*background-image: linear-gradient(to right,#d8d5d0, #8f8a83);*/
  /*background-image: linear-gradient(to right,#d8d5d0, #aba7a2);*/
  background:#f1f0ef;
  border: #f1f0ef;
  padding: 25px;
}
.roundgraybox .round .round3 h3{
 text-align: center;
    font-size: 50px;
    margin-top: -59px;
    color: #141414;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    font-weight: 800;
}

.roundgraybox .round .round3 h4{
  text-align: center;
  font-size: 20px;
  padding: 10px 0px;
  font-weight: 700; 
}


.phase-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px; /* space between boxes */
}

.phase-box {
  flex: 1 1 calc(25% - 20px); /* 4 boxes in a row */
  min-width: 220px;
  padding: 20px;
/*  border-radius: 10px;*/
  border: 5px solid;
  color: #fff;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Different Colors */
.phase1 { 
  background-color: #FFC401; 
  transition: all 0.3s ease 0s;
}
.phase1:hover { 
  background-color: #EBB701;
}
.phase2 { 
  background-color: #FF625E; 
  transition: all 0.3s ease 0s;
}
.phase2:hover { 
  background-color: #FF4540;
}
.phase3 { 
  background-color: #3393DD;
  transition: all 0.3s ease 0s; 
}
.phase3:hover { 
  background-color: #207CC1;
}
.phase4 { 
  background-color: #27ae60; 
  transition: all 0.3s ease 0s;
}
.phase4:hover { 
  background-color: #229754;
}

/* Responsive */
@media (max-width: 767px) {
  .phase-box {
    flex: 1 1 100%; /* full width on mobile */
  }
}

/*
#table_data .responsive-table  
{
  border: 2px solid #ff8b00;
}
#table_data .responsive-table 
  li {
    margin-left: -32px;
    padding:15px 30px 15px 25px;
    display: flex;
    justify-content: space-between;
  
  }
#table_data  .table-header {
    background-color: #ff8b00;
    font-size: 16px;

    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
   
  }
 #table_data .table-row {
    background-color: #ffffff;
    color: black;
    
  }

 #table_data .row1{
  background-color: #f0f0f0;
   
  border-bottom: 2px solid #ff8b00;
}
#table_data .row2{
  background-color: #fff;
  border-bottom: 2px solid #ff8b00;
}
#table_data .row3{
  background-color: #fff;

}
#table_data  .col-1 {
    flex-basis: 15%;
  }
 #table_data .col-2 {
    flex-basis: 20%;
  }
 #table_data .col-3 {
    flex-basis: 25%;
  }
 #table_data .col-4 {
    flex-basis: 25%;
  }
  
  @media all and (max-width: 767px) {
  #table_data  .table-header {
      display: none;
    }
   #table_data .table-row{
      
    }
  #table_data  li {
      display: block;
    }
   #table_data .col {
      
      flex-basis: 100%;
      
    }
   #table_data .col {
      display: flex;
      padding: 10px 0;
      
    }


    #table_data .col  &:before {
      color: #6C7A89;
        padding-right: 10px;
        content: attr(data-label);
        flex-basis: 50%;
        text-align: right;
    }
  }
}
*/
.table_data thead{

}
.table_data thead th{
  /*background:linear-gradient(to right, #ffc402, #ff6f42)!important;*/
  background: #ff8b00;
  color: #fff;
  padding-bottom: 16px;
  padding-top: 16px
}

/*--------------------------------------------------------------
# books
--------------------------------------------------------------*/



.sneakpeak .h1{
  margin-bottom: 30px;
}


.books .books-section img:hover{
  border:3px solid gray;
}
.books .shadow-boxes {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 3px 5px 0 rgb(0 0 0 / 19%);
    margin: 10px;
}
#books .owl-prev
{
     position: absolute;
    top: 120px;
    font-size: 59px;
    left: -38px;
}

#books .owl-next
{
     position: absolute;
    top: 120px;
    font-size: 59px;
    right:  -38px;
}

.booksgraybox {
 
}

/*============================*/

/*--------------------------------------------------------------
# summit
--------------------------------------------------------------*/
.summitgraybox {
  /*background: #585c54;*/
  background: url(../img/modules_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /*padding: 10px 0 60px;*/
}
.summitgraybox h1{
  /*color: #333;
  font-weight: 700; */
  padding-top: 40px;
  text-align: center;
}
.summitgraybox p{
  
    text-align: justify;  
    padding: 2%  10%;    
}

.summitgraybox .excursion_img{
padding: 20px;
}


.registerbox button
{

    margin-top: 8px;
    font-family: 'Open Sans';
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    /*color: #fff;
    background: #003c8b;
    padding: 8px 0px;
    border: 1px #003c8b;
    margin: 0px 39%;
    width: 27%;
    border-radius: 0px;*/
}

.registerbox button:hover {
  /*border : 2px solid #003c8b;
  color: #003c8b;
  background-color:#fff; */
}









/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #f1f7fd;
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #ff0000;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #082744;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #d5e1ed;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #1977cc;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: rgba(25, 119, 204, 0.2);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: -1;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #2c4964;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #1977cc;
  border-color: #1977cc;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #1977cc;
}

.services .icon-box:hover .icon::before {
  background: rgba(255, 255, 255, 0.3);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Open Sans", sans-serif;
 font-size: 22px;
    line-height: 18px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #76b5ee;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 30px;
 /*padding: 10px 0 0 0;*/
}

/*.faq-list ul p{
  padding: 10px 30px;
}*/

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #1977cc;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}


@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer
{
  background: url(../../assets/img/bg-top1.jpg);
  background-size: cover;
  color: #000;
  font-size: 14px;
  padding: 50px 0px 20px 0px;
}

#footer hr{
  margin: 5px 55px;
}

/*
#footer {
  color: #444444;
  font-size: 14px;
  background: #f1f7fd;
}
*/
/*#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}
*/

#footer .footerschand h4{
  color: #000;
  border-bottom: 2px solid #000;
  margin-right: 57%;
}


#footer .footerschand p{
  font-size: 16px;
    text-align: justify;
  /*padding: 0px 193px 0px 0px;*/
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
    font-size: 15px;
    line-height: 39px;
    margin-bottom: 0;
    font-family: "Open Sans", sans-serif;
    color: #ffffff; 
}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  position: relative;
  padding-bottom: 13px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}



#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #1c84e3;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #000;
  transition: 0.3s;
  display: inline-block;
  line-height: 0.8;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #1977cc;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #bfdcf7;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1977cc;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #1c84e3;
}
#footer .copyright{
  font-size: 16px;
}

#footer .credits {
  padding-top: 5px;
    font-size: 14px;
    color: #fff;
}

#footer .social-links{
  float: right;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1977cc;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #1c84e3;
  color: #fff;
  text-decoration: none;
}








/*****************Media Query**************/



@media (max-width: 767px) {


#quizstr .inner-div {
display: flex; flex-direction: column;
 margin-top: 30px; margin-bottom:30px;
 justify-content: center;
}

#quizmaster .quizbox .author2{

  margin-left: 0px;
}

#quizmaster .author1_name h5{
  font-size:17px;
  font-weight:700 ;
  color: #000;
 
}
#quizmaster .author1_link a{
  font-size: 22px;
}

#quizmaster .author2_name h5{
  font-size: 17px;
  font-weight:700;
  color: #000;
}
#quizmaster  .author2_link a{
  font-size: 22px;
}

#quote {
    background: url(../img/quote.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 140px;
} 

#topsection_carousel .carousel .carousel-inner .carousel-item {
/*    height: 270px;*/
}

#topsection_carousel .carousel .carousel-inner .carousel-item .carousel-caption .p2 {
    color: #000;
    font-size: 14px;
    font-weight: 700;
}

#topsection_carousel .carousel .carousel-inner .carousel-item .carousel-caption .p1 {
    color: #000;
    font-size: 16px;
    /* font-weight: 700; */
    margin-bottom: 3px;
}

#topsection_carousel .carousel .carousel-inner .carousel-item .carousel-caption .p3 span {
    padding: 3px 26px;
    border-radius: 5px;
    font-family: 'Oswald';
    background: #99cc00;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
}

#topsection_carousel .carousel .carousel-inner .carousel-item .carousel-caption .p4{
  margin-bottom: 31px;
}

#topsection_carousel .carousel .carousel-inner .carousel-item .carousel-caption .p4 a {
    /* color: yellow; */
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline;
}

#topsection_carousel .register_section {
    padding: 50px 20px;
}

#topsection_carousel .register_section h5 {
    font-family: 'Open Sans';
    font-size: 18px;
    font-weight: 800;
}

#topsection_carousel .carousel-control-next {
    margin-top: -30px;
}
#topsection_carousel .carousel-control-prev {
    margin-top: -30px;
}

#topsection .kq_logo{
  height: 160px;
}

#topsection {
  background: url("../../assets/img/bg-top1.jpg");
  background-repeat: no-repeat;
  background-size: 150% auto;
  height: auto;
  padding-bottom: 30px;

animation: myAnimation 10s ease-in-out infinite alternate;
}

@keyframes myAnimation {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 100% 0%;
  }
}

#topsection .animation {
float: center;
}

/*.topsection_carousel {
    background: url(../img/bg1.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 490px;
    text-align: center;
    padding: 10px;
}*/
.topsection_carousel{
  /* background: url(../img/top-bg-second.jpg);*/
  /*background: linear-gradient(135deg, #3393DC, #FEDE31, #FF8986);
      background-position: top;*/
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding-top: 0px;
}

.about .icon-boxes{
  /*padding-right: 0px;*/
}

.about .about_box1 span
{ 
  padding:8px 20px;
  border:1px solid #ffe117 ;
  border-radius: 8px;
  background: #ffe117;
  color: #fff;
  position: relative;
  top: -24px;
  left:2%;
  font-size: 20px;
  font-weight: 700;
}
.about .about_box2 span
{ 
  padding:8px 20px;
  border:1px solid #99cc00 ;
  border-radius: 8px;
  background: #99cc00;
  color: #fff;
  position: relative;
  top: -24px;
  left:2%;
  font-size: 20px;
  font-weight: 700;
}
.about .about_box3 span
{ 
  padding:8px 20px;
  border:1px solid #c6a5cf ;
  border-radius: 8px;
  background: #c6a5cf;
  color: #fff;
  position: relative;
  top: -24px;
  left:2%;
  font-size: 20px;
  font-weight: 700;
}
.about .about_box4 span
{ 
  padding:8px 20px;
  border:1px solid #00cddd ;
  border-radius: 8px;
  background: #00cddd;
  color: #fff;
  position: relative;
  top: -24px;
  left:2%;
  font-size: 20px;
  font-weight: 700;
}

.about .about_box5 span
{ 
  padding:8px 20px;
  border:1px solid #ff8b67 ;
  border-radius: 55px;
  background: #ff8b67;
  color: #fff;
  position: relative;
  top: -24px;
  left:2%;
  font-size: 20px;
  font-weight: 700;
}
.about .video-box {
  margin-left: 0px;
}
.about .video-box {
  background: url(../../assets/img/youtube-screen.jpg) center center no-repeat;
  background-size: cover;
  height: 280px;
  margin-top: 0px;
  margin-bottom: 30px;
}

#quizstr {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

#quizstr .inner-div {
  margin: 0;
}
@media (max-width: 767px) {
  #quizstr .round1,
  #quizstr .round2,
  #quizstr .round3 {
    max-width: 100%; /* full width */
    padding-bottom: 30px;
  }
}

#quizstr h4 {
  text-align: center;
  font-size: 22px;
  padding: 20px 0px;
  font-weight: 900;
  color: #333;
  height: 80px;
}


#books .owl-prev {
    position: absolute;
    top: 50px;
    font-size: 48px;
    left: -24px;
}

#books .owl-next {
    position: absolute;
    top: 50px;
    font-size: 48px;
    right: -24px;
}

.summitgraybox p {
    text-align: justify;
    padding: 2% 5% !important;
}

.summitgraybox h1 {
    padding-top: 25px !important;
    text-align: center;
}

.faq .faq-list a {
   display: block;
    position: relative;
    font-family: "Open Sans", sans-serif;
    font-size: 14px !important;
    line-height: 20px;
    font-weight: 500;
    padding: 2px 18px 0px 0px;
    outline: none;
    cursor: pointer;
}


.faq .faq-list .icon-show, .faq .faq-list .icon-close {
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p{
  padding: 4px 0px;
}




#footer .footerschand h4{
    border-bottom: 2px solid #fff;
    margin-right: 29%;
}


/* Hide Bootstrap default arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}

/* Custom arrows */
.custom-arrow {
  background: red;
  color: white;
  font-size: 24px;
  font-weight: bold;
  padding: 0 12px;
  border-radius: 50%;
  display: inline-block;
}

/* Position them outside */
.custom-prev {
  left: -40px;   /* Move outside left */
}

.custom-next {
  right: -40px;  /* Move outside right */
}

/* Center vertically */
.carousel-control-prev,
.carousel-control-next {
  top: 40%;
  transform: translateY(-50%);
  width: auto;
}