ul {
    list-style: none;
}

body {
    font-family: 'Roboto', sans-serif;
}
section {
    font-family: 'Nunito', sans-serif;
}
.text-cargo{
    color :#336A7D
}
.bg-cargo{
    background-color :#336A7D
}

.btn-cargo{
    color: white;
    background-color :#336A7D
}
.btn-ouline-cargo,.btn-ouline-cargo:hover{
    color: #ffffff;
    border :1px solid #ffffff
}
.menu {
    display: flex;
    justify-content: space-around;
    color: #555555;
    align-items: center;
    margin-top: 1rem;
    padding-left: 0;
}

.menu_item a {
    text-decoration: none;
    color: #555555;
    font-size: 0.9em;
    font-weight: 600;
}

header {
    margin-top: 12px;
    height: 70px;
}

.logo {
    width: 90%;
    height: 50px;
    margin: auto;
    margin-top: 5px;
}

.btn-primary, .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #336A7D;
    border: none;
    height: fit-content;
    border-radius: 0;
}

.btn-danger, .btn-danger:hover, .btn-danger:focus, .btn-danger:active {
    background-color: #C2000;
    border: none;
    height: fit-content;
    border-radius: 0;
}

/*** Select Lang ***/

#select-container {
    width: 50px;
    height: 40px;
    position: absolute;
    right: 0px;
    background: #fff;
    border-radius: 10px;
    border: 0.5px solid rgba(202, 219, 226, 0.40);
    box-shadow: 0px 3px 6px rgba(79, 104, 113, 0.20);
    overflow: hidden;
    transition: height 0.2s ease-in-out, border-radius 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

#select-container:hover {
    height: 100px;
    /* Can't use height: auto & transition effect */
    border-radius: 20px;    z-index: 99;
    box-shadow: 0px 7px 10px rgba(79, 104, 113, 0.30);
}

#select-container ul {
    list-style-type: none;
    position: relative;
}

#select-container ul li {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

#select-container ul li:first-child img {
    cursor: default;
}

#select-container ul li img {
    width: 25px;
    height: 25px;
    display: block;
    left: 50%;
    transform: translate(-103%, -40%);
    margin-bottom: 8px;
    margin-top: 15px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0px 0px 6px rgba(79, 104, 113, 0.30);
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}

#select-container ul li img:hover {
    box-shadow: 0px 5px 10px rgba(79, 104, 113, 0.30);
    transform: translate(-103%, -40%) scale(1.08);
}

/* TOOLTIP STYLES FROM THIS PEN https://codepen.io/tutsplus/pen/WROvdG */
[tooltip] {
    position: relative;
    /* opinion 1 */
    font-weight: bold;
}

/* Applies to all tooltips */
[tooltip]::before, [tooltip]::after {
    text-transform: none;
    /* opinion 2 */
    font-size: 12px;
    /* opinion 3 */
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
}

[tooltip]::before {
    content: '';
    border: 5px solid transparent;
    /* opinion 4 */
    z-index: 1001;
    /* absurdity 1 */
}

[tooltip]::after {
    content: attr(tooltip);
    /* magic! */
    /* most of the rest of this is opinion */
    font-family: Helvetica, sans-serif;
    text-align: center;
    /* Let the content set the size of the tooltips but this will also keep them from being obnoxious */
    width: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 3px 0px;
    border-radius: 0.3ch;
    box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
    background: #465663;
    color: #fff;
    z-index: 1000;
    /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before, [tooltip]:hover::after {
    display: block;
}

/* don't show empty tooltips */
[tooltip='']::before, [tooltip='']::after {
    display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before, [tooltip][flow^="up"]::before {
    bottom: 50%;
    border-bottom-width: 0;
    border-top-color: #465663;
}

[tooltip]:not([flow])::after, [tooltip][flow^="up"]::after {
    bottom: calc(50% + 5px);
}

[tooltip]:not([flow])::before, [tooltip]:not([flow])::after, [tooltip][flow^="up"]::before {
    left: -15.5px;
    bottom: 40px;
    transform: translate(-50%, -0.5em);
}

[tooltip][flow^="up"]::after {
    left: -15.5px;
    bottom: 45px;
    transform: translate(-50%, -0.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
    top: 70%;
    border-top-width: 0;
    border-bottom-color: #465663;
}

[tooltip][flow^="down"]::after {
    top: calc(70% + 5px);
}

[tooltip][flow^="down"]::before, [tooltip][flow^="down"]::after {
    left: -15.5px;
    transform: translate(-50%, 0.5em);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
    to {
        opacity: 0.9;
        transform: translate(-50%, 0);
    }
}

/* FX All The Things */
[tooltip]:not([flow]):hover::before, [tooltip]:not([flow]):hover::after, [tooltip][flow^="up"]:hover::before, [tooltip][flow^="up"]:hover::after, [tooltip][flow^="down"]:hover::before, [tooltip][flow^="down"]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
}

/*** footer ***/

.footer {
    background-color: #1E3446;
    color: #FFFFFF;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
    overflow: hidden;
    background: url(/imgs/footer-bg-main-1.png) #1E3446;
    background: url(/imgs/footer-bg-main-1.png) #336A7D;
    background-position: center center;
}

.logo_footer {
    width: 100%;
    height: 70px;
    margin-bottom: 15px;
}

.footer ul {
    padding-left: 0;
}

.menu_items_footer {
    padding-left: 70px !important
}

.menu_items_footer li {
    margin-bottom: 25px;
}

.menu_items_footer li a {
    color: #FFFFFF;
}

.vector-5, .vector-6,.vector-7, .vector-8{
    position: absolute;
    right: -60px;
    bottom: -235px;
    background: #177265;
    opacity: 0.06;
    width: 250px;
    height: 115%;
    z-index: 11;
    -webkit-transform: rotate(59deg);
    transform: rotate(59deg);
}
.vector-6 {
    bottom: -265px;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}

.vector-7 {
    bottom: -330px;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
}

.vector-8 {
    bottom: -345px;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    right: -110px;
}

.vector-1, .vector-2,.vector-3, .vector-4{
    position: absolute;
    left: -60px;
    top: -235px;
    background: #177265;
    opacity: 0.06;
    width: 250px;
    height: 115%;
    z-index: 11;
    -webkit-transform: rotate(59deg);
    transform: rotate(59deg);
}

.vector-2 {
    bottom: -265px;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}

.vector-3 {
    bottom: -330px;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
}

.vector-4 {
    bottom: -345px;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    right: -110px;
}
.apropos{
    flex-direction: row;
    display: flex;
}

.ligne_sep {
    width: 96%;
    margin: auto;
    height: 1px;
    background-color: #FFFFFF;
    margin-bottom: 5px;
}

.social_icons a, .social_icons a i, .social_icons a:hover {
    color: #FFFFFF;
}
.sticky_menu{
    position: sticky;
    top: 0;
    height: 70px;
    background-color: white;
    z-index: 999;
    width: 100%;
}
.planes {
    position: absolute;
    top: -85px;
    width: 120px;
    z-index: 5;
    transform: translateX(-100%); /* Move the plane off-screen to the left */
    animation: flyToRights 15s linear infinite; /* Apply the animation */
}

/* Define the animation */
@keyframes flyToRights {
    0% {
        transform: translateX(-100%); /* Move the plane off-screen to the left */
    }
    100% {
        transform: translateX(1200%); /* Move the plane off-screen to the right */
    }
}
#awan {
    position:absolute;
    top:-134px;left:0px;
    width:100%;
    height:100%;
    text-align:center;
    margin:0px;
    padding:0px;
    background-color:#C0DEED;
    background: url(/imgs/bg2.png) center top repeat-x;
    padding-top:100px;
    padding-bottom:10px;
    width: 100%;
    height: 135px;
    animation: awan-animasi 10s linear infinite;
    -ms-animation: awan-animasi 10s linear infinite;
    -moz-animation: awan-animasi 10s linear infinite;
    -webkit-animation: awan-animasi 10s linear infinite;
}

@keyframes awan-animasi {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 0;
    }
}

@-webkit-keyframes awan-animasi {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 0;
    }
}

@-ms-keyframes awan-animasi {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 0;
    }
}

@-moz-keyframes awan-animasi {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 0;
    }
}
.btnuser,.btnuser:hover{
   border-radius: 100px;
    margin-right: 50px;
}
.header{
    display: none;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active{
    border:1px #C20000;
    background-color: #C20000;
    color: #fff;
}
@media (max-width: 600px) {

    .nav__toggle {
        display: inline-block;
        position: absolute;
        z-index: 10;
        padding: 0;
        border: 0;
        background: transparent;
        outline: 0;
        left: 10px;
        top: 5px;
        cursor: pointer;
        border-radius: 50%;
        transition: background-color 0.15s linear;
    }
    .nav__toggle:hover, .nav__toggle:focus {
        background-color: rgba(0, 0, 0, 0.5);
    }
    .nav__menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: var(--screen-height);
        position: relative;
        z-index: 5;
        visibility: hidden;
    }
    .nav__item {
        opacity: 0;
        transition: all 0.3s cubic-bezier(0, 0.995, 0.99, 1) 0.3s;
    }
    .nav__item:nth-child(1) {
        transform: translateY(-40px);
    }
    .nav__item:nth-child(2) {
        transform: translateY(-80px);
    }
    .nav__item:nth-child(3) {
        transform: translateY(-120px);
    }
    .nav__item:nth-child(4) {
        transform: translateY(-160px);
    }
    .nav__item:nth-child(5) {
        transform: translateY(-200px);
    }
    .nav__link {
        color: white;
        display: block;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 5px;
        font-size: 1.25rem;
        text-decoration: none;
        padding: 1rem;
    }
    .nav__link:hover, .nav__link:focus {
        outline: 0;
        background-color: rgba(0, 0, 0, 0.2);
    }

    .menuicon {
        display: block;
        cursor: pointer;
        color: #336a7d;
        transform: rotate(0deg);
        transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .menuicon__bar, .menuicon__circle {
        fill: none;
        stroke: currentColor;
        stroke-width: 3;
        stroke-linecap: round;
    }
    .menuicon__bar {
        transform: rotate(0deg);
        transform-origin: 50% 50%;
        transition: transform 0.25s ease-in-out;
    }
    .menuicon__circle {
        transition: stroke-dashoffset 0.3s linear 0.1s;
        stroke-dashoffset: 144.513262038;
        stroke-dasharray: 144.513262038;
    }

    .splash {
        position: absolute;
        top: 40px;
        right: 40px;
        width: 1px;
        height: 1px;
    }
    .splash::after {
        content: "";
        display: block;
        position: absolute;
        border-radius: 50%;
        background-color: #336a7d;
        width: 284vmax;
        height: 284vmax;
        top: -142vmax;
        left: -142vmax;
        transform: scale(0);
        transform-origin: 50% 50%;
        transition: transform 0.5s cubic-bezier(0.755, 0.05, 0.855, 0.06);
        will-change: transform;
        z-index: 4;
    }
.header{
    display: flex;
    justify-content: center;
    width: 100vw;
}
    .nav:target > .splash::after,
    .nav--open > .splash::after {
        transform: scale(1);
    }
    .nav:target .menuicon,
    .nav--open .menuicon {
        color: white;
        transform: rotate(180deg);
    }
    .nav:target .menuicon__circle,
    .nav--open .menuicon__circle {
        stroke-dashoffset: 0;
    }
    .nav:target .menuicon__bar:nth-child(1), .nav:target .menuicon__bar:nth-child(4),
    .nav--open .menuicon__bar:nth-child(1),
    .nav--open .menuicon__bar:nth-child(4) {
        opacity: 0;
    }
    .nav:target .menuicon__bar:nth-child(2),
    .nav--open .menuicon__bar:nth-child(2) {
        transform: rotate(45deg);
    }
    .nav:target .menuicon__bar:nth-child(3),
    .nav--open .menuicon__bar:nth-child(3) {
        transform: rotate(-45deg);
    }
    .nav:target .nav__menu,
    .nav--open .nav__menu {
        visibility: visible;
    }
    .nav:target .nav__item,
    .nav--open .nav__item {
        opacity: 1;
        transform: translateY(0);
    }

    .menu{
        display: none;
    }
    .logo {
        width: 90%;
        height: 40px;
        margin: auto;
        margin-top: 10px;
    }
    .logoa{
        margin-left: 50%;
    }
    .apropos {
        flex-direction: column-reverse;
        display: flex;
    }

    .reversecol {
        flex-direction: column-reverse;
        display: flex;
    }

    .noreversecol {
        flex-direction: column;
        display: flex;
    }
    .startupimg{
        margin-bottom: 50px;
    }
    .heading__layout{
        font-size: 55px;
        top: -40px;
    }
    .menu_items_footer{
        padding-left:0 !important;
    }

}
.img_blog{
    width: 100%;
    height: 450px;
    object-fit: contain;
}