@font-face {
    font-family: 'Montserrat Light';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}
/*#################################### COLOR PALETTE  ##############################################*/
/*Global Colors*/
/*
    Color 1 => #008DD2 (Blue)
    Color 2 => #5F605F (Dark Grey)
    Color 3 => #DADDFF (Grey)
    Color 4 => #0E2D4A (Dark Blue)
*/
/*#################################### TABLE OF CONTENTS ###########################################*/
/*Table Of Contents*/
/*
    You can use Ctrl + F search for x-section keyword for find sections
    1 - Global Html, Body, Navigation styling
    2 - Global Elements
        2.a - Inputs
        2.b - Labels
        2.c - Buttons
        2.d - Forms
    3 - Global Classes
*/
/*#################################### STYLE #######################################################*/
#Website {
    display: none;
}
/*Error Pages*/
.error-container{
    margin-top: 4rem;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.section-header-text{
    font-size: 3rem;
}
* {
    font-family: 'Montserrat Light', sans-serif;
    padding: 0;
    margin: 0;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Montserrat Light';
    background-color: #F6F9FF;
    margin-bottom: 60px;
    height: 100%;
    overflow-x: hidden;
}
hr {
    border-top: 1px solid rgb(55 157 212 / 13%)!important;
}
@media screen and (max-width: 675px){
    iframe {
        width: 400px;
    }
}
@media screen and (max-width: 475px){
    iframe{
        width: 320px;
    }
}
@media screen and (max-width: 300px){
    iframe {
        display: none;
    }
}

/*Home*/
/*Global Top Header*/
.top-header {
    background-color: #11488a2b;
    z-index: 10;
    position: absolute;
    top: 0;
    width: 100%;
}
@media screen and (max-width: 675px){
    .top-header {
        background-color: #285a97cc;
    }
}
.header-links {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.top-header-row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.top-header a {
    color: #fff;
    padding: 0.25rem;
    font-size: 12px;
    transition: 0.2s ease;
}

@media screen and (max-width: 770px) {
    .top-header .col-md-9, .col-md-3 {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/*Global Header*/
.main-header {
    top: 0;
    left: 0;
    color: #fff;
    z-index: 4;
    width: 100%;
    /*background-image: url("../images/header-bg.png");*/
}

.sticky-header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    transition: 0.3s ease;
    background-color: rgb(17 49 84 / 84%);
}

#brand-logo {
    width: 90px;
    transition: 0.3s ease;
}
@media screen and (max-width: 675px){
    #brand-logo{
        width: 70px!important;
    }
}

@media screen and (max-width: 675px){
    header {
        background-color: #4f8ade;
    }
}
header {
    padding-top: 1.2rem;
}
@media screen and (max-width: 775px) {
    header {
        margin-top: 1.8rem;
    }
}
header ul {
    display: table;
    clear: both;
    content: "";
}

.nav-links ul {
    justify-content: flex-end !important;
}

header ul li a {
    color: #f2faff !important;
    padding: 0.25rem;
    transition: 0.3s ease;
    font-size: 16px;
    text-decoration: none !important;
}

    header ul li a:hover {
        /*background-color: #3370a4;*/
        animation: navLinkHover 3s;
    }

@keyframes navLinkHover {
    from {
        border-width: 0;
    }

    to {
        border-width: 100%;
    }
}

header ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width .3s ease;
}

header ul li a:hover::after {
    width: 100%;
}

.brand-logo {
    box-shadow: none;
    width: 70px;
}

.navbar-nav {
    align-items: center;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}

.nav-list {
    display: flex;
    flex-direction: row;
    list-style-type: none;
}

    .nav-list li a {
        padding: 0.25rem;
        margin-right: 2rem;
    }

@media screen and (max-width: 575px) {
    .navbar-nav {
        display: inline-block;
    }

        .navbar-nav .nav-link {
            padding: 1rem !important;
        }

    .navbar-collapse {
        background-color: #000000cc !important;
        /*background-color: #4f8ade;*/
    }
}
@media screen and (max-width: 775px){
    .navbar{
        padding-top: 0!important;
    }
}
/*Navbar Toggler*/
.navbar-toggler {
    padding: 0.5rem 0.25rem 0.2rem 0.2rem!important;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}
.navbar-toggler-icon i{
    color: #7891df!important;
}

/*Breadcrumb*/
/*Breadcrumb Navigation*/
.breadcrumb-container{
    margin-top: 2rem;
}
.breadcrumb-list {
    display: flex;
    padding: 0.5rem;
    box-shadow: 2px 3px 4px 0px #d2d2d2;
}

    .breadcrumb-list li {
        padding: 0.25rem;
        list-style-type:none;
    }

    .breadcrumb-list a {
        font-weight: 900;
        padding: 0.25rem;
        text-decoration: none;
        color: #1b39b0ee;
        border-bottom: 1px solid transparent;
    }

        .breadcrumb-list a:hover {
            border-bottom: 1px solid #4ba1e06e;
            color: #1e93e8;
        }

    .breadcrumb-list i {
        font-size: 12px;
        line-height: 10px;
    }

.home-presentation {
    margin-bottom: 5rem;
}
@media screen and (max-width: 675px){
    .home-presentation{
        margin-bottom: 2rem;
    }
}
.presentation-container {
    margin-top: -10rem;
    background-color: #4f8ade;
}

.presentation-image {
    /*border-radius: 22px;
    box-shadow: 2px 2px 12px 1px #aca7a7c9;
    display: flex;
    margin: auto;*/
    border-radius: 0px;
    box-shadow: 2px 2px 12px 1px #aca7a7c9;
    display: flex;
    margin: auto;
    height: 300px;
    object-fit: cover;
    padding: 0.2rem;
}
@media screen and (max-width: 775px){
    .presentation-image{
        width: 370px;
    }
}
@media screen and (max-width: 475px){
    .presentation-image{
        width: 240px;
    }
}
#toggler-menu-btn {
    color: #fff;
    font-size: 28px;
    transition: 0.3s ease;
}

.carousel-inner .fade-carousel {
    animation: fadeCarousel 2s;
}

@keyframes fadeCarousel {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

.carousel-control-next,
.carousel-control-prev {
    top: 130px;
    text-decoration: none;
}

#carousel-right {
    font-size: 32px;
    background-color: rgba(39, 39, 39, 0.805);
    color: #fff;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
}

#carousel-left {
    font-size: 32px;
    background-color: rgba(39, 39, 39, 0.805);
    color: #fff;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.carousel-indicators li {
    background-color: #fff;
}

.carousel-item img {
    display: flex;
    margin: auto;
    width: 100%;
    height: 1000px;
    object-fit: cover;
}

@media screen and (max-width: 675px) {

    .main-carousel #carousel-right{
        height: 25px;
        width: 25px;
        font-size: 18px;
    }

    .main-carousel #carousel-left {
        height: 25px;
        width: 25px;
        font-size: 18px;
    }

    .carousel-item img {
        height: 750px;
    }
}
.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
}
@media screen and (max-width: 675px){
    .carousel-overlay{
        height: 30%;
    }
}
.carousel-caption {
    text-align: center;
    color: white;
    padding: 20px;
}

.large-text {
    font-size: 36px;
    margin-bottom: 10px;
}
@media screen and (max-width: 675px){
    .large-text{
        font-size: 26px;
    }
}
.small-text {
    font-size: 18px;
    margin-top: 0;
}
/*.carousel-overlay {
    position: absolute;
    right: 3%;
    top: 18%;
    font-size: 38px;
    color: white;
    background-color: rgb(0 0 0 / 49%);
    padding: 1rem;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}
*/
.carousel-center-btn {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #555;
    color: white;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}


@media screen and (max-width: 720px) {
    main {
        padding: 0 !important;
    }

    .main-container {
        padding: 0rem !important;
    }

    .homepage {
        padding: 5rem;
    }
}


/*Home*/
/*Platforms*/
.platform-area {
    margin-top: 5rem;
}

@media screen and (max-width: 768px) {
    .platform-area {
        margin-top: 3rem;
    }
}

.platform-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.platform-section {
    border-radius: 5px;
    box-shadow: 1px 1px 14px 1px #c8c6c659;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 1rem;
}

.platform-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 2s ease;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    color: black;
    transition: 2s ease;
    width: 100%;
    overflow: hidden;
}

    .platform-link:hover .platform-image {
        transform: scale(1.5);
        opacity: 0.6;
    }

    .platform-link:hover .platform-info {
        background-color: #1c4b74;
        color: #fff;
    }

.platform-info {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 2rem;
    height: 200px;
    z-index: 3;
    padding: 1rem;
    width: 100%;
    transition: 0.3s ease;
}

.platform-header {
    font-size: 24px;
    text-align: center;
}

.platform-section:hover .platform-link {
    color: #2474cb;
    text-decoration: none;
}

@media screen and (max-width: 675px) {
    .platform-image {
        height: 450px;
        margin-top: 1rem;
    }
}

.custom-btn {
    padding: 5px 25px;
    border: 2px solid #3977e5;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}
.read-more {
    background: #f4f4f4;
    color: #020202;
    z-index: 1;
}

    .read-more:after {
        position: absolute;
        content: "";
        width: 0;
        height: 100%;
        top: 0;
        left: 0;
        direction: rtl;
        z-index: -1;
        background: #3977e5;
        transition: all 0.3s ease;
    }

    .read-more:hover {
        color: #fff;
    }

        .read-more:hover:after {
            left: auto;
            right: 0;
            width: 100%;
        }

    .read-more:active {
        top: 2px;
    }
/*Transition Overlay*/
.transition-overlay{
    background-image: url("../images/2.webp");
    background-position: bottom;
    background-attachment: fixed;
    background-size: cover;
    height: 400px;
}
.overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #33333059;
    height: 400px;
    color: #fff;
}
.overlay-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    flex-direction: column;
    margin-top: 4rem;
}

#changing-text {
    font-size: 54px;
    color: #fff;
    opacity: 0;
    transform: translateY(100%);
    animation: fadeInUp 1.5s forwards;
}
.contact-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #1c4b74;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    visibility: hidden;
    animation: fadeInUp 1.5s forwards;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*Wwd - What we do*/
.wwd-container {
    display: flex;
    flex-direction: column;
    margin-left: 4rem;
    margin-right: 4rem;
}

.wwd-col {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.first-col {
    background-color: #1c4b74;
    color: #fff;
}

.wwd-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wwd-col {
    padding: 0 !important;
}

.wwd-text {
    padding: 1rem;
    font-weight: 500;
    font-size: 18px;
}

.wwd-header {
    padding-top: 0.5rem;
    padding-left: 1rem;
    font-weight: 600;
}

.wwd-button {
    width: 215px;
    font-size: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto !important;
}

@media screen and (max-width: 768px) {
    .wwd-button {
        font-size: 14px;
        padding: 0.5rem 1rem !important;
        justify-content: space-around !important;
    }
}
/*Counter*/
.heading {
    text-align: center;
    font-size: 3.5rem;
    padding: 1rem;
    color: #505050;
}
.header-description{
    text-align: center;
}
.counter-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.counter {
    text-align: center;
    padding: 1rem;
    box-shadow: 1px 1px 12px 1px #dddddd82;
    border-radius: 10px;
}

    .counter h3 {
        padding: 0.5rem 0;
        font-size: 2rem;
        font-weight: 400;
    }

    .counter p {
        font-size: 1.5rem;
        padding-bottom: 1rem;
        font-weight: 300;
    }

    .counter i {
        color: #4cabe2;
        font-size: 24px;
    }
    @media screen and (max-width: 875px){
        .counter h3{
            font-size: 32px;
        }
        .counter h6{
            font-size: 1rem;
        }
    }
.icon {
    height: 5rem;
    width: auto;
}

/*Home News*/
/*Brands Container*/
.news-header {
    width: 30%;
    display: flex;
    margin: auto;
    justify-content: center;
    padding-top: 4rem;
}

.news-header-text {
    color: #fff;
    background-color: #00000054;
    padding: 1rem;
    border-radius: 5px;
}

.news-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    padding-top: 10px;
}

@media screen and (max-width: 768px) {
    .news-row {
        flex-direction: column;
    }

    .news-container {
        height: auto !important;
    }
}

.news-link {
    transition: 0.3s ease;
    text-decoration: none;
}

.news-main-container {
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-bottom: 4rem;
}
.news-container {
    padding: 0.5rem;
    height: 300px;
    margin-right: 1rem;
    margin-left: 1rem;
}
.news-wrapper {
    display: flex;
    margin: auto;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .news-wrapper:hover .news-image-footer {
        display: flex;
    }
    .news-wrapper:hover .news-link {
        text-decoration: none;
    }
    .news-wrapper:hover .news-image {
        transform: scale(1.5);
    }

.news-image {
    object-fit: cover;
    transition: 3s ease-in-out;
}

.news-image-footer {
    display: none;
    position: absolute;
    height: 285px;
    width: 301px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}
@media screen and (max-width: 675px){
    .news-image-footer{
        display: none!important;
    }
}
.news {
    display: flex;
    align-items: center;
    justify-content:center;
    padding: 1rem;
    border-radius: 5px;
    z-index: 5;
    margin-left: 2rem;
    margin-right: 2rem;
}

    .news-link:hover .news-image {
        animation: fadeEffect 1s;
    }

.news-image:hover {
    animation: fadeEffect 1s;
    border: 1px solid black;
    background-color: #f8fafb1a;
}

@keyframes fadeEffect {
    from {
        opacity: 0.75;
        background-color: #f0f8ff47;
    }

    to {
        opacity: 1;
        background-color: #f8fafb1a;
    }
}
/*Home Contact*/
.contact-form-wrapper {
    box-shadow: 1px 1px 12px 1px #8080802b;
    padding: 1rem;
}
@media screen and (max-width: 475px){
    .contact-form-wrapper{
        padding: 0.2rem;
    }
}
.contact{
    margin-top: 4rem;
    margin-bottom: 5rem;
}
.contact-links{
    justify-content: space-evenly!important;
}
.contact-links li{
    list-style-type: none;
}
/*Home Page end*/
.page-end-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.page-end-link {
    color: #275482;
    font-size: 26px;
    text-decoration: 1px solid #275482;
}

    .page-end-link:hover {
        text-decoration: none;
        color: #72a1d2;
    }

/*About Page*/
#about-image {
    padding: 0.2rem;
    border: 1px solid #5959593b;
    background-color: #3172b5;
    box-shadow: 1px 1px 12px 1px #d7d7d7;
    border-radius: 10px;
    object-fit: cover;
}
@media screen and (max-width: 765px){
    #about-image{
        width: 400px;
    }
}
@media screen and (max-width: 465px) {
    #about-image {
        width: 300px;
    }
}
/*Platform Page*/
.tab-pane-wrapper{
    margin-bottom: 10rem;
}
.nav-tabs a {
    text-decoration: none;
    color: #1e93e8;
}
.tab-pane {
    padding: 2rem;
}
    .tab-pane .row {
        justify-content: space-evenly;
    }
    .tab-pane .col-md-2{
        display: flex;
        align-items: center;
        justify-content: center;
    }


/*Mobile Definitions*/
@media screen and (max-width: 675px){
    .mobile-top-margin {
        margin-top: 1.5rem;
    }
}

/*Page Design*/
.x-page {
    padding-bottom: 10rem;
}

.admin-page {
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
    width: 80%;
    margin: auto;
}

.admin-page-header {
    color: #9226C5;
    text-align: center;
    width: 300px;
    margin: auto;
    margin-bottom: 1rem;
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.admin-page-comment {
    display: flex;
    justify-content: center;
}

.definition-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

@media screen and (max-width: 768px) {
    .admin-page {
        width: 100%;
    }

    main {
        right: 33px !important;
    }
}

.form-input {
    box-shadow: 4px 5px 12px 1px #dacaca33;
    outline: none;
    border: 1px solid #cbcbcba6;
    border-radius: 5px;
    padding: 8px 10px;
    width: 100%;
    text-align: left;
    font-size: 14px;
}

.logo {
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 1px 1px 5px 0px grey;
    margin-right: 1rem;
}

.brand-image {
    width: 200px;
    cursor: pointer;
}

.navbar-toggler {
    background-color: #fff;
    border-radius: 5px;
    padding: 0.25rem 0.45rem;
}

.navbar-toggler-icon i {
    font-size: 22px;
    color: black;
}

#mobile-menu-opener {
    display: none;
    position: fixed;
    left: 0;
    height: 100%;
    width: 20px;
    background-color: rgb(0, 83, 156);
    color: #fff;
    cursor: pointer;
    z-index: 1;
    top: 36px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 10px 0px 8px 1px #d9cbcbcc;
}

.mobile-menu-wrapper {
    display: none;
    position: fixed;
    left: 0;
    top: 36px;
    height: 100%;
    z-index: 2;
    background-color: rgb(0, 83, 156);
    box-shadow: 10px 0px 8px 1px #d9cbcbcc;
}

    .mobile-menu-wrapper a {
        color: #fff;
        font-size: 12px;
        margin-bottom: 0.5rem;
        transition: 0.2s ease;
    }

        .mobile-menu-wrapper a:hover {
            background-color: #147fcb;
            color: aliceblue !important;
        }

.close-mobile-menu {
    height: 50px;
}

.close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 22px;
    color: #fff;
}

.mobile-menu {
    margin-top: 1rem;
}

.navbar-brand {
    color: white;
}

.fixed-header-navbar {
    z-index: 30;
    background-color: #cce5ff;
    position: fixed;
    top: 0;
    width: 100%;
    border-bottom: 0 !important;
}

.header-nav-text {
    color: #004085;
    cursor: default;
}

tr {
    font-size: 12px;
}

.sidebar {
    margin: 0;
    padding: 0;
    width: 167px;
    background-color: rgb(0, 83, 156);
    height: 100%;
    box-shadow: 4px 5px 12px 1px #8080801f;
    top: 0;
    bottom: 0;
    position: fixed;
    z-index: 3;
}

.links {
    margin-top: 1rem;
}

.sidebar a {
    display: block;
    color: #fbfeff;
    padding: 4px;
    text-decoration: none;
    margin-bottom: 0.2rem;
    transition: 0.1s ease;
    font-size: 12px;
}

.side-active {
    background-image: linear-gradient(to right, #9226C5, #d445ba);
    color: #fff !important;
}

.sidebar a:hover {
    background-color: #147fcb;
    color: #fff;
}

div.content {
    margin-left: 200px;
    padding: 1px 16px;
    height: 1000px;
}

@media screen and (max-width: 700px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

        .sidebar a {
            float: left;
        }

    div.content {
        margin-left: 0;
    }
}

@media screen and (max-width: 400px) {
    .sidebar a {
        text-align: center;
        float: none;
    }
}

.profile-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 7rem;
    border-radius: 50%;
}

    .profile-container i {
        padding: 1rem;
        background-color: #686868;
        color: white;
        border-radius: 5px;
        text-align: center;
        font-size: 22px;
    }

.name-container {
    height: 60px;
    color: #fff;
    border-bottom: 1px solid grey;
}

    .name-container p {
        text-align: center;
    }

.main-wrapper {
    display: flex;
}

.main-container {
    position: absolute;
    right: 0;
    padding-top: 10rem;
    padding-bottom: 12rem;
}

@media screen and (max-width: 1200px) {
    main {
        right: 0px;
    }
}

@media screen and (max-width: 1024px) {
    main {
        width: 100%;
    }
}
/*Sections*/
.section-container {
    display: flex;
}

.section {
    border: 1px solid #dbd2d299;
    border-radius: 5px;
    padding: 2rem;
    box-shadow: 1px 2px 30px 1px #dad5d5;
    margin: 1rem;
    background-color: #ffffffed;
}

    .section > .xf-btn {
        display: block;
        margin-bottom: 1rem;
    }

.section-link {
    font-size: 16px;
    text-decoration: none;
    background-color: ##fff;
    color: #1b1b62;
    padding: 0.5rem 3rem;
    border-radius: 7px;
    border: 1px solid #1b1b6247;
    transition: 0.3s ease;
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
}

    .section-link:hover {
        color: #fff;
        background-color: #9226C5;
        border: 1px solid transparent;
    }

.section-description {
    margin-top: 1.5rem;
}

@media screen and (max-width: 1024px) {
    .section-link {
        padding: 0.3rem;
    }
}
/*Footer*/
.footer {
    /*background-color: #275482;*/
    background-image: linear-gradient(45deg, #275482, #4790cf);
    color: #e5e5e5;
    position: absolute;
    width: 100%;
    white-space: nowrap;
}

footer ul li {
    list-style-type: none;
    text-decoration: none;
    font-size: 12px;
    color: #e5e5e5;
    border-bottom: 0.5px transparent;
    opacity: .75;
    transition: .2s ease;
}

    footer ul li a {
        text-decoration: none;
        font-size: 14px;
    }

        footer ul li a:hover {
            opacity: 1;
            color: #e5e5e5;
            text-decoration: none;
        }

        footer ul li a::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: #ffffff;
            transition: width .3s ease;
        }

        footer ul li a:hover::after {
            width: 100%;
        }

.footer-wrapper {
    padding-top: 4rem;
}

.footer-link {
    text-decoration: none;
    font-size: 12px;
    color: #fff;
    border-bottom: 0.5px transparent;
    transition: .2s ease;
    padding: 0.5rem;
}

.footer-header {
    font-size: 14px;
    list-style-type: none;
    text-decoration: none;
    font-size: 12px;
    color: #e5e5e5;
    border-bottom: 0.5px transparent;
    opacity: .75;
    transition: .2s ease;
    padding: 0.5rem;
}

#footer-about {
    padding: 2rem;
    word-break: break-all;
    white-space: normal;
    font-size: 14px;
    color: #fff;
}

.footer .col-md-6 {
    margin-top: 2rem;
}

.footer-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    font-size: 12px;
}

    .footer-alt a {
        text-decoration: none;
        color: #e5e5e5;
        font-size: 12px;
        opacity: 0.75;
        padding: 0.25rem;
    }

        .footer-alt a:hover {
            opacity: 1;
            color: #e5e5e5;
        }

/*Whatsapp Button*/
#wp-btn {
    z-index: 3;
    position: fixed;
    bottom: 50px;
    left: 100px;
    padding: 7px 12px;
    border-radius: 5px;
    color: rgb(255 255 255);
    background-color: rgb(52 183 49);
    cursor: pointer;
    line-height: 30px;
    transition: 0.3s ease;
    animation: topBtn 1s;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    box-shadow: 2px 2px 12px 1px #00000057;
}

    #wp-btn:hover .wp-btn-contact {
        display: inline-flex;
        animation: fadeContact 1s;
    }
@keyframes fadeContact{
    from{opacity: 0.2;}
    to{opacity: 1;}
}
.wp-btn-link {
    color: #fff !important;
}

.wp-btn-contact {
    display: none;
    transition: .3s ease;
    margin-left: 0.5rem;
}

/*Return Top*/
#top-btn {
    z-index: 3;
    position: fixed;
    bottom: 50px;
    right: 100px;
    padding: 7px 14px;
    border-radius: 5px;
    color: rgb(248, 250, 251);
    background-color: rgb(0, 75, 141);
    cursor: pointer;
    display: none;
    line-height: 30px;
    box-shadow: 2px 2px 4px 1px #00000099;
    transition: 0.3s ease;
    animation: topBtn 1s;
}

    #top-btn:hover {
        background-color: rgb(36 122 198);
        border: none;
    }
    @media screen and (max-width: 675px){
        #top-btn{
            right: 60px;
        }
        #wp-btn{
            left: 60px;
        }
    }
    @media screen and (max-width: 475px){
        #top-btn {
            right: 30px;
        }

        #wp-btn {
            left: 30px;
        }
    }
@keyframes topBtn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    #top-btn {
        right: 25px;
    }
}

.footer {
    position: absolute;
    width: 100%;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.footer-hr {
    border-top: 1px solid #3f97d5;
}

/*Loading Animation*/
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    z-index: 9999;
}

.loading-animation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ellipsis div {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #293b72;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

.links i, .section-link i {
    margin-right: 0.5rem;
}

.page-item.active .page-link {
    /*background-image: linear-gradient(to right, #9226C5, #d445ba) !important;*/
    /*color: #fff !important;*/
    background-color: transparent;
}

/*Global Return Top*/
/*Return Top*/
.x-top-btn {
    z-index: 3;
    position: fixed;
    bottom: 50px;
    right: 100px;
    padding: 7px 14px;
    border-radius: 5px;
    color: #fff;
    background-color: rgb(0, 83, 156);
    cursor: pointer;
    display: none;
    line-height: 30px;
    transition: 0.3s ease;
    border: 0.25px solid #e5e5e5;
    animation: topBtn 1s;
}

    .x-top-btn:hover {
        background-color: rgb(1 106 199);
        border: none;
    }

        .x-top-btn:hover .top-btn-icon {
            color: #fff;
        }

@media screen and (max-width: 768px) {
    .x-top-btn {
        right: 50px;
    }
}

@keyframes topBtn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    #top-btn {
        right: 25px;
    }
}
/*Global elements | |  x-section */
.x-wrapper {
    padding: 1rem;
}
/*Global Page Layout*/
.xp-header {
    font-size: 32px;
    color: #302dbb;
    text-indent: 0.5rem;
    margin: 1rem;
}

.xp-s-header {
    font-size: 24px;
    color: #8784f1;
    text-indent: 0.5rem;
    border-bottom: 1px solid #dde8fb;
    margin: 0.5rem;
}

.xp-p {
    color: #302dbb;
    font-weight: 500;
    word-spacing: 0.2rem;
    letter-spacing: 0.01rem;
    margin: 1rem;
}

.xp-p-s {
    color: #8784f1;
    font-weight: 500;
    word-spacing: 0.2rem;
    text-indent: 1rem;
    letter-spacing: 0.02rem;
    margin: 0.5rem;
}

.xp-wrapper {
}

.xp-container {
}
/*Inputs*/
.x-inpt {
    margin: 0.2rem;
    border: 1px solid #b1aaaaa6;
    border-radius: 5px;
    outline: none;
    transition: 0.3s ease;
}

.x-input:hover {
    border: 1px solid #1e62dd;
}

.x-inpt:active {
    border: 1px solid #1e62dd;
}

.x-inpt:focus {
    border: 1px solid #1e62dd;
    background-color: #dbe6ef0f;
}

.x-inpt-sm {
    padding: 0.3rem 1rem;
    font-size: 14px;
}

.x-inpt-m {
    padding: 0.3rem 1.2rem;
    font-size: 18px;
}

.x-inpt-l {
    padding: 0.3rem 1.5rem;
    font-size: 22px;
}
/*Labels*/
.x-lbl-sm {
    font-weight: 400;
    color: #004085;
    font-size: 18px;
    margin: 0.2rem;
}

.x-lbl-m {
    font-weight: 400;
}

.x-lbl-l {
    font-weight: 400;
}
/*Buttons*/
.x-btn {
    outline: none;
    border: 1px solid #80808026;
    background-color: #DADDFF;
    text-decoration: none;
    color: #302dbb;
    cursor: pointer;
    transition: 0.3s ease;
}

    .x-btn:hover {
        background-color: #eee5ff;
        border: 1px solid #a59f9f;
        color: #000;
    }

    .x-btn:active {
        border: 1px solid #F6F9FF;
    }

.x-btn-sm {
    padding: 0.2rem 0.2rem;
    border-radius: 5px;
    font-size: 14px;
}

.x-btn-m {
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    font-size: 16px;
}

.x-btn-l {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 18px;
}
/*Secondary Button*/
.xs-btn {
    background-color: #5383e3;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
    color: #f1eeee;
}

    .xs-btn:hover {
        border: 1px solid #000;
        color: #fff;
    }

    .xs-btn:active {
        border: 1px solid transparent;
    }

.xs-btn-sm {
    padding: 0.2rem 0.2rem;
    border-radius: 5px;
    font-size: 14px;
}

.xs-btn-m {
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    font-size: 16px;
}

.xs-btn-l {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 18px;
}
/*Tertiary btn*/
.xt-btn {
    background-color: #f1f2f5;
    border: 1px solid #dbd4d4;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
    color: #4b4949;
}

    .xt-btn:hover {
        border: 1px solid #635f5f;
        color: #000;
    }

    .xt-btn:active {
        border: 1px solid transparent;
    }

.xt-btn-sm {
    padding: 0.2rem 0.2rem;
    border-radius: 5px;
    font-size: 14px;
}

.xt-btn-m {
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    font-size: 16px;
}

.xt-btn-l {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 18px;
}
/*Functional Buttons*/
.bi {
    font-size: 18px;
}

.sidebar-link > .bi {
    font-size: 12px !important;
}

.x-btn-login {
    padding: 0.2rem 4rem;
    border-radius: 5px;
    font-size: 16px;
    background-color: aliceblue;
    border: 2px solid #9dabdf6b;
    color: #4d89c1;
}

.xf-btn {
    text-decoration: none;
    cursor: pointer;
    transition: 0.1s ease;
    border-radius: 5px;
    outline: none;
    color: #4D506E;
    padding: 0.5rem 1.7rem;
    margin: 0.1rem;
}

.x-btn-add {
    color: #004085;
    background-color: #cce5ff;
    border: 1px solid transparent;
}

    .x-btn-add:hover {
        background-color: #a9d0f7;
        color: #004085;
        border: 1px solid #b1aaaa;
    }

    .x-btn-add:active {
        border: 1px solid #F6F9FF;
    }

.x-btn-info {
    background-color: #baebf3;
    color: #0c5460;
    border: 1px solid transparent;
}

    .x-btn-info:hover {
        background-color: #99e5f1;
        border: 1px solid #b1aaaa;
    }

    .x-btn-info:active {
        border: 1px solid #F6F9FF;
    }

.x-btn-warning {
    background-color: #ffcc2982;
    color: #937828;
    border: 1px solid transparent;
}

    .x-btn-warning:hover {
        background-color: #eda52782;
        color: #5f4d1a;
        border: 1px solid #b1aaaa;
    }

    .x-btn-warning:active {
        border: 1px solid #F6F9FF;
    }

.x-btn-danger {
    background-color: #f5c6cb;
    color: #5f0b0be0;
    border: 1px solid transparent;
}

    .x-btn-danger:hover {
        background-color: #f3b5bc;
        border: 1px solid #b1aaaa;
    }

    .x-btn-danger:active {
        border: 1px solid #F6F9FF;
    }

.x-btn-success {
    background-color: #29af29;
    color: #ffffffe0;
    border: 1px solid transparent;
}

    .x-btn-success:hover {
        background-color: #209120;
        color: #fff;
        border: 1px solid #ffffff;
    }

    .x-btn-success:active {
        border: 1px solid #29af29;
    }

.x-btn-details {
    background-color: #0a608a!important;
    color: #ffffffe0;
    border: 1px solid transparent;
}

    .x-btn-details:hover {
        background-color: #105add;
        border: 1px solid #247dbc;
    }

    .x-btn-details:active {
        border: 1px solid #F6F9FF;
    }

.x-btn-edit {
    background-color: rgb(0, 83, 156);
    color: #ffffffe0;
    border: 1px solid transparent;
}

    .x-btn-edit:hover {
        background-color: rgb(1 106 199);
        color: #fff;
        border: 1px solid #232222;
    }

    .x-btn-edit:active {
        border: 1px solid #F6F9FF;
    }

.x-btn-delete {
    background-color: #eb4040;
    color: #fff;
    border: 1px solid transparent;
}

    .x-btn-delete:hover {
        background-color: #e32525;
        border: 1px solid #ffffff;
    }

    .x-btn-delete:active {
        border: 1px solid #eb4040;
    }

.x-btn-prev {
    background-color: #d7ecffdb;
    border: 1px solid transparent;
}

    .x-btn-prev:hover {
        background-color: #c8e0f5db;
        border: 1px solid #b1aaaa;
    }

    .x-btn-prev:active {
        border: 1px solid #F6F9FF;
    }

.x-btn-next {
    background-color: #d7ecffdb;
    border: 1px solid transparent;
}

    .x-btn-next:hover {
        background-color: #c8e0f5db;
        border: 1px solid #b1aaaa;
    }

    .x-btn-next:active {
        border: 1px solid #F6F9FF;
    }

.x-btn-question {
    color: #004085;
    background-color: #cce5ff;
    border: 1px solid transparent;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    padding: 0 !important;
}

    .x-btn-question > .bi-question {
        font-size: 24px;
    }

    .x-btn-question:hover {
        border: 1px solid #b1aaaa;
    }

    .x-btn-question:active {
        border: 1px solid #F6F9FF;
    }

.x-btn-close {
    background-color: #efefef;
    border: 1px solid transparent;
}

    .x-btn-close:hover {
        background-color: #e9e5e5;
        border: 1px solid #b1aaaa;
    }

    .x-btn-close:active {
        border: 1px solid #F6F9FF;
    }

.x-btn-close-t {
    background-color: #fde8e8;
    border: 1px solid transparent;
}

    .x-btn-close-t:hover {
        background-color: #f7cdcd;
        border: 1px solid #b1aaaa;
    }

    .x-btn-close-t:active {
        border: 1px solid #F6F9FF;
    }
/*Forms*/
.x-form-sm {
    width: 500px;
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 2rem;
    border-radius: 10px;
    background-color: #fafdff;
    box-shadow: 1px 1px 14px 1px #e3dcdc;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.x-form-m {
    width: 600px;
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 2rem;
    border-radius: 10px;
    background-color: #fafdff;
    box-shadow: 1px 1px 14px 1px #e3dcdc;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.x-group {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.x-form-header {
    font-weight: 300;
    margin: 0.2rem;
    border-bottom: 1px solid #dfd9d9;
    margin-bottom: 2rem;
    text-align: center;
}

.x-form-body {
}

.x-form-container {
}

.x-form-wrapper {
}
/*Global Classes  | |  x-section*/
.x-flex-center-v {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.x-flex-center-h {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.xmt-1 {
    margin-top: 1rem;
}

.xmt-2 {
    margin-top: 2rem;
}

.xmb-1 {
    margin-bottom: 1rem;
}

.xmb-2 {
    margin-bottom: 2rem;
}

.xpt-1 {
    padding-top: 1rem;
}

.xpt-2 {
    padding-top: 2rem;
}

.xpb-1 {
    padding-bottom: 1rem;
}

.xpb-2 {
    padding-bottom: 2rem;
}

.x-fx {
    display: flex;
}

.xt-3 {
    transition: all ease 0.3s;
}

.xt-5 {
    transition: all ease 0.5s;
}
/*Notifications*/
/*Success*/
.x-alert-success {
    background-color: #d7f9d7;
    color: #226b1ee0;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #bfb9b9b0;
}
/*Danger*/
.x-alert-danger {
    background-color: #f5c6cb;
    color: #5f0b0be0;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #bfb9b9b0;
}
/*Warning*/
.x-alert-warning {
    background-color: #ffcc2982;
    color: #937828;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #bfb9b9b0;
}
/*Info*/
.x-alert-info {
    background-color: #baebf3;
    color: #0c5460;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #bfb9b9b0;
}
/*Detail*/
.x-alert-detail {
    color: #004085;
    background-color: #cce5ff;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #bfb9b9b0;
}

.x-alert-close {
    text-decoration: none;
    cursor: pointer;
    transition: 0.1s ease;
    border-radius: 5px;
    outline: none;
    color: #afafaf;
    padding: 0.3rem 0.8rem;
    margin: 0.1rem;
    background-color: #fbfbfb;
    border: 1px solid #d9d9d9;
    position: absolute;
    right: 1rem;
    top: 0.3rem;
    font-size: 18px;
}

    .x-alert-close:hover {
        background-color: #ff5555f2;
        color: #fff;
        border: 1px solid #d5cfcf;
    }

.x-alert {
    width: 500px;
    position: absolute;
    top: 7rem;
    right: 3rem;
    position: fixed;
    z-index: 3;
}
/*R Table*/
.table-container {
    padding: 0.25rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.table-wrapper {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 1px 1px 24px 1px #f3e7e787;
    padding: 3rem 1rem 2rem 1rem;
}

@media screen and (max-width: 1026px) {
    .table-wrapper {
        overflow-x: auto;
    }
}

.table-header-container {
    display: flex;
    justify-content: space-between;
}

.table-header {
    color: #52b0f5 !important;
}

.x-table {
    display: table;
    margin-top: 2rem;
    padding: 1rem;
    border: 1px solid #8080801c;
    border-radius: 10px;
    width: 100%;
}

.x-table-body {
    width: 100%;
    padding: 0.25rem;
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

.x-tr {
    width: 100%;
    display: table-row;
    padding: 0.5rem;
    border: 1px solid #c9c9c961;
    border-radius: 5px;
    margin-bottom: 0.2rem;
    transition: 0.2s ease;
    border-collapse: collapse;
    vertical-align: middle;
}

    .x-tr:hover {
        border-bottom: 1px solid #1e62dd;
        background-color: #dbe6ef0f;
    }

.x-td, .x-th {
    padding: 1rem;
    display: table-cell;
}

.tbl-sm-buttons {
    display: flex;
}

.tbl-inpt {
    padding: 0.41rem 0.2rem !important;
}

.tbl-edit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 1.2rem !important;
}

.tbl-del {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 1.2rem !important;
}

    .tbl-del:hover {
        color: #fff !important;
    }

.table-footer {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
