/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

/*  typography */
@import url(https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@font-face {
  font-family: "futura-bold";
  src: url("../fonts/Futura-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}


:root{
  --primary:#ab4d95;
  --secondary:#f2a243;
  --light-purple:#bf6da5;
  --tolight:#eac8ba;
  --light-yellow:#ebb474;
  --blue:#269eb9;

}

body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77;
}

p, .paragraph {
  font-weight: 400;
  color: #5c5c77;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #1e1e4b;
  font-family: "futura-bold";
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 60px;
}
@media (max-width: 575px) {
  h1, .h1 {
    font-size: 45px;
  }
}

h2, .h2 {
  font-size: 40px;
}
@media (max-width: 575px) {
  h2, .h2 {
    font-size: 30px;
  }
}

h3, .h3 {
  font-size: 25px;
}
@media (max-width: 575px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  font-size: 20px;
}
@media (max-width: 575px) {
  h4, .h4 {
    font-size: 18px;
  }
}

h5, .h5 {
  font-size: 18px;
}
@media (max-width: 575px) {
  h5, .h5 {
    font-size: 16px;
  }
}

h6, .h6 {
  font-size: 16px;
}
@media (max-width: 575px) {
  h6, .h6 {
    font-size: 14px;
  }
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: transform 0.2s ease-in-out;
  transform-origin: top;
  transform: scaleY(0);
}
.btn:active, .btn:hover, .btn.focus, .btn:focus, .btn.active {
  outline: 0;
  box-shadow: none !important;
}
.btn:active::before, .btn:hover::before, .btn.focus::before, .btn:focus::before, .btn.active::before {
  transform: scaleY(1);
  transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  color: #fff;
  background-color: #ffbc3b;
}
.btn-primary::before {
  background-color: #fff;
}
.btn-primary:active, .btn-primary:hover, .btn-primary.focus, .btn-primary:focus, .btn-primary.active {
  color: #ffbc3b !important;
  background-color: #ffab08 !important;
  border-color: #ffab08 !important;
}

.btn-outline-primary {
  color: #ffbc3b;
  background-color: transparent;
  border: 1px solid #ffbc3b;
}
.btn-outline-primary::before {
  background-color: #fff;
}
.btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary.focus, .btn-outline-primary:focus, .btn-outline-primary.active {
  color: #ffbc3b !important;
  background-color: #ffbc3b !important;
  border-color: #ffbc3b !important;
}

.btn-light {
  color: #ffbc3b;
  background-color: #fff;
  border: 1px solid #fff;
}
.btn-light::before {
  background-color: #ffbc3b;
}
.btn-light:active, .btn-light:hover, .btn-light.focus, .btn-light:focus, .btn-light.active {
  color: #fff !important;
  background-color: #fff !important;
  border: 1px solid #fff !important;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #ffcd6e;
  color: #fff;
}

::selection {
  background: #ffcd6e;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFDC11;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}
a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #ffbc3b;
}

a.text-primary:hover {
  color: #ffbc3b !important;
}

a.text-light:hover {
  color: #ffbc3b !important;
}

h4 {
  transition: 0.2s ease;
}

a h4:hover {
  color: #ffbc3b;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

/* overlay */
.overlay {
  position: relative;
}
.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1a1a37;
  /*opacity: 0.5;*/
  opacity: 0.3;
  
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #ffbc3b !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #ffbc3b !important;
}

.text-color {
  color: #5c5c77;
}

.text-light {
  color: #8585a4 !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: "futura-bold";
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

@media (max-width: 991px) {
  .overflow-md-hidden {
    overflow: hidden;
  }
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

/* page title */
.page-title-section {
  padding: 200px 0 80px;
}

.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px;
}
.custom-breadcrumb li.nasted::before {
  position: absolute;
  font-family: "themify";
  content: "\e649";
  font-size: 20px;
  top: 50%;
  left: -5px;
  color: #fff;
  transform: translateY(-50%);
}

/* /page title */
.list-styled {
  padding-left: 25px;
}
.list-styled li {
  position: relative;
  margin-bottom: 15px;
}
.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ffbc3b;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

#map_canvas {
  height: 500px;
}

.top-header {
  font-size: 12px;
  transition: transform 0.2s ease;
  transform-origin: top;
  font-weight: 600;
}
.top-header.hide {
  transform: scaleY(0);
  transform-origin: top;
}
.navigation {
  /* padding: 20px 100px; */
  transition: 0.3s ease;
}
.navigation.nav-bg {
  /* background:linear-gradient(to right, #ab4d95 45%, #f2a243 100%); */
  background:#18456A;
  /* background:#fff; */
  /* padding: 15px 100px; */
}
.navigation.nav-bg {

}
@media (max-width: 991px) {
  .navigation.nav-bg {
    padding: 15px 20px;
  }
}

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  /* -ms-flex-wrap: wrap; */
  /* flex-wrap: wrap; */
  /* -ms-flex-align: center; */
  /* align-items: center; */
  /* -ms-flex-pack: justify; */
  /* justify-content: space-between; */
  padding: 0;
  /* height: 55vh; */
}
@media (min-width: 991px) {
 .navbar{
  height: 20vh;
  padding: 0 50px;
}
.navigation.nav-bg {
  height: 20vh;
  /* padding: 0 50px; */
}
}

@media (max-width: 991px) {
  .navigation {
    padding: 20px;
    /* background: linear-gradient(to right, transparent 25%, #ab4d95 25%, #f2a243 50%, #bf6da5 75%, #ffbc3b 100%);; */
  }
  
 
}

.navbar .nav-item .nav-link {
  font-family: "Poppins", sans-serif;
  padding: 15px;
  font-size: 18px;
}
.navbar .nav-item.active {
  font-weight: bold;
}
.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  padding: 15px;
  border: 0;
  top: calc(100% - 2px);
  left: -10px;
  border-radius: 0;
  background: #fff;
}
.navbar .dropdown-menu.show {
  display: block !important;
}
.navbar .dropdown-item {
  position: relative;
  color: #000;
  transition: 0.2s ease;
  font-family: "Poppins", sans-serif;
  padding: 10px;
  text-decoration: none;
  margin-bottom: 0 !important;
}
.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  padding: 9px 20px;
}

.hero-section {
  padding: 250px 0 290px;
}
@media (max-width: 991px) {
  .hero-section {
    padding: 250px 0 200px;
  }
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear 0.2s;
  background: transparent;
}
.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}
.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #ffbc3b;
}
.hero-slider .prevArrow {
  right: 60px;
}
.hero-slider .nextArrow {
  right: 0;
}
.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0;
}
.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}
.hero-slider .slick-dots li.slick-active button {
  background: #ffbc3b;
}
.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}

/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #ffbc3b;
  display: inline-block;
}

.feature-blocks {
  margin-top: -100px;
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 30%;
}
@media (max-width: 1400px) {
  .feature-blocks {
    padding-right: 8%;
  }
}
@media (max-width: 1200px) {
  .feature-blocks {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 50px;
  }
  .feature-blocks h3 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .feature-blocks {
    margin-top: 60px;
    padding: 50px;
  }
  .feature-blocks h3 {
    font-size: 25px;
  }
}

/* /banner feature */
/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: 0.3s ease;
}
.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */
/* success story */
.success-video {
  min-height: 300px;
}
.success-video .play-btn {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .success-video .play-btn {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* @media (max-width:768px){
  .navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, .5);
    border-color: rgba(255, 255, 255, .1);
    margin-right: 20px;
} */


@media (max-width:480px){
  .list-inline {
    padding-left: 0;
    list-style: none;
    float: none !important;
    text-align: center;
}
.navi{
  text-align: center !important;
}
}
@media (max-width:768px){
  .navbar-dark .navbar-nav .nav-link {
    color: #fff !important;
    padding: 9px 20px;
}
div#navigation {
  background: #004085;
  margin-top: -10%;
}
.ml-auto, .mx-auto {
  margin-left: auto !important;
  line-height: 35px;
  margin-top: 0;
}
}


.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #18456A;
  color: #fff;
  font-size: 20px;
  text-align: center;
}
.play-btn i {
  line-height: 80px;
}
.play-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -2;
  transition: 0.3s ease;
  transition-delay: 0.2s;
}
.play-btn::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  transform: translate(-50%, -50%);
  background: #18456A;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: 0.3s ease;
}
.play-btn:hover::before {
  height: 80%;
  width: 80%;
  transition-delay: 0s;
}
.play-btn:hover::after {
  height: 0;
  width: 0;
  transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #ffbc3b;
  font-family: "futura-bold";
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase;
}
.card-date span {
  font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0;
}

/* /teacher */
/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #ffbc3b 50%);
  margin-bottom: -170px;
  position: relative;
  z-index: 1;
}
.newsletter-block {
  padding-left: 50px;
}
@media (max-width: 575px) {
  .newsletter-block {
    padding-left: 15px;
  }
}

.input-wrapper {
  position: relative;
}
.input-wrapper button {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px;
}
.form-control:focus {
  border-color: #ffbc3b;
  box-shadow: none;
}

.newsletter-block .form-control {
  height: 90px;
}

.bg-footer {
  background-color: #182b45;
}

.logo-footer {
  margin-top: -20px;
  display: inline-block;
}

.footer {
  border-color: #494a43 !important;
  padding-top: 70px;
  padding-bottom: 15px;
}

/* /footer */
.filter-controls li {
  cursor: pointer;
  transition: 0.1s ease;
}
.filter-controls li.active {
  font-weight: 600;
  color: #ffbc3b;
}
.filter-controls li:hover {
  color: #ffbc3b;
}
/*# sourceMappingURL=style.css.map */


.list-inline {
  padding-left: 0;
  list-style: none;
  float: right;
}
.list-inline li{
  /* background: radial-gradient(circle, #ab4d95 0%, #f2a243 25%, #bf6da5 50%, #ffbc3b 75%, #ab4d95 100%); */

  /* width: 100%; */
  background-color: #fff !important;
    border-radius: 050px;
    width: 35px;
    text-align: center;
  
}
.list-unstyled a{
    color:#e3e3e3;
     font-weight:bold;
}
.activee{
     color:#fff;
    font-weight:bold;
}

.list-unstyled a:hover{
    color:#fff;
    font-weight:bold;
}

.list-inline li:hover i{
    color:#ab4d95 ;
}
.text-link-color {
  color: #18456A;
}


/*  Home page css start */

.col-xl-5-5 {
  -ms-flex: 0 0 45.83%;
  flex: 0 0 45.83%;
  max-width: 45.83%;
}
  .gradient-text {
    font-size: 33px; /* Adjust the size as needed */
    font-weight: bold; /* Adjust the weight as needed */
    /*background: radial-gradient(circle, #ab4d95 0%, #f2a243 25%, #bf6da5 50%, #ffbc3b 75%, #ab4d95 100%);*/
    background: radial-gradient(circle, #FFCCA4 0%, #00357D 25%, #9A65C4 50%, #00357D 75%, #FFCCA4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-transform: uppercase;
  }

  .btn-readmore {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    border: none;
    border-radius: 30px;
    /*background: linear-gradient(45deg, #ab4d95, #f2a243, #bf6da5, #ffbc3b);*/
    background: linear-gradient(45deg, #00357D, #FFCCA4, #00357D, #FFCCA4)!important;
    background-size: 200% 200%;
    transition: background 0.5s, transform 0.3s;
  }

  .btn-readmore a {
    color: inherit;
    text-decoration: none;
  }

  .btn-readmore:hover {
    background: linear-gradient(45deg, #ffbc3b, #bf6da5, #f2a243, #ab4d95);
    background-size: 200% 200%;
    transform: scale(1.05);
  }

.btn:hover {
    color: #fff;
    text-decoration: none;
}
  


.box:before{
content: '';
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background: rgba(255,255,255,0.1);
transition:0.5s;
pointer-events: none;
}
/* 
.box:hover:before{
left:-50%;
transform: skewX(-5deg);
} */




.box span{
/* position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
box-sizing: border-box; */
position: absolute;
  top: 0;
  left: 20px;
  width: 90%;
  height: 100%;
  display: block;
  box-sizing: border-box;
  border-radius: 0 0 0 35px !important;
  right: -21px;

}

.box span:nth-child(1)
{
transform:rotate(0deg);
border-radius: 0 0 0 35px;
}

.box span:nth-child(2)
{
/* transform:rotate(90deg); */
}

.box span:nth-child(3)
{
transform:rotate(180deg);
}

.box span:nth-child(4)
{
/* transform:rotate(270deg); */
}

.box span:before
{
content: '';
position: absolute;
width:100%;
height: 2px;
background: #ab4d95;
animation: animate 4s linear infinite;
}

@keyframes animate {
0% {
transform:scaleX(0);
transform-origin: left;
}
50%
{
  transform:scaleX(1);
transform-origin: left;
}
50.1%
{
  transform:scaleX(1);
transform-origin: right;
  
}

100%
{
  transform:scaleX(0);
transform-origin: right;
  
}


} 
/* .fixed-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
} */

#wrapper{
padding-top: 60px;
} 

.services p{
/* text-align: center; */
padding-top: 30px;
padding-bottom: 40px;
/* font-family: 'Open Sans', sans-serif; */
text-transform: uppercase;
font-size: 17px;
line-height: 22px;
color: #737373;
/* font-family: 'Concert One', cursive; */
}

.box-a {
background: #fff; 
color: #ddd;
padding:50px 20px;
float: right;
position: relative;
margin-bottom: 25px;
display: flex;
box-shadow: 3px 3px 5px 2px #222;
}
/* .box-a:before, .box-b:before {
content: "";
position: absolute;
top: 0%;
left: 0%;
width: 0px;
height: 0px;
border-bottom: 15px solid #191919;
border-left: 15px solid #323232; 
-webkit-box-shadow: 4px 4px 4px rgba(0,0,0,0.2);
-moz-box-shadow: 4px 4px 4px rgba(0,0,0,0.2);
box-shadow: 4px 4px 4px rgba(0,0,0,0.2);
  display: block; width: 0;
} */
.box-a.rounded, .box-b.rounded {
-moz-border-radius: 5px 0 5px 5px;
border-radius: 5px 0 5px 5px;
}
.box-a.rounded:before, .box-b.rounded:before {
border-width: 8px;
border-color: #323232 #323232 transparent transparent;
-moz-border-radius: 0 0 0 5px;
border-radius: 0 0 0 5px;
}
.box-a i{
font-size: 35px;
background: #b3568c;
padding: 25px;
border-radius: 150px;
position: absolute;
top: -50%;
color: #fff;
}
.box-a h3{
position: relative;
display: inline-block;
padding: 0;
text-align: left;
padding-bottom: 10px;
margin: 0;
/* font-family: 'Concert One', cursive; */
color: #e600ff;
}
.box-a p{
float: left;
margin: 0;
padding: 0;
text-align: left;
font-size: 14px;
}

.box-b {
background: #fff; 
color: #ddd;
padding: 20px 20px 20px 20px;
/* float: right; */
position: relative;
margin-bottom: 25px;
display: flex;
padding: 50px 30px;
box-shadow: 3px 3px 5px 2px #222;
}
.box-b i{
font-size: 35px;
background: #b3568c;
/* float: right; */
padding: 25px;
border-radius: 150px;
position: absolute;
  top: -35%;
  color: #fff;
}
.box-b h3{
display: inline-block;
padding: 0;
/* text-align: right; */
padding-bottom: 10px;
margin: 0;
/* font-family: 'Concert One', cursive; */
color: #e600ff;
/* float: right; */
}
.box-b p{
/* float: right; */
margin: 0;
padding: 0;
/* text-align: right; */
font-size: 14px;
}
.box-a:hover i, .box-b:hover i{
background: #ec9b4a;

transition: all 1s;
-moz-transition: all 1s; /* Firefox 4 */
-webkit-transition: all 1s; /* Safari and Chrome */
-o-transition: all 1s; /* Opera */
}


/*  Home page css end */
.active1{
  /*background: radial-gradient(circle, #ab4d95 0%, #f2a243 25%, #bf6da5 50%, #ffbc3b 75%, #ab4d95 100%);*/
  /*width: 100%;*/
  border-radius: 25px;
  padding:0px 15px;
  font-weight:bold;
  
}

.navbar-toggler {
  padding: .25rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: #004085 !important;
  border: 1px solid transparent;
  border-radius: .25rem;
}

.back-to-top {
  display: flex;
  justify-content: center;
  align-items: center;
    position: fixed;
    /* display: none; */
    right: 30px;
    bottom: 30px;
    z-index: 99;
    background-color: #b3568c;
    border-radius: 25px;
    width: 30px;
    height: 30px;
}
.back-to-top i{

  color: #fff;

}
