@import "theme.css";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");
@import "../fonts/muli/style.css";
@import "../fonts/Circular/style.css";
@import "../fonts/gd/gd.css";
@import "../fonts/gdsage/gdsage.css";
@import "../fonts/abril/abril.css";
body, html {
    font-family: "GD Sherpa",sans-serif;
    line-height: 1.6;
    font-weight: 200;
    color: #111;
    font-size:16px;
    margin: 0;
    padding: 0;
}
strong, .fw-bold{
    font-weight: bold;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 700;
  line-height: 1.2;
  nt-family:'Muli Black',sans-serif;
}
.muliFont{
    font-family:'Muli Regular',sans-serif;
}
.muliFontBold{
    font-family:'Muli Black',sans-serif;
}
.gdShepraFont{
    font-family: "GD Sherpa",sans-serif;
}
.gdsageFont{
    font-family: "GDSage-Bold",sans-serif;
}
a{
    text-decoration: none;
}
.nav-link{
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-right: 5px;
    border: 1px solid transparent;
    font-size: 14px;
    color: #FFF;
    text-align: center;
}
.nav-link:hover{
    border: 1px solid #FFF;
    font-size: 14px;
    color: #FFF;
    background-size: 300% 100%;
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.nav-link:focus{
    border: 1px solid #FFF;
    font-size: 14px;
    color: #FFF;
    background-size: 300% 100%;
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.dropdown-item{
    text-transform: uppercase;
    font-size: 14px;
}
.bg-home{
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,30,.7)), url("../images/slide/home.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    padding-top: 150px;
    padding-bottom: 250px;
    text-align: center;
}
.bg-home-2{
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,30,.7)), url("../images/slide/home-2.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 150px;
}
.bg-home-2 p{
    text-align: justify;
    text-justify: inter-word;
}
.bg-home-3{
    background-color: #95c395;
    color: #000;
}
.bg-home-3 p{
    text-align: justify;
    text-justify: inter-word;
}
.bg-about{
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,30,.7)), url("../images/about-min.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 50px;
    text-align: center;
}
.bg-purple{
    background-color: #441364 !important;
    color: #FFF;
}
.text-purple{
    color: #554c86 !important;
}
.navbar-toggler-icon, .navbar-toggler {
    color: #FFF !important;
}
.navbar-toggler {
    color: #FFF !important;
    border: 1px solid #FFF !important;
    border-radius: 0 !important;
}
@keyframes anim {
    from {background-color: #fde56d;}
    to {background-color: #c68819;}
}
.bg-text-half{
    padding: 0 15px;
    margin-top: -30px;
    animation: anim 5s infinite;
    animation-direction: linear;
    animation-fill-mode: forwards;
    background-color: #c68819;
}
.bg-warning{
    background-color: #ecd262 !important;
}
.text-warning{
    color: #d59e1a !important;
}

.typed_wrap {
    display: block;
    /*centers it in the .banner*/
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

@media (max-width: 576px) {
    .typed_wrap {
        top: 50%;
        left:50%;
        font-size: 36px;
        width: 350px;
    }
}

/*Add custom cursor so it auto inherits font styles*/
.typed::after {
    content: '|';
    display: inline;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

/*Removes cursor that comes with typed.js*/
.typed-cursor{
    opacity: 0;
    display: none;
}
/*Custom cursor animation*/
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

.readon {
    border: 2px solid #441364;
    color: #FFF;
    display: inline-block;
    font-size: 14px;
    overflow: hidden;
    padding: 10px 55px 11px 15px;
    position: relative;
    text-align: left;
    text-decoration: none !important;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.readon.border {
    background-color: transparent;
    color: #FFF;
    border: 2px solid #441364;
}

.readon::before {
    background-color: rgba(0, 0, 0, 0.1);
    content: "";
    height: 100%;
    position: absolute;
    right: -13px;
    top: 0;
    -webkit-transform: skewX(25deg);
    transform: skewX(25deg);
    width: 55px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;

}
.readon::after {
    content: "\f178";
    font-family: FontAwesome;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.readon.border:hover {
    background-color: #eac23c;
    border: 2px solid #eac23c;
    color: #441364;
}
.popular-box {
    position: relative;
    width: 100%;
    height: 100%;
}
.popular-text-box{
    position: absolute;
    bottom: -8px;
    display: block;
    height: auto;
    text-align: center;
    width: 100%;
    color: #FFF;
    overflow: hidden;
    font-size: 16px;
}
.popular-text h3, .popular-text-box h3{
    background-color: #441364;
    padding: 15px 10px;
    font-size: 16px;
    text-transform: uppercase;
}
.popular-text {
    background-color: rgba(68, 19, 100, 0.7);
    bottom: 0;
    display: block;
    height: 0;
    opacity: 0;
    position: absolute;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
    color: #FFF;
    overflow: hidden;
}
.popular-box:hover .popular-text {
    height: 100%;
    opacity: 1;
}
.popular-box:hover .popular-text-box{
    display: none;
}
.partners{
    background-color: #FFF;
    padding: 30px 0;
}
.partners .item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hover-opacity {
  opacity: 0.5 !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.partners .item .image-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}
.partners .item .image-wrapper .overlay {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.partners .item .image-wrapper .overlay.has-border {
  background-color: transparent;
  border: 1px solid;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
  opacity: 0.5;
}
.partners .item .image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  display: block;
  transition: transform 2s cubic-bezier(0.2, 1, 0.2, 1);
}
.image-wrapper .image {
  width: 100%;
  display: block;
}
.fit-cover {
  object-fit: cover;
  object-position: center;
}
.invert-color {
  filter: brightness(1) invert(1);
}
.regsidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 100;
  z-index: 1020;
}