/**
* Template Name: Hidayah - v2.3.0
* Template URL: https://bootstrapmade.com/hidayah-free-simple-html-template-for-corporate/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #562a7a;
}

a:hover {
    color: #64467e;
    text-decoration: none;
}

.btn-underline, .btn-underline:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    margin: 0 0 0.382em;
    line-height: 1.2;
}

/*--------------------------------------------------------------
# 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 #562a7a;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Coming Soon Message Styles
--------------------------------------------------------------*/
.coming-soon-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.coming-soon-message.show {
    opacity: 1;
    visibility: visible;
}

.coming-soon-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.7) translateY(50px);
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.coming-soon-message.show .coming-soon-content {
    transform: scale(1) translateY(0);
}

.coming-soon-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.coming-soon-content h4 {
    color: #562a7a;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

.coming-soon-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.coming-soon-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    box-shadow: none;
    outline: none;
}

.coming-soon-close:hover {
    color: #562a7a;
}

/* Bounce animation for the rocket icon */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 0px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 30px;
    border-radius: 0;
    background:#562a7a;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #64467e;
    color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0;
   /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

#header.header-scrolled, #header.header-inner-pages {
    background: rgba(42, 43, 44, 0.9);
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #fff;
}

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

@media (max-width: 992px) {
    #header {
    border: 0;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 28px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #fff;
    transition: 0.3s;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #9d75be;
}

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

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    color: #193c5a;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color:#9d75be;
}

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
    left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 16px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

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

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #394047;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #428bca;
    text-decoration: none;
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down > a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(34, 39, 43, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(34, 39, 43, 0.8);
    overflow: hidden;
    position: relative;
}

#hero .carousel-item {
    background-image: url("../img/hero.png");
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-item::before {
    content: '';
    background-color: rgba(12, 13, 14, 0.8);
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 50px;
    right: 50px;
}

#hero .container {
    text-align: center;
}

#hero h1 {
    color: #fff;
    font-size: 4.2em;
    max-width: 768px;
    margin: 0 auto 0.5em;
}

#hero h2 {
    color: #fff;
    font-size: 1.95em;
    margin-bottom: 0.5em;
}

#hero p {
    color: #f0f1f2;
    font-size: 1.15em;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto;
    margin-bottom: 1.618em;
    max-width: 768px;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
    width: 10%;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
    background: none;
    font-size: 36px;
    line-height: 1;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: .6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: #428bca;
}

#hero .button {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 0;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

@media (max-width: 768px) {
    #hero h2 {
    font-size: 28px;
    }
}

@media (min-width: 1024px) {
    #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
    }
}

@media (max-height: 500px) {
    #hero {
    height: 120vh;
    }
}

@media screen and (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem; /* Adjust for phones */
        line-height: 1.2; /* Ensure proper spacing */
    }

    #hero h2 {
        display: none;
    }
}

/*--------------------------------------------------------------
# Inner Hero General
--------------------------------------------------------------*/

#innerHero {
    width: 100%;
    height: 23rem;
    background-color: rgba(34, 39, 43, 0.8);
    overflow: hidden;
    position: relative;
}

#innerHero h1 {
    font-size: 3.4em;
    max-width: 750px;
    margin: 0 auto 0.5em;
}

/* Declare heights because of positioning of img element */
#innerHero .carousel-item {
    background-image: url("../img/hero.png");
}

#innerHero .carousel, #innerHero .carousel-inner, #innerHero .carousel-item, #innerHero .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#innerHero .carousel-item::before {
    content: '';
    background-color: rgba(12, 13, 14, 0.6);
}

#innerHero .custom-carousel-caption {
    z-index: 10;
    color: #fff;
    text-align: center;
    margin-top: 100px;
}

#innerHero .carousel-item .row {
    height: 20rem;
}

@media (min-width: 320px) and (max-width: 479px) {
    #innerHero h1 {
        font-size: 2em;
    }
}

@media (min-width: 480px) and (max-width: 768px) {
    #innerHero h1 {
        font-size: 2.5em;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 80px 0;
}

.section-bg {
    /* background-color: #fafafb; */
    background-color: #eaeaec;
}

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

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: #f5f9fc;
    color: #428bca;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}

.section-title h3 {
    color: #838080;
    font-size: 32px;
    font-weight: 700;
    margin: 15px 0 0 0;
}

.section-title h3 span {
    /* color: #428bca; */
    color: #562a7a;
}

.section-title p {
    margin: 15px auto 0 auto;
    font-weight: 500;
    color: #919191;
}

@media (min-width: 1024px) {
    .section-title p {
        width: 75%;
    }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    padding-top: 0;
}

.about .icon-boxes h3 {
    font-size: 28px;
    font-weight: 700;
    color: #394047;
    margin-bottom: 15px;
}

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

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

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

.about .icon-box:hover .icon {
    background: #428bca;
    border-color: #428bca;
}

.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: #428bca;
}

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

#others_assistant .row {
    min-height: 300px;
}

.rasmus-link {
    display: block;
    height: 100%;
    width: 100%;
    background: url("../img/Hi-Rasmus-logo.png") center no-repeat;
    background-size: contain;
}

.aba-assisstant-link {
    display: block;
    height: 100%;
    width: 100%;
    background: url("../img/Aba-Assistant-logo.png") center no-repeat;
    background-size: contain;
}

.ivt-in-aba-link {
    display: block;
    height: 100%;
    width: 100%;
    background: url("../img/ivt-in-aba.jpg") center no-repeat;
    background-size: contain;
}

.africans-in-aba-link {
    display: block;
    height: 100%;
    width: 100%;
    background: url("../img/africans-in-aba.jpg") center no-repeat;
    background-size: contain;
}

.alcanzando-link {
    display: block;
    height: 100%;
    width: 100%;
    background: url("../img/alcanzando_logo.png") center no-repeat;
    background-size: contain;
}

.michael-link {
    display: block;
    height: 100%;
    width: 90%;
    background: url("../img/michael-mueller.jpg") top no-repeat;
    background-size: contain;
}

.ajamu-link {
    display: block;
    height: 100%;
    width: 90%;
    background: url("../img/ajamu-nkosi.jpg") top no-repeat;
    background-size: contain;
}

@media (min-width: 320px) and (max-width: 768px) {
    .rasmus-link,
    .aba-assisstant-link {
        min-height: 150px;
        margin-top: 30px;
    }
}

.about .video-box {
    background: url("../img/Hi Rasmus logo_filled_color.png") center no-repeat;
    background-size: contain;
}

.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#428bca 50%, rgba(66, 139, 202, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    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;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(66, 139, 202, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
    border-left: 15px solid #428bca;
    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;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

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

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

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding: 80px 0 60px 0;
}

.counts .counters span {
    font-size: 48px;
    display: block;
    color: #428bca;
    font-weight: 700;
}

.counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 500;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills {
    padding-top: 0;
}

.skills .progress {
    height: 50px;
    display: block;
    background: none;
}

.skills .progress .skill {
    padding: 10px 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #394047;
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: #e3e6e9;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: .9s;
    background-color: #428bca;
}

/*--------------------------------------------------------------
# Announcement
--------------------------------------------------------------*/
.announcement {
    padding-top: 50px;
    padding-bottom: 30px;
    text-align: center;
}

.announcement ul {
    list-style: none;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    padding-top: 50px;
    padding-bottom: 30px;
}

.services .icon-box {
    text-align: center;
    margin-bottom: 60px;
}

.services .icon-box:nth-child(1) {
    padding-left: 0;
    padding-right: 25px;
}

.services .icon-box:nth-child(3) {
    padding-right: 0;
    padding-left: 25px;
}

.services .icon {
    /* float: left; */
    text-align: center;
    margin-bottom: 10px;
}

.services .icon-big {
    /* float: left; */
    text-align: center;
    margin-bottom: 20px;
}

.services .icon i {
    /* color: #428bca; */
    background-color:transparent;
    color: #562a7a;
    font-size: 36px;
    line-height: 1;
}

.services .title {
    /* margin-left: 60px; */
    color: #838080;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.services .title a {
    color: #343a40;
    transition: 0.3s;
}

.services .icon-box:hover .title a {
    color: #428bca;
}

.services .description {
    /* margin-left: 60px; */
    font-size: 17px;
    line-height: 28px;
}

#chartdiv {
    width: 100%;
    height: 70vh;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(12, 13, 14, 0.8), rgba(12, 13, 14, 0.8)), url("../img/woman-teaching-children.jpg") fixed top center;
    background-size: cover;
    padding: 120px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    color: #fff;
    max-width: 80%;
    margin: 0 auto 25px;
    font-size: 21px;
    font-family: Roboto, sans-serif;
}

.cta .cta-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 35px;
    border-radius: 0;
    transition: 0.5s;
    margin-top: 20px;
    color: #fff;
}

/*--------------------------------------------------------------
# Cta 2
--------------------------------------------------------------*/
.work-together {
    background: linear-gradient(rgba(12, 13, 14, 0.8), rgba(12, 13, 14, 0.8)), url("../img/girl-working.jpg") fixed center center;
    background-size: cover;
    padding: 100px 0;
}

.work-together h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.work-together p {
    color: #fff;
    margin: 0 auto;
    font-size: 20px;
    font-family: Roboto, sans-serif;
}

.work-together .cta-btn {
    margin-bottom: 5px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 0;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: #428bca;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(57, 64, 71, 0.6);
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(57, 64, 71, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap img {
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 5px 0 0;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #6aa3d5;
}

.portfolio .portfolio-wrap:hover::before {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .col {
    padding: 40px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.2);
    background: #fff;
}

.testimonials .col:hover {
    box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.3);
    opacity: .8;
}

.testimonials .col:first-child {
    margin-right: 20px;
}

.testimonials .col:last-child {
    margin-left: 20px;
}

.testimonials .col h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #394047;
}

.testimonials .col h4 {
    font-size: 14px;
    color: #999;
    margin: 0 auto 5px;
}

.testimonials .col .quote-icon-left, 
.testimonials .col .quote-icon-right {
    color: #9c8baa;
    font-size: 26px;
}

.testimonials .col .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .col .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .col p {
    font-style: italic;
    margin: 15px 0 0 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.team .member .member-info {
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}

.team .member .member-info-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
}

.team .member .member-info-content span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
}

.team .member .social {
    position: absolute;
    left: 0;
    bottom: -38px;
    right: 0;
    height: 48px;
    transition: bottom ease-in-out 0.4s;
    text-align: center;
}

.team .member .social a {
    transition: color 0.3s;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
}

.team .member .social a:hover {
    color: #428bca;
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

.team .member:hover .member-info {
    opacity: 1;
    transition: 0.4s;
}

.team .member:hover .member-info-content {
    bottom: 60px;
    transition: bottom 0.4s;
}

.team .member:hover .social {
    bottom: 0;
    transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Proud Member
--------------------------------------------------------------*/

.proud-member p {
    font-size: 22px;
    margin-top: 25px;
    width: 90%;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    padding: 40px 40px;
    background: #fefefe;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
    text-align: center;
}

.contact .info i {
    font-size: 48px;
    color: #92bce0;
    margin-bottom: 15px;
}

.contact .info h4 {
    padding: 0;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.contact .info p {
    font-size: 15px;
}

.contact .php-email-form {
    width: 100%;
    padding: 0 30px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
    font-family: "Poppins", sans-serif;
    margin-bottom: 5px;
    color: #777777;
}

.contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
    border-color: #428bca;
}

.contact .php-email-form input {
    padding: 20px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
    background: #fff;
    border: 2px solid #428bca;
    padding: 12px 35px;
    transition: 0.4s;
    background: #428bca;
    color: #fff;
    border-radius: 0;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #5697d0;
}

@media (max-width: 1024px) {
    .contact .php-email-form {
    padding: 30px 15px 15px 15px;
    }
}

@media (max-width: 768px) {
    .contact .php-email-form {
    padding: 15px 0 0 0;
    }
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f7f8f8;
    min-height: 40px;
    margin-top: 70px;
}

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

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 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: #505a63;
    content: "/";
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: #428bca !important;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-info p {
    font-size: 15px;
    padding: 15px 0 0 0;
}

@media (max-width: 992px) {
    .portfolio-details .portfolio-info {
    padding-top: 20px;
    }
}

/*--------------------------------------------------------------
# Announcement Details
--------------------------------------------------------------*/

#ibaDocuments .icon-box h4, #ibtDocuments .icon-box h4, #ethicsDocuments .icon-box h4 {
    font-size: 20px;
}

#announcement .icon-box a, #announcement .icon-box a:hover,
#ibaDocuments .icon-box a, #ibaDocuments .icon-box a:hover,
#ibtDocuments .icon-box a, #ibtDocuments .icon-box a:hover,
#ethicsDocuments .icon-box a, #ethicsDocuments .icon-box a:hover {
    text-decoration: underline;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #232c39;
    padding: 0 0 30px 0;
    color: #a4a8ac;
    ;
    font-size: 16px;
    line-height: 26px;
}

#footer .footer-newsletter {
    padding: 50px 0;
    background: #2e3339;
}

#footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
}

#footer .footer-top {
    background: #272c30;
    border-top: 1px solid #394047;
    border-bottom: 1px solid #394047;
    padding: 60px 0 30px 0;
}

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

#footer .footer-top .footer-info h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 16px;
    display: inline-block;
    background: #394047;
    color: #fff;
    line-height: 1;
    padding: 10px 0;
    margin-right: 4px;
    border-radius: 0;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #562a7a;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

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

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

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

#footer .footer-top .footer-links ul i.bx-large {
    margin-top: -16px;
}

#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: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #562a7a;
}

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

#footer .footer-top .footer-contact p {
    line-height: 26px;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

/* Newsletter Dropdown Styles */
#footer .newsletter-dropdown {
    position: relative;
}

#footer .newsletter-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1000;
    min-width: 100px;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

#footer .newsletter-menu li {
    padding: 0 !important;
    display: block !important;
    align-items: normal !important;
}

#footer .newsletter-dropdown {
    padding: 0 !important;
    display: block !important;
    align-items: normal !important;
}

/* Override the general footer li flex properties for newsletter dropdown */
#footer .newsletter-dropdown li {
    display: block !important;
    align-items: normal !important;
    padding: 0 !important;
}


#footer .newsletter-menu a {
    display: block;
    padding: 3px 12px;
    color: #562a7a !important;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    line-height: 1.2;
    transform: translateX(0);
}

#footer .newsletter-menu a:hover {
    background-color: #f8f9fa;
    color: #562a7a !important;
    transform: translateX(5px);
    box-shadow: 2px 0 8px rgba(86, 42, 122, 0.2);
}

#footer .newsletter-menu li:last-child a {
    border-bottom: none;
}

#footer .newsletter-dropdown:hover .newsletter-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#footer .newsletter-toggle {
    cursor: pointer;
}

/*--------------------------------------------------------------
# Coming Soon Message Styles
--------------------------------------------------------------*/
.coming-soon-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.coming-soon-message.show {
    opacity: 1;
    visibility: visible;
}

.coming-soon-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.7) translateY(50px);
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.coming-soon-message.show .coming-soon-content {
    transform: scale(1) translateY(0);
}

.coming-soon-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.coming-soon-content h4 {
    color: #562a7a;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

.coming-soon-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.coming-soon-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.coming-soon-close:hover {
    color: #562a7a;
}

@keyframes blinker {
    from { opacity: 0;}
    to { opacity: 1; }
}

.inner-page {
    padding-left: 20px;
    padding-right: 20px;
}

.inner-page p, .inner-page li {
    color: #53565a;
    font-size: 1.3rem;
    font-family: Roboto, sans-serif;
}

.inner-page li {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.inner-page dd {
    font-size: 1.2rem;
    margin-left: 35px;
    margin-bottom: 0;
}


.button, button, input[type="button"], input[type="reset"], input[type="submit"],
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 1.2em 2.2em;
    border: 0;
    border-radius: 0;
    color: #ffffff;
    background-color: #562a7a;
    box-shadow: inset 0 0 0 9rem rgba(255, 255, 255, 0), 0 1rem 1rem -1rem rgba(35, 44, 57, 0.1);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.75s cubic-bezier(0, 1, 0.5, 1);
    transition: all 0.75s cubic-bezier(0, 1, 0.5, 1);
}

    .button:hover, button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
        color: #ffffff;
        box-shadow: inset 0 0 0 9rem rgba(255, 255, 255, 0.1), 0 1.25rem 1rem -0.5rem rgba(35, 44, 57, 0.1);
        -webkit-transition: all 0.75s cubic-bezier(0, 1, 0.5, 1);
        transition: all 0.75s cubic-bezier(0, 1, 0.5, 1);
    }

.underline, .underline:hover {
    text-decoration: underline;
}

input.error, textarea.error {
    border-color: red;
}

label.error {
    color: red;
    font-size: .8rem;
    margin-bottom: 0;
}

.ui-pnotify-title {
    font-size: 1rem;
    font-weight: bold;
}

.ui-pnotify-text {
    font-size: .9rem;
}

.grecaptcha-badge {
    display: none !important;
    visibility: hidden !important;
}

/* Zoho ASAP */

#zohohc-asap-web-button svg {
    overflow: visible;
}

/*--------------------------------------------------------------
# RTL Support
--------------------------------------------------------------*/
[dir="rtl"] #header .logo.mr-auto {
    margin-right: 0 !important;
    margin-left: auto !important;
}

[dir="rtl"] .nav-menu {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .nav-menu ul {
    padding-left: 0;
    padding-right: 0;
}

[dir="rtl"] #main {
    text-align: right;
}

[dir="rtl"] .section-title h2,
[dir="rtl"] .section-title p,
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6 {
    text-align: right;
}

[dir="rtl"] p, [dir="rtl"] li, [dir="rtl"] span {
    text-align: right;
}

[dir="rtl"] .text-left {
    text-align: right !important;
}

[dir="rtl"] .text-center {
    text-align: center !important;
}
