@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');
@import url('./animate.min.css');

:root {
    --size-normal: 16px;
    --size-medium: 21px;
    --size-display: 28px;
    --size-title: 36px;
    --primary: #256C1C;
    --bg-main: #F4F0F0;
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
}

#up-header {
    padding-block: 1.25rem;
    position: relative;
}


.seal {
    width: 100px;
}

.h-one {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: var(--size-title);
    text-align: center;
    background: linear-gradient(to right, var(--bs-black), var(--primary));
    -webkit-background-clip: text; /* Safari/Chrome */
    color: transparent;
}
.h-one::after {
    content: "";
    height: 1px;
    width: 120px;
    display: block;
    margin: 1rem auto 0;
    background-color: var(--bs-black);
}
.btns-r {
    text-align: right;
}

.btns-r .btn{
    font-size: 1.5rem;
    font-weight: 700;
}


#search-bar {
    display: none;
    position: absolute;
    left: 0;
    bottom: -120px;
    width: 100%;
    padding: 2.5rem 2rem;
    background-color: rgba(0, 0, 0, .3);
    backdrop-filter: blur(15px);
    z-index: 999;
}
#search-bar.show {
    display: block;
    animation: fadeInUp .3s;
}

#btn-search{
    height: 56px;
    width: 56px;
    border-radius: 100%;
    background-color: #e2ffde;
}

#btn-x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--bs-white);
    font-size: 3rem;
    padding: .5rem !important;
    line-height: 1;
}
.nav-pad {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 3.5rem 2rem;
    background-color: rgba(0, 0, 0, .3);
    backdrop-filter: blur(15px);
    z-index: 1000;
}
.nav-pad.show{
    display: block;
    animation: fadeInUp .3s;
}
.nav-pad .h-one {
    color: var(--bs-white);
}
.nav-link-list {
    display: flex;
    flex-direction: column;
    margin-top: 3.5rem;
}
.nav-link-item {
    width: 100%;
    font-size: var(--size-display);
    font-weight: 700;
    text-decoration: none;
    color: var(--bs-white);
    background-color: rgba(255, 255, 255, .3);
    padding: 1rem;
    border-bottom: 1px solid var(--bs-white);
    transition: all .3s;
}
.nav-link-item:last-child {
    border-bottom: none;
}
.nav-link-item:hover, .nav-link-item:focus {
    background-color: rgba(255, 255, 255, .15);
}

.jumbotron {
    height: 400px;
    display: flex;
    align-items: center;
    /* background: url('../img/abstract_bg_digital-01.png') no-repeat 0 0, var(--primary); */
    background-size: 100%;
    background-color: var(--primary);
    color: var(--bs-white);
    position: relative;
    overflow: hidden;
}
.jumbotron::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: url('../img/logo-gouvernement-km-01.svg') no-repeat center right;
    background-size: 45%;
    opacity: .25;
}
.jumbotron::before {
    content: "";
    display: block;
    height: 120%;
    width: 120%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../img/abstract_bg_digital-01.png') no-repeat center right;
    background-size: 100%;
    opacity: .40;
}
.txt-jumbotron {
    max-width: 525px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: var(--size-display);
    animation: fadeInDown .5s;
}
.txt-jumbotron::after {
    content: "";
    height: 1px;
    width: 120px;
    display: block;
    margin: 1rem 0;
    background-color: var(--bs-white);
}
main {
    background-color: var(--bg-main);
}
main::before {
    content: "";
    display: block;
    height: 5px;
    width: 100%;
    background-image: linear-gradient(to right, yellow, white, red, blue);
}
main .btn {
    border-radius: 30px;
    padding: .55rem 1.5rem;
}

#wrapper {
    padding-block: 5rem;
}
.sx-dock {
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
}
.sx-dock::before {
    content: "";
    height: 1px;
    width: 100%;
    display: block;
    background-color: var(--bs-black);
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 45;
}
.sx-title {
    display: inline-block;
    margin: 0;
    background-color: var(--bs-black);
    color: var(--bs-white);
    padding: .7rem 6.5rem;
    border-radius: 30px;
    text-align: center;
    font-size: calc(var(--size-medium) + 3px);
    font-weight: 700;
    position: relative;
    z-index: 50;
}

#black-footer {
    background-color: var(--bs-black);
    color: var(--bs-white);
    padding-block: 1rem;
    text-align: center;
}
.p-cpr {
    font-size: var(--size-normal);
    margin-bottom: 0;
}
.p-cpr a {
    color: var(--bs-white);
    text-decoration: none;
}

.card-pltfrm {
    background-color: var(--bs-white);
    color: var(--bs-black);
    border-radius: 15px;
    text-align: center;
    height: 300px;
    overflow: hidden;
    position: relative;
    transition: all .3s;
    padding: 1.5rem 2rem;
}
/* .card-pltfrm::before {
    content: "";
    display: block;
    height: 35px;
    width: 35px;
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: no-repeat url("../img/logo-gouvernement-01.png");
    background-size: contain;
} */
.card-pltfrm:hover{
    transform: scale(1.025);
}
.card-pltfrm.disabled {
    opacity: .5;
    backdrop-filter: grayscale(30%);
}

/* .pwait {
    box-shadow: 0 0 30px rgba(255, 77, 77, 0.3);
} */

.cp-img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

.cp-caption {
    align-items: center;
    justify-content: center;
    padding-top: .5rem;
}
.cp-title {
    font-size: var(--size-medium);
    font-weight: 700;
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 3; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    margin: 0;
}
.cp-title::before {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    background-color: #D2D2D2;
    margin: 1rem auto;
}
.modal {
    backdrop-filter: blur(30px);
}
.modal-content {
    border-radius: 1.5rem;
    background-color: rgba(255, 255, 255, .85 );
}
.modal-title {
    font-weight: 700;
}
.fg-cnt {
    width: 100%;
}
.fg-cnt > img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    background-color: var(--bs-gray-200);
    border-radius: 15px;
}

.h-in {
    font-size: var(--size-medium);
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}
.cnt-in {
    line-height: 1.7;
    font-size: var(--size-normal);
    color: var(--bs-gray-800);
    padding: .5rem 1.5rem 1rem;
    border-left: 5px solid var(--bs-gray-300);
}

/* About */
.pre-title {
    text-align: center;
    background-color: var(--primary);
    color: var(--bs-white);
    padding-block: 3.5rem;
}
.page-title {
    font-size: var(--size-title);
    font-weight: 700;
}
.txt-content {
    max-width: 767px;
    margin: 0 auto;
}

.text-in {
    max-width: 667px;
    font-size: var(--size-normal);
    line-height: 1.7;
    margin: 0 auto;
}

/* Media Queries */
/* Extra Large devices */
@media screen and (max-width: 1399.98px) {
    
}

/* Large devices */
@media screen and (max-width: 1199.98px) {
    
}

/* Medium devices */
@media screen and (max-width: 991.98px) {
    .seal-ctn {
        margin-left: 1.5rem;
    }
    .seal {
        width: 60px;
    }

    .h-one {
        font-size: 3.3vw;
        margin-bottom: 2rem;
        display: none;
    }
}

/* small devices */
@media screen and (max-width: 767.98px) {
    
}
/*Extra small*/
@media screen and (max-width: 575.98px){

}

@media screen and (max-width: 450px){

}

@media screen and (max-width: 325px){

}