/********** Template CSS **********/
:root {
    --primary: #2124B1;
    --secondary: #4777F5;
    --light: #F7FAFF;
    --dark: #1D1D27;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.btn-navbar{
    background-color: #ff9933;
    border-color: #ff9933;
}
.btn-navbar:hover{
    background-color: #fd8b19;
    border-color: #fd8b19;
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 25px 0;
    color: #1c185a !important;
    font-weight: 500;
    outline: none;
    transition: .5s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 15px 0;
    color: #ffffff !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #ff9933 !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        background-color: #e3e3e54d;
        border-bottom: 1px solid rgb(213 213 213);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #262262;
        color: #fff;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #ff9933;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Hero Header ***/
.hero-header {
    background:
        url(../img/hero-bg.jpg);
    background-position:top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
.hero-header-inner {
    background:
        url(../img/hero-bg.jpg);
    background-position:center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
}
.hero-bg{
    background-color: #F9F2E2;
}
.logo{
    position: relative;
    position: relative;
    width: 250px;
    margin: auto;
    margin-top: -25px;
    margin-bottom: 30px;
}
.hero-header .home-text{

}
.event-date{
    border-bottom: 3px double #e1d072;
    border-top: 3px double #e1d072;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 10px 15px;
    background-color: #262262;
    border-radius: 5px;
text-transform: uppercase;
}
.event-date sup {
    text-transform: lowercase;
}

@media (max-width: 667px) {
.event-date{
font-size: 10px;
 padding: 5px 5px;
}
}

/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 48%;
    background: #262262;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 4px;
    bottom: 0;
    left: 55%;
    background: #262262;
}
.section-title h2{
    font-size: 30px;
    color: #262262;
}
.section-title h2.who-can{
    color: #FFFFFF;
}
.section-title h2.who-can::before{
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 48%;
    background: #ffffff;
}
.section-title h2.who-can::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 4px;
    bottom: 0;
    left: 53%;
    background: #ffffff;
}
.about-text{
    font-size: 17px;
    color: black;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 45%;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 45.3%;
}


/*** Service ***/
.service-bg{
    background-color: #262262 !important;
}
.service-text{
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}
.service-item {
    position: relative;
    height: 350px;
    padding: 30px 25px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/icon-shape-primary.png) center center no-repeat;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--primary);
    background: url(../img/icon-shape-white.png);
}

.service-item h5,
.service-item p {
    transition: .5s;
    color: #000;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--light);
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: #DDDDDD;
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Testimonial ***/
.newsletter,
.testimonial {
    background:
        url(../img/bg-top.png),
        url(../img/bg-bottom.png);
    background-position:
        left top,
        right bottom;
    background-repeat: no-repeat;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--light) !important;
    border-color: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #888888;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h6 {
    color: var(--dark) !important;
}


/*** Team ***/
.team-item {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.team-item::after {
    position: absolute;
    content: "";
    top: 3rem;
    right: 3rem;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    background: var(--primary);
}

.team-item h5,
.team-item small {
    transition: .5s;
}

.team-item:hover h5,
.team-item:hover small {
    color: var(--light);
}


/*** Project Portfolio ***/
#portfolio-flters .btn {
    position: relative;
    display: inline-block;
    margin: 10px 4px 0 4px;
    transition: .5s;
}

#portfolio-flters .btn::after {
    position: absolute;
    content: "";
    right: -1px;
    bottom: -1px;
    border-left: 20px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 50px solid #FFFFFF;
}

#portfolio-flters .btn:hover,
#portfolio-flters .btn.active {
    color: var(--light);
    background: var(--primary);
}

.portfolio-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: var(--primary);
    transition: .5s;
    z-index: 1;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item .btn {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icon-shape-white.png) center center no-repeat;
    border: none;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}

.portfolio-item:hover .btn {
    opacity: 1;
    transition-delay: .15s;
}


/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}



/*------------ categories ----------------- */

@keyframes content-opacity {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes content-rotate-y {
    from {
      -moz-transform: rotateY(90deg);
      -ms-transform: rotateY(90deg);
      -webkit-transform: rotateY(90deg);
      transform: rotateY(90deg);
    }
    to {
      opacity: 1;
      -moz-transform: rotateY(0deg);
      -ms-transform: rotateY(0deg);
      -webkit-transform: rotateY(0deg);
      transform: rotateY(0deg);
    }
  }
  @keyframes content-rotate-x {
    from {
      -moz-transform: rotateX(90deg);
      -ms-transform: rotateX(90deg);
      -webkit-transform: rotateX(90deg);
      transform: rotateX(90deg);
    }
    to {
      opacity: 1;
      -moz-transform: rotateX(0deg);
      -ms-transform: rotateX(0deg);
      -webkit-transform: rotateX(0deg);
      transform: rotateX(0deg);
    }
  }
  @keyframes content-rotate-both {
    from {
      -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
      -moz-transform-origin: 0% 50% 50%;
      -ms-transform-origin: 0% 50% 50%;
      -webkit-transform-origin: 0% 50% 50%;
      transform-origin: 0% 50% 50%;
    }
    to {
      opacity: 1;
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      -moz-transform-origin: 0% 50% 50%;
      -ms-transform-origin: 0% 50% 50%;
      -webkit-transform-origin: 0% 50% 50%;
      transform-origin: 0% 50% 50%;
    }
  }
  @keyframes content-pop-out {
    0% {
      opacity: 1;
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    50% {
      opacity: 1;
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
    100% {
      opacity: 1;
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes content-pop-in {
    from {
      opacity: 1;
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
    to {
      opacity: 1;
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes content-slide-bot {
    from {
      top: 20px;
      opacity: 0;
    }
    to {
      top: 0px;
      opacity: 1;
    }
  }
  @keyframes content-slide-top {
    from {
      top: -20px;
      opacity: 0;
    }
    to {
      top: 0px;
      opacity: 1;
    }
  }
  /* used for wrapper animation after the load of the page */
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
 

.tabs-wrapper {
  
}
.tabs-wrapper input[type="radio"] {
  display: none;
}
.tabs-wrapper label {
    transition: background 0.4s ease-in-out, height 0.2s linear;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    width: 20%;
    height: 3em;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background: #0f233d;
    text-align: center;
    line-height: 3em;
    text-transform: uppercase;
    font-weight: 500;
}
.tabs-wrapper label:last-of-type {
  border-bottom: none;
}
.tabs-wrapper label:hover {
  background: #667876;
  /*@include transform (translate(0,-0.2em));*/
}
@media screen and (max-width: 1600px) {
  .tabs-wrapper label {
    width: auto;
    padding: 0px 10px;
  }
}
@media screen and (max-width: 900px) {
  .tabs-wrapper label {
    width: 20%;
  }
}
@media screen and (max-width: 600px) {
  .tabs-wrapper label {
    width: 100%;
    display: block;
    border-bottom: 2px solid #4d4c47;
    border-radius: 0;
  }
}
@media screen and (max-width: 600px) {
  .tabs-wrapper {
    margin: 0;
  }
}

#tab1:checked + label,
#tab2:checked + label,
#tab3:checked + label,
#tab4:checked + label,
#tab5:checked + label {
  background: #ff9933;
  color: #f2f2f2;
}

.tab-body {
  position: absolute;
  top: -9999px;
  opacity: 0;
  padding: 10px;
}
.tab-body h1{
	font-size: 24px;
    font-weight: 600;
    color: #0f233d;
	    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid;
}
.tab-body h2{
	font-size: 22px;
    font-weight: 600;
    color: #000000;
	    margin-top: 15px;
    padding-bottom: 5px;
}
.tab-body h3{
    font-size: 18px;
    font-weight: 500 !important;
    color: #000000;
}
.tab-body p{
	    color: #000;
    border-bottom: 1px dotted #9f9f9f;
    padding-bottom: 15px;
}

.tab-body-wrapper {
  background: #f2f4f6;
  border-top: #ff9933 5px solid;
  border-left: 1px solid #ff9933;
  border-right: 1px solid #ff9933;
  border-bottom: 1px solid #ff9933;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-right-radius: 3px;
  animation-delay: 0.2s;
  animation-duration: 1.5s;
  animation-name: show;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 600px) {
  .tab-body-wrapper {
    border: none;
    border-radius: 0;
  }
}
        .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* remove the gap so it doesn't close */
}
.dropdown-menu{background-color: #f0f0f2;}
#tab1:checked ~ .tab-body-wrapper #tab-body-1,
#tab2:checked ~ .tab-body-wrapper #tab-body-2,
#tab3:checked ~ .tab-body-wrapper #tab-body-3,
#tab4:checked ~ .tab-body-wrapper #tab-body-4,
#tab5:checked ~ .tab-body-wrapper #tab-body-5 ,
#tab6:checked ~ .tab-body-wrapper #tab-body-6{
  position: relative;
  top: 0px;
  /* Choose one - modify .tab-body opacity to 1 if you don't want any animation or set opacity to 1 here */
  /* @include animation(0.2s,0.8s,content-rotate-y); */
  /* @include animation(0.2s,0.8s,content-rotate-both); */
  animation-delay: 0.1s;
  animation-duration: 0.4s;
  animation-name: content-slide-bot;
  animation-fill-mode: forwards;
  /* @include animation(0.1s,1s,content-slide-bot); */
}

.form-group{
    margin-bottom: 15px;
}
.form-group label{
    color: #000;
}
.form-group .form-control{
    border-radius: 3px;
    border-color: #262262;
}

.form-group .form-check-input{
    border-color: #262262;
}
.form-group p{
    color: #000;
}
.label-text{
    color: #000;
}
.view-entry td{
    color: #000;
}
.footer-page{
    color: #000;
}



.social-icon{
				display: block;
				position: relative;
				padding-left: 0;
			}
			.social-icon li{
				display: inline-block;
				width: 40px;
				height: 40px;
			}
			.social-icon li a{
				
				    line-height: 40px;
			}
			.social-icon li i{
				color: #fff;
				width: 40px;
				height: 40px;
			}
			.social-icon li.facebook-icon{
    background-color: #1877F2;
			}
			.social-icon li.twitter-icon{
    background-color: #1DA1F2;
			}
			.social-icon li.insta-icon{
    background-color: #833AB4;
			}
			.social-icon li.linkdin-icon{
    background-color: #0077B5;
			}
			.social-icon li.youtube-icon{
    background-color: #FF0000;
			}
			.social-icon li.whatsap-icon{
    background-color: #25D366;
			}